diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ac1cf5798134f4fd8eb3721493f8c91af5598e16..fe9150850f4d07bd87433d5947650fe6d554e702 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -168,8 +168,6 @@ create_g1_data_job:
     - tar xvzf g1-dump.tgz
     - rm g1-dump.tgz
     - mv backup-g1-duniter-1.8.6 duniter_default
-    - ls -alh /dump
-    - ls -alh /dump/duniter_default
     # py-g1-migrator conversion
     - git clone https://git.duniter.org/tools/py-g1-migrator.git -b import_identities_from_leveldb /py-g1-migrator
     - cd /py-g1-migrator
@@ -177,8 +175,14 @@ create_g1_data_job:
     - apt-get update
     - apt-get install -y sqlite3 libleveldb-dev jq
     - pip install -r requirements.txt
+    # Export identities and wallets
     - ./main.py
-    - 'cat output/gtest_genesis.json | jq "{ identities : .identities, wallets : .wallets, initial_monetary_mass: .initial_monetary_mass }" > output/g1-data.json'
+    # Export transaction history
+    - sqlite3 /dump/duniter_default/txs.db --json "select time,comment,issuers,outputs from txs;" > inputs/transactions_history.json 2>> inputs/txs.err
+    - ./generate_transactions_history.py
+    # Merge in one file
+    - 'jq -s "{ identities: .[0].identities, wallets: .[0].wallets, initial_monetary_mass: .[0].initial_monetary_mass, transactions_history: .[1] }" output/gtest_genesis.json output/history.json > output/g1-data.json'
+    # Make the exported file available for next jobs
     - cp output/g1-data.json $CI_PROJECT_DIR/resources
   artifacts:
     paths:
diff --git a/node/src/chain_spec/gdev.rs b/node/src/chain_spec/gdev.rs
index 5a8f5a3da7a6ac3b4e986b24214c9c233969b5e5..60922d1a7c97237616224bde68d66dcd967dbd8c 100644
--- a/node/src/chain_spec/gdev.rs
+++ b/node/src/chain_spec/gdev.rs
@@ -60,7 +60,7 @@ fn get_parameters(parameters_from_file: &Option<GenesisParameters>) -> CommonPar
     let parameters_from_file =
         parameters_from_file.expect("parameters must be defined in file for GDev");
     CommonParameters {
-        currency_name: TOKEN_SYMBOL,
+        currency_name: TOKEN_SYMBOL.to_string(),
         decimals: TOKEN_DECIMALS,
         existential_deposit: EXISTENTIAL_DEPOSIT,
         membership_period: parameters_from_file.membership_period,
@@ -291,8 +291,6 @@ fn genesis_data_to_gdev_genesis_conf(
     genesis_data: super::gen_genesis_data::GenesisData<GenesisParameters, SessionKeys>,
     wasm_binary: &[u8],
 ) -> gdev_runtime::GenesisConfig {
-    gen_genesis_data::dump_for_indexer(&genesis_data);
-
     let super::gen_genesis_data::GenesisData {
         accounts,
         treasury_balance,
@@ -304,6 +302,7 @@ fn genesis_data_to_gdev_genesis_conf(
         initial_monetary_mass,
         memberships,
         parameters,
+        common_parameters,
         session_keys_map,
         smith_certs_by_receiver,
         smith_memberships,
diff --git a/node/src/chain_spec/gen_genesis_data.rs b/node/src/chain_spec/gen_genesis_data.rs
index 50aa6a7a49b214b15a0dbf0c26a3e05c72d365bf..994232d35d833a8775b0c7fa7b8211b93dff9190 100644
--- a/node/src/chain_spec/gen_genesis_data.rs
+++ b/node/src/chain_spec/gen_genesis_data.rs
@@ -76,6 +76,7 @@ pub struct GenesisData<Parameters: DeserializeOwned, SessionKeys: Decode> {
     pub initial_monetary_mass: u64,
     pub memberships: BTreeMap<u32, MembershipData>,
     pub parameters: Option<Parameters>,
+    pub common_parameters: Option<CommonParameters>,
     pub session_keys_map: BTreeMap<AccountId, SessionKeys>,
     pub smith_certs_by_receiver: BTreeMap<u32, BTreeMap<u32, Option<u32>>>,
     pub smith_memberships: BTreeMap<u32, MembershipData>,
@@ -101,20 +102,32 @@ struct GenesisConfig<Parameters> {
 
 #[derive(Deserialize, Serialize)]
 pub struct GenesisIndexerExport {
-    pub accounts: BTreeMap<AccountId, GenesisAccountData<u64>>,
-    pub treasury_balance: u64,
-    pub certs_by_receiver: BTreeMap<u32, BTreeMap<u32, Option<u32>>>,
-    pub first_ud: Option<u64>,
-    pub first_ud_reeval: Option<u64>,
-    pub identities: Vec<(String, AccountId, Option<AccountId>)>,
-    pub initial_authorities: BTreeMap<u32, (AccountId, bool)>,
-    pub initial_monetary_mass: u64,
-    pub memberships: BTreeMap<u32, MembershipData>,
-    pub smith_certs_by_receiver: BTreeMap<u32, BTreeMap<u32, Option<u32>>>,
-    pub smith_memberships: BTreeMap<u32, MembershipData>,
-    pub sudo_key: Option<AccountId>,
-    pub technical_committee_members: Vec<AccountId>,
-    pub ud: u64,
+    first_ud: Option<u64>,
+    first_ud_reeval: Option<u64>,
+    genesis_parameters: CommonParameters,
+    identities: HashMap<String, IdentityV2>,
+    smiths: BTreeMap<String, SmithData>,
+    sudo_key: Option<AccountId>,
+    technical_committee: Vec<String>,
+    ud: u64,
+    wallets: BTreeMap<AccountId, u64>,
+    transactions_history: Option<BTreeMap<AccountId, Vec<TransactionV2>>>,
+}
+
+#[derive(Deserialize, Serialize)]
+struct TransactionV1 {
+    issuer: PubkeyV1,
+    amount: String,
+    written_time: Option<u32>,
+    comment: String,
+}
+
+#[derive(Deserialize, Serialize)]
+struct TransactionV2 {
+    issuer: AccountId,
+    amount: String,
+    written_time: Option<u32>,
+    comment: String,
 }
 
 #[derive(Deserialize, Serialize)]
@@ -123,6 +136,7 @@ struct GenesisMigrationData {
     identities: BTreeMap<String, IdentityV1>,
     #[serde(default)]
     wallets: BTreeMap<PubkeyV1, u64>,
+    transactions_history: Option<BTreeMap<PubkeyV1, Vec<TransactionV1>>>,
 }
 
 // Base58 encoded Ed25519 public key
@@ -150,7 +164,7 @@ struct IdentityV1 {
     /// timestamp at which the membership is set to expire (0 for expired members)
     membership_expire_on: TimestampV1,
     /// timestamp at which the next cert can be emitted
-    next_cert_issuable_on: TimestampV1,
+    next_cert_issuable_on: TimestampV1, // TODO: unused?
     /// balance of the account of this identity
     balance: u64,
     /// certs received with their expiration block
@@ -949,7 +963,7 @@ where
         }
     }
     // no inactive smith
-    for SmithData { name: smith, .. } in smiths {
+    for SmithData { name: smith, .. } in &smiths {
         let inactive_smiths: Vec<_> = inactive_identities
             .values()
             .filter(|&v| *v == smith)
@@ -966,6 +980,63 @@ where
         panic!();
     }
 
+    // Indexer output
+    if let Ok(path) = std::env::var("DUNITER_GENESIS_EXPORT") {
+        // genesis_certs_min_received => min_cert
+        // genesis_memberships_expire_on => membership_period
+        // genesis_smith_certs_min_received => smith_min_cert
+        // genesis_smith_memberships_expire_on => smith_membership_period
+        let export = GenesisIndexerExport {
+            first_ud: first_ud.clone(),
+            first_ud_reeval: first_ud_reeval.clone(),
+            genesis_parameters: common_parameters.clone(),
+            identities: identities_v2,
+            sudo_key: sudo_key.clone(),
+            technical_committee: technical_committee.clone(),
+            ud: ud.clone(),
+            wallets: accounts
+                .iter()
+                .map(|(account_id, data)| (account_id.clone(), data.balance))
+                .collect(),
+            smiths: (&smiths.clone())
+                .iter()
+                .map(|smith| {
+                    (
+                        smith.name.clone(),
+                        SmithData {
+                            name: smith.name.clone(),
+                            session_keys: smith.session_keys.clone(),
+                            certs_received: smith.certs_received.clone(),
+                        },
+                    )
+                })
+                .collect::<BTreeMap<String, SmithData>>(),
+            transactions_history: genesis_data.transactions_history.map(|history| {
+                history
+                    .iter()
+                    .map(|(pubkey, txs)| {
+                        (
+                            v1_pubkey_to_account_id(pubkey.clone()),
+                            txs.iter()
+                                .map(|tx| TransactionV2 {
+                                    issuer: v1_pubkey_to_account_id(tx.issuer.clone()),
+                                    amount: tx.amount.clone(),
+                                    written_time: tx.written_time,
+                                    comment: tx.comment.clone(),
+                                })
+                                .collect::<Vec<TransactionV2>>(),
+                        )
+                    })
+                    .collect::<BTreeMap<AccountId, Vec<TransactionV2>>>()
+            }),
+        };
+        fs::write(
+            &path,
+            serde_json::to_string_pretty(&export).expect("should be serializable"),
+        )
+        .unwrap_or_else(|_| panic!("Could not export genesis data to {}", &path));
+    }
+
     let genesis_data = GenesisData {
         accounts,
         treasury_balance,
@@ -980,6 +1051,7 @@ where
         initial_monetary_mass,
         memberships,
         parameters,
+        common_parameters: Some(common_parameters),
         session_keys_map,
         smith_certs_by_receiver,
         smith_memberships,
@@ -1074,6 +1146,7 @@ where
             .map(|i| (i as u32, MembershipData { expire_on: 0 }))
             .collect(),
         parameters: Some(parameters),
+        common_parameters: None,
         session_keys_map,
         smith_certs_by_receiver: clique_wot(initial_smiths_len),
         smith_memberships: (1..=initial_smiths_len)
@@ -1174,27 +1247,6 @@ fn validate_idty_name(name: &str) -> bool {
     name.len() <= 64
 }
 
-pub fn genesis_data_to_indexer_export<P: DeserializeOwned, SK: Decode>(
-    genesis_data: &GenesisData<P, SK>,
-) -> GenesisIndexerExport {
-    GenesisIndexerExport {
-        accounts: genesis_data.accounts.clone(),
-        treasury_balance: genesis_data.treasury_balance.clone(),
-        certs_by_receiver: genesis_data.certs_by_receiver.clone(),
-        first_ud: genesis_data.first_ud.clone(),
-        first_ud_reeval: genesis_data.first_ud_reeval.clone(),
-        identities: genesis_data.identities.clone(),
-        initial_authorities: genesis_data.initial_authorities.clone(),
-        initial_monetary_mass: genesis_data.initial_monetary_mass.clone(),
-        memberships: genesis_data.memberships.clone(),
-        smith_certs_by_receiver: genesis_data.smith_certs_by_receiver.clone(),
-        smith_memberships: genesis_data.smith_memberships.clone(),
-        sudo_key: genesis_data.sudo_key.clone(),
-        technical_committee_members: genesis_data.technical_committee_members.clone(),
-        ud: genesis_data.ud.clone(),
-    }
-}
-
 pub type AuthorityKeys = (
     AccountId,
     GrandpaId,
@@ -1209,9 +1261,10 @@ pub trait SessionKeysProvider<SessionKeys: Encode> {
     fn session_keys(keys: &AuthorityKeys) -> SessionKeys;
 }
 
+#[derive(Default, Deserialize, Serialize, Clone)]
 pub struct CommonParameters {
     // TODO: replace u32 by BlockNumber when appropriate
-    pub currency_name: &'static str,
+    pub currency_name: String,
     pub decimals: usize,
     pub existential_deposit: u64,
     pub membership_period: u32,
@@ -1248,19 +1301,6 @@ fn get_authority_keys_from_seed(s: &str) -> AuthorityKeys {
     )
 }
 
-pub fn dump_for_indexer<Parameters: DeserializeOwned, SessionKeys: Decode>(
-    genesis_data: &GenesisData<Parameters, SessionKeys>,
-) {
-    if let Ok(path) = std::env::var("DUNITER_GENESIS_EXPORT") {
-        let export: GenesisIndexerExport = genesis_data_to_indexer_export(&genesis_data);
-        fs::write(
-            &path,
-            serde_json::to_string_pretty(&export).expect("should be serializable"),
-        )
-        .unwrap_or_else(|_| panic!("Could not export genesis data to {}", &path));
-    }
-}
-
 /// Converts a Duniter v1 public key (Ed25519) to an Account Id.
 /// No need to convert to address.
 fn v1_pubkey_to_account_id(pubkey: PubkeyV1) -> AccountId {
diff --git a/node/src/chain_spec/gtest.rs b/node/src/chain_spec/gtest.rs
index 03ba548972fd7a4f04aa4476f484634e9c34e90d..73a9541566d1c5aeabfcfa6337dd3a6a999a094c 100644
--- a/node/src/chain_spec/gtest.rs
+++ b/node/src/chain_spec/gtest.rs
@@ -68,7 +68,7 @@ impl SessionKeysProvider<SessionKeys> for GTestSKP {
 
 fn get_parameters(_: &Option<GenesisParameters>) -> CommonParameters {
     CommonParameters {
-        currency_name: TOKEN_SYMBOL,
+        currency_name: TOKEN_SYMBOL.to_string(),
         decimals: TOKEN_DECIMALS,
         existential_deposit: parameters::ExistentialDeposit::get(),
         membership_period: parameters::MembershipPeriod::get(),
@@ -233,8 +233,6 @@ fn genesis_data_to_gtest_genesis_conf(
     genesis_data: super::gen_genesis_data::GenesisData<GenesisParameters, SessionKeys>,
     wasm_binary: &[u8],
 ) -> gtest_runtime::GenesisConfig {
-    gen_genesis_data::dump_for_indexer(&genesis_data);
-
     let super::gen_genesis_data::GenesisData {
         accounts,
         treasury_balance,
diff --git a/resources/g1-data.json b/resources/g1-data.json
index a7dcbc24fa69c4579ab9aa0f786c2c4b90c94fe0..71b101159aa4f1c967479531a4144b50543e05ee 100644
--- a/resources/g1-data.json
+++ b/resources/g1-data.json
@@ -3,8 +3,8 @@
     "Hugues35": {
       "index": 9912,
       "owner_key": "124kU2KRus8sj9uQkrYs9P3B9TnG8Z47rS7JcZkbvpH8",
-      "balance": 383717,
-      "membership_expire_on": 1696338808,
+      "balance": 419091,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683169484,
       "certs_received": {
         "Tidus": 1727757466,
@@ -20,7 +20,7 @@
     "GeraldinePeace": {
       "index": 6959,
       "owner_key": "127i8bbhkbr6qzpbCyrhiveKR5d9AwPD4uoxyKM5kPDQ",
-      "balance": 595616,
+      "balance": 635302,
       "membership_expire_on": 1705509948,
       "next_cert_issuable_on": 1668347505,
       "certs_received": {
@@ -35,7 +35,7 @@
     "mayAbeille": {
       "index": 11990,
       "owner_key": "12BNxcUDnnFJ5hz4STw9Gw64FhN8WtzT69SYtoQQYqfX",
-      "balance": 221497,
+      "balance": 256183,
       "membership_expire_on": 1708119580,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -49,7 +49,7 @@
     "Artense63FFM": {
       "index": 7253,
       "owner_key": "12HH46d6ju8K3mdynDFh93pRzGwmHAsaTvmFBW9SuaCk",
-      "balance": 569583,
+      "balance": 609269,
       "membership_expire_on": 1705490038,
       "next_cert_issuable_on": 1652755083,
       "certs_received": {
@@ -72,7 +72,7 @@
     "Matris35": {
       "index": 12798,
       "owner_key": "12LoBu1qHfYvfa36qoC7v6A8zx7ts6TCbNopai5iyKLW",
-      "balance": 90652,
+      "balance": 130338,
       "membership_expire_on": 1716843452,
       "next_cert_issuable_on": 1690711925,
       "certs_received": {
@@ -87,7 +87,7 @@
     "adridu38": {
       "index": 4194,
       "owner_key": "12Mxpv2MYYYFJrk4JeAC3erM7CmdzpfG7xeuVLihohVL",
-      "balance": 1066833,
+      "balance": 1106519,
       "membership_expire_on": 1721352412,
       "next_cert_issuable_on": 1678108309,
       "certs_received": {
@@ -102,9 +102,9 @@
     "Jens777": {
       "index": 12523,
       "owner_key": "12RAuMpUCNBdPSyeiZweodxXwLJfZGwfjMWkQdtw1M6A",
-      "balance": 148098,
+      "balance": 155149,
       "membership_expire_on": 1714265647,
-      "next_cert_issuable_on": 1692050216,
+      "next_cert_issuable_on": 1694393342,
       "certs_received": {
         "Kaikus": 1745177378,
         "majo": 1745768709,
@@ -116,6 +116,7 @@
         "Thor": 1745766995,
         "Felicia": 1745522254,
         "Gitty": 1756284330,
+        "Andre": 1755806183,
         "tuttle": 1745200808,
         "Ralf": 1744941126,
         "eno": 1745775381
@@ -124,18 +125,12 @@
     "ChristelleRousseau": {
       "index": 5887,
       "owner_key": "12RVqN67NYb2nLVf9rFBodtHXzF82Dec8wnWnGbGWCkg",
-      "balance": 839293,
-      "membership_expire_on": 1716480839,
+      "balance": 852109,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1658127357,
       "certs_received": {
-        "fournaise1": 1694568607,
         "Orchideedu10": 1697781550,
-        "Eric": 1694558589,
-        "Paul-B": 1694562879,
-        "ortie": 1694557894,
         "Luna": 1723699539,
-        "s00999": 1694559946,
-        "Nounoursgt8946": 1694559946,
         "SanelaM": 1712611959
       }
     },
@@ -162,30 +157,23 @@
       "next_cert_issuable_on": 1635913948,
       "certs_received": {
         "Jovivant": 1701714562,
-        "Jarrive": 1698949881,
-        "Llorens": 1695316250
+        "Jarrive": 1698949881
       }
     },
     "Felixzekat": {
       "index": 5848,
       "owner_key": "12qqPztWKyQCMktJ13bF92qn5QnYxDVei596QFToNUSt",
-      "balance": 585673,
-      "membership_expire_on": 1720022032,
+      "balance": 598489,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670687500,
       "certs_received": {
-        "fournaise1": 1694568389,
-        "Paul-B": 1694568389,
-        "YIKING": 1751863371,
-        "EveC": 1694568162,
-        "sisyphe": 1694561522,
-        "s00999": 1694559946,
-        "Nounoursgt8946": 1694556277
+        "YIKING": 1751863371
       }
     },
     "Silvibenedet": {
       "index": 11046,
       "owner_key": "12yogje9ooxHiLzqMfgU9Ym8d6RHF2XpgwpQCrCGU7sf",
-      "balance": 163222,
+      "balance": 202908,
       "membership_expire_on": 1703775941,
       "next_cert_issuable_on": 1680367904,
       "certs_received": {
@@ -208,7 +196,6 @@
       "next_cert_issuable_on": 1636963762,
       "certs_received": {
         "Alcidejet": 1742321501,
-        "CharlesAbecassis": 1696527623,
         "maiadereva": 1743740792,
         "Sybille": 1739413942,
         "Pruls": 1739303562,
@@ -221,9 +208,9 @@
     "AgnesFerey": {
       "index": 7271,
       "owner_key": "13Ac4ABhGgqyeVqSrteMCVoP3Ldofe3KtnvdZuJNWE81",
-      "balance": 518181,
+      "balance": 557867,
       "membership_expire_on": 1708705778,
-      "next_cert_issuable_on": 1677491102,
+      "next_cert_issuable_on": 1693998160,
       "certs_received": {
         "WhiteWolf": 1709088533,
         "Adriel": 1708751840,
@@ -240,7 +227,7 @@
     "HenryGab": {
       "index": 10827,
       "owner_key": "13CHeiamnTs59TrfX7HCiMUHoWV1GUXtt7DgWRPevS1m",
-      "balance": 283866,
+      "balance": 323552,
       "membership_expire_on": 1700518125,
       "next_cert_issuable_on": 1671446016,
       "certs_received": {
@@ -254,7 +241,7 @@
     "luciernaga": {
       "index": 11368,
       "owner_key": "13M5f89Hts4H36TSpBSGNpa6GCzskXUnpFiQq4V2k1YP",
-      "balance": 177211,
+      "balance": 197897,
       "membership_expire_on": 1705578617,
       "next_cert_issuable_on": 1680217291,
       "certs_received": {
@@ -270,8 +257,8 @@
     "UFO": {
       "index": 10631,
       "owner_key": "13SPrhBhjj4pWKzWGiD4ytuycRLgpFPsJG494JE92U7V",
-      "balance": 411015,
-      "membership_expire_on": 1700795824,
+      "balance": 475701,
+      "membership_expire_on": 1727741230,
       "next_cert_issuable_on": 1685199200,
       "certs_received": {
         "Manu_El": 1732437074,
@@ -292,7 +279,7 @@
     "Michaela": {
       "index": 6958,
       "owner_key": "13XeyNA6pugZ1bfYbckwZHFhJLZW3o1iJDuwVpJjSKDL",
-      "balance": 571675,
+      "balance": 611361,
       "membership_expire_on": 1705893741,
       "next_cert_issuable_on": 1649240436,
       "certs_received": {
@@ -315,7 +302,7 @@
     "Jerome035": {
       "index": 10781,
       "owner_key": "13bwEWJQN6uzCESBofaHeyNhuSCTe51chdeZQvwWzoSc",
-      "balance": 74304,
+      "balance": 113262,
       "membership_expire_on": 1702255588,
       "next_cert_issuable_on": 1690728555,
       "certs_received": {
@@ -355,7 +342,7 @@
     "InmaRegina": {
       "index": 9066,
       "owner_key": "13hFX4M9GAVAdZnTQh1BSgAZBxoUkCfdBDkzvoMK8n1d",
-      "balance": 443055,
+      "balance": 453641,
       "membership_expire_on": 1716136181,
       "next_cert_issuable_on": 1691121182,
       "certs_received": {
@@ -389,7 +376,7 @@
     "SandrineMala": {
       "index": 7732,
       "owner_key": "13sPNCLDmDNvGCSP3RvfNnVG3mzf8koZVRyRLgCzXEn4",
-      "balance": 275135,
+      "balance": 314821,
       "membership_expire_on": 1706275618,
       "next_cert_issuable_on": 1682516199,
       "certs_received": {
@@ -441,7 +428,7 @@
     "1UniversoUno": {
       "index": 10792,
       "owner_key": "13tLLoyxTeSuGbbEbtnojF6PVj3PcAyRwRfEqkVgdCvH",
-      "balance": 212443,
+      "balance": 200129,
       "membership_expire_on": 1701961733,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -463,7 +450,7 @@
     "MilaChavez": {
       "index": 1566,
       "owner_key": "147X1ezrwHrvq4bbz54ZSiQnG5vCK8xBrjmYQeneS1ge",
-      "balance": 1086102,
+      "balance": 1125788,
       "membership_expire_on": 1715453639,
       "next_cert_issuable_on": 1692586397,
       "certs_received": {
@@ -475,7 +462,6 @@
         "syl1209": 1702766713,
         "SophieR": 1709842204,
         "IsabelleEscudero": 1753995922,
-        "lamouette": 1695169608,
         "Musique33": 1747889928,
         "Lorraine83": 1736309969,
         "Oceanis411": 1702689851,
@@ -486,7 +472,7 @@
     "IdoLG": {
       "index": 11528,
       "owner_key": "14Qg8yMaPDsG9oRwikg6SjihyhkxH9BWADYNQgYCQxfe",
-      "balance": 99882,
+      "balance": 60668,
       "membership_expire_on": 1707341766,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -501,7 +487,7 @@
     "YannF": {
       "index": 12568,
       "owner_key": "14Z8odMJzpFawt2v2TAKKvFTEX24myfjAPKFm4XpLxH8",
-      "balance": 123888,
+      "balance": 163574,
       "membership_expire_on": 1712874872,
       "next_cert_issuable_on": 1685625600,
       "certs_received": {
@@ -515,7 +501,7 @@
     "jaime": {
       "index": 6994,
       "owner_key": "14aRCBTcVzsdFDhfYhn3ABgvY75F2WhBVpihr96ShdyT",
-      "balance": 91848,
+      "balance": 131534,
       "membership_expire_on": 1715791962,
       "next_cert_issuable_on": 1646191311,
       "certs_received": {
@@ -530,7 +516,7 @@
     "MatheoLibreCommeLaMesange": {
       "index": 4414,
       "owner_key": "14gyTx5gYiwXNFzXn2NWKwj1scDaSDhS1AvhCkmDQcg3",
-      "balance": 1096338,
+      "balance": 1136024,
       "membership_expire_on": 1706218039,
       "next_cert_issuable_on": 1678378105,
       "certs_received": {
@@ -544,14 +530,13 @@
     "PatrickEtreSouverain": {
       "index": 5030,
       "owner_key": "14n2smUwpM38z9BzNKuwksYJb9VTxMNwiTVFyHq6KSuX",
-      "balance": 406075,
+      "balance": 445761,
       "membership_expire_on": 1706898293,
       "next_cert_issuable_on": 1689759318,
       "certs_received": {
         "gimo": 1738630545,
         "Kantz": 1733779794,
         "Radagast": 1706638697,
-        "Sandelrio": 1694325358,
         "ArnaudLuc": 1701132237,
         "Shirlaip": 1705120259,
         "respe13": 1719951579
@@ -560,7 +545,7 @@
     "Hammazone": {
       "index": 7691,
       "owner_key": "16cRnCvBGvBjnXCwUZBh6poM13VZvH1Dy5JQUZgPDfi",
-      "balance": 546788,
+      "balance": 586474,
       "membership_expire_on": 1708688584,
       "next_cert_issuable_on": 1667618782,
       "certs_received": {
@@ -576,9 +561,9 @@
     "Zap": {
       "index": 1252,
       "owner_key": "1N18iwCfzLYd7u6DTKafVrzs9bPyeYTGHoc5SsLMcfv",
-      "balance": 876916,
+      "balance": 882602,
       "membership_expire_on": 1705760296,
-      "next_cert_issuable_on": 1692198353,
+      "next_cert_issuable_on": 1696245916,
       "certs_received": {
         "Dams": 1738189581,
         "FannyBee": 1755810510,
@@ -596,6 +581,7 @@
         "Nataliedanseencouple": 1737433620,
         "DimitriTuffreau": 1723315178,
         "MartinsE": 1742357079,
+        "Bobby1961": 1756663662,
         "DanielVienne": 1741304910,
         "Poesy": 1718830322,
         "Nadege51": 1744922451,
@@ -604,14 +590,17 @@
         "TataCC": 1741461202,
         "ChristianMichelChampon": 1739843757,
         "Natheidi": 1738371389,
+        "Maaude09": 1759259548,
         "Camizot": 1737155996,
         "Loup": 1743998887,
         "solennevm": 1739833488,
         "Emeline": 1728423176,
         "Bde": 1742783890,
         "Gnome": 1740891914,
+        "DBrrull": 1757746305,
         "Claire": 1742362766,
         "Colaga": 1740897452,
+        "Bzh38": 1757524683,
         "Fanchon": 1736726097,
         "Raphael": 1733615865,
         "MarieAndara": 1747902062,
@@ -644,7 +633,6 @@
       "certs_received": {
         "MGweb": 1721879385,
         "Fleurt11": 1696847113,
-        "BRIGITTE2019": 1696366804,
         "Claudio": 1745883956,
         "valoche": 1754110204
       }
@@ -652,7 +640,7 @@
     "diablade": {
       "index": 2792,
       "owner_key": "1RcFajMmNL5m4Gfx2ketJwsssuvYUfFSkRwXu6qoNnf",
-      "balance": 855907,
+      "balance": 833093,
       "membership_expire_on": 1721069983,
       "next_cert_issuable_on": 1691379013,
       "certs_received": {
@@ -664,8 +652,7 @@
         "hocine": 1697165466,
         "Bzh38": 1736220538,
         "jytou": 1754426043,
-        "MarieAndara": 1744081301,
-        "Pedrinho": 1695855013
+        "MarieAndara": 1744081301
       }
     },
     "Robert": {
@@ -676,10 +663,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Sienna": {
+      "index": 13528,
+      "owner_key": "1kfTcCTsXXTvmVyi7GQUadSxemYacJjRSSUi3mcs9DK",
+      "balance": 34452,
+      "membership_expire_on": 1725202258,
+      "next_cert_issuable_on": 1696140597,
+      "certs_received": {
+        "poissondanslo": 1756863679,
+        "Agartha": 1756762704,
+        "Clairdelune": 1756760479,
+        "Emily": 1756760769,
+        "Nikisan": 1756790323,
+        "MinaManar": 1756917295
+      }
+    },
     "luciagares": {
       "index": 11495,
       "owner_key": "1oDPUBTJya5LC7pLcqFJdiGFrFvFDBovFGihvjZzqLm",
-      "balance": 271380,
+      "balance": 322566,
       "membership_expire_on": 1706832408,
       "next_cert_issuable_on": 1688632220,
       "certs_received": {
@@ -699,18 +701,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1638368764,
       "certs_received": {
-        "Magabrasil2020": 1701411964,
-        "Droudrou": 1695171086,
-        "diletta": 1695454326,
-        "Clr44": 1695169160,
-        "Beacouleurs": 1696483045,
-        "Maia": 1695169854
+        "Magabrasil2020": 1701411964
       }
     },
     "SandrineCoomans": {
       "index": 10694,
       "owner_key": "214EpjUj1MuQBc4ngBQuMd5foRbJ61wabKZT3eLUMzyq",
-      "balance": 289838,
+      "balance": 329524,
       "membership_expire_on": 1701718426,
       "next_cert_issuable_on": 1679065125,
       "certs_received": {
@@ -735,11 +732,12 @@
     "Jsln6289": {
       "index": 7092,
       "owner_key": "21HJnUhV94CWt6zWti3uNe9StciL86S7g8rsfYXsQdjZ",
-      "balance": 572871,
+      "balance": 616557,
       "membership_expire_on": 1702389644,
-      "next_cert_issuable_on": 1691996568,
+      "next_cert_issuable_on": 1695688340,
       "certs_received": {
         "maud": 1707275003,
+        "NathaGhis6389": 1757526412,
         "Isona": 1751327930,
         "Hernest": 1751346495,
         "marinetfrommars": 1724572164,
@@ -747,10 +745,12 @@
         "wopat": 1708542442,
         "Tifenn": 1708890291,
         "Xavierpoisot": 1708566526,
+        "Lnbanor": 1755939637,
         "Murielg": 1707270424,
         "Laurette21": 1729751331,
         "Myka": 1707267342,
         "Menez20100": 1729622033,
+        "HappyAmina": 1759385841,
         "AgneSb": 1721009330,
         "chaumesaries": 1707062766
       }
@@ -758,7 +758,7 @@
     "Emy32": {
       "index": 10593,
       "owner_key": "21KQbcRWHPQfCzFWneHJFLkx6Y7ZQFLBgXM4swuy6KTz",
-      "balance": 232782,
+      "balance": 272468,
       "membership_expire_on": 1700929150,
       "next_cert_issuable_on": 1680056573,
       "certs_received": {
@@ -773,7 +773,7 @@
     "Coco83": {
       "index": 10381,
       "owner_key": "21iZ63nkb9GQn5dKF3dQGDjBA2fzh62D3V713P17WNMD",
-      "balance": 313259,
+      "balance": 352945,
       "membership_expire_on": 1700019510,
       "next_cert_issuable_on": 1678286041,
       "certs_received": {
@@ -791,9 +791,9 @@
     "lims": {
       "index": 5187,
       "owner_key": "21oefAESz2A1CCFCr1NPw5fsqqNVZNNymUJeKTVjybVQ",
-      "balance": 887773,
+      "balance": 927459,
       "membership_expire_on": 1699663375,
-      "next_cert_issuable_on": 1692095871,
+      "next_cert_issuable_on": 1694426828,
       "certs_received": {
         "Vanthegreat": 1743100247,
         "lavenirestunlongpasse": 1732185596,
@@ -808,9 +808,9 @@
     "RuthGuerrero": {
       "index": 11092,
       "owner_key": "21qRmnTWr2TYYuVMhr17CEbrhUn37vyVHGfhkBhUZ1K9",
-      "balance": 9164,
+      "balance": 11950,
       "membership_expire_on": 1703802836,
-      "next_cert_issuable_on": 1693214957,
+      "next_cert_issuable_on": 1696438166,
       "certs_received": {
         "carmela": 1752630416,
         "JACA": 1735867748,
@@ -820,7 +820,9 @@
         "Marianoconcentrado": 1735861554,
         "Shankarina": 1755149150,
         "JimenaCastillo": 1735602477,
+        "Maaude09": 1757615677,
         "MarioM": 1751427359,
+        "GeraldineGarrigues": 1756764711,
         "AgnesdArpajon": 1735865468,
         "Caropin": 1740436046,
         "fania": 1736223858
@@ -829,9 +831,9 @@
     "Psy": {
       "index": 13141,
       "owner_key": "222vZBCYiWJYDGGeMfjLvM1dRurZz1FGx69FExianKYH",
-      "balance": 54568,
+      "balance": 94254,
       "membership_expire_on": 1718756921,
-      "next_cert_issuable_on": 1691382634,
+      "next_cert_issuable_on": 1695514234,
       "certs_received": {
         "SophieRita": 1751588853,
         "DomVe": 1751923994,
@@ -849,7 +851,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1653365886,
       "certs_received": {
-        "kapis": 1693611024,
         "Crystal": 1710219039,
         "Eleonora": 1716251849,
         "SiloeC": 1715199525,
@@ -867,20 +868,18 @@
         "PiNguyen": 1702937358,
         "SarahAchalafin": 1714092593,
         "BenNature": 1705673000,
-        "Jarrive": 1693708957,
         "ValerieBaudouin": 1706044613,
         "vene": 1710266982,
         "Ivann971": 1697085644,
         "annefreda": 1711087517,
         "danieln": 1702870699,
-        "Elodea": 1703839626,
-        "psycotox80": 1696379136
+        "Elodea": 1703839626
       }
     },
     "Francis": {
       "index": 4125,
       "owner_key": "22QzXqr68XRw8cJvc5XTRzGRKf9Zr33Gyt4ivM29kpKz",
-      "balance": 85928,
+      "balance": 5614,
       "membership_expire_on": 1716295558,
       "next_cert_issuable_on": 1677331680,
       "certs_received": {
@@ -895,7 +894,7 @@
     "Jed": {
       "index": 12232,
       "owner_key": "22X6YPZSTgCntS7NVAhVBteB8eKSM11q9NSeQSbgwiMW",
-      "balance": 519032,
+      "balance": 580218,
       "membership_expire_on": 1712190101,
       "next_cert_issuable_on": 1680785354,
       "certs_received": {
@@ -910,7 +909,7 @@
     "GuillaumeB": {
       "index": 7233,
       "owner_key": "22im9hyLQ8a8sWT3wm73wSicsVzALrzvTYLGNoABgh7b",
-      "balance": 572709,
+      "balance": 612395,
       "membership_expire_on": 1706888376,
       "next_cert_issuable_on": 1676035168,
       "certs_received": {
@@ -925,26 +924,28 @@
     "FraBro": {
       "index": 6091,
       "owner_key": "22imVQFfKLbkzgQrvirFCZiRhz3CYkQNSDypaSPSf5NT",
-      "balance": 659455,
-      "membership_expire_on": 1694297750,
-      "next_cert_issuable_on": 1685422059,
+      "balance": 693801,
+      "membership_expire_on": 1726274748,
+      "next_cert_issuable_on": 1695040865,
       "certs_received": {
         "GastonL": 1699998940,
         "fabireine": 1724913101,
+        "Nouchka1": 1757144868,
         "Aurelien": 1731796829,
         "Basile": 1733694562,
         "LaurentNeuville": 1699301450,
         "Yukulele": 1699248647,
         "martineagatha": 1699473502,
-        "CarBro": 1699256629,
+        "CarBro": 1758084394,
         "ChristineV": 1699999149,
-        "PatHamster": 1700076647
+        "PatHamster": 1700076647,
+        "lebonange": 1757270840
       }
     },
     "puce": {
       "index": 7904,
       "owner_key": "22ukXy6uMiBiFMCaMSdhswJhwmS2Umc32GB6fNcfARAi",
-      "balance": 493017,
+      "balance": 526703,
       "membership_expire_on": 1714838412,
       "next_cert_issuable_on": 1677167501,
       "certs_received": {
@@ -959,11 +960,12 @@
     "Nathalie_Robin": {
       "index": 13213,
       "owner_key": "232toiMU3FprFxFW5qta6ks8X5ZtDiVanMAzcULGGSSc",
-      "balance": 12224,
+      "balance": 80210,
       "membership_expire_on": 1717760797,
-      "next_cert_issuable_on": 1691197240,
+      "next_cert_issuable_on": 1694395502,
       "certs_received": {
         "FrancoiseSTA07": 1751844271,
+        "HelloSunshine": 1758691843,
         "maximeparisot07": 1753130770,
         "MichelBonnaventure07": 1751787936,
         "Michellecuyer26": 1753136785,
@@ -973,7 +975,7 @@
     "Voyance51Paula": {
       "index": 12865,
       "owner_key": "232ufSJMYDSbZdVmyc7r4RHEaSiQnd7M2frkyF34D6cp",
-      "balance": 158008,
+      "balance": 194694,
       "membership_expire_on": 1717930486,
       "next_cert_issuable_on": 1689759318,
       "certs_received": {
@@ -989,7 +991,7 @@
     "Eiutim": {
       "index": 5804,
       "owner_key": "233H1FnW58RnbJyfoRPRgUvYE2oXxfxB6ULAFQTr1Rht",
-      "balance": 160676,
+      "balance": 102562,
       "membership_expire_on": 1716988444,
       "next_cert_issuable_on": 1693129321,
       "certs_received": {
@@ -997,23 +999,20 @@
         "Crystal": 1698817570,
         "Manu_El": 1756173881,
         "ClaireMonde": 1698300716,
-        "Yesyes": 1696389314,
         "BorisBernard": 1709019721,
         "Naymar": 1734401806,
         "Lurtxu": 1725779126,
+        "Naniestelar": 1755824993,
         "LesJardinsdeMalia": 1714965229,
-        "JerryBB": 1696189380,
         "AnianaYpunto": 1734491647,
         "MikaYeel": 1708462632,
+        "Isabella": 1757445554,
         "AliceWatsu": 1697004680,
         "FredB31": 1727372443,
         "Marta-Raksha": 1746911047,
-        "VivienProuvot": 1695936633,
         "BolidoC": 1730327128,
         "llanero": 1736942628,
-        "GeraldineGarrigues": 1696211449,
         "albalibre": 1727992430,
-        "Fred": 1696201822,
         "mathieuBize": 1702413197,
         "Celuiquicrelamehaute": 1752618335,
         "tuttle": 1734554878,
@@ -1035,7 +1034,7 @@
     "VP26": {
       "index": 10314,
       "owner_key": "23AUGt2s7CdRdikNk2AoEnzuz4gjzF4ELZMmQh55LGp4",
-      "balance": 304295,
+      "balance": 343981,
       "membership_expire_on": 1699733291,
       "next_cert_issuable_on": 1678271943,
       "certs_received": {
@@ -1062,7 +1061,7 @@
     "hirondelle": {
       "index": 9998,
       "owner_key": "23CeaxPAuXuoPmvCmPNTGU5FZuTkbeobb7fbkytye3EP",
-      "balance": 327611,
+      "balance": 367297,
       "membership_expire_on": 1697482066,
       "next_cert_issuable_on": 1691601338,
       "certs_received": {
@@ -1079,7 +1078,7 @@
     "Queta": {
       "index": 11903,
       "owner_key": "23DgEAuUHZZssePLyHfzExTv9K6phq4eU1MMJVVEqsDa",
-      "balance": 98145,
+      "balance": 32831,
       "membership_expire_on": 1706560396,
       "next_cert_issuable_on": 1689845478,
       "certs_received": {
@@ -1094,7 +1093,7 @@
     "Fiorenza11": {
       "index": 6057,
       "owner_key": "23Dk8BPdBZ2ivH7WSuUxXHaQh3R6JqiiS5zzJsgrtgzG",
-      "balance": 680404,
+      "balance": 720090,
       "membership_expire_on": 1699102046,
       "next_cert_issuable_on": 1657435367,
       "certs_received": {
@@ -1104,13 +1103,13 @@
         "sowelo": 1699564099,
         "Matthias": 1698804827,
         "RitaWilson": 1698910740,
-        "annefreda": 1698804486
+        "annefreda": 1757537420
       }
     },
     "OctavioAG": {
       "index": 11510,
       "owner_key": "23E9GUyVdVrJCLVMm5bdELd9rKn3p5aP5yiom4piqPBL",
-      "balance": 313262,
+      "balance": 342950,
       "membership_expire_on": 1707269919,
       "next_cert_issuable_on": 1682679385,
       "certs_received": {
@@ -1128,7 +1127,7 @@
     "BoeckM": {
       "index": 12235,
       "owner_key": "23LZPcfNPDwvb1UFE7vAKvLAqU4Eubkdi2hD2Ubnpdzb",
-      "balance": 191972,
+      "balance": 231658,
       "membership_expire_on": 1711297769,
       "next_cert_issuable_on": 1681440032,
       "certs_received": {
@@ -1158,7 +1157,7 @@
     "CamilleF": {
       "index": 7096,
       "owner_key": "23QNQLGjbuQmnWEacKoUoZ4CypAdh8TDERqr98z2r4GX",
-      "balance": 544191,
+      "balance": 583877,
       "membership_expire_on": 1713022200,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -1172,7 +1171,7 @@
     "GaelleRou": {
       "index": 8299,
       "owner_key": "23VpbhAwKWFiotDgq1TkTiQxmKgXQTyBi8n2CYt5ocgj",
-      "balance": 484542,
+      "balance": 524228,
       "membership_expire_on": 1711975284,
       "next_cert_issuable_on": 1665374623,
       "certs_received": {
@@ -1206,7 +1205,7 @@
     "reididflorent": {
       "index": 10825,
       "owner_key": "23gRBSW74nPyWMxk6ibRzV3mW6aDHQa2xCUJ4FV6jpPk",
-      "balance": 184066,
+      "balance": 223752,
       "membership_expire_on": 1703000794,
       "next_cert_issuable_on": 1687064836,
       "certs_received": {
@@ -1226,8 +1225,8 @@
     "LosMundosdeKrull": {
       "index": 10342,
       "owner_key": "23ryuMs3n8FvcrAfr5PTp32yHiHZJo5Stzpc1dGNEPKd",
-      "balance": 99836,
-      "membership_expire_on": 1699712038,
+      "balance": 106522,
+      "membership_expire_on": 1728273650,
       "next_cert_issuable_on": 1687675278,
       "certs_received": {
         "ErickG_G": 1740600169,
@@ -1260,9 +1259,9 @@
     "MKC": {
       "index": 13249,
       "owner_key": "23scjA3uSH5vpkd3g8qZwR2XT1q9YPBWojoSCQzhHxwc",
-      "balance": 45288,
+      "balance": 84974,
       "membership_expire_on": 1720953634,
-      "next_cert_issuable_on": 1693132225,
+      "next_cert_issuable_on": 1693746310,
       "certs_received": {
         "Nobby": 1753039386,
         "majo": 1753157779,
@@ -1274,7 +1273,7 @@
     "CatherinePerma": {
       "index": 5196,
       "owner_key": "23t2QEDRxZaRphDyErSyBCtF7PcpRPxziezqf5vZ5FMp",
-      "balance": 737934,
+      "balance": 777620,
       "membership_expire_on": 1718283605,
       "next_cert_issuable_on": 1689734559,
       "certs_received": {
@@ -1285,7 +1284,6 @@
         "yvesmignotte": 1700619178,
         "Imppao": 1711066754,
         "Crismos": 1737261828,
-        "samyourte": 1696737224,
         "Alexpiration": 1697954140,
         "LiliRose": 1718394707,
         "Totoro": 1710795918,
@@ -1321,7 +1319,7 @@
     "Camillefairy": {
       "index": 6777,
       "owner_key": "23uXF1hqoLWvcS9YDXBLFgWMR3P26bzGSF2CD4ph71j7",
-      "balance": 716038,
+      "balance": 741724,
       "membership_expire_on": 1701449360,
       "next_cert_issuable_on": 1683691823,
       "certs_received": {
@@ -1348,7 +1346,7 @@
     "lesa": {
       "index": 12566,
       "owner_key": "242CGvBzcnqiKkCf17VuBarQSVDdt9zc7bUW5Qr1QE4B",
-      "balance": 123888,
+      "balance": 163574,
       "membership_expire_on": 1712696527,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -1371,8 +1369,8 @@
     "Brigitte1383": {
       "index": 8313,
       "owner_key": "249quhV12frvmGfzBeqoSLLHiKTddwLXMhLDgZgtjLEH",
-      "balance": 383099,
-      "membership_expire_on": 0,
+      "balance": 404629,
+      "membership_expire_on": 1726572100,
       "next_cert_issuable_on": 1668786853,
       "certs_received": {
         "Lucia2022": 1716940489,
@@ -1385,7 +1383,7 @@
     "CelineMinamba974": {
       "index": 3652,
       "owner_key": "24BahX8RRM94WUT4i1zuGHwtQhbfwsUo2jP7E85RD7ug",
-      "balance": 449207,
+      "balance": 488893,
       "membership_expire_on": 1698582646,
       "next_cert_issuable_on": 1671102841,
       "certs_received": {
@@ -1403,7 +1401,7 @@
     "AucrAnnie": {
       "index": 8232,
       "owner_key": "24D2ieMkENadXGSpmA7sxq5sG1hNdaPoAuykdgoYPWi7",
-      "balance": 364797,
+      "balance": 464483,
       "membership_expire_on": 1712015901,
       "next_cert_issuable_on": 1686230423,
       "certs_received": {
@@ -1418,6 +1416,20 @@
         "jbolle": 1727980062
       }
     },
+    "MurielOVL": {
+      "index": 13633,
+      "owner_key": "24F1AHWdEWZm8HcnwiZB7Z5LFNphxRBBYymJyTLZkr55",
+      "balance": 33470,
+      "membership_expire_on": 1726597269,
+      "next_cert_issuable_on": 1696240229,
+      "certs_received": {
+        "Tournesol": 1758557196,
+        "Mahj": 1758489085,
+        "Nadia": 1758419234,
+        "Nikisan": 1758181519,
+        "BDMan": 1758216325
+      }
+    },
     "oceane": {
       "index": 1221,
       "owner_key": "24JB8TrSkQY2ePhMexS7ETeK7XYrDZhhSj9UEU3QU8WQ",
@@ -1444,7 +1456,7 @@
     "Bindou96": {
       "index": 11066,
       "owner_key": "24QpjNUozxtu4MeEQtEGoA9tKL6TvxdiZ2572rDienUL",
-      "balance": 255627,
+      "balance": 295313,
       "membership_expire_on": 1703786970,
       "next_cert_issuable_on": 1678256383,
       "certs_received": {
@@ -1460,7 +1472,7 @@
     "Sandrine-Tara": {
       "index": 11620,
       "owner_key": "24RzBJwbtLAhKyFNRVxeXogKQZofrAsjKfXc17s6oaSm",
-      "balance": 219990,
+      "balance": 259676,
       "membership_expire_on": 1707073384,
       "next_cert_issuable_on": 1677495040,
       "certs_received": {
@@ -1475,7 +1487,7 @@
     "Kevinbdn": {
       "index": 4925,
       "owner_key": "24cLxGLFX8AhnEzN1ShfGmxniNChWsz6dcRRHkygmsXW",
-      "balance": 683524,
+      "balance": 723210,
       "membership_expire_on": 1718933143,
       "next_cert_issuable_on": 1691983509,
       "certs_received": {
@@ -1483,13 +1495,14 @@
         "alizarina": 1752541327,
         "fredo79": 1754494035,
         "Sylmon": 1751945128,
+        "ADD": 1757701109,
         "Cindy": 1752920302
       }
     },
     "KarolineJ": {
       "index": 9992,
       "owner_key": "24fNuAMh66JcWwG5EazQnyCwVZB4rFyP1XX6ojCPbEQL",
-      "balance": 350170,
+      "balance": 389856,
       "membership_expire_on": 1697208471,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -1504,18 +1517,17 @@
     "kapis": {
       "index": 3883,
       "owner_key": "24jaf8XhYZyDyUb7hMcy5qsanaHBC11AwPefcCQRBQNA",
-      "balance": 371028,
+      "balance": 193024,
       "membership_expire_on": 1705678791,
-      "next_cert_issuable_on": 1693155049,
+      "next_cert_issuable_on": 1696500994,
       "certs_received": {
-        "JessyRipert": 1693760856,
         "Eiutim": 1743790830,
         "ManUtopiK": 1716921261,
         "SophSav": 1722208318,
+        "Cholo": 1757318325,
         "Manu_El": 1731982083,
         "Cordeliaze": 1755281840,
         "AfricadeHarmonia": 1736369370,
-        "mluque71": 1694466698,
         "MaudD": 1745259845,
         "VIctoriadeIbiza": 1743671870,
         "carmela": 1749939924,
@@ -1538,22 +1550,18 @@
         "LaCasaGran": 1725826928,
         "Tulsi": 1738372841,
         "sheveck": 1750448483,
-        "timetale": 1694662242,
         "Kouleurs": 1743722443,
         "Josepeuta": 1734895754,
         "Belobal": 1747971686,
         "YorgosA": 1711042321,
         "Bogart": 1714605728,
-        "LI21": 1696141066,
         "Oceano": 1707891164,
         "AngelMacksimilia": 1749976563,
-        "jorgeocanacastro": 1696213225,
-        "JuanCapitan": 1695273236,
+        "Tchoupi": 1758686019,
         "RachelGreen": 1713943634,
         "KimDS": 1721435889,
         "OlgaPont": 1748111351,
         "morimontj": 1756253209,
-        "Ayllon": 1694236050,
         "Icobonhomme": 1727401601,
         "G1rgina": 1730017253,
         "JimenaCastillo": 1738898637,
@@ -1562,7 +1570,6 @@
         "Performance": 1727128034,
         "Yohan": 1754940608,
         "elmau": 1722056450,
-        "Dixebral": 1693802380,
         "Denis": 1754456122,
         "PeterGreen": 1706067937,
         "maga65": 1702110139,
@@ -1572,9 +1579,9 @@
         "Diessanne": 1754718861,
         "scanlegentil": 1714801055,
         "Gamaliel": 1751650719,
+        "Vinciane": 1756774995,
         "Sophie_L": 1749610512,
         "NataSha": 1754941933,
-        "criscoutinho": 1696570321,
         "Wellno1": 1753207940,
         "llanero": 1732176702,
         "gerard94": 1716859911,
@@ -1585,7 +1592,6 @@
         "laIsa": 1710641632,
         "Galadriel": 1728074910,
         "rossinyol": 1703469085,
-        "poka": 1694735461,
         "mathieuBize": 1705482248,
         "BeatricePieper": 1697331184,
         "Eliasmurcia": 1697234129,
@@ -1602,17 +1608,14 @@
         "Jabicho": 1697304112,
         "PascalGuillemain": 1721167352,
         "ElenaMavida": 1700635630,
+        "Domi-Merlinou": 1759540362,
         "PauRicART": 1741203642,
-        "SurfinMaya": 1694738232,
         "Piraculteur": 1723220342,
         "Isalanzarote": 1734834942,
-        "SandraHeleno": 1695704015,
-        "Thais": 1695294720,
         "sarava": 1731265167,
         "pedrog1": 1719304203,
         "Gclaire": 1725310351,
         "roodinux": 1709524093,
-        "MissPine": 1693536416,
         "SyBr": 1712820739,
         "ABuenVivir": 1746380278,
         "fania": 1739406628
@@ -1621,7 +1624,7 @@
     "Mika90": {
       "index": 7800,
       "owner_key": "24mhbqWmGJnKEHjrgBwrr32rLpMdb6kwpHwEEyzNb3AF",
-      "balance": 483160,
+      "balance": 526626,
       "membership_expire_on": 1709601314,
       "next_cert_issuable_on": 1692626490,
       "certs_received": {
@@ -1648,7 +1651,7 @@
     "SylvieBeaumontPerron": {
       "index": 3492,
       "owner_key": "24uUGTcHabit18kXkTiHKdrv4a3yTVFPGGiN7S9UvULq",
-      "balance": 1237244,
+      "balance": 1276930,
       "membership_expire_on": 1700346902,
       "next_cert_issuable_on": 1647434933,
       "certs_received": {
@@ -1665,9 +1668,9 @@
     "Mariegateau": {
       "index": 1781,
       "owner_key": "24vMb5YgfaZzQS6qPbNevT3s8wBVJKnZJQPLXtzaTxQR",
-      "balance": 1050186,
+      "balance": 1089872,
       "membership_expire_on": 1712760435,
-      "next_cert_issuable_on": 1689317774,
+      "next_cert_issuable_on": 1695615801,
       "certs_received": {
         "AudreyNaturo": 1727718917,
         "CamilleLemasson": 1753672659,
@@ -1680,9 +1683,9 @@
     "Gscarabbe": {
       "index": 12988,
       "owner_key": "254YNM7oeK3Sqx8gQbrHPu4q1xGzmkXnDCpn6FURynCt",
-      "balance": 76556,
+      "balance": 116242,
       "membership_expire_on": 1718047946,
-      "next_cert_issuable_on": 1691765580,
+      "next_cert_issuable_on": 1696233586,
       "certs_received": {
         "Charbel45": 1750703886,
         "ibisio": 1750611014,
@@ -1730,7 +1733,7 @@
     "Ellierim": {
       "index": 11617,
       "owner_key": "25DeWGrC74j6A2pkXSLQmBrp377cuEMebMCbwBck959E",
-      "balance": 216149,
+      "balance": 253635,
       "membership_expire_on": 1706912881,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -1744,7 +1747,7 @@
     "Netkarine": {
       "index": 11335,
       "owner_key": "25SGhMhjmv9fc51JLrFhWsuBi1rucqRQcpfX9g5zGoup",
-      "balance": 244873,
+      "balance": 284559,
       "membership_expire_on": 1704719113,
       "next_cert_issuable_on": 1674863094,
       "certs_received": {
@@ -1789,9 +1792,9 @@
     "olione": {
       "index": 1483,
       "owner_key": "25eHxZdKMfcXsFiKTypcDHB8sEQd7gs6PfYRcW6HmFfq",
-      "balance": 1885688,
+      "balance": 1925374,
       "membership_expire_on": 1702057591,
-      "next_cert_issuable_on": 1647530308,
+      "next_cert_issuable_on": 1694414525,
       "certs_received": {
         "Solesan": 1699863883,
         "Olilove": 1701307514,
@@ -1812,7 +1815,7 @@
     "Lisie": {
       "index": 6664,
       "owner_key": "25jW4EqX1muPvjueYQ12gdGSro5k9vW4oz7QDvHWCKVQ",
-      "balance": 1256611,
+      "balance": 1297365,
       "membership_expire_on": 1706564484,
       "next_cert_issuable_on": 1678022133,
       "certs_received": {
@@ -1830,7 +1833,7 @@
     "Jackie73": {
       "index": 9369,
       "owner_key": "25kkF3x9MHkFkT7mewmgx9uRGMQUTEFJnpkYcKMWGvZp",
-      "balance": 379901,
+      "balance": 419587,
       "membership_expire_on": 1724017358,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -1852,7 +1855,6 @@
         "EvaBruneau": 1698993656,
         "Cou-net": 1699142537,
         "FERRATONCristina": 1699029715,
-        "Reno04": 1695970625,
         "RobertC": 1698995510,
         "GeraldineDiss": 1699069739
       }
@@ -1860,7 +1862,7 @@
     "Dams": {
       "index": 11404,
       "owner_key": "261MGCv2rdqmCZ6HZk42E8uYqGqGshYH9pAqfNuvaXkH",
-      "balance": 157393,
+      "balance": 197079,
       "membership_expire_on": 1705272489,
       "next_cert_issuable_on": 1692921571,
       "certs_received": {
@@ -1869,13 +1871,14 @@
         "Loup": 1737414628,
         "Nourviolon5378": 1754521266,
         "ElisabethMoreil": 1737415929,
+        "Mauve": 1757719010,
         "ben078m": 1737412248
       }
     },
     "CecileP": {
       "index": 11785,
       "owner_key": "264z9hmjmj5wsabZzwPQKCiV5AK8c3jfxmudU7Yau1Jm",
-      "balance": 198382,
+      "balance": 238068,
       "membership_expire_on": 1709047391,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -1904,7 +1907,7 @@
     "Asterix": {
       "index": 4692,
       "owner_key": "26JPGncdTKaL4dvhT1PHPgp3fjFhq7XLcHXGadWeobLJ",
-      "balance": 307872,
+      "balance": 347558,
       "membership_expire_on": 1700654957,
       "next_cert_issuable_on": 1678158487,
       "certs_received": {
@@ -1943,7 +1946,7 @@
     "Chantal54": {
       "index": 11982,
       "owner_key": "26TYVpnuhJhVd7YEdpNKSyx3EVzPQtvgsNasvBobKhPK",
-      "balance": 181497,
+      "balance": 221183,
       "membership_expire_on": 1710202728,
       "next_cert_issuable_on": 1687772936,
       "certs_received": {
@@ -1965,7 +1968,7 @@
     "Nieniece60": {
       "index": 11757,
       "owner_key": "26fuUAZzZp1Ds1okUETP5RjMn4rcc4sSdsLXbDtB9Dg4",
-      "balance": 208300,
+      "balance": 247986,
       "membership_expire_on": 1708005060,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -1980,13 +1983,14 @@
     "susanarico": {
       "index": 10270,
       "owner_key": "26gEY2dSyXwi1pAcvh8FZJq5czXn2LDStuhnjpiTQ7wo",
-      "balance": 228878,
-      "membership_expire_on": 1698455808,
-      "next_cert_issuable_on": 1679293297,
+      "balance": 268564,
+      "membership_expire_on": 1727904437,
+      "next_cert_issuable_on": 1696425710,
       "certs_received": {
         "ErickG_G": 1730700738,
         "etsaman": 1743959690,
         "MorganadeAvalon": 1730659646,
+        "Manacor": 1759471479,
         "JulianMF": 1730584184,
         "Mariaje": 1742342640,
         "Galadriel": 1730700738,
@@ -1996,7 +2000,7 @@
     "Louloute7": {
       "index": 8920,
       "owner_key": "26pwUdVR7BwjVXxfRwyRpqwVK5cGgJUooekgE91WEdsC",
-      "balance": 216900,
+      "balance": 256586,
       "membership_expire_on": 1721598876,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -2011,7 +2015,7 @@
     "gerardcambourian": {
       "index": 11782,
       "owner_key": "26shDvotg7mBEAue2bzmKt3MMAXMQndbWWi4gmiVSZWJ",
-      "balance": 458882,
+      "balance": 498568,
       "membership_expire_on": 1708389777,
       "next_cert_issuable_on": 1687689545,
       "certs_received": {
@@ -2027,7 +2031,7 @@
     "NicolasPepin": {
       "index": 12684,
       "owner_key": "26zrorjgirvn8Kzre6euwUumUPVktw5o2t6xUdiKQ5kK",
-      "balance": 113208,
+      "balance": 152894,
       "membership_expire_on": 1715677544,
       "next_cert_issuable_on": 1685637330,
       "certs_received": {
@@ -2044,7 +2048,7 @@
     "fullanzer": {
       "index": 3389,
       "owner_key": "275Rm3q4uXDk6hEnQDBZeAVnV5ygw6dsfY63tuWyERkq",
-      "balance": 1184539,
+      "balance": 1224225,
       "membership_expire_on": 1706029430,
       "next_cert_issuable_on": 1640783812,
       "certs_received": {
@@ -2058,7 +2062,7 @@
     "Frizouille": {
       "index": 7656,
       "owner_key": "27CGCuWSyd397FJKk9UWShMp9bLSA7rPdHyZ7Xkb443c",
-      "balance": 127541,
+      "balance": 167227,
       "membership_expire_on": 1710297405,
       "next_cert_issuable_on": 1688908162,
       "certs_received": {
@@ -2084,7 +2088,7 @@
     "Truca": {
       "index": 5672,
       "owner_key": "27T82YGWYvxqA9TQRvHDqMAikdGr7hea5JJWhAdNKVsg",
-      "balance": 573323,
+      "balance": 613010,
       "membership_expire_on": 1715440445,
       "next_cert_issuable_on": 1689150792,
       "certs_received": {
@@ -2099,7 +2103,7 @@
     "Unicorn": {
       "index": 6621,
       "owner_key": "27Tt7iEFWs3uJN2kicECumvpjJvvuMW95EmFM3BvGuGx",
-      "balance": 558561,
+      "balance": 598247,
       "membership_expire_on": 1698193731,
       "next_cert_issuable_on": 1685586521,
       "certs_received": {
@@ -2130,7 +2134,7 @@
     "anniedubayle": {
       "index": 8828,
       "owner_key": "27Y2aPDc2RfiRydwKZ37cf8TBQE7JntgKMPQJSfzMpHD",
-      "balance": 444604,
+      "balance": 484290,
       "membership_expire_on": 1715297433,
       "next_cert_issuable_on": 1676296752,
       "certs_received": {
@@ -2161,7 +2165,7 @@
     "Mariekikinc98": {
       "index": 153,
       "owner_key": "27cg3J5Qmtw1XDwAkoxWqgyjr5kA18wGWJsVio15dfHo",
-      "balance": 2240781,
+      "balance": 2280467,
       "membership_expire_on": 1703296369,
       "next_cert_issuable_on": 1679411524,
       "certs_received": {
@@ -2184,7 +2188,7 @@
     "Tettla": {
       "index": 4749,
       "owner_key": "27iomX4ifqXDpTM4WEGxfkYFrYjGaQSAwuJNaBKGDV3B",
-      "balance": 602381,
+      "balance": 597067,
       "membership_expire_on": 1704227362,
       "next_cert_issuable_on": 1675134439,
       "certs_received": {
@@ -2198,7 +2202,7 @@
     "RADHA": {
       "index": 11918,
       "owner_key": "27n6ABkb5S2MWhyii2G3XhhH82TsKhhknnNQ5N5PM2EK",
-      "balance": 178392,
+      "balance": 208078,
       "membership_expire_on": 1709405040,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -2239,7 +2243,7 @@
     "Annoma": {
       "index": 11962,
       "owner_key": "27uCw2VNJVTRiizTGFqw9hAuUBMA53xDjnLv66B5VMbg",
-      "balance": 219615,
+      "balance": 259301,
       "membership_expire_on": 1708890023,
       "next_cert_issuable_on": 1685774894,
       "certs_received": {
@@ -2254,7 +2258,7 @@
     "Clochette": {
       "index": 5282,
       "owner_key": "27ua2LhnBjMpHFbWPQiSPa9Z4bF6RgzqZzG5wXqdtVHe",
-      "balance": 674172,
+      "balance": 713858,
       "membership_expire_on": 1700937053,
       "next_cert_issuable_on": 1669815566,
       "certs_received": {
@@ -2270,7 +2274,7 @@
     "CyrilPommier": {
       "index": 3122,
       "owner_key": "27v2Xts1myeQTqXEM26d823KQfMjyWAD3EshAWH5Jx3V",
-      "balance": 865599,
+      "balance": 905285,
       "membership_expire_on": 1696797323,
       "next_cert_issuable_on": 1681998131,
       "certs_received": {
@@ -2295,9 +2299,9 @@
     "vlareynie26": {
       "index": 7613,
       "owner_key": "283b5Qs73nTrMiFrUZYFSpaBPBEKDstrr4nvJYDvR7BM",
-      "balance": 512462,
+      "balance": 569942,
       "membership_expire_on": 1709847301,
-      "next_cert_issuable_on": 1683556812,
+      "next_cert_issuable_on": 1696468927,
       "certs_received": {
         "Philippe26": 1712698411,
         "Bil26": 1754288877,
@@ -2312,7 +2316,7 @@
     "Stejulemont": {
       "index": 6530,
       "owner_key": "283fVSQfLttsj76UoaKm86ToJnY9hn3SKBhPWd5BxJiR",
-      "balance": 619051,
+      "balance": 658737,
       "membership_expire_on": 1701693171,
       "next_cert_issuable_on": 1679299779,
       "certs_received": {
@@ -2355,9 +2359,9 @@
     "Flore45": {
       "index": 12905,
       "owner_key": "28Dertadq8EcsGpj5DXxamAb9TzCXn24bnLWcTJ45tYS",
-      "balance": 99440,
+      "balance": 139126,
       "membership_expire_on": 1718046027,
-      "next_cert_issuable_on": 1691827296,
+      "next_cert_issuable_on": 1696109424,
       "certs_received": {
         "MarieCathou": 1749974246,
         "TiboDom": 1754795881,
@@ -2397,7 +2401,7 @@
     "Pusteblume": {
       "index": 12927,
       "owner_key": "28aa1CT3AjygLTq45eJufJPk46XEVPpkX3Dv4a3j6URK",
-      "balance": 79032,
+      "balance": 118718,
       "membership_expire_on": 1718639909,
       "next_cert_issuable_on": 1691578230,
       "certs_received": {
@@ -2418,19 +2422,12 @@
       "balance": 444866,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Carolit": 1695230609,
-        "Yoham24": 1695242665,
-        "mimitoutvabien": 1695246056,
-        "Fleurdeschamps": 1695243675,
-        "jospiritus": 1695016405,
-        "liliecharrier": 1695230609
-      }
+      "certs_received": {}
     },
     "Mauer": {
       "index": 9185,
       "owner_key": "28fpKEVcKNYWWi8TTQWHq2o47guWw9shZgoZja6iDbhd",
-      "balance": 310819,
+      "balance": 330505,
       "membership_expire_on": 1718488150,
       "next_cert_issuable_on": 1686305597,
       "certs_received": {
@@ -2445,18 +2442,21 @@
     "Kaikus": {
       "index": 10501,
       "owner_key": "28hr6sQAcMiBtG7ok5KMJwyCNrWQf7ktsu2dk55Vxq58",
-      "balance": 814032,
-      "membership_expire_on": 1698443787,
-      "next_cert_issuable_on": 1693064135,
+      "balance": 873840,
+      "membership_expire_on": 1725204296,
+      "next_cert_issuable_on": 1695447319,
       "certs_received": {
         "CarmeCastineira": 1741583424,
         "Sergio": 1731814785,
         "EstelAlmaLibre": 1731814501,
         "catalinons": 1732417863,
         "Ingrid": 1755978217,
+        "Thor": 1758814643,
         "Francina": 1732417863,
+        "Silvia": 1758655933,
         "tuttle": 1732518222,
         "Ralf": 1747184123,
+        "Tunina": 1758860809,
         "jagrau": 1741513812,
         "MargoMallorca": 1754596233,
         "eno": 1731814501
@@ -2489,7 +2489,7 @@
     "Olivier73110": {
       "index": 13031,
       "owner_key": "28wR3g6pJWAmWpnghn9nrdGZWQRF2H7NFw1M8HhsKp4A",
-      "balance": 106216,
+      "balance": 145902,
       "membership_expire_on": 1718226018,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -2526,14 +2526,13 @@
         "Herminebzh": 1731516494,
         "Mayalibre": 1703378349,
         "JeDanse": 1701880067,
-        "Habibati": 1720688826,
-        "Habibi": 1693807237
+        "Habibati": 1720688826
       }
     },
     "Jocor": {
       "index": 11387,
       "owner_key": "29Kp4Do6PdSfMsY8tc3e4HJbSDN154UwXfqG8rDxWRJs",
-      "balance": 230263,
+      "balance": 269949,
       "membership_expire_on": 1706035449,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -2547,8 +2546,8 @@
     "WamniyomniWaste": {
       "index": 4355,
       "owner_key": "29QL5qzySEy7D5PEoRz2sQWvHmqq2dcJ9XZFhMa1dFPw",
-      "balance": 302311,
-      "membership_expire_on": 1695895087,
+      "balance": 331217,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670925572,
       "certs_received": {
         "Koutine": 1727485556,
@@ -2564,16 +2563,19 @@
     "sarahmagicienne": {
       "index": 13343,
       "owner_key": "29UgQ7qrQ4HcJEM3XPLJrMYbnsCLxXEmnx1EnDbcPra5",
-      "balance": 43800,
+      "balance": 693002,
       "membership_expire_on": 1721670455,
-      "next_cert_issuable_on": 1693443462,
+      "next_cert_issuable_on": 1696786853,
       "certs_received": {
+        "CaroleFabre": 1756855687,
         "Delfe": 1756013058,
         "JohannFox": 1753228613,
         "EtK": 1756433647,
+        "123Marie": 1757010799,
         "Fannyhihihi": 1753373494,
         "AnaisLicorne": 1753395604,
         "RobinRoni": 1753228055,
+        "Mamarion": 1759600375,
         "NolanRoni": 1753509638,
         "CoeurdeRigole": 1756537798,
         "eln": 1755168974,
@@ -2584,7 +2586,7 @@
     "ArletteM": {
       "index": 11587,
       "owner_key": "29VVDh1ZSH3EfgLZ3z6PhJzLthQEmordA5dVD3yToMbZ",
-      "balance": 118267,
+      "balance": 157953,
       "membership_expire_on": 1707841310,
       "next_cert_issuable_on": 1687867606,
       "certs_received": {
@@ -2606,13 +2608,14 @@
     "Rebirth35": {
       "index": 8188,
       "owner_key": "29ggsfq4zZgS3moZuzmSkk3BrsWvzWjtEQ4cQpAbAkPM",
-      "balance": 45925,
+      "balance": 23716,
       "membership_expire_on": 1711723227,
-      "next_cert_issuable_on": 1692469831,
+      "next_cert_issuable_on": 1696489869,
       "certs_received": {
         "Matris35": 1752614563,
         "Jerome035": 1734323094,
         "Eveilducoeur": 1732947053,
+        "Tchois": 1759258619,
         "Ladjack": 1741934313,
         "MYCELIUM": 1753592778,
         "Clauclo": 1735094850,
@@ -2628,6 +2631,7 @@
         "Diessanne": 1753156476,
         "Chrissbrl": 1723761162,
         "geantvert": 1753734253,
+        "Paola": 1759519893,
         "SylvieM35": 1743280827,
         "Marieannick": 1741494963,
         "GeoTT": 1754041240,
@@ -2657,7 +2661,7 @@
     "ArtesaniaAna": {
       "index": 9334,
       "owner_key": "2A5vyj2WGcR4xNWAPaoAN7bxgQmbihrHGPUfMDXzs7ci",
-      "balance": 36907,
+      "balance": 76593,
       "membership_expire_on": 1716243010,
       "next_cert_issuable_on": 1684658801,
       "certs_received": {
@@ -2687,11 +2691,12 @@
     "Amarante": {
       "index": 12198,
       "owner_key": "2A5wes6rGHKz1V5uRcyE3veb6ucaCszxLgHYeQjQ5n5B",
-      "balance": 175936,
+      "balance": 230122,
       "membership_expire_on": 1711496545,
       "next_cert_issuable_on": 1693494383,
       "certs_received": {
         "JanineBoitel": 1743201179,
+        "Laurent42": 1755938166,
         "Sophie01": 1743300590,
         "MartineBuhrig": 1743219034,
         "Benoa421": 1743534895,
@@ -2706,7 +2711,7 @@
     "TonyBelenus": {
       "index": 659,
       "owner_key": "2A7qbm7py4kuzy4qiCwFvCGtiSFtwoxKAWJpTT3DLzTs",
-      "balance": 1982865,
+      "balance": 2022551,
       "membership_expire_on": 1699911170,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -2717,12 +2722,26 @@
         "MatisChancellier": 1719207879
       }
     },
+    "PatrickAntonio": {
+      "index": 13765,
+      "owner_key": "2AC7dJJJ2EnQRRCyDbJYMEVstNLq9z2djtmRvzSb8gvx",
+      "balance": 36500,
+      "membership_expire_on": 1727986084,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "SandyMenegazzi": 1759790377,
+        "PaulO": 1759718037,
+        "VeroniqueMaessen": 1759544194,
+        "MaryseD": 1759605932,
+        "SergeUme": 1759849318
+      }
+    },
     "elenagrizzly": {
       "index": 11033,
       "owner_key": "2AEn78XD3meLcGKjGEwDF4QWxrAinbM3t7QJwKb3XbSK",
-      "balance": 208767,
+      "balance": 187653,
       "membership_expire_on": 1703644096,
-      "next_cert_issuable_on": 1692329996,
+      "next_cert_issuable_on": 1694703105,
       "certs_received": {
         "Senda": 1735243332,
         "ClaudiaR": 1742195087,
@@ -2743,8 +2762,8 @@
     "Alquimica": {
       "index": 10736,
       "owner_key": "2AHFFJ4QHLJszTfidzrZvqjn1ZGcvCDhiRknZreKBHA5",
-      "balance": 220369,
-      "membership_expire_on": 1699831036,
+      "balance": 260055,
+      "membership_expire_on": 1727630585,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Montsin": 1733505798,
@@ -2768,7 +2787,7 @@
     "Tserah": {
       "index": 10649,
       "owner_key": "2AaLZaiyj5jZzPK2BJDqwCpRwpD7nSQ9zasZAijPfPi1",
-      "balance": 298356,
+      "balance": 338042,
       "membership_expire_on": 1701267306,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -2798,7 +2817,7 @@
     "Bernard974": {
       "index": 3980,
       "owner_key": "2ArtgxY7UzVZTxjtXpfE3njoCXoSyS2Dw7bf7vSVAopL",
-      "balance": 954171,
+      "balance": 993857,
       "membership_expire_on": 1706026173,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -2813,9 +2832,9 @@
     "absalon2": {
       "index": 4852,
       "owner_key": "2B4YR4bDbFxw8ZLDEojWMkfiLReu9AiWRa6ThShYws49",
-      "balance": 1493716,
+      "balance": 1542102,
       "membership_expire_on": 1702865317,
-      "next_cert_issuable_on": 1692866459,
+      "next_cert_issuable_on": 1695195233,
       "certs_received": {
         "Cholo": 1756424032,
         "Ghadjo": 1696962170,
@@ -2825,6 +2844,7 @@
         "Abdul": 1698125526,
         "Volatiana": 1732999018,
         "patriziatavormina": 1745264151,
+        "Lucyinthesky": 1756743398,
         "Badiane": 1716312211,
         "amandinehinnekens": 1711785613,
         "dongo0011": 1709134890,
@@ -2856,7 +2876,7 @@
     "Bealili": {
       "index": 13064,
       "owner_key": "2B5XafJQSJqCPDU9ZR51e22tHtAnXDsK7bshnfjFTuEf",
-      "balance": 187580,
+      "balance": 227266,
       "membership_expire_on": 1719848166,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -2879,7 +2899,7 @@
     "Amiel": {
       "index": 7100,
       "owner_key": "2BJXjS9HzFt2QvbQkXFh8MJdWorrXcHkg8wcZdcwYMaV",
-      "balance": 608826,
+      "balance": 648512,
       "membership_expire_on": 1705183878,
       "next_cert_issuable_on": 1682579485,
       "certs_received": {
@@ -2897,6 +2917,20 @@
         "Ninon914": 1708989490
       }
     },
+    "Sorcierdubois": {
+      "index": 13723,
+      "owner_key": "2BXoAtKptfdKooJkdG65SxNst5d1QKdpo1gNKe54dV2o",
+      "balance": 11889,
+      "membership_expire_on": 1726167963,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Didilou": 1758483514,
+        "Juneve": 1759297687,
+        "Lilo26": 1759376593,
+        "Cathy26": 1759141564,
+        "gedeon26": 1758437064
+      }
+    },
     "EliseB": {
       "index": 8739,
       "owner_key": "2BYX7D7B2QVmm8EqeRAXVGBDNWQqwbk87JmspMaZuSfp",
@@ -2919,9 +2953,9 @@
     "JaYaMaTa": {
       "index": 7195,
       "owner_key": "2BgKPuhb2MYtkLXp67gYtGL9NxuoJ3irJ5LKTdHio2CG",
-      "balance": 493484,
+      "balance": 589271,
       "membership_expire_on": 1707265371,
-      "next_cert_issuable_on": 1677643347,
+      "next_cert_issuable_on": 1695441498,
       "certs_received": {
         "Crystal": 1708468909,
         "AnneChaimbault": 1709267796,
@@ -2935,9 +2969,9 @@
     "FannyBee": {
       "index": 13138,
       "owner_key": "2BjvAVUqhYz4DHCxznNzp4a2mL1AimrHFzmxPHNY4Jmm",
-      "balance": 56468,
+      "balance": 89154,
       "membership_expire_on": 1720023007,
-      "next_cert_issuable_on": 1692767310,
+      "next_cert_issuable_on": 1695018360,
       "certs_received": {
         "Zap": 1752222810,
         "DimitriTuffreau": 1752200393,
@@ -2949,8 +2983,8 @@
     "gioiasb": {
       "index": 9665,
       "owner_key": "2BmGk84oH8W5PdpbX8nmQf9DiYfxbhobNTNjG1Kz74Gi",
-      "balance": 313627,
-      "membership_expire_on": 1695072642,
+      "balance": 332851,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "EnergyKiwi": 1727288569,
@@ -2963,7 +2997,7 @@
     "Beps": {
       "index": 8354,
       "owner_key": "2BncG2ikx3nDXbfMtfs1Uhh2399WwbJX8mpRAEJ5EN2f",
-      "balance": 480338,
+      "balance": 520024,
       "membership_expire_on": 1717160997,
       "next_cert_issuable_on": 1654750468,
       "certs_received": {
@@ -2978,7 +3012,7 @@
     "Sophie81": {
       "index": 13167,
       "owner_key": "2Bt6iwJUjnTAFjkTVfWcu4zbqAQUZqfN2tcqiZ3LR9jB",
-      "balance": 50196,
+      "balance": 89882,
       "membership_expire_on": 1717029122,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -2992,8 +3026,8 @@
     "Abrialys": {
       "index": 10226,
       "owner_key": "2BvwdzAUFYoT12K8Rf923xi69fEV1ui5FsZPqGaDeYkq",
-      "balance": 427135,
-      "membership_expire_on": 1698840227,
+      "balance": 366821,
+      "membership_expire_on": 1725543369,
       "next_cert_issuable_on": 1692198015,
       "certs_received": {
         "Ajna21": 1730825826,
@@ -3023,7 +3057,7 @@
     "MOUKI": {
       "index": 12660,
       "owner_key": "2C6WTo8CWgyMCJSrjFnVY8tBXJonhVqzhvxb27jnAME6",
-      "balance": 116344,
+      "balance": 156030,
       "membership_expire_on": 1713575939,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -3038,7 +3072,7 @@
     "marcile": {
       "index": 12267,
       "owner_key": "2C7ctTYATHE242nbEWjwuZMiN7ASEcYfZQDUWVKvPMRu",
-      "balance": 146928,
+      "balance": 186614,
       "membership_expire_on": 1712233230,
       "next_cert_issuable_on": 1687794934,
       "certs_received": {
@@ -3065,7 +3099,7 @@
     "NaomiOpdenacker": {
       "index": 6431,
       "owner_key": "2CAaQiY4E1a9HVvsWWtJjpdcm9B9HyA2mDo1qheYWxCy",
-      "balance": 657027,
+      "balance": 696713,
       "membership_expire_on": 1698671397,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -3080,7 +3114,7 @@
     "Midorela": {
       "index": 6949,
       "owner_key": "2CFoacrwfZ7fkGo9i4FVj7mn6fYefDE7nqzhsNSBf9aq",
-      "balance": 543217,
+      "balance": 582903,
       "membership_expire_on": 1702336760,
       "next_cert_issuable_on": 1688971658,
       "certs_received": {
@@ -3106,9 +3140,9 @@
     "jeje43": {
       "index": 3603,
       "owner_key": "2CLeqbKp6ywdPV5SwstoDGe9SQtxyKR3sUCWBQiERTyw",
-      "balance": 185227,
+      "balance": 224913,
       "membership_expire_on": 1720225057,
-      "next_cert_issuable_on": 1688655364,
+      "next_cert_issuable_on": 1694095702,
       "certs_received": {
         "VictoireJune": 1727324961,
         "VirginMarcCptMembre": 1722694694,
@@ -3146,7 +3180,7 @@
     "Dadann": {
       "index": 11031,
       "owner_key": "2CRV2NNeYWwTxXk6o77t5gUvMx5uFZUmLRYnh9rCgBor",
-      "balance": 270781,
+      "balance": 310467,
       "membership_expire_on": 1703594985,
       "next_cert_issuable_on": 1675258632,
       "certs_received": {
@@ -3160,9 +3194,9 @@
     "GybelsJosee": {
       "index": 10400,
       "owner_key": "2CRgCu7GLUDJjrfMd5kv5PmKigXLVZcsQ7bJBPDZXukV",
-      "balance": 36100,
+      "balance": 20886,
       "membership_expire_on": 1700151190,
-      "next_cert_issuable_on": 1679235999,
+      "next_cert_issuable_on": 1695086110,
       "certs_received": {
         "Sisi": 1731839261,
         "Mcb": 1731899523,
@@ -3175,7 +3209,7 @@
     "steph74": {
       "index": 11861,
       "owner_key": "2Cd1GXwEhm5Rdz3HaSmza2j7SwR4ezYjRzTx5RBHnrZv",
-      "balance": 194187,
+      "balance": 233873,
       "membership_expire_on": 1709161332,
       "next_cert_issuable_on": 1687773153,
       "certs_received": {
@@ -3189,17 +3223,18 @@
     "Bich": {
       "index": 6104,
       "owner_key": "2CeLJ5SHFF5cRJ9CmxB7M6eKirnueibC6w5b3Vi323RR",
-      "balance": 656011,
-      "membership_expire_on": 1698790737,
-      "next_cert_issuable_on": 1677727067,
+      "balance": 690697,
+      "membership_expire_on": 1725184118,
+      "next_cert_issuable_on": 1695620014,
       "certs_received": {
         "Crystal": 1700023152,
         "annicam": 1710227783,
         "Tahiti": 1740513496,
         "Guiaime": 1718913064,
         "Tania": 1720479522,
-        "JeandelAude": 1699163988,
+        "JeandelAude": 1756492365,
         "Etoiledunord": 1717736843,
+        "Marieclaude": 1758691139,
         "ASHTARA": 1700169467,
         "SylvieT": 1699851212,
         "cpriou11": 1741112288,
@@ -3207,7 +3242,7 @@
         "ChristinedelAude": 1711140823,
         "BenNature": 1710207470,
         "Leticia": 1740516013,
-        "RitaWilson": 1699163804,
+        "RitaWilson": 1756711098,
         "AnnieP38": 1712698411,
         "ValerieBaudouin": 1710209457,
         "annefreda": 1710192817,
@@ -3232,10 +3267,11 @@
     "Uriane13": {
       "index": 9303,
       "owner_key": "2CfxZdxgzJHXQAFAxSjqp4bAXKQfSfvQikqdfjjFSGzh",
-      "balance": 294035,
+      "balance": 333721,
       "membership_expire_on": 1723341740,
       "next_cert_issuable_on": 1688118417,
       "certs_received": {
+        "Lilibeth79": 1758322457,
         "NAT": 1723598252,
         "monique79": 1724306399,
         "fredo79": 1724259161,
@@ -3247,19 +3283,23 @@
     "Ferpires": {
       "index": 11665,
       "owner_key": "2Cji4ayYwMmcPeVaZnLxj2pzhDQUjo26aRpHqeNKdd7v",
-      "balance": 137187,
+      "balance": 150873,
       "membership_expire_on": 1708278540,
-      "next_cert_issuable_on": 1693138383,
+      "next_cert_issuable_on": 1695871593,
       "certs_received": {
         "devihope": 1739837364,
         "Judit137": 1750330949,
         "jvinagre": 1747614427,
+        "Yana": 1758871657,
         "Le0": 1743810463,
         "lurdespinho": 1744869348,
         "Alvaro": 1747188397,
         "FilipaSimoes": 1750386281,
         "FerSar": 1744701005,
+        "otto": 1758872279,
         "MiguelHappyFamily": 1739854948,
+        "Rafael": 1758872279,
+        "Sonic": 1759259548,
         "Sandalf": 1749166120,
         "StefaniaCamilla": 1742495696,
         "criscoutinho": 1739837364,
@@ -3268,12 +3308,16 @@
         "DeboraTavares": 1741827369,
         "Hardass": 1750803989,
         "pedroponte": 1748548303,
+        "SaoSampaio": 1757670192,
         "GodofredoBaltazar": 1748892386,
         "JorgeDraven": 1739859065,
         "JoaoLestro": 1751597601,
         "DavidJorge": 1750545514,
+        "AnaIsis7animais": 1758267657,
         "AnaPires": 1749933821,
         "OlgaO": 1740745893,
+        "Fauna": 1759259548,
+        "PenaBranca": 1758871657,
         "ElisabeteMartins": 1739859065,
         "ManuelSoares": 1746903455
       }
@@ -3281,8 +3325,8 @@
     "SandrineP": {
       "index": 6145,
       "owner_key": "2CqPN6DKGgxK4ATThDjQwwYLZGPv5o6F7iYtVJw73myS",
-      "balance": 708103,
-      "membership_expire_on": 1696941298,
+      "balance": 750789,
+      "membership_expire_on": 1726413437,
       "next_cert_issuable_on": 1676620937,
       "certs_received": {
         "HelloSunshine": 1700621989,
@@ -3297,7 +3341,7 @@
     "BrigitteL": {
       "index": 12763,
       "owner_key": "2CrcqtZgSen8wyACZ5PPGDNahctfhAo5zmtS8EyZziLo",
-      "balance": 262351,
+      "balance": 302037,
       "membership_expire_on": 1716389359,
       "next_cert_issuable_on": 1685773621,
       "certs_received": {
@@ -3312,9 +3356,9 @@
     "Crystal": {
       "index": 2076,
       "owner_key": "2CurGyD5A8Fj1fSpJiiXZjfKuhMNgNZ6hEvh3qLyKFAn",
-      "balance": 488378,
+      "balance": 576565,
       "membership_expire_on": 1720997023,
-      "next_cert_issuable_on": 1693355253,
+      "next_cert_issuable_on": 1696374039,
       "certs_received": {
         "InmaRegina": 1723420402,
         "JessyRipert": 1712348472,
@@ -3325,16 +3369,15 @@
         "Milan": 1749150851,
         "OrianeKatyDanse": 1740532584,
         "Yassin": 1749165200,
-        "MarieBouny": 1695926956,
         "melia": 1735868933,
         "anaka": 1709874106,
         "Cristol-Iquid": 1720911213,
+        "Henk-Quillan": 1757281297,
         "Matymama": 1708136851,
         "Flor4": 1748374467,
         "ChristianM": 1717913153,
         "CathyDebronde": 1711682500,
         "Plantalarose": 1751078580,
-        "Louna": 1695285122,
         "Etoiledunord": 1717737806,
         "Virginia": 1703996676,
         "JeanMarcBuge": 1746341644,
@@ -3381,7 +3424,7 @@
     "Nounoune": {
       "index": 11096,
       "owner_key": "2CxYGQHDo3aPQXWaVXzkrvPBudN5C8vV9nYSoGHjHSQC",
-      "balance": 324127,
+      "balance": 363813,
       "membership_expire_on": 1700489449,
       "next_cert_issuable_on": 1690787467,
       "certs_received": {
@@ -3391,6 +3434,7 @@
         "Flaviana": 1735795322,
         "crisleon": 1737763013,
         "Padme": 1735766967,
+        "carmenpeluquera": 1754971084,
         "Isalanzarote": 1735768064,
         "loreak": 1735765583,
         "gorkatinajo": 1735767237
@@ -3399,7 +3443,7 @@
     "PaulineSauve": {
       "index": 7527,
       "owner_key": "2D2EfhxP2SjrynUBLjWRSwFtrPKJZ9Ggg9qFsFMzp1F3",
-      "balance": 553000,
+      "balance": 592686,
       "membership_expire_on": 1708029438,
       "next_cert_issuable_on": 1676543838,
       "certs_received": {
@@ -3429,7 +3473,7 @@
     "CrystalMarie": {
       "index": 11922,
       "owner_key": "2DEff1gtqKpEgQdgz3G2X8CRSvuy6kjLYnSRfzXBsxaL",
-      "balance": 186292,
+      "balance": 225978,
       "membership_expire_on": 1709517728,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -3444,13 +3488,13 @@
     "EvelyneS": {
       "index": 2975,
       "owner_key": "2DFkBXZpAFNjNYM76TPEjjpmsvHAzvLVB1cM2TpeUnvB",
-      "balance": 1087352,
+      "balance": 1127038,
       "membership_expire_on": 1722442512,
       "next_cert_issuable_on": 1634302073,
       "certs_received": {
         "toutenstock": 1697299387,
         "Gabrielle": 1699661361,
-        "lilithdu34": 1697678079,
+        "lilithdu34": 1759767574,
         "Damery": 1697695301,
         "Sandy": 1697699220
       }
@@ -3458,7 +3502,7 @@
     "Mica52": {
       "index": 10088,
       "owner_key": "2DQWRuZ1kW5nRqbSyGNeP4Cg6A1mb4mo9dN8h8w9tFGH",
-      "balance": 302698,
+      "balance": 342384,
       "membership_expire_on": 1698079940,
       "next_cert_issuable_on": 1682301595,
       "certs_received": {
@@ -3472,7 +3516,7 @@
     "Geronimo12": {
       "index": 7000,
       "owner_key": "2DSonrsXXvuYhzXep4C26v6v3YQjQfUZLL7Vcvd83SUY",
-      "balance": 566465,
+      "balance": 606151,
       "membership_expire_on": 1702147876,
       "next_cert_issuable_on": 1680747963,
       "certs_received": {
@@ -3494,7 +3538,7 @@
     "Domiremi": {
       "index": 10358,
       "owner_key": "2DVRxuy1nCxuEAHoqi8q66X8CUD5FizpcWGbktSsvyxj",
-      "balance": 277136,
+      "balance": 316822,
       "membership_expire_on": 1699709701,
       "next_cert_issuable_on": 1692689422,
       "certs_received": {
@@ -3531,7 +3575,7 @@
     "JF13": {
       "index": 6346,
       "owner_key": "2DeR6AX8FnaMyG65tXGyVZ8YmgSoWPe1PgQwd6vLK5vW",
-      "balance": 300495,
+      "balance": 340181,
       "membership_expire_on": 1719555870,
       "next_cert_issuable_on": 1690113276,
       "certs_received": {
@@ -3574,7 +3618,7 @@
     "Karinelacoquine": {
       "index": 10952,
       "owner_key": "2DzoN6VxoBjufXXFdSHAnmXMREXkit7FW1bFK5k4Hgvs",
-      "balance": 328091,
+      "balance": 367777,
       "membership_expire_on": 1702841198,
       "next_cert_issuable_on": 1675258632,
       "certs_received": {
@@ -3602,11 +3646,12 @@
     "DoisLobos": {
       "index": 11807,
       "owner_key": "2E7L5BnmXEjoi1GAqdh12BCCmBt7yCic1pePaDtFoVxR",
-      "balance": 205323,
+      "balance": 245009,
       "membership_expire_on": 1709126292,
-      "next_cert_issuable_on": 1690611260,
+      "next_cert_issuable_on": 1694088964,
       "certs_received": {
         "RitApolinario": 1740697789,
+        "Nandoporto": 1757351278,
         "lurdespinho": 1740721487,
         "Yohan": 1740817731,
         "criscoutinho": 1740742275,
@@ -3626,6 +3671,23 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "AlhauwaAlhaure": {
+      "index": 13576,
+      "owner_key": "2EJzD9YY8igugjxRNwnLrhgcV3CsLnyoU9soKdLg3SMQ",
+      "balance": 165466,
+      "membership_expire_on": 1726183087,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Beasejour": 1757742454,
+        "Rach": 1759255529,
+        "Val767": 1757890476,
+        "Kaya971Wolf": 1757742760,
+        "DjaneDiveraine": 1757741266,
+        "sens": 1757742454,
+        "Sailorcherry": 1758769007,
+        "psycotox80": 1757745149
+      }
+    },
     "jesuschrist": {
       "index": 288,
       "owner_key": "2EK4seAQToUBnDfU2cmrF5pPuAVqjDt4nco7xZRXV8nj",
@@ -3637,7 +3699,7 @@
     "Eleonora": {
       "index": 7318,
       "owner_key": "2EMa8mvNm5MVSy2fMq1JfPKaRFePr58ZDJFkdgFCFdaa",
-      "balance": 387319,
+      "balance": 409805,
       "membership_expire_on": 1705966470,
       "next_cert_issuable_on": 1674494280,
       "certs_received": {
@@ -3658,7 +3720,7 @@
     "Lotus1304": {
       "index": 12965,
       "owner_key": "2EQYpHnfvbtMX9FaMmFQmWMfZMt12yqjWGegy18WRGQ5",
-      "balance": 79692,
+      "balance": 119378,
       "membership_expire_on": 1716833233,
       "next_cert_issuable_on": 1688467514,
       "certs_received": {
@@ -3692,16 +3754,19 @@
     "StephanieLumiere": {
       "index": 12544,
       "owner_key": "2EW7rndFwZAtxVhTibXomxw5EsgpbghQVCgtd7e2qN6h",
-      "balance": 435592,
+      "balance": 418378,
       "membership_expire_on": 1713798207,
-      "next_cert_issuable_on": 1692888490,
+      "next_cert_issuable_on": 1696251370,
       "certs_received": {
         "RosyRio": 1749758754,
         "Inanna": 1751390930,
+        "laurencef": 1758771034,
         "Marieno": 1746339292,
+        "RudyMathey": 1759735722,
         "ChrisMagi": 1746336994,
         "Eduardo451": 1746344293,
         "Daniele8": 1747449578,
+        "LyneMP": 1759427905,
         "SteffiH": 1750453961,
         "NalaMandala": 1746396445,
         "VaivaG": 1746384045
@@ -3723,8 +3788,8 @@
     "AlbySanna": {
       "index": 10159,
       "owner_key": "2Ekmy92grNYLcBmW1JKP9aCr2DkFcJJEyfHYntLPYhKJ",
-      "balance": 248844,
-      "membership_expire_on": 1696255223,
+      "balance": 283150,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Mauer": 1730441652,
@@ -3737,7 +3802,7 @@
     "FranckGossmann": {
       "index": 11281,
       "owner_key": "2EpP7fVC6x8QtoEh6NqgfkDwT4P5VaNRPcTrphTKRa5d",
-      "balance": 255404,
+      "balance": 295090,
       "membership_expire_on": 1701294792,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -3752,7 +3817,7 @@
     "marie-blanche": {
       "index": 5167,
       "owner_key": "2F1bYzW8rYtYKkbbmJ9jsDwVbgsLtsbLBKM17DLfY5z4",
-      "balance": 485327,
+      "balance": 525013,
       "membership_expire_on": 1700140027,
       "next_cert_issuable_on": 1692281023,
       "certs_received": {
@@ -3767,7 +3832,7 @@
     "Kriss": {
       "index": 8542,
       "owner_key": "2F7nRrbLVwfjyuxnn3f69k1eQPVVYGD7kJDiQAzhcMfa",
-      "balance": 551828,
+      "balance": 591514,
       "membership_expire_on": 1721506064,
       "next_cert_issuable_on": 1672885852,
       "certs_received": {
@@ -3784,7 +3849,7 @@
     "Theo": {
       "index": 3037,
       "owner_key": "2F8zmHsZiff65biN83cBkiFR6ZWPm49TLg781XuLgJ2D",
-      "balance": 1410750,
+      "balance": 1450436,
       "membership_expire_on": 1698618498,
       "next_cert_issuable_on": 1667477373,
       "certs_received": {
@@ -3800,15 +3865,17 @@
     "CValentine": {
       "index": 8395,
       "owner_key": "2FDwJ9idzo427mip6tBcCXzPwNSgLT9WwGSgvnApTXjw",
-      "balance": 474185,
+      "balance": 513871,
       "membership_expire_on": 1711469538,
       "next_cert_issuable_on": 1692427540,
       "certs_received": {
         "LaurePollantru": 1717742436,
         "Gregory": 1717556227,
+        "GhislaineChartier": 1755938166,
         "Bernadeth": 1751973085,
         "cpriou11": 1736199910,
         "Seraphine": 1716517060,
+        "Filou": 1757927784,
         "Cleo59": 1755359053,
         "Genosa": 1716965927,
         "Meryazel": 1719466220,
@@ -3819,7 +3886,7 @@
     "Morick": {
       "index": 10006,
       "owner_key": "2FKpZnUbnYQT6X2QCzuY59wYoAkvRUVzZekdMwdUENfv",
-      "balance": 335052,
+      "balance": 374738,
       "membership_expire_on": 1697821261,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -3833,7 +3900,7 @@
     "LauraAubac": {
       "index": 1472,
       "owner_key": "2FNPhNX9wM7PqrSKTvgeEHQ66sqwbP2djxS8jm1tQzzg",
-      "balance": 1103893,
+      "balance": 1143579,
       "membership_expire_on": 1717327686,
       "next_cert_issuable_on": 1653363223,
       "certs_received": {
@@ -3847,7 +3914,7 @@
     "PatrickFlouriot": {
       "index": 3193,
       "owner_key": "2FQmWNMQMA98K3fGpdjuThF4qVj7i2rrRHgHiCShcb4o",
-      "balance": 1517075,
+      "balance": 1524761,
       "membership_expire_on": 1720400711,
       "next_cert_issuable_on": 1668516440,
       "certs_received": {
@@ -3864,8 +3931,8 @@
     "SylvieBoitard": {
       "index": 9972,
       "owner_key": "2FkvNYvJLmVrBdz8tmy5o5z24SccnTZwh7CTBUboWQ36",
-      "balance": 362503,
-      "membership_expire_on": 1697030453,
+      "balance": 447189,
+      "membership_expire_on": 1727713221,
       "next_cert_issuable_on": 1682860363,
       "certs_received": {
         "Tchois": 1728891298,
@@ -3878,10 +3945,25 @@
         "Maiana": 1728785185
       }
     },
+    "Gene12": {
+      "index": 13676,
+      "owner_key": "2FmM76gZct1ybyN42hKHSNTfY1J8MeH7wDGmWKu6egRy",
+      "balance": 33602,
+      "membership_expire_on": 1727129061,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "KIRPI": 1758784834,
+        "Egopode": 1758739123,
+        "Claire666": 1758746771,
+        "Dum": 1759270821,
+        "HectorTotor": 1759030130,
+        "SylvainDeCadix": 1758865398
+      }
+    },
     "Ansemil": {
       "index": 11552,
       "owner_key": "2FrMgeQEzp9K9CeDseyYTE7UHCFjGVDAggg2UBimMRmK",
-      "balance": 224444,
+      "balance": 264130,
       "membership_expire_on": 1707486800,
       "next_cert_issuable_on": 1677419341,
       "certs_received": {
@@ -3896,17 +3978,22 @@
     "SachaCirque": {
       "index": 5489,
       "owner_key": "2FunF1qeVxRHbZ1NV4Jfh663zePdZD8P5s7MzLu92zyH",
-      "balance": 218450,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1674665300,
-      "certs_received": {
-        "LesChiffons2genie": 1706492196
+      "balance": 309388,
+      "membership_expire_on": 1723353225,
+      "next_cert_issuable_on": 1694529508,
+      "certs_received": {
+        "MelodieDK": 1757094585,
+        "Sanka": 1756682398,
+        "Fleurt11": 1757536758,
+        "Steph974": 1757129880,
+        "LesChiffons2genie": 1706492196,
+        "Valoo": 1757134019
       }
     },
     "Rachel_Haromniya": {
       "index": 12463,
       "owner_key": "2Fx925RWvugaDbsG4kjohuEQHqPcwLoZfWgKxXDXbSbn",
-      "balance": 175968,
+      "balance": 215654,
       "membership_expire_on": 1713263962,
       "next_cert_issuable_on": 1693131592,
       "certs_received": {
@@ -3923,9 +4010,9 @@
     "Cygogne22": {
       "index": 6031,
       "owner_key": "2G3Nj25yQr2gpwmv44UqfnQwLAuiq7t85xLxtKBf3Vxa",
-      "balance": 612088,
+      "balance": 630914,
       "membership_expire_on": 1704327581,
-      "next_cert_issuable_on": 1691205815,
+      "next_cert_issuable_on": 1694936681,
       "certs_received": {
         "Tidus": 1699568881,
         "MaryK": 1699569170,
@@ -3960,11 +4047,12 @@
     "DomRomy20": {
       "index": 12410,
       "owner_key": "2GGU8NraH7SNnyouzaM2rRmXzQXdBKSnYFyBueqxtzZK",
-      "balance": 66686,
+      "balance": 71372,
       "membership_expire_on": 1713522008,
       "next_cert_issuable_on": 1692686956,
       "certs_received": {
         "LeDemineur21": 1745120831,
+        "MicheleSauterey": 1758932519,
         "Sanashitaka": 1750654392,
         "Dom": 1745120831,
         "FabriceSeguin": 1745185509,
@@ -3993,9 +4081,9 @@
     "Temarante": {
       "index": 10182,
       "owner_key": "2GVTPkR33JTYqzaQAZhP6iMAfJgj5zf17YwdGbY423AQ",
-      "balance": 292744,
-      "membership_expire_on": 1698969790,
-      "next_cert_issuable_on": 1678433518,
+      "balance": 292430,
+      "membership_expire_on": 1727725829,
+      "next_cert_issuable_on": 1696244348,
       "certs_received": {
         "anapatapouf": 1741424489,
         "SebLorion": 1731219090,
@@ -4031,15 +4119,17 @@
     "FatimaDonoso": {
       "index": 13162,
       "owner_key": "2Gj6F4BtkEAJYKxbBkW61uEjTjJ1QKrMd8cTfaJoVMxM",
-      "balance": 46596,
+      "balance": 59282,
       "membership_expire_on": 1720101943,
-      "next_cert_issuable_on": 1692888490,
+      "next_cert_issuable_on": 1696564260,
       "certs_received": {
         "devihope": 1752284873,
+        "Minita": 1757234709,
         "Judit137": 1752290886,
         "Nilia": 1752312523,
         "Newo": 1752441633,
         "NevFreeman": 1752291198,
+        "SofiaDJ": 1757920861,
         "Rahhui": 1754007881,
         "Kian": 1752440199
       }
@@ -4047,7 +4137,7 @@
     "sylviewolf": {
       "index": 10289,
       "owner_key": "2Gpu1p1EJzjt2B6gb6bWErQgU5WBB3iWPK9ZiGwDMGQy",
-      "balance": 283754,
+      "balance": 323440,
       "membership_expire_on": 1699368603,
       "next_cert_issuable_on": 1669905073,
       "certs_received": {
@@ -4070,9 +4160,9 @@
     "Sunflower": {
       "index": 8126,
       "owner_key": "2H9h7CiGDifkKFQcnNULB6UaH5FcetC5q5M97Vjoq4wb",
-      "balance": 504340,
+      "balance": 527986,
       "membership_expire_on": 1714929701,
-      "next_cert_issuable_on": 1682393308,
+      "next_cert_issuable_on": 1693571558,
       "certs_received": {
         "DBuxerolle": 1745708618,
         "EricPetit": 1715751639,
@@ -4090,7 +4180,7 @@
     "AgatheO": {
       "index": 7699,
       "owner_key": "2HD5ENaXEwXQZQZ8STWGnZgoUFhZVpteRoFX5fAvJtTL",
-      "balance": 741009,
+      "balance": 780695,
       "membership_expire_on": 1719960885,
       "next_cert_issuable_on": 1654079783,
       "certs_received": {
@@ -4106,7 +4196,7 @@
     "Ecoeducacteur": {
       "index": 5002,
       "owner_key": "2HNUxtdyo5dLqKQ1jNhhqekhHBV2uMiD7BJWisno8gyY",
-      "balance": 790387,
+      "balance": 830073,
       "membership_expire_on": 1712782643,
       "next_cert_issuable_on": 1686325882,
       "certs_received": {
@@ -4139,8 +4229,8 @@
     "josyaneperez": {
       "index": 339,
       "owner_key": "2HgundtuL3qVFrEENj1DjrCm8MNag1jFEv3P8hsJeC3f",
-      "balance": 1487561,
-      "membership_expire_on": 1694988092,
+      "balance": 1505717,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670904654,
       "certs_received": {
         "Gaelle": 1720821018,
@@ -4172,7 +4262,7 @@
     "Lanoe": {
       "index": 6582,
       "owner_key": "2Hs65XZF89FqygtM1gxtQDg5QLXyJjjm12MJLB5syzF3",
-      "balance": 519329,
+      "balance": 559015,
       "membership_expire_on": 1701892988,
       "next_cert_issuable_on": 1645788710,
       "certs_received": {
@@ -4187,12 +4277,13 @@
     "Mariefleur": {
       "index": 6336,
       "owner_key": "2HwkN8t3Mskia6bLPnob1wvrBPkkqiiaaArG9cKBX47P",
-      "balance": 574093,
+      "balance": 613779,
       "membership_expire_on": 1710791538,
-      "next_cert_issuable_on": 1689212061,
+      "next_cert_issuable_on": 1694661238,
       "certs_received": {
         "HeleneSoleil": 1703573498,
         "Pocpoc": 1752777095,
+        "PesentiOlivier": 1758517143,
         "MartineRivat": 1752873239,
         "Bettylisameli": 1751844271,
         "CarmenAlonso": 1752779119,
@@ -4207,7 +4298,7 @@
     "Dj_raoult": {
       "index": 7401,
       "owner_key": "2HxiT5S6EcNHxFw8Ukhdsu52rWNcohpVSUxLtwixz8TT",
-      "balance": 674441,
+      "balance": 714127,
       "membership_expire_on": 1708805991,
       "next_cert_issuable_on": 1680770790,
       "certs_received": {
@@ -4227,8 +4318,8 @@
     "espritlibredulac": {
       "index": 6718,
       "owner_key": "2HynEL9gApyeiSmcPBrpo2DyaH17PRrJpzD31e8Z1mLp",
-      "balance": 505199,
-      "membership_expire_on": 1701033671,
+      "balance": 372885,
+      "membership_expire_on": 1728232518,
       "next_cert_issuable_on": 1683984935,
       "certs_received": {
         "Camillefairy": 1709757365,
@@ -4259,9 +4350,9 @@
     "Beasejour": {
       "index": 4636,
       "owner_key": "2JCbHEfYpgfBtHAn8CJGAe5EbLMesXRZuY3Gpr1cVwPA",
-      "balance": 230832,
+      "balance": 269618,
       "membership_expire_on": 1700099821,
-      "next_cert_issuable_on": 1686680930,
+      "next_cert_issuable_on": 1694699254,
       "certs_received": {
         "JessyRipert": 1701497209,
         "Eveilducoeur": 1742788041,
@@ -4299,7 +4390,7 @@
     "Marie83": {
       "index": 6186,
       "owner_key": "2JJpdfSp9PnyznfePNPUtZe884jjHiiqzUdbDfKpHicM",
-      "balance": 657638,
+      "balance": 697324,
       "membership_expire_on": 1702408665,
       "next_cert_issuable_on": 1639731213,
       "certs_received": {
@@ -4316,7 +4407,7 @@
     "CorineArmand": {
       "index": 9647,
       "owner_key": "2JNvUMAgDRFWP55QnhdLooP4oz9qkwunrXL4zE77Qgmk",
-      "balance": 349586,
+      "balance": 346272,
       "membership_expire_on": 1722045379,
       "next_cert_issuable_on": 1686310011,
       "certs_received": {
@@ -4333,7 +4424,7 @@
     "ninalombardo98": {
       "index": 13379,
       "owner_key": "2Ja4Hzh9XUS4jtuvmMYynTDp6HpzKKWrHpvrZM6nbsun",
-      "balance": 126020,
+      "balance": 165706,
       "membership_expire_on": 1722984262,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -4348,8 +4439,8 @@
     "ManUtopiK": {
       "index": 2316,
       "owner_key": "2JggyyUn2puL5PG6jsMYFC2y9KwjjMmy2adnx3c5fUf8",
-      "balance": 922883,
-      "membership_expire_on": 1699539913,
+      "balance": 1005489,
+      "membership_expire_on": 1726778355,
       "next_cert_issuable_on": 1687487235,
       "certs_received": {
         "tuxmain": 1716922504,
@@ -4369,7 +4460,7 @@
     "patriciamig": {
       "index": 12367,
       "owner_key": "2JoxFJuxn7ghrtkiFAoFvTCbHPKTYt5STzVvXkHyEavS",
-      "balance": 146248,
+      "balance": 185934,
       "membership_expire_on": 1713203091,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -4385,7 +4476,7 @@
     "Perlanne": {
       "index": 8915,
       "owner_key": "2JugJmQi8h321uj4bUtB1USeui9QDLLRNfUMKh18aCi7",
-      "balance": 608857,
+      "balance": 648543,
       "membership_expire_on": 1717973449,
       "next_cert_issuable_on": 1681784282,
       "certs_received": {
@@ -4402,7 +4493,7 @@
     "Cyrius": {
       "index": 9072,
       "owner_key": "2K36irzzF8QqAGwPeYrEaUnQ2gEtB4o9Y6ySzDNAb1RJ",
-      "balance": 424931,
+      "balance": 464617,
       "membership_expire_on": 1714510224,
       "next_cert_issuable_on": 1664780765,
       "certs_received": {
@@ -4434,7 +4525,7 @@
     "LolaPalomares": {
       "index": 7357,
       "owner_key": "2KACAG2TmwHgWgrMyTDNg4ZdUFcasbvTZM2d3bkbun72",
-      "balance": 255489,
+      "balance": 61303,
       "membership_expire_on": 1725022900,
       "next_cert_issuable_on": 1654702734,
       "certs_received": {
@@ -4457,7 +4548,7 @@
     "Artnow": {
       "index": 4445,
       "owner_key": "2KPpKD8P8H78QVPSPJKRKDzzyKMHkq9k3soY8xknFszm",
-      "balance": 468309,
+      "balance": 507995,
       "membership_expire_on": 1714626567,
       "next_cert_issuable_on": 1659611442,
       "certs_received": {
@@ -4473,7 +4564,7 @@
     "Everbee": {
       "index": 11977,
       "owner_key": "2KQ7oGz8dSsGTDA42JXCkMjRNdaXU6kfVqqvxK4yo7Du",
-      "balance": 195451,
+      "balance": 235137,
       "membership_expire_on": 1709431721,
       "next_cert_issuable_on": 1681549197,
       "certs_received": {
@@ -4487,8 +4578,8 @@
     "Pasadena": {
       "index": 10339,
       "owner_key": "2KUkqcnhASsFfsS7iwhAERqxkTobTBf1pvngSwBYzpG3",
-      "balance": 130086,
-      "membership_expire_on": 1698522740,
+      "balance": 161772,
+      "membership_expire_on": 1727747542,
       "next_cert_issuable_on": 1683716523,
       "certs_received": {
         "Malu": 1730750618,
@@ -4503,7 +4594,7 @@
     "Evancau": {
       "index": 12161,
       "owner_key": "2KigCE3tHZkaPqoPdBJ51xCZ9si7TyC2oHTkNsVx3daQ",
-      "balance": 169540,
+      "balance": 209226,
       "membership_expire_on": 1711127470,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -4528,7 +4619,7 @@
     "DMAB": {
       "index": 10642,
       "owner_key": "2KpWeixy49XksaRjTgnRsnGu4JywnYxQe59xhDZoNq45",
-      "balance": 297115,
+      "balance": 336801,
       "membership_expire_on": 1701025169,
       "next_cert_issuable_on": 1675930042,
       "certs_received": {
@@ -4544,7 +4635,7 @@
     "fredanne": {
       "index": 11969,
       "owner_key": "2Ks9akuzprSNtJoVawGRdkQjKffCPrmtdcnqAaa47Xq2",
-      "balance": 182556,
+      "balance": 222242,
       "membership_expire_on": 1709832143,
       "next_cert_issuable_on": 1681387907,
       "certs_received": {
@@ -4559,7 +4650,7 @@
     "FJO-LaV": {
       "index": 12904,
       "owner_key": "2KwNMUpVnUvuVNf1JQN1ZwnWAAzBThf1Z4GA54DtTsp5",
-      "balance": 82068,
+      "balance": 71754,
       "membership_expire_on": 1717753041,
       "next_cert_issuable_on": 1689907018,
       "certs_received": {
@@ -4573,7 +4664,7 @@
     "yosoco": {
       "index": 11707,
       "owner_key": "2LAw4DqL37B4HmeySxwMxgMW86M5ECAFufipaZYon3u6",
-      "balance": 211354,
+      "balance": 251040,
       "membership_expire_on": 1708398528,
       "next_cert_issuable_on": 1681209435,
       "certs_received": {
@@ -4601,13 +4692,11 @@
     "Wilouchou": {
       "index": 1763,
       "owner_key": "2LJrFpdKDQLZHdC232BaVcVTysPbyE41wRJbbzPN9bZM",
-      "balance": 780307,
+      "balance": 819993,
       "membership_expire_on": 1715772085,
       "next_cert_issuable_on": 1690523473,
       "certs_received": {
-        "Fleur-du-renouveau": 1695891985,
         "Roco": 1728543281,
-        "haddock": 1695677869,
         "Piouch": 1728543702,
         "beniz": 1735372209,
         "Choukie": 1742027839,
@@ -4620,7 +4709,7 @@
     "Basdesoie": {
       "index": 12393,
       "owner_key": "2LJuS4iMZgmJr7wFAa6ZijCyWxJoH3KcoNmaFAFZ61Bc",
-      "balance": 144044,
+      "balance": 183730,
       "membership_expire_on": 1713136507,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -4634,7 +4723,7 @@
     "cyrb07": {
       "index": 10492,
       "owner_key": "2LN2LvuMXS1jZUq2PrZZbxiS7bPur6QvQr7S1Y8vHdFW",
-      "balance": 299046,
+      "balance": 338732,
       "membership_expire_on": 1700690514,
       "next_cert_issuable_on": 1669562341,
       "certs_received": {
@@ -4648,7 +4737,7 @@
     "VincentNour": {
       "index": 11608,
       "owner_key": "2LTmJJxzJJ6oChMQaAsWmH1CGbhayF7c5WWdEPKnYHqp",
-      "balance": 211149,
+      "balance": 200835,
       "membership_expire_on": 1706558434,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -4662,7 +4751,7 @@
     "hydromel": {
       "index": 10237,
       "owner_key": "2LW5FQ2wT2yXhm1B5Sywdk8PuEWFyHixesjsnT5XzGXw",
-      "balance": 308718,
+      "balance": 348404,
       "membership_expire_on": 1699201161,
       "next_cert_issuable_on": 1685023077,
       "certs_received": {
@@ -4698,7 +4787,7 @@
     "LeaBluhm": {
       "index": 12250,
       "owner_key": "2Lfsi2YBaNHmUBR5DCCWC6MWjnHDLGVHsUT2jK8aM3vd",
-      "balance": 84664,
+      "balance": 124350,
       "membership_expire_on": 1711144614,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -4720,7 +4809,7 @@
     "EnergyKiwi": {
       "index": 7827,
       "owner_key": "2LmCGtfADRQm3zNxQVVGU9p1YgCpsK75WjuMK9qLhfaM",
-      "balance": 532378,
+      "balance": 572064,
       "membership_expire_on": 1704743174,
       "next_cert_issuable_on": 1677384302,
       "certs_received": {
@@ -4736,7 +4825,7 @@
     "capricorne": {
       "index": 3780,
       "owner_key": "2LoisjfgKNbMxC6YdaK9F6etFFTagFioVKs2Eroyd2JE",
-      "balance": 1158576,
+      "balance": 1198262,
       "membership_expire_on": 1721997355,
       "next_cert_issuable_on": 1678804480,
       "certs_received": {
@@ -4751,25 +4840,26 @@
     "Anthonycormier": {
       "index": 2822,
       "owner_key": "2Lp9dXPyXqfvAj79DBJNDpMWJQ1Y64PVWRdQrLtYvx12",
-      "balance": 979754,
+      "balance": 1019440,
       "membership_expire_on": 1710950467,
-      "next_cert_issuable_on": 1672205216,
+      "next_cert_issuable_on": 1694087546,
       "certs_received": {
         "DonQuiche": 1711670917,
-        "Droudrou": 1701724007,
+        "Droudrou": 1757130746,
         "Tonton974": 1754147287,
         "mimitoutvabien": 1728501729,
         "Maaltir": 1754452920,
         "Fleurdeschamps": 1728499815,
+        "Maia": 1757314146,
         "DanIcare": 1710993750
       }
     },
     "Valentino": {
       "index": 9586,
       "owner_key": "2LuD8tk4sESztzcNzAoGV2W2MZiC4MbgEUNnXtjzDtWD",
-      "balance": 377881,
+      "balance": 417567,
       "membership_expire_on": 1723243187,
-      "next_cert_issuable_on": 1677749542,
+      "next_cert_issuable_on": 1696711689,
       "certs_received": {
         "Beatricebia": 1726773330,
         "BALOU73": 1726783551,
@@ -4797,9 +4887,9 @@
     "looie": {
       "index": 5328,
       "owner_key": "2M6u3Rg8MU454xEaawZ8XoJhZCnqTB1D7YBXMGnE36Gb",
-      "balance": 316452,
+      "balance": 356138,
       "membership_expire_on": 1712584000,
-      "next_cert_issuable_on": 1681465548,
+      "next_cert_issuable_on": 1696041932,
       "certs_received": {
         "LilianBonnardon": 1744869694,
         "Drissa81": 1738834873,
@@ -4819,7 +4909,7 @@
     "Lucia2022": {
       "index": 8107,
       "owner_key": "2M9uy2Tnty5ZCb6PXkhrTAN9LH5ZH6JYS76fuVEFbkbG",
-      "balance": 474256,
+      "balance": 513942,
       "membership_expire_on": 1710640360,
       "next_cert_issuable_on": 1655382364,
       "certs_received": {
@@ -4833,7 +4923,7 @@
     "Isatoi": {
       "index": 11547,
       "owner_key": "2MGADAT7hCErWvCaEUn3pqfLaRpcNTcAk4XWwP3BDiuA",
-      "balance": 223685,
+      "balance": 263371,
       "membership_expire_on": 1705881100,
       "next_cert_issuable_on": 1681643288,
       "certs_received": {
@@ -4849,13 +4939,12 @@
     "BRUNO": {
       "index": 3009,
       "owner_key": "2MPg142MNBk2z6pBjX5K73JwUw2KzJy2JsgBbffbw8Ee",
-      "balance": 1254901,
+      "balance": 1294587,
       "membership_expire_on": 1710518381,
       "next_cert_issuable_on": 1671431460,
       "certs_received": {
         "CaizohanFerreira": 1704937456,
         "KarineFerreira": 1717027324,
-        "jeanferreira": 1696293768,
         "Mententon": 1733279853,
         "SelenaGranier": 1713845755,
         "jeremiemaes": 1701499800
@@ -4864,7 +4953,7 @@
     "Estela": {
       "index": 10023,
       "owner_key": "2MQtyo7ufKaSdf58z4ukG2KmzoEoGxkam3MGdVG4XcBi",
-      "balance": 61457,
+      "balance": 86143,
       "membership_expire_on": 1724381072,
       "next_cert_issuable_on": 1692351427,
       "certs_received": {
@@ -4896,9 +4985,9 @@
     "SophSav": {
       "index": 1539,
       "owner_key": "2MSdAnXFLAt8LrmjkwyEUaVzNKqntWMVXFj9P8ouSJ1J",
-      "balance": 90683,
+      "balance": 79249,
       "membership_expire_on": 1710960158,
-      "next_cert_issuable_on": 1684485581,
+      "next_cert_issuable_on": 1696493717,
       "certs_received": {
         "Nicolas": 1721079344,
         "Manu_El": 1729986594,
@@ -4918,7 +5007,6 @@
         "davidbp845": 1723067422,
         "AmoryGratitud": 1723825902,
         "Annabel": 1739485051,
-        "Cirelly": 1696284558,
         "Damery": 1705644833,
         "fania": 1707470247
       }
@@ -4926,15 +5014,16 @@
     "HeleneB": {
       "index": 7654,
       "owner_key": "2MT6G8fbKXq1bndvizXi9iTcCX7R8N4oBWK1Mx97Pntj",
-      "balance": 319741,
+      "balance": 359427,
       "membership_expire_on": 1706096470,
-      "next_cert_issuable_on": 1686359510,
+      "next_cert_issuable_on": 1694135604,
       "certs_received": {
         "OlivierS57": 1711923363,
         "phildefer": 1711913516,
         "Madmad54": 1711917541,
         "CClement": 1712891595,
         "Zouzoute57": 1751051958,
+        "miel67": 1756801665,
         "NatyB": 1711998356,
         "Cyrille": 1711917265,
         "patochedu57m": 1752947419
@@ -4943,7 +5032,7 @@
     "ItiMahana": {
       "index": 3622,
       "owner_key": "2MTbaDLzPwwCuC1bGsdw94T3ZWtQkrfaL9cdunzf3UV7",
-      "balance": 545756,
+      "balance": 572506,
       "membership_expire_on": 1721280511,
       "next_cert_issuable_on": 1667230082,
       "certs_received": {
@@ -4957,7 +5046,7 @@
     "Tonina": {
       "index": 8854,
       "owner_key": "2MWSD1ssSBh5b76nx35hfKH1Lxh7BEaC6zqTYCp9kg3b",
-      "balance": 461651,
+      "balance": 501337,
       "membership_expire_on": 1714480168,
       "next_cert_issuable_on": 1664620174,
       "certs_received": {
@@ -4990,45 +5079,41 @@
     "Glorieta": {
       "index": 13320,
       "owner_key": "2MXDewGx6fnHmMJvT6wcM14AMHDhkafw6N94yRNvfALw",
-      "balance": 35000,
+      "balance": 15686,
       "membership_expire_on": 1722554068,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696330883,
       "certs_received": {
         "JaviEsko": 1754446188,
         "MAIKA": 1754444356,
+        "Jokin": 1759362858,
         "Aneferse": 1754444087,
         "Orakulo": 1754432739,
+        "josecristobalsaludholistica": 1759514151,
         "EduZapping": 1754424279
       }
     },
     "Libertiste": {
       "index": 5764,
       "owner_key": "2MbunUHTgUvff6Ut3ESFVZ88GFYLqGN1RtmFEiaDFDpu",
-      "balance": 629570,
+      "balance": 669256,
       "membership_expire_on": 1701288900,
       "next_cert_issuable_on": 1670044332,
       "certs_received": {
-        "Johan": 1693606694,
         "arojasurrego": 1699054275,
         "Caroleluciole": 1732846951,
         "Cat": 1698097218,
-        "ADodson": 1696378473,
         "Marcelin": 1705194501,
-        "Camille": 1693606694,
-        "Leana": 1693606694,
         "Dodjay": 1697584534,
         "zaza": 1698196638,
         "PascalGuillemain": 1739998326,
         "mat14": 1698186351,
-        "Oce": 1693606177,
-        "Parpalhon": 1698196638,
-        "mollenthiel": 1693605151
+        "Parpalhon": 1698196638
       }
     },
     "Herisson": {
       "index": 11059,
       "owner_key": "2Mhd78fH2WzmP9FAuNaCy2xSXhFMKzMwPZgQGoBxMkXi",
-      "balance": 199863,
+      "balance": 239549,
       "membership_expire_on": 1703871879,
       "next_cert_issuable_on": 1672987120,
       "certs_received": {
@@ -5050,9 +5135,9 @@
     "AnyesOlek": {
       "index": 9425,
       "owner_key": "2MrzGTo3wmgafAwLGJFRNcwqJFFBydH35oiwmgDByQCx",
-      "balance": 383595,
+      "balance": 413281,
       "membership_expire_on": 1720459138,
-      "next_cert_issuable_on": 1685427179,
+      "next_cert_issuable_on": 1695036168,
       "certs_received": {
         "DaniailesA": 1748367229,
         "Ainoha": 1736111120,
@@ -5071,7 +5156,7 @@
     "MicheleVanLil": {
       "index": 10171,
       "owner_key": "2MvgY5vGzsrg5PUukjZd6FWxTABZwZuoJspnGjmcsMxq",
-      "balance": 320004,
+      "balance": 359690,
       "membership_expire_on": 1698956019,
       "next_cert_issuable_on": 1682340863,
       "certs_received": {
@@ -5089,9 +5174,9 @@
     "AWEN": {
       "index": 11598,
       "owner_key": "2Mwy4cfQMoFcXvicggpWvPstAv6DK4Bjp9vdBrSr5Ykg",
-      "balance": 199408,
+      "balance": 227294,
       "membership_expire_on": 1706912881,
-      "next_cert_issuable_on": 1676612763,
+      "next_cert_issuable_on": 1696424513,
       "certs_received": {
         "corinneclem": 1739419771,
         "clodclef": 1739352958,
@@ -5112,7 +5197,7 @@
     "Zedogcompany": {
       "index": 11725,
       "owner_key": "2N2N7LkeFYv83qpscHjjwC7qoxy4p7Q7wHbXuMASedrF",
-      "balance": 203877,
+      "balance": 243573,
       "membership_expire_on": 1705147220,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -5144,8 +5229,8 @@
     "Miguel": {
       "index": 9528,
       "owner_key": "2NCUBdW8GkweqfyREcToT3hNs12eE5RBXGWaPrfzQK25",
-      "balance": 206336,
-      "membership_expire_on": 1694533026,
+      "balance": 212152,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1684418699,
       "certs_received": {
         "Ainat255": 1726130468,
@@ -5175,14 +5260,15 @@
     "xandraAritzkuren": {
       "index": 8492,
       "owner_key": "2NUuDGBhvccesa2LKEkhoPsJJZfTi2n3fXYNVvyEjUWJ",
-      "balance": 634542,
+      "balance": 880771,
       "membership_expire_on": 1712670616,
-      "next_cert_issuable_on": 1693113379,
+      "next_cert_issuable_on": 1695436220,
       "certs_received": {
         "luciagares": 1740717353,
         "Cordeliaze": 1717966873,
         "Etipol61": 1721018105,
         "SanTuCa-REMyL": 1734420913,
+        "regy": 1757750534,
         "Estitz": 1724939468,
         "Edgar": 1717974175,
         "YagoMago": 1738294925,
@@ -5198,6 +5284,7 @@
         "Estellea": 1726596678,
         "Filomenapaz": 1735931045,
         "kin55puravida": 1731142013,
+        "Nathaplume": 1759341044,
         "Lolito": 1741982700,
         "Faquantharmonie": 1721854564,
         "SarahJardinAmphipolis": 1721077984,
@@ -5239,15 +5326,16 @@
     "Cholo": {
       "index": 10833,
       "owner_key": "2NZfLBXH8675kEYQ7GY2pkmgrSBMN9KiyDXiaGSghQsq",
-      "balance": 1439418,
+      "balance": 1509504,
       "membership_expire_on": 1702155389,
-      "next_cert_issuable_on": 1693380832,
+      "next_cert_issuable_on": 1696504301,
       "certs_received": {
         "kapis": 1752812322,
         "absalon2": 1752942110,
         "Sheiladanzas": 1737460253,
         "Unomasuno": 1733823868,
         "Ambar": 1754468250,
+        "Wynfyd": 1759633391,
         "AlvaroFernandez": 1743582781,
         "riky": 1751086461,
         "unica": 1750015494,
@@ -5274,6 +5362,7 @@
         "Marianfs": 1753683424,
         "JuanCarlos": 1752485987,
         "Kol": 1753035927,
+        "AndresXaudi": 1758925922,
         "fania": 1746794211,
         "Bosqui": 1735410736
       }
@@ -5297,9 +5386,9 @@
     "ChefFranck": {
       "index": 10673,
       "owner_key": "2NnnrzuoVDuZwkH4pzmpZh1SV1QDYUpDLB4AcHSTzkxP",
-      "balance": 294897,
+      "balance": 334583,
       "membership_expire_on": 1701384860,
-      "next_cert_issuable_on": 1672810241,
+      "next_cert_issuable_on": 1694526162,
       "certs_received": {
         "AmeHC": 1733295791,
         "BelgianGardoise": 1732942673,
@@ -5313,7 +5402,7 @@
     "Cara": {
       "index": 13047,
       "owner_key": "2Nw11cDKg31YDuh182fw5SCK5scAe7kBKyDrZ2GNSjuQ",
-      "balance": 54468,
+      "balance": 79154,
       "membership_expire_on": 1719259417,
       "next_cert_issuable_on": 1689077673,
       "certs_received": {
@@ -5335,7 +5424,7 @@
     "NathalieCokelaer": {
       "index": 6433,
       "owner_key": "2PFJtpE7cd7J3yH8TNnxY9DHrR3efvhUyGg4zDn3a97o",
-      "balance": 545027,
+      "balance": 591713,
       "membership_expire_on": 1721593705,
       "next_cert_issuable_on": 1663568751,
       "certs_received": {
@@ -5350,13 +5439,14 @@
     "Holistique": {
       "index": 11373,
       "owner_key": "2PFL5BdzTp4D5w88bjfbV7hbCbThMGEA9xSEVftZsXyZ",
-      "balance": 141711,
+      "balance": 181397,
       "membership_expire_on": 1706316331,
-      "next_cert_issuable_on": 1693206588,
+      "next_cert_issuable_on": 1695975128,
       "certs_received": {
         "MarieCathou": 1737948070,
         "Charbel45": 1745957031,
         "Mathdom": 1755758898,
+        "Effelmandy": 1756502200,
         "Seve": 1737950231,
         "Floreale": 1737924708,
         "loirisa": 1744678490,
@@ -5384,7 +5474,7 @@
     "almadeser": {
       "index": 13120,
       "owner_key": "2PTVM3UdkoNALkrCr3y4NLeFQpJvjgKQS8g1x86pUVTA",
-      "balance": 57292,
+      "balance": 37978,
       "membership_expire_on": 1720109716,
       "next_cert_issuable_on": 1690988766,
       "certs_received": {
@@ -5400,9 +5490,9 @@
     "LilianBonnardon": {
       "index": 5994,
       "owner_key": "2Pav4YCGqrnoYtAuCqH48hPts7ugB9q5sz2imBTR5FCD",
-      "balance": 618159,
-      "membership_expire_on": 1695159431,
-      "next_cert_issuable_on": 1681826494,
+      "balance": 657845,
+      "membership_expire_on": 1725107735,
+      "next_cert_issuable_on": 1696079487,
       "certs_received": {
         "looie": 1698430804,
         "Mick": 1698435321,
@@ -5422,7 +5512,7 @@
         "ALFONSILaurent": 1698769570,
         "Coco46": 1698883971,
         "Unika": 1715152473,
-        "VWAUMANS": 1698435657,
+        "VWAUMANS": 1755655430,
         "JBM": 1698429227,
         "hypericum": 1700623395,
         "Parhit": 1699637290,
@@ -5432,7 +5522,7 @@
     "IsiaLe": {
       "index": 5516,
       "owner_key": "2PeVicb17Xc7qR6htD5PgV9jcKe4HfwiE8SPocQ6Cc33",
-      "balance": 979675,
+      "balance": 1161591,
       "membership_expire_on": 1712263536,
       "next_cert_issuable_on": 1690891357,
       "certs_received": {
@@ -5445,7 +5535,6 @@
         "Chanchan": 1730945925,
         "GeraldineGarrigues": 1731201890,
         "mathieuBize": 1742013865,
-        "Marline": 1696103604,
         "Pomme21": 1747270543,
         "Val83": 1724515890
       }
@@ -5453,7 +5542,7 @@
     "LaurenceVaglio": {
       "index": 4085,
       "owner_key": "2PjBUwa755xnh7yiTJeeHhwbeiCinA683SfQYN6KpsGm",
-      "balance": 671940,
+      "balance": 711626,
       "membership_expire_on": 1701968117,
       "next_cert_issuable_on": 1670762553,
       "certs_received": {
@@ -5485,14 +5574,15 @@
     "MPO": {
       "index": 10122,
       "owner_key": "2Pw7ahpAwUev2Y18GZp1JvTawD45KTbXA6VacQfwVp2b",
-      "balance": 385521,
-      "membership_expire_on": 1698518317,
+      "balance": 425207,
+      "membership_expire_on": 1727397853,
       "next_cert_issuable_on": 1683166667,
       "certs_received": {
         "Aude49": 1730076165,
         "LuciaKorosiova": 1730457153,
         "Nany": 1730778811,
         "RoselyneBinesse": 1730875061,
+        "BielinskiGabrielle": 1758576389,
         "noreveriam": 1730093066,
         "Chantallef72": 1730146400,
         "BelGambette": 1737844835,
@@ -5512,7 +5602,7 @@
     "Enara": {
       "index": 9287,
       "owner_key": "2QD24sd5wupXd4g87Sv7G4637FufQLK3eCUjVF4ss85r",
-      "balance": 276558,
+      "balance": 316244,
       "membership_expire_on": 1721987381,
       "next_cert_issuable_on": 1676269034,
       "certs_received": {
@@ -5544,7 +5634,7 @@
     "animula": {
       "index": 11416,
       "owner_key": "2QFWwTMJpnTFx6U79asZ9qrtahxafhh4XbQjboNphKwp",
-      "balance": 195434,
+      "balance": 235120,
       "membership_expire_on": 1705281729,
       "next_cert_issuable_on": 1683807823,
       "certs_received": {
@@ -5562,7 +5652,7 @@
     "Boris974": {
       "index": 6364,
       "owner_key": "2QJ58Af3NV3yPrMcZan8m8EfJZKz1NdbXSLJRoBbgH7E",
-      "balance": 240461,
+      "balance": 280147,
       "membership_expire_on": 1705920053,
       "next_cert_issuable_on": 1659955606,
       "certs_received": {
@@ -5575,7 +5665,7 @@
         "gabyjoce974": 1702438336,
         "Sandro974": 1726497605,
         "Logan974": 1723249601,
-        "pampermacole": 1702408654
+        "pampermacole": 1759122203
       }
     },
     "Iris": {
@@ -5594,7 +5684,7 @@
     "Osermalumiere": {
       "index": 10896,
       "owner_key": "2QS5XWqwoeY8yuMfHocBanZm7vFQyxCoQeL1YSboMpRr",
-      "balance": 276630,
+      "balance": 316316,
       "membership_expire_on": 1702219955,
       "next_cert_issuable_on": 1682760717,
       "certs_received": {
@@ -5611,7 +5701,7 @@
     "EUREKA": {
       "index": 11103,
       "owner_key": "2QaCHfYL6ppC6vrKXH1NPGxAPeoHHvV9GVXj2jNQqeNG",
-      "balance": 158146,
+      "balance": 197832,
       "membership_expire_on": 1703613960,
       "next_cert_issuable_on": 1680662306,
       "certs_received": {
@@ -5635,11 +5725,10 @@
     "CaroPetillante": {
       "index": 3297,
       "owner_key": "2QevbxmSfkQcKYWk8W8mjzMU3B8KQ6pPh9zyzByPvtnZ",
-      "balance": 92585,
+      "balance": 40741,
       "membership_expire_on": 1721703281,
       "next_cert_issuable_on": 1692894966,
       "certs_received": {
-        "Alcidejet": 1694648785,
         "Kamilmilka": 1722369367,
         "AlexisMarcotte": 1700978713,
         "NinaB": 1726258077,
@@ -5651,20 +5740,17 @@
     "Celiane": {
       "index": 2488,
       "owner_key": "2Qfwy65i85bZZYwVZJHiGGTwiAjjAisUYXuYFfFm4Fez",
-      "balance": 1453581,
+      "balance": 1493267,
       "membership_expire_on": 1698606697,
       "next_cert_issuable_on": 1689241673,
       "certs_received": {
         "Julia": 1700689693,
-        "1000i100": 1694680017,
+        "1000i100": 1757661293,
         "CorinneE": 1753938089,
-        "Cha": 1696114988,
-        "Loic": 1694752067,
         "Dieudo": 1730997089,
         "Transchene": 1702980979,
         "Ginger": 1730656466,
         "FleurChenot": 1741827369,
-        "PhilippeE": 1694755726,
         "Marnoazz": 1735038393
       }
     },
@@ -5681,21 +5767,20 @@
         "Mariel": 1703399213,
         "ofontes": 1731997657,
         "toffee": 1704492433,
-        "Passiflore": 1732008221,
-        "julthor": 1696719361
+        "Passiflore": 1732008221
       }
     },
     "Jean-Marie": {
       "index": 5786,
       "owner_key": "2QpQtyyHmXtrHgKZ8a36Aio9Cgh2BpCZxLnM3xLbjSPn",
-      "balance": 649720,
+      "balance": 689406,
       "membership_expire_on": 1717847682,
-      "next_cert_issuable_on": 1691463980,
+      "next_cert_issuable_on": 1696213947,
       "certs_received": {
-        "PatrickCrepin": 1700690799,
+        "PatrickCrepin": 1759778451,
         "fluidlog": 1696887111,
         "stephanechevreau": 1705898065,
-        "Pascale72": 1696763467,
+        "Pascale72": 1758042501,
         "NordineVallas": 1742664000,
         "RomanUza": 1701980796,
         "JeromeCoste": 1756424032,
@@ -5711,7 +5796,7 @@
     "Alyssa13": {
       "index": 10956,
       "owner_key": "2QsEDUx6GCzvKXbDyoC7K4HECvnGgssQcgCgRKkJN2Ve",
-      "balance": 156928,
+      "balance": 196614,
       "membership_expire_on": 1702608210,
       "next_cert_issuable_on": 1681013579,
       "certs_received": {
@@ -5725,7 +5810,7 @@
     "StephaneMongeois": {
       "index": 8846,
       "owner_key": "2QvKrvYcEhvqjWxkMrshDVGPe1LUpumys7pjouyah5tT",
-      "balance": 288755,
+      "balance": 313441,
       "membership_expire_on": 1718329703,
       "next_cert_issuable_on": 1675947525,
       "certs_received": {
@@ -5745,7 +5830,7 @@
     "VeroRonsmans": {
       "index": 10331,
       "owner_key": "2QxD82yTmFMZduZmTauPtF68wDLUF5NWBkV8QnpX2SK7",
-      "balance": 308354,
+      "balance": 348040,
       "membership_expire_on": 1697484399,
       "next_cert_issuable_on": 1681651164,
       "certs_received": {
@@ -5773,7 +5858,7 @@
     "Steph": {
       "index": 6173,
       "owner_key": "2R746BqaaGHeVHrekzqeAb6A7pgaTgpJTHjM6FV3wJcu",
-      "balance": 614656,
+      "balance": 654342,
       "membership_expire_on": 1705271974,
       "next_cert_issuable_on": 1639058410,
       "certs_received": {
@@ -5788,12 +5873,14 @@
     "gberdal": {
       "index": 10494,
       "owner_key": "2R93HiobccFSn1LiHusqYaYK1XEJMQ1kBp2Ce94jQhmN",
-      "balance": 183246,
+      "balance": 212932,
       "membership_expire_on": 1699312167,
-      "next_cert_issuable_on": 1691042665,
+      "next_cert_issuable_on": 1695289145,
       "certs_received": {
         "Kimoto": 1731097513,
         "NathNath": 1745379802,
+        "LNC89": 1758078847,
+        "s00999": 1758330038,
         "FloraB": 1731693280,
         "CatherineBerdal": 1730869767,
         "Ninette89": 1750800513,
@@ -5818,7 +5905,7 @@
     "Nicolas": {
       "index": 93,
       "owner_key": "2RFPQGxYraKTFKKBXgpNn1QDEPdFM7rHNu7HdbmmF43v",
-      "balance": 135036,
+      "balance": 261022,
       "membership_expire_on": 1718804810,
       "next_cert_issuable_on": 1687320675,
       "certs_received": {
@@ -5829,6 +5916,8 @@
         "AngieantesGeles": 1733191434,
         "XianeC": 1697936391,
         "KimDS": 1740699412,
+        "DavidMontpellier": 1758955453,
+        "VivienProuvot": 1758523917,
         "Annabel": 1739485051,
         "Kalia": 1702451878,
         "JuanCarlos": 1721166351,
@@ -5840,7 +5929,7 @@
       "index": 9555,
       "owner_key": "2RGfpizNzpBMtHxHZN4AqwQVxz4zo5QMyQaXM7fK3oNq",
       "balance": 369983,
-      "membership_expire_on": 1693513925,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "NancyAlexia": 1726516419,
@@ -5854,9 +5943,9 @@
     "corinneclem": {
       "index": 11540,
       "owner_key": "2RLzR93KrqZKz8heASPYJZY5JHnVB9cWBA8FmvYxjy4B",
-      "balance": 228044,
+      "balance": 268330,
       "membership_expire_on": 1707065409,
-      "next_cert_issuable_on": 1683530395,
+      "next_cert_issuable_on": 1695377043,
       "certs_received": {
         "Lecuyer89": 1738718566,
         "BenoitClemenceau": 1738822644,
@@ -5869,7 +5958,7 @@
     "RosyRio": {
       "index": 12427,
       "owner_key": "2RNExdYUou1RbJUp28axjNNaRU4svjB4GAKNhcECuW9R",
-      "balance": 171840,
+      "balance": 211526,
       "membership_expire_on": 1713817436,
       "next_cert_issuable_on": 1690216603,
       "certs_received": {
@@ -5877,6 +5966,7 @@
         "PhilippeLafontaine": 1745385065,
         "Chrisma1957": 1745439254,
         "ElyM": 1745375310,
+        "laurencef": 1757363872,
         "MarieMas": 1747033512,
         "Barbatruc": 1747631313,
         "Diane": 1745885795,
@@ -5893,9 +5983,9 @@
     "SaraRo": {
       "index": 7551,
       "owner_key": "2RPEzNDodKNFsLh6rJRAAo2ckXpnMU6v9FGqmW21LRki",
-      "balance": 97928,
+      "balance": 137614,
       "membership_expire_on": 1709328898,
-      "next_cert_issuable_on": 1687688825,
+      "next_cert_issuable_on": 1696134702,
       "certs_received": {
         "kapis": 1732848676,
         "Intercanvi": 1720576932,
@@ -5930,15 +6020,13 @@
     "myt": {
       "index": 5548,
       "owner_key": "2RUqf9j6G98EeeezhTuRSEM4rM63HyUJ8NAUbdf5eBFW",
-      "balance": 751781,
+      "balance": 791467,
       "membership_expire_on": 1713564807,
-      "next_cert_issuable_on": 1693325892,
+      "next_cert_issuable_on": 1694787335,
       "certs_received": {
-        "Ashawik": 1701888750,
-        "CClement": 1694397934,
+        "Ashawik": 1759181927,
         "Pascale72": 1754626935,
         "guillaumed": 1720431877,
-        "Gerardl": 1694726315,
         "Dolphins": 1748498045,
         "hayssam": 1732728634,
         "Peesse": 1717631194
@@ -5963,7 +6051,7 @@
     "Yggdrasil": {
       "index": 12766,
       "owner_key": "2RXVcUSVXCPiuPnJDFLGJzwZDE7Bc3Pn5yEBGNQpZXjY",
-      "balance": 461460,
+      "balance": 501146,
       "membership_expire_on": 1716388772,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -5979,7 +6067,7 @@
     "Lilith": {
       "index": 12371,
       "owner_key": "2RXn56WjJfWzg2LLSh43TwupyA97w1wKHvHEZ4RMoZwr",
-      "balance": 145248,
+      "balance": 184934,
       "membership_expire_on": 1712932696,
       "next_cert_issuable_on": 1685326993,
       "certs_received": {
@@ -6025,19 +6113,21 @@
     "Monette": {
       "index": 9512,
       "owner_key": "2Rm3BuDVvsDdsRTiKNoA7fZTsvU5wGgMF278h2qsfKX8",
-      "balance": 842788,
-      "membership_expire_on": 1720725041,
-      "next_cert_issuable_on": 1691221216,
+      "balance": 962174,
+      "membership_expire_on": 1726418894,
+      "next_cert_issuable_on": 1696685074,
       "certs_received": {
         "RomainKornig": 1733395189,
         "ValerieArtsetsens": 1752982042,
         "Azucena": 1724429151,
+        "gimo": 1758238994,
         "belledecadix": 1731456253,
         "Sebcbien": 1736899007,
         "LuciaM": 1749055905,
         "NouvelAnge": 1740187791,
         "Gigimit57": 1724278297,
         "Marionnette": 1737342197,
+        "DavidMontpellier": 1758174060,
         "Petitlutin": 1734957688,
         "fabienne": 1725669615,
         "Patrice": 1725223400,
@@ -6055,12 +6145,12 @@
     "Julia": {
       "index": 632,
       "owner_key": "2RreUqjXuY59U4UTU1Xczn3QirmwUKYCwDD7M99ooguU",
-      "balance": 827292,
+      "balance": 866978,
       "membership_expire_on": 1699336278,
       "next_cert_issuable_on": 1687231984,
       "certs_received": {
         "Celiane": 1698050477,
-        "1000i100": 1695280830,
+        "1000i100": 1757661293,
         "Schinzy": 1738725149,
         "Helenep": 1732690357,
         "JerryBB": 1727725457,
@@ -6083,11 +6173,12 @@
     "Rebel": {
       "index": 8558,
       "owner_key": "2S3uUJuJsW4S271is7DtAwra6hqMaawEk6Jf8tFpG4dF",
-      "balance": 207911,
+      "balance": 229597,
       "membership_expire_on": 1713706551,
-      "next_cert_issuable_on": 1691494277,
+      "next_cert_issuable_on": 1696663127,
       "certs_received": {
         "Morpheus": 1718379169,
+        "Steph41": 1756946620,
         "Danielle": 1742883580,
         "ChristineDHONDT": 1723428640,
         "Ffafchamps": 1718388203,
@@ -6106,9 +6197,9 @@
     "Lulu31Verfeil": {
       "index": 2340,
       "owner_key": "2S4cuncqU6x29HTbeNrYYYk5LM8rQJggY7yAiAQHNouT",
-      "balance": 491628,
+      "balance": 531314,
       "membership_expire_on": 1715191009,
-      "next_cert_issuable_on": 1685160388,
+      "next_cert_issuable_on": 1695198081,
       "certs_received": {
         "Mymy": 1736798272,
         "4rion": 1726851298,
@@ -6122,7 +6213,7 @@
     "JohanMAS": {
       "index": 7255,
       "owner_key": "2SFqQhCSPC4oaF9yJCZJwj3GTeNs8rzzPAZDQLm81v95",
-      "balance": 569583,
+      "balance": 609269,
       "membership_expire_on": 1709399730,
       "next_cert_issuable_on": 1677984741,
       "certs_received": {
@@ -6137,10 +6228,11 @@
     "Beatis": {
       "index": 13160,
       "owner_key": "2SJGX2XhWncpMM6Wk3FGD6PLwHRC6ZmvbJScX6vVWphC",
-      "balance": 115264,
+      "balance": 154950,
       "membership_expire_on": 1717943211,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696503971,
       "certs_received": {
+        "LilianBonnardon": 1756665335,
         "NopamasYC": 1750375852,
         "Malene": 1750451904,
         "Mavag": 1752047895,
@@ -6162,16 +6254,19 @@
     "NopamasYC": {
       "index": 9581,
       "owner_key": "2SPTevmrbCTj1xF31DG2DNfKvQis8Yw5g1EhfakdUwSf",
-      "balance": 150663,
+      "balance": 176349,
       "membership_expire_on": 1721077023,
-      "next_cert_issuable_on": 1689001208,
+      "next_cert_issuable_on": 1694217302,
       "certs_received": {
+        "Beatis": 1759547171,
+        "Toutvabien": 1756952976,
         "Malene": 1749615755,
         "ThierryS": 1746115096,
         "IsaM": 1733196798,
         "Benedicte38": 1726107798,
         "MioPalmon988": 1742404539,
         "Eve38": 1742354634,
+        "Gael": 1757132426,
         "esteban": 1737090204,
         "thierry38": 1726696701,
         "GOPA": 1751927216,
@@ -6203,9 +6298,9 @@
     "Math007": {
       "index": 11163,
       "owner_key": "2SXsrv1U495owy4TrTjbwyairdbT5i1GN8AVd4yuPqoy",
-      "balance": 96342,
+      "balance": 88028,
       "membership_expire_on": 1702671307,
-      "next_cert_issuable_on": 1686358380,
+      "next_cert_issuable_on": 1696476693,
       "certs_received": {
         "MariadeMonteux": 1736365384,
         "KATHY84": 1735456651,
@@ -6233,8 +6328,8 @@
     "MariadeJesus": {
       "index": 9850,
       "owner_key": "2SdSD7zq22sCceWA4nrSFVcL24JZ2jytnHGksdxeZUVf",
-      "balance": 364901,
-      "membership_expire_on": 1695861407,
+      "balance": 364587,
+      "membership_expire_on": 1726171899,
       "next_cert_issuable_on": 1688655364,
       "certs_received": {
         "FabFabounette": 1746837013,
@@ -6251,8 +6346,8 @@
     "Mel76": {
       "index": 9715,
       "owner_key": "2SeGFk3rYYrj4D9FfNFNcw9B8UYCNGyeh65H9C9ymjCq",
-      "balance": 362291,
-      "membership_expire_on": 1695001102,
+      "balance": 380447,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670899110,
       "certs_received": {
         "Ludo81": 1727289597,
@@ -6267,7 +6362,7 @@
     "NekaneK": {
       "index": 11445,
       "owner_key": "2SipEtrg6WpRwB9rQRn27UZ981q5mEeYZhwynF7ZhZU8",
-      "balance": 115710,
+      "balance": 155396,
       "membership_expire_on": 1706489483,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -6289,7 +6384,7 @@
     "AriahNarnia": {
       "index": 2001,
       "owner_key": "2TEweLgpEjU84ZSk4HzofaLEP7r9UWR3F3GoEeuY7kxo",
-      "balance": 1303084,
+      "balance": 1342770,
       "membership_expire_on": 1701005852,
       "next_cert_issuable_on": 1692433414,
       "certs_received": {
@@ -6307,9 +6402,9 @@
     "Tot16": {
       "index": 12788,
       "owner_key": "2TGRQtVui6rzcsHnenYMGBHMMPC8Tpvzy96J8oUNmpAQ",
-      "balance": 117188,
+      "balance": 156874,
       "membership_expire_on": 1716772364,
-      "next_cert_issuable_on": 1690345052,
+      "next_cert_issuable_on": 1694069242,
       "certs_received": {
         "DaniailesA": 1748330248,
         "Armelluna": 1749078395,
@@ -6317,9 +6412,11 @@
         "JeanneFlowJ": 1748371734,
         "Pllumes": 1748361250,
         "Coco-B": 1750095544,
+        "Ginou17": 1757376566,
         "RegnierLefur45": 1750204287,
         "Mistigri": 1748364607,
         "Fannyhihihi": 1750229527,
+        "Gawawelle": 1755839977,
         "NolanRoni": 1753227145
       }
     },
@@ -6334,7 +6431,7 @@
     "LittleJess": {
       "index": 8986,
       "owner_key": "2TMoRYmC1jWZxAg5UEP5hjgzvcNEFAQP8EPevDe5zfKg",
-      "balance": 402359,
+      "balance": 438745,
       "membership_expire_on": 1720174226,
       "next_cert_issuable_on": 1667788646,
       "certs_received": {
@@ -6357,7 +6454,7 @@
     "DADA11": {
       "index": 12573,
       "owner_key": "2TYDq2dzXADSPWcidmADzHEvAZjavjJX7JnKFeWSDpLj",
-      "balance": 59612,
+      "balance": 99298,
       "membership_expire_on": 1714837126,
       "next_cert_issuable_on": 1690910343,
       "certs_received": {
@@ -6408,7 +6505,7 @@
     "ChristelleNaturo": {
       "index": 10722,
       "owner_key": "2TfxHg6YwPYPG5ee8wE55C2eVkbmTjRsYVo5gcKQenLK",
-      "balance": 275479,
+      "balance": 315165,
       "membership_expire_on": 1701440333,
       "next_cert_issuable_on": 1677054975,
       "certs_received": {
@@ -6445,9 +6542,9 @@
     "myma63": {
       "index": 10215,
       "owner_key": "2UDvYzkYP1Ch25mi1Y4qF7nRPZhXDB3sKnT6Cn1gwfBB",
-      "balance": 317049,
+      "balance": 356735,
       "membership_expire_on": 1698274873,
-      "next_cert_issuable_on": 1685962147,
+      "next_cert_issuable_on": 1693616865,
       "certs_received": {
         "Pensey20": 1730352328,
         "Carole26": 1730612134,
@@ -6461,7 +6558,7 @@
     "Jolanda_Sonne": {
       "index": 9504,
       "owner_key": "2UHQ8QPaAcujsSdSiqXFeXcigLGqWV3C7oGeLBuRVHu9",
-      "balance": 296289,
+      "balance": 335975,
       "membership_expire_on": 1721853297,
       "next_cert_issuable_on": 1690367697,
       "certs_received": {
@@ -6478,9 +6575,9 @@
     "Katiecat": {
       "index": 4669,
       "owner_key": "2UPsVin5UKhtJhHAiezwSYuAXx9A8qNGkhAGUpGYriKp",
-      "balance": 828281,
+      "balance": 850459,
       "membership_expire_on": 1703017561,
-      "next_cert_issuable_on": 1693301598,
+      "next_cert_issuable_on": 1695434098,
       "certs_received": {
         "Hestia": 1720462292,
         "KrineBlt": 1748241591,
@@ -6508,8 +6605,8 @@
     "Aguas": {
       "index": 10369,
       "owner_key": "2UTrx7Aisp6Gd1yYbegmwE1brspWD1YiGZmv3d4XRxMf",
-      "balance": 225518,
-      "membership_expire_on": 1699439287,
+      "balance": 265204,
+      "membership_expire_on": 1726194054,
       "next_cert_issuable_on": 1691296488,
       "certs_received": {
         "LaMatriarcaToro": 1734009260,
@@ -6539,7 +6636,7 @@
     "Hippolytethomas": {
       "index": 13157,
       "owner_key": "2UUSPf6KhSXghxjDnGGjN1BM4txr4hk4TuRSE1DoCJ1k",
-      "balance": 46500,
+      "balance": 86186,
       "membership_expire_on": 1720484744,
       "next_cert_issuable_on": 1693059727,
       "certs_received": {
@@ -6553,7 +6650,7 @@
     "Jeremiel": {
       "index": 13055,
       "owner_key": "2UXyzfoVNQtn5kpDLQn2n8tr5vt1B2UjJuLmnG3AbwDx",
-      "balance": 79284,
+      "balance": 118970,
       "membership_expire_on": 1719308941,
       "next_cert_issuable_on": 1689495343,
       "certs_received": {
@@ -6568,6 +6665,20 @@
         "Bastien6238": 1751405293
       }
     },
+    "LewisBuster": {
+      "index": 13682,
+      "owner_key": "2UgbgtEmA4SYvE1GhrMGocJn2aQHTLxRfjZRbigjuwUu",
+      "balance": 28702,
+      "membership_expire_on": 1725994908,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "IlonadeHaas": 1758996866,
+        "Mahj": 1759084300,
+        "Pieter-LucvanNikkel": 1758557434,
+        "NagNag": 1759080443,
+        "MinaManar": 1758489773
+      }
+    },
     "GaelleABI": {
       "index": 2216,
       "owner_key": "2UmqnL6i3dt632zzQYfZanbKWHN9MxaqjR8RZ486RvyH",
@@ -6592,9 +6703,9 @@
     "Samay": {
       "index": 8928,
       "owner_key": "2Uu9RA7JnjgZ9fhfZbq19xk8rEYjXtYuyAP9RJ7Qxctt",
-      "balance": 385582,
+      "balance": 425268,
       "membership_expire_on": 1717446181,
-      "next_cert_issuable_on": 1685967147,
+      "next_cert_issuable_on": 1694532264,
       "certs_received": {
         "FRANCINE79": 1721101959,
         "MurielLaragne": 1732315677,
@@ -6609,9 +6720,9 @@
     "Manu_El": {
       "index": 8288,
       "owner_key": "2UwBR2PeBTnRcH38sXMNYeGzyYuKveaiq2ACgzMtmkXa",
-      "balance": 117892,
+      "balance": 41202,
       "membership_expire_on": 1710877532,
-      "next_cert_issuable_on": 1693130681,
+      "next_cert_issuable_on": 1694605778,
       "certs_received": {
         "UFO": 1735431480,
         "Eiutim": 1756172521,
@@ -6636,6 +6747,7 @@
         "RachelGreen": 1716316575,
         "PerePinyolTortosa": 1745953017,
         "EmmanuelZetace": 1716458764,
+        "OlgaPont": 1756318569,
         "marijose": 1738365423,
         "Val34": 1727979622,
         "Ulyses": 1718767754,
@@ -6663,7 +6775,7 @@
     "Mairyn31": {
       "index": 7799,
       "owner_key": "2UzHgaexzUVt2jzqrTjJRts1Fi1CVnSLda734XuZEsH1",
-      "balance": 415325,
+      "balance": 415011,
       "membership_expire_on": 1712445828,
       "next_cert_issuable_on": 1683380133,
       "certs_received": {
@@ -6685,7 +6797,7 @@
     "domisa6384": {
       "index": 12184,
       "owner_key": "2V3p82CSDxAqY2qT6mXcWF5eftTBnbTioHdm9FRZAxGB",
-      "balance": 182504,
+      "balance": 222190,
       "membership_expire_on": 1710945920,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -6798,7 +6910,7 @@
     "StretchofSand": {
       "index": 12014,
       "owner_key": "2VrJht8wBPHg7rrug4xy6yfozmWQ4qGVf6NEHS1Drh2h",
-      "balance": 196320,
+      "balance": 243006,
       "membership_expire_on": 1710449276,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -6820,11 +6932,12 @@
     "Hokyss": {
       "index": 8153,
       "owner_key": "2Vvo6pLVPp8F8CNWGwSxiFerzZk7c5VH1BiUfoWyEpg1",
-      "balance": 430052,
+      "balance": 464738,
       "membership_expire_on": 1712544365,
       "next_cert_issuable_on": 1693398833,
       "certs_received": {
         "diablade": 1716149394,
+        "JanineBoitel": 1757124136,
         "JusteAlex": 1716195233,
         "BenoitFeryn": 1716010664,
         "Matograine": 1716187548,
@@ -6845,9 +6958,9 @@
     "Sailing": {
       "index": 2430,
       "owner_key": "2VxvBEz9GDdkAyQsMiLcbccc3ckJgDUHSfjQfjTCT9Su",
-      "balance": 1549239,
+      "balance": 1544425,
       "membership_expire_on": 1714263920,
-      "next_cert_issuable_on": 1682777838,
+      "next_cert_issuable_on": 1695173400,
       "certs_received": {
         "ANOLIS": 1697705845,
         "Youn": 1745867509,
@@ -6868,25 +6981,24 @@
     "Alinerv": {
       "index": 2694,
       "owner_key": "2WKwT9D1VcpqqYhddSZBTYYiJeZuVQvMmR3gZZsB7whB",
-      "balance": 1098290,
+      "balance": 1137976,
       "membership_expire_on": 1706030258,
-      "next_cert_issuable_on": 1679903349,
+      "next_cert_issuable_on": 1696411282,
       "certs_received": {
-        "Georges_M_mbr": 1694866654,
         "Alter2021_83": 1699559065,
         "Magvr": 1710899028,
+        "pfouque": 1759004720,
         "LionMackry": 1739930696,
-        "Mathieuf": 1694850457,
         "Vivi83": 1701139933,
-        "Sandrine-": 1694851046,
-        "Ethersource83": 1698549856,
+        "Sandrine-": 1758656163,
+        "Ethersource83": 1758251365,
         "FVK": 1731447262
       }
     },
     "Man": {
       "index": 10329,
       "owner_key": "2WPXzgY5cm46ZKKyeyhKpLMvMF1Kuts2CtWDMD3ekaVm",
-      "balance": 299996,
+      "balance": 339682,
       "membership_expire_on": 1699749841,
       "next_cert_issuable_on": 1688306712,
       "certs_received": {
@@ -6917,14 +7029,8 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1639361726,
       "certs_received": {
-        "pierreM": 1694557894,
         "seb": 1697493890,
-        "Ingriddevendee": 1694557247,
-        "fredo79": 1695101362,
-        "Sylmon": 1694557548,
-        "SarahAchalafin": 1700807842,
-        "Uranie": 1694560245,
-        "IJMah": 1694557894
+        "SarahAchalafin": 1700807842
       }
     },
     "coeur8": {
@@ -6953,7 +7059,7 @@
     "LazareT": {
       "index": 4648,
       "owner_key": "2WZFZStzWxGHb82ydyd11EhLd2gcp93B3BzMWynWMxGq",
-      "balance": 701401,
+      "balance": 741087,
       "membership_expire_on": 1707251283,
       "next_cert_issuable_on": 1689570076,
       "certs_received": {
@@ -6978,7 +7084,7 @@
     "Bcabon": {
       "index": 239,
       "owner_key": "2Wexva1n8ZtH2Y5Pv7zLV9SFS8RKVbfk6z42ohEKKEpR",
-      "balance": 1289499,
+      "balance": 1329185,
       "membership_expire_on": 1722437209,
       "next_cert_issuable_on": 1690951609,
       "certs_received": {
@@ -6987,10 +7093,7 @@
         "PhilippeGruau": 1697338550,
         "MichelLeMer": 1737013869,
         "SaverioStragapede": 1736110403,
-        "Lavoixdesquatrevents": 1696023088,
-        "ElodiePichereau": 1696366315,
         "XavierALBERT": 1701456776,
-        "boyeshua": 1693810952,
         "JeremyBemon": 1736664889,
         "Alain-Plantes": 1698265477,
         "Atharreau": 1733793096,
@@ -7042,7 +7145,7 @@
     "Brunopaquerette": {
       "index": 8581,
       "owner_key": "2X8Py1wjRn19uYBmhtzNuArNJGzYBYbRtVkK1pMMNPrT",
-      "balance": 460422,
+      "balance": 494108,
       "membership_expire_on": 1716924866,
       "next_cert_issuable_on": 1660654077,
       "certs_received": {
@@ -7056,7 +7159,7 @@
     "Patidoux": {
       "index": 11285,
       "owner_key": "2XB6c6y9A23jyH8fhwdgcmioH4u7YjdsYj1URAGfrksE",
-      "balance": 237624,
+      "balance": 277310,
       "membership_expire_on": 1702493494,
       "next_cert_issuable_on": 1679558877,
       "certs_received": {
@@ -7073,7 +7176,7 @@
     "ced": {
       "index": 8598,
       "owner_key": "2XPFXVsMtLuFveksE8xAcKcdSxchtMQikFcXrmVrwXjE",
-      "balance": 463521,
+      "balance": 503207,
       "membership_expire_on": 1717698207,
       "next_cert_issuable_on": 1668861600,
       "certs_received": {
@@ -7089,7 +7192,7 @@
     "Andrelebourhis": {
       "index": 6605,
       "owner_key": "2XRCEqa3Qtxf9gHQaPdxRgc8zH4prycSgdUj1sowgzAH",
-      "balance": 471875,
+      "balance": 511561,
       "membership_expire_on": 1700167230,
       "next_cert_issuable_on": 1690772308,
       "certs_received": {
@@ -7113,9 +7216,9 @@
     "Toutvabien": {
       "index": 12019,
       "owner_key": "2Xa3n1F6ZLYNhsA5Mnr4NBN2CBwnPQPepVBdJpmqUaGE",
-      "balance": 174120,
+      "balance": 213806,
       "membership_expire_on": 1710099052,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693910218,
       "certs_received": {
         "NopamasYC": 1741808543,
         "Malene": 1741769465,
@@ -7128,7 +7231,7 @@
     "AlainDebande": {
       "index": 4300,
       "owner_key": "2XdTm8yivKgJTjNchMQPDTqns1KReqvxHtWBXuMXBszU",
-      "balance": 900835,
+      "balance": 940521,
       "membership_expire_on": 1724279278,
       "next_cert_issuable_on": 1671078054,
       "certs_received": {
@@ -7142,7 +7245,7 @@
     "Lilou19": {
       "index": 7883,
       "owner_key": "2XhPzcm8R2bsWyy79jy8C6qpa3s47sw9UmVpwM8zsm89",
-      "balance": 799927,
+      "balance": 839613,
       "membership_expire_on": 1710375095,
       "next_cert_issuable_on": 1667475821,
       "certs_received": {
@@ -7161,14 +7264,13 @@
       "next_cert_issuable_on": 1681026418,
       "certs_received": {
         "LeBrice": 1739486856,
-        "SKOSA": 1743278032,
-        "mat14": 1695772745
+        "SKOSA": 1743278032
       }
     },
     "Jeremyy": {
       "index": 10543,
       "owner_key": "2Xmkh71dmjK44yUTpnLWzHDz9bSKHWHkXx1zEdSoJpD8",
-      "balance": 294387,
+      "balance": 334073,
       "membership_expire_on": 1701101556,
       "next_cert_issuable_on": 1676787855,
       "certs_received": {
@@ -7184,7 +7286,7 @@
     "ChristianSteCroix": {
       "index": 2218,
       "owner_key": "2Xrt8JcuTeSDXmXbDrA3ueE1DPBLNVc3B1fitbZVkUJ2",
-      "balance": 942428,
+      "balance": 893214,
       "membership_expire_on": 1718226453,
       "next_cert_issuable_on": 1656304775,
       "certs_received": {
@@ -7208,18 +7310,14 @@
     "JMF": {
       "index": 5705,
       "owner_key": "2XvhhAi9xPW5Pf25DqM1uxVd1SR25cN21HjmaKq1J4Jc",
-      "balance": 1096723,
+      "balance": 1136409,
       "membership_expire_on": 1721349096,
-      "next_cert_issuable_on": 1687911042,
+      "next_cert_issuable_on": 1695220839,
       "certs_received": {
-        "absalon2": 1695174544,
-        "Sev": 1695358178,
-        "licorne": 1695094935,
         "CatherineMontpellier": 1755843089,
         "Annery": 1721778170,
         "ChristineMontpellier": 1751969637,
         "DavidMontpellier": 1752173782,
-        "Esme34": 1695410063,
         "Barbara7": 1752218449,
         "MFF": 1743316178,
         "Hdsaf": 1751710876
@@ -7235,24 +7333,24 @@
         "Libertiste": 1733084847,
         "Daansko": 1719389448,
         "Caroleluciole": 1697693946,
-        "Cat": 1705873293,
-        "Leana": 1695067379,
-        "Oce": 1695067146
+        "Cat": 1705873293
       }
     },
     "LeDemineur21": {
       "index": 1498,
       "owner_key": "2Y6zMeSbKHoZDwoFYuFVn3WAUBTskEmycAKmkwZJ22f2",
-      "balance": 1382102,
+      "balance": 1382788,
       "membership_expire_on": 1716776082,
-      "next_cert_issuable_on": 1688186205,
+      "next_cert_issuable_on": 1695038145,
       "certs_received": {
         "Crystal": 1748445518,
         "DomRomy20": 1748647542,
         "Elorac": 1721435297,
+        "MicheleSauterey": 1758086301,
         "CaroJans": 1712960322,
         "FranzFFBO": 1721705393,
         "Sanashitaka": 1750654551,
+        "MaugeyRegis": 1758877981,
         "Patrick21": 1742324555,
         "FabriceSeguin": 1726768466,
         "Naxaia13": 1716610310,
@@ -7292,12 +7390,13 @@
     "BlandineGABE": {
       "index": 5171,
       "owner_key": "2YEXoAPYi1sFNzAY7hUKRrGiTbVg5ZQD32VR4HhGiVKG",
-      "balance": 1146281,
+      "balance": 1186067,
       "membership_expire_on": 1711037033,
-      "next_cert_issuable_on": 1681826494,
+      "next_cert_issuable_on": 1695517654,
       "certs_received": {
-        "Crystal": 1698882858,
+        "Crystal": 1757668930,
         "Ibnesa": 1742529734,
+        "Annelabelge": 1759539765,
         "Mhjo": 1743236329,
         "Sylmon": 1742664542,
         "BisQI": 1712621624,
@@ -7307,8 +7406,8 @@
     "FafannyTalbot": {
       "index": 9706,
       "owner_key": "2YFoX9Ng6xEHXpkpgKcnY4gG7uYDF18JJLxvxNKbgMHZ",
-      "balance": 358350,
-      "membership_expire_on": 1695135822,
+      "balance": 378642,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678023670,
       "certs_received": {
         "DitchB": 1727383681,
@@ -7328,13 +7427,14 @@
     "pierreM": {
       "index": 5146,
       "owner_key": "2YJVagcYJKmrp2CuzAzb9FUaQiDj1PXDPzZ9TPH8MAVQ",
-      "balance": 836366,
+      "balance": 861052,
       "membership_expire_on": 1711627671,
       "next_cert_issuable_on": 1653565237,
       "certs_received": {
         "seb": 1697493890,
         "Ingriddevendee": 1702697036,
         "Amelia": 1700543803,
+        "Sylmon": 1757464012,
         "llecoeur": 1698384574,
         "Cindy": 1710307525
       }
@@ -7342,7 +7442,7 @@
     "WintgensJoseph": {
       "index": 6714,
       "owner_key": "2YJgu7C1HDVJrLpFFyBguARTifP3tZ4MxAkYzv457EiB",
-      "balance": 616828,
+      "balance": 656514,
       "membership_expire_on": 1702328409,
       "next_cert_issuable_on": 1690111838,
       "certs_received": {
@@ -7363,7 +7463,7 @@
     "Branca": {
       "index": 12730,
       "owner_key": "2YQJnREu3FkJKiokt5CRfK2ZVQJNazfqQoepYevhTNVY",
-      "balance": 323800,
+      "balance": 113706,
       "membership_expire_on": 1716405633,
       "next_cert_issuable_on": 1685531137,
       "certs_received": {
@@ -7442,7 +7542,7 @@
     "Adorable": {
       "index": 10294,
       "owner_key": "2YxKBMezeCB7gzYJTFJ7QLgtZ5YT48Awem3eaQqm4CoE",
-      "balance": 311754,
+      "balance": 351440,
       "membership_expire_on": 1699405098,
       "next_cert_issuable_on": 1689307141,
       "certs_received": {
@@ -7456,7 +7556,7 @@
     "Vanessa": {
       "index": 7203,
       "owner_key": "2YzNRG7bQW9rbT7UX1Qu5R5AHWH9f9dC7EaHjp1BFf1G",
-      "balance": 237816,
+      "balance": 277502,
       "membership_expire_on": 1702769356,
       "next_cert_issuable_on": 1671441334,
       "certs_received": {
@@ -7483,7 +7583,7 @@
     "VictoireJune": {
       "index": 8917,
       "owner_key": "2Z2Uuut9Vf1Ru8iav8yxpDZD5u5ohQpkdapdXP78ZcXC",
-      "balance": 325953,
+      "balance": 315639,
       "membership_expire_on": 1715816907,
       "next_cert_issuable_on": 1674910017,
       "certs_received": {
@@ -7520,13 +7620,11 @@
     "GenevLeb": {
       "index": 2839,
       "owner_key": "2Z62pzcZNxoqhJZNG3fMpaEhqGJqYJ2uavbitbpQN2eE",
-      "balance": 1231525,
+      "balance": 1271211,
       "membership_expire_on": 1721501699,
       "next_cert_issuable_on": 1690082875,
       "certs_received": {
         "ClaireBrune": 1748893825,
-        "AlainLebrun": 1696539124,
-        "MichelLeMer": 1696407233,
         "EdithChevreuil": 1749276529,
         "Pascaloo35": 1720165088,
         "MariPotter": 1703396258,
@@ -7538,14 +7636,13 @@
         "Peesse": 1717631499,
         "EliseNantes": 1699471662,
         "Anne_Marquer": 1697270080,
-        "cass1": 1698133075,
-        "DominiqueRoudiere": 1696627282
+        "cass1": 1698133075
       }
     },
     "belcarme": {
       "index": 11948,
       "owner_key": "2ZHnA9whAUSUDkneirvGhRAUhooYfVC8YrMvbEqER6mg",
-      "balance": 10148,
+      "balance": 4014,
       "membership_expire_on": 1708733589,
       "next_cert_issuable_on": 1684014065,
       "certs_received": {
@@ -7556,6 +7653,7 @@
         "FerFeliz": 1741660149,
         "Isabesencial": 1746699860,
         "Anaagua": 1741667758,
+        "Oscarsakura": 1757053767,
         "ViudasDasTerras": 1741692033
       }
     },
@@ -7570,7 +7668,7 @@
     "valerie85": {
       "index": 6455,
       "owner_key": "2Zc3eh5QFcCoxTy64HcJbc4ENMuvey92wsJLNFgkXJNJ",
-      "balance": 611904,
+      "balance": 651590,
       "membership_expire_on": 1709557314,
       "next_cert_issuable_on": 1651389046,
       "certs_received": {
@@ -7587,7 +7685,7 @@
     "ClaudetteBourgogne": {
       "index": 8804,
       "owner_key": "2Zh5wbbZjzA9WnkcRjjp65uZZ5Ga9s7Y2iy9Rv8jM5Gz",
-      "balance": 435307,
+      "balance": 467493,
       "membership_expire_on": 1717444963,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -7645,8 +7743,8 @@
     "Guerinwiotte": {
       "index": 9724,
       "owner_key": "2ZtWK7LVjWCzuNR28WsqU7KRxSgAQQNMsPiNWCE6hx7q",
-      "balance": 366091,
-      "membership_expire_on": 1695128089,
+      "balance": 386383,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1677135454,
       "certs_received": {
         "Lucas351": 1727584524,
@@ -7660,7 +7758,7 @@
     "JavierReiki": {
       "index": 11694,
       "owner_key": "2ZvQAjggTZ29p1vP63gtL7JTdX8LGJgpX4Pd64X4eUp6",
-      "balance": 189095,
+      "balance": 228781,
       "membership_expire_on": 1708455004,
       "next_cert_issuable_on": 1686587201,
       "certs_received": {
@@ -7684,8 +7782,8 @@
     "dnoelle": {
       "index": 6422,
       "owner_key": "2a2UkjksghYihL6G4kBaNJJPoLFBckHPLGbc1PTG8kiZ",
-      "balance": 655669,
-      "membership_expire_on": 1695122185,
+      "balance": 675961,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681307198,
       "certs_received": {
         "OhdeLali": 1702569364,
@@ -7717,15 +7815,14 @@
     "Stessy": {
       "index": 2555,
       "owner_key": "2a6nm2PuuMrhqiC6UPLK1q6ZnvzW7C1T9g2qzCXFdmET",
-      "balance": 2172638,
+      "balance": 2212324,
       "membership_expire_on": 1706183865,
       "next_cert_issuable_on": 1674698748,
       "certs_received": {
         "Mollie": 1721099180,
         "Christian30": 1710041047,
         "yanis07": 1725929517,
-        "MoulinMuriel": 1695349286,
-        "ChristopheRobine": 1694912375,
+        "ChristopheRobine": 1757474273,
         "lilithdu34": 1738029387,
         "CYRIAK07": 1722661004,
         "Damery": 1709877917
@@ -7734,7 +7831,7 @@
     "Val48": {
       "index": 8489,
       "owner_key": "2aAnQYmZ7LHUopBjj32NZzjaDnQnkLdMMQT2yMAQM8VV",
-      "balance": 480328,
+      "balance": 517014,
       "membership_expire_on": 1717846310,
       "next_cert_issuable_on": 1659844847,
       "certs_received": {
@@ -7750,7 +7847,7 @@
     "Flohubert": {
       "index": 12444,
       "owner_key": "2aEXbTUYniQc78QUTt72TpA3ZQT81mEJdR1PiDbuQXpN",
-      "balance": 136704,
+      "balance": 176390,
       "membership_expire_on": 1712957559,
       "next_cert_issuable_on": 1689206785,
       "certs_received": {
@@ -7766,7 +7863,7 @@
     "Eleonor": {
       "index": 11009,
       "owner_key": "2aLB3p6T4A3QjMywptt5uTRwRh7XnNE7n7BPgf3dFSGu",
-      "balance": 219745,
+      "balance": 259431,
       "membership_expire_on": 1703185895,
       "next_cert_issuable_on": 1679743218,
       "certs_received": {
@@ -7799,7 +7896,7 @@
     "Tilio": {
       "index": 5408,
       "owner_key": "2aNywGiAbupiZiL7sGSerVyLGGNfLgWPYowRG25nVJv6",
-      "balance": 308822,
+      "balance": 348508,
       "membership_expire_on": 1720697661,
       "next_cert_issuable_on": 1656417762,
       "certs_received": {
@@ -7818,7 +7915,7 @@
     "Manoocha": {
       "index": 2338,
       "owner_key": "2aP5Yj7TqcqB1QfcfmRr8bPGLmeNkLSwF1YgHNyYsYn6",
-      "balance": 426006,
+      "balance": 465692,
       "membership_expire_on": 1722701646,
       "next_cert_issuable_on": 1642418386,
       "certs_received": {
@@ -7858,16 +7955,17 @@
     "FranZia": {
       "index": 10938,
       "owner_key": "2agzUFhxHdHBFbRQ7YvPfbcvP1PWPU4ZRWQh3dCkS3n2",
-      "balance": 164236,
-      "membership_expire_on": 1700360938,
-      "next_cert_issuable_on": 1680883521,
+      "balance": 203922,
+      "membership_expire_on": 1727917078,
+      "next_cert_issuable_on": 1695311479,
       "certs_received": {
         "LilouL": 1733371572,
         "Vajrabro": 1733368023,
         "Loup": 1734402157,
         "CristalCeleste": 1733454031,
         "Cath": 1734147891,
-        "Shamphalai": 1739039632
+        "Shamphalai": 1739039632,
+        "Vibratoire": 1758340320
       }
     },
     "Sophie77": {
@@ -7901,7 +7999,7 @@
     "Boudou": {
       "index": 11016,
       "owner_key": "2b2HmobUXamac433JdRXqpQt6ffPC5hhhmVof2y9NzHu",
-      "balance": 284099,
+      "balance": 323785,
       "membership_expire_on": 1703182480,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -7915,7 +8013,7 @@
     "Willow": {
       "index": 7475,
       "owner_key": "2b35Z1jS1W8nUTTZcvX6WFUdNjMcPLcCMV6iB6pwdcys",
-      "balance": 543603,
+      "balance": 583289,
       "membership_expire_on": 1709365972,
       "next_cert_issuable_on": 1677904500,
       "certs_received": {
@@ -7933,14 +8031,15 @@
     "Carine888": {
       "index": 7737,
       "owner_key": "2b8NAAQiuH1CKYcohmEGgWMCkv9xA6Fa2asprHnyUvN1",
-      "balance": 453570,
+      "balance": 522256,
       "membership_expire_on": 1708221887,
-      "next_cert_issuable_on": 1687322853,
+      "next_cert_issuable_on": 1695266507,
       "certs_received": {
         "jaenyph": 1713391898,
         "PhilippeLafontaine": 1740599404,
         "morimontj": 1743045397,
         "MarieBertheRanwet": 1716787239,
+        "DelphineG": 1757346832,
         "phil3455": 1716087297,
         "AnneLadragonitta": 1713410802,
         "CorinneBaro": 1720677298,
@@ -7955,21 +8054,22 @@
     "Indiana": {
       "index": 12760,
       "owner_key": "2b8de6ANHowm8Qydv9PmBGfD4NS8cZY9ouRDdAScGFhp",
-      "balance": 67760,
+      "balance": 127446,
       "membership_expire_on": 1716030891,
-      "next_cert_issuable_on": 1685608295,
+      "next_cert_issuable_on": 1695177497,
       "certs_received": {
         "ROSITA71": 1747032409,
         "bardone01": 1747616803,
         "Linya": 1747587677,
         "KatalineMOREL": 1747703762,
-        "Wendy97418": 1747665493
+        "Wendy97418": 1747665493,
+        "Ngilozi": 1759168182
       }
     },
     "Sophie-Ema": {
       "index": 12748,
       "owner_key": "2bXAyHwAM1KHtyRgxqgPSAxE2wGfCedRrzZ3okMUDs37",
-      "balance": 100596,
+      "balance": 140282,
       "membership_expire_on": 1716218578,
       "next_cert_issuable_on": 1687850173,
       "certs_received": {
@@ -7994,7 +8094,7 @@
     "Arianehiver": {
       "index": 695,
       "owner_key": "2bzHq8x4zwavoLEsRZKJE9xZMEGtsznjokhxProey5j7",
-      "balance": 1906788,
+      "balance": 1946474,
       "membership_expire_on": 1706536908,
       "next_cert_issuable_on": 1681958295,
       "certs_received": {
@@ -8010,7 +8110,7 @@
     "Lunaloca": {
       "index": 2073,
       "owner_key": "2bzmHFwTrMHcpMtyiwy2kSfntPkUgtNHV6e5My1A43Qx",
-      "balance": 1082436,
+      "balance": 1122122,
       "membership_expire_on": 1700144608,
       "next_cert_issuable_on": 1668683157,
       "certs_received": {
@@ -8021,7 +8121,8 @@
         "NicolasCanzian": 1732005859,
         "manidou": 1733072241,
         "ofontes": 1731997657,
-        "Peps": 1731885185
+        "Peps": 1731885185,
+        "julthor": 1759014854
       }
     },
     "Juvador": {
@@ -8035,7 +8136,7 @@
     "Josephine61": {
       "index": 8930,
       "owner_key": "2c36QyqfoyF3epGtzDGaEcxn8NBvztzN43SZTsy9Hkbw",
-      "balance": 538415,
+      "balance": 728281,
       "membership_expire_on": 1717089942,
       "next_cert_issuable_on": 1677504917,
       "certs_received": {
@@ -8053,9 +8154,9 @@
     "poissondanslo": {
       "index": 9874,
       "owner_key": "2c3Pca1sEw2K7ujNJPfnWqoLVbVxnbVJMVYKAq5T8T77",
-      "balance": 232842,
+      "balance": 250528,
       "membership_expire_on": 1723587802,
-      "next_cert_issuable_on": 1692102502,
+      "next_cert_issuable_on": 1693824513,
       "certs_received": {
         "M-France": 1742880637,
         "CatherineMonastirieff": 1728365749,
@@ -8069,7 +8170,7 @@
     "Zoul": {
       "index": 4540,
       "owner_key": "2c8GBMDYgE3A2UvyaXj4u9DdYz5GoaiPqVouzFk9GgfV",
-      "balance": 429973,
+      "balance": 469659,
       "membership_expire_on": 1698162726,
       "next_cert_issuable_on": 1691138152,
       "certs_received": {
@@ -8090,6 +8191,7 @@
         "Myriam97410": 1714569951,
         "EmiAp974": 1719670665,
         "lilieboyer974": 1729379560,
+        "PuspaPrem974": 1755000177,
         "Wendy97418": 1738435964,
         "Doina974": 1715119599
       }
@@ -8097,7 +8199,7 @@
     "JuanPan": {
       "index": 9556,
       "owner_key": "2cHDyNTSD8HJASEFboVSazqbpaVuHaTVNK3jyXC3TwrU",
-      "balance": 348895,
+      "balance": 355895,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1678540224,
       "certs_received": {
@@ -8114,7 +8216,7 @@
     "PatPlume": {
       "index": 12563,
       "owner_key": "2cJ2PBqFmuFjuR5uHVGoFXTAs561gYeCJebLrRzZLURs",
-      "balance": 128888,
+      "balance": 168574,
       "membership_expire_on": 1714859096,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -8128,7 +8230,7 @@
     "kaimdilekeno": {
       "index": 13086,
       "owner_key": "2cJdvZ7m57LETRGiFMVhRv6fuDK7x6z9GCeU8xwxZ7iD",
-      "balance": 61808,
+      "balance": 149694,
       "membership_expire_on": 1719607385,
       "next_cert_issuable_on": 1689215321,
       "certs_received": {
@@ -8143,9 +8245,9 @@
     "Chantal": {
       "index": 5150,
       "owner_key": "2cLtFAmN9eZ7PcHR7QENapVuMYiZpe6DxE8HC37nXcqf",
-      "balance": 293596,
+      "balance": 240780,
       "membership_expire_on": 1706305184,
-      "next_cert_issuable_on": 1691574700,
+      "next_cert_issuable_on": 1696733667,
       "certs_received": {
         "Flocon": 1754413332,
         "Mattice": 1711076088,
@@ -8161,7 +8263,8 @@
         "Carolina73": 1709951451,
         "Tell": 1745978689,
         "Lotus75": 1700419456,
-        "Anamaya": 1696366315,
+        "Anamaya": 1757202104,
+        "Xaby60": 1758929546,
         "JohnBzz": 1725602961,
         "Johana73": 1715922411,
         "1000pat": 1709090213,
@@ -8203,7 +8306,7 @@
     "lena_bhhh": {
       "index": 11146,
       "owner_key": "2cUBEb4S7PfYEceU8cGqrrgZaMxdcNG2AP6FBRURLRpE",
-      "balance": 158983,
+      "balance": 131394,
       "membership_expire_on": 1703525607,
       "next_cert_issuable_on": 1678516796,
       "certs_received": {
@@ -8217,7 +8320,7 @@
     "nio": {
       "index": 11396,
       "owner_key": "2cUab4Qy651CgXe14hLhV58gwgLAhEjAjuSH9hYXxDBK",
-      "balance": 229093,
+      "balance": 268779,
       "membership_expire_on": 1706471189,
       "next_cert_issuable_on": 1693279550,
       "certs_received": {
@@ -8226,13 +8329,14 @@
         "Gioelina": 1738120007,
         "ChantAloha": 1738120554,
         "veronique": 1738117316,
+        "Merlinor": 1757956973,
         "Phenix": 1738119220
       }
     },
     "PACALOU": {
       "index": 11342,
       "owner_key": "2cVYneHoepEdoEUBeuH8HRYYY5k3FqvUw3psvR1n17yS",
-      "balance": 234188,
+      "balance": 273874,
       "membership_expire_on": 1705102263,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -8246,7 +8350,7 @@
     "BenoitDerudder": {
       "index": 11855,
       "owner_key": "2cWMgKYRYzYCd5eb6uCga5woktcPEuApwTZDyd6CkYkk",
-      "balance": 102677,
+      "balance": 142363,
       "membership_expire_on": 1706055866,
       "next_cert_issuable_on": 1691578862,
       "certs_received": {
@@ -8260,16 +8364,18 @@
     "Framboisefraise": {
       "index": 13390,
       "owner_key": "2cfbKut3EELVDZ8JtDh2dSE42VkGbHsg1bKpzZD1pPs8",
-      "balance": 10884,
+      "balance": 26170,
       "membership_expire_on": 1723763744,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696465410,
       "certs_received": {
         "MarcelleA": 1755452198,
         "FernandP": 1755452493,
         "MarieMas": 1755479179,
         "MarieF68": 1755445692,
         "Brigitte45": 1756513866,
-        "MPaule": 1755466655
+        "cricri": 1759031732,
+        "MPaule": 1755466655,
+        "Domi-Merlinou": 1759271298
       }
     },
     "JClaude": {
@@ -8294,7 +8400,7 @@
     "AliceBourdon": {
       "index": 11440,
       "owner_key": "2coWrzggpYSUPV1qw8u7TEFdMZeHACsJuRgXrnFEtiVz",
-      "balance": 225916,
+      "balance": 265602,
       "membership_expire_on": 1706457724,
       "next_cert_issuable_on": 1677485814,
       "certs_received": {
@@ -8309,8 +8415,8 @@
     "seb": {
       "index": 4989,
       "owner_key": "2cx45ESjkT444Jz6dQXgatUguMEirNzRSpnZNJschyGa",
-      "balance": 485651,
-      "membership_expire_on": 0,
+      "balance": 521065,
+      "membership_expire_on": 1725455847,
       "next_cert_issuable_on": 1654578163,
       "certs_received": {
         "Zoezion": 1697613460,
@@ -8321,15 +8427,15 @@
         "Muktananda": 1717610844,
         "llecoeur": 1699472503,
         "Milinette16": 1701470357,
-        "CelineDeNosCampagnes": 1698184194
+        "CelineDeNosCampagnes": 1759337053
       }
     },
     "MignoletEmmanuel": {
       "index": 13389,
       "owner_key": "2d5WUmgZXHRwHPEQgbgxwXrdFLAXpkYvryNMBMeNYroD",
-      "balance": 28984,
+      "balance": 66670,
       "membership_expire_on": 1723596862,
-      "next_cert_issuable_on": 1693415731,
+      "next_cert_issuable_on": 1695916896,
       "certs_received": {
         "GastonL": 1755469477,
         "Jojo83": 1755829697,
@@ -8348,6 +8454,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "EthanCh": {
+      "index": 13635,
+      "owner_key": "2d8kWNsXEH14rXRi27fnomc9SQYmhy967dyKd2v1cnqJ",
+      "balance": 22248,
+      "membership_expire_on": 1723137478,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Framboisefraise": 1758522331,
+        "MarcelleA": 1758424195,
+        "Elinette": 1758562023,
+        "Dom67": 1758428961,
+        "SarahLa": 1758431369
+      }
+    },
     "MBadria": {
       "index": 3844,
       "owner_key": "2d9SVf1gPdTqezNzNSGScWd35L2s4uEBtby27aAmE7DW",
@@ -8359,7 +8479,7 @@
     "Lorena": {
       "index": 7879,
       "owner_key": "2dEXbJV7LnaGNPBpHLSQweSerCe9awBoqobptGosve6e",
-      "balance": 473090,
+      "balance": 512776,
       "membership_expire_on": 1711676953,
       "next_cert_issuable_on": 1653956606,
       "certs_received": {
@@ -8378,7 +8498,7 @@
     "SebastienChristelle": {
       "index": 8215,
       "owner_key": "2dFbs5oMeRRpyDhHQitT8cYChxfQpnPdfB2L5jZHX6CK",
-      "balance": 562848,
+      "balance": 602534,
       "membership_expire_on": 1711757951,
       "next_cert_issuable_on": 1665741985,
       "certs_received": {
@@ -8392,7 +8512,7 @@
     "oceatoon": {
       "index": 625,
       "owner_key": "2dGRwgjW3AyKezzyxGJhW5kQicpr5PgeQWJ95Baph9Ne",
-      "balance": 1884673,
+      "balance": 1924359,
       "membership_expire_on": 1714583249,
       "next_cert_issuable_on": 1676264883,
       "certs_received": {
@@ -8400,8 +8520,7 @@
         "Phil7": 1744951337,
         "NadineFornet": 1706808985,
         "maiadereva": 1708056843,
-        "Sybille": 1744416765,
-        "Savigabrielle974": 1693803007
+        "Sybille": 1744416765
       }
     },
     "AnneSo26": {
@@ -8429,9 +8548,9 @@
     "Lionel_Dechilly": {
       "index": 6845,
       "owner_key": "2dTsmWQ3K2B8om36AhvgMVXfuEuDW4GmzrN6oK93srHm",
-      "balance": 362937,
+      "balance": 392623,
       "membership_expire_on": 1705107578,
-      "next_cert_issuable_on": 1692198911,
+      "next_cert_issuable_on": 1695688010,
       "certs_received": {
         "Harmonie13": 1713506439,
         "Lilibeth79": 1754078834,
@@ -8485,7 +8604,7 @@
     "Stasia": {
       "index": 11191,
       "owner_key": "2duWpQM7ckhK8yiG3RDqeE1JNR81bS67hdWifhnih6XW",
-      "balance": 259096,
+      "balance": 298782,
       "membership_expire_on": 1705024026,
       "next_cert_issuable_on": 1690032666,
       "certs_received": {
@@ -8503,7 +8622,7 @@
     "Soline864": {
       "index": 13433,
       "owner_key": "2e1VuTgUdcVCNQnq6oGVkFQxTmH4DM36W3AmGdRsD5QS",
-      "balance": 43576,
+      "balance": 83262,
       "membership_expire_on": 1720489447,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -8531,7 +8650,7 @@
     "Didabelle": {
       "index": 11630,
       "owner_key": "2eB8Uy41Boyf4oPzWkXdVrPepSgE8N9DybAHv8pg4zvr",
-      "balance": 155390,
+      "balance": 195076,
       "membership_expire_on": 1707234335,
       "next_cert_issuable_on": 1689728176,
       "certs_received": {
@@ -8546,7 +8665,7 @@
     "joyce": {
       "index": 12550,
       "owner_key": "2eD33ZrnqKu1Sd5WgovVq3A3uXuBLqxauiu7SrUJ1AqW",
-      "balance": 126524,
+      "balance": 166210,
       "membership_expire_on": 1714854370,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -8568,7 +8687,7 @@
     "Annelatarzane": {
       "index": 11309,
       "owner_key": "2eYdyRGaz2TVndnoFb1jUbzzCQDy6RrsCWRftxNL6mrc",
-      "balance": 375565,
+      "balance": 415251,
       "membership_expire_on": 1705857028,
       "next_cert_issuable_on": 1681971709,
       "certs_received": {
@@ -8595,7 +8714,7 @@
     "jma": {
       "index": 11953,
       "owner_key": "2etwM4mGCk7v91sXP9Y861vavT2U8zciX8bFeTjGqMeV",
-      "balance": 207015,
+      "balance": 246701,
       "membership_expire_on": 1709184675,
       "next_cert_issuable_on": 1681457938,
       "certs_received": {
@@ -8625,7 +8744,7 @@
     "Bruno43": {
       "index": 12363,
       "owner_key": "2f7crp76RrvT7kZofyVaCGTuwuvTnrXVyNp1sFrv9uv7",
-      "balance": 147316,
+      "balance": 187002,
       "membership_expire_on": 1712706339,
       "next_cert_issuable_on": 1685938053,
       "certs_received": {
@@ -8640,8 +8759,8 @@
     "Belledenuit": {
       "index": 10186,
       "owner_key": "2fBbShxjHBBY85p7Pmn5rCrmrceWSfXbFQQYYUDgv9pJ",
-      "balance": 340226,
-      "membership_expire_on": 1696199169,
+      "balance": 373444,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Hades": 1727762319,
@@ -8664,9 +8783,9 @@
     "Sheiladanzas": {
       "index": 11297,
       "owner_key": "2fDSbvCNTwmuB2iBvSM6dyy5RvY4jaHiiy9AegPbaSbM",
-      "balance": 325224,
+      "balance": 375810,
       "membership_expire_on": 1705860913,
-      "next_cert_issuable_on": 1688373199,
+      "next_cert_issuable_on": 1696236511,
       "certs_received": {
         "Cholo": 1737418513,
         "Ambar": 1751610830,
@@ -8685,40 +8804,32 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1635238374,
       "certs_received": {
-        "1000i100": 1695349853,
-        "Niamor": 1694841392,
         "FrancoisW": 1698261768,
-        "KumaNinja": 1694828418,
         "Genfi": 1696904126,
-        "Cat11": 1696541235,
-        "marienarjoux": 1696954719,
-        "Demosthene": 1694822661,
-        "Ginger": 1694882754
+        "marienarjoux": 1696954719
       }
     },
     "LiseBourdelle": {
       "index": 3059,
       "owner_key": "2fNC1QzmCB9DnpvCJ2F7Txs9fs5bsAcqGhwDjMk1BRY3",
-      "balance": 626017,
+      "balance": 665703,
       "membership_expire_on": 1698407190,
       "next_cert_issuable_on": 1693231466,
       "certs_received": {
-        "LeoMC": 1696026239,
         "YolandeSinizergues": 1704753212,
         "LauQui": 1751320627,
         "Brigitte09": 1741231399,
         "Danahe": 1697861239,
         "OlivierRed": 1741070349,
         "Natheo": 1751614509,
-        "DanJoue": 1695935877,
-        "LOIC3322": 1695950440,
+        "DanJoue": 1758851637,
         "valoche": 1750390490
       }
     },
     "Bioguigui": {
       "index": 11340,
       "owner_key": "2fNGcuwrJYriuNXRxKMEbWXuJjgienhNgP3f3nTdSyek",
-      "balance": 229594,
+      "balance": 269280,
       "membership_expire_on": 1705959773,
       "next_cert_issuable_on": 1678947168,
       "certs_received": {
@@ -8744,7 +8855,7 @@
     "Julien": {
       "index": 1088,
       "owner_key": "2fUxFmuvPbFhgJ8pzBGyKER7R2Kt6NRq4qHyJ5B8bHq8",
-      "balance": 1326221,
+      "balance": 1365907,
       "membership_expire_on": 1712252863,
       "next_cert_issuable_on": 1665584216,
       "certs_received": {
@@ -8779,35 +8890,29 @@
     "Aude49": {
       "index": 353,
       "owner_key": "2fpVjWyaCZDawMTYbe229PaK3fEXPFggfQwvHa6HSC9d",
-      "balance": 851148,
+      "balance": 890834,
       "membership_expire_on": 1705956899,
-      "next_cert_issuable_on": 1690856559,
+      "next_cert_issuable_on": 1695446573,
       "certs_received": {
         "MPO": 1730316425,
         "Bcabon": 1710192817,
         "auroremengual": 1733177421,
         "VirginieGautier": 1713328198,
-        "Princesse": 1694133596,
-        "Gregory": 1693980055,
         "AlainLebrun": 1731311218,
         "LuciaKorosiova": 1730457542,
         "Laula": 1698265748,
         "Stab": 1697680837,
         "MichelLeMer": 1731550468,
         "MariPotter": 1731317681,
-        "Lavoixdesquatrevents": 1696023088,
-        "ElodiePichereau": 1694817704,
         "lila": 1718213683,
         "Lydiabloch": 1731550811,
         "aurelie": 1725043281,
         "Helene09": 1718518071,
+        "BielinskiGabrielle": 1758572359,
         "Christal": 1718177171,
         "MartineBlinGarry": 1729036676,
-        "Floalchimistefee": 1693803277,
-        "Nomadanne": 1693984434,
         "AnnickBoubounelle": 1734737838,
         "ninigailla": 1731465689,
-        "sylviepl": 1695058564,
         "Karica": 1735006343,
         "Cath44": 1734909170
       }
@@ -8837,31 +8942,25 @@
     "MarineDR": {
       "index": 5837,
       "owner_key": "2fuZRUE1afWBGLbZ8DCQzHg8euUi8oEW3Cx9XtVhgR81",
-      "balance": 499757,
+      "balance": 550443,
       "membership_expire_on": 1719673729,
-      "next_cert_issuable_on": 1679566110,
+      "next_cert_issuable_on": 1693497086,
       "certs_received": {
-        "Orchideedu10": 1695874811,
         "Jiji": 1709523747,
-        "DelphineDietsch": 1696190720,
         "Martine51": 1726767869,
         "Robin_et_Odile": 1706475151,
-        "Eric": 1694929486,
         "Ded": 1719278886,
         "Sofiachante": 1710304365,
         "CharlineNature": 1731801378,
         "yannlefranco": 1710039383,
         "SicouJess": 1712453751,
         "CecileM": 1725566004,
-        "Brigitte": 1694986367,
-        "Olacelou": 1696314906,
         "CatherineCPo": 1710358004,
         "Calakendi": 1718862757,
         "Luna": 1720129947,
         "Micka": 1718413654,
         "OValReiki": 1720758363,
         "Mmemonica": 1742610158,
-        "Atua": 1695921949,
         "Titine": 1712293393,
         "AlineMARCINKOWSKI": 1709575019,
         "Martienne": 1745725296
@@ -8870,7 +8969,7 @@
     "Ahtohallan": {
       "index": 11880,
       "owner_key": "2fwj9mXP3Q68XNKzcp8MQgnv7kH2BEm7wZxrJsK1iatD",
-      "balance": 189969,
+      "balance": 229655,
       "membership_expire_on": 1706706829,
       "next_cert_issuable_on": 1683860255,
       "certs_received": {
@@ -8897,7 +8996,7 @@
     "FredMonachil": {
       "index": 8944,
       "owner_key": "2fxeiTNZ7JvUXfV3epYAFpN8Nt6EzxJ4jif3D6KUgbjS",
-      "balance": 143643,
+      "balance": 183329,
       "membership_expire_on": 1715891460,
       "next_cert_issuable_on": 1665810567,
       "certs_received": {
@@ -8908,10 +9007,28 @@
         "AsunG1": 1719821308
       }
     },
+    "guille95": {
+      "index": 13646,
+      "owner_key": "2g9XFbFD8NwLX684UYrufy8YD25WEZnm7zqUCCGqGNgi",
+      "balance": 15092,
+      "membership_expire_on": 1725976923,
+      "next_cert_issuable_on": 1695718080,
+      "certs_received": {
+        "ClaraFuerteventura": 1757535281,
+        "Krompo": 1758331215,
+        "Maclockbinum": 1758331215,
+        "Barbabulle73": 1758331215,
+        "Hagakure88": 1758331215,
+        "NagNag": 1758270636,
+        "MinaManar": 1757542901,
+        "Marialu": 1757535281,
+        "BDMan": 1758086301
+      }
+    },
     "Babou": {
       "index": 11656,
       "owner_key": "2g9jREnQcHEUMdY6hdBav4Qug7gRL25B1JYK5kywXt3X",
-      "balance": 209031,
+      "balance": 248717,
       "membership_expire_on": 1707784108,
       "next_cert_issuable_on": 1676806090,
       "certs_received": {
@@ -8933,7 +9050,7 @@
     "Ligea": {
       "index": 11685,
       "owner_key": "2gEa9JPHydgm9bLXrJrjYPo4GJrcoDww1jrS49QWC51y",
-      "balance": 205854,
+      "balance": 245540,
       "membership_expire_on": 1708214605,
       "next_cert_issuable_on": 1677216799,
       "certs_received": {
@@ -8949,9 +9066,9 @@
     "Sev": {
       "index": 1913,
       "owner_key": "2gFWuu79idoY9vt3vPUd3sJZtV25vALMTNRCcYizVpL8",
-      "balance": 1108174,
+      "balance": 1099200,
       "membership_expire_on": 1701991946,
-      "next_cert_issuable_on": 1685424776,
+      "next_cert_issuable_on": 1696402661,
       "certs_received": {
         "PhilippeGua53": 1728887771,
         "GUL40_Fr1": 1713504125,
@@ -8964,7 +9081,6 @@
         "Badiane": 1704575271,
         "Pizzawallas": 1697769219,
         "Perrine971": 1721955012,
-        "dongo0011": 1694571135,
         "AnneAmbles": 1727684941,
         "JuanLu": 1716582118,
         "Florencefleur": 1729222050,
@@ -8973,6 +9089,7 @@
         "lamouette": 1730706068,
         "CorinneCoco": 1724941157,
         "Did-yeah": 1726459033,
+        "Kaya971Wolf": 1757742454,
         "chronophonix": 1710751531,
         "FloP": 1705986450,
         "Damery": 1741358987,
@@ -8982,7 +9099,7 @@
     "Sylvie31": {
       "index": 10709,
       "owner_key": "2gJwXfmseTjdwtnxsVfZq72NwZ2USyoPPTqZ12P4QXo4",
-      "balance": 323338,
+      "balance": 363024,
       "membership_expire_on": 1701638423,
       "next_cert_issuable_on": 1673855538,
       "certs_received": {
@@ -9038,7 +9155,7 @@
     "YannickRoussel": {
       "index": 12943,
       "owner_key": "2gUKS5wwAyFeR5UVLrLLT62WXWKiKWR4qPDzzFrrDHAV",
-      "balance": 78896,
+      "balance": 118582,
       "membership_expire_on": 1718486184,
       "next_cert_issuable_on": 1687588559,
       "certs_received": {
@@ -9052,7 +9169,7 @@
     "chris07": {
       "index": 3356,
       "owner_key": "2gcbJ398fkZaZXQb1iAgZHJxnhYBRKXhs75WF3G3GRdd",
-      "balance": 852933,
+      "balance": 892619,
       "membership_expire_on": 1700391001,
       "next_cert_issuable_on": 1687214575,
       "certs_received": {
@@ -9101,7 +9218,7 @@
     "Jin": {
       "index": 10426,
       "owner_key": "2grui77zVCG7yNbeFfGwvUSgagBB1dAtWn4T1nveHD1D",
-      "balance": 303282,
+      "balance": 342968,
       "membership_expire_on": 1700254626,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -9116,9 +9233,9 @@
     "BANESA": {
       "index": 10708,
       "owner_key": "2h51fLtrS49ZvUgjfw8BkJJELsS9bvczSCncV9b61uBw",
-      "balance": 249788,
-      "membership_expire_on": 1701225654,
-      "next_cert_issuable_on": 1672912998,
+      "balance": 202274,
+      "membership_expire_on": 1727726666,
+      "next_cert_issuable_on": 1696139185,
       "certs_received": {
         "Filomenapaz": 1735939684,
         "Kris_Izaratia": 1733255249,
@@ -9131,7 +9248,7 @@
     "Rachele": {
       "index": 8246,
       "owner_key": "2h9UuPRzSW5zPNQBqxnh9o4s9iCJSD4Dt4d4JthUE9Lw",
-      "balance": 262695,
+      "balance": 262381,
       "membership_expire_on": 1712112194,
       "next_cert_issuable_on": 1680626594,
       "certs_received": {
@@ -9155,7 +9272,7 @@
     "Nounours26": {
       "index": 11323,
       "owner_key": "2hLiXaP4o5LDHaBzyzK2JrU8WAE2n45JBFBBciAEVbHY",
-      "balance": 240447,
+      "balance": 280133,
       "membership_expire_on": 1702513464,
       "next_cert_issuable_on": 1687538786,
       "certs_received": {
@@ -9170,7 +9287,7 @@
     "Minette66": {
       "index": 11726,
       "owner_key": "2hLpRgZrcnw4RtbrdgDkmc7wDMVcEJ2MRNopqdtbdZhx",
-      "balance": 277677,
+      "balance": 317363,
       "membership_expire_on": 1707397386,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -9211,8 +9328,8 @@
     "Zaz12": {
       "index": 9892,
       "owner_key": "2hhT2reiZZp92aGbqBezK4wTaCk8bu9bhGDevPiSD566",
-      "balance": 249044,
-      "membership_expire_on": 1696456872,
+      "balance": 288730,
+      "membership_expire_on": 1726419436,
       "next_cert_issuable_on": 1670812613,
       "certs_received": {
         "Jane": 1729199844,
@@ -9227,7 +9344,7 @@
     "NBes2022": {
       "index": 10277,
       "owner_key": "2hik3miG9UAb8nbxcRQqhqubFr3ZekMg7TeZ1fGiWQaY",
-      "balance": 269097,
+      "balance": 235583,
       "membership_expire_on": 1699629576,
       "next_cert_issuable_on": 1688896047,
       "certs_received": {
@@ -9251,7 +9368,7 @@
     "Jeratik": {
       "index": 655,
       "owner_key": "2hkzJXjz566jeNybxx9xW9kxxi5nzz1nKfVddZRjupf3",
-      "balance": 528865,
+      "balance": 554615,
       "membership_expire_on": 1718760177,
       "next_cert_issuable_on": 1689336011,
       "certs_received": {
@@ -9261,6 +9378,7 @@
         "Cristol-Iquid": 1712726655,
         "Vivakvo": 1724820477,
         "rosajean": 1711222204,
+        "Jobenz": 1756524374,
         "AlfredoRG": 1723581890,
         "Performance": 1727128034,
         "MaEstherG1": 1735677516,
@@ -9278,7 +9396,7 @@
     "Renzo": {
       "index": 12631,
       "owner_key": "2hnwr9AYL8jTyeatFi4dwFBxwqS7SHsoFfkEXhgFn6Nf",
-      "balance": 171648,
+      "balance": 211334,
       "membership_expire_on": 1715356283,
       "next_cert_issuable_on": 1684584338,
       "certs_received": {
@@ -9292,7 +9410,7 @@
     "NickH": {
       "index": 6202,
       "owner_key": "2hqi5GR6cu2kGCaF2cs8F2H7zLLMEuiPYFrCpKBP1DfG",
-      "balance": 678993,
+      "balance": 718679,
       "membership_expire_on": 1696941298,
       "next_cert_issuable_on": 1669819480,
       "certs_received": {
@@ -9309,13 +9427,13 @@
       "owner_key": "2hqmam9oY2py4TMyfX3nWftTNkC66CVY6XoHPPYYM6Ed",
       "balance": 356685,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632983039,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "HeleneVallereau": {
       "index": 8718,
       "owner_key": "2hvjzsQmUZqzZww4oDwLCZFwZZVukEfxo8vcR13LNfTp",
-      "balance": 448819,
+      "balance": 488505,
       "membership_expire_on": 1715676704,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -9329,22 +9447,23 @@
     "Lune": {
       "index": 4933,
       "owner_key": "2hy6Tw5ywT1HB9iqtBh3bMXcTZer2popnVyzhxqbPiSj",
-      "balance": 201988,
+      "balance": 241674,
       "membership_expire_on": 1722813533,
-      "next_cert_issuable_on": 1685783230,
+      "next_cert_issuable_on": 1694238453,
       "certs_received": {
         "nashira": 1740682828,
         "LelievreJulia": 1740733792,
         "Melwin": 1740733792,
         "Magic": 1740733792,
         "Iguana": 1743405915,
-        "Ibratek": 1741552079
+        "Ibratek": 1741552079,
+        "Guerriere8": 1759343849
       }
     },
     "NADINE51": {
       "index": 12245,
       "owner_key": "2i1HwiYdrmkBxSATPjQRgnzrMma54zuMwSEQiai8ujDE",
-      "balance": 194164,
+      "balance": 233850,
       "membership_expire_on": 1711929629,
       "next_cert_issuable_on": 1686644541,
       "certs_received": {
@@ -9385,7 +9504,7 @@
     "MariaOpdenacker": {
       "index": 6178,
       "owner_key": "2iDuaNSfPSQwGTa1ZMGK2uT2MBEmrepmJEkJ3tn2wMro",
-      "balance": 397119,
+      "balance": 436805,
       "membership_expire_on": 1697112441,
       "next_cert_issuable_on": 1640504998,
       "certs_received": {
@@ -9413,8 +9532,8 @@
     "Alexcap77": {
       "index": 9234,
       "owner_key": "2iLmRJ4PEqvfsnVb2Peq7sp65GWJG2xmv6kLYrV81hdJ",
-      "balance": 353157,
-      "membership_expire_on": 0,
+      "balance": 369327,
+      "membership_expire_on": 1726959825,
       "next_cert_issuable_on": 1663688599,
       "certs_received": {
         "Michele1200": 1723654377,
@@ -9428,12 +9547,11 @@
     "Flocon": {
       "index": 5707,
       "owner_key": "2iS6QgnoANufVfRcuwffJevc3xQ16nPjvbZL1BFFsbTM",
-      "balance": 267680,
+      "balance": 290566,
       "membership_expire_on": 1715443083,
-      "next_cert_issuable_on": 1693236747,
+      "next_cert_issuable_on": 1695868421,
       "certs_received": {
         "Chantal": 1754617900,
-        "Riri": 1694471558,
         "laulotte": 1702174046,
         "belledemai": 1700001743,
         "Namea73": 1711572179,
@@ -9441,6 +9559,7 @@
         "Ju73": 1718901930,
         "veronaturo73": 1707603459,
         "Jjacq07": 1729272943,
+        "Pizzawallas": 1757890084,
         "Lotus75": 1700419456,
         "Anamaya": 1756230913,
         "touki73": 1709498882,
@@ -9465,19 +9584,19 @@
     "Katou": {
       "index": 5801,
       "owner_key": "2iU8ABEDCdLRTFo4qYBpaF6KSpHakTomNTciKhtN652t",
-      "balance": 344550,
+      "balance": 384236,
       "membership_expire_on": 1724958685,
-      "next_cert_issuable_on": 1692758449,
+      "next_cert_issuable_on": 1695956204,
       "certs_received": {
-        "nashira": 1695832711,
         "Andrelie": 1756568419,
         "Gerg": 1699928675,
+        "AnneLaroche": 1758738815,
         "Sanka2015": 1697002817,
+        "Yvelineplantes": 1759003198,
+        "LouisCarvalho": 1758739123,
         "Nelsan": 1737271052,
-        "HenriRGN": 1696546151,
         "Vivie82": 1756108438,
         "Michel1955": 1755805934,
-        "Gigi": 1695860489,
         "Sylvieswing82": 1755806914
       }
     },
@@ -9505,6 +9624,21 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "LykeLovesPeter": {
+      "index": 13513,
+      "owner_key": "2ig85fNdo9QP75frjKB1efhQoGVk4HjCGb4xxhhtG2HH",
+      "balance": 190902,
+      "membership_expire_on": 1725474665,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "AfricadeHarmonia": 1757089451,
+        "Damadespadas": 1757069857,
+        "RainbowQueen": 1757112149,
+        "Anadi": 1757662791,
+        "GuillermoHarmonia": 1757093370,
+        "Aurora-SandraMogo": 1757034862
+      }
+    },
     "Marie-Anna-Itan": {
       "index": 5892,
       "owner_key": "2iqJ63cEagTfmokpuhJvdPSV3aQEuGiRcwdN9ztkX86r",
@@ -9513,20 +9647,19 @@
       "next_cert_issuable_on": 1644415223,
       "certs_received": {
         "Chrige": 1706735495,
-        "CitizenFour": 1695966579,
-        "Franck": 1696062760,
         "Pirataquante": 1697351344,
-        "Piraculteur": 1695329309,
         "Blutch": 1697927632
       }
     },
     "koalarp": {
       "index": 9587,
       "owner_key": "2iwXnVcUCzXyec2EhuJJra5wuidau5wvvuQ2joxQWZwC",
-      "balance": 363822,
+      "balance": 392508,
       "membership_expire_on": 1722517839,
       "next_cert_issuable_on": 1683116942,
       "certs_received": {
+        "Virginie": 1759812401,
+        "Samsan": 1759812178,
         "daluz": 1726541120,
         "Moun": 1726355465,
         "MelR": 1726355116,
@@ -9534,6 +9667,20 @@
         "Impala": 1726389102
       }
     },
+    "abdenour": {
+      "index": 13617,
+      "owner_key": "2jAuLmbsbUoeF5y6BExDkf56cUX2ph5t1b7ZqrxSbwEN",
+      "balance": 33248,
+      "membership_expire_on": 1725229329,
+      "next_cert_issuable_on": 1696765564,
+      "certs_received": {
+        "Pacha": 1757977036,
+        "Mystic": 1758004106,
+        "Steph974": 1757988481,
+        "Eauvive": 1757977036,
+        "schmollita": 1756786929
+      }
+    },
     "Ycia": {
       "index": 4245,
       "owner_key": "2jBJpXa9V67P58bVTDAUYxnYGa6kPArE9BfmU1r3SXHE",
@@ -9545,7 +9692,7 @@
     "ninoufette": {
       "index": 10902,
       "owner_key": "2jBq76DgRUESagdvgvDEYQtWrQM1FVbCriuwcmnhG4vY",
-      "balance": 304571,
+      "balance": 344257,
       "membership_expire_on": 1699475598,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -9560,8 +9707,8 @@
     "Albertine19": {
       "index": 9978,
       "owner_key": "2jDoYQ6TmifFFTCxShvsHEPrWT83ru26pPhueoyw8qUt",
-      "balance": 82990,
-      "membership_expire_on": 1697473767,
+      "balance": 114336,
+      "membership_expire_on": 1726016068,
       "next_cert_issuable_on": 1684313660,
       "certs_received": {
         "IvanR": 1729060533,
@@ -9582,7 +9729,7 @@
     "Shayan": {
       "index": 11274,
       "owner_key": "2jKQsmVTjBLzyhfuC1pT3CNt8euX1dTdZZukY5C4NMeq",
-      "balance": 236283,
+      "balance": 275969,
       "membership_expire_on": 1705622229,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -9596,8 +9743,8 @@
     "valentineakaya": {
       "index": 9457,
       "owner_key": "2jLu1z8wcHu9vYwshSEop9gpfBYPkJDwpebbeazhL5qw",
-      "balance": 380442,
-      "membership_expire_on": 1693867233,
+      "balance": 384714,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "marinetfrommars": 1725580075,
@@ -9626,9 +9773,9 @@
     "Cordeliaze": {
       "index": 4147,
       "owner_key": "2jMZWHSSzg1ZerdaMe2598ABHMhz6c5qAjenhLhHrz55",
-      "balance": 119734,
+      "balance": 75420,
       "membership_expire_on": 1713457309,
-      "next_cert_issuable_on": 1692238640,
+      "next_cert_issuable_on": 1696767524,
       "certs_received": {
         "kapis": 1729398418,
         "ArtesaniaAna": 1727684701,
@@ -9683,7 +9830,7 @@
         "Koldo": 1718253526,
         "Noxtan": 1723401370,
         "MerceGarma": 1715127677,
-        "ElenaMavida": 1695266965,
+        "ElenaMavida": 1758560854,
         "Mosica": 1720686992,
         "Lei": 1715210951,
         "Nadou": 1714197974,
@@ -9697,9 +9844,9 @@
     "hibiscus11": {
       "index": 1621,
       "owner_key": "2jPrK6d9PRa1UCRVT4t2eeyHC6fEUMUWhd7jXkMQhhJd",
-      "balance": 633681,
+      "balance": 673367,
       "membership_expire_on": 1707752476,
-      "next_cert_issuable_on": 1692865503,
+      "next_cert_issuable_on": 1694693567,
       "certs_received": {
         "Brunop": 1737516374,
         "CathyCat": 1706492906,
@@ -9727,6 +9874,7 @@
         "Iguana": 1716635461,
         "Licorne6": 1698266939,
         "floriane11": 1732487392,
+        "Kaya971Wolf": 1759543684,
         "Ibratek": 1740461066,
         "BRIGITTE2019": 1746058421,
         "JDLepage-Guichard": 1718297561,
@@ -9736,7 +9884,7 @@
         "domimeert": 1705786456,
         "mardi11": 1749075986,
         "ValyChev": 1733541364,
-        "PascalGuillemain": 1702450079,
+        "PascalGuillemain": 1758220697,
         "SylvieSpielmann": 1737537480,
         "Nigbi2118": 1733779525,
         "Sid34": 1719855719,
@@ -9749,7 +9897,7 @@
     "Manu": {
       "index": 13273,
       "owner_key": "2jQQasCjYMJ22sHb3my8pYPgRHavLeyLpThw8CRGZ5pT",
-      "balance": 94976,
+      "balance": 145862,
       "membership_expire_on": 1722280562,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -9779,7 +9927,7 @@
     "MaFleur": {
       "index": 13019,
       "owner_key": "2jUtuKAA7eu6ihjwKyBEvYwboH99uZN1NXgaJGC28fSy",
-      "balance": 106992,
+      "balance": 164678,
       "membership_expire_on": 1718657964,
       "next_cert_issuable_on": 1691600218,
       "certs_received": {
@@ -9796,8 +9944,8 @@
     "Lol": {
       "index": 2291,
       "owner_key": "2jVPEB28k36eK7uwifhxCViNPWLLv6zbLbnY7UXzvSTF",
-      "balance": 588851,
-      "membership_expire_on": 1696183347,
+      "balance": 622069,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666105597,
       "certs_received": {
         "Hammazone": 1716336076,
@@ -9810,9 +9958,9 @@
     "mssix": {
       "index": 13361,
       "owner_key": "2jVqLY7MqBkmPrB3VuxdxMMaBSKdrG9PF3CWNJr4wtHV",
-      "balance": 21392,
+      "balance": 61078,
       "membership_expire_on": 1718819457,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696675932,
       "certs_received": {
         "Alexia": 1750729894,
         "Salsa33150": 1752267692,
@@ -9824,12 +9972,13 @@
     "Mick": {
       "index": 4337,
       "owner_key": "2jaQMiiSAB3GuqamZTy5yRJpYd6pazTj4HmnJawMTYVH",
-      "balance": 673711,
+      "balance": 773397,
       "membership_expire_on": 1724590724,
       "next_cert_issuable_on": 1658115736,
       "certs_received": {
         "Ju73": 1733429279,
         "VMeyer": 1726125882,
+        "Corine": 1757893278,
         "MioPalmon988": 1731258833,
         "MSarrazin": 1706151641,
         "LaurentM": 1733286470
@@ -9874,7 +10023,7 @@
     "Ulysse31": {
       "index": 8242,
       "owner_key": "2juS8ABdi69GSLE4B13ZbEMEPT2SbPTWXqc9B87Snz4U",
-      "balance": 475998,
+      "balance": 515684,
       "membership_expire_on": 1715079249,
       "next_cert_issuable_on": 1658204475,
       "certs_received": {
@@ -9888,13 +10037,12 @@
     "arbocenc": {
       "index": 5039,
       "owner_key": "2jztXxnqwpezBUSYMa9zpwMwfqr9stuX8z9kY18BEoov",
-      "balance": 110534,
+      "balance": 461800,
       "membership_expire_on": 1705153433,
-      "next_cert_issuable_on": 1693351601,
+      "next_cert_issuable_on": 1695940662,
       "certs_received": {
         "kapis": 1699937194,
         "Cordeliaze": 1701376968,
-        "mluque71": 1694495952,
         "Ainat255": 1720215289,
         "ManelG": 1717011097,
         "Carla": 1734162801,
@@ -9960,7 +10108,7 @@
     "mimone974": {
       "index": 3476,
       "owner_key": "2kFnTbgsVWixi48MvdqCR2DJSp3xk5VMqAysHeiXTj3L",
-      "balance": 233871,
+      "balance": 273557,
       "membership_expire_on": 1723039194,
       "next_cert_issuable_on": 1675669385,
       "certs_received": {
@@ -9970,11 +10118,9 @@
         "Vanessa974": 1697928328,
         "Chris08": 1707103972,
         "LenaSuryMangas": 1709061528,
-        "Laetitia97421": 1695705054,
         "Fanny": 1711943334,
         "BabethMangas": 1710272705,
         "ClaireM97410": 1740591661,
-        "luciano974": 1695748342,
         "NnattNature": 1725649305,
         "Cindy974": 1720921183,
         "bardone01": 1723138060,
@@ -9982,7 +10128,6 @@
         "LILOU974": 1720920315,
         "Brunov974": 1719114896,
         "frantzsury": 1709060823,
-        "Evan97421": 1696674721,
         "Corinne974": 1700611541,
         "Nafissa974": 1706068280,
         "Claudine974": 1712623347,
@@ -9990,11 +10135,9 @@
         "Sandro974": 1726497605,
         "NOE974": 1721521197,
         "Myriam97410": 1735574811,
-        "Alicia97421": 1696675949,
         "Lea974": 1724960122,
         "Logan974": 1723249601,
         "Rezkia974": 1736266997,
-        "Eddy974": 1695972054,
         "lilieboyer974": 1706579346,
         "pampermacole": 1709514699,
         "Ginee974": 1703167826,
@@ -10004,8 +10147,8 @@
     "Ochan": {
       "index": 10193,
       "owner_key": "2kJfCgeVPYqAXMqaDfK4J7ecVYxpwwjhbDTXxdkvW93j",
-      "balance": 165606,
-      "membership_expire_on": 1698351530,
+      "balance": 212493,
+      "membership_expire_on": 1725203169,
       "next_cert_issuable_on": 1685193247,
       "certs_received": {
         "UFO": 1737184691,
@@ -10042,7 +10185,7 @@
     "Natalia": {
       "index": 12221,
       "owner_key": "2kTw9fSKRRQWb8QEmNRPeRKkG2M2XCFiFNBxQwxRCABc",
-      "balance": 160300,
+      "balance": 159986,
       "membership_expire_on": 1710867004,
       "next_cert_issuable_on": 1682400778,
       "certs_received": {
@@ -10074,7 +10217,7 @@
     "Martino": {
       "index": 1322,
       "owner_key": "2kWoagw3Zf1N6PjNZY1qqkYZEsyegj2GKWDXVamD8Jb4",
-      "balance": 1414382,
+      "balance": 1454068,
       "membership_expire_on": 1704938740,
       "next_cert_issuable_on": 1676355148,
       "certs_received": {
@@ -10088,7 +10231,7 @@
     "chantalarc71": {
       "index": 13037,
       "owner_key": "2kb76y5RcQEMuih2pNHLoaJViMj5VXkubnjmHGT7Xrmn",
-      "balance": 99148,
+      "balance": 188834,
       "membership_expire_on": 1718747768,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -10120,7 +10263,7 @@
     "Flototype": {
       "index": 12206,
       "owner_key": "2ki6VyvUyZ454aW3PwqQZp5zp1PH4QhGVMAoszSA9cTo",
-      "balance": 154700,
+      "balance": 194386,
       "membership_expire_on": 1712025745,
       "next_cert_issuable_on": 1682011426,
       "certs_received": {
@@ -10136,7 +10279,7 @@
     "Mandine1": {
       "index": 6817,
       "owner_key": "2kmi486xYzDH5EqwyLRWgvFo1qsheXA282U8aYQaeasN",
-      "balance": 559363,
+      "balance": 599049,
       "membership_expire_on": 1705947162,
       "next_cert_issuable_on": 1678803397,
       "certs_received": {
@@ -10188,9 +10331,9 @@
     "ErickG_G": {
       "index": 6997,
       "owner_key": "2kq14LVjED5m5up8n1fbzWHmb5WLicGwwYtNRkZsn7vt",
-      "balance": 239177,
-      "membership_expire_on": 1702953711,
-      "next_cert_issuable_on": 1680869887,
+      "balance": 4312,
+      "membership_expire_on": 0,
+      "next_cert_issuable_on": 1693638159,
       "certs_received": {
         "LosMundosdeKrull": 1734681496,
         "kapis": 1708252443,
@@ -10232,7 +10375,7 @@
     "Lalou971": {
       "index": 12726,
       "owner_key": "2kuiTGaLrTqpAWdeZdzoqAtKup65i2BJniSmcV3yMbNU",
-      "balance": 119800,
+      "balance": 159486,
       "membership_expire_on": 1715742802,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -10258,7 +10401,7 @@
     "BrigitteDelacroix": {
       "index": 12284,
       "owner_key": "2m2UtVvM8m4CpNPKrqzKLsV8yHeaTc2MamiS6QyrFGRe",
-      "balance": 187792,
+      "balance": 229478,
       "membership_expire_on": 1712053820,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -10275,7 +10418,7 @@
     "SchoniQ": {
       "index": 11629,
       "owner_key": "2m4NNeJivr9qaDXWeHdg42v7kmdw8QPaqtFK9kzcwJXq",
-      "balance": 243536,
+      "balance": 283222,
       "membership_expire_on": 1705529423,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -10289,7 +10432,7 @@
     "lanoire": {
       "index": 2553,
       "owner_key": "2mBBS5UtmTJDjdsdyPHU6RX6orF68BCZSyPg3NWwJKDD",
-      "balance": 125507,
+      "balance": 165193,
       "membership_expire_on": 1724892431,
       "next_cert_issuable_on": 1681349574,
       "certs_received": {
@@ -10316,13 +10459,14 @@
     "Nobby": {
       "index": 12712,
       "owner_key": "2mKboon37jwuhQicm3Ek66vLP97esMggiD486zjVz34q",
-      "balance": 212086,
+      "balance": 212742,
       "membership_expire_on": 1716230873,
-      "next_cert_issuable_on": 1689996186,
+      "next_cert_issuable_on": 1696582892,
       "certs_received": {
         "MKC": 1756175425,
         "SoniaMallorca": 1747517904,
         "majo": 1747282983,
+        "Ingrid": 1757032506,
         "Felicia": 1747595176,
         "Gitty": 1747293308,
         "danielali": 1747337280,
@@ -10333,9 +10477,9 @@
     "nashira": {
       "index": 1790,
       "owner_key": "2mKmto464oWCVsRgcYM6vpwsLsGk6MhMtrBKf7DTAU34",
-      "balance": 1163508,
+      "balance": 1088194,
       "membership_expire_on": 1708081319,
-      "next_cert_issuable_on": 1692761483,
+      "next_cert_issuable_on": 1696109424,
       "certs_received": {
         "Asterix": 1731520769,
         "zazou": 1742008344,
@@ -10345,9 +10489,11 @@
         "UlrikeBauereis": 1750548677,
         "Violette33": 1732766122,
         "Bea813": 1739839096,
+        "AnneLaroche": 1758223042,
         "Helene-petiteriviere": 1702534139,
         "susanahiperborea": 1742365756,
         "Fleurt11": 1733910783,
+        "LouisCarvalho": 1759286893,
         "EvaLM": 1702174046,
         "ENO": 1710802651,
         "Bob64": 1719653955,
@@ -10378,13 +10524,14 @@
         "Antares": 1739660789,
         "Maudinettepouetpouet": 1712453751,
         "YvonneD": 1740462541,
-        "Hdsaf": 1741529282
+        "Hdsaf": 1741529282,
+        "psycotox80": 1759447826
       }
     },
     "Bernadette": {
       "index": 9323,
       "owner_key": "2mLwBQX2bamf9mqusps3ZSvfYmgbJhshVggGC8Ub9PHV",
-      "balance": 381756,
+      "balance": 421442,
       "membership_expire_on": 1720019160,
       "next_cert_issuable_on": 1688811607,
       "certs_received": {
@@ -10409,9 +10556,9 @@
     "BudFox": {
       "index": 10892,
       "owner_key": "2mSkNfiUdcRCgDQSAdX7v4uBNKyaunVEz6N3XkRHii3a",
-      "balance": 127229,
+      "balance": 156915,
       "membership_expire_on": 1702828329,
-      "next_cert_issuable_on": 1691397143,
+      "next_cert_issuable_on": 1696752809,
       "certs_received": {
         "ericve": 1743580544,
         "lumirose": 1734409340,
@@ -10422,6 +10569,7 @@
         "DavidMontpellier": 1755504674,
         "GeneBe": 1734408082,
         "SELHENIA": 1734416242,
+        "Mireilleplantessauvages": 1757108004,
         "Mmemonica": 1754869237
       }
     },
@@ -10449,6 +10597,23 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "GaelleG": {
+      "index": 13699,
+      "owner_key": "2mdx8jQ53p5jSSHjqBwbfFruJSgCyLL7WpdAGWDy7rC3",
+      "balance": 391129,
+      "membership_expire_on": 1727294656,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "GuyPeq11": 1759283143,
+        "Etoiledunord": 1759208492,
+        "NadineGS": 1759386034,
+        "Nyttliv": 1759177258,
+        "mardi11": 1759283143,
+        "AnnieP38": 1759170486,
+        "RejjeR": 1759206390,
+        "Alcyone8888": 1759178349
+      }
+    },
     "LaLinotte": {
       "index": 3322,
       "owner_key": "2mo5kAsgCMYwoqArmfh6r9qLAhfeSNqSkYPXjfA68JTe",
@@ -10460,7 +10625,7 @@
     "ChrisTof": {
       "index": 8302,
       "owner_key": "2mqt4PoTAaFRZ59D4jBzkYoMSBo6ou1HdmoF5muyQDWF",
-      "balance": 484250,
+      "balance": 523936,
       "membership_expire_on": 1718460784,
       "next_cert_issuable_on": 1654487037,
       "certs_received": {
@@ -10475,9 +10640,9 @@
     "Josemi108": {
       "index": 6303,
       "owner_key": "2mt5JgAevFjtfqxpDcwwVxLeFKSMHaxnNiwi8LA4N5GB",
-      "balance": 741158,
-      "membership_expire_on": 1698200922,
-      "next_cert_issuable_on": 1692583782,
+      "balance": 780844,
+      "membership_expire_on": 1726745663,
+      "next_cert_issuable_on": 1695260063,
       "certs_received": {
         "EnriKon": 1700804473,
         "SaraSovrano": 1712208768,
@@ -10494,6 +10659,7 @@
         "Betty": 1750228661,
         "Belka": 1700702387,
         "C13KETSALI": 1712372270,
+        "LucasSebastianPerez": 1756268729,
         "Gelen": 1708473419,
         "SIUX": 1725616097,
         "Ura": 1710408660,
@@ -10525,8 +10691,8 @@
     "VirginMarcCptMembre": {
       "index": 6078,
       "owner_key": "2nBZipZMH2E4RAronnVioQxTtt2qTiuAqGxkwVzXMyAB",
-      "balance": 481550,
-      "membership_expire_on": 1694800984,
+      "balance": 497694,
+      "membership_expire_on": 1727612624,
       "next_cert_issuable_on": 1679806829,
       "certs_received": {
         "jeje43": 1699592997,
@@ -10542,7 +10708,7 @@
     "Lako": {
       "index": 13244,
       "owner_key": "2nGYpdoxuvATu6Z3mBkX7ZzK9CyfEAgBnVGmihHo8j63",
-      "balance": 53148,
+      "balance": 76334,
       "membership_expire_on": 1721403604,
       "next_cert_issuable_on": 1692008759,
       "certs_received": {
@@ -10558,7 +10724,7 @@
     "GhislainF": {
       "index": 2278,
       "owner_key": "2nJtuMtssSk4GRV6H6fbBFg1tQQBEufTnVQZ6ssCQPMi",
-      "balance": 1042120,
+      "balance": 1081806,
       "membership_expire_on": 1720550291,
       "next_cert_issuable_on": 1668746770,
       "certs_received": {
@@ -10613,7 +10779,7 @@
     "ScarlettGabrielle_8": {
       "index": 10039,
       "owner_key": "2ns1QgeorsLKJSbuwYtRJUrxgitdNZMNYmQgtFYc66tT",
-      "balance": 85899,
+      "balance": 125585,
       "membership_expire_on": 1722719099,
       "next_cert_issuable_on": 1691330102,
       "certs_received": {
@@ -10651,10 +10817,11 @@
     "cgeek": {
       "index": 34,
       "owner_key": "2ny7YAdmzReQxAayyJZsyVYwYhVyax2thKcGknmQy5nQ",
-      "balance": 1459807,
+      "balance": 2102381,
       "membership_expire_on": 1710518564,
       "next_cert_issuable_on": 1675426012,
       "certs_received": {
+        "CaroleFabre": 1757977036,
         "Jeangraine": 1720668249,
         "Rach": 1737956147,
         "Pol": 1698533972,
@@ -10667,9 +10834,9 @@
     "Bigfourmi": {
       "index": 9266,
       "owner_key": "2o7SgTt5vDccocDDVETZN7CANp6rFKHeUfqjD5NbmiKs",
-      "balance": 365911,
+      "balance": 405597,
       "membership_expire_on": 1721600179,
-      "next_cert_issuable_on": 1680926230,
+      "next_cert_issuable_on": 1693492702,
       "certs_received": {
         "Mianne": 1724051539,
         "SeanB": 1737370824,
@@ -10681,13 +10848,14 @@
         "Kilou": 1738390736,
         "StephBauer": 1729110399,
         "Merlinor": 1724052141,
+        "Petfa": 1759294909,
         "daens": 1739387796
       }
     },
     "Eveilducoeur": {
       "index": 8705,
       "owner_key": "2oAPhXBXxEZDdamaSCPZG3QkXRuSbWoahCXxc1Ui8sJs",
-      "balance": 321705,
+      "balance": 361391,
       "membership_expire_on": 1719278279,
       "next_cert_issuable_on": 1691149296,
       "certs_received": {
@@ -10698,6 +10866,7 @@
         "Ainoha": 1737606526,
         "Leonardine": 1738993463,
         "perenoel": 1722785411,
+        "OlivierDesAirelles": 1758171885,
         "AKOUNAMATATA": 1745897366,
         "philboybada63": 1740427898,
         "Shinra": 1734207064,
@@ -10735,7 +10904,7 @@
     "ClairePieropan": {
       "index": 11149,
       "owner_key": "2oBQg4eKS143zJbvD5EyX9r6SrzZrfB2m8xQTyLW5Re4",
-      "balance": 250332,
+      "balance": 290018,
       "membership_expire_on": 1704577661,
       "next_cert_issuable_on": 1680666544,
       "certs_received": {
@@ -10758,9 +10927,9 @@
     "Niranjana": {
       "index": 7849,
       "owner_key": "2oVAzLpxKDcqVhE2KHyBj3QQ7fN2CwHbSRz1nPPzKoCP",
-      "balance": 251419,
+      "balance": 279105,
       "membership_expire_on": 1708432059,
-      "next_cert_issuable_on": 1693187713,
+      "next_cert_issuable_on": 1696513191,
       "certs_received": {
         "Sunshining": 1731347239,
         "Aure": 1730739530,
@@ -10782,12 +10951,12 @@
     "Riri": {
       "index": 5188,
       "owner_key": "2ocRWxfeBMyHQEnKH6tWTvPd2YdjYxwYpWAkkXepn9p5",
-      "balance": 719860,
+      "balance": 749546,
       "membership_expire_on": 1706449370,
-      "next_cert_issuable_on": 1692492159,
+      "next_cert_issuable_on": 1696733921,
       "certs_received": {
         "chris07": 1729057852,
-        "Flocon": 1701577391,
+        "Flocon": 1758911621,
         "Speedygonzales73": 1709951451,
         "monphil": 1714519284,
         "Math333": 1750610692,
@@ -10806,7 +10975,7 @@
         "AurelienS": 1734071064,
         "lamouette": 1752007765,
         "Cathykty": 1704512985,
-        "JeanTibou": 1696976630,
+        "JeanTibou": 1756751080,
         "EmmaSol": 1722651879,
         "Bouanito": 1703220804,
         "melusine": 1698649285,
@@ -10837,9 +11006,9 @@
     "AfricadeHarmonia": {
       "index": 10355,
       "owner_key": "2omP4g5Y1nZCENEfFRNQamoY36xC2N9wKbehxvzPjUkH",
-      "balance": 49705,
-      "membership_expire_on": 1698890370,
-      "next_cert_issuable_on": 1688777728,
+      "balance": 142262,
+      "membership_expire_on": 1725398756,
+      "next_cert_issuable_on": 1696779582,
       "certs_received": {
         "kapis": 1732136893,
         "RitApolinario": 1744482702,
@@ -10850,6 +11019,7 @@
         "AlexanderT": 1751540612,
         "MiguelOssa": 1739386556,
         "AdrianMP": 1730571448,
+        "mariabiodanza": 1757377851,
         "Manacor": 1732244714,
         "JulianMF": 1731108797,
         "Albertocc": 1737229055,
@@ -10865,9 +11035,9 @@
     "Etipol61": {
       "index": 7504,
       "owner_key": "2osCMvPRggjdRa7YLiWyTtmszuGDFkbyifayPeJk2BWo",
-      "balance": 318399,
+      "balance": 371085,
       "membership_expire_on": 1707061820,
-      "next_cert_issuable_on": 1692704690,
+      "next_cert_issuable_on": 1694713124,
       "certs_received": {
         "Crystal": 1717831219,
         "xandraAritzkuren": 1721727025,
@@ -10911,6 +11081,7 @@
         "Mireilleplantessauvages": 1711784535,
         "Claire11": 1743747196,
         "annefreda": 1720048873,
+        "Pierre40120": 1756488438,
         "ElisabeteMartins": 1743834145,
         "Profil": 1721155632,
         "RuKu": 1739755194
@@ -10919,7 +11090,7 @@
     "Senda": {
       "index": 9350,
       "owner_key": "2ovdi1Hdwzxs7muU5KEZPpuiRvPUKL2eF7VzbViPuJCg",
-      "balance": 256337,
+      "balance": 296023,
       "membership_expire_on": 1719944661,
       "next_cert_issuable_on": 1692418174,
       "certs_received": {
@@ -10938,6 +11109,7 @@
         "michaelsoleil": 1732597686,
         "Folele": 1746115894,
         "Josedonato": 1729715910,
+        "Felipevida": 1758251979,
         "Sandrisha": 1746078384,
         "JUAN51": 1724516634,
         "VictorDevora": 1740977006,
@@ -10961,8 +11133,8 @@
     "Mira": {
       "index": 6695,
       "owner_key": "2oyxHTEqRci42xd1c3azFCYiw2Ptpjg3tPoNaJjsugoC",
-      "balance": 476683,
-      "membership_expire_on": 1696958351,
+      "balance": 511369,
+      "membership_expire_on": 1727876340,
       "next_cert_issuable_on": 1666797645,
       "certs_received": {
         "SvetRuskof": 1706427672,
@@ -10982,7 +11154,7 @@
     "Lavieestbelle": {
       "index": 6942,
       "owner_key": "2p2T7kL68RfrbETJTea6kBo4UUQiyEYgcy1P22q5qDs9",
-      "balance": 499563,
+      "balance": 539249,
       "membership_expire_on": 1704929186,
       "next_cert_issuable_on": 1678279403,
       "certs_received": {
@@ -10998,9 +11170,9 @@
     "Nadege26": {
       "index": 7971,
       "owner_key": "2p6dk9v8qUScivic6XccDmGMC6LU5r5VqXgYE65oXbyM",
-      "balance": 355176,
+      "balance": 394862,
       "membership_expire_on": 1709831822,
-      "next_cert_issuable_on": 1682232780,
+      "next_cert_issuable_on": 1696254487,
       "certs_received": {
         "Tico": 1714877482,
         "ClauTie26": 1714872689,
@@ -11051,7 +11223,7 @@
     "Francoeur": {
       "index": 4600,
       "owner_key": "2pBTBgjjG7pUPMto6nWHEu6MNCAVyrZfHQ9gSLUD5s1y",
-      "balance": 944422,
+      "balance": 984108,
       "membership_expire_on": 1703640625,
       "next_cert_issuable_on": 1672739180,
       "certs_received": {
@@ -11066,7 +11238,7 @@
     "arkanoid3275": {
       "index": 8658,
       "owner_key": "2pDhwgaEMTiyxsDgDgRfWYn1J4XjtnqXpBfffWwasGU3",
-      "balance": 473172,
+      "balance": 512858,
       "membership_expire_on": 1719232673,
       "next_cert_issuable_on": 1671879816,
       "certs_received": {
@@ -11080,14 +11252,15 @@
     "NathMim": {
       "index": 12179,
       "owner_key": "2pNRDMWDBEuA9MbG9gHskdxF5EEdFt7UmuyBuX3HRoNM",
-      "balance": 696152,
+      "balance": 735838,
       "membership_expire_on": 1711807580,
-      "next_cert_issuable_on": 1688228639,
+      "next_cert_issuable_on": 1693661824,
       "certs_received": {
         "mipimichel": 1743100011,
         "Choco": 1743395402,
         "Bea34": 1742167254,
         "Bruno81": 1742531008,
+        "CelineRenou": 1756442707,
         "Sandcreart": 1750820627,
         "CVM": 1742531315,
         "SiLi": 1743132361,
@@ -11120,7 +11293,7 @@
     "Sand": {
       "index": 3111,
       "owner_key": "2pintqCNQT6QD61esRbeY7KyZi6onswD4piGsmWC2eHD",
-      "balance": 529120,
+      "balance": 558906,
       "membership_expire_on": 1715458038,
       "next_cert_issuable_on": 1686556532,
       "certs_received": {
@@ -11134,7 +11307,6 @@
         "Marcoucho": 1725067844,
         "Puppi": 1713129251,
         "loukaM": 1728331120,
-        "Orchys": 1696363678,
         "Lutinsolite": 1754976636,
         "phil3455": 1711789678,
         "DCat": 1711423054,
@@ -11154,7 +11326,7 @@
     "Gregory2pj5": {
       "index": 6110,
       "owner_key": "2pj5mHBkRFma78uExxsdXAHnfusKdYUcm6V3RvTPRgpj",
-      "balance": 616655,
+      "balance": 656341,
       "membership_expire_on": 1701986261,
       "next_cert_issuable_on": 1643212919,
       "certs_received": {
@@ -11172,7 +11344,7 @@
     "PascalEnden": {
       "index": 7876,
       "owner_key": "2pmTpSsxntH4LQ8QMr2H4UwQHcHt4UYY5ACbMNhmh1KY",
-      "balance": 562074,
+      "balance": 607460,
       "membership_expire_on": 1705847246,
       "next_cert_issuable_on": 1686709541,
       "certs_received": {
@@ -11195,7 +11367,7 @@
     "Rosedesbois": {
       "index": 11170,
       "owner_key": "2pmiHZ2bozUiBEfw2kJt9FrFXqUMR8f1VRYgHep4Kdr4",
-      "balance": 249273,
+      "balance": 288959,
       "membership_expire_on": 1704494791,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -11216,7 +11388,7 @@
     "ericve": {
       "index": 11375,
       "owner_key": "2ppLwMeE9ELSYueNASkbmkSGYQevSMG1tzn5YGsHpcTf",
-      "balance": 131366,
+      "balance": 173852,
       "membership_expire_on": 1706327582,
       "next_cert_issuable_on": 1691721782,
       "certs_received": {
@@ -11238,7 +11410,7 @@
     "Patopistou": {
       "index": 8776,
       "owner_key": "2ppvrJa9yacFecg3A7LwAMMWx8oJBLaLWVjUyrWWuiHB",
-      "balance": 599758,
+      "balance": 639444,
       "membership_expire_on": 1718422719,
       "next_cert_issuable_on": 1686937476,
       "certs_received": {
@@ -11252,7 +11424,7 @@
     "Puissancedivinenmarche": {
       "index": 8512,
       "owner_key": "2pxPF36s9w2gEdR1hfzDf3QCQJEgQanscfwYwdRAzQux",
-      "balance": 469177,
+      "balance": 524363,
       "membership_expire_on": 1713787863,
       "next_cert_issuable_on": 1687351160,
       "certs_received": {
@@ -11260,6 +11432,7 @@
         "EddyMannino": 1718392591,
         "Assoben": 1718338871,
         "JeanClaudePaulRobert": 1718482067,
+        "Alisce": 1756933014,
         "pat26": 1718339087,
         "Luviam": 1718432507
       }
@@ -11267,7 +11440,7 @@
     "Re-belle": {
       "index": 7639,
       "owner_key": "2pzTTTKnPK5B2HHffGUreEXrwvnUTNUNthqpMkPWmX55",
-      "balance": 363110,
+      "balance": 404932,
       "membership_expire_on": 1712876171,
       "next_cert_issuable_on": 1692756829,
       "certs_received": {
@@ -11282,12 +11455,13 @@
     "JC29": {
       "index": 13336,
       "owner_key": "2qAmGyEpn9W1f9wYipD29S1y3D7ew2NK435pnyvyrDHC",
-      "balance": 24864,
+      "balance": 64450,
       "membership_expire_on": 1723059616,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693610055,
       "certs_received": {
         "gege110560": 1754622767,
         "Tango1": 1754628947,
+        "veromada": 1758134452,
         "MalouCanevet": 1754631595,
         "ThierryYo": 1754628947,
         "Francesca": 1754624591
@@ -11326,7 +11500,7 @@
     "Juju2pom": {
       "index": 6671,
       "owner_key": "2qNJKtzhTvFkr49qb4cFQ1jmBETfrTYjYDKdX1ZYtHKc",
-      "balance": 732728,
+      "balance": 792414,
       "membership_expire_on": 1698173301,
       "next_cert_issuable_on": 1646656951,
       "certs_received": {
@@ -11355,9 +11529,9 @@
     "FLORESTRELA": {
       "index": 373,
       "owner_key": "2qsZxF77WydYQ3ebnpgUYFnf5aMHBjfgU9ptTjyq6qQD",
-      "balance": 1990068,
+      "balance": 2029754,
       "membership_expire_on": 1711546495,
-      "next_cert_issuable_on": 1678548283,
+      "next_cert_issuable_on": 1695302819,
       "certs_received": {
         "FanchDz": 1747939065,
         "paidge": 1727857415,
@@ -11375,7 +11549,7 @@
     "Fisso": {
       "index": 4214,
       "owner_key": "2r51YityHoZG4JE9vTdteiJsEA4MJLZoE9vzEMp7vpvZ",
-      "balance": 1825840,
+      "balance": 1865526,
       "membership_expire_on": 1702219428,
       "next_cert_issuable_on": 1672974373,
       "certs_received": {
@@ -11401,9 +11575,9 @@
     "FrancescaPey": {
       "index": 12992,
       "owner_key": "2r73sYYvWhFGHLvuTadgbdjDQFZnqp2H4i8QkCpdUjgs",
-      "balance": 76288,
+      "balance": 115974,
       "membership_expire_on": 1718826551,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695278133,
       "certs_received": {
         "FrancoiseSTA07": 1750660947,
         "MichelBonnaventure07": 1750837386,
@@ -11415,16 +11589,19 @@
     "Beatricebia": {
       "index": 6559,
       "owner_key": "2r9FfobWaLHSxUBkw49F6rx5nshzZpYHY4N6Sf1Ce6Wb",
-      "balance": 328459,
-      "membership_expire_on": 1697630132,
-      "next_cert_issuable_on": 1691675364,
+      "balance": 356345,
+      "membership_expire_on": 1727004803,
+      "next_cert_issuable_on": 1696586038,
       "certs_received": {
         "ElaineDana": 1756082110,
+        "Annae": 1756702602,
         "Cinsia": 1756083782,
+        "mariech": 1759638703,
         "Vigo": 1724706358,
         "Val1695": 1701049455,
         "Insa": 1709189718,
         "Pilar": 1701133031,
+        "VeroD": 1759633042,
         "Goldwing": 1756108855,
         "Joa-KimTiago": 1756099715,
         "Patoun": 1756394801,
@@ -11443,7 +11620,7 @@
     "JeromeGolliet": {
       "index": 8133,
       "owner_key": "2rGUYy3owHnPADwBBNToaTuk3LZvGg2C6jG69dLC7ddb",
-      "balance": 1002908,
+      "balance": 1042594,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1672901013,
       "certs_received": {
@@ -11477,9 +11654,9 @@
     "Laurence": {
       "index": 1347,
       "owner_key": "2rTPK5Sg7yc4YeZojR3AhmWeHa5z7rr6YgB6T56KSaiC",
-      "balance": 378973,
+      "balance": 418659,
       "membership_expire_on": 1714523979,
-      "next_cert_issuable_on": 1683766868,
+      "next_cert_issuable_on": 1695815245,
       "certs_received": {
         "Lisa34": 1720680450,
         "Richard": 1730174620,
@@ -11492,7 +11669,7 @@
         "SIMONEANTONELLI": 1714617954,
         "Jeffrenchpilot": 1699860236,
         "Iguana": 1715656941,
-        "Mikhaella3448": 1693807961,
+        "Paola": 1758959702,
         "BRIGITTE2019": 1733504059,
         "Eauvive": 1708745332,
         "JPGRAU": 1720037037,
@@ -11505,14 +11682,11 @@
     "mluque71": {
       "index": 5237,
       "owner_key": "2rVB9hGgo19UyHnsAmbK9QbTwUr7SEDKeogeeiPGstPD",
-      "balance": 82980,
+      "balance": 69696,
       "membership_expire_on": 1711299919,
-      "next_cert_issuable_on": 1678698684,
+      "next_cert_issuable_on": 1696583855,
       "certs_received": {
-        "arbocenc": 1694495952,
-        "carmela": 1694596017,
         "bbqueen": 1716236759,
-        "LaCasaGran": 1694655640,
         "MarinaMB": 1702943821,
         "simone_c86": 1697072426,
         "yoelijomivida": 1738717015,
@@ -11521,12 +11695,9 @@
         "AlfredoRG": 1714015035,
         "Encalquimista": 1724293027,
         "Arantzamar": 1719465838,
-        "Dixebral": 1694767093,
         "Eugenia1976": 1703788200,
         "Patappui": 1720989313,
         "Patricia369": 1734331892,
-        "mathieuBize": 1694491660,
-        "Koldo": 1694476063,
         "Cathy26": 1720910808,
         "Pilarpm": 1713402698,
         "bert": 1726942297
@@ -11535,9 +11706,9 @@
     "Robisar": {
       "index": 1737,
       "owner_key": "2rVYALGpuEmpsb5PcNrot7VPrbHnncKLAHRxiFZFEw3J",
-      "balance": 976507,
+      "balance": 1016193,
       "membership_expire_on": 1708101257,
-      "next_cert_issuable_on": 1692959092,
+      "next_cert_issuable_on": 1696754829,
       "certs_received": {
         "OlivierLa": 1725134771,
         "ElisaSalsa47": 1720028179,
@@ -11552,7 +11723,7 @@
     "DonQuichotte": {
       "index": 6125,
       "owner_key": "2ref3FKziAskwhbb9jQzd5SuTmexokcBpGc91jVbNY8f",
-      "balance": 682787,
+      "balance": 722473,
       "membership_expire_on": 1697548068,
       "next_cert_issuable_on": 1643116001,
       "certs_received": {
@@ -11575,7 +11746,7 @@
     "Brilli": {
       "index": 11848,
       "owner_key": "2rqwzTEdDWF9VTdm3SxQKXzATUALjBnYCEBP7p2UkViC",
-      "balance": 286146,
+      "balance": 312832,
       "membership_expire_on": 1709231898,
       "next_cert_issuable_on": 1678872724,
       "certs_received": {
@@ -11591,9 +11762,9 @@
     "fournaise1": {
       "index": 4618,
       "owner_key": "2s8sTNw7bu3rMBuv8HyEzC1eHNAEQKQYKNHMXB9HWiHi",
-      "balance": 480941,
+      "balance": 120627,
       "membership_expire_on": 1704204974,
-      "next_cert_issuable_on": 1672792796,
+      "next_cert_issuable_on": 1696421108,
       "certs_received": {
         "ThomasDesaunay": 1735853002,
         "LiliMag": 1737680968,
@@ -11614,7 +11785,7 @@
     "midchaz": {
       "index": 10138,
       "owner_key": "2sNVYJL1nMyB9ZTbCDpK24N2KUP5rN31EjVkqdxoQ9LS",
-      "balance": 338158,
+      "balance": 377844,
       "membership_expire_on": 1698321040,
       "next_cert_issuable_on": 1676603413,
       "certs_received": {
@@ -11638,9 +11809,9 @@
     "1000i100": {
       "index": 72,
       "owner_key": "2sZF6j2PkxBDNAqUde7Dgo5x3crkerZpQ4rBqqJGn8QT",
-      "balance": 4679373,
+      "balance": 3974753,
       "membership_expire_on": 1708873585,
-      "next_cert_issuable_on": 1693502391,
+      "next_cert_issuable_on": 1694620286,
       "certs_received": {
         "Celiane": 1698050477,
         "Julia": 1700689693,
@@ -11655,8 +11826,8 @@
         "Cha": 1700885207,
         "mably": 1698978992,
         "OlivierLa": 1751308362,
+        "JerryBB": 1757860640,
         "Pini": 1754014857,
-        "ArnaudFleuri": 1695512797,
         "Pol": 1713573657,
         "Elisourire": 1701373998,
         "WilliamWeber": 1718001704,
@@ -11670,15 +11841,16 @@
         "AnnePicard": 1715809641,
         "Marnoazz": 1735038393,
         "Krugor": 1719421139,
+        "Beluganne": 1758931663,
         "Marylou": 1699592109
       }
     },
     "Foxy": {
       "index": 3012,
       "owner_key": "2saaq6zLYcKyJh5pMs2vgPu92KJM4swoSN6ZJ2kL1Zrr",
-      "balance": 1264531,
+      "balance": 1304217,
       "membership_expire_on": 1721015484,
-      "next_cert_issuable_on": 1691908526,
+      "next_cert_issuable_on": 1695192148,
       "certs_received": {
         "MilaChavez": 1703219085,
         "nenuphar": 1709002643,
@@ -11689,11 +11861,9 @@
         "phil3455": 1706514748,
         "Swann": 1737711000,
         "Cerisecoeur": 1727936777,
-        "DidierLoquin": 1693507469,
         "FabriceKa": 1749162216,
         "AniA": 1749405282,
         "JOJO": 1709348827,
-        "ZZR": 1694853846,
         "Malice26": 1733882821,
         "OlivierDubigeon": 1749325929,
         "MelliaGaia": 1703264560,
@@ -11703,21 +11873,22 @@
         "Enjolras14": 1701888094,
         "LEO": 1702253682,
         "ChristineWilloth26": 1707462985,
-        "Louloukipet": 1695462862,
-        "OLDBLACK84": 1703380341,
-        "AnneT": 1694853458
+        "OLDBLACK84": 1703380341
       }
     },
     "DyanZan_Gce": {
       "index": 12801,
       "owner_key": "2svLoN5PSDTntJj4ZWYgsJVFdotxWxw9nLytpVHEY32n",
-      "balance": 193852,
+      "balance": 186338,
       "membership_expire_on": 1716947551,
-      "next_cert_issuable_on": 1691397648,
+      "next_cert_issuable_on": 1696261635,
       "certs_received": {
         "MaudD": 1748591515,
         "GUL40_Fr1": 1748583163,
+        "JeanChristopheSekinger": 1755619676,
         "GUL40_K1r": 1748600850,
+        "123Marie": 1759294909,
+        "MuleRetive": 1756853483,
         "denizen": 1748980645,
         "marmotte32": 1748634987,
         "eln": 1754345750
@@ -11734,7 +11905,7 @@
     "Maryc": {
       "index": 9332,
       "owner_key": "2sy6x9ptA7YoiiHVETYHJewycMPF6wDWn5ePnWaYqg9C",
-      "balance": 512054,
+      "balance": 551740,
       "membership_expire_on": 1719447193,
       "next_cert_issuable_on": 1672307500,
       "certs_received": {
@@ -11758,9 +11929,9 @@
     "FrancisBperso": {
       "index": 11783,
       "owner_key": "2szUawx2NeDpKTtq9FnrTA5wsxsAK9CJ7Gg5Ka5BpjNp",
-      "balance": 169282,
+      "balance": 208968,
       "membership_expire_on": 1706826067,
-      "next_cert_issuable_on": 1693375399,
+      "next_cert_issuable_on": 1694532499,
       "certs_received": {
         "diablade": 1740339752,
         "TataCC": 1740629089,
@@ -11768,6 +11939,7 @@
         "TristTDW": 1740629373,
         "ChristianMichelChampon": 1753930909,
         "Bzh38": 1740451877,
+        "VincentMercier": 1756745676,
         "kerhas": 1746831553,
         "iserunelosangE": 1756255275,
         "yannig": 1740602264
@@ -11776,7 +11948,7 @@
     "Intercanvi": {
       "index": 8815,
       "owner_key": "2t1EDq9fvBdgVCcQGVsmxy8rVdQRrvWDwhk43Rvf6T8Y",
-      "balance": 368781,
+      "balance": 409127,
       "membership_expire_on": 1716817144,
       "next_cert_issuable_on": 1685922540,
       "certs_received": {
@@ -11796,8 +11968,8 @@
     "Rhodiola73": {
       "index": 9509,
       "owner_key": "2t25No7WyDGTW3U1mrKTSbadoehGs91b8W2vqo1tZipT",
-      "balance": 378238,
-      "membership_expire_on": 1694201195,
+      "balance": 386782,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673149912,
       "certs_received": {
         "Flocon": 1726003661,
@@ -11832,7 +12004,7 @@
     "AuroreMarie": {
       "index": 10012,
       "owner_key": "2tCTdT1Snxu3XgknswY8rpdqg8kLJJP42a92qXoPZHrW",
-      "balance": 342052,
+      "balance": 381738,
       "membership_expire_on": 1697820615,
       "next_cert_issuable_on": 1675418718,
       "certs_received": {
@@ -11864,9 +12036,9 @@
     "ChristelR": {
       "index": 10705,
       "owner_key": "2tNS63fvM1VUHuw1xHijWncGvpF777wioEdzbpTKPbay",
-      "balance": 198028,
+      "balance": 207714,
       "membership_expire_on": 1701368854,
-      "next_cert_issuable_on": 1690897393,
+      "next_cert_issuable_on": 1693747123,
       "certs_received": {
         "Lotus1304": 1750801509,
         "AudreyHesseling": 1732927202,
@@ -11889,7 +12061,7 @@
     "Isabelle11": {
       "index": 12304,
       "owner_key": "2tQNTcQHaQ99WdrYYYhCecF2yN8i2L1Ezm8cM2hPTF5r",
-      "balance": 152724,
+      "balance": 192410,
       "membership_expire_on": 1712167091,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -11919,7 +12091,7 @@
     "PhilippeGua53": {
       "index": 6501,
       "owner_key": "2tWizNXv6z5ohCBNpyaR68rbbYAakQoA8nJuwrMzypk8",
-      "balance": 218766,
+      "balance": 224112,
       "membership_expire_on": 1724372592,
       "next_cert_issuable_on": 1687018751,
       "certs_received": {
@@ -11951,9 +12123,9 @@
     "Polo": {
       "index": 12811,
       "owner_key": "2tYqamG7wDAwHNXeDgqYvzYA2FgULcVNFbx4u6nvDprD",
-      "balance": 89349,
+      "balance": 116235,
       "membership_expire_on": 1716831629,
-      "next_cert_issuable_on": 1688790885,
+      "next_cert_issuable_on": 1695529976,
       "certs_received": {
         "jerometiny": 1752457478,
         "Golly": 1748886719,
@@ -11961,6 +12133,7 @@
         "Lolottethered": 1748391847,
         "CatherineLouis": 1749062450,
         "Filou": 1755938166,
+        "Cleo59": 1758999686,
         "Mazurka": 1749005347,
         "JulieD": 1749059718
       }
@@ -11976,7 +12149,7 @@
     "Bichejos": {
       "index": 11321,
       "owner_key": "2tkcsy6qsT9qdjWNWAhHretMMvocaQUZkbekKy4LNK93",
-      "balance": 145477,
+      "balance": 132663,
       "membership_expire_on": 1706032795,
       "next_cert_issuable_on": 1677499681,
       "certs_received": {
@@ -11991,7 +12164,7 @@
     "DoumeCM": {
       "index": 8751,
       "owner_key": "2tn5g72J51bpu7wPFHXiF2N2ZsURtTPpo7gMLSXa5eqZ",
-      "balance": 421910,
+      "balance": 461596,
       "membership_expire_on": 1716400627,
       "next_cert_issuable_on": 1680400722,
       "certs_received": {
@@ -12010,35 +12183,41 @@
     "DaniailesA": {
       "index": 6774,
       "owner_key": "2tvf7SVZhpPLJpZ9kSp7mCK4X5HVMQycB1gDbytnkpiZ",
-      "balance": 796589,
+      "balance": 836275,
       "membership_expire_on": 1701192135,
-      "next_cert_issuable_on": 1693105689,
+      "next_cert_issuable_on": 1694069822,
       "certs_received": {
         "AnyesOlek": 1748470379,
         "Tot16": 1750178179,
         "Unomasuno": 1724581578,
         "Chaton": 1724580133,
+        "Anetheps": 1759360393,
         "Armelluna": 1721958845,
         "JulienVigier": 1706073340,
         "Maiwenn": 1714535391,
         "Manou": 1725332273,
         "Hina88": 1736051716,
         "Agnes71": 1711227331,
+        "LibelluleNoe": 1758686225,
         "JeanneFlowJ": 1746059027,
         "JohannFox": 1715147542,
         "Vlad": 1724593223,
         "Pllumes": 1724196201,
+        "ZimG": 1756084688,
         "Sylharmonie": 1728405040,
         "Coco-B": 1715231134,
         "Swaruu": 1727460382,
+        "Ginou17": 1757354450,
         "Plumedange": 1714516761,
         "RegnierLefur45": 1750204287,
         "AgnesDallaVijaya": 1756520915,
         "123Marie": 1755100933,
+        "Mistigri": 1757956544,
         "Junoel": 1704530303,
         "Fannyhihihi": 1704270709,
         "RobinRoni": 1704669526,
         "Annblue": 1724585759,
+        "Gawawelle": 1758659001,
         "JoW": 1703106288,
         "AlexisCharrier": 1720150458,
         "VanessaVigier": 1706070241,
@@ -12050,6 +12229,7 @@
         "Chaweyane": 1704432328,
         "SamsFactory": 1715149319,
         "Amazinggoldenturf": 1744239926,
+        "eln": 1758666206,
         "Marylou": 1709752528
       }
     },
@@ -12064,7 +12244,7 @@
     "MaryleneB": {
       "index": 12041,
       "owner_key": "2uKy7JoWpjsUmykiUuhBR3RzM2YFbM1pFKWNkpfv6kzu",
-      "balance": 224261,
+      "balance": 263947,
       "membership_expire_on": 1710169098,
       "next_cert_issuable_on": 1686556532,
       "certs_received": {
@@ -12086,7 +12266,7 @@
     "Denismarcel": {
       "index": 3315,
       "owner_key": "2ugFN5vbmw6AE4swLDBpxfRgHBxoP7p9wRem2NZfYcrA",
-      "balance": 1315640,
+      "balance": 1355326,
       "membership_expire_on": 1708529853,
       "next_cert_issuable_on": 1646723526,
       "certs_received": {
@@ -12110,9 +12290,9 @@
     "MaudD": {
       "index": 7526,
       "owner_key": "2uhuvdkdcDp7YccF4hN7AWitVdytcRNdz85D5CMTrK4p",
-      "balance": 184475,
+      "balance": 114161,
       "membership_expire_on": 1705373791,
-      "next_cert_issuable_on": 1693379053,
+      "next_cert_issuable_on": 1694589356,
       "certs_received": {
         "kapis": 1745196051,
         "Cordeliaze": 1711697236,
@@ -12135,8 +12315,10 @@
         "PabloLykos": 1736919463,
         "GUL40_K1r": 1714513273,
         "AnianaYpunto": 1732492025,
+        "Isabella": 1757443608,
         "Monicakoala": 1720153549,
         "Heimdall": 1730400793,
+        "jilguero": 1756275213,
         "maga65": 1711762369,
         "NadineGS": 1721032174,
         "JUAN51": 1717477212,
@@ -12164,7 +12346,7 @@
     "Mattice": {
       "index": 7366,
       "owner_key": "2ujrDdUxEMMm2y2jFKZwdNBQ39ytGSWFmECdWoKszZxA",
-      "balance": 424312,
+      "balance": 463998,
       "membership_expire_on": 1704576194,
       "next_cert_issuable_on": 1677896934,
       "certs_received": {
@@ -12200,7 +12382,7 @@
     "Milan": {
       "index": 2030,
       "owner_key": "2uu7zFBG21mrfttGWWM9HdfMwXfKvLo2qKbjsYQZYnom",
-      "balance": 1572526,
+      "balance": 1612212,
       "membership_expire_on": 1701270894,
       "next_cert_issuable_on": 1686108170,
       "certs_received": {
@@ -12215,14 +12397,13 @@
         "MaryseD": 1741986436,
         "Laila": 1742596532,
         "annefreda": 1701069921,
-        "magicplanet88": 1741022812,
-        "SanjaAnanda": 1696118053
+        "magicplanet88": 1741022812
       }
     },
     "Taknara": {
       "index": 10924,
       "owner_key": "2uvFBdaMsSoMAvg1DMD4Yy7x3fnxc9SUQVMPJdiwRxkN",
-      "balance": 52012,
+      "balance": 36218,
       "membership_expire_on": 1724609271,
       "next_cert_issuable_on": 1679770484,
       "certs_received": {
@@ -12245,7 +12426,7 @@
     "HazaiIsambert": {
       "index": 6312,
       "owner_key": "2uxtuSo8nxb4BaV3eApnGKp92MC22iPwFRHywHq99oBE",
-      "balance": 551752,
+      "balance": 591438,
       "membership_expire_on": 1705857028,
       "next_cert_issuable_on": 1642434717,
       "certs_received": {
@@ -12269,17 +12450,15 @@
         "VeroniqueDutru": 1701317560,
         "EricBeaute": 1699677569,
         "DelphineParel": 1702100009,
-        "MichelK": 1696457122,
         "Meriem": 1704596425,
         "Jean": 1741320003,
-        "SandrineMoulinHenon": 1694154938,
         "MickaelAnanda": 1723514788
       }
     },
     "AnnaLisa": {
       "index": 8063,
       "owner_key": "2v2K9HzpqUfCvUYyrDZsmfjqp4hDnxTA8GWAr7ivYK6s",
-      "balance": 496787,
+      "balance": 536473,
       "membership_expire_on": 1711055305,
       "next_cert_issuable_on": 1671296015,
       "certs_received": {
@@ -12293,7 +12472,7 @@
     "SvayamFred": {
       "index": 12277,
       "owner_key": "2v5hGGDRLxKumL18GgEPFhRqoiTHsqmW74Uz5yycRYS4",
-      "balance": 103810,
+      "balance": 128378,
       "membership_expire_on": 1712336454,
       "next_cert_issuable_on": 1690726625,
       "certs_received": {
@@ -12318,7 +12497,7 @@
       "owner_key": "2vC2hRUm8H4DPyCNDXwKJT5otkrJEUh9uQch6YtstTUm",
       "balance": 696237,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632736399,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Champa108": 1704569553
       }
@@ -12326,13 +12505,12 @@
     "Estello": {
       "index": 3796,
       "owner_key": "2vCtBnX8JaUCp4kvhP7ghUNvxjkDSfcBoVVdbYMKh6ik",
-      "balance": 1006034,
+      "balance": 1075720,
       "membership_expire_on": 1719022760,
       "next_cert_issuable_on": 1672841014,
       "certs_received": {
         "philboybada63": 1740863566,
         "thierryguerin": 1739422922,
-        "KM974": 1694647686,
         "AnnL": 1714610966,
         "Philippeleblanc": 1708561658,
         "bonohm05": 1719258763,
@@ -12359,9 +12537,9 @@
     "Ccil": {
       "index": 10692,
       "owner_key": "2vFrehPJ443cDm8AQxy6BSBQ8enbQQw54vSTdh3qfXeq",
-      "balance": 301515,
+      "balance": 339201,
       "membership_expire_on": 1701261464,
-      "next_cert_issuable_on": 1683731547,
+      "next_cert_issuable_on": 1695222121,
       "certs_received": {
         "Chantal": 1733357780,
         "PaulSavoielibre": 1733279098,
@@ -12392,8 +12570,8 @@
     "PaulSavoielibre": {
       "index": 9440,
       "owner_key": "2vSd3FA9TMSwYnvtpY1mYhTEGagggoXoWDvvTGu4veDT",
-      "balance": 716461,
-      "membership_expire_on": 1694024423,
+      "balance": 730793,
+      "membership_expire_on": 1727559317,
       "next_cert_issuable_on": 1673273445,
       "certs_received": {
         "puce": 1725605759,
@@ -12416,7 +12594,7 @@
     "Cami": {
       "index": 8696,
       "owner_key": "2vYTWRmYRdLd4sR2RAfcytrEtzARoJSVnNj6yECuAPBW",
-      "balance": 455114,
+      "balance": 494800,
       "membership_expire_on": 1701871679,
       "next_cert_issuable_on": 1657081789,
       "certs_received": {
@@ -12437,9 +12615,9 @@
     "MarieCathou": {
       "index": 11204,
       "owner_key": "2vZxuWwMBQS32kQxCFSz4joVJ2FSBigS6ccR769xSgLb",
-      "balance": 248596,
+      "balance": 291282,
       "membership_expire_on": 1705082260,
-      "next_cert_issuable_on": 1693149779,
+      "next_cert_issuable_on": 1695890784,
       "certs_received": {
         "Flore45": 1751910966,
         "Elyse33": 1736711475,
@@ -12499,14 +12677,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1635562068,
       "certs_received": {
-        "sauveepargrace": 1719436547,
-        "domenechmanu": 1695310563
+        "sauveepargrace": 1719436547
       }
     },
     "Stef38": {
       "index": 8448,
       "owner_key": "2vtNxkJBF7aVHfTVugmBUbPyAXMzeKnE8K9aMgYFFXn3",
-      "balance": 356579,
+      "balance": 406265,
       "membership_expire_on": 1712977182,
       "next_cert_issuable_on": 1686548739,
       "certs_received": {
@@ -12536,7 +12713,6 @@
       "next_cert_issuable_on": 1667618782,
       "certs_received": {
         "lydiemdb": 1749168667,
-        "Adri46": 1693875530,
         "PierrePierreR": 1733857203,
         "ArletB": 1730997089,
         "Carolonsdonc": 1711521355
@@ -12545,8 +12721,8 @@
     "LaMatriarcaToro": {
       "index": 10456,
       "owner_key": "2vxva5yqjpMZ4TbCA38gVqz6F3zgmCR3NeCu1F1bUQsn",
-      "balance": 309223,
-      "membership_expire_on": 1699439489,
+      "balance": 310409,
+      "membership_expire_on": 1726708322,
       "next_cert_issuable_on": 1691429257,
       "certs_received": {
         "Aguas": 1731910648,
@@ -12575,8 +12751,8 @@
     "Vee": {
       "index": 5807,
       "owner_key": "2w7RS9oF8XsgC3fqqSrBn5qjw6JRz9m529ADeRBsHmYw",
-      "balance": 728571,
-      "membership_expire_on": 1696107451,
+      "balance": 768257,
+      "membership_expire_on": 1727700529,
       "next_cert_issuable_on": 1671189149,
       "certs_received": {
         "Ded": 1725405385,
@@ -12595,9 +12771,9 @@
     "Miriam3": {
       "index": 11220,
       "owner_key": "2w9KjEkMojchM9v3iH12MuEBxtt6uAduZVUov3HNzFfu",
-      "balance": 184037,
+      "balance": 232123,
       "membership_expire_on": 1704565206,
-      "next_cert_issuable_on": 1688804833,
+      "next_cert_issuable_on": 1693808046,
       "certs_received": {
         "SalinJL": 1736536946,
         "Luluzlb": 1736509700,
@@ -12612,7 +12788,7 @@
     "MarciaBaila": {
       "index": 10253,
       "owner_key": "2w9wZcb6zDWZ1FBy3D17wvZsLG7LfrEW1fWDF6F7gcyj",
-      "balance": 329831,
+      "balance": 369517,
       "membership_expire_on": 1697827529,
       "next_cert_issuable_on": 1669022085,
       "certs_received": {
@@ -12641,7 +12817,7 @@
     "NicolasL": {
       "index": 4835,
       "owner_key": "2wDDXtYnAP4Swbee8wu2FZuFph4st6C2E59ETy5dv4pe",
-      "balance": 969953,
+      "balance": 1009639,
       "membership_expire_on": 1707951320,
       "next_cert_issuable_on": 1647229726,
       "certs_received": {
@@ -12655,8 +12831,8 @@
     "sfouludo": {
       "index": 1171,
       "owner_key": "2wEAMN9ZhpdTnteHEw5fXncWEBs4SRx2bCAYTQ7fr57R",
-      "balance": 129228,
-      "membership_expire_on": 1700771200,
+      "balance": 168914,
+      "membership_expire_on": 1727732364,
       "next_cert_issuable_on": 1692688887,
       "certs_received": {
         "fdrubigny": 1713314095,
@@ -12675,19 +12851,16 @@
       "next_cert_issuable_on": 1680490352,
       "certs_received": {
         "BlandineGABE": 1742530047,
-        "Ingriddevendee": 1693544026,
         "Valerieptjn17": 1718506951,
-        "Titem": 1693632125,
         "Sylmon": 1728628596,
         "Lilibellule": 1728629157,
-        "IsabelleLR": 1693892131,
         "Domyrhapsody": 1726594912
       }
     },
     "KCINNA": {
       "index": 7372,
       "owner_key": "2wPCvFh3PGyzamemuoatKrdiorTbGaubQX6ZEsUJUA5q",
-      "balance": 465159,
+      "balance": 494845,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1669630868,
       "certs_received": {
@@ -12704,8 +12877,8 @@
     "nenuphar": {
       "index": 6033,
       "owner_key": "2wRGNyifjpFAMauuYSwFBmhUtNvLtANwfjw7nBkuDsLZ",
-      "balance": 686707,
-      "membership_expire_on": 1693838600,
+      "balance": 725325,
+      "membership_expire_on": 1725552086,
       "next_cert_issuable_on": 1678458120,
       "certs_received": {
         "Mandine1": 1741846597,
@@ -12725,7 +12898,7 @@
     "odilemauret": {
       "index": 7653,
       "owner_key": "2wRSAaMqqb3ubXhvKZ6e6KqcwhKNywYpyrYEYXWLyF5H",
-      "balance": 461341,
+      "balance": 501027,
       "membership_expire_on": 1711582110,
       "next_cert_issuable_on": 1690798489,
       "certs_received": {
@@ -12743,7 +12916,7 @@
     "Silvi": {
       "index": 11339,
       "owner_key": "2wgbcn77iGuKoTZiKTFGAo9ejxZfnKjxSJqikVmmxvyp",
-      "balance": 225504,
+      "balance": 258590,
       "membership_expire_on": 1706141888,
       "next_cert_issuable_on": 1693212799,
       "certs_received": {
@@ -12776,6 +12949,7 @@
         "Fer": 1737702618,
         "EMA": 1753403921,
         "OM-Ostepatia-eta-Masajea": 1737700591,
+        "IbanNikolai": 1756881433,
         "AndresXaudi": 1749486704,
         "lachispis": 1742411922
       }
@@ -12783,7 +12957,7 @@
     "PatTy": {
       "index": 10942,
       "owner_key": "2wh2jw7BxyKc67KwVSpvvRtexhdghMaPwbDPLfgvokRz",
-      "balance": 253194,
+      "balance": 292880,
       "membership_expire_on": 1702512094,
       "next_cert_issuable_on": 1687844493,
       "certs_received": {
@@ -12801,7 +12975,7 @@
     "Chago": {
       "index": 8413,
       "owner_key": "2wkhx3rJfdg1bYDyBVj3QCYM9Xq1Vc8TvQQR6BWpiPN6",
-      "balance": 402134,
+      "balance": 441820,
       "membership_expire_on": 1712777131,
       "next_cert_issuable_on": 1666272133,
       "certs_received": {
@@ -12818,8 +12992,8 @@
     "MicheleC": {
       "index": 9523,
       "owner_key": "2wmxiCDLux1WAVS5cNCZv9o52R2e7KEATcBa7vREap8d",
-      "balance": 396687,
-      "membership_expire_on": 1694637877,
+      "balance": 410571,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1674722885,
       "certs_received": {
         "GwendallLG": 1726195477,
@@ -12834,16 +13008,19 @@
     "Malene": {
       "index": 9781,
       "owner_key": "2wrGZoCy2xhcpLr3EDshxA2NKkMco1NSTma91fDF55nV",
-      "balance": 149705,
+      "balance": 124091,
       "membership_expire_on": 1721140374,
-      "next_cert_issuable_on": 1687410448,
+      "next_cert_issuable_on": 1696252065,
       "certs_received": {
+        "Beatis": 1756706556,
         "NopamasYC": 1727558946,
+        "Toutvabien": 1756952976,
         "ElieLombard": 1733198062,
         "IsaM": 1733196798,
         "Benedicte38": 1726109847,
         "Chouquette": 1751506260,
         "Tell": 1727569800,
+        "LibertyFran": 1759517698,
         "Ravintsara": 1729310679,
         "LEL": 1727931566,
         "LaurentM": 1726113216
@@ -12852,16 +13029,14 @@
     "GuyDelarche": {
       "index": 5861,
       "owner_key": "2wvTF95EwhKoP96Q6u6q1f4TohKmBivSbRUJygbQo2VU",
-      "balance": 2907103,
+      "balance": 2946789,
       "membership_expire_on": 1722526587,
       "next_cert_issuable_on": 1679471469,
       "certs_received": {
         "MilaChavez": 1755629597,
         "Amg": 1716211473,
-        "michaelopdenacker": 1694994243,
         "RosadoraLafee": 1701119269,
         "Meiluce": 1717706899,
-        "Lutinsolite": 1695975848,
         "Ezoriann": 1706384478,
         "Rlov": 1709587165,
         "NumpaWicahpi": 1714846923,
@@ -12880,13 +13055,14 @@
     "Anneke": {
       "index": 9399,
       "owner_key": "2x1ekvQMrLbRpigmBxZM5sesMgBY2ASiwAbzsBbN8WNf",
-      "balance": 385748,
-      "membership_expire_on": 1693744072,
-      "next_cert_issuable_on": 0,
+      "balance": 416134,
+      "membership_expire_on": 1726014350,
+      "next_cert_issuable_on": 1695694090,
       "certs_received": {
         "NancyAlexia": 1725304053,
         "MarieL": 1725305736,
         "SilviaM": 1725308909,
+        "Fab": 1757572519,
         "Rosalie": 1725301672,
         "Denis": 1725302253
       }
@@ -12894,7 +13070,7 @@
     "NancyAlexia": {
       "index": 8681,
       "owner_key": "2x3i7s9FDhauoqxTUWyu2BNUUsBVeu4rjJWSGoUQLs28",
-      "balance": 448589,
+      "balance": 486217,
       "membership_expire_on": 1715017793,
       "next_cert_issuable_on": 1684037190,
       "certs_received": {
@@ -12923,7 +13099,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Aude49": 1693985046,
         "Princesse": 1730918105,
         "RoselyneBinesse": 1730875621,
         "Christal": 1731088499
@@ -12934,13 +13109,13 @@
       "owner_key": "2xB2TLvKS9FJJiLpe5ucEGGQM9zE7vDG7tNuuFk3a56R",
       "balance": 365438,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632710125,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "CharlieMurjas": {
       "index": 3904,
       "owner_key": "2xVtS5vYbNjYvVYccnVwMSWQnXuYWEGnaezGDdGxaPgC",
-      "balance": 961948,
+      "balance": 1001634,
       "membership_expire_on": 1708035743,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -12964,7 +13139,7 @@
     "SergeDuCayre": {
       "index": 12314,
       "owner_key": "2xagadAfGfbimCU21mmWbMQgn6LB5ZvBA9QL7hkEuq15",
-      "balance": 151656,
+      "balance": 181342,
       "membership_expire_on": 1710094211,
       "next_cert_issuable_on": 1688816563,
       "certs_received": {
@@ -12978,17 +13153,19 @@
     "FabiH": {
       "index": 12576,
       "owner_key": "2xd9VQDWgWNz3WvPPjuJzeZAzW4JKMCHJMWEGiR5xST6",
-      "balance": 357488,
+      "balance": 406974,
       "membership_expire_on": 1714927822,
-      "next_cert_issuable_on": 1692756063,
+      "next_cert_issuable_on": 1694306585,
       "certs_received": {
         "Moudom": 1746597839,
         "Warrior": 1746638785,
         "Antunesmi": 1750050079,
         "STEPHEUSE": 1752313558,
+        "Jujupapa": 1757299930,
         "Benji": 1750049403,
         "Rosiro": 1746591028,
         "BrunoHendricks": 1746631447,
+        "Petfa": 1758039947,
         "Ceciletricoteuse": 1746600012
       }
     },
@@ -13012,7 +13189,7 @@
     "Hava_bien": {
       "index": 7146,
       "owner_key": "2xrpJGiLTxjPxf8fyx5SBNxpL9K1vWyxoxS7Nt9EMpek",
-      "balance": 113564,
+      "balance": 121250,
       "membership_expire_on": 1703996126,
       "next_cert_issuable_on": 1690978792,
       "certs_received": {
@@ -13037,7 +13214,7 @@
     "Michel97414": {
       "index": 9207,
       "owner_key": "2xu15HD88hQ3YQxgq2hHAnQDifAX5eAnEHZ1BWVatUAG",
-      "balance": 352166,
+      "balance": 381852,
       "membership_expire_on": 1719941395,
       "next_cert_issuable_on": 1688951635,
       "certs_received": {
@@ -13075,9 +13252,9 @@
     "GautierEthan": {
       "index": 10485,
       "owner_key": "2y8oTuRzwbtkEfjNS4PM7AiiHdwnv1Er6yUw6z6WJkaa",
-      "balance": 51512,
+      "balance": 89698,
       "membership_expire_on": 1700323119,
-      "next_cert_issuable_on": 1688460222,
+      "next_cert_issuable_on": 1695180338,
       "certs_received": {
         "GybelsJosee": 1732335175,
         "Moudom": 1731895257,
@@ -13091,8 +13268,8 @@
     "Brunop": {
       "index": 11171,
       "owner_key": "2y9JfBsq6vZHcQEFzbR26eNkT6gsRPRVMK5xvYzv5SMD",
-      "balance": 1081384,
-      "membership_expire_on": 1700917472,
+      "balance": 1121071,
+      "membership_expire_on": 1727946548,
       "next_cert_issuable_on": 1682774082,
       "certs_received": {
         "SandrineMala": 1736461081,
@@ -13119,7 +13296,7 @@
     "GildasMalassinet": {
       "index": 73,
       "owner_key": "2yN8BRSkARcqE8NCxKMBiHfTpx1EvwULFn56Myf6qRmy",
-      "balance": 810953,
+      "balance": 850639,
       "membership_expire_on": 1713311748,
       "next_cert_issuable_on": 1670775130,
       "certs_received": {
@@ -13139,7 +13316,7 @@
     "natakalibre": {
       "index": 11497,
       "owner_key": "2yQBCFiayFAo6x49aqUb299bRSCaBM41VNsq2TaJi2jx",
-      "balance": 330213,
+      "balance": 369899,
       "membership_expire_on": 1707087978,
       "next_cert_issuable_on": 1679825622,
       "certs_received": {
@@ -13177,12 +13354,26 @@
         "Aurore": 1717464042
       }
     },
+    "Bat08": {
+      "index": 13491,
+      "owner_key": "2ygnadcCdyUYKovMLRrJGitt8GS5DgdxNurPGa7LfhGa",
+      "balance": 52492,
+      "membership_expire_on": 1725298348,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "ClaireAzur": 1756930309,
+        "Shanty": 1756856213,
+        "Bibi06": 1756855948,
+        "guillaumedangin": 1756859141,
+        "Dez": 1756855948
+      }
+    },
     "larboleda897": {
       "index": 10034,
       "owner_key": "2ykQJXscJ8y3y8P9ThCmJa6J4nssFiAqZSqZvYu64kN7",
-      "balance": 221812,
-      "membership_expire_on": 1697552799,
-      "next_cert_issuable_on": 1680330167,
+      "balance": 222598,
+      "membership_expire_on": 1726936631,
+      "next_cert_issuable_on": 1695451031,
       "certs_received": {
         "JACA": 1729543641,
         "Justis": 1729543641,
@@ -13205,7 +13396,7 @@
     "Palladium13": {
       "index": 7097,
       "owner_key": "2ypYtNs5kVWzZYVbnaZKqXhX5FNd2giLkzbnrSk7AEcy",
-      "balance": 650438,
+      "balance": 690124,
       "membership_expire_on": 1705247474,
       "next_cert_issuable_on": 1680694979,
       "certs_received": {
@@ -13214,6 +13405,7 @@
         "Angel": 1738981347,
         "Magnolia25": 1736833022,
         "Zephyr01": 1708626511,
+        "SaoSampaio": 1759259875,
         "christine": 1708639148,
         "Bilitice": 1737610826,
         "JBM": 1708632014,
@@ -13224,7 +13416,7 @@
     "Eli25": {
       "index": 12125,
       "owner_key": "2yudPEXmUAvCnEU8QgjCmcNWeVfycdMzbTDw2ynCk4hr",
-      "balance": 491156,
+      "balance": 530842,
       "membership_expire_on": 1711030647,
       "next_cert_issuable_on": 1681124696,
       "certs_received": {
@@ -13241,8 +13433,8 @@
     "Maeva17": {
       "index": 10570,
       "owner_key": "2yvCigSU1XbAfiCvyeMxgffaHWp2H8n3HNcmEfioWTxg",
-      "balance": 299851,
-      "membership_expire_on": 1697480899,
+      "balance": 339537,
+      "membership_expire_on": 1726497795,
       "next_cert_issuable_on": 1674383096,
       "certs_received": {
         "Patledauphin17": 1732127972,
@@ -13265,9 +13457,9 @@
     "MaryMarie": {
       "index": 6999,
       "owner_key": "2z26DTHppnL4x7yPwiDtiXrFpsdUjRSkSo6QAFzXrSso",
-      "balance": 751215,
+      "balance": 807901,
       "membership_expire_on": 1702826870,
-      "next_cert_issuable_on": 1691221216,
+      "next_cert_issuable_on": 1696142062,
       "certs_received": {
         "Fan971": 1707881416,
         "Sandrak": 1719572966,
@@ -13280,10 +13472,12 @@
         "marie3106": 1743583619,
         "Jade971": 1707877729,
         "Greggwad": 1723629149,
+        "ChristineMontpellier": 1757319751,
         "bricodeur": 1708305147,
         "NathalieSF971": 1708235239,
         "Stan": 1720960095,
         "MOUCHE971": 1746502800,
+        "VALVALO": 1759470222,
         "ninie-1974": 1717833364,
         "Brig": 1715340049,
         "Corinnedeshaies": 1707984652,
@@ -13301,9 +13495,9 @@
     "DBuxerolle": {
       "index": 12443,
       "owner_key": "2z7zv9drMKdc9TsF8zBB7KBVuqUTBseUuaF2kRiorhu9",
-      "balance": 145168,
+      "balance": 176310,
       "membership_expire_on": 1713232017,
-      "next_cert_issuable_on": 1686324088,
+      "next_cert_issuable_on": 1695041521,
       "certs_received": {
         "Sunflower": 1745436508,
         "mimi": 1747544959,
@@ -13319,7 +13513,7 @@
     "jfa": {
       "index": 1137,
       "owner_key": "2zPsKcxC6eF1T3MZo4UEhKFyEBD1RwBLKwBYvR6mFDEu",
-      "balance": 1659506,
+      "balance": 1699192,
       "membership_expire_on": 1713369862,
       "next_cert_issuable_on": 1651551321,
       "certs_received": {
@@ -13361,9 +13555,9 @@
     "Ainat255": {
       "index": 8050,
       "owner_key": "2zeaXkfvUab1KwjSLwBGGmixypSDkJaM4X4gTri5HjxK",
-      "balance": 179836,
+      "balance": 183883,
       "membership_expire_on": 1709833019,
-      "next_cert_issuable_on": 1689860420,
+      "next_cert_issuable_on": 1696741721,
       "certs_received": {
         "kapis": 1714625618,
         "Cordeliaze": 1721334203,
@@ -13389,6 +13583,7 @@
         "YOSOYLUZ": 1714504766,
         "YasminLibertad": 1733128037,
         "Laurel": 1739337499,
+        "tereseta": 1758065394,
         "MariMardisfrutona": 1733390104,
         "ElenaMavida": 1714691988,
         "Runa_81": 1717353434,
@@ -13400,7 +13595,7 @@
     "Myriam": {
       "index": 12403,
       "owner_key": "2zfghvEWRGDejRVRKSFoRYYhu8EFGNPKm3cjxF5VpGqB",
-      "balance": 145976,
+      "balance": 185662,
       "membership_expire_on": 1710368362,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -13414,7 +13609,7 @@
     "GabriellaFugazzotto": {
       "index": 8827,
       "owner_key": "2zheBQKEdLThT4LAGoECixhtjmju9drD8cgLNs9TQscP",
-      "balance": 377404,
+      "balance": 417090,
       "membership_expire_on": 1717089942,
       "next_cert_issuable_on": 1669091895,
       "certs_received": {
@@ -13430,7 +13625,7 @@
     "RitApolinario": {
       "index": 11738,
       "owner_key": "2zzJg1GuXNMt5tYtV4VZRnZ997uU5kpKSiLctUzrqMCv",
-      "balance": 207118,
+      "balance": 246804,
       "membership_expire_on": 1708735963,
       "next_cert_issuable_on": 1688436590,
       "certs_received": {
@@ -13447,7 +13642,9 @@
         "DivinaC": 1747626663,
         "Sandalf": 1741308893,
         "StefaniaCamilla": 1744777416,
+        "Rahhui": 1758398531,
         "JorgeDraven": 1740294148,
+        "JoaoLestro": 1757809584,
         "ElisabeteMartins": 1740294148,
         "ManuelSoares": 1753755434
       }
@@ -13455,7 +13652,7 @@
     "OlivierM51": {
       "index": 10017,
       "owner_key": "312pZzbgHh3UQBMsz7tD8p3qqnGXiikHqm3VG5k2fKPj",
-      "balance": 345052,
+      "balance": 384738,
       "membership_expire_on": 1697649034,
       "next_cert_issuable_on": 1669787299,
       "certs_received": {
@@ -13471,8 +13668,8 @@
     "Nathreflexo": {
       "index": 9225,
       "owner_key": "316xePvKS4dFxaK5TQ4WCksy8QtYfN2PLBTnREy8QKJM",
-      "balance": 378127,
-      "membership_expire_on": 0,
+      "balance": 371063,
+      "membership_expire_on": 1727228442,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Amiel": 1723791029,
@@ -13485,7 +13682,7 @@
     "Labelleverte36": {
       "index": 11585,
       "owner_key": "318smoRB3T9yXPASYEyvxwEz2LruvoFHeZoac3Jk2sd8",
-      "balance": 217967,
+      "balance": 257653,
       "membership_expire_on": 1707748376,
       "next_cert_issuable_on": 1677152969,
       "certs_received": {
@@ -13499,8 +13696,8 @@
     "JosyObjat": {
       "index": 8704,
       "owner_key": "319FQoovfVuYCscXvcYddT43tNC6j85EYhDPZNUynfA1",
-      "balance": 378235,
-      "membership_expire_on": 0,
+      "balance": 407241,
+      "membership_expire_on": 1725940743,
       "next_cert_issuable_on": 1680021194,
       "certs_received": {
         "Francois-Rose": 1719547662,
@@ -13516,17 +13713,15 @@
     "Niamor": {
       "index": 3311,
       "owner_key": "31BPfDN7DDLSzaynV3Xyg7BNzoRwsG1m7XTA3BvxSutJ",
-      "balance": 989994,
+      "balance": 1029680,
       "membership_expire_on": 1701887179,
       "next_cert_issuable_on": 1639198397,
       "certs_received": {
         "Underscore": 1698200335,
-        "AudreyHesseling": 1694065432,
         "AnneLadragonitta": 1698255610,
         "berangere": 1710116160,
         "BisQI": 1698369336,
         "marienarjoux": 1696922166,
-        "Demosthene": 1696027612,
         "Chloeremy": 1719493194
       }
     },
@@ -13538,12 +13733,26 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "RobinCh": {
+      "index": 13624,
+      "owner_key": "31JjfstQCYFMvnW65C6SjkC2sd46Lq3cMAEa2zyxcPc1",
+      "balance": 23326,
+      "membership_expire_on": 1723138089,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "FernandP": 1758423900,
+        "JonathanCh": 1758432073,
+        "MarieMas": 1758438273,
+        "Muriel": 1758428210,
+        "MPaule": 1758476240
+      }
+    },
     "OrianeKatyDanse": {
       "index": 6735,
       "owner_key": "31K6s6hZcvTR7MchDmvNxRAFvp32g3MbmXu1mDLGriFK",
-      "balance": 552964,
+      "balance": 592650,
       "membership_expire_on": 1707334142,
-      "next_cert_issuable_on": 1681017424,
+      "next_cert_issuable_on": 1691553033,
       "certs_received": {
         "Clochette": 1705817265,
         "Crystal": 1705007141,
@@ -13562,7 +13771,7 @@
     "Berton26": {
       "index": 10120,
       "owner_key": "31Ldm9mr4yaZJMMGq4cQFpCrJKzvwQdRDyfcfe4PBgWZ",
-      "balance": 326521,
+      "balance": 366207,
       "membership_expire_on": 1697928308,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -13576,7 +13785,7 @@
     "Forza_Mata": {
       "index": 11505,
       "owner_key": "31RuwktJS72xmWf5MbcxBHNKVFPfkLwMdwPSDAEBn3nS",
-      "balance": 219562,
+      "balance": 244248,
       "membership_expire_on": 1707170357,
       "next_cert_issuable_on": 1684466691,
       "certs_received": {
@@ -13590,7 +13799,7 @@
     "Choub": {
       "index": 3460,
       "owner_key": "31U5fjzVrtsqguZv5hVLqU1ZG8o6AuXF3rCtr6fcnrt4",
-      "balance": 416885,
+      "balance": 456571,
       "membership_expire_on": 1703979772,
       "next_cert_issuable_on": 1685368742,
       "certs_received": {
@@ -13614,12 +13823,13 @@
     "Urbez": {
       "index": 9401,
       "owner_key": "31mZ64PuzPh3GFX25CnfcwDLtjuWaQn5nLTb3dPgNGCT",
-      "balance": 211537,
+      "balance": 201223,
       "membership_expire_on": 1722767555,
       "next_cert_issuable_on": 1687499475,
       "certs_received": {
         "MAILURROZ": 1725301672,
         "Belobal": 1725298355,
+        "Naniestelar": 1755824733,
         "EstefaniaLopez": 1725126326,
         "Isabella": 1726870257,
         "llanero": 1730868208,
@@ -13633,7 +13843,7 @@
     "Darks": {
       "index": 1386,
       "owner_key": "328JbXbvU9wE8EPUrXf7Qz2PpSZzfPevAxQJuvNm1hA9",
-      "balance": 1174972,
+      "balance": 1214658,
       "membership_expire_on": 1704813868,
       "next_cert_issuable_on": 1681298722,
       "certs_received": {
@@ -13649,7 +13859,7 @@
     "Envol": {
       "index": 5449,
       "owner_key": "32AAs3M3Y6xhnSU7mcqo3JbtTKLTxRauEUmq78EnPDDa",
-      "balance": 805857,
+      "balance": 845543,
       "membership_expire_on": 1711387733,
       "next_cert_issuable_on": 1692983569,
       "certs_received": {
@@ -13670,9 +13880,9 @@
     "Natalya71": {
       "index": 10035,
       "owner_key": "32AacZRdExmQoetvwRGtSb7hraZoovGhRbRZSSXuenAn",
-      "balance": 678735,
-      "membership_expire_on": 1694643928,
-      "next_cert_issuable_on": 1686495858,
+      "balance": 789445,
+      "membership_expire_on": 1726785665,
+      "next_cert_issuable_on": 1696261635,
       "certs_received": {
         "SvetRuskof": 1744405693,
         "CHRISTIANE": 1729028248,
@@ -13693,6 +13903,7 @@
         "Sha": 1738376616,
         "ELY": 1739068661,
         "MarcArdeneus": 1737010536,
+        "Sandroo": 1759344782,
         "Hdsaf": 1749983245,
         "Gigila": 1738896233,
         "Cin": 1736331645,
@@ -13702,9 +13913,9 @@
     "Yassin": {
       "index": 1397,
       "owner_key": "32DRXvVv6khqCpNiM7oyB13Hh97UYpyoy4KEYMNYkZYe",
-      "balance": 1350066,
+      "balance": 1389752,
       "membership_expire_on": 1717607383,
-      "next_cert_issuable_on": 1686122000,
+      "next_cert_issuable_on": 1694691334,
       "certs_received": {
         "Crystal": 1750696264,
         "MarieOuf": 1721034119,
@@ -13716,13 +13927,13 @@
         "Papillote": 1721611027,
         "Do11": 1738278188,
         "Summerinfinity": 1729812156,
-        "annefreda": 1697565037
+        "annefreda": 1759111260
       }
     },
     "SalinJL": {
       "index": 7260,
       "owner_key": "32Kwm6PZkNBHVxeRUFbi1rWSRbSLjfDR8cojkquRYWsV",
-      "balance": 325241,
+      "balance": 385127,
       "membership_expire_on": 1704153251,
       "next_cert_issuable_on": 1688197917,
       "certs_received": {
@@ -13763,7 +13974,7 @@
     "SABEnchanteuse": {
       "index": 12998,
       "owner_key": "32UgK8XoUqpSJAjXasjaoaGxwzkGbhCdeH2ixxQ7vq8W",
-      "balance": 70488,
+      "balance": 110174,
       "membership_expire_on": 1717244434,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -13779,7 +13990,7 @@
     "uma": {
       "index": 11998,
       "owner_key": "32WXWfoA7nPwejhgsdJ8y2ANVc7LZoGwFcyvwgKz6eDN",
-      "balance": 306138,
+      "balance": 342824,
       "membership_expire_on": 1710248203,
       "next_cert_issuable_on": 1690787254,
       "certs_received": {
@@ -13798,7 +14009,7 @@
     "Garance60": {
       "index": 13152,
       "owner_key": "32aMQPhQ2MK58uN7DkN1i3DnczSu9yjANWJyB7DmHVTj",
-      "balance": 56832,
+      "balance": 96518,
       "membership_expire_on": 1718564850,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -13809,6 +14020,20 @@
         "Wizen": 1750122756
       }
     },
+    "Nekane26": {
+      "index": 13691,
+      "owner_key": "32b51Yud6LMvQRSkb9vvJdkb3P1G4RN1w5xD4rSPuhJM",
+      "balance": 19104,
+      "membership_expire_on": 1726697811,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "SaraRo": 1759177902,
+        "SanVal": 1758303263,
+        "sus35": 1758303804,
+        "davidbp845": 1758306818,
+        "bea": 1758304093
+      }
+    },
     "JoelleTAILLANDIER": {
       "index": 5473,
       "owner_key": "32cEeg9oQKbqkYknHRdMV6tdrxZmHZm2WptfMFm7eKkj",
@@ -13817,7 +14042,6 @@
       "next_cert_issuable_on": 1683123900,
       "certs_received": {
         "MarieBouny": 1710115303,
-        "ASHTARA": 1694818701,
         "marika8": 1746316261,
         "Renefaby": 1746314675
       }
@@ -13825,7 +14049,7 @@
     "Schwani": {
       "index": 11773,
       "owner_key": "32chyPinyiaoPq2pMrjwkKgVAasrxbpg9sXyVFZ5Z735",
-      "balance": 198441,
+      "balance": 238127,
       "membership_expire_on": 1708114112,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -13839,9 +14063,9 @@
     "fdrubigny": {
       "index": 422,
       "owner_key": "32jZNQLKYfW9KtCHiaSewR27ZRb6zoncC6JvBVCBW4k1",
-      "balance": 932682,
+      "balance": 989588,
       "membership_expire_on": 1700427841,
-      "next_cert_issuable_on": 1693361940,
+      "next_cert_issuable_on": 1693900827,
       "certs_received": {
         "Estello": 1719088589,
         "sfouludo": 1715751431,
@@ -13850,20 +14074,20 @@
         "harry974": 1726718955,
         "Robin_et_Odile": 1702768846,
         "samsufy": 1720399420,
-        "IngridCourreges": 1696421398,
+        "IngridCourreges": 1759262365,
         "Tchois": 1719539310,
         "pafzedog": 1745269321,
         "jef": 1751493341,
         "patbal": 1745130261,
         "Bidulette": 1715751842,
         "Scilla": 1742529734,
-        "yannlefranco": 1695173523,
+        "yannlefranco": 1756262615,
         "CClement": 1749881150,
         "Jade971": 1728073368,
         "bricodeur": 1727217198,
         "NathalieSF971": 1729363179,
         "Val767": 1748084274,
-        "NeyKrom": 1696698451,
+        "NeyKrom": 1758063659,
         "Solian": 1740005774,
         "AnnL": 1719088046,
         "VivienProuvot": 1742518092,
@@ -13920,7 +14144,7 @@
     "DebOrah": {
       "index": 1357,
       "owner_key": "331DZaBk4gARQNADXedCFS97pV65XsxwUy383HspbbLR",
-      "balance": 1415134,
+      "balance": 1454820,
       "membership_expire_on": 1696872501,
       "next_cert_issuable_on": 1668690213,
       "certs_received": {
@@ -13934,7 +14158,7 @@
     "VinceNB": {
       "index": 11106,
       "owner_key": "334TRZPSSTjdrDfUkwc77F9xWnuKsH1ULHfgJNkrhrQq",
-      "balance": 219927,
+      "balance": 259613,
       "membership_expire_on": 1704242721,
       "next_cert_issuable_on": 1688225467,
       "certs_received": {
@@ -13952,7 +14176,7 @@
     "Velotibi": {
       "index": 12846,
       "owner_key": "334htVQcCX9Vh7f1W9N7EMkFgZqh9sQ4hU38tpmrz4Rd",
-      "balance": 103712,
+      "balance": 143398,
       "membership_expire_on": 1714580157,
       "next_cert_issuable_on": 1687258753,
       "certs_received": {
@@ -13971,19 +14195,14 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1674749908,
       "certs_received": {
-        "Benvaudeurs": 1693699926,
-        "LovingCompassion": 1693621980,
         "ThaoT": 1705645111,
-        "Moonvaudeurs": 1693699926,
-        "DelfeWutao88": 1714333052,
-        "Cath": 1693515024,
-        "Kirsten": 1693699926
+        "DelfeWutao88": 1714333052
       }
     },
     "mati": {
       "index": 7432,
       "owner_key": "33GkELAF2bg25cf8A9VDAZqGSkEYFsyHtEw39Rprriqr",
-      "balance": 942916,
+      "balance": 944199,
       "membership_expire_on": 1705675279,
       "next_cert_issuable_on": 1685489406,
       "certs_received": {
@@ -14016,7 +14235,7 @@
     "Claudius12": {
       "index": 13280,
       "owner_key": "33Jb5zvX3kQ9GY8jk2WFmTagXYCEKeYPYHx5k8BUXBkL",
-      "balance": 294168,
+      "balance": 333854,
       "membership_expire_on": 1722083656,
       "next_cert_issuable_on": 1691849944,
       "certs_received": {
@@ -14024,17 +14243,19 @@
         "ValerieArtsetsens": 1753242270,
         "CedricSabbe": 1753928705,
         "etsaman": 1753216722,
+        "Domi418": 1754596794,
         "Jerryz": 1753238741,
         "JerryBB": 1751940977,
         "Beacouleurs": 1755906509,
         "SylvainDeCadix": 1751921867,
+        "Mmemonica": 1753910174,
         "Myriam1912": 1753594144
       }
     },
     "GastonL": {
       "index": 5613,
       "owner_key": "33KXwcsBhjwML7iEsmocY3UvCjyYJvmFhVumeiMSXF8Q",
-      "balance": 892506,
+      "balance": 932192,
       "membership_expire_on": 1712342980,
       "next_cert_issuable_on": 1693041014,
       "certs_received": {
@@ -14042,7 +14263,6 @@
         "Ashawik": 1748383822,
         "SimonL": 1724039179,
         "Annae": 1755562692,
-        "ChristineV": 1693954903,
         "VioletteL": 1743901342,
         "Goldwing": 1755587888,
         "jon": 1747890241
@@ -14051,7 +14271,7 @@
     "kamaru": {
       "index": 13413,
       "owner_key": "33LZss8Fe9sXAcyVcVwRG9qwPHeAeK8Xp9C93jARtSvH",
-      "balance": 31430,
+      "balance": 43480,
       "membership_expire_on": 1723298064,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -14065,18 +14285,15 @@
     "ClaireMonde": {
       "index": 5839,
       "owner_key": "33QJsm5rBSV12fsNpacKPHJeTpUJnMiWPNZ2i96LThx9",
-      "balance": 393066,
+      "balance": 432752,
       "membership_expire_on": 1702049502,
       "next_cert_issuable_on": 1658061150,
       "certs_received": {
         "Eiutim": 1697407041,
         "Yesyes": 1697134358,
         "Corinne-Co": 1721060395,
-        "jbar": 1695762631,
-        "JerryBB": 1696141261,
         "MaEstherG1": 1721113894,
-        "denizen": 1700964887,
-        "Fred": 1695763580,
+        "denizen": 1756853012,
         "Celuiquicrelamehaute": 1752618335,
         "Jesck": 1725060522
       }
@@ -14092,7 +14309,7 @@
     "OhdeLali": {
       "index": 5916,
       "owner_key": "33hszJmFhmDAXtYBc6Vdsbg3jJeHu5EZzNE4q5WJjSWf",
-      "balance": 641502,
+      "balance": 681188,
       "membership_expire_on": 1703119026,
       "next_cert_issuable_on": 1675168873,
       "certs_received": {
@@ -14108,8 +14325,8 @@
     "RaieManta": {
       "index": 6247,
       "owner_key": "33iNimunt7Y415vRPcMDDPZVjzKiqHBdM4qbKEcmqzZ2",
-      "balance": 649325,
-      "membership_expire_on": 1696267791,
+      "balance": 683621,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1662820423,
       "certs_received": {
         "CRey": 1701069404,
@@ -14127,14 +14344,16 @@
     "devihope": {
       "index": 11447,
       "owner_key": "33wEa1Sgs6C75MBDs62eULh9qwvrmr51Ky6yENbKUbiS",
-      "balance": 216316,
+      "balance": 257182,
       "membership_expire_on": 1702854018,
-      "next_cert_issuable_on": 1693136041,
+      "next_cert_issuable_on": 1696267547,
       "certs_received": {
         "Ferpires": 1743065259,
+        "FatimaDonoso": 1759607460,
         "Judit137": 1749614132,
         "PatriciaDoVale": 1752982546,
         "HeleneH": 1753579176,
+        "Yana": 1757057378,
         "artenomar": 1756360185,
         "Maksim": 1750412036,
         "Nilia": 1749095958,
@@ -14147,6 +14366,8 @@
         "Gillette": 1747270784,
         "Sancho": 1751812326,
         "MiguelHappyFamily": 1736989614,
+        "Rafael": 1757057378,
+        "catarinajunas": 1757709418,
         "StefaniaCamilla": 1739443137,
         "HViegas": 1752459698,
         "DeboraTavares": 1746956654,
@@ -14159,6 +14380,7 @@
         "OlgaO": 1740816646,
         "SandraHeleno": 1743103846,
         "CorineH34": 1738481303,
+        "PenaBranca": 1757057101,
         "ElisabeteMartins": 1736821857,
         "Kian": 1747609537,
         "ManuelSoares": 1747976328,
@@ -14168,21 +14390,21 @@
     "clfouillet": {
       "index": 1117,
       "owner_key": "343WKuiXHtt5jRP5FRqBDU6hEaQP2PkET2J1SVdva4Wh",
-      "balance": 352907,
+      "balance": 392593,
       "membership_expire_on": 1704299418,
       "next_cert_issuable_on": 1681373055,
       "certs_received": {
         "HRDESIGNPROD": 1742175149,
         "ArnaudFleuri": 1711215316,
         "Pol": 1732080009,
-        "Jdbetoile": 1702975634,
+        "Jdbetoile": 1758928788,
         "denizen": 1737742483
       }
     },
     "Toutoune73": {
       "index": 7029,
       "owner_key": "346bia2jWxKZfWsW6RqpYV5qh4uBhDjbzArEmfXs9hjy",
-      "balance": 515339,
+      "balance": 555025,
       "membership_expire_on": 1705925703,
       "next_cert_issuable_on": 1670249859,
       "certs_received": {
@@ -14198,7 +14420,7 @@
     "Api-aume": {
       "index": 12936,
       "owner_key": "34BYHUW5YQsChu1BfWYicg72actXzQy19bdR223Ynvk4",
-      "balance": 152964,
+      "balance": 313650,
       "membership_expire_on": 1718382084,
       "next_cert_issuable_on": 1690246331,
       "certs_received": {
@@ -14213,7 +14435,7 @@
     "HugoTen": {
       "index": 5340,
       "owner_key": "34P8PKRDgy6rMv8pHZ1EV36FoYA6WzrCNpXs455QxGSW",
-      "balance": 456175,
+      "balance": 495861,
       "membership_expire_on": 1718304422,
       "next_cert_issuable_on": 1691830800,
       "certs_received": {
@@ -14227,7 +14449,7 @@
     "AmNoh": {
       "index": 9093,
       "owner_key": "34QZ4vUNhSQpAbUjjGZ9NMbg7uYR1F238nLCsoTSqi1j",
-      "balance": 153878,
+      "balance": 193564,
       "membership_expire_on": 1720982344,
       "next_cert_issuable_on": 1680433734,
       "certs_received": {
@@ -14242,27 +14464,50 @@
     "SandRA": {
       "index": 5537,
       "owner_key": "34WC3aLpyYhNj4WgB3yGmjCCRN6JWhiuLGrnwy7eNt9J",
-      "balance": 741416,
-      "membership_expire_on": 1694097666,
-      "next_cert_issuable_on": 1675347259,
+      "balance": 781102,
+      "membership_expire_on": 1725130329,
+      "next_cert_issuable_on": 1694087546,
       "certs_received": {
+        "Toutvabien": 1756953418,
         "Ju73": 1736732974,
         "MioPalmon988": 1709393606,
-        "Ealia": 1695626167,
         "AliceTiphasone": 1705047603,
-        "AlexandraBertrand": 1696746633
+        "AstridG": 1757130746,
+        "LaurentM": 1756707657,
+        "AlexandraBertrand": 1756690274
+      }
+    },
+    "Melodie11": {
+      "index": 13533,
+      "owner_key": "34XgTPfenc9YintZcUQhrGmu5YB6MeNpHLDQ6Y4nUFRV",
+      "balance": 290642,
+      "membership_expire_on": 1725226411,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Marilyne66": 1756790323,
+        "AngeliqueEleusis": 1756993259,
+        "JeandelAude": 1756944725,
+        "ASHTARA": 1757009581,
+        "Roland": 1756878134,
+        "Matthias": 1756858627,
+        "RitaWilson": 1756945192
       }
     },
     "JanineBoitel": {
       "index": 12026,
       "owner_key": "34ftu1sPJUxcGJYFPYawxiELfnneWCxRLrczuNfrh7Vm",
-      "balance": 212258,
+      "balance": 213366,
       "membership_expire_on": 1710523683,
-      "next_cert_issuable_on": 1693222090,
+      "next_cert_issuable_on": 1696606824,
       "certs_received": {
         "diablade": 1742180948,
         "EUREKA": 1742108139,
+        "Marianb": 1758878908,
+        "Mam": 1757906120,
+        "ChristianeClavelier": 1758669388,
         "ILLIMITEE": 1742282829,
+        "ChristianMichelChampon": 1758669734,
+        "Natashine": 1758148525,
         "MartineBuhrig": 1745736837,
         "Aliyoyo": 1752542144,
         "Angele73": 1745734815,
@@ -14279,7 +14524,7 @@
     "yekapharoah": {
       "index": 233,
       "owner_key": "34k6isdkoYZjcEvS3qZqATeTYjY1b3K1gLyW1K77Pea4",
-      "balance": 1287344,
+      "balance": 1327030,
       "membership_expire_on": 1702549634,
       "next_cert_issuable_on": 1670146783,
       "certs_received": {
@@ -14300,7 +14545,7 @@
     "CaizohanFerreira": {
       "index": 7,
       "owner_key": "34ouKCxQMLcXDU9c6oF8ZbNArKRaxrr7pdQMhnWMWXze",
-      "balance": 2049181,
+      "balance": 2088867,
       "membership_expire_on": 1705343399,
       "next_cert_issuable_on": 1679024599,
       "certs_received": {
@@ -14324,9 +14569,9 @@
     "Tidus": {
       "index": 3093,
       "owner_key": "34t1BwZsKSqy1aDXFXecH9Hag5qb8RBkHPiZw2sCyzUv",
-      "balance": 482578,
+      "balance": 506404,
       "membership_expire_on": 1722690845,
-      "next_cert_issuable_on": 1686542339,
+      "next_cert_issuable_on": 1694679569,
       "certs_received": {
         "Hugues35": 1735891498,
         "Cygogne22": 1747512823,
@@ -14334,25 +14579,28 @@
         "MaryK": 1740087234,
         "etrehumainJordan92i": 1746651530,
         "ironhic": 1735806607,
+        "Sainte-Russie": 1757881590,
         "jeanneymar": 1747852665,
         "Auxance": 1748156095,
         "Migus01": 1749288095,
         "YANNIERRE": 1751397255,
         "Kilibix": 1746251837,
         "Titouan": 1704018750,
+        "Vivant3000": 1757722127,
         "Roimain": 1702500891,
         "Kimedo": 1746326339,
         "Titus": 1740088814,
         "GeoTT": 1746538901,
         "adamscurtis": 1740398342,
         "Moi_C_Olivier": 1741762524,
+        "Merlindoc": 1758145946,
         "LudovicMJC": 1741585261
       }
     },
     "Vega": {
       "index": 12328,
       "owner_key": "34tdu6cGF9gp7PwdJXVTZCQjmgxPw7aPrYunFX7mNg3C",
-      "balance": 154520,
+      "balance": 194206,
       "membership_expire_on": 1712870096,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -14366,8 +14614,8 @@
     "Benvaudeurs": {
       "index": 4482,
       "owner_key": "34zc34gSFs3884kSZbeyPTyeJr3abKxoE8va6BKtCocK",
-      "balance": 181497,
-      "membership_expire_on": 1696340853,
+      "balance": 216871,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678943576,
       "certs_received": {
         "LiseBourdelle": 1730259701,
@@ -14386,7 +14634,7 @@
     "VicGuill": {
       "index": 12241,
       "owner_key": "352N9VKLj8KtupBZkiznHYETzTkrTgvAnBJrQSwG1ydR",
-      "balance": 159064,
+      "balance": 198750,
       "membership_expire_on": 1711901635,
       "next_cert_issuable_on": 1682131622,
       "certs_received": {
@@ -14407,6 +14655,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "IsabelleZev": {
+      "index": 13599,
+      "owner_key": "35N4tqXYMqmrYED6nH5XeCFHQqGeBfKetARhKAjejZX9",
+      "balance": 35463,
+      "membership_expire_on": 1726086938,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "AnyesOlek": 1758079368,
+        "Armelluna": 1758075278,
+        "Fannyhihihi": 1757683347,
+        "AnaisLicorne": 1757655350,
+        "NolanRoni": 1757797915
+      }
+    },
     "Daninalamont": {
       "index": 3552,
       "owner_key": "35QKqQUKtRw5xtKZaeNJQrq58JrB5ob5Y24oerzv9GpA",
@@ -14440,22 +14702,15 @@
     "DLV": {
       "index": 5609,
       "owner_key": "35XzRgPw6a5FEiu2hyVCgKWLwFmdoLzCmJ3YcphjVVAN",
-      "balance": 758461,
+      "balance": 694381,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1676696505,
-      "certs_received": {
-        "Al1Nicolas": 1693727412,
-        "yosoycomoeloso": 1693770872,
-        "Marinalouette": 1693810183,
-        "gerard94": 1694763301,
-        "HUCKFINN": 1693786164,
-        "Emiliburuzaina": 1693791312
-      }
+      "certs_received": {}
     },
     "LaureG": {
       "index": 8124,
       "owner_key": "35Y19YJDKXvTFSG3UwmfiP3tUCXWprMEGAWqqRr5Nzfo",
-      "balance": 430433,
+      "balance": 470119,
       "membership_expire_on": 1717583919,
       "next_cert_issuable_on": 1672389029,
       "certs_received": {
@@ -14474,7 +14729,7 @@
     "Letiars": {
       "index": 9010,
       "owner_key": "35a6FaQRxYVCDs8XGe3EdhGXKw9V1FCiCn2oXTM5DRAU",
-      "balance": 172137,
+      "balance": 211823,
       "membership_expire_on": 1718017520,
       "next_cert_issuable_on": 1664593869,
       "certs_received": {
@@ -14490,9 +14745,9 @@
     "Gazaile": {
       "index": 12347,
       "owner_key": "35eswKvnQ9UzsqmGex64iujpeg66Vh1Rwz8jdVUYMzZH",
-      "balance": 162484,
+      "balance": 164670,
       "membership_expire_on": 1712798433,
-      "next_cert_issuable_on": 1689951879,
+      "next_cert_issuable_on": 1694839945,
       "certs_received": {
         "Isatoi": 1744686488,
         "ChristelR": 1746301193,
@@ -14505,7 +14760,7 @@
     "Colibri07": {
       "index": 8895,
       "owner_key": "35seopBonsK4VX4cqLh43idHY55Fm98Qs2j5v5vbQK67",
-      "balance": 330247,
+      "balance": 369933,
       "membership_expire_on": 1716166596,
       "next_cert_issuable_on": 1685927558,
       "certs_received": {
@@ -14520,7 +14775,7 @@
     "salmaluna": {
       "index": 9387,
       "owner_key": "35sxK4QofaoGcDkuMNeW1DKT6ugW8KX5yXLTtVVNi83U",
-      "balance": 207835,
+      "balance": 224821,
       "membership_expire_on": 1717959527,
       "next_cert_issuable_on": 1674907811,
       "certs_received": {
@@ -14582,7 +14837,7 @@
     "MHaM": {
       "index": 5337,
       "owner_key": "36EcrwkTByon6pM4L6N1GomZf8T9pnXyf79Airn5p8XR",
-      "balance": 1634486,
+      "balance": 1845952,
       "membership_expire_on": 1711441732,
       "next_cert_issuable_on": 1682605470,
       "certs_received": {
@@ -14604,13 +14859,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1655565724,
       "certs_received": {
-        "Eric": 1694558940,
-        "Sanzoni": 1714512196,
-        "Paul-B": 1694562879,
-        "Brigitte": 1694638185,
-        "ortie": 1694557894,
-        "krischamp": 1694673657,
-        "Nounoursgt8946": 1694559284
+        "Sanzoni": 1714512196
       }
     },
     "Clbach": {
@@ -14632,7 +14881,7 @@
     "ManelG": {
       "index": 8233,
       "owner_key": "36YJriqZbPrmSEWQ2kJjt5nvXY9azvXSSrszf1oRteut",
-      "balance": 211553,
+      "balance": 242239,
       "membership_expire_on": 1710962340,
       "next_cert_issuable_on": 1692150528,
       "certs_received": {
@@ -14671,7 +14920,7 @@
     "JulienBernes": {
       "index": 11616,
       "owner_key": "36Zk9ZDpzEfXXj1ynnpSTU4jE3VeL73S6fLBroF56FNw",
-      "balance": 212208,
+      "balance": 251894,
       "membership_expire_on": 1707666714,
       "next_cert_issuable_on": 1679052995,
       "certs_received": {
@@ -14706,8 +14955,8 @@
     "Liah": {
       "index": 9478,
       "owner_key": "36cxR9BDB6LAZa19LkpMNbcorp7R7nNRiYhEpPicv7Nf",
-      "balance": 389191,
-      "membership_expire_on": 1693598022,
+      "balance": 390259,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670825258,
       "certs_received": {
         "Jane": 1725582023,
@@ -14761,7 +15010,7 @@
     "rockanneroll": {
       "index": 10859,
       "owner_key": "36ryYNvS6coXWR5Ziw5TefLMk8aZKayG6vkfFfRxrgr9",
-      "balance": 278565,
+      "balance": 318251,
       "membership_expire_on": 1701997466,
       "next_cert_issuable_on": 1692686497,
       "certs_received": {
@@ -14789,7 +15038,7 @@
     "Taria30": {
       "index": 6282,
       "owner_key": "371yug89axucNi3DMNHD9urga8QdTAPQmVjBrt4aPy29",
-      "balance": 596913,
+      "balance": 636599,
       "membership_expire_on": 1707701924,
       "next_cert_issuable_on": 1676824055,
       "certs_received": {
@@ -14798,13 +15047,13 @@
         "CorinneCoco": 1701578539,
         "AbbyL": 1701661335,
         "AuFilDuTemps": 1701575499,
-        "Fleur": 1701575499
+        "Fleur": 1757198944
       }
     },
     "GUL40_Fr1": {
       "index": 6622,
       "owner_key": "375znBjXFsLsG4gSkNkQ5xfPQRBQDiCv43NbwGt3174i",
-      "balance": 675711,
+      "balance": 715397,
       "membership_expire_on": 1703086673,
       "next_cert_issuable_on": 1689588657,
       "certs_received": {
@@ -14865,7 +15114,7 @@
     "xavislow": {
       "index": 8391,
       "owner_key": "37L7mAhHCrzuPEagRpTq41Qtrk3hy7MXyKHfkdYJqL3A",
-      "balance": 276932,
+      "balance": 306618,
       "membership_expire_on": 1711972363,
       "next_cert_issuable_on": 1675238490,
       "certs_received": {
@@ -14888,7 +15137,7 @@
     "VIctoriadeIbiza": {
       "index": 11226,
       "owner_key": "37LL6UqC2F9eK1nk4hP8A7CdWtHEbXWp9jj8nKD3okas",
-      "balance": 202644,
+      "balance": 222330,
       "membership_expire_on": 1705278168,
       "next_cert_issuable_on": 1686454197,
       "certs_received": {
@@ -14937,9 +15186,9 @@
     "Icaunaise": {
       "index": 7987,
       "owner_key": "37WM8TmwzF8TeX6UmksryvNGaEEpXVKYH5SJy3XHi73e",
-      "balance": 382015,
+      "balance": 321801,
       "membership_expire_on": 1712678645,
-      "next_cert_issuable_on": 1687271039,
+      "next_cert_issuable_on": 1695652965,
       "certs_received": {
         "Carabistouille": 1744854193,
         "Cyrius666": 1729197613,
@@ -14958,6 +15207,7 @@
         "s00999": 1711517789,
         "Shaypalgv": 1719260356,
         "Fee2rien": 1714127374,
+        "Framboise89": 1756600889,
         "Clo": 1745823811,
         "CatherineBerdal": 1738222584,
         "Ninette89": 1717017770,
@@ -14968,7 +15218,7 @@
     "Francois-Rose": {
       "index": 6236,
       "owner_key": "37XXkWmtEZuVqMZxbbcJFAP8aNdhos4cVYi989vvxHbK",
-      "balance": 686367,
+      "balance": 726053,
       "membership_expire_on": 1724445405,
       "next_cert_issuable_on": 1680568220,
       "certs_received": {
@@ -14988,9 +15238,7 @@
       "balance": 649835,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "FilouLibre59": 1693992409
-      }
+      "certs_received": {}
     },
     "Jtiphaine": {
       "index": 4120,
@@ -15003,12 +15251,13 @@
     "Yukimarou": {
       "index": 6492,
       "owner_key": "37aARiVatBM7deXY7wwHvzRPPWzikBwUo7CCB2qDaopJ",
-      "balance": 662733,
-      "membership_expire_on": 1698974625,
-      "next_cert_issuable_on": 1688709816,
+      "balance": 702419,
+      "membership_expire_on": 1726183666,
+      "next_cert_issuable_on": 1694698066,
       "certs_received": {
         "Soa": 1741917389,
         "ThierryLacaze": 1703226157,
+        "PesentiOlivier": 1758770121,
         "AniA": 1749163221,
         "Maceo17": 1703659163,
         "MelliaGaia": 1730533240,
@@ -15031,8 +15280,8 @@
     "rama": {
       "index": 10421,
       "owner_key": "37eX6ZZAxcYP42MufFLgqcn2L1rXqycKC1Dnf35aabHE",
-      "balance": 350285,
-      "membership_expire_on": 1700301269,
+      "balance": 394971,
+      "membership_expire_on": 1726839479,
       "next_cert_issuable_on": 1680118902,
       "certs_received": {
         "InmaRegina": 1731892642,
@@ -15059,7 +15308,7 @@
     "Selena": {
       "index": 7139,
       "owner_key": "37wXatfnwbRx5Ts8s6WRFZuDqFoF4xwCcsnmiNk4fKrq",
-      "balance": 740883,
+      "balance": 715569,
       "membership_expire_on": 1704888402,
       "next_cert_issuable_on": 1692316377,
       "certs_received": {
@@ -15096,7 +15345,7 @@
     "21bee": {
       "index": 6022,
       "owner_key": "37xcpuphTkBD9qcbuMoedjK5ePVYDNV3zXZhL8CTuxsB",
-      "balance": 478921,
+      "balance": 518607,
       "membership_expire_on": 1717285578,
       "next_cert_issuable_on": 1651668665,
       "certs_received": {
@@ -15110,7 +15359,7 @@
     "SanTuCa-REMyL": {
       "index": 9451,
       "owner_key": "37zGQZseKrPaWc8TMJQ4YeSRBCKhJKrHwkys12erqsQ3",
-      "balance": 583520,
+      "balance": 608206,
       "membership_expire_on": 1720132253,
       "next_cert_issuable_on": 1689936077,
       "certs_received": {
@@ -15150,7 +15399,7 @@
     "zazou": {
       "index": 1729,
       "owner_key": "385mBAvuH3SRo4ce1PNXxX8vy5DC7J3x3SbUW8DF5Jdg",
-      "balance": 1225282,
+      "balance": 1264968,
       "membership_expire_on": 1700265569,
       "next_cert_issuable_on": 1678965144,
       "certs_received": {
@@ -15165,7 +15414,7 @@
     "Ana67": {
       "index": 13001,
       "owner_key": "38B44gBCvgzfFR54rNxZ4eAwbUT1ye6VhpZjCVykyf79",
-      "balance": 87488,
+      "balance": 127174,
       "membership_expire_on": 1719074695,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -15179,9 +15428,9 @@
     "RomainKornig": {
       "index": 6507,
       "owner_key": "38CkcXcwKPmQ3tmk4hnTX5EGNihiJ2bkwAcqweHLydVX",
-      "balance": 1697394,
-      "membership_expire_on": 1697253191,
-      "next_cert_issuable_on": 1687699767,
+      "balance": 2197880,
+      "membership_expire_on": 1725883409,
+      "next_cert_issuable_on": 1696218731,
       "certs_received": {
         "AucrAnnie": 1721284414,
         "Monette": 1734572424,
@@ -15234,6 +15483,7 @@
         "Sophiefiso": 1732001949,
         "CelYinYang": 1730779497,
         "Yeguay": 1737593049,
+        "Hdsaf": 1757803820,
         "Gclaire": 1710637166,
         "Kol": 1721146191,
         "Lak": 1726855048
@@ -15247,6 +15497,21 @@
       "next_cert_issuable_on": 1654750468,
       "certs_received": {}
     },
+    "EricH": {
+      "index": 13686,
+      "owner_key": "38EuqzoMVfKBEK5XsXtknJJfG67GKfEZb8rAnmCFbmi5",
+      "balance": 8424,
+      "membership_expire_on": 1727126608,
+      "next_cert_issuable_on": 1696489468,
+      "certs_received": {
+        "FabienneM": 1759122944,
+        "AlphaCentauri": 1759122944,
+        "oliviersimonon": 1759122944,
+        "CapuChoeur": 1759124497,
+        "remol": 1759122944,
+        "Rserge": 1759122944
+      }
+    },
     "Thewelder": {
       "index": 3247,
       "owner_key": "38K5BNTSKv9jGwALhJSViHUqMT1YhmSC7D8pJJ1sZmF5",
@@ -15258,7 +15523,7 @@
     "BenoitLavenier": {
       "index": 5,
       "owner_key": "38MEAZN68Pz1DTvT3tqgxx4yQP6snJCQhPqEFxbDk4aE",
-      "balance": 2352595,
+      "balance": 2911997,
       "membership_expire_on": 1714130002,
       "next_cert_issuable_on": 1691052275,
       "certs_received": {
@@ -15293,7 +15558,7 @@
     "lilon": {
       "index": 9271,
       "owner_key": "38PSfvEGvEXCzdQH5JGrqW4zCAvZTuQoJgK1GDnAPrZU",
-      "balance": 467450,
+      "balance": 487136,
       "membership_expire_on": 1720444009,
       "next_cert_issuable_on": 1677483184,
       "certs_received": {
@@ -15309,7 +15574,7 @@
     "GuilhermeLopes": {
       "index": 12658,
       "owner_key": "38PaQEZnVMo2Bmno17bQg1uSuLbraivDDicgfHtFbhGv",
-      "balance": 115344,
+      "balance": 155030,
       "membership_expire_on": 1714475342,
       "next_cert_issuable_on": 1689130582,
       "certs_received": {
@@ -15328,8 +15593,8 @@
     "Mike": {
       "index": 4392,
       "owner_key": "38PrqbxZ3CpTj19XT23uwBwJTvsAG7rF451YPnF6q8Q6",
-      "balance": 980402,
-      "membership_expire_on": 1695193157,
+      "balance": 1016864,
+      "membership_expire_on": 1726979456,
       "next_cert_issuable_on": 1677407818,
       "certs_received": {
         "littlebooboo": 1730438479,
@@ -15342,7 +15607,7 @@
     "CTHARREAU": {
       "index": 11331,
       "owner_key": "38QkEzJ2rNUR7hTji5ZrjcSGawqewWGXTD8SrtpHGVNa",
-      "balance": 444547,
+      "balance": 484233,
       "membership_expire_on": 1702924914,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -15359,9 +15624,9 @@
     "Ninamaste": {
       "index": 8018,
       "owner_key": "38QzVPhRLbEiqJtvCmRY6A6SraheNA6fJbomFX75b2qb",
-      "balance": 128299,
+      "balance": 131985,
       "membership_expire_on": 1709663335,
-      "next_cert_issuable_on": 1690900117,
+      "next_cert_issuable_on": 1693924200,
       "certs_received": {
         "Hammazone": 1722469090,
         "Kriss": 1729622765,
@@ -15369,6 +15634,7 @@
         "JeromeGolliet": 1731469818,
         "Selena": 1737742220,
         "jaya": 1726353326,
+        "Marieta": 1758420952,
         "Carole26": 1718746139,
         "IsaM": 1720996392,
         "Cristal38": 1743700683,
@@ -15395,6 +15661,7 @@
         "Alisce": 1734138355,
         "NicoLive": 1729634082,
         "NathS": 1729496677,
+        "pat26": 1756942042,
         "Swan": 1720997349,
         "Essence22": 1733869854,
         "CyyP": 1727108496,
@@ -15413,19 +15680,21 @@
     "RequistonAude": {
       "index": 5110,
       "owner_key": "38VH6aDZ2xnUPciDEb3EvVgFvDv3gXJDGHvRyGzEEcb8",
-      "balance": 347186,
-      "membership_expire_on": 0,
+      "balance": 352576,
+      "membership_expire_on": 1727184239,
       "next_cert_issuable_on": 1667049533,
       "certs_received": {
+        "JesapelleGroot": 1759434974,
         "Christine13": 1701226490,
         "SandrineMotos": 1737005473,
-        "VeroAngele": 1731073451
+        "VeroAngele": 1731073451,
+        "OrAnge": 1759435256
       }
     },
     "MariaIciar": {
       "index": 13265,
       "owner_key": "38WpZ3tWEmWtjyKee1g7ip63wY5EMJGLdxtSQ73sYME3",
-      "balance": 69944,
+      "balance": 16064,
       "membership_expire_on": 1722183796,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -15461,7 +15730,7 @@
     "AHL": {
       "index": 1150,
       "owner_key": "38eCHNsY5VpjB3q5YcLVBqBpBWqduvXwU6SnHhviUXcS",
-      "balance": 1913721,
+      "balance": 1953407,
       "membership_expire_on": 1718278228,
       "next_cert_issuable_on": 1686839369,
       "certs_received": {
@@ -15477,7 +15746,7 @@
     "WateyaND": {
       "index": 10551,
       "owner_key": "38gjsARiBgvE71yAnkK3MRBobVfehVUvgW2j2fNZM1ok",
-      "balance": 285310,
+      "balance": 329996,
       "membership_expire_on": 1701124497,
       "next_cert_issuable_on": 1683595585,
       "certs_received": {
@@ -15503,7 +15772,7 @@
     "PhilippeLetroll": {
       "index": 9178,
       "owner_key": "38jx5MVaS1j6yFiJPRsCG1S1Mz1KRvhgu54XeEFvYyY8",
-      "balance": 399513,
+      "balance": 439199,
       "membership_expire_on": 1718733197,
       "next_cert_issuable_on": 1687316174,
       "certs_received": {
@@ -15512,7 +15781,9 @@
         "Artdevivre": 1723409746,
         "Fab": 1745995833,
         "Furiosa": 1738733711,
+        "Filou": 1757472755,
         "AngelArt": 1723399823,
+        "Cleo59": 1757472519,
         "Andy": 1723428246
       }
     },
@@ -15557,9 +15828,9 @@
     "Carma2310": {
       "index": 13084,
       "owner_key": "392S8WYYVDSjWSjMiWagqgHR5xRLJrmGjWnvgnRwUh87",
-      "balance": 553016,
+      "balance": 537702,
       "membership_expire_on": 1719238701,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694676016,
       "certs_received": {
         "Bea34": 1750804812,
         "Sandcreart": 1750807451,
@@ -15571,7 +15842,7 @@
     "Lucach": {
       "index": 12808,
       "owner_key": "393BpzVpqbBhBan3eDSwgtx2Q8fhjCynJiCeGCfVMw1v",
-      "balance": 102984,
+      "balance": 142670,
       "membership_expire_on": 1716843157,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -15585,7 +15856,7 @@
     "RomaricHovasse": {
       "index": 9688,
       "owner_key": "395RdtP5wvypwHJnFGzfQUkNnuXy2wpk6ZJ2U7muVTmz",
-      "balance": 384409,
+      "balance": 424095,
       "membership_expire_on": 1723981288,
       "next_cert_issuable_on": 1692495688,
       "certs_received": {
@@ -15615,22 +15886,16 @@
     "Hades": {
       "index": 5909,
       "owner_key": "39AZDop8oipzovUtJ8WqXHKCTpipgpV19BsHmTTBua29",
-      "balance": 541237,
-      "membership_expire_on": 1696011133,
+      "balance": 570423,
+      "membership_expire_on": 1726754601,
       "next_cert_issuable_on": 1683273765,
       "certs_received": {
-        "Milan": 1696116612,
         "Majoli34": 1728756618,
         "Kali": 1746315140,
         "Pandore": 1746314202,
-        "Soyouz": 1696114988,
-        "Jihi": 1696115966,
+        "virelangue": 1757279361,
         "Cecilelaurent": 1727567663,
         "Aragorn": 1749009101,
-        "labomarjo": 1696116289,
-        "Leticia": 1696116289,
-        "LydiaRoche": 1696115966,
-        "SanjaAnanda": 1696118053,
         "Ddeellpphhiinnee": 1718687400
       }
     },
@@ -15657,7 +15922,7 @@
     "WendyWynn": {
       "index": 12984,
       "owner_key": "39N2Vp31zqvuQ5LEefad2DKaWSzDFqPnCZvMaaiovjVg",
-      "balance": 431824,
+      "balance": 536510,
       "membership_expire_on": 1715836907,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -15666,13 +15931,14 @@
         "Melo": 1748624601,
         "LEO06": 1748624601,
         "Tontonmika": 1748625174,
-        "Hdsaf": 1754442992
+        "Hdsaf": 1754442992,
+        "Sailorcherry": 1757612669
       }
     },
     "artia": {
       "index": 11845,
       "owner_key": "39V3Dyuxnouhcc7yfqLWBSsWkkWG1ks88reGXGyRjRqV",
-      "balance": 193146,
+      "balance": 232832,
       "membership_expire_on": 1709161332,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -15686,7 +15952,7 @@
     "Malomalo": {
       "index": 11050,
       "owner_key": "39gtPbgbwefGC6DPcMqSoYYZnYjvNx7xfHfffMS4vZV5",
-      "balance": 260922,
+      "balance": 300608,
       "membership_expire_on": 1703903527,
       "next_cert_issuable_on": 1680249797,
       "certs_received": {
@@ -15702,7 +15968,7 @@
     "Kokiyet": {
       "index": 8634,
       "owner_key": "39hTpoyTsJt6PNtVQBS8jCfXjsrMzh6ZaZ77BsQnWKfy",
-      "balance": 225105,
+      "balance": 264791,
       "membership_expire_on": 1714046293,
       "next_cert_issuable_on": 1682417584,
       "certs_received": {
@@ -15749,7 +16015,7 @@
     "Bildigus": {
       "index": 4631,
       "owner_key": "39yg2hcguhbvkCSLWMhmT6SMmNiFPaiVuM72WSZszBXF",
-      "balance": 600451,
+      "balance": 510451,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1655942355,
       "certs_received": {
@@ -15762,7 +16028,7 @@
     "caelyROBLEDO": {
       "index": 4334,
       "owner_key": "3A1wwXznfuipcEv77FK44iRkom5aYrPYPfknEUosiNtY",
-      "balance": 127666,
+      "balance": 167352,
       "membership_expire_on": 1719173321,
       "next_cert_issuable_on": 1687760789,
       "certs_received": {
@@ -15797,7 +16063,7 @@
     "Marikler": {
       "index": 7856,
       "owner_key": "3A94QTTys6SpZRpgHJchu2M5b4SqMBJasijEHR1yABn2",
-      "balance": 659276,
+      "balance": 647962,
       "membership_expire_on": 1707404713,
       "next_cert_issuable_on": 1692187606,
       "certs_received": {
@@ -15817,8 +16083,8 @@
     "Nicolasd": {
       "index": 6111,
       "owner_key": "3AUcPdhR2pSyx53hD8kNEM6H6hoBMoTPPQjvgvzzogNo",
-      "balance": 261065,
-      "membership_expire_on": 1696157509,
+      "balance": 211051,
+      "membership_expire_on": 1726140374,
       "next_cert_issuable_on": 1680343181,
       "certs_received": {
         "Clarinette": 1698977303,
@@ -15834,7 +16100,7 @@
     "Deymann": {
       "index": 8722,
       "owner_key": "3AVyiubTPYQo4fHyNZaW78p7VVs7t1yyfkSnWEgBHmoR",
-      "balance": 406108,
+      "balance": 445794,
       "membership_expire_on": 1720012467,
       "next_cert_issuable_on": 1690476065,
       "certs_received": {
@@ -15848,7 +16114,7 @@
     "Cyrielle": {
       "index": 9279,
       "owner_key": "3AYU6fYH7HPxDu3gLu3uVbWbKG9BoN8ySHs59eV95oMZ",
-      "balance": 269809,
+      "balance": 229495,
       "membership_expire_on": 1715902859,
       "next_cert_issuable_on": 1692934410,
       "certs_received": {
@@ -15864,9 +16130,9 @@
     "MarcoSko": {
       "index": 6082,
       "owner_key": "3AYuFsao6WpLxnZkLgXV72Lujzea7sHNXj2CvV5rvJeY",
-      "balance": 592669,
+      "balance": 632355,
       "membership_expire_on": 1721598876,
-      "next_cert_issuable_on": 1680002197,
+      "next_cert_issuable_on": 1694769694,
       "certs_received": {
         "Maminou13": 1742576807,
         "Aricat": 1730795837,
@@ -15892,8 +16158,8 @@
     "dch38": {
       "index": 6673,
       "owner_key": "3AzGhFpFy4gZ2nYK53DdQ4CE67Fc1ttsxMoRSBcbMhBU",
-      "balance": 611830,
-      "membership_expire_on": 1701194503,
+      "balance": 639516,
+      "membership_expire_on": 1727697929,
       "next_cert_issuable_on": 1686975184,
       "certs_received": {
         "hydromel": 1732944589,
@@ -15916,9 +16182,9 @@
     "Marilyne66": {
       "index": 10548,
       "owner_key": "3B3ojeJFwuq1kA3YsfxTbpuEBtb7YXrfQWSXauLyXPCb",
-      "balance": 172130,
+      "balance": 211816,
       "membership_expire_on": 1701114554,
-      "next_cert_issuable_on": 1689946186,
+      "next_cert_issuable_on": 1693747123,
       "certs_received": {
         "NaneDeProvence": 1732681524,
         "Jamespatagueule": 1732672154,
@@ -15928,10 +16194,25 @@
         "dymoon": 1732672419
       }
     },
+    "dothy": {
+      "index": 13555,
+      "owner_key": "3B4LJ4RFHDeWkMo327suNVLKyA8rxfjeoySUANiXSq3k",
+      "balance": 40970,
+      "membership_expire_on": 1725932636,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "ChristopheG25": 1757517570,
+        "Valerie25": 1757539306,
+        "Manuella85": 1757633322,
+        "Marido2563": 1757525984,
+        "twistol": 1757491778,
+        "Remi70290": 1757520275
+      }
+    },
     "Michele1200": {
       "index": 8038,
       "owner_key": "3B5dApLHYj1ZGCYxULbcCEq8eXNaQ1kimPsTcaBoYFcn",
-      "balance": 479362,
+      "balance": 519048,
       "membership_expire_on": 1709835329,
       "next_cert_issuable_on": 1663233814,
       "certs_received": {
@@ -15945,7 +16226,7 @@
     "EricMaillard": {
       "index": 7807,
       "owner_key": "3B7WJHzxGU19FpXV4T5RgHXRiLLZP8NmCbDN4R4x1HQ3",
-      "balance": 595529,
+      "balance": 635215,
       "membership_expire_on": 1710015459,
       "next_cert_issuable_on": 1674319046,
       "certs_received": {
@@ -15960,10 +16241,27 @@
         "hypericum": 1712621624
       }
     },
+    "LAURENCEBZ": {
+      "index": 13595,
+      "owner_key": "3BBZiBrBTjHan39292KkqN3ymFAKEx5L75XcdMejuVQo",
+      "balance": 95029,
+      "membership_expire_on": 1726509535,
+      "next_cert_issuable_on": 1696228567,
+      "certs_received": {
+        "DBuxerolle": 1758084721,
+        "EricPetit": 1758082608,
+        "mimi": 1758082882,
+        "MariPotter": 1758083160,
+        "PascaleRoncoroni": 1758082608,
+        "ElisaDesFougeres": 1758168231,
+        "art15te": 1758083160,
+        "Albassierseverine": 1759466003
+      }
+    },
     "FrederikaD": {
       "index": 7567,
       "owner_key": "3BEUw9XnMpyENWjf1odRrmzAT7jVp2MvHEbNb1Tnu8SF",
-      "balance": 447098,
+      "balance": 486784,
       "membership_expire_on": 1705365270,
       "next_cert_issuable_on": 1673879670,
       "certs_received": {
@@ -15988,7 +16286,7 @@
     "MARYBAL": {
       "index": 7298,
       "owner_key": "3BQ6CBrujh25xh6QtRYWpan5dWoNL9EZTWVaVQ8ux3nr",
-      "balance": 520715,
+      "balance": 560401,
       "membership_expire_on": 1703264280,
       "next_cert_issuable_on": 1687064836,
       "certs_received": {
@@ -16011,7 +16309,7 @@
     "Harmonie13": {
       "index": 7053,
       "owner_key": "3BQTuFX8CQ9eXhQ31obL7zrcpqQzBNf6jGCEwszGgQo3",
-      "balance": 584297,
+      "balance": 623983,
       "membership_expire_on": 1708555762,
       "next_cert_issuable_on": 1683650654,
       "certs_received": {
@@ -16038,14 +16336,14 @@
     "AnneB": {
       "index": 2016,
       "owner_key": "3BVT1fi1vVvrwXWEvmJ3A8WPHZZEqWmbJf8yqH6dNw89",
-      "balance": 1069313,
-      "membership_expire_on": 1697201645,
-      "next_cert_issuable_on": 1688179738,
+      "balance": 1048999,
+      "membership_expire_on": 1726405742,
+      "next_cert_issuable_on": 1696561566,
       "certs_received": {
         "JESS": 1744869694,
         "pepelepue17": 1719476357,
         "Reumy": 1715889537,
-        "Chiara07": 1701226490,
+        "Chiara07": 1759177258,
         "Eva": 1734559511,
         "BorisPuyet": 1750932068,
         "mathieu": 1716153703,
@@ -16053,12 +16351,28 @@
         "MargheB": 1709756700
       }
     },
+    "Joseluisrenacer": {
+      "index": 13553,
+      "owner_key": "3BZNPG8BeEnQrssH69KuqSkifjV7AA2g8m2DfYynfD5V",
+      "balance": 132639,
+      "membership_expire_on": 1725967083,
+      "next_cert_issuable_on": 1696282344,
+      "certs_received": {
+        "MaiteTudela": 1757611606,
+        "SantiTrinquete": 1757571950,
+        "begobienestar": 1757613795,
+        "YagoMago": 1757575699,
+        "EstefaniaLopez": 1757739431,
+        "Elenarepostera": 1757614091,
+        "jilguero": 1757631161
+      }
+    },
     "ChristopheG25": {
       "index": 12422,
       "owner_key": "3BoWtqCnQ9t4oKjBbobCG3FHNpFwgdabDsaKSQgXuxL5",
-      "balance": 522524,
+      "balance": 741710,
       "membership_expire_on": 1713393737,
-      "next_cert_issuable_on": 1692679776,
+      "next_cert_issuable_on": 1694474370,
       "certs_received": {
         "MicheleSauterey": 1756011612,
         "BenjaminDAVID": 1755200873,
@@ -16080,7 +16394,7 @@
     "IldaraMaioralta": {
       "index": 10497,
       "owner_key": "3BqUXgg3uzFaUuzB5iUAFyx1k74sycPueK1zYUJvxpi9",
-      "balance": 134305,
+      "balance": 165991,
       "membership_expire_on": 1700775357,
       "next_cert_issuable_on": 1691219600,
       "certs_received": {
@@ -16102,6 +16416,7 @@
         "MariaLabru": 1742776908,
         "Anaagua": 1739574701,
         "RuthLibelulaAzul": 1732404163,
+        "CristinaAbella": 1757064944,
         "Sietske": 1749910337,
         "RocioArmonia": 1739878323,
         "ViudasDasTerras": 1746419497
@@ -16110,16 +16425,17 @@
     "Georges_M_mbr": {
       "index": 3561,
       "owner_key": "3Bt576dojC3Has4vwXFoxENm4QwuhUEp2FHA47ZRHHZK",
-      "balance": 1085037,
+      "balance": 1124723,
       "membership_expire_on": 1708369427,
-      "next_cert_issuable_on": 1673838385,
+      "next_cert_issuable_on": 1695026823,
       "certs_received": {
         "Alinerv": 1705456169,
         "jef": 1732498073,
         "Alter2021_83": 1699559065,
-        "NeyKrom": 1696138193,
         "Magvr": 1705456169,
+        "LionMackry": 1758065800,
         "Mathieuf": 1702691876,
+        "Sandrine-": 1758658157,
         "JeanMarieTUBOEUF": 1713989251,
         "Ethersource83": 1698357946,
         "Bea": 1705468973
@@ -16128,7 +16444,7 @@
     "Fayce": {
       "index": 6373,
       "owner_key": "3C5uf8tPGayVLvxXjRbudreoXpMzjcQaNDMNPp8oDZDV",
-      "balance": 930658,
+      "balance": 970344,
       "membership_expire_on": 1701130912,
       "next_cert_issuable_on": 1649156015,
       "certs_received": {
@@ -16145,7 +16461,7 @@
     "Elisa13": {
       "index": 11570,
       "owner_key": "3CDQo3mTE3B5tMimsCHW7CH2nCCuZJv2Nj3CjnCMTQFB",
-      "balance": 214326,
+      "balance": 254012,
       "membership_expire_on": 1704494791,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -16159,7 +16475,7 @@
     "Elimarine": {
       "index": 7593,
       "owner_key": "3CJL9MgPK6uLCzYSxtkVGZVtgyMCfrsJJdkDUaXutWAN",
-      "balance": 490896,
+      "balance": 552082,
       "membership_expire_on": 1705181888,
       "next_cert_issuable_on": 1688891882,
       "certs_received": {
@@ -16190,7 +16506,7 @@
     "StefIndigo": {
       "index": 12871,
       "owner_key": "3CUysxaD1U3jhaTZCBZfuApfVEaYzLNcQBk9MRBqTmg8",
-      "balance": 90440,
+      "balance": 129126,
       "membership_expire_on": 1718147709,
       "next_cert_issuable_on": 1689950252,
       "certs_received": {
@@ -16207,17 +16523,19 @@
     "rockwater": {
       "index": 7760,
       "owner_key": "3CW98ao3gGbbdQBe24WCZAap4VjkctHA3Xi6PFGpVXR3",
-      "balance": 539376,
+      "balance": 587762,
       "membership_expire_on": 1708633986,
-      "next_cert_issuable_on": 1693235588,
+      "next_cert_issuable_on": 1694395810,
       "certs_received": {
         "Etipol61": 1713576048,
         "Claudia63": 1737743661,
         "paidge": 1718580783,
+        "UBUNTU": 1757115744,
         "FredEnergie": 1742060384,
         "PhilippeLafontaine": 1715369652,
         "Ashawik": 1713558645,
         "Anamaya": 1718307342,
+        "Augusta24": 1758832082,
         "Yukulele": 1713849988,
         "Omereya": 1716114743,
         "OlivierAuber": 1713570273,
@@ -16236,7 +16554,7 @@
     "PierreTransformant": {
       "index": 7208,
       "owner_key": "3CXrrMrwqmJnCij5ZiP5h3SC6cP41KWfesqZG323uXEF",
-      "balance": 567793,
+      "balance": 607479,
       "membership_expire_on": 1707052708,
       "next_cert_issuable_on": 1664105768,
       "certs_received": {
@@ -16256,7 +16574,7 @@
     "Frabolando": {
       "index": 7011,
       "owner_key": "3CaGwUEte88jpQ4RisivhbzSjnoWM6datZBh7poEFp3E",
-      "balance": 840211,
+      "balance": 879897,
       "membership_expire_on": 1702309300,
       "next_cert_issuable_on": 1677384302,
       "certs_received": {
@@ -16290,20 +16608,28 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "solinelacaze": {
+      "index": 13640,
+      "owner_key": "3Cm9nVxDp84aBnTHknqvMK8uDAmgm7rVotREqUpnq1qS",
+      "balance": 24992,
+      "membership_expire_on": 1725990326,
+      "next_cert_issuable_on": 1695895104,
+      "certs_received": {
+        "alaintorres": 1758242129,
+        "Pocpoc": 1757707466,
+        "ThierryLacaze": 1757548502,
+        "Bettylisameli": 1757885202,
+        "CarmenAlonso": 1757703647
+      }
+    },
     "GillesGranger": {
       "index": 5690,
       "owner_key": "3CoRfrSYFLBjinYFStPzVJdHLpfUv54zwNtzkKNoc3HZ",
-      "balance": 592007,
-      "membership_expire_on": 1718807825,
+      "balance": 609891,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1649321485,
       "certs_received": {
-        "jeje43": 1694670785,
-        "Sand": 1694588382,
-        "Canguy43": 1694614318,
-        "ptitevero": 1695364238,
-        "Flandelila": 1694676989,
         "AgglaeLaFee": 1754628947,
-        "frisette43": 1695268069,
         "andregournier43": 1738547462
       }
     },
@@ -16318,8 +16644,8 @@
     "Eliska31": {
       "index": 10118,
       "owner_key": "3CrxuJ6iks1QYC9sfJATPXv4BBDN2hFku6pipMmZHEfg",
-      "balance": 319521,
-      "membership_expire_on": 1696344131,
+      "balance": 354895,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1672642300,
       "certs_received": {
         "Eleonora": 1728889824,
@@ -16332,7 +16658,7 @@
     "MissCC": {
       "index": 12908,
       "owner_key": "3CuXTSGTV4ZecU7nYZ2QNySvpR2xUJN9TmzzpMQgncEZ",
-      "balance": 83304,
+      "balance": 122990,
       "membership_expire_on": 1718458150,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -16346,10 +16672,11 @@
     "Sylvdesbois": {
       "index": 12301,
       "owner_key": "3Cvwr8i37JYLt95pNppGEYBus2Fsh5rWT2tAuZ1VykVD",
-      "balance": 152224,
+      "balance": 191910,
       "membership_expire_on": 1712430473,
-      "next_cert_issuable_on": 1688453196,
+      "next_cert_issuable_on": 1696330883,
       "certs_received": {
+        "gege110560": 1759602109,
         "MalouCanevet": 1744262839,
         "Nuagebleu29": 1744226655,
         "ThierryYo": 1744185038,
@@ -16360,7 +16687,7 @@
     "Fab26": {
       "index": 11372,
       "owner_key": "3D94sUuS62Qz3g2ekGiGeWCbY6Z3h1ie4VPcnkGWmzs6",
-      "balance": 230211,
+      "balance": 269897,
       "membership_expire_on": 1706312907,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -16374,7 +16701,7 @@
     "Dony2022": {
       "index": 9230,
       "owner_key": "3DF94RUN5bML5VnXQnhBPP4iucSy67FdqsNpqPHjG2zQ",
-      "balance": 405860,
+      "balance": 445546,
       "membership_expire_on": 1723777538,
       "next_cert_issuable_on": 1669477968,
       "certs_received": {
@@ -16396,9 +16723,9 @@
     "carmela": {
       "index": 5027,
       "owner_key": "3DP7cGbh7jYdoPGufwErCauzBBMSQJYEcQSwqF6UiKK5",
-      "balance": 47747,
+      "balance": 82963,
       "membership_expire_on": 1703889487,
-      "next_cert_issuable_on": 1692199492,
+      "next_cert_issuable_on": 1694965665,
       "certs_received": {
         "kapis": 1745196051,
         "ArtesaniaAna": 1724914458,
@@ -16406,7 +16733,6 @@
         "Cordeliaze": 1755281840,
         "ErickG_G": 1713053557,
         "AfricadeHarmonia": 1732847897,
-        "mluque71": 1696614639,
         "Ainat255": 1727165740,
         "salmaluna": 1737236023,
         "agustinton": 1721714903,
@@ -16416,20 +16742,18 @@
         "Montsin": 1726503536,
         "Mokaita": 1715909422,
         "EricSIMON": 1708384614,
-        "LaCasaGran": 1694997755,
         "Tulsi": 1738372841,
         "sheveck": 1751229405,
-        "timetale": 1694662242,
         "EliBenifato": 1713080408,
         "Lurtxu": 1704443093,
         "Sonrie": 1746573595,
+        "Estherflamenki": 1757543459,
         "AngieantesGeles": 1731871827,
         "Josepeuta": 1704443093,
         "Bea813": 1721541294,
         "MaraVilla": 1725229566,
         "Bogart": 1705811879,
         "TeisaTriskelion": 1716498681,
-        "LI21": 1696409051,
         "veropuebla": 1741308222,
         "luismo": 1703567863,
         "RachelGreen": 1713064313,
@@ -16445,6 +16769,7 @@
         "Nella": 1716593836,
         "Dixebral": 1697591274,
         "Brahmaya": 1699476223,
+        "Felisa": 1758044018,
         "PeterGreen": 1706067937,
         "Manacor": 1738806661,
         "conchitaSIMON": 1708384614,
@@ -16469,12 +16794,12 @@
         "Angeluis": 1713056358,
         "Nadou": 1704185875,
         "SandraHeleno": 1704426692,
+        "MAC": 1759392290,
         "HyperBrut": 1721596794,
         "sarava": 1721855549,
         "Amparo": 1713070804,
         "Gevirod": 1715217723,
-        "Gclaire": 1732404163,
-        "fania": 1696359247
+        "Gclaire": 1732404163
       }
     },
     "Mine": {
@@ -16496,7 +16821,7 @@
     "jeanadam": {
       "index": 6839,
       "owner_key": "3DTzwaF1yZda5SHQHHWVrcuMcsQkxT7c9hxbZgfoShRb",
-      "balance": 732384,
+      "balance": 772070,
       "membership_expire_on": 1704242002,
       "next_cert_issuable_on": 1687252924,
       "certs_received": {
@@ -16511,7 +16836,7 @@
     "martre": {
       "index": 5587,
       "owner_key": "3DVhHAUo7tP4h3BRT1Uga73zC9XvnVhXeNqK6g4NhD6Q",
-      "balance": 583658,
+      "balance": 623344,
       "membership_expire_on": 1720292176,
       "next_cert_issuable_on": 1685943108,
       "certs_received": {
@@ -16527,7 +16852,7 @@
     "MathieuDebray": {
       "index": 6858,
       "owner_key": "3DW4Pofsf9LeZn5N8bFHA1gBpZRAhnYFt141sFwMEsSn",
-      "balance": 557095,
+      "balance": 596781,
       "membership_expire_on": 1702472718,
       "next_cert_issuable_on": 1680688245,
       "certs_received": {
@@ -16546,7 +16871,7 @@
     "annicam": {
       "index": 1074,
       "owner_key": "3DXfPo9tuARjdDqCWzezY5F85XRvGsbV2P7EwPekPe8x",
-      "balance": 1516175,
+      "balance": 1540861,
       "membership_expire_on": 1707603826,
       "next_cert_issuable_on": 1676118226,
       "certs_received": {
@@ -16564,7 +16889,7 @@
     "Jolieflower": {
       "index": 10267,
       "owner_key": "3DdXSFzemJorniz9yqj5tKSwNzebaHsdb4beRLWPprku",
-      "balance": 63572,
+      "balance": 100858,
       "membership_expire_on": 1723933560,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -16578,7 +16903,7 @@
     "MartinL": {
       "index": 8563,
       "owner_key": "3Dh5aCwFMuSAQUtDLwPhqhygQfyWvZct2tC6Ju6qRZvK",
-      "balance": 467124,
+      "balance": 506810,
       "membership_expire_on": 1715790259,
       "next_cert_issuable_on": 1686914105,
       "certs_received": {
@@ -16617,9 +16942,9 @@
     "DominiqueCuvelier": {
       "index": 6311,
       "owner_key": "3DrdF1zcJaC4P6ZH1HgCoYnURtYKxGeUnXP36QMtiDAg",
-      "balance": 636531,
-      "membership_expire_on": 1699124096,
-      "next_cert_issuable_on": 1639063162,
+      "balance": 636217,
+      "membership_expire_on": 1725742710,
+      "next_cert_issuable_on": 1694415468,
       "certs_received": {
         "Solesan": 1701160190,
         "CarBro": 1701131488,
@@ -16631,7 +16956,7 @@
     "BenedicteRad": {
       "index": 12823,
       "owner_key": "3DxGJ3DhrZVEDStuP6ZRGBRACQLn62MzF66wdMiGQn3o",
-      "balance": 111880,
+      "balance": 151566,
       "membership_expire_on": 1717184375,
       "next_cert_issuable_on": 1687666376,
       "certs_received": {
@@ -16646,7 +16971,7 @@
     "Yannis": {
       "index": 2874,
       "owner_key": "3E6p6G3F63qnx2FByCBMZLt2VXnuJaHDeYoKSMjkiifo",
-      "balance": 906552,
+      "balance": 946238,
       "membership_expire_on": 1720712356,
       "next_cert_issuable_on": 1691747096,
       "certs_received": {
@@ -16663,7 +16988,7 @@
     "Claud2": {
       "index": 13409,
       "owner_key": "3ENCCssRAcizf4q35qSGB1ympg6miLmZMVUbz9LLucHT",
-      "balance": 12748,
+      "balance": 52434,
       "membership_expire_on": 1723815596,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -16683,9 +17008,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1655170062,
       "certs_received": {
-        "Aude49": 1694346407,
         "AnneAmbles": 1719649834,
-        "PatrickGilles": 1696095547,
         "DaroussinB": 1721164669
       }
     },
@@ -16700,7 +17023,7 @@
     "AMAA": {
       "index": 8282,
       "owner_key": "3EXh6s8NYxfTVH2QFi8eubo7oJhs7UTcuxu4Wk41QMUJ",
-      "balance": 479881,
+      "balance": 519567,
       "membership_expire_on": 1717858615,
       "next_cert_issuable_on": 1674993769,
       "certs_received": {
@@ -16721,14 +17044,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1662185883,
       "certs_received": {
-        "Janickou": 1710288536,
-        "Kaluna": 1693532417
+        "Janickou": 1710288536
       }
     },
     "mafalda": {
       "index": 12635,
       "owner_key": "3EdxUQxTQw84DXxZQ4A56V4mPbMn9Mm4WYh59xEjSU6v",
-      "balance": 258884,
+      "balance": 298570,
       "membership_expire_on": 1714842475,
       "next_cert_issuable_on": 1687097815,
       "certs_received": {
@@ -16742,8 +17064,8 @@
     "Isabelle13004": {
       "index": 6706,
       "owner_key": "3EiK2o9xfheRPjoPLZqqmBVaWY7zREJsxd3nvMiCi523",
-      "balance": 449641,
-      "membership_expire_on": 1700323781,
+      "balance": 474327,
+      "membership_expire_on": 1726743374,
       "next_cert_issuable_on": 1678549893,
       "certs_received": {
         "JF13": 1705443499,
@@ -16765,9 +17087,9 @@
     "Dom79": {
       "index": 11715,
       "owner_key": "3EiaBh4gn7oGaqqgbNEkdCkCj9bV1fD9CMPBfXxpfh2Y",
-      "balance": 242677,
+      "balance": 252363,
       "membership_expire_on": 1708623642,
-      "next_cert_issuable_on": 1685632601,
+      "next_cert_issuable_on": 1694336447,
       "certs_received": {
         "Samay": 1740198760,
         "FRANCINE79": 1740804127,
@@ -16797,7 +17119,7 @@
     "cherie11": {
       "index": 7590,
       "owner_key": "3EsJb6GQ1virN1XkjaQDY3bXJ7JCQqbDL2sUBNEz9Tw8",
-      "balance": 541296,
+      "balance": 580982,
       "membership_expire_on": 1711579432,
       "next_cert_issuable_on": 1673851191,
       "certs_received": {
@@ -16824,7 +17146,7 @@
     "Unai": {
       "index": 11120,
       "owner_key": "3EycfvJNy9E5j2EeZSmd6AxwCapmj8ZHsPtpyyNoaXDE",
-      "balance": 140607,
+      "balance": 200293,
       "membership_expire_on": 1703689967,
       "next_cert_issuable_on": 1679296558,
       "certs_received": {
@@ -16845,11 +17167,12 @@
     "Sunshining": {
       "index": 8343,
       "owner_key": "3F8YRLazhSku9S6BHttoSDcR4kZ8KYCuCwgsukCVKnW9",
-      "balance": 463085,
+      "balance": 502871,
       "membership_expire_on": 1718446979,
-      "next_cert_issuable_on": 1687182976,
+      "next_cert_issuable_on": 1696230869,
       "certs_received": {
         "Niranjana": 1734818636,
+        "CaroleRaets": 1758665792,
         "Morpheus": 1717386181,
         "Litlefarfadet": 1717387977,
         "freddonnay": 1717387977,
@@ -16862,9 +17185,9 @@
     "YannKervran": {
       "index": 160,
       "owner_key": "3FCP2PGN8USWykBcsXPVHM51gCj8zRz6vWi4X5nMN3C4",
-      "balance": 950087,
+      "balance": 989773,
       "membership_expire_on": 1707225639,
-      "next_cert_issuable_on": 1693019100,
+      "next_cert_issuable_on": 1695382790,
       "certs_received": {
         "Chris08": 1746482913,
         "Shinra": 1749082055,
@@ -16886,7 +17209,7 @@
     "GuyPerron": {
       "index": 3434,
       "owner_key": "3FMndcv32yAGsmMXQFrjc1a2AEoFnkpVw9JaBVLwDFZa",
-      "balance": 1330208,
+      "balance": 1369894,
       "membership_expire_on": 1700344677,
       "next_cert_issuable_on": 1653222838,
       "certs_received": {
@@ -16904,15 +17227,19 @@
     "FranciscoVenda": {
       "index": 12717,
       "owner_key": "3FP3WcNy4CdWRUpRa57igzBSGsdxfiiEuT4TbgrNbVsJ",
-      "balance": 119868,
+      "balance": 159554,
       "membership_expire_on": 1714905345,
-      "next_cert_issuable_on": 1687965411,
+      "next_cert_issuable_on": 1695305675,
       "certs_received": {
         "Le0": 1747885464,
         "FerSar": 1747874868,
         "otto": 1747855967,
+        "RafaMalheiro": 1757892088,
+        "Sonic": 1759259548,
+        "DivinaC": 1759086344,
         "HViegas": 1747765999,
         "DeboraTavares": 1747637588,
+        "Rahhui": 1758358422,
         "CrackMalheiro05": 1750899063,
         "JorgeDraven": 1752096317,
         "JoaoLestro": 1747624330,
@@ -16938,7 +17265,7 @@
     "LaGravelotte": {
       "index": 7696,
       "owner_key": "3FSf6nCqQL2uvc9eg3GqANy1CGDCr9x6D3qT1iiCZLH4",
-      "balance": 526534,
+      "balance": 566220,
       "membership_expire_on": 1710844900,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -16965,7 +17292,7 @@
     "MANUMA0": {
       "index": 10156,
       "owner_key": "3FVtsJLfxzFzPVjws55KfcqyhHdNfaUDUBdP6peAw3is",
-      "balance": 336144,
+      "balance": 375830,
       "membership_expire_on": 1696773140,
       "next_cert_issuable_on": 1667618413,
       "certs_received": {
@@ -16982,17 +17309,16 @@
       "owner_key": "3FaWKFbDpsx8MYNdQhqwVopuBsDDNj1WpFVExkKPwg9s",
       "balance": 1169173,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632298736,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Tonychevalier974": 1722958193,
-        "NnattNature": 1697145786,
-        "marcos974": 1694564278
+        "NnattNature": 1697145786
       }
     },
     "Serres84": {
       "index": 13081,
       "owner_key": "3FcBtWXXvQT8WEVeELFFF9AJer2xRtGDnzE8zVarB8iw",
-      "balance": 75876,
+      "balance": 115562,
       "membership_expire_on": 1717159748,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -17014,7 +17340,7 @@
     "Lore": {
       "index": 13225,
       "owner_key": "3FtrvWpqWwSUNTNbAw8E4EffD5wCiggNKNF9jkZoDdmb",
-      "balance": 46220,
+      "balance": 85906,
       "membership_expire_on": 1720288629,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -17029,7 +17355,7 @@
     "Towanda": {
       "index": 4401,
       "owner_key": "3Fw1c5UmhmdPZtTbqkakWqNdFfQYG7kPH3H9C7tEW5bC",
-      "balance": 930016,
+      "balance": 769802,
       "membership_expire_on": 1723519117,
       "next_cert_issuable_on": 1675654223,
       "certs_received": {
@@ -17050,7 +17376,7 @@
     "Moujik": {
       "index": 7198,
       "owner_key": "3G16D6enbPeshd4QqXxmJnCdg99ZiiGBwUmrgkUR6KSQ",
-      "balance": 367793,
+      "balance": 407479,
       "membership_expire_on": 1700873744,
       "next_cert_issuable_on": 1671626436,
       "certs_received": {
@@ -17069,8 +17395,8 @@
     "Clemvie": {
       "index": 9578,
       "owner_key": "3G1VZMXqVx7FhnDiuxCtbeXm9guyWWsk5G4A2C8Cgqx9",
-      "balance": 157178,
-      "membership_expire_on": 1694369400,
+      "balance": 175404,
+      "membership_expire_on": 1727642795,
       "next_cert_issuable_on": 1680924950,
       "certs_received": {
         "Camillefairy": 1726015008,
@@ -17083,7 +17409,7 @@
     "Hectonath": {
       "index": 7677,
       "owner_key": "3G58k2j5bH2g2ULVR9esEs5kx8fA3ZaEKCY1ZPufK9qA",
-      "balance": 926202,
+      "balance": 965888,
       "membership_expire_on": 1711376188,
       "next_cert_issuable_on": 1667363293,
       "certs_received": {
@@ -17098,7 +17424,7 @@
     "Carla": {
       "index": 10523,
       "owner_key": "3G6gYAUJAApmqgHY5cYdybvN5aqm7i43uvs66Ym8hbAH",
-      "balance": 897341,
+      "balance": 939027,
       "membership_expire_on": 1700504516,
       "next_cert_issuable_on": 1686638892,
       "certs_received": {
@@ -17116,9 +17442,9 @@
     "Piet": {
       "index": 10031,
       "owner_key": "3G9ps238onvahFkHKvFWNJ2cBcSJqeQRUHwaD61GZjsL",
-      "balance": 303115,
-      "membership_expire_on": 1696025631,
-      "next_cert_issuable_on": 1681287006,
+      "balance": 342801,
+      "membership_expire_on": 1726058585,
+      "next_cert_issuable_on": 1695615596,
       "certs_received": {
         "Laeti": 1741663431,
         "Zab": 1729486747,
@@ -17143,7 +17469,7 @@
     "nicolecambourian": {
       "index": 12516,
       "owner_key": "3GDSUTaXgFwLA8mQ254VRfNsf1HMgMKJ3trecCqKQNh1",
-      "balance": 223840,
+      "balance": 263526,
       "membership_expire_on": 1710936823,
       "next_cert_issuable_on": 1687859705,
       "certs_received": {
@@ -17160,7 +17486,7 @@
     "Ainoha": {
       "index": 10969,
       "owner_key": "3GDwUq6pkVRMobHHFsKjqxxFNYwEqx8kzraFgmmqb173",
-      "balance": 240425,
+      "balance": 290111,
       "membership_expire_on": 1702868648,
       "next_cert_issuable_on": 1690375314,
       "certs_received": {
@@ -17179,8 +17505,8 @@
     "VirginiaDuran": {
       "index": 6106,
       "owner_key": "3GFGH8463qeukbr7rQmpaaPnwvXzjDWVAYQuTBe8GGsT",
-      "balance": 365651,
-      "membership_expire_on": 0,
+      "balance": 356521,
+      "membership_expire_on": 1726071960,
       "next_cert_issuable_on": 1665404423,
       "certs_received": {
         "mluque71": 1697591070,
@@ -17195,22 +17521,18 @@
     "dgi": {
       "index": 447,
       "owner_key": "3GJTWJ4gqXVDwPSCMEZ5ZNPR6RGpP6nWxVMxYH1qnAN3",
-      "balance": 410457,
-      "membership_expire_on": 1694769656,
+      "balance": 13191,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1636964288,
       "certs_received": {
         "Galleron": 1707976855,
-        "ThierryGillet": 1695795423,
-        "mimi": 1695536396,
-        "Danfernbanck": 1695859073,
-        "PascaleRoncoroni": 1695240946,
         "GUYHL": 1696984315
       }
     },
     "Leonardine": {
       "index": 11511,
       "owner_key": "3GKm3gNuqFPa3bZuTKmuJpZrRqpgSUpW3d5zxn5k3itu",
-      "balance": 87480,
+      "balance": 117166,
       "membership_expire_on": 1707334452,
       "next_cert_issuable_on": 1678958502,
       "certs_received": {
@@ -17226,7 +17548,7 @@
     "Elorac": {
       "index": 8946,
       "owner_key": "3GSGQTAyTH9LRQ4chqBpkvh9n3o5DaswCGCCjJcYPa8v",
-      "balance": 257592,
+      "balance": 258778,
       "membership_expire_on": 1716325950,
       "next_cert_issuable_on": 1687150345,
       "certs_received": {
@@ -17245,7 +17567,7 @@
     "ChantDou": {
       "index": 10807,
       "owner_key": "3GbF58zmaS6v16aSJ97gnVdazkoJWzChrH9LdbNG8U7o",
-      "balance": 288825,
+      "balance": 328511,
       "membership_expire_on": 1701030566,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -17267,7 +17589,7 @@
     "Unomasuno": {
       "index": 7308,
       "owner_key": "3GiDqiBGtJDSnk1SD17MLd2DCbhQ73xL7smzRYszmftJ",
-      "balance": 231168,
+      "balance": 270854,
       "membership_expire_on": 1704572456,
       "next_cert_issuable_on": 1688984955,
       "certs_received": {
@@ -17316,7 +17638,7 @@
     "LoupBlanc": {
       "index": 8627,
       "owner_key": "3GmYs1tNNGf1a47g9S21je46hgXmBLtTJ6DM3G483JsQ",
-      "balance": 261122,
+      "balance": 315808,
       "membership_expire_on": 1713182440,
       "next_cert_issuable_on": 1691240002,
       "certs_received": {
@@ -17341,7 +17663,7 @@
     "Tilou": {
       "index": 12119,
       "owner_key": "3GousJCkj6F2vm2taYEgQBwPj5nAHe9Fi2XAGhFaiDgK",
-      "balance": 170612,
+      "balance": 210298,
       "membership_expire_on": 1711324840,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -17374,7 +17696,7 @@
     "Berdulle": {
       "index": 12700,
       "owner_key": "3HJsAtMdQkCmsaC8xCyuCXdGAuirbHEE36k6KG8nek7y",
-      "balance": 126372,
+      "balance": 166058,
       "membership_expire_on": 1711227719,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -17389,31 +17711,35 @@
     "Estel97430": {
       "index": 9683,
       "owner_key": "3HNcc5JtRL78jiJTFecQQ5ANWAtjKDnnP1axwV48iw8B",
-      "balance": 249409,
-      "membership_expire_on": 1695639278,
-      "next_cert_issuable_on": 1687470771,
+      "balance": 245095,
+      "membership_expire_on": 1725789804,
+      "next_cert_issuable_on": 1696304479,
       "certs_received": {
         "MicheleTampon974": 1727277611,
         "bardone01": 1727199019,
         "Linya": 1739380725,
         "Myriam97410": 1727196878,
+        "mdanielle97430": 1755196432,
         "Gislaine974": 1727394015,
         "KatalineMOREL": 1727239131,
-        "FredericAmany974": 1727199470
+        "FredericAmany974": 1727199470,
+        "Wendy97418": 1757472970,
+        "Ngilozi": 1759350963
       }
     },
     "MarieBouny": {
       "index": 5052,
       "owner_key": "3HavrywvFsJ1Euyxuq6XdMn5Fntu5hxZbbpMYbzzPaAG",
-      "balance": 892345,
+      "balance": 932031,
       "membership_expire_on": 1710805631,
-      "next_cert_issuable_on": 1693189284,
+      "next_cert_issuable_on": 1694349552,
       "certs_received": {
         "Crystal": 1742466883,
         "Etipol61": 1743739692,
         "JoelleTAILLANDIER": 1718775786,
         "ChristianM": 1737011253,
-        "PierreAubert": 1742443245
+        "PierreAubert": 1742443245,
+        "JeanTibou": 1756948457
       }
     },
     "simoncossus": {
@@ -17432,10 +17758,26 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Matthias2405": {
+      "index": 13519,
+      "owner_key": "3Hk12Es5y17mKx2dBtojHvh6WCEpVcuwWP8ftKqbZTxa",
+      "balance": 131957,
+      "membership_expire_on": 1725124003,
+      "next_cert_issuable_on": 1694330367,
+      "certs_received": {
+        "Jens777": 1757436542,
+        "SoniaMallorca": 1756784999,
+        "majo": 1757034862,
+        "Thor": 1756693529,
+        "Ralf": 1756833505,
+        "SoniaElena": 1756765885,
+        "ElenaMavida": 1757267802
+      }
+    },
     "cedre": {
       "index": 8616,
       "owner_key": "3Ho9Hsm8wfTaMXhdEb5UQBMrbAuMUYL9xCfXgL5sFgbV",
-      "balance": 352569,
+      "balance": 392255,
       "membership_expire_on": 1717436700,
       "next_cert_issuable_on": 1690676513,
       "certs_received": {
@@ -17452,7 +17794,7 @@
     "Zazou": {
       "index": 2267,
       "owner_key": "3HtNSpSFkbP8gRc4u132eigbi3bEZd5HXSz6z57AtYau",
-      "balance": 1183828,
+      "balance": 1223514,
       "membership_expire_on": 1701699745,
       "next_cert_issuable_on": 1642753474,
       "certs_received": {
@@ -17470,30 +17812,35 @@
     "Minita": {
       "index": 13207,
       "owner_key": "3HuNuu3Su9FewNwUo3y46ketjtc7dNyQnungVAcZCXTA",
-      "balance": 60588,
+      "balance": 100274,
       "membership_expire_on": 1721365474,
-      "next_cert_issuable_on": 1692116794,
+      "next_cert_issuable_on": 1696566300,
       "certs_received": {
+        "FatimaDonoso": 1758744836,
         "HelenaMatos": 1753050472,
         "Yohan": 1753078692,
+        "DivinaC": 1758148525,
         "SaoSampaio": 1753042108,
         "Rahhui": 1752923325,
+        "DavidJorge": 1758400238,
         "SandraHeleno": 1753040817
       }
     },
     "AN-gela": {
       "index": 13286,
       "owner_key": "3Hx5u752kh7NZdWoVmo7dbVUMJPu7ho5uRtknjy8PfXK",
-      "balance": 9040,
+      "balance": 34726,
       "membership_expire_on": 1721775126,
-      "next_cert_issuable_on": 1692926689,
+      "next_cert_issuable_on": 1696415437,
       "certs_received": {
         "Lilibeth79": 1755730640,
         "SophieRita": 1754074464,
+        "Amethyste13": 1758691139,
         "Krompo": 1753669485,
         "Maclockbinum": 1753669485,
         "Barbabulle73": 1753669706,
         "Heloim": 1753724489,
+        "Nadia": 1757308462,
         "CedricG": 1753484536,
         "Puravida": 1753734253
       }
@@ -17501,7 +17848,7 @@
     "Perdin": {
       "index": 10335,
       "owner_key": "3Hy7si5RMdZ9GyAAg2udYfwzGtTDnK5FsMCRKijxNsed",
-      "balance": 309636,
+      "balance": 349322,
       "membership_expire_on": 1698710010,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -17520,7 +17867,7 @@
     "dine": {
       "index": 6086,
       "owner_key": "3JFkxSEHXmRLB5yngmYnVkss8JgGqUkXC4FWwsr9emEV",
-      "balance": 901697,
+      "balance": 865583,
       "membership_expire_on": 1711148137,
       "next_cert_issuable_on": 1691170437,
       "certs_received": {
@@ -17540,9 +17887,9 @@
     "Lilibeth79": {
       "index": 13174,
       "owner_key": "3JG1r6vTCJHPvX3jKpXXg2arkKwzkbemqu6CdZvpqZic",
-      "balance": 49128,
+      "balance": 85814,
       "membership_expire_on": 1719601104,
-      "next_cert_issuable_on": 1693202619,
+      "next_cert_issuable_on": 1696425091,
       "certs_received": {
         "Uriane13": 1751161617,
         "DomVe": 1752380937,
@@ -17554,10 +17901,24 @@
         "Barbabulle73": 1752129049
       }
     },
+    "Claudebramy": {
+      "index": 13644,
+      "owner_key": "3JVdraQZgkAVHdN15pcaZK6RWYhp1YbGpnmdakdongXe",
+      "balance": 55092,
+      "membership_expire_on": 1724248078,
+      "next_cert_issuable_on": 1696631078,
+      "certs_received": {
+        "Katou": 1757817354,
+        "Andrelie": 1757814717,
+        "AnneLaroche": 1757184908,
+        "LouisCarvalho": 1756616127,
+        "domimeert": 1757350903
+      }
+    },
     "Michel-Immerzeel": {
       "index": 7789,
       "owner_key": "3JXYKmeCpt3oKSTTYNbQwXWKH9UxN17qC3J5JKPKdmEw",
-      "balance": 621732,
+      "balance": 661418,
       "membership_expire_on": 1712865027,
       "next_cert_issuable_on": 1674310084,
       "certs_received": {
@@ -17573,7 +17934,7 @@
     "Jude84": {
       "index": 7525,
       "owner_key": "3JamJFeSrQHECEuvQfLscntjEPccRm6HhGbuJZ4FNXV2",
-      "balance": 519500,
+      "balance": 559186,
       "membership_expire_on": 1706502309,
       "next_cert_issuable_on": 1675016709,
       "certs_received": {
@@ -17596,17 +17957,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Majoli34": 1695929352,
-        "ADodson": 1695952455,
-        "Mikhaella3448": 1697165039,
-        "Dodjay": 1696136786,
-        "PascalGuillemain": 1696442277
+        "Mikhaella3448": 1697165039
       }
     },
     "EllisBell": {
       "index": 13187,
       "owner_key": "3Jt9HyVUFbh4Nt1hCXuzxFn4EjeLfWT9QabNqTXezU24",
-      "balance": 46992,
+      "balance": 86678,
       "membership_expire_on": 1720450377,
       "next_cert_issuable_on": 1691026520,
       "certs_received": {
@@ -17622,9 +17979,9 @@
     "StephanieN": {
       "index": 4723,
       "owner_key": "3JtHCwUajNrcndbssYedB6VXFVjBLCZ7UCXSXxMFw5P3",
-      "balance": 1132746,
+      "balance": 956832,
       "membership_expire_on": 1707246667,
-      "next_cert_issuable_on": 1679135206,
+      "next_cert_issuable_on": 1696049134,
       "certs_received": {
         "EricPetit": 1742198695,
         "GaryGrandin": 1739604683,
@@ -17637,7 +17994,7 @@
     "Mollie": {
       "index": 8106,
       "owner_key": "3JxDxom2VmHFNaChEsY3wERSkFK9oeaneC4y4rgjRnVE",
-      "balance": 444807,
+      "balance": 484493,
       "membership_expire_on": 1710531452,
       "next_cert_issuable_on": 1688483956,
       "certs_received": {
@@ -17665,7 +18022,7 @@
     "Baba83": {
       "index": 11257,
       "owner_key": "3K3SvEVUdEii1WJKS4aZu5FmmGhUU5L1m8XhfwqyKGTB",
-      "balance": 241860,
+      "balance": 281546,
       "membership_expire_on": 1705184614,
       "next_cert_issuable_on": 1675765972,
       "certs_received": {
@@ -17679,15 +18036,17 @@
     "Loulou09": {
       "index": 5895,
       "owner_key": "3K7kymjTX1P76fY4qHFmzNFsDt3B51Fi52JdcgSS9Een",
-      "balance": 127421,
+      "balance": 167107,
       "membership_expire_on": 1719882650,
       "next_cert_issuable_on": 1683535013,
       "certs_received": {
         "GeraldineLeprivier": 1697591070,
+        "PatrickRO": 1755939637,
         "Gentil09": 1699851212,
         "ChatelainAndrea": 1697768238,
         "ChatelainJimmy": 1697768534,
         "PhilippeRomanin": 1697591274,
+        "Rolande": 1755939637,
         "LeprivierLunel": 1697591478,
         "Timtitou": 1697768534
       }
@@ -17695,18 +18054,15 @@
     "ThierryS": {
       "index": 5833,
       "owner_key": "3KBqwR1cKzUhGiSp1umiaYkbEmYfSnMrt9DtxE2XH1Ld",
-      "balance": 495762,
+      "balance": 535448,
       "membership_expire_on": 1714500642,
       "next_cert_issuable_on": 1686647119,
       "certs_received": {
-        "looie": 1696222267,
         "NopamasYC": 1750376457,
         "Cristal38": 1696963001,
         "MioPalmon988": 1718820043,
-        "thierry38": 1696119252,
         "VWAUMANS": 1755654382,
-        "JBM": 1696793622,
-        "LaurentM": 1696036462
+        "JBM": 1696793622
       }
     },
     "laulotte": {
@@ -17730,29 +18086,23 @@
     "AudreyHesseling": {
       "index": 5616,
       "owner_key": "3KHxGhPFqkVu4hzXZnePk9H1FUtECtuvFqxsXjtRMze8",
-      "balance": 661087,
-      "membership_expire_on": 1696949800,
+      "balance": 667495,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1677206469,
       "certs_received": {
         "ChristelR": 1733434578,
-        "Niamor": 1693626560,
         "FrancoisW": 1702878373,
-        "AlexDurain": 1693639254,
-        "Alexia": 1740005774,
-        "Cecile": 1694066279,
-        "Eric3134": 1694037960,
-        "Ginger": 1693726425
+        "Alexia": 1740005774
       }
     },
     "littlebooboo": {
       "index": 4437,
       "owner_key": "3KHzVjKBuPSNRhvNjxF6NWnJRgjkLYiD9DpLNa5Xszp8",
-      "balance": 776425,
-      "membership_expire_on": 1698446086,
+      "balance": 786111,
+      "membership_expire_on": 1725059368,
       "next_cert_issuable_on": 1689478141,
       "certs_received": {
         "Mike": 1730002679,
-        "FlorentLucien": 1695798219,
         "MioPalmon988": 1709396151,
         "Aurelie38": 1746820068,
         "Maite5": 1729997687,
@@ -17770,7 +18120,7 @@
     "CrisBB": {
       "index": 10873,
       "owner_key": "3KNo5gnLnk6aJxV4BerNghmDPKnt7EPS7TbbnnG2ncwG",
-      "balance": 187512,
+      "balance": 202198,
       "membership_expire_on": 1702313343,
       "next_cert_issuable_on": 1690838486,
       "certs_received": {
@@ -17790,9 +18140,9 @@
     "NiCoLasF": {
       "index": 13255,
       "owner_key": "3KYtCAkWQyhAZaWqNqjHGuLqWV2csJC4PcC8FsrnP1Q5",
-      "balance": 37380,
+      "balance": 77066,
       "membership_expire_on": 1721954215,
-      "next_cert_issuable_on": 1692278144,
+      "next_cert_issuable_on": 1695476828,
       "certs_received": {
         "FernandP": 1753641256,
         "Carinelechelle": 1753653557,
@@ -17804,7 +18154,7 @@
     "Hestia": {
       "index": 5242,
       "owner_key": "3KbD1RCRYz3ndyUgEkSEJsqo51TNSRzCysTFxeV6YaWa",
-      "balance": 298949,
+      "balance": 338635,
       "membership_expire_on": 1707227048,
       "next_cert_issuable_on": 1688053306,
       "certs_received": {
@@ -17820,7 +18170,7 @@
     "Claudia63": {
       "index": 11128,
       "owner_key": "3KeLjeituVvapXa7VKVWbt8zLEFfJP24U9HwbuA6vBFt",
-      "balance": 431009,
+      "balance": 470695,
       "membership_expire_on": 1704232556,
       "next_cert_issuable_on": 1687837423,
       "certs_received": {
@@ -17846,7 +18196,7 @@
     "harry974": {
       "index": 3481,
       "owner_key": "3KiKyycxRPs1eMkvXBBn9Ab2nTCkM3eD4wyeDNtKq2qr",
-      "balance": 807841,
+      "balance": 997527,
       "membership_expire_on": 1722937193,
       "next_cert_issuable_on": 1687768427,
       "certs_received": {
@@ -17857,7 +18207,6 @@
         "ClaireAzur": 1717653601,
         "Tchois": 1727142763,
         "LenaSuryMangas": 1709061153,
-        "Laetitia97421": 1695705054,
         "Vero": 1709572857,
         "Fanny": 1711943334,
         "BabethMangas": 1716610310,
@@ -17871,7 +18220,6 @@
         "IsabellePAYET974": 1723919546,
         "guillaumedangin": 1723269780,
         "NathalieSF971": 1727217452,
-        "Evan97421": 1696674721,
         "Tonton974": 1709572857,
         "YuliyaM": 1729839412,
         "SophieCD974": 1744134754,
@@ -17896,7 +18244,7 @@
     "Dom26": {
       "index": 7781,
       "owner_key": "3KkkqHrodPoqXHTN8SjeAGejrtyTEHhBrcAggoqe2whV",
-      "balance": 500482,
+      "balance": 510168,
       "membership_expire_on": 1708180807,
       "next_cert_issuable_on": 1680345893,
       "certs_received": {
@@ -17925,9 +18273,9 @@
     "Vichara": {
       "index": 8264,
       "owner_key": "3L6JKkpeRGj8QcvEnpBfydtfXXEQxTsu22nEifmvgEqT",
-      "balance": 480717,
+      "balance": 502693,
       "membership_expire_on": 1711657836,
-      "next_cert_issuable_on": 1681647653,
+      "next_cert_issuable_on": 1695135384,
       "certs_received": {
         "Cordeliaze": 1715756347,
         "MaudD": 1716944869,
@@ -17963,7 +18311,7 @@
     "PhilWA": {
       "index": 2172,
       "owner_key": "3L79D8c2PUWdcGnvznpp3xWwk9CdYkcJiZyDkchWM9go",
-      "balance": 1644219,
+      "balance": 1683905,
       "membership_expire_on": 1699273881,
       "next_cert_issuable_on": 1668740500,
       "certs_received": {
@@ -17977,7 +18325,7 @@
     "catherine": {
       "index": 8781,
       "owner_key": "3LATknaUYjk5ZsZ8ADwTgGnueiinsSU9JYcxMwcbQMV5",
-      "balance": 413244,
+      "balance": 410930,
       "membership_expire_on": 1721490113,
       "next_cert_issuable_on": 1670579282,
       "certs_received": {
@@ -18006,7 +18354,7 @@
     "ReservaOriental": {
       "index": 8898,
       "owner_key": "3LU9VYdLNSyohq4RgLmxcBsVHxnmpj3VhobUiUVyfBzg",
-      "balance": 442978,
+      "balance": 431290,
       "membership_expire_on": 1718922370,
       "next_cert_issuable_on": 1669349285,
       "certs_received": {
@@ -18025,18 +18373,15 @@
     "licorne": {
       "index": 1494,
       "owner_key": "3LUWzMHwTMnpMSzKgLuPDvcE3XjWLaKgvoNCQJPnVQrh",
-      "balance": 1573194,
+      "balance": 1612880,
       "membership_expire_on": 1721586004,
       "next_cert_issuable_on": 1681964421,
       "certs_received": {
         "Emilie850": 1702182280,
         "Helene-petiteriviere": 1726946446,
         "ThierryLacaze": 1743286289,
-        "Cat": 1694053594,
         "Paola": 1729037421,
         "annievg": 1718604542,
-        "Dodjay": 1693957424,
-        "tradit": 1696433837,
         "PascalGuillemain": 1727804891
       }
     },
@@ -18059,9 +18404,9 @@
     "perenoel": {
       "index": 1826,
       "owner_key": "3LpodceoMgbrbcyfWDLNhTtez22b9UzFXDCWSG1y7LmK",
-      "balance": 1437782,
+      "balance": 1477468,
       "membership_expire_on": 1720546043,
-      "next_cert_issuable_on": 1689815295,
+      "next_cert_issuable_on": 1696213947,
       "certs_received": {
         "Eveilducoeur": 1723448407,
         "Michelangela": 1712177025,
@@ -18077,7 +18422,7 @@
     "Thesa": {
       "index": 11328,
       "owner_key": "3LtDE95XTxXavPtquhGEatjU4p6YVs9NCEzSzN3FjW61",
-      "balance": 227847,
+      "balance": 267533,
       "membership_expire_on": 1705872832,
       "next_cert_issuable_on": 1678107314,
       "certs_received": {
@@ -18111,7 +18456,7 @@
     "CRey": {
       "index": 5929,
       "owner_key": "3M2THEqt1SKh6WrUdXgVaaTdN2M4xrhVPGgSBUj2HpUv",
-      "balance": 556070,
+      "balance": 595756,
       "membership_expire_on": 1701643345,
       "next_cert_issuable_on": 1657764931,
       "certs_received": {
@@ -18145,7 +18490,7 @@
     "RosaliaHall": {
       "index": 4321,
       "owner_key": "3M53quqPNUVorxcEb9Qd8UAujx7TbNr1uKc7GmGENFTZ",
-      "balance": 292264,
+      "balance": 331950,
       "membership_expire_on": 1699239135,
       "next_cert_issuable_on": 1641287127,
       "certs_received": {
@@ -18159,7 +18504,7 @@
     "LiliFFtX": {
       "index": 9456,
       "owner_key": "3M7acZt68EQpnA7Q4SKqDMY6ZfxGgxy6EZYFfDCvDyYE",
-      "balance": 347042,
+      "balance": 386728,
       "membership_expire_on": 1720901759,
       "next_cert_issuable_on": 1686146771,
       "certs_received": {
@@ -18177,7 +18522,7 @@
     "Laeti": {
       "index": 10976,
       "owner_key": "3MCYjJ6JZZkTJr75MTTLA3RdgBJDMQJ9KABk7J8kGKzs",
-      "balance": 239576,
+      "balance": 279262,
       "membership_expire_on": 1703262871,
       "next_cert_issuable_on": 1691035634,
       "certs_received": {
@@ -18199,7 +18544,7 @@
     "Alfonso": {
       "index": 9351,
       "owner_key": "3MLD5H6ve8a4ADsnXeYDx1YkDCZhQa1GhterwVF9cRAE",
-      "balance": 266195,
+      "balance": 295881,
       "membership_expire_on": 1720787927,
       "next_cert_issuable_on": 1692523641,
       "certs_received": {
@@ -18227,7 +18572,7 @@
     "pacifikveronique": {
       "index": 6585,
       "owner_key": "3MQV2zSybsLLr9R2WP3SJr4ArbVgg8VkvoT8av5jhV7Y",
-      "balance": 323481,
+      "balance": 363167,
       "membership_expire_on": 1699439489,
       "next_cert_issuable_on": 1670811381,
       "certs_received": {
@@ -18245,7 +18590,7 @@
     "Sc24": {
       "index": 6906,
       "owner_key": "3MT4uTiK8hmvu8g2HSMHk8DFEzggD4wGKaEYWqR32LoX",
-      "balance": 636552,
+      "balance": 676238,
       "membership_expire_on": 1702999108,
       "next_cert_issuable_on": 1645103789,
       "certs_received": {
@@ -18261,15 +18606,16 @@
     "FrancoiseSTA07": {
       "index": 10681,
       "owner_key": "3MczL7Nscrg46td13S7TupcpQrZRwLDUV3VMwUuSYXFi",
-      "balance": 265497,
+      "balance": 305183,
       "membership_expire_on": 1701390673,
-      "next_cert_issuable_on": 1692089698,
+      "next_cert_issuable_on": 1695260893,
       "certs_received": {
         "HelloSunshine": 1752965425,
         "raphaeltissot26": 1733211117,
         "AnnieFortin": 1751848033,
         "MichelBonnaventure07": 1733178723,
         "Michellecuyer26": 1733334719,
+        "martinfray": 1757751278,
         "Beata": 1733224912,
         "Calou26": 1733276324
       }
@@ -18277,9 +18623,9 @@
     "SabinePennese": {
       "index": 11491,
       "owner_key": "3MgZcDCxyvdEVv3Q1oXQRPxZPL2T1C2r73MrRFJYqCDp",
-      "balance": 30180,
+      "balance": 52366,
       "membership_expire_on": 1706805876,
-      "next_cert_issuable_on": 1681723541,
+      "next_cert_issuable_on": 1693988822,
       "certs_received": {
         "FRANZ": 1740760107,
         "EmmaD": 1738616466,
@@ -18293,9 +18639,9 @@
     "SophieRita": {
       "index": 13007,
       "owner_key": "3MmtKh8GvSEXUF3wN1TWP82Rc4Tuaz8RBaVJxMB9nSbY",
-      "balance": 65588,
+      "balance": 109774,
       "membership_expire_on": 1718580599,
-      "next_cert_issuable_on": 1692788947,
+      "next_cert_issuable_on": 1696326525,
       "certs_received": {
         "Lionel_Dechilly": 1752631364,
         "pastachutta1964": 1751064028,
@@ -18326,9 +18672,9 @@
     "OlivierDesAirelles": {
       "index": 13302,
       "owner_key": "3MtSMbdFYXhKMurBDaoG6yyLwpzjDkZKBP8M8QBSm1zp",
-      "balance": 55245,
+      "balance": 111731,
       "membership_expire_on": 1721740703,
-      "next_cert_issuable_on": 1691742764,
+      "next_cert_issuable_on": 1695128685,
       "certs_received": {
         "Eveilducoeur": 1754192496,
         "Ainoha": 1753418514,
@@ -18341,7 +18687,7 @@
     "CorinneE": {
       "index": 4024,
       "owner_key": "3MvNMEyNcnTm9a7uCDsN4nDth31UJfuJnMZ9Wxr2aFSc",
-      "balance": 1155201,
+      "balance": 1194887,
       "membership_expire_on": 1716318269,
       "next_cert_issuable_on": 1690894889,
       "certs_received": {
@@ -18365,7 +18711,6 @@
       "next_cert_issuable_on": 0,
       "certs_received": {
         "hibiscus11": 1698992365,
-        "Andrelie": 1694454074,
         "Moineau": 1698986233,
         "danielbo": 1698993656,
         "StephaneDunNotreMonde": 1698985583
@@ -18381,10 +18726,24 @@
         "Cyrilnavdiaz": 1720084287
       }
     },
+    "BriDel": {
+      "index": 13536,
+      "owner_key": "3N3KSPQw3Q8nHPkfzKuEH84jRDjqR8sWjSCNUwjwRWbz",
+      "balance": 36492,
+      "membership_expire_on": 1724352378,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "AgnesJs": 1757281653,
+        "ElaineDana": 1757298784,
+        "Gillo75": 1757320011,
+        "SabineB": 1757366265,
+        "Goldwing": 1757318556
+      }
+    },
     "AnnaM": {
       "index": 3517,
       "owner_key": "3N3xCK6sUPnC8UcTRFqu6wA5U4KzUoFMCD2Fg7JwSxyh",
-      "balance": 889040,
+      "balance": 926226,
       "membership_expire_on": 1705676000,
       "next_cert_issuable_on": 1692153232,
       "certs_received": {
@@ -18428,6 +18787,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Mariamaya": {
+      "index": 13720,
+      "owner_key": "3NCcFanmjmRLhQkZziDQG9yz8hH6mxC6p94qUQD6VdPu",
+      "balance": 31190,
+      "membership_expire_on": 1726246220,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "susanarico": 1758938304,
+        "Manacor": 1758933764,
+        "feral": 1758945600,
+        "Nakim": 1758945600,
+        "BegoTibi": 1758944099
+      }
+    },
     "aaa": {
       "index": 5440,
       "owner_key": "3NCoBQuci1ebqnd3DkL6qNNf7k26N3zPDBWRZnvu3vj3",
@@ -18442,7 +18815,7 @@
     "Gena": {
       "index": 10393,
       "owner_key": "3NDi18ygRaN21Kj5rEZ6KJv2c1bsUm2qWhtj1vGHCHsT",
-      "balance": 315400,
+      "balance": 355086,
       "membership_expire_on": 1699906140,
       "next_cert_issuable_on": 1685891649,
       "certs_received": {
@@ -18458,21 +18831,18 @@
     "DanWF": {
       "index": 5777,
       "owner_key": "3NHU4zSdQ6YYu76CUw7QSHJXMtE2mfpWch59YErdQcsf",
-      "balance": 543379,
+      "balance": 552465,
       "membership_expire_on": 1719777057,
-      "next_cert_issuable_on": 1688647602,
+      "next_cert_issuable_on": 1696768978,
       "certs_received": {
         "LoupBlanc": 1728337120,
         "FenderChristophe": 1714714964,
-        "adrien_berthel": 1695950922,
         "MartiGraef": 1723172272,
         "TheoF": 1712695141,
-        "batata": 1695887933,
         "jeanclauderateau": 1712621500,
-        "Anthoxanthum67": 1695967025,
+        "AurElieSkuld": 1759296445,
         "FabieChou": 1733696577,
         "Djan": 1744863180,
-        "Sonik": 1696222267,
         "kalimheros": 1716729511,
         "Dracaufeu1990": 1753081611,
         "Als_67": 1740121628,
@@ -18484,7 +18854,6 @@
         "BertrandCGO": 1707291931,
         "Stefmaillard": 1715096636,
         "SylvieSpielmann": 1712690600,
-        "Scapharnaum": 1696027216,
         "Arnaud": 1736671914,
         "Martienne": 1731207950,
         "LudovicMJC": 1730780771
@@ -18501,7 +18870,7 @@
     "BERNARDG1": {
       "index": 11083,
       "owner_key": "3NRP2wAFnsc8Pqrp1q4x5xbFx9DNV4jjzfDMestJENqx",
-      "balance": 380846,
+      "balance": 420532,
       "membership_expire_on": 1700315609,
       "next_cert_issuable_on": 1688909547,
       "certs_received": {
@@ -18515,7 +18884,7 @@
     "belledemai": {
       "index": 5907,
       "owner_key": "3NXoY9QtVEbZxJJPvMeQqWS3noEhQUuzUYvF9rhvJ5SX",
-      "balance": 816905,
+      "balance": 856591,
       "membership_expire_on": 1718460784,
       "next_cert_issuable_on": 1686976280,
       "certs_received": {
@@ -18524,12 +18893,10 @@
         "Bioguigui": 1738393467,
         "Flocon": 1696967158,
         "EricSIMON": 1700077101,
-        "sanddebeloest38": 1695839715,
         "veronaturo73": 1696975597,
         "Mamietarteopommes": 1722292384,
         "CathounetteMu": 1737493036,
         "izofrog38": 1697756372,
-        "izotoad38": 1695840535,
         "TataCC": 1727053562,
         "Vass": 1730452565,
         "LibertyFran": 1750043377,
@@ -18546,9 +18913,9 @@
     "fred09bl": {
       "index": 10889,
       "owner_key": "3NeaUumjyp2QVDAvKgvQ8uovuwR5WufV4cLzK7dyBwB2",
-      "balance": 331430,
+      "balance": 396116,
       "membership_expire_on": 1702242083,
-      "next_cert_issuable_on": 1676208957,
+      "next_cert_issuable_on": 1693800483,
       "certs_received": {
         "Stef38": 1734054875,
         "Jade971": 1733800111,
@@ -18563,7 +18930,7 @@
     "PruneDubled": {
       "index": 5385,
       "owner_key": "3NiXz9dPgBUtMTKH5HeATAMnVtDNdxnVdKLBPk4fLmyv",
-      "balance": 728849,
+      "balance": 0,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {}
@@ -18571,11 +18938,12 @@
     "HeleneBaconnier": {
       "index": 10021,
       "owner_key": "3Nk1qeb5DAnoBWkKMTWECcJEXN7eJAUfTiAYtkwDzpnv",
-      "balance": 271993,
+      "balance": 239679,
       "membership_expire_on": 1724376776,
       "next_cert_issuable_on": 1667640780,
       "certs_received": {
         "TWAMEVA": 1728955966,
+        "lydiemdb": 1758474885,
         "PierrePierreR": 1728951985,
         "HectorTotor": 1729468801,
         "CathD": 1732379835,
@@ -18586,7 +18954,7 @@
     "Yipyip": {
       "index": 1519,
       "owner_key": "3NniZjkVJA45jTAdbUJiBpXkAVJf3c25672zLeJwR9jr",
-      "balance": 2059663,
+      "balance": 2099349,
       "membership_expire_on": 1706968762,
       "next_cert_issuable_on": 1692666911,
       "certs_received": {
@@ -18610,7 +18978,6 @@
       "next_cert_issuable_on": 1653711931,
       "certs_received": {
         "Come": 1710027025,
-        "JulienAmory": 1693764118,
         "ALFA": 1717977224,
         "Camillou05": 1714511842,
         "YOYO": 1714511842,
@@ -18626,9 +18993,9 @@
     "Mianne": {
       "index": 5387,
       "owner_key": "3Nti81B17zsjrmKK3fomkocC8Y6gDB6Ed3eeQPjbFhXN",
-      "balance": 811141,
+      "balance": 850827,
       "membership_expire_on": 1715248713,
-      "next_cert_issuable_on": 1692501301,
+      "next_cert_issuable_on": 1694577143,
       "certs_received": {
         "Selrahc": 1699825816,
         "SimonFreedom": 1707422090,
@@ -18689,7 +19056,7 @@
     "Locyan": {
       "index": 13221,
       "owner_key": "3PHEtWHhL3DabQBYGoUpUXZw143VHGcjdUHYrcHEBpFq",
-      "balance": 48160,
+      "balance": 87846,
       "membership_expire_on": 1721345307,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -18739,7 +19106,7 @@
     "CathyCat": {
       "index": 3787,
       "owner_key": "3PsrJ9Cy6xugb4LP7cXTo3oYkJvi9p2gmSzEr5k76K1A",
-      "balance": 1046737,
+      "balance": 1086423,
       "membership_expire_on": 1721483217,
       "next_cert_issuable_on": 1679906331,
       "certs_received": {
@@ -18768,27 +19135,30 @@
     "Ambar": {
       "index": 11872,
       "owner_key": "3PtnPTgtGnwzwenTrVBhvzGm6Kk1ATewu5JXEUHg19Va",
-      "balance": 121628,
+      "balance": 98014,
       "membership_expire_on": 1709417945,
-      "next_cert_issuable_on": 1691425050,
+      "next_cert_issuable_on": 1696265285,
       "certs_received": {
         "Sheiladanzas": 1751416399,
         "riky": 1741135234,
         "unica": 1741133743,
         "migueleon": 1754442992,
         "CarmenSR": 1741493432,
+        "Dixebral": 1756859141,
         "CristinaAbella": 1741136877,
         "DOMIASTRO": 1741132545,
+        "EMA": 1759307806,
         "Marianfs": 1741138075,
-        "carlosrios": 1751404337
+        "carlosrios": 1751404337,
+        "AndresXaudi": 1757546400
       }
     },
     "regy": {
       "index": 9954,
       "owner_key": "3Pv9S51w7YWAqN3H86v8umWNhKowZXFkjMDrDf3KNznc",
-      "balance": 375306,
+      "balance": 246505,
       "membership_expire_on": 1724380051,
-      "next_cert_issuable_on": 1693212799,
+      "next_cert_issuable_on": 1695208463,
       "certs_received": {
         "Cordeliaze": 1728625043,
         "Nekane": 1728545846,
@@ -18800,7 +19170,7 @@
     "Rebelle": {
       "index": 6754,
       "owner_key": "3PvSZPVJJgS2aWeiANGPHAk8Sh6rbjj45MyYpu5qVUUk",
-      "balance": 619021,
+      "balance": 658707,
       "membership_expire_on": 1702128276,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -18814,7 +19184,7 @@
     "Misterfreeze": {
       "index": 7138,
       "owner_key": "3Pvhis3RHtGJsa7ZX8fraRCLsnbuor6uz5wEp9MRMjim",
-      "balance": 599159,
+      "balance": 638845,
       "membership_expire_on": 1709852918,
       "next_cert_issuable_on": 1678433518,
       "certs_received": {
@@ -18835,14 +19205,12 @@
       "balance": 483200,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "AnnL": 1693758322
-      }
+      "certs_received": {}
     },
     "cathyCH": {
       "index": 2192,
       "owner_key": "3Pz35oMj7gFePDwWNXdnLDRaLDeW9QeAzW9o9wtu43eH",
-      "balance": 1613768,
+      "balance": 1653454,
       "membership_expire_on": 1708814887,
       "next_cert_issuable_on": 1678507111,
       "certs_received": {
@@ -18858,7 +19226,7 @@
     "Sandy6405": {
       "index": 10721,
       "owner_key": "3Q2KhzoSpy2jVS59ZZN92W9CGqu36gvrKrCiSohnYpah",
-      "balance": 285379,
+      "balance": 325065,
       "membership_expire_on": 1700262050,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -18872,7 +19240,7 @@
     "nathandumont": {
       "index": 10697,
       "owner_key": "3Q38yEkbuMCUXkzNgq3Yq4oh6T9bvwJti7qwqN9AJnCu",
-      "balance": 286338,
+      "balance": 326024,
       "membership_expire_on": 1700410774,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -18887,9 +19255,9 @@
     "Kristo": {
       "index": 6257,
       "owner_key": "3Q4cf7ypqUxdxxyWjEraAxXDXYxHCPuKh8gKUyLiRFgj",
-      "balance": 572173,
+      "balance": 648219,
       "membership_expire_on": 1721741717,
-      "next_cert_issuable_on": 1683940446,
+      "next_cert_issuable_on": 1693966122,
       "certs_received": {
         "SandrineMala": 1737609600,
         "AfricadeHarmonia": 1737451580,
@@ -18942,7 +19310,7 @@
     "Stephame": {
       "index": 11564,
       "owner_key": "3Q91RRPES3jGeRjnFg5bEebAuZCSD8VMneXTDFufqtQU",
-      "balance": 214326,
+      "balance": 254012,
       "membership_expire_on": 1707427561,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -19004,9 +19372,9 @@
     "Alfybe": {
       "index": 1,
       "owner_key": "3QLkBNoCNJENY8HyCDh1kDG2UKdg3q66z1Q91hpSJinD",
-      "balance": 1070093,
+      "balance": 1063343,
       "membership_expire_on": 1717186734,
-      "next_cert_issuable_on": 1693122214,
+      "next_cert_issuable_on": 1696425380,
       "certs_received": {
         "Stejulemont": 1721367937,
         "Carine888": 1744234969,
@@ -19025,11 +19393,12 @@
         "Domij": 1741844710,
         "FrankDeMey": 1704330327,
         "Josepeuta": 1741046957,
-        "casadesam": 1698100951,
+        "casadesam": 1756929246,
         "AlphaCentauri": 1738547462,
         "Artdevivre": 1739558415,
         "Yukulele": 1719517837,
         "janhsh": 1755546179,
+        "morimontj": 1758340915,
         "Zazie": 1742942571,
         "ChristineRenier": 1728890926,
         "Audeko": 1741924731,
@@ -19047,7 +19416,6 @@
         "gerard94": 1738485824,
         "Anou": 1738364204,
         "ROVER5537": 1724188677,
-        "gcabay": 1696226065,
         "Didiamm": 1740702931,
         "ChantAloha": 1720049113,
         "Ricou": 1737525676,
@@ -19072,7 +19440,7 @@
     "Zara97": {
       "index": 11735,
       "owner_key": "3QQm6x21A2Zw9LmRp9LiwwN5d3XytRcaVERQWCL8MjJM",
-      "balance": 171118,
+      "balance": 210804,
       "membership_expire_on": 1706236717,
       "next_cert_issuable_on": 1683305556,
       "certs_received": {
@@ -19104,7 +19472,7 @@
     "petitetoile": {
       "index": 9516,
       "owner_key": "3QnWvc9qh4NW5rGEv5KoAwYbE3GeDJmN3hpj1QKCmPPL",
-      "balance": 394187,
+      "balance": 433873,
       "membership_expire_on": 1720882012,
       "next_cert_issuable_on": 1689396706,
       "certs_received": {
@@ -19132,16 +19500,14 @@
       "balance": 1698908,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "OlivierLa": 1693695204
-      }
+      "certs_received": {}
     },
     "Marie2l29": {
       "index": 13000,
       "owner_key": "3Qv6pmdvMKCsSLiKUWwFwMBAGD5Gw2tzbbQDAidtd5xS",
-      "balance": 80488,
+      "balance": 120174,
       "membership_expire_on": 1719283479,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696052594,
       "certs_received": {
         "Pascalounetberger": 1750906280,
         "Bastien-29": 1751876612,
@@ -19155,7 +19521,7 @@
     "JesusMoncaino": {
       "index": 13136,
       "owner_key": "3Qx64hW2j1gigxdnAhreb8fJE1e6RnAQRKdE8g2atEQn",
-      "balance": 42668,
+      "balance": 54654,
       "membership_expire_on": 1720457922,
       "next_cert_issuable_on": 1689570491,
       "certs_received": {
@@ -19187,8 +19553,8 @@
     "Petitarin": {
       "index": 9696,
       "owner_key": "3R8NN9wYmw4EsV6SvvxMeksitX6SdScyVo2RwhHnPopG",
-      "balance": 360989,
-      "membership_expire_on": 1695600206,
+      "balance": 386661,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670592262,
       "certs_received": {
         "ced": 1727238956,
@@ -19211,7 +19577,7 @@
     "Wilma": {
       "index": 12582,
       "owner_key": "3RFM3tX5pmB5nVBxoaZkYGsN1n9wYxqFofeYgTcZ4qKL",
-      "balance": 115888,
+      "balance": 155574,
       "membership_expire_on": 1714689355,
       "next_cert_issuable_on": 1685429685,
       "certs_received": {
@@ -19249,7 +19615,7 @@
     "Elixcoeur": {
       "index": 8639,
       "owner_key": "3RHmZ1c7K2Paok5nK46oka3AKCxroQpcY83s4oamVbaz",
-      "balance": 430318,
+      "balance": 470004,
       "membership_expire_on": 1718617674,
       "next_cert_issuable_on": 1687133562,
       "certs_received": {
@@ -19272,8 +19638,8 @@
     "sole18": {
       "index": 10520,
       "owner_key": "3RRCvsim5W7ZjKbuDWxY6quZiCgQ4oBcPELkf6oHMVzo",
-      "balance": 300428,
-      "membership_expire_on": 1696193754,
+      "balance": 333646,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "NikiFe": 1727930153,
@@ -19286,7 +19652,7 @@
     "sat": {
       "index": 6006,
       "owner_key": "3RTFAMzWw6GKmrhmofhysss2prDeHDMZzV8qY4jYvUvb",
-      "balance": 939645,
+      "balance": 969331,
       "membership_expire_on": 1721827172,
       "next_cert_issuable_on": 1684160923,
       "certs_received": {
@@ -19307,7 +19673,7 @@
     "Marysep": {
       "index": 8692,
       "owner_key": "3RUvUa7quVk8hyuTnZSfma5QTFDhtLmYoyAR6Lj7F3ut",
-      "balance": 582814,
+      "balance": 622500,
       "membership_expire_on": 1709191875,
       "next_cert_issuable_on": 1683400216,
       "certs_received": {
@@ -19326,9 +19692,7 @@
       "balance": 700922,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Lea": 1693520641
-      }
+      "certs_received": {}
     },
     "Jpierre": {
       "index": 5565,
@@ -19343,9 +19707,9 @@
     "kuluk": {
       "index": 4843,
       "owner_key": "3RmCyTEpbYcnq2vyBeyT7rzBRcH7wRUfeunPfJHxdAZw",
-      "balance": 818804,
+      "balance": 858490,
       "membership_expire_on": 1705660079,
-      "next_cert_issuable_on": 1687766407,
+      "next_cert_issuable_on": 1695002753,
       "certs_received": {
         "ironhic": 1736802139,
         "Cinsia": 1743738388,
@@ -19353,7 +19717,7 @@
         "geraldineR28": 1701325427,
         "LionelJ": 1742997585,
         "Val1695": 1739738646,
-        "SarahAchalafin": 1700289474,
+        "SarahAchalafin": 1758093581,
         "Mmemonica": 1750795892,
         "Sailorcherry": 1737076790,
         "iafu": 1750836621
@@ -19362,7 +19726,7 @@
     "Lecuyer89": {
       "index": 3458,
       "owner_key": "3Rt4qTmHoLPn5z2FWGAXwQp9AqVokgo85f5N47D2Fosu",
-      "balance": 1332054,
+      "balance": 1371740,
       "membership_expire_on": 1709328485,
       "next_cert_issuable_on": 1689389956,
       "certs_received": {
@@ -19402,7 +19766,7 @@
     "A63ngel": {
       "index": 13344,
       "owner_key": "3SL8J4Yvo1FCVozctLsLvoPxypPLxya1sVY1TfvjfoZK",
-      "balance": 28496,
+      "balance": 68182,
       "membership_expire_on": 1722972302,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -19418,7 +19782,7 @@
     "Al27": {
       "index": 8862,
       "owner_key": "3SQ6HeieAphoprdBmAt678VdWHFnrXcK9LWTd2BQTgiP",
-      "balance": 396951,
+      "balance": 436637,
       "membership_expire_on": 1716378395,
       "next_cert_issuable_on": 1684892795,
       "certs_received": {
@@ -19444,7 +19808,7 @@
     "444": {
       "index": 9486,
       "owner_key": "3SaFVuDwePgMFoyDMQm6cfLoDpSLNwCEWZkSrMm7jLBT",
-      "balance": 413868,
+      "balance": 433554,
       "membership_expire_on": 1722087437,
       "next_cert_issuable_on": 1690636406,
       "certs_received": {
@@ -19463,7 +19827,7 @@
     "MagusAmadeus": {
       "index": 12749,
       "owner_key": "3SmstsYGKf1TnxwZbXX5yY5Z9edhQAF7Zx593GfqiFqi",
-      "balance": 112528,
+      "balance": 152214,
       "membership_expire_on": 1716057466,
       "next_cert_issuable_on": 1686209377,
       "certs_received": {
@@ -19479,7 +19843,7 @@
     "Magnetisange": {
       "index": 10555,
       "owner_key": "3SrsKQiUrRHuVuee6gd21E9szDT46TogWY2R8p4pJtnB",
-      "balance": 291810,
+      "balance": 331496,
       "membership_expire_on": 1697548068,
       "next_cert_issuable_on": 1675232580,
       "certs_received": {
@@ -19507,7 +19871,7 @@
     "WhiteWolf": {
       "index": 5325,
       "owner_key": "3T1EDX83si3WLVWXBoHYi9G1nKnjLYcahPbPRbzujAxd",
-      "balance": 712749,
+      "balance": 752435,
       "membership_expire_on": 1718059526,
       "next_cert_issuable_on": 1692002378,
       "certs_received": {
@@ -19526,7 +19890,7 @@
     "SionaJJJ": {
       "index": 2031,
       "owner_key": "3TDqYRfs35sUmCDiKKAAptaUWCYEXK9tVFPXFGwY3WZn",
-      "balance": 1399753,
+      "balance": 1439439,
       "membership_expire_on": 1709135240,
       "next_cert_issuable_on": 1692432467,
       "certs_received": {
@@ -19552,10 +19916,11 @@
     "JonathanT": {
       "index": 8130,
       "owner_key": "3TK2Y4T2kR6e5qxzG4MS8cjGcbbvzh584NrHbqxAByTr",
-      "balance": 595588,
+      "balance": 630274,
       "membership_expire_on": 1709083607,
-      "next_cert_issuable_on": 1673239150,
+      "next_cert_issuable_on": 1696400705,
       "certs_received": {
+        "Sabine38": 1759256894,
         "Rick": 1715717125,
         "Mavag": 1715752915,
         "ALFONSILaurent": 1740023975,
@@ -19590,7 +19955,7 @@
     "Nati": {
       "index": 9115,
       "owner_key": "3TM7ZK6N5r2vYzysFrPx1B2pdBYN9JfU3q9Z2uGgwS17",
-      "balance": 108970,
+      "balance": 143316,
       "membership_expire_on": 1719840281,
       "next_cert_issuable_on": 1692266455,
       "certs_received": {
@@ -19615,7 +19980,7 @@
     "Noelia": {
       "index": 4221,
       "owner_key": "3TPEZ4QvthZVkWNfK6f4tLngPs61eumopRPSQ5mtzpQj",
-      "balance": 162220,
+      "balance": 191906,
       "membership_expire_on": 1719845016,
       "next_cert_issuable_on": 1689485866,
       "certs_received": {
@@ -19633,7 +19998,6 @@
         "airamoy2810": 1698985583,
         "NancyOrtiz": 1729020785,
         "Didi": 1753305619,
-        "AdriR": 1694749524,
         "Felisa": 1721330068,
         "Poto": 1738984179,
         "atisha": 1746397657,
@@ -19653,7 +20017,7 @@
     "Carolit": {
       "index": 4831,
       "owner_key": "3TS3jWg5NHuBdkZDyivBiQWyg4VCaF4VShhGzEUCUNms",
-      "balance": 805562,
+      "balance": 845248,
       "membership_expire_on": 1717619038,
       "next_cert_issuable_on": 1690169810,
       "certs_received": {
@@ -19669,7 +20033,7 @@
     "Schourey": {
       "index": 10113,
       "owner_key": "3TV4KZiZ4NRAZZmetCuhjEbciJAB651KgEEqBmhTvcGs",
-      "balance": 272207,
+      "balance": 311893,
       "membership_expire_on": 1724445946,
       "next_cert_issuable_on": 1682392078,
       "certs_received": {
@@ -19694,7 +20058,7 @@
     "coquelicot": {
       "index": 9709,
       "owner_key": "3TbyCH5Gc1xoM9M6bASkR3jthkdKivZzzU2THqppeMDB",
-      "balance": 444350,
+      "balance": 484036,
       "membership_expire_on": 1723069335,
       "next_cert_issuable_on": 1681625608,
       "certs_received": {
@@ -19720,9 +20084,9 @@
     "CaroleBroutin": {
       "index": 5315,
       "owner_key": "3TiZrYN96mgpRKFDrv2R3fab3K72hjqNBe3jscjCgq5r",
-      "balance": 607480,
+      "balance": 525166,
       "membership_expire_on": 1709762100,
-      "next_cert_issuable_on": 1688777191,
+      "next_cert_issuable_on": 1696320600,
       "certs_received": {
         "Felicia2": 1741296312,
         "Majoli34": 1740191379,
@@ -19731,9 +20095,12 @@
         "montgo34": 1713630902,
         "JeanMarcBuge": 1751781013,
         "NDEPLOT": 1713767529,
+        "RaffaeleMarie": 1758600883,
         "Lauriecordova": 1745047383,
+        "Sandranimal": 1759273294,
         "geneclo34": 1736303185,
         "Cat": 1747003243,
+        "captain": 1757288323,
         "Christophe-C": 1702855872,
         "Amour": 1713647933,
         "Chantaloup22": 1713802387,
@@ -19743,11 +20110,13 @@
     "SoniaMallorca": {
       "index": 11043,
       "owner_key": "3Tj5jGkM8ks1xM4eEZsLbahYRbLUGRtqiMGSqtxv692j",
-      "balance": 84038,
+      "balance": 15537,
       "membership_expire_on": 1702946757,
-      "next_cert_issuable_on": 1691768885,
+      "next_cert_issuable_on": 1695383390,
       "certs_received": {
+        "Matthias2405": 1757353197,
         "majo": 1741012550,
+        "BlancaFlow": 1758433588,
         "Brahmaya": 1735441742,
         "Apurajarras": 1734568203,
         "YOSOYLUZ": 1734568203,
@@ -19789,9 +20158,9 @@
     "Luciole": {
       "index": 7931,
       "owner_key": "3TyZgdogTAXVTtwQiyxPgw35E7QXaLgTP9SmRmJUJ4Hm",
-      "balance": 454419,
+      "balance": 574729,
       "membership_expire_on": 1711799233,
-      "next_cert_issuable_on": 1680315667,
+      "next_cert_issuable_on": 1696235789,
       "certs_received": {
         "harry974": 1728255989,
         "samsufy": 1714412744,
@@ -19805,6 +20174,7 @@
         "ElricdeBelen": 1742664542,
         "OtreB": 1728939801,
         "Maiana": 1714377170,
+        "tomval83": 1759382276,
         "Espialidocia": 1717050988,
         "Elodea": 1714377170,
         "Jean-Massage": 1732844372
@@ -19813,7 +20183,7 @@
     "JACA": {
       "index": 8167,
       "owner_key": "3U5KdWC9Cp8P81LsgDzbjup9g9stkfh5qjGwyuqGRdAk",
-      "balance": 28796,
+      "balance": 8982,
       "membership_expire_on": 1713375388,
       "next_cert_issuable_on": 1690583282,
       "certs_received": {
@@ -19823,6 +20193,7 @@
         "NathalieEtreSouverain": 1716958295,
         "Josepeuta": 1718845674,
         "luismo": 1716143619,
+        "LauraAra": 1759274860,
         "JimenaCastillo": 1738104657,
         "elmau": 1722650982,
         "Polaris": 1751711102,
@@ -19853,9 +20224,9 @@
     "AngeliqueEleusis": {
       "index": 12243,
       "owner_key": "3ULFM23Y28YLqAecFNEMmJhVnMAwqWYiaDvXgMt3Rc2L",
-      "balance": 83346,
+      "balance": 83032,
       "membership_expire_on": 1711833563,
-      "next_cert_issuable_on": 1690240067,
+      "next_cert_issuable_on": 1693950059,
       "certs_received": {
         "DADA11": 1747067109,
         "OrianeKatyDanse": 1743757453,
@@ -19867,6 +20238,7 @@
         "GanTao": 1755301178,
         "Monchatonetoile": 1743568881,
         "HelenDuceau": 1743726101,
+        "FranceAffidi": 1759512127,
         "Nick4911": 1747898742,
         "stephanoel": 1745264151
       }
@@ -19874,7 +20246,7 @@
     "MAGSENS": {
       "index": 5912,
       "owner_key": "3ULwWRaFTaHytsMcYMkcuQu2svXorTnRCrkgwcrux7ZA",
-      "balance": 573057,
+      "balance": 612743,
       "membership_expire_on": 1722370839,
       "next_cert_issuable_on": 1682675951,
       "certs_received": {
@@ -19924,8 +20296,8 @@
     "etnebab": {
       "index": 9799,
       "owner_key": "3URyWzxySBbh8oSWdrMdqoaJBFscUNu1HTpH1J6ZzzEU",
-      "balance": 403237,
-      "membership_expire_on": 1695911196,
+      "balance": 408545,
+      "membership_expire_on": 1727619044,
       "next_cert_issuable_on": 1671173402,
       "certs_received": {
         "Sev": 1728006189,
@@ -19942,7 +20314,7 @@
     "MALIGWENN": {
       "index": 12157,
       "owner_key": "3UToB9H4DTLHMVWpg9CaQTxSWCQGruaY5uv1dg7xHkrY",
-      "balance": 165940,
+      "balance": 205626,
       "membership_expire_on": 1711655747,
       "next_cert_issuable_on": 1680173825,
       "certs_received": {
@@ -19956,7 +20328,7 @@
     "Enri": {
       "index": 12145,
       "owner_key": "3UWKcbwpCuAmU82EeXCeAYfdk87gvhmcxhv7KjgMS3rN",
-      "balance": 56518,
+      "balance": 71204,
       "membership_expire_on": 1711060412,
       "next_cert_issuable_on": 1682936285,
       "certs_received": {
@@ -19971,7 +20343,7 @@
     "Robin": {
       "index": 9157,
       "owner_key": "3UfHEusekTYVjcf7xTcHBr5s6sAuVLkLFvPtZT4dKrjX",
-      "balance": 410972,
+      "balance": 450658,
       "membership_expire_on": 1719490570,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -19985,7 +20357,7 @@
     "Darghye1967": {
       "index": 10597,
       "owner_key": "3UfHaJezGmKsP7wdQKUwjGL8KftoaobpCptXc5EKWHtf",
-      "balance": 323692,
+      "balance": 363378,
       "membership_expire_on": 1699226130,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -20000,16 +20372,19 @@
     "majo": {
       "index": 11610,
       "owner_key": "3UhBpMXRv7D8Wsakubvxu5sYW8mpdwpqUJTqSRWXCAdv",
-      "balance": 243420,
+      "balance": 399827,
       "membership_expire_on": 1707865322,
-      "next_cert_issuable_on": 1693316413,
+      "next_cert_issuable_on": 1695890564,
       "certs_received": {
+        "MKC": 1756789510,
+        "Matthias2405": 1757372710,
         "SoniaMallorca": 1739442933,
         "ClaudiaR": 1756081363,
         "heinz": 1753234615,
         "aurel": 1739465027,
         "Miguela": 1755452198,
         "HariomTS": 1747815666,
+        "Ingrid": 1758305046,
         "EstefaniaLopez": 1739508920,
         "Thor": 1745503511,
         "Micha99": 1742586219,
@@ -20019,6 +20394,7 @@
         "YOSOYLUZ": 1741471040,
         "Felicia": 1748717973,
         "Sigrid61": 1756163401,
+        "Heike07": 1759539567,
         "Sabi": 1739423331,
         "danielali": 1748401052,
         "FEUERFRAU": 1743658041,
@@ -20032,7 +20408,7 @@
     "Lucileski": {
       "index": 12907,
       "owner_key": "3UhT8E6hwUFt6ibhVJzAvRPbxNUM66UAsdr4DvuKUsTu",
-      "balance": 81168,
+      "balance": 120854,
       "membership_expire_on": 1717782973,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -20048,9 +20424,9 @@
     "Ghostdog": {
       "index": 13220,
       "owner_key": "3UjXNXKMphXm8eBwNcbc2AEUTxpbdaxTBVMEKnTY9YEc",
-      "balance": 103324,
+      "balance": 110111,
       "membership_expire_on": 1720625521,
-      "next_cert_issuable_on": 1692623273,
+      "next_cert_issuable_on": 1696246468,
       "certs_received": {
         "Micha99": 1753161057,
         "RutenRolf": 1753162283,
@@ -20064,7 +20440,7 @@
     "Segalen2003": {
       "index": 4197,
       "owner_key": "3UtYxhwUZeSrDnBMgwKvwH5m3m5hfpM6rQ22DRJRLHwj",
-      "balance": 695771,
+      "balance": 735457,
       "membership_expire_on": 1713395196,
       "next_cert_issuable_on": 1681912040,
       "certs_received": {
@@ -20076,8 +20452,7 @@
         "GeraldineGarrigues": 1731201890,
         "SurfinMaya": 1701800769,
         "Nadou": 1717309174,
-        "urkobein": 1719820619,
-        "Glass": 1696402854
+        "urkobein": 1719820619
       }
     },
     "GERIC": {
@@ -20085,7 +20460,7 @@
       "owner_key": "3Uwq4qNp2A97P1XQueEBCxmnvgtAKMdfrEq6VB7Ph2qX",
       "balance": 988522,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1630836324,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Libertiste": 1697930460,
         "Johan": 1706303021,
@@ -20116,33 +20491,31 @@
     "Vanessa974": {
       "index": 5812,
       "owner_key": "3V9mU4L8zrWsFchY1kVT59wxTiwndQH9KUbm845V4YVn",
-      "balance": 183325,
+      "balance": 157011,
       "membership_expire_on": 1718542079,
-      "next_cert_issuable_on": 1683944581,
+      "next_cert_issuable_on": 1696709960,
       "certs_received": {
         "Boris974": 1702491378,
-        "mimone974": 1695837749,
         "harry974": 1697144348,
         "ClaireM97410": 1745416116,
         "NnattNature": 1746983414,
-        "Cindy974": 1695842981,
-        "gabyjoce974": 1695843315,
+        "gabyjoce974": 1757229497,
         "Corinne974": 1727022538,
         "Sandro974": 1726497605,
-        "ManuMuss": 1695843981,
         "Jade974oooHarry": 1740234603,
-        "pampermacole": 1695842981,
+        "pampermacole": 1757344313,
         "Ginee974": 1703167826
       }
     },
     "FabFabounette": {
       "index": 10082,
       "owner_key": "3VJWCupHSkMWQgdMRUpUXFQ3UGArzkHzBWy3ZdMwVWi7",
-      "balance": 114416,
-      "membership_expire_on": 1698086288,
-      "next_cert_issuable_on": 1691502890,
+      "balance": 607102,
+      "membership_expire_on": 1725634804,
+      "next_cert_issuable_on": 1695738013,
       "certs_received": {
         "MariadeJesus": 1746504662,
+        "LionLDouNIo": 1757195624,
         "Ananas21": 1729887795,
         "Marie81": 1753889652,
         "ninja": 1729650352,
@@ -20158,17 +20531,19 @@
         "Danie45": 1736535629,
         "Drako": 1729651127,
         "YvonneD": 1752649934,
+        "Marino45": 1757575008,
         "LizaCarone": 1740035351
       }
     },
     "G21": {
       "index": 12547,
       "owner_key": "3VKUDaQPUR2REGkzNLu23KGGx1CENCQniGKJLH5ZkVhx",
-      "balance": 165164,
+      "balance": 174850,
       "membership_expire_on": 1714790151,
-      "next_cert_issuable_on": 1691847262,
+      "next_cert_issuable_on": 1695459268,
       "certs_received": {
         "Sandja94": 1746386557,
+        "GeoTT": 1758790073,
         "Yanneuh": 1746389497,
         "Trublion": 1746423333,
         "TCT60162": 1746386557,
@@ -20178,7 +20553,7 @@
     "delphes5600": {
       "index": 12484,
       "owner_key": "3VTeK698tgLQwy6yWS6gCtoe6JQChiuksf8UiQX8jSbf",
-      "balance": 135432,
+      "balance": 175118,
       "membership_expire_on": 1714218243,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -20193,7 +20568,7 @@
     "Marie-Christine": {
       "index": 11294,
       "owner_key": "3VUHF3GwfKoD8bwZ7nkcvXrvM4RybQg52vjdcisWhYWr",
-      "balance": 232724,
+      "balance": 272410,
       "membership_expire_on": 1705188894,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -20208,7 +20583,7 @@
     "cicou": {
       "index": 8487,
       "owner_key": "3VaDFgi6TUYoR4jM7bCMGJ7jQNsJuViay81NnoNfaKrw",
-      "balance": 503360,
+      "balance": 543046,
       "membership_expire_on": 1718154795,
       "next_cert_issuable_on": 1673257860,
       "certs_received": {
@@ -20223,8 +20598,8 @@
     "IsabelleF": {
       "index": 6480,
       "owner_key": "3VdQU1wZhcZhKCADKXwcMqCo11w8AU27RPYApPNVPvhE",
-      "balance": 629967,
-      "membership_expire_on": 1701215818,
+      "balance": 669653,
+      "membership_expire_on": 1728081484,
       "next_cert_issuable_on": 1687059883,
       "certs_received": {
         "Leo07": 1703388440,
@@ -20245,7 +20620,7 @@
     "XaleXale": {
       "index": 7896,
       "owner_key": "3VgCAP1ZwTf4p5oNyg6bgVzjCB4wjSehnsRTYCiRAUUi",
-      "balance": 506072,
+      "balance": 545758,
       "membership_expire_on": 1708205614,
       "next_cert_issuable_on": 1659157397,
       "certs_received": {
@@ -20260,7 +20635,7 @@
     "Tahiti": {
       "index": 3082,
       "owner_key": "3VhjFz8ap8B8TsAsvbfaSoeC81rdFYPKrhFKeJKUgdhz",
-      "balance": 1236553,
+      "balance": 1276239,
       "membership_expire_on": 1718725168,
       "next_cert_issuable_on": 1679365985,
       "certs_received": {
@@ -20278,7 +20653,7 @@
     "ClaireBrune": {
       "index": 7674,
       "owner_key": "3VpYZCoeJYJxdWk4PVptPQTqkJre63rjgF3XG5PTB84X",
-      "balance": 597941,
+      "balance": 644498,
       "membership_expire_on": 1706996763,
       "next_cert_issuable_on": 1686272732,
       "certs_received": {
@@ -20313,7 +20688,7 @@
     "BernardChabot": {
       "index": 7059,
       "owner_key": "3VsAEFv3RpkSZbUd9AhjVjpYDfA5sfZjNmmoykYrpvua",
-      "balance": 576255,
+      "balance": 615941,
       "membership_expire_on": 1702684098,
       "next_cert_issuable_on": 1681007763,
       "certs_received": {
@@ -20335,9 +20710,9 @@
     "danquer": {
       "index": 12909,
       "owner_key": "3W8wViHk2yiQD7y7zsLcKg9BLyN4Q9Ejvf5MAQSoH5x2",
-      "balance": 82236,
+      "balance": 121922,
       "membership_expire_on": 1718044147,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693739836,
       "certs_received": {
         "Elinette": 1750045750,
         "Inanna": 1750056846,
@@ -20349,7 +20724,7 @@
     "Shana_B": {
       "index": 4492,
       "owner_key": "3WAVTwmDGA48sKwqYB9qKug3ar7KJc1srCiqs8CrGzeN",
-      "balance": 93253,
+      "balance": 32939,
       "membership_expire_on": 1701803008,
       "next_cert_issuable_on": 1680227029,
       "certs_received": {
@@ -20366,7 +20741,7 @@
     "andchol": {
       "index": 7200,
       "owner_key": "3WHxERuT4cQvtPNoU3pPbt26C7FY1XtESrwYXYWT6HE3",
-      "balance": 564793,
+      "balance": 604479,
       "membership_expire_on": 1707995594,
       "next_cert_issuable_on": 1683541034,
       "certs_received": {
@@ -20382,9 +20757,9 @@
     "omm": {
       "index": 12747,
       "owner_key": "3WNJGcE6RrLo4rYLzK6i9wJPW3RTj5CppPQaTDkPnMyQ",
-      "balance": 177196,
+      "balance": 207082,
       "membership_expire_on": 1715015551,
-      "next_cert_issuable_on": 1692432702,
+      "next_cert_issuable_on": 1693842182,
       "certs_received": {
         "EstefaniaSainz": 1748152876,
         "Lupunita": 1748662315,
@@ -20399,7 +20774,7 @@
     "Zoltania": {
       "index": 7122,
       "owner_key": "3WRq3dnE2xhU9jPqwr85Zb4zBbtL54XeVg9TsETtjPCH",
-      "balance": 555545,
+      "balance": 595231,
       "membership_expire_on": 1706832186,
       "next_cert_issuable_on": 1671710348,
       "certs_received": {
@@ -20417,7 +20792,7 @@
     "melia": {
       "index": 3550,
       "owner_key": "3WVrm1HwU7ququq21zGYGGvLYfB6fgnDPT5cyLbn6sLT",
-      "balance": 773983,
+      "balance": 813669,
       "membership_expire_on": 1704311333,
       "next_cert_issuable_on": 1680568220,
       "certs_received": {
@@ -20432,9 +20807,9 @@
     "Mariou": {
       "index": 1725,
       "owner_key": "3WYGEnDYpGFtbsPFrq3UH2UCaRDvSZx9TXkCefT5H3xi",
-      "balance": 1486410,
+      "balance": 1526096,
       "membership_expire_on": 1708728056,
-      "next_cert_issuable_on": 1677999248,
+      "next_cert_issuable_on": 1694014727,
       "certs_received": {
         "Robisar": 1724564317,
         "OlivierLa": 1725134771,
@@ -20447,8 +20822,8 @@
     "AKOUNAMATATA": {
       "index": 6546,
       "owner_key": "3WiFHsEKGmYavNEVBDn4HoTBqEsnwcU2wiDERJYrzgpK",
-      "balance": 491724,
-      "membership_expire_on": 1698237653,
+      "balance": 543410,
+      "membership_expire_on": 1727621943,
       "next_cert_issuable_on": 1691248331,
       "certs_received": {
         "VictoireJune": 1723505641,
@@ -20465,6 +20840,7 @@
         "ptitevero": 1715906610,
         "Flandelila": 1703055888,
         "BeatriceSam": 1703318530,
+        "Mazarine07": 1758597039,
         "clodclef": 1754967081,
         "AnneSoleneCM": 1734459059,
         "Spiruline07": 1747942239,
@@ -20474,7 +20850,7 @@
     "Lauriernoble": {
       "index": 6979,
       "owner_key": "3WpcNZ9cw19zqjBZdE3FsHUwtVgP8MzffuimFkRjc3un",
-      "balance": 547570,
+      "balance": 587256,
       "membership_expire_on": 1707347239,
       "next_cert_issuable_on": 1668438717,
       "certs_received": {
@@ -20501,8 +20877,7 @@
       "certs_received": {
         "AlexandreA": 1715933461,
         "dondiego78": 1703250798,
-        "ortie": 1742682028,
-        "Chlea2010": 1696686808
+        "ortie": 1742682028
       }
     },
     "niel": {
@@ -20515,14 +20890,27 @@
         "sheveck": 1732590382
       }
     },
+    "TITO94": {
+      "index": 13632,
+      "owner_key": "3X4tWmxo1Q5XJn1hCcG4uz2jg814xP9GLDrFTVUVTNU1",
+      "balance": 16170,
+      "membership_expire_on": 1726663598,
+      "next_cert_issuable_on": 1695736812,
+      "certs_received": {
+        "FleurdeLupin": 1758249982,
+        "Jujudu94500": 1758528211,
+        "Berenice": 1758362354,
+        "GeoTT": 1758426898,
+        "Nickie": 1758237858
+      }
+    },
     "Antoin9": {
       "index": 2554,
       "owner_key": "3X5aEEvmYKxqdGF54URiQyByEAP323GqiuTpx7e8vppT",
-      "balance": 1248833,
+      "balance": 1288519,
       "membership_expire_on": 1722454855,
       "next_cert_issuable_on": 1691654372,
       "certs_received": {
-        "Yannis": 1694475346,
         "MichLang": 1749366862,
         "NGO": 1756370245,
         "Frou3120": 1754165791,
@@ -20541,8 +20929,8 @@
     "clemlamalice": {
       "index": 3360,
       "owner_key": "3XGF92UhyaQjsxBe97LggXuvdB1xXdHFoeGRJ19ykwGm",
-      "balance": 611346,
-      "membership_expire_on": 1693775491,
+      "balance": 614550,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1676737051,
       "certs_received": {
         "daryl": 1743654667,
@@ -20573,9 +20961,9 @@
     "THORGAL1968": {
       "index": 9102,
       "owner_key": "3XRLDvWL89p167WU87TQo3HbhdTjLHGN13E4eKcJA9oJ",
-      "balance": 206873,
+      "balance": 118357,
       "membership_expire_on": 1717556369,
-      "next_cert_issuable_on": 1692329287,
+      "next_cert_issuable_on": 1696151294,
       "certs_received": {
         "InmaRegina": 1724273046,
         "LaMatriarcaToro": 1737372772,
@@ -20589,6 +20977,7 @@
         "Simplementemaria": 1722284376,
         "Josepeuta": 1722237105,
         "MeliCP": 1732389246,
+        "lolicirera": 1759194494,
         "yoelijomivida": 1736709325,
         "Shankarina": 1754809472,
         "Joailes38": 1725517632,
@@ -20632,7 +21021,7 @@
     "OURS06": {
       "index": 3491,
       "owner_key": "3XbENxDA9Jhfq7TDnrGVJozumRVC8hA98kBsNEt3YMxq",
-      "balance": 952747,
+      "balance": 992433,
       "membership_expire_on": 1708562033,
       "next_cert_issuable_on": 1685581401,
       "certs_received": {
@@ -20673,17 +21062,20 @@
     "Justis": {
       "index": 6294,
       "owner_key": "3XnPjXomD72D2tBu3h8kphBYF6yNZKRYaHYrVvMy9Gum",
-      "balance": 80540,
+      "balance": 107226,
       "membership_expire_on": 1723210422,
-      "next_cert_issuable_on": 1687416075,
+      "next_cert_issuable_on": 1695642819,
       "certs_received": {
         "LosMundosdeKrull": 1742390944,
+        "larboleda897": 1758494231,
         "carmela": 1704494539,
         "JACA": 1722563658,
         "NAGIOWOTALA": 1723554139,
+        "RAMA62": 1757225595,
         "ApanandoHerbas": 1736754165,
         "unica": 1743533552,
         "VeroDeJetsDoux": 1725511920,
+        "MisterLuix": 1756946620,
         "Josepeuta": 1704137478,
         "CarmenOurense": 1737164515,
         "FerFeliz": 1733859064,
@@ -20724,9 +21116,9 @@
     "EmaPom": {
       "index": 7014,
       "owner_key": "3XnkKsTU9TYdJFrz7mtKUoqEhLgyYD6RCvhKWy967wDR",
-      "balance": 454126,
-      "membership_expire_on": 1700781223,
-      "next_cert_issuable_on": 1682220951,
+      "balance": 503812,
+      "membership_expire_on": 1728222811,
+      "next_cert_issuable_on": 1694410571,
       "certs_received": {
         "gberdal": 1744777226,
         "MamieCrypto": 1716939327,
@@ -20760,8 +21152,8 @@
     "Habiba": {
       "index": 9744,
       "owner_key": "3XnyiTm3G6f6ZjGoCXdndQJgGWuXD41DejyRqAR6zkus",
-      "balance": 388173,
-      "membership_expire_on": 1696175649,
+      "balance": 421391,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Lol": 1727742470,
@@ -20776,14 +21168,14 @@
     "ElieLombard": {
       "index": 4158,
       "owner_key": "3Xq5TWd9Hjb4pDH7WNTUVGQmHF5sHUVbrvezL9T82w2E",
-      "balance": 1329523,
+      "balance": 1441709,
       "membership_expire_on": 1720959498,
-      "next_cert_issuable_on": 1670154862,
+      "next_cert_issuable_on": 1696294194,
       "certs_received": {
-        "FlorentLucien": 1695891985,
         "izofrog38": 1700361177,
         "Lilinico": 1703451709,
         "Margaux": 1754245328,
+        "MarineJ": 1759295265,
         "CelesteGuiral": 1709753678,
         "LaurentM": 1729473352,
         "Gyom": 1698893466
@@ -20792,7 +21184,7 @@
     "Artesanatacto": {
       "index": 10467,
       "owner_key": "3Xq6LFVseUvxo3ERnRgmYfBfqtURjtSxKT8xG5NyFPbp",
-      "balance": 148673,
+      "balance": 188359,
       "membership_expire_on": 1700610388,
       "next_cert_issuable_on": 1685063906,
       "certs_received": {
@@ -20833,7 +21225,7 @@
     "Colheres": {
       "index": 9203,
       "owner_key": "3Xt1E3ahr44qFEgenHLMCe6wXToPdgxenMbiXPyNKPLS",
-      "balance": 291382,
+      "balance": 331068,
       "membership_expire_on": 1721255946,
       "next_cert_issuable_on": 1691409097,
       "certs_received": {
@@ -20858,8 +21250,8 @@
     "BMorelle": {
       "index": 9820,
       "owner_key": "3XxwjvwA9McYLxtqvmkj7eptKs5nasbpSguyxSCQszvJ",
-      "balance": 298878,
-      "membership_expire_on": 1694975311,
+      "balance": 310564,
+      "membership_expire_on": 1725789493,
       "next_cert_issuable_on": 1680192094,
       "certs_received": {
         "Gioelina": 1727898817,
@@ -20876,9 +21268,9 @@
     "Marianb": {
       "index": 13452,
       "owner_key": "3YCcjQ6dZeXFoGR6brXi767BXfVytwDQuNFZJhEjFet2",
-      "balance": 6522,
+      "balance": 47708,
       "membership_expire_on": 1724693634,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696556075,
       "certs_received": {
         "JanineBoitel": 1756265290,
         "Benoa421": 1756255275,
@@ -20900,7 +21292,7 @@
     "Polou": {
       "index": 13108,
       "owner_key": "3Yc8AyMDNvLVWWAFccp5TUc5awkkuVGhhHxqLr8pUiPW",
-      "balance": 48940,
+      "balance": 88626,
       "membership_expire_on": 1718566050,
       "next_cert_issuable_on": 1689080220,
       "certs_received": {
@@ -20915,7 +21307,7 @@
     "django": {
       "index": 13261,
       "owner_key": "3Ydo7qRAjQyfAuyx4gTffJtz2UeCimXcQfnvw5YhHdBC",
-      "balance": 35244,
+      "balance": 74930,
       "membership_expire_on": 1718989552,
       "next_cert_issuable_on": 1690824990,
       "certs_received": {
@@ -20937,7 +21329,7 @@
     "Nanoo": {
       "index": 7001,
       "owner_key": "3YoA2dexfdqqoxfdh3HNkEjfRAZzgAidWn5L7c21XwFc",
-      "balance": 401213,
+      "balance": 440899,
       "membership_expire_on": 1702234957,
       "next_cert_issuable_on": 1676185129,
       "certs_received": {
@@ -20960,18 +21352,34 @@
     "Salya": {
       "index": 5809,
       "owner_key": "3YpKt8G7U3L3vsXZD7BLPMnVPTzyMmUsT6jYf6B7wwKp",
-      "balance": 708413,
+      "balance": 750099,
       "membership_expire_on": 1723138699,
       "next_cert_issuable_on": 1659324647,
       "certs_received": {
+        "ClaudeFresonnet": 1755884426,
         "Hidraya": 1755481439,
-        "ChristianM": 1696382075,
+        "ChristianM": 1757702192,
         "JFCap": 1722384227,
-        "HelenDuceau": 1696140670,
         "KarineKala": 1754696299,
-        "annefreda": 1693964510,
-        "BrigitteBaron": 1693963518,
-        "birgittat": 1696143470
+        "annefreda": 1756778452,
+        "BrigitteBaron": 1755757173,
+        "birgittat": 1757567767
+      }
+    },
+    "PatrickGendron": {
+      "index": 13623,
+      "owner_key": "3YqndJtkiWN5bU9yyUCtf93AFD6D5Xmd5eci6WeZVN2a",
+      "balance": 66526,
+      "membership_expire_on": 1725922317,
+      "next_cert_issuable_on": 1695788713,
+      "certs_received": {
+        "FrancoisBaloche": 1758433202,
+        "simonelion": 1758001420,
+        "JosianeSochon": 1758244466,
+        "fabiennegodfraind": 1758492194,
+        "JulienGermain": 1758172164,
+        "MessagereDeLumiere": 1758172444,
+        "FranckDuhamel": 1758659685
       }
     },
     "FlorentK": {
@@ -20985,7 +21393,7 @@
     "GaelleMayer": {
       "index": 10900,
       "owner_key": "3Z8U9ZZyaKHBvNtFCGkQyNfKGvhaRjm44VknJAgeLhyx",
-      "balance": 789945,
+      "balance": 1223391,
       "membership_expire_on": 1699124096,
       "next_cert_issuable_on": 1673590587,
       "certs_received": {
@@ -21000,7 +21408,7 @@
     "CatherineSengel": {
       "index": 3063,
       "owner_key": "3ZDqAD9MAYh4GvPmSh88LZkKHC1YVxDyWSiJhLknwy8N",
-      "balance": 862564,
+      "balance": 801858,
       "membership_expire_on": 1721598876,
       "next_cert_issuable_on": 1671705582,
       "certs_received": {
@@ -21014,14 +21422,14 @@
         "DidierPapillon": 1704660547,
         "Mazurka": 1752453206,
         "PascaleRoncoroni": 1702064994,
-        "aubrunjeanclaude": 1697315890,
+        "aubrunjeanclaude": 1758092192,
         "FernDeFougeres": 1743050467
       }
     },
     "Bennygoodwoman": {
       "index": 10962,
       "owner_key": "3ZKHwAa4zcuyYonhb1cohdWZNSZE1H5owurfi69jEg2T",
-      "balance": 269635,
+      "balance": 309321,
       "membership_expire_on": 1703080543,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -21063,7 +21471,7 @@
     "Rc07": {
       "index": 2571,
       "owner_key": "3ZnZYmkehXcpLVcH7ncvdcEUmwQXVMArQDUKJ2rWoV5J",
-      "balance": 1195552,
+      "balance": 1235238,
       "membership_expire_on": 1710296947,
       "next_cert_issuable_on": 1644335547,
       "certs_received": {
@@ -21132,7 +21540,7 @@
     "guylou83": {
       "index": 12143,
       "owner_key": "3aLDcdFbfajbBJPgerEgkygVptL6SjNCVpyojTUXihTw",
-      "balance": 197676,
+      "balance": 237362,
       "membership_expire_on": 1709825505,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -21146,9 +21554,9 @@
     "CowboyPierre": {
       "index": 13412,
       "owner_key": "3aPNzy1C8jKJsMzmbdK89p7NHxbftjzBJw5LB4fiMYbm",
-      "balance": 31180,
+      "balance": 68866,
       "membership_expire_on": 1721245446,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695909148,
       "certs_received": {
         "MIDO": 1755668181,
         "Etoiledunord": 1755740342,
@@ -21191,9 +21599,9 @@
     "GRIBOUILLE22": {
       "index": 7909,
       "owner_key": "3aZCBpb4RvqbXbcZ3rnBNc7w68ZN8A7X9bBuHeZyZAka",
-      "balance": 468167,
+      "balance": 497853,
       "membership_expire_on": 1707433791,
-      "next_cert_issuable_on": 1682730073,
+      "next_cert_issuable_on": 1695907616,
       "certs_received": {
         "CoraRose": 1748591747,
         "AmeSurTerre": 1712186013,
@@ -21209,7 +21617,7 @@
     "NaneDeProvence": {
       "index": 8186,
       "owner_key": "3ab7Qh1SmAVSPEms8QGUBAMhnPKycB8fPK7hbvMY4fKw",
-      "balance": 48018,
+      "balance": 62204,
       "membership_expire_on": 1710768280,
       "next_cert_issuable_on": 1687757813,
       "certs_received": {
@@ -21243,7 +21651,7 @@
     "davidalvarez": {
       "index": 12796,
       "owner_key": "3adHHceuxZufD1Bztqiitm444wbDxN4EDqUcfzkpiBbV",
-      "balance": 503329,
+      "balance": 550864,
       "membership_expire_on": 1717211645,
       "next_cert_issuable_on": 1689013567,
       "certs_received": {
@@ -21258,7 +21666,7 @@
     "philboybada63": {
       "index": 10375,
       "owner_key": "3ajSWNQiS9es8jjhp4x8JCYnUCmQRpnFetQaR4iS1csg",
-      "balance": 445755,
+      "balance": 360941,
       "membership_expire_on": 1699960707,
       "next_cert_issuable_on": 1687587178,
       "certs_received": {
@@ -21304,7 +21712,7 @@
     "Pier56": {
       "index": 10828,
       "owner_key": "3aukXL3XYya9pxNKnSNDbAikPAccyN1okve5gvKRvgGT",
-      "balance": 277866,
+      "balance": 317552,
       "membership_expire_on": 1700349195,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -21318,7 +21726,7 @@
     "Univers7": {
       "index": 10820,
       "owner_key": "3awvASpFZpzmAVnVELq29aoNbUXRnvcdCpSrn1xEvzt2",
-      "balance": 283925,
+      "balance": 318611,
       "membership_expire_on": 1702073435,
       "next_cert_issuable_on": 1672130235,
       "certs_received": {
@@ -21347,7 +21755,7 @@
     "Nanou88": {
       "index": 12583,
       "owner_key": "3b5NUrJow9mcYDY3ycfETZdr4NqA29us5GNGpTUTWLYo",
-      "balance": 123888,
+      "balance": 163574,
       "membership_expire_on": 1715018392,
       "next_cert_issuable_on": 1688517241,
       "certs_received": {
@@ -21362,8 +21770,8 @@
     "roberplantas": {
       "index": 10475,
       "owner_key": "3b6LTsUZV1HTgBLdffiiSh1QBk1dSpsaXeQv1v9i7mkY",
-      "balance": 403117,
-      "membership_expire_on": 1700602457,
+      "balance": 397803,
+      "membership_expire_on": 1727101757,
       "next_cert_issuable_on": 1691590837,
       "certs_received": {
         "riky": 1743325342,
@@ -21388,7 +21796,7 @@
     "DanielleSchmitz": {
       "index": 7651,
       "owner_key": "3b79g1b1iKdiG4fpuvx9cq4TvZbFZHqNdMV3i17izFAx",
-      "balance": 537241,
+      "balance": 576927,
       "membership_expire_on": 1709491825,
       "next_cert_issuable_on": 1678013500,
       "certs_received": {
@@ -21405,7 +21813,7 @@
     "tamaranspa": {
       "index": 11004,
       "owner_key": "3bCkrxdzqpfGRjrieAmbTgTySmm2RqYsxuZRumea2tSM",
-      "balance": 162758,
+      "balance": 202445,
       "membership_expire_on": 1700409648,
       "next_cert_issuable_on": 1682696938,
       "certs_received": {
@@ -21423,7 +21831,7 @@
     "Zefu": {
       "index": 6944,
       "owner_key": "3bEXhbVPJKDzNq7winDTdov1DiQBrSATrXNQL8tLNJYH",
-      "balance": 484945,
+      "balance": 524631,
       "membership_expire_on": 1715359719,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -21461,7 +21869,7 @@
     "AndreHattermann": {
       "index": 4144,
       "owner_key": "3bKnXhFsPRiHe89Ks6shbHSJfvFmJkT1bGg3ewm4BiX3",
-      "balance": 771774,
+      "balance": 811460,
       "membership_expire_on": 1723571033,
       "next_cert_issuable_on": 1683370713,
       "certs_received": {
@@ -21483,7 +21891,7 @@
     "GweDesSables": {
       "index": 11012,
       "owner_key": "3bP7x2Fkp1udn13bzMdg6M2RsbMzrnubu7Jeax6UmGJc",
-      "balance": 263699,
+      "balance": 303385,
       "membership_expire_on": 1702770467,
       "next_cert_issuable_on": 1688480932,
       "certs_received": {
@@ -21498,7 +21906,7 @@
     "jeannemarie": {
       "index": 12077,
       "owner_key": "3bTJW6dQgFjiwz5WE9DXPGnL7pij2Lidfg3N9hcZxRDH",
-      "balance": 248884,
+      "balance": 288570,
       "membership_expire_on": 1707074695,
       "next_cert_issuable_on": 1687937447,
       "certs_received": {
@@ -21551,7 +21959,7 @@
     "Mariyam": {
       "index": 8768,
       "owner_key": "3c1jQXHzaLbBXZ5n8Aq2uY1ehQiobCLYxQuW8SP5o22d",
-      "balance": 437859,
+      "balance": 477545,
       "membership_expire_on": 1715913588,
       "next_cert_issuable_on": 1680344452,
       "certs_received": {
@@ -21570,8 +21978,8 @@
     "KreenBulle51": {
       "index": 5914,
       "owner_key": "3c21Z3r6emKSYJdNLkZnuEoRfNWSLDPTcGQJfnbgscTh",
-      "balance": 406255,
-      "membership_expire_on": 1693753085,
+      "balance": 419739,
+      "membership_expire_on": 1727381957,
       "next_cert_issuable_on": 1684128099,
       "certs_received": {
         "Sunrise": 1697677016,
@@ -21585,13 +21993,14 @@
         "Liminence": 1742757322,
         "Aliciagrandpierre": 1746486424,
         "letoilebleue": 1697656873,
-        "hypericum": 1697673558
+        "hypericum": 1697673558,
+        "Martienne": 1756797118
       }
     },
     "jacquesdutron1325": {
       "index": 10663,
       "owner_key": "3c3EouYGmuS3GjVtWRZg4RweoagPDhMBkJtAsiUqs4WA",
-      "balance": 295456,
+      "balance": 335142,
       "membership_expire_on": 1701619124,
       "next_cert_issuable_on": 1679966259,
       "certs_received": {
@@ -21607,7 +22016,7 @@
     "Chaton": {
       "index": 8193,
       "owner_key": "3c3WoLyLjomSxqgxLh72MYemPMGTzM2xekH2hf2DH6Hm",
-      "balance": 540850,
+      "balance": 580536,
       "membership_expire_on": 1712173845,
       "next_cert_issuable_on": 1690533797,
       "certs_received": {
@@ -21616,6 +22025,7 @@
         "Mluc": 1726882400,
         "JeanneFlowJ": 1714495225,
         "Vlad": 1714426369,
+        "ZimG": 1756084688,
         "Coco-B": 1744240969,
         "Swaruu": 1714508269,
         "Plumedange": 1744266716,
@@ -21639,10 +22049,11 @@
     "Gossein": {
       "index": 11957,
       "owner_key": "3c8UULT78jE9KGg92ioiRyWieDSFsMv131AA9BGSw7dT",
-      "balance": 182115,
+      "balance": 221801,
       "membership_expire_on": 1710100219,
       "next_cert_issuable_on": 1693314380,
       "certs_received": {
+        "CatPMt": 1759175387,
         "Olivier3574": 1745121786,
         "AnneAmbles": 1743474005,
         "PascaleParis": 1741721165,
@@ -21692,7 +22103,7 @@
     "Lina07": {
       "index": 2677,
       "owner_key": "3cGwsTXtX1W3bkF2xZUC4MZSihzY29oDogtZu5Wb4bnE",
-      "balance": 1224008,
+      "balance": 1263694,
       "membership_expire_on": 1710036057,
       "next_cert_issuable_on": 1644336227,
       "certs_received": {
@@ -21724,7 +22135,7 @@
     "Rapha-L": {
       "index": 8174,
       "owner_key": "3cJaYUP4JpZgh5Gfw8vyBSsVoJMA2gxfR6T8hmbHKe55",
-      "balance": 217001,
+      "balance": 256687,
       "membership_expire_on": 1710790195,
       "next_cert_issuable_on": 1682874279,
       "certs_received": {
@@ -21744,7 +22155,7 @@
     "Txo": {
       "index": 13451,
       "owner_key": "3cLFGVhyEr5B1VDaD1fVkaWbTXxqj4nFoSqehY6jhM2g",
-      "balance": 3172,
+      "balance": 12858,
       "membership_expire_on": 1724520641,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -21759,12 +22170,13 @@
     "mmu_man": {
       "index": 68,
       "owner_key": "3cRMy9c6KYsbjMHAbQSMsGwUSUFHVTYPER6RuyMNYXVB",
-      "balance": 3668008,
+      "balance": 3707694,
       "membership_expire_on": 1699013554,
-      "next_cert_issuable_on": 1667527954,
+      "next_cert_issuable_on": 1693825942,
       "certs_received": {
         "jpfox": 1700448868,
         "tkpx": 1714457933,
+        "arfocine": 1756652469,
         "Laurentld": 1738766040,
         "xaviercc": 1722112997,
         "yannig": 1747257853
@@ -21773,7 +22185,7 @@
     "mipimichel": {
       "index": 11777,
       "owner_key": "3cRonam2t4skAQPLEBpdzjbYRNZ4XzLHfJHC86wTXpC6",
-      "balance": 217441,
+      "balance": 257127,
       "membership_expire_on": 1708909211,
       "next_cert_issuable_on": 1690820105,
       "certs_received": {
@@ -21784,13 +22196,29 @@
         "Eduardo451": 1740468174,
         "Beacouleurs": 1753058376,
         "ElisabethNyons": 1756055770,
-        "SiLi": 1740467817
+        "SiLi": 1740467817,
+        "Elodie2706": 1759217582
+      }
+    },
+    "Alexabeille": {
+      "index": 13618,
+      "owner_key": "3cTZ8hgmDYpPffexvWgSc9ogn5zp3AwV9GXvyMHz2ZCB",
+      "balance": 347249,
+      "membership_expire_on": 1725978791,
+      "next_cert_issuable_on": 1696155567,
+      "certs_received": {
+        "Carma2310": 1757719010,
+        "Sandcreart": 1757536391,
+        "stephane32": 1758416660,
+        "Naty31": 1758331015,
+        "MarieFrance31": 1757801397,
+        "Samsara": 1759182385
       }
     },
     "Camomillefv": {
       "index": 6070,
       "owner_key": "3crBoKYf1kU7m3BxC5PXvpPN4kmNVdEEY9xYWWJ3fNFf",
-      "balance": 322039,
+      "balance": 361725,
       "membership_expire_on": 1719853740,
       "next_cert_issuable_on": 1688368140,
       "certs_received": {
@@ -21800,7 +22228,7 @@
         "Bobyv": 1751410923,
         "D-Lyre": 1698804126,
         "Chantegrive": 1698824819,
-        "ortie": 1699149727,
+        "ortie": 1758150978,
         "s00999": 1698981384,
         "Mia": 1751407166
       }
@@ -21808,8 +22236,8 @@
     "Martyne": {
       "index": 10255,
       "owner_key": "3cuTVf7PkSKaisuiWvx5rC2Y7Sb4CuVJTeWS14SsAKrm",
-      "balance": 335190,
-      "membership_expire_on": 1697975549,
+      "balance": 349876,
+      "membership_expire_on": 1725233486,
       "next_cert_issuable_on": 1674435172,
       "certs_received": {
         "Domij": 1731056135,
@@ -21852,7 +22280,7 @@
     "Amg": {
       "index": 7679,
       "owner_key": "3dGA4QdmTmzj5MYvpJL7ZXY7PJdPzuoSY49aW7ts7Leg",
-      "balance": 419239,
+      "balance": 458925,
       "membership_expire_on": 1708548213,
       "next_cert_issuable_on": 1683980676,
       "certs_received": {
@@ -21876,7 +22304,7 @@
     "Bea53": {
       "index": 11523,
       "owner_key": "3dGYzyyazXtH7bjnsgTuvAPuPpYMEmEgVn3bMrCs6srn",
-      "balance": 230503,
+      "balance": 270189,
       "membership_expire_on": 1705946230,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -21894,7 +22322,7 @@
     "JoHana": {
       "index": 7081,
       "owner_key": "3dLbpC7yw2tmQYHHaaeZg1ykLEaPPEQgTZC8sxi5gXgW",
-      "balance": 225289,
+      "balance": 64975,
       "membership_expire_on": 1708903986,
       "next_cert_issuable_on": 1689501622,
       "certs_received": {
@@ -21934,9 +22362,9 @@
     "chantelavie": {
       "index": 10493,
       "owner_key": "3dRnSYajZr4ih2sH1n6szedwMNi54XLYxwm9JfEaA1c1",
-      "balance": 300261,
+      "balance": 339947,
       "membership_expire_on": 1699994592,
-      "next_cert_issuable_on": 1678877307,
+      "next_cert_issuable_on": 1694429319,
       "certs_received": {
         "RachelKlein": 1732384816,
         "PascalePoelman": 1732382505,
@@ -21966,7 +22394,7 @@
     "Azul": {
       "index": 11139,
       "owner_key": "3df5vMEWXH8nVEW99MK3aKaRfT7Y3NcjBrSFZcx5VBTe",
-      "balance": 117899,
+      "balance": 97585,
       "membership_expire_on": 1704320052,
       "next_cert_issuable_on": 1684290826,
       "certs_received": {
@@ -21991,8 +22419,8 @@
     "ClaKi66": {
       "index": 9787,
       "owner_key": "3doQjMxu9cKuGVwPz4eZWEyFgoYY1QvcU4V6sBfZzU3s",
-      "balance": 355596,
-      "membership_expire_on": 1696002750,
+      "balance": 386658,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1676164783,
       "certs_received": {
         "corinne13me": 1727656737,
@@ -22009,7 +22437,7 @@
     "Namea73": {
       "index": 7214,
       "owner_key": "3drzLbm3vgmdqRj3JUW7JmHqmGTxqBAk8UP7jTaCETXN",
-      "balance": 452236,
+      "balance": 491922,
       "membership_expire_on": 1717589029,
       "next_cert_issuable_on": 1653374788,
       "certs_received": {
@@ -22033,7 +22461,7 @@
     "bcoomans": {
       "index": 10447,
       "owner_key": "3eD8WEUky7roAZmbXRsTBkraTvgTJAxuXMvsNC5FUMCV",
-      "balance": 311223,
+      "balance": 350909,
       "membership_expire_on": 1700494473,
       "next_cert_issuable_on": 1686729129,
       "certs_received": {
@@ -22051,7 +22479,7 @@
     "Kalior": {
       "index": 13179,
       "owner_key": "3eD9D2bVk1EYLALWg7UrDNa1azPhLjBjdb2LPUPG2MgY",
-      "balance": 95328,
+      "balance": 130514,
       "membership_expire_on": 1720980500,
       "next_cert_issuable_on": 1692087758,
       "certs_received": {
@@ -22068,7 +22496,7 @@
     "VirginieGautier": {
       "index": 7354,
       "owner_key": "3eEoTAEgdguiznGJ9gEPK7Aq7we8iKJRicWjatq9Xvua",
-      "balance": 595595,
+      "balance": 635281,
       "membership_expire_on": 1704365741,
       "next_cert_issuable_on": 1672849576,
       "certs_received": {
@@ -22093,7 +22521,7 @@
     "Kimoto": {
       "index": 9540,
       "owner_key": "3eFEFreiNG5jCY66XMMiyi6ep2BFdFVjGoChmzB1vFmU",
-      "balance": 595677,
+      "balance": 715677,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1668054313,
       "certs_received": {
@@ -22118,7 +22546,7 @@
     "ChristianeL88": {
       "index": 12999,
       "owner_key": "3eM4h4GbafvGxBspjeYndnW7eB5jLe1JNMGutoBFiZhq",
-      "balance": 70488,
+      "balance": 110174,
       "membership_expire_on": 1718827640,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -22132,12 +22560,11 @@
     "Petragizeh": {
       "index": 4970,
       "owner_key": "3eSB4VwG4rJGDjxh4uqj3q8kuLxjZyz93UTzCBkVTKeZ",
-      "balance": 609133,
+      "balance": 648819,
       "membership_expire_on": 1707865322,
       "next_cert_issuable_on": 1686038462,
       "certs_received": {
         "Lumiere": 1698530342,
-        "daoud": 1694030402,
         "jeanferreira": 1745510289,
         "Mententon": 1745467277,
         "ChristineCoutiere": 1746551900,
@@ -22151,9 +22578,9 @@
     "RobertW34": {
       "index": 3944,
       "owner_key": "3eaZiHXreS1591itS2oaaAvQ1DN37U9uu5yffvkLScHN",
-      "balance": 991987,
+      "balance": 1031673,
       "membership_expire_on": 1719885278,
-      "next_cert_issuable_on": 1688399856,
+      "next_cert_issuable_on": 1694021744,
       "certs_received": {
         "AnnaM": 1724228984,
         "Lecuyer89": 1707461326,
@@ -22186,9 +22613,9 @@
     "IsaTuick": {
       "index": 7599,
       "owner_key": "3egNPwhSMHtQwi7ToxrndshgxcwA4Q41PAVLj8u81rEa",
-      "balance": 540245,
+      "balance": 579931,
       "membership_expire_on": 1710863006,
-      "next_cert_issuable_on": 1679979520,
+      "next_cert_issuable_on": 1695034486,
       "certs_received": {
         "FraBro": 1712453751,
         "fabireine": 1724913101,
@@ -22214,6 +22641,21 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "hdecidre": {
+      "index": 13683,
+      "owner_key": "3eyxR3dnzwPVRozNob66RxYrQ97ErV9hD3BTBsVWi4PX",
+      "balance": 20624,
+      "membership_expire_on": 1726695711,
+      "next_cert_issuable_on": 1696674837,
+      "certs_received": {
+        "mssix": 1759001731,
+        "SecretdeJais": 1759053741,
+        "Salsa33150": 1759036682,
+        "Tango8943": 1759036682,
+        "Emeriol": 1759001481,
+        "MargueriteD33": 1759115437
+      }
+    },
     "EugeniaO": {
       "index": 4572,
       "owner_key": "3f6WJdBihNLfyctACU6UwTcVYgH2trk4Sn68a4FKqdmy",
@@ -22249,7 +22691,7 @@
     "Snoopy": {
       "index": 12065,
       "owner_key": "3fDh5msdLqKxcebxVauNtHGUWhWQsEwaMBuGQVFDCpA7",
-      "balance": 175143,
+      "balance": 214829,
       "membership_expire_on": 1710724107,
       "next_cert_issuable_on": 1680276633,
       "certs_received": {
@@ -22282,13 +22724,14 @@
     "Andou": {
       "index": 9226,
       "owner_key": "3fVTJLS5AHqd2Z3FKzzsbqwdWiGnaNuh3NjcKu1BPH2X",
-      "balance": 349383,
+      "balance": 417069,
       "membership_expire_on": 1714000486,
-      "next_cert_issuable_on": 1689952480,
+      "next_cert_issuable_on": 1696141069,
       "certs_received": {
         "MaureenDoucet": 1735171560,
         "Mikatoshi": 1723656666,
         "LoreleiGAUTHIER": 1722890874,
+        "ChristineCanvel": 1759362627,
         "christianforrat": 1722837287,
         "SylvianePetit": 1720569754,
         "JeanLucGAUTHIER": 1723606156,
@@ -22317,19 +22760,16 @@
     "SabineD": {
       "index": 5740,
       "owner_key": "3fiPCU89RkoSuWe3fdAtDckPi3hdMdBXc5mSpQGWN8Ac",
-      "balance": 571713,
-      "membership_expire_on": 1694340864,
+      "balance": 581325,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1667910645,
       "certs_received": {
-        "Sofiachante": 1695403652,
         "lou108": 1733902656,
         "SOROWE": 1708562301,
         "SebastienMaire": 1708545536,
         "AnneH0512": 1707601661,
-        "Max": 1696048445,
         "Babouche00": 1733126591,
         "Libreensoi": 1731489186,
-        "ChoraMadera": 1693846281,
         "Soanne29": 1707504974,
         "DjedjePit": 1710996931
       }
@@ -22353,9 +22793,9 @@
     "JesapelleGroot": {
       "index": 10210,
       "owner_key": "3g8vqraF9q7qzAq9zULmfbzxeM4aBU4nXvN5vDcuu2X6",
-      "balance": 373108,
-      "membership_expire_on": 1698706800,
-      "next_cert_issuable_on": 0,
+      "balance": 412794,
+      "membership_expire_on": 1727877374,
+      "next_cert_issuable_on": 1696391774,
       "certs_received": {
         "Hammazone": 1730661982,
         "LittleJess": 1730831846,
@@ -22368,7 +22808,7 @@
     "KenD": {
       "index": 10867,
       "owner_key": "3gALMQr7BLTaNTs3W2iEezTX5trtx7Dqp2uSGdLsDyDz",
-      "balance": 543428,
+      "balance": 583114,
       "membership_expire_on": 1702591867,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -22406,7 +22846,7 @@
     "Muscate": {
       "index": 12223,
       "owner_key": "3gMDJsKcQgAYbhtXyewvP68b5PMjbGTbxtDBdNwnKtoW",
-      "balance": 164132,
+      "balance": 203818,
       "membership_expire_on": 1708776966,
       "next_cert_issuable_on": 1681370094,
       "certs_received": {
@@ -22421,9 +22861,9 @@
     "Vanille": {
       "index": 9999,
       "owner_key": "3gUPRVT8HD92eMregHm5S2LXqqB5WxUYRmjePt9EPtct",
-      "balance": 1998901,
+      "balance": 2672387,
       "membership_expire_on": 1724025600,
-      "next_cert_issuable_on": 1689657774,
+      "next_cert_issuable_on": 1696292048,
       "certs_received": {
         "Camillefairy": 1728148720,
         "espritlibredulac": 1728700576,
@@ -22444,7 +22884,7 @@
     "LhamoKarine": {
       "index": 8963,
       "owner_key": "3gYAVjoUP4NmNkJx3J3QbXYCQDSsgA6YLv7dGsi7sa9M",
-      "balance": 434941,
+      "balance": 474627,
       "membership_expire_on": 1715674847,
       "next_cert_issuable_on": 1667613266,
       "certs_received": {
@@ -22474,7 +22914,7 @@
     "SvetRuskof": {
       "index": 3123,
       "owner_key": "3gqmoBTzzhJJQGLB6saTVcGKRzW6ak67G1HmNQusvYU9",
-      "balance": 456354,
+      "balance": 496040,
       "membership_expire_on": 1718744353,
       "next_cert_issuable_on": 1681736240,
       "certs_received": {
@@ -22507,14 +22947,13 @@
         "Nyttliv": 1712101819,
         "Vy81": 1732838354,
         "Zoriko-J": 1740799868,
-        "Marielac": 1725670310,
-        "Profil": 1695955930
+        "Marielac": 1725670310
       }
     },
     "VioletteRose": {
       "index": 1940,
       "owner_key": "3grGQpK3sZeHFPHYmGS2JkezNVjnAdtEQVmAexmQbxPW",
-      "balance": 1629457,
+      "balance": 1669143,
       "membership_expire_on": 1701010922,
       "next_cert_issuable_on": 1692439596,
       "certs_received": {
@@ -22526,6 +22965,7 @@
         "JeanMarcBuge": 1740720898,
         "Omkara": 1736627272,
         "Do11": 1738278188,
+        "Thiam": 1757195065,
         "MaryseD": 1736453395,
         "Leticia": 1749148753,
         "Coco": 1738119220,
@@ -22535,7 +22975,7 @@
     "jeanpaulbideau": {
       "index": 7423,
       "owner_key": "3gsdQhbiPFkv3rf2hV9X2vgTUecHQTQsXQr6JHrdFP4j",
-      "balance": 250908,
+      "balance": 290594,
       "membership_expire_on": 1708996383,
       "next_cert_issuable_on": 1680948321,
       "certs_received": {
@@ -22555,6 +22995,22 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Luis_Varela": {
+      "index": 13721,
+      "owner_key": "3hBywmZGrtETuzsDtryygG1cUwsetAA7NBCcLfGW2nWz",
+      "balance": 5390,
+      "membership_expire_on": 1727405314,
+      "next_cert_issuable_on": 1696343209,
+      "certs_received": {
+        "devihope": 1759310747,
+        "anapatapouf": 1759366370,
+        "PatriciaDoVale": 1759288646,
+        "lurdespinho": 1759374877,
+        "HViegas": 1759175833,
+        "Rahhui": 1759648037,
+        "JoaoLestro": 1759368446
+      }
+    },
     "SarahMontserrat": {
       "index": 9445,
       "owner_key": "3hJZneaF2sMGNMxPdSBVcku2SxHASd2XGhoUBcELjEpC",
@@ -22574,7 +23030,7 @@
     "mariegaby": {
       "index": 9929,
       "owner_key": "3hLrdUN7u7iSQKtHhDzSPVjteC4Zz78TP84iYVET9ghm",
-      "balance": 329381,
+      "balance": 369067,
       "membership_expire_on": 1720813628,
       "next_cert_issuable_on": 1689328595,
       "certs_received": {
@@ -22591,8 +23047,8 @@
     "MoreauCatherine": {
       "index": 9947,
       "owner_key": "3hM9KyrbgwC68og8kFBa468ED1q7tNxPhqk41KsotpH7",
-      "balance": 336288,
-      "membership_expire_on": 1696869744,
+      "balance": 230974,
+      "membership_expire_on": 1726408091,
       "next_cert_issuable_on": 1680618212,
       "certs_received": {
         "Ratnaboar": 1729035933,
@@ -22608,7 +23064,7 @@
     "ROCIO": {
       "index": 9144,
       "owner_key": "3hQ4SNpqquk6EmGKEWEtgcreBTYuXACd5LFAcsUhn7kz",
-      "balance": 261423,
+      "balance": 276109,
       "membership_expire_on": 1720471488,
       "next_cert_issuable_on": 1688986785,
       "certs_received": {
@@ -22662,7 +23118,7 @@
     "Laciboulette": {
       "index": 13003,
       "owner_key": "3hXHPBcgwcWUbXGBtnZeM3va2ZQJbX5vCRTRPL81uHXu",
-      "balance": 70488,
+      "balance": 110174,
       "membership_expire_on": 1718224767,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -22678,13 +23134,14 @@
     "FarcyAdeline": {
       "index": 4208,
       "owner_key": "3haL6tNLgF5cTEJpEUe17At5qpJsuW7pEgRLpW6eycRn",
-      "balance": 910836,
-      "membership_expire_on": 1694126523,
+      "balance": 516686,
+      "membership_expire_on": 1725831100,
       "next_cert_issuable_on": 1676812205,
       "certs_received": {
         "EricPetit": 1725047215,
         "mimi": 1731733732,
         "MorganeVirot": 1739855405,
+        "Bastien-29": 1758092192,
         "Wahida": 1733362102,
         "Clement": 1732148861,
         "astrid": 1730438479,
@@ -22694,9 +23151,9 @@
     "Anetheps": {
       "index": 12298,
       "owner_key": "3hbDAkVzJ4XZ4MhueQ5GcMUNZ8ndDHqVjNLoqA7nH4ok",
-      "balance": 432724,
+      "balance": 472410,
       "membership_expire_on": 1711718010,
-      "next_cert_issuable_on": 1686720891,
+      "next_cert_issuable_on": 1696317193,
       "certs_received": {
         "DaniailesA": 1744251749,
         "Unomasuno": 1744249695,
@@ -22710,7 +23167,7 @@
     "VictorSoulondre": {
       "index": 10778,
       "owner_key": "3hfhe3GWigKQ8zCfFjswLHUnDLKwrznsgREGpQ9UJRYc",
-      "balance": 313043,
+      "balance": 352729,
       "membership_expire_on": 1702160269,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -22725,9 +23182,9 @@
     "Unity": {
       "index": 12167,
       "owner_key": "3hnmb2y1P7FYYjAftZ5rLQCzrNbEqtQLy2yhTKtV33bi",
-      "balance": 155540,
+      "balance": 189726,
       "membership_expire_on": 1711469842,
-      "next_cert_issuable_on": 1684491852,
+      "next_cert_issuable_on": 1696424805,
       "certs_received": {
         "Andrepac": 1743048122,
         "RosadoraLafee": 1743611420,
@@ -22740,7 +23197,7 @@
     "ChristineNoelle": {
       "index": 12423,
       "owner_key": "3hvqARzvDvS55XLhb2TnNMW5fPQD1mupTKQnKpLUBeUE",
-      "balance": 81840,
+      "balance": 98026,
       "membership_expire_on": 1712923140,
       "next_cert_issuable_on": 1688872798,
       "certs_received": {
@@ -22765,7 +23222,7 @@
     "chloegrand": {
       "index": 13432,
       "owner_key": "3hzAFqLjCBpaoWuFHu7fymhocGfbxEtg4Z1Tb42cdo41",
-      "balance": 22816,
+      "balance": 88502,
       "membership_expire_on": 1723629140,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -22779,7 +23236,7 @@
     "Diversens": {
       "index": 11786,
       "owner_key": "3hzJHX8x46TctZ3fZ5XzAW2V5yc27yiMfzjEpUGkhbCQ",
-      "balance": 325554,
+      "balance": 383240,
       "membership_expire_on": 1708910574,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -22793,7 +23250,7 @@
     "Nell": {
       "index": 6650,
       "owner_key": "3i2opRVN2hRrzXAVedkq8WwFGdnfYvwmNn42g8rcMrCo",
-      "balance": 572351,
+      "balance": 612037,
       "membership_expire_on": 1723122596,
       "next_cert_issuable_on": 1676346592,
       "certs_received": {
@@ -22814,18 +23271,14 @@
     "Alcidejet": {
       "index": 898,
       "owner_key": "3i4U7v3RDKAz9dLTKQsQSmDG9m2oukM9w6sWKozBcixy",
-      "balance": 1432846,
+      "balance": 1472532,
       "membership_expire_on": 1716738646,
       "next_cert_issuable_on": 1690702057,
       "certs_received": {
-        "CaroPetillante": 1694588027,
         "BenoitDerudder": 1754622062,
         "Kamilmilka": 1742322827,
         "AlexisMarcotte": 1742322376,
-        "CharlesAbecassis": 1696722936,
-        "Elusse": 1695612947,
         "NinaB": 1743863695,
-        "Mahe": 1695937734,
         "FredRyberon": 1742438349,
         "FredericMiquel": 1712194468
       }
@@ -22833,7 +23286,7 @@
     "emilericard": {
       "index": 8074,
       "owner_key": "3iNZnDBYr6e6eiDXqVLK25B3eFTZgg59FtF6tCx5tn4r",
-      "balance": 535758,
+      "balance": 575444,
       "membership_expire_on": 1711027070,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -22847,7 +23300,7 @@
     "Nalitylo": {
       "index": 7997,
       "owner_key": "3iSvzBCmDLrJ9njbUGohxEbFD94UsGhTCFeJTehk5fGM",
-      "balance": 519284,
+      "balance": 558970,
       "membership_expire_on": 1715906875,
       "next_cert_issuable_on": 1670218614,
       "certs_received": {
@@ -22862,7 +23315,7 @@
     "Itziar": {
       "index": 12339,
       "owner_key": "3iZoJoUeYW7cY4ZNGFMe7WZtbXokGSGaJpKdvk1XfNvJ",
-      "balance": 214452,
+      "balance": 254138,
       "membership_expire_on": 1712598463,
       "next_cert_issuable_on": 1682386669,
       "certs_received": {
@@ -22895,7 +23348,7 @@
     "blancaruai": {
       "index": 12765,
       "owner_key": "3imygPYyPKwso5mS29HEuhgUxkVAhnYDd4fTy4PDW1yq",
-      "balance": 89560,
+      "balance": 124846,
       "membership_expire_on": 1716813199,
       "next_cert_issuable_on": 1688136520,
       "certs_received": {
@@ -22918,7 +23371,7 @@
     "Barbablanc": {
       "index": 11374,
       "owner_key": "3irWFLwAbAawR1Hz4NZmxMz1kmiZdpcAj3fAEp8vZ5dS",
-      "balance": 150171,
+      "balance": 143357,
       "membership_expire_on": 1705920772,
       "next_cert_issuable_on": 1689911765,
       "certs_received": {
@@ -22960,9 +23413,9 @@
     "AlexHalley": {
       "index": 4415,
       "owner_key": "3ixa2Lz4wzqSiuSNc4CYE7oEEyrvQxjdqLjAJxAqRiop",
-      "balance": 970213,
+      "balance": 992641,
       "membership_expire_on": 1704244780,
-      "next_cert_issuable_on": 1686891414,
+      "next_cert_issuable_on": 1696136343,
       "certs_received": {
         "Hugues35": 1740770959,
         "Tarfaya2020": 1740273076,
@@ -22981,7 +23434,7 @@
     "Flaviofior": {
       "index": 12607,
       "owner_key": "3iyXcUV9ATFRvceEK2m5nrvr8FNx5mzW6atH1tsh1CRf",
-      "balance": 164616,
+      "balance": 204302,
       "membership_expire_on": 1715126583,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -22996,8 +23449,8 @@
     "Jonas": {
       "index": 10763,
       "owner_key": "3j1eiZT4LAxcefjvuBUUZDRf6uiyML7fd3gUMX9zYqwQ",
-      "balance": 282102,
-      "membership_expire_on": 1701396648,
+      "balance": 321788,
+      "membership_expire_on": 1727785791,
       "next_cert_issuable_on": 1671890560,
       "certs_received": {
         "SashaD": 1733702985,
@@ -23039,14 +23492,12 @@
       "balance": 1000540,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "domenechmanu": 1695310563
-      }
+      "certs_received": {}
     },
     "DamienChimay": {
       "index": 11677,
       "owner_key": "3jo6L2biuTC1MRrZFASfRtMfmfu3dzqgUX1cM4Q7wJPW",
-      "balance": 208854,
+      "balance": 248540,
       "membership_expire_on": 1707763185,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -23060,9 +23511,9 @@
     "GeraldineLeprivier": {
       "index": 4921,
       "owner_key": "3jp3nrMRBqhtcm3fFEYgsnqhpwRXJAH4cSqXxH79AcHd",
-      "balance": 3007116,
+      "balance": 3046802,
       "membership_expire_on": 1708622290,
-      "next_cert_issuable_on": 1689926676,
+      "next_cert_issuable_on": 1692896437,
       "certs_received": {
         "Loulou09": 1700624998,
         "PatrickRO": 1745380026,
@@ -23073,7 +23524,6 @@
         "JeanclaudeSocasau": 1697920696,
         "AlbinS": 1697835379,
         "Buloglatinami": 1721244874,
-        "myriamdevivegnis": 1693784979,
         "AnnemarieLavie": 1754868376,
         "MireilleTouet": 1741833847,
         "hocine": 1697165039,
@@ -23109,7 +23559,7 @@
     "MarieDel": {
       "index": 11199,
       "owner_key": "3kAwDVZHNbrxhNN8VQ7FKMF2VkdQXMjCYho5Lm3H1axE",
-      "balance": 249096,
+      "balance": 288782,
       "membership_expire_on": 1703208708,
       "next_cert_issuable_on": 1679273693,
       "certs_received": {
@@ -23133,7 +23583,7 @@
     "Felicia2": {
       "index": 4196,
       "owner_key": "3kK1U2aKwkUCxMhakkPfUoNXhicBBko153jXihxPe1gE",
-      "balance": 417974,
+      "balance": 433974,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1678253112,
       "certs_received": {
@@ -23148,7 +23598,7 @@
     "Ganben": {
       "index": 8400,
       "owner_key": "3kPCC3PgmQCM8JkU7qeP6jdafKrZ3SAKaaBC1AG6DLjc",
-      "balance": 742150,
+      "balance": 781836,
       "membership_expire_on": 1713004457,
       "next_cert_issuable_on": 1679805126,
       "certs_received": {
@@ -23161,12 +23611,26 @@
         "Moksha": 1717779280
       }
     },
+    "NowNeko": {
+      "index": 13627,
+      "owner_key": "3kW2BfVKhdVsvLDb4mm3rwNiXR8f1jJcLwyXRArr4ac2",
+      "balance": 41660,
+      "membership_expire_on": 1726497122,
+      "next_cert_issuable_on": 1696601917,
+      "certs_received": {
+        "Bsamuel": 1758492194,
+        "orion": 1758497127,
+        "CecileM34": 1758495311,
+        "Jim974": 1758495311,
+        "Marcus_974": 1758492194
+      }
+    },
     "ColetteNavaux": {
       "index": 8017,
       "owner_key": "3kWrvhspNGwdXBB8iNdkWKYGMV1BZ1xQpfhF2Tzf2NFy",
-      "balance": 375883,
+      "balance": 404069,
       "membership_expire_on": 1710103573,
-      "next_cert_issuable_on": 1692619287,
+      "next_cert_issuable_on": 1693045057,
       "certs_received": {
         "pauldel": 1752903620,
         "Tembo": 1751522285,
@@ -23180,6 +23644,7 @@
         "RussoDavid13": 1733874891,
         "nathinfi": 1714831193,
         "louirit": 1727637069,
+        "Petfa": 1758690475,
         "Mabize": 1751085918,
         "Matedi23": 1714666909,
         "Gclaire": 1714701350
@@ -23188,8 +23653,8 @@
     "Albcoop": {
       "index": 9619,
       "owner_key": "3kfSDNEnjMumR3CNpjbvNB7QUxbwkeB6M9MY89WcnFWs",
-      "balance": 195248,
-      "membership_expire_on": 1695149438,
+      "balance": 234934,
+      "membership_expire_on": 1726628653,
       "next_cert_issuable_on": 1676649027,
       "certs_received": {
         "JuanPan": 1726953640,
@@ -23203,7 +23668,7 @@
     "Janpolan": {
       "index": 10008,
       "owner_key": "3kjWnknY1xAsV9ttg3AX35ricW67e1XBHkacZdc9eeXa",
-      "balance": 344052,
+      "balance": 383738,
       "membership_expire_on": 1697067715,
       "next_cert_issuable_on": 1671628144,
       "certs_received": {
@@ -23222,6 +23687,21 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Eloine": {
+      "index": 13594,
+      "owner_key": "3kw9qvbMhqmJdis7r2DPdfLWsnd4aRfGmvg4r6Xh8oCv",
+      "balance": 20462,
+      "membership_expire_on": 1726324903,
+      "next_cert_issuable_on": 1695703822,
+      "certs_received": {
+        "Nouchka1": 1758174339,
+        "AlphaCentauri": 1758058040,
+        "Sebastien": 1758168231,
+        "remol": 1758050341,
+        "Cybelle-Prune": 1758165500,
+        "Ceciletricoteuse": 1758055174
+      }
+    },
     "galaxyhearth": {
       "index": 3064,
       "owner_key": "3kxTD7dPS8oK8SzYPALH4QQwpVgjN4nbTqs9wZ2uDcuH",
@@ -23233,9 +23713,9 @@
     "Altheaagathe": {
       "index": 8912,
       "owner_key": "3m9vfCrnXR5CMRH7jpDFwstJdC1Nuy4UmxjQ8gBckrLx",
-      "balance": 286245,
+      "balance": 130431,
       "membership_expire_on": 1718382570,
-      "next_cert_issuable_on": 1690640224,
+      "next_cert_issuable_on": 1696243911,
       "certs_received": {
         "ScarlettGabrielle_8": 1736186314,
         "samsufy": 1720860099,
@@ -23254,9 +23734,9 @@
     "SanVal": {
       "index": 8622,
       "owner_key": "3mJXAS93BKcY6LoLHqEvLCiZaxAS9kuNRzR3sUSfV2Eo",
-      "balance": 172833,
+      "balance": 212519,
       "membership_expire_on": 1718223910,
-      "next_cert_issuable_on": 1679412991,
+      "next_cert_issuable_on": 1695260063,
       "certs_received": {
         "SaraRo": 1717573692,
         "ManelG": 1717992957,
@@ -23273,7 +23753,7 @@
     "Caline29": {
       "index": 9632,
       "owner_key": "3mMKgLogfmTntbykr26MKa8oA8K1Y3DEddLc9G1zw8Q5",
-      "balance": 369345,
+      "balance": 409031,
       "membership_expire_on": 1724925970,
       "next_cert_issuable_on": 1674570621,
       "certs_received": {
@@ -23290,20 +23770,23 @@
     "Damaso": {
       "index": 10741,
       "owner_key": "3mNHu6iwJxCfP9vZ2FbMYo1AzP2tzpNmYpdr4H9QbVCN",
-      "balance": 159920,
+      "balance": 97106,
       "membership_expire_on": 1701892548,
-      "next_cert_issuable_on": 1689597731,
+      "next_cert_issuable_on": 1695629921,
       "certs_received": {
         "Manu_El": 1746516940,
         "KiiAymara": 1733457598,
+        "PedroX": 1756848797,
         "MaraVilla": 1745880178,
+        "virginiaoreoro": 1758670427,
         "Mariaje": 1733453187,
         "VICTORF": 1746664643,
         "Toki": 1733455248,
         "Guiomar": 1741471040,
         "Alberto": 1733535167,
         "GRUKSY": 1737330283,
-        "SurfinMaya": 1733553647
+        "SurfinMaya": 1733553647,
+        "Sylvain": 1758661005
       }
     },
     "GaelleL": {
@@ -23317,9 +23800,9 @@
     "CaroleRaets": {
       "index": 10544,
       "owner_key": "3mYDuZa3B7uMs8RNG5oiY2JnajZDUsGi96PgWfYd1Adg",
-      "balance": 278099,
+      "balance": 317785,
       "membership_expire_on": 1701026293,
-      "next_cert_issuable_on": 1675697923,
+      "next_cert_issuable_on": 1695622592,
       "certs_received": {
         "Martyne": 1732667255,
         "Batman": 1736274618,
@@ -23337,7 +23820,7 @@
     "Libel": {
       "index": 4654,
       "owner_key": "3mafDaEbdu9MSF9We6x3aXPLKQscW4ctJeVEcAN4574w",
-      "balance": 948350,
+      "balance": 988036,
       "membership_expire_on": 1697573827,
       "next_cert_issuable_on": 1666363310,
       "certs_received": {
@@ -23351,7 +23834,7 @@
     "MaryseR": {
       "index": 11780,
       "owner_key": "3mipssc8FLMdzepaSMa8zPZ59jfPL83kf2471MzhLSTs",
-      "balance": 202441,
+      "balance": 242127,
       "membership_expire_on": 1708344186,
       "next_cert_issuable_on": 1682348556,
       "certs_received": {
@@ -23366,9 +23849,9 @@
     "MarcelleA": {
       "index": 12562,
       "owner_key": "3mpunmz7AVLmcZfJLiBSuR9D7rRdJQZBLsvshwCD5XUA",
-      "balance": 113988,
+      "balance": 178674,
       "membership_expire_on": 1712424433,
-      "next_cert_issuable_on": 1692408998,
+      "next_cert_issuable_on": 1695987880,
       "certs_received": {
         "RosyRio": 1746467893,
         "Chrisma1957": 1746338742,
@@ -23376,7 +23859,9 @@
         "MarieMas": 1746461555,
         "Barbatruc": 1746467893,
         "Mazurka": 1747089510,
+        "cricri": 1757291047,
         "Domino7": 1746580271,
+        "Bilou": 1758350785,
         "CaroNaturo": 1746702265,
         "Collibri76": 1749594269
       }
@@ -23384,9 +23869,9 @@
     "SophieB": {
       "index": 8914,
       "owner_key": "3mre1oYGRXXbeurjbXZL4bobpBGhTCHwDfTj8ysT72ch",
-      "balance": 381287,
+      "balance": 425973,
       "membership_expire_on": 1714503032,
-      "next_cert_issuable_on": 1678531181,
+      "next_cert_issuable_on": 1696143736,
       "certs_received": {
         "gerardcambourian": 1740902857,
         "Lys2703": 1721244874,
@@ -23401,13 +23886,14 @@
         "Ori2604": 1721244874,
         "KiranGAUTHIER": 1720235148,
         "JorickGAUTHIER": 1719353084,
+        "Susheela": 1759207151,
         "Ayl1012": 1721244874
       }
     },
     "yogafrop": {
       "index": 12540,
       "owner_key": "3muJiD78XpGqoPaHq5kbD7N25V9J3CDFc7fD7STvJY9g",
-      "balance": 161692,
+      "balance": 201378,
       "membership_expire_on": 1714348725,
       "next_cert_issuable_on": 1683367047,
       "certs_received": {
@@ -23422,7 +23908,7 @@
     "Annemari73": {
       "index": 6896,
       "owner_key": "3n6w8Z3yFZVZBS4TXfm9jhPCe2LmhS8xDaUUWPB3vP9J",
-      "balance": 573876,
+      "balance": 613562,
       "membership_expire_on": 1705320699,
       "next_cert_issuable_on": 1670333043,
       "certs_received": {
@@ -23447,7 +23933,7 @@
     "Malu": {
       "index": 10066,
       "owner_key": "3nJ3VFco8GUBYoGec49vZsQ6S7CzV45yQ9TQfGG6jSm8",
-      "balance": 118253,
+      "balance": 157939,
       "membership_expire_on": 1698066436,
       "next_cert_issuable_on": 1685669751,
       "certs_received": {
@@ -23473,7 +23959,7 @@
     "FRED": {
       "index": 8497,
       "owner_key": "3nWuM4aSy1anVdWUT8mFfc5SpZ8wsH4FwAQJSDcnCbx6",
-      "balance": 469828,
+      "balance": 509514,
       "membership_expire_on": 1713478501,
       "next_cert_issuable_on": 1677754776,
       "certs_received": {
@@ -23498,18 +23984,12 @@
       "balance": 377030,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "JeromeCastel": 1696557074,
-        "ikkyu": 1696572191,
-        "Numerosympa": 1696565652,
-        "Maquilleuse": 1696565652,
-        "RoxaneCastel": 1696571682
-      }
+      "certs_received": {}
     },
     "bndn": {
       "index": 4997,
       "owner_key": "3nw4d1AjwECXPLZsvKtUSvnZQTDhXEwtTrv48thgmVcx",
-      "balance": 886073,
+      "balance": 925759,
       "membership_expire_on": 1705604727,
       "next_cert_issuable_on": 1681835587,
       "certs_received": {
@@ -23524,22 +24004,27 @@
     "Papou": {
       "index": 13339,
       "owner_key": "3nxraWo8HHyHUcZGvLHjGNd5ERoH69tkVdjEEBmcYRQk",
-      "balance": 49496,
+      "balance": 59682,
       "membership_expire_on": 1721691792,
-      "next_cert_issuable_on": 1692796429,
+      "next_cert_issuable_on": 1696146884,
       "certs_received": {
+        "EricSIMON": 1759468005,
         "DomMembre": 1754345750,
+        "Giny": 1759179543,
         "Terenia2809": 1754351517,
         "GeraldS": 1754345750,
         "LouLiette": 1755754344,
         "TheoVS": 1754345750,
-        "Cyrian": 1754360976
+        "Cyrian": 1754360976,
+        "CedricG": 1756854432,
+        "LolotteCL": 1757881590,
+        "AlexCl": 1757899361
       }
     },
     "Girafon": {
       "index": 8902,
       "owner_key": "3nyZzuzYcMFB1iR9xtQZUBTSKijrMh4e3DUdSuDGW84a",
-      "balance": 406632,
+      "balance": 446318,
       "membership_expire_on": 1721051941,
       "next_cert_issuable_on": 1659583133,
       "certs_received": {
@@ -23557,7 +24042,7 @@
     "Chris08": {
       "index": 2184,
       "owner_key": "3o1oR5Kw9iMmQqt2ZGoPcSc7r6569ChNZ4ifjsLXYZfd",
-      "balance": 733679,
+      "balance": 773365,
       "membership_expire_on": 1706029688,
       "next_cert_issuable_on": 1689154843,
       "certs_received": {
@@ -23566,7 +24051,6 @@
         "YannKervran": 1746482913,
         "Liam73": 1745649653,
         "Phil7": 1739050815,
-        "Cindy974": 1695359167,
         "CareIn": 1751973085,
         "Brunov974": 1723579318,
         "pvincent": 1751390930,
@@ -23587,9 +24071,9 @@
     "Princesse": {
       "index": 5508,
       "owner_key": "3o7t9deafBfcNHBdpYHrsqpCpW1AZv7GCsJZvkZsDmHY",
-      "balance": 782873,
+      "balance": 822559,
       "membership_expire_on": 1714752055,
-      "next_cert_issuable_on": 1684939820,
+      "next_cert_issuable_on": 1693564598,
       "certs_received": {
         "Aude49": 1753899759,
         "Laula": 1698265748,
@@ -23603,14 +24087,16 @@
     "FenderChristophe": {
       "index": 7867,
       "owner_key": "3oBVvScDiTWePnfvbtab5tjecfAEna1VTHYmLwKfMe8L",
-      "balance": 254694,
+      "balance": 234680,
       "membership_expire_on": 1707520174,
-      "next_cert_issuable_on": 1693561756,
+      "next_cert_issuable_on": 1696292782,
       "certs_received": {
         "LoupBlanc": 1729809196,
         "DanWF": 1712621500,
         "MartiGraef": 1728173581,
         "helena05": 1724791504,
+        "Dom67": 1756620837,
+        "Sissi": 1757231443,
         "TheoF": 1712791862,
         "jeanclauderateau": 1734570956,
         "Anthoxanthum67": 1739258081,
@@ -23621,6 +24107,7 @@
         "Cyanescens": 1738359730,
         "Emniht": 1738027645,
         "kalimheros": 1722201175,
+        "Als_67": 1759344308,
         "Natheidi": 1712621624,
         "Flammekueche": 1730316674,
         "Loris_T": 1728966998,
@@ -23663,9 +24150,9 @@
     "Gabriel51": {
       "index": 6694,
       "owner_key": "3oSwFkNLqtxFiqcZvsLKLcv6BCwsz6thE7XPLjnNNKYJ",
-      "balance": 595183,
-      "membership_expire_on": 1700239551,
-      "next_cert_issuable_on": 1684360977,
+      "balance": 634869,
+      "membership_expire_on": 1727874884,
+      "next_cert_issuable_on": 1693067762,
       "certs_received": {
         "DelphineDietsch": 1705697739,
         "Martine51": 1705266696,
@@ -23677,6 +24164,7 @@
         "HELLIA": 1746555882,
         "PatriciaA": 1752027049,
         "Diogox51": 1705271357,
+        "BernadetteMillefeuille": 1758130074,
         "Audr3y": 1726085009,
         "CatherineLF": 1705289444,
         "Aliciagrandpierre": 1746658883,
@@ -23687,7 +24175,7 @@
     "ContrePropagande": {
       "index": 11549,
       "owner_key": "3oWZ9xe4Gpx765dfZU83W76EGvLLZtUBdKtmT5VUwJEX",
-      "balance": 1452923,
+      "balance": 1597129,
       "membership_expire_on": 1706898583,
       "next_cert_issuable_on": 1689482090,
       "certs_received": {
@@ -23698,6 +24186,7 @@
         "Maaude09": 1751618453,
         "Chanchan": 1739141670,
         "Summerinfinity": 1750986910,
+        "Fredlassave": 1759005342,
         "Peesse": 1738530549,
         "Mmemonica": 1742257932,
         "DoLar": 1753332520
@@ -23706,7 +24195,7 @@
     "AlbaMur": {
       "index": 11634,
       "owner_key": "3oZBbjkV76LhvVTDGnG8MEXxtc3n2gzUdXLVRwUByJKL",
-      "balance": 293131,
+      "balance": 332817,
       "membership_expire_on": 1708098363,
       "next_cert_issuable_on": 1689584872,
       "certs_received": {
@@ -23724,13 +24213,14 @@
     "pidu": {
       "index": 3248,
       "owner_key": "3odUUxmA2CgdZmD1JguKShFzEkpDgrskZwmFeSXnJTtk",
-      "balance": 818589,
+      "balance": 858275,
       "membership_expire_on": 1717089942,
       "next_cert_issuable_on": 1686391245,
       "certs_received": {
         "Luc": 1747077288,
         "ELECTRON": 1702714757,
         "Coidzikow": 1698211748,
+        "SOLEIA": 1756714528,
         "jeanlucdonnadieu": 1748597436,
         "Cheyenne": 1749416215
       }
@@ -23743,10 +24233,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "ArthurM": {
+      "index": 13725,
+      "owner_key": "3oh3nNMQauA4Aq4KGTAnarpJUBiDWZBLYPRm9J7YBvqJ",
+      "balance": 11890,
+      "membership_expire_on": 1727275589,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "AnnC57": 1759271767,
+        "Nadia": 1759653174,
+        "JulieEvrats": 1759274069,
+        "NicoleNissen": 1759382808,
+        "Colvert": 1759383284,
+        "MyrDek": 1759272150
+      }
+    },
     "HeleneL": {
       "index": 8128,
       "owner_key": "3oi2CPDRRiAivZWuK7frH5GhkzniDap2y2jbjYUztR5e",
-      "balance": 866613,
+      "balance": 896299,
       "membership_expire_on": 1713617222,
       "next_cert_issuable_on": 1688742659,
       "certs_received": {
@@ -23762,7 +24267,7 @@
     "Lolo89": {
       "index": 9272,
       "owner_key": "3ooNBUgKU4SgtHix1Dq1pmhjcxNVaZUEibd6rhMNR49D",
-      "balance": 398860,
+      "balance": 438546,
       "membership_expire_on": 1721086225,
       "next_cert_issuable_on": 1662258867,
       "certs_received": {
@@ -23778,9 +24283,9 @@
     "carmenchu_almacristal": {
       "index": 9939,
       "owner_key": "3ov8FnPX7dSBCGnhASRSTshp5Q2vGDwDAyatzfg27XyL",
-      "balance": 15124,
+      "balance": 118510,
       "membership_expire_on": 1723811895,
-      "next_cert_issuable_on": 1687357288,
+      "next_cert_issuable_on": 1696051510,
       "certs_received": {
         "kapis": 1748117970,
         "ArtesaniaAna": 1737080041,
@@ -23791,6 +24296,7 @@
         "AngelMacksimilia": 1744697237,
         "EstefaniaLopez": 1742930420,
         "Isabella": 1728642837,
+        "botera75": 1758074939,
         "elmau": 1749904836,
         "Albertocc": 1730482538,
         "Gamaliel": 1747900661,
@@ -23808,7 +24314,7 @@
     "Savilou31-joelle": {
       "index": 7380,
       "owner_key": "3p6cfiqABN41HwybSBhJaTBiMeWdWcwVbqrH9gchiMZf",
-      "balance": 481612,
+      "balance": 521298,
       "membership_expire_on": 1708700224,
       "next_cert_issuable_on": 1667276587,
       "certs_received": {
@@ -23847,7 +24353,7 @@
     "Pacaba": {
       "index": 10960,
       "owner_key": "3pQXCbMWnXkoeVLxJaJLAU2Jrztic3HyoNoCAGBpyiyH",
-      "balance": 268435,
+      "balance": 308121,
       "membership_expire_on": 1700350353,
       "next_cert_issuable_on": 1686225987,
       "certs_received": {
@@ -23861,8 +24367,8 @@
     "L231": {
       "index": 9866,
       "owner_key": "3pWnjkSEgqSqqiGFSDDBkJnp4n2W2GxdTb1esMDpXXfv",
-      "balance": 299763,
-      "membership_expire_on": 1696424962,
+      "balance": 336215,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1686711514,
       "certs_received": {
         "Hestia": 1728091584,
@@ -23877,9 +24383,9 @@
     "BrunoB974": {
       "index": 4596,
       "owner_key": "3pbzifQjNafhGwezpBiA7GmTRkuLKLJEeh5V2PFMBmto",
-      "balance": 879572,
+      "balance": 919258,
       "membership_expire_on": 1701081480,
-      "next_cert_issuable_on": 1671592358,
+      "next_cert_issuable_on": 1694678713,
       "certs_received": {
         "Zoul": 1710565426,
         "ClaireM97410": 1732639318,
@@ -23888,6 +24394,7 @@
         "Shanti": 1740532584,
         "Florence97410": 1720218952,
         "Corinne974": 1717517490,
+        "SophieCD974": 1757718094,
         "Jaher974": 1710073070,
         "Flo05": 1756257087,
         "Myriam97410": 1732681335,
@@ -23898,9 +24405,9 @@
     "RapMen90": {
       "index": 12204,
       "owner_key": "3phyKppAjRZHBxGbNFfiQGErTQmnk5gkNCFJMzN1YP1e",
-      "balance": 161368,
+      "balance": 201054,
       "membership_expire_on": 1710757181,
-      "next_cert_issuable_on": 1693378414,
+      "next_cert_issuable_on": 1694234480,
       "certs_received": {
         "eric70": 1742775320,
         "Glycine": 1742758808,
@@ -23913,7 +24420,7 @@
       "index": 9470,
       "owner_key": "3pi6doM7jtu6EpLfzycMsrUNbihnc6Y3F7cN6gHvnUEX",
       "balance": 404056,
-      "membership_expire_on": 1693533812,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1663001509,
       "certs_received": {
         "Ruby": 1725240777,
@@ -23956,7 +24463,7 @@
       "owner_key": "3pxhJEoADbsEZzGeXYKXp3U4N4t8W4ht2ryNXMMZBfiq",
       "balance": 871621,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631273018,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "seb": 1697566560
       }
@@ -23979,7 +24486,7 @@
     "BenoitClemenceau": {
       "index": 11473,
       "owner_key": "3q6YxR4VxhAD27pNep9YgACGEz42DBBm66uRoqjhZM8y",
-      "balance": 221739,
+      "balance": 261425,
       "membership_expire_on": 1706913836,
       "next_cert_issuable_on": 1676425972,
       "certs_received": {
@@ -24024,7 +24531,7 @@
     "Jethro": {
       "index": 5999,
       "owner_key": "3qGFmF3gV9fHXmYKXFGMm3mTFp7AD4v8eESq7h6Tf4kH",
-      "balance": 590371,
+      "balance": 630057,
       "membership_expire_on": 1705156076,
       "next_cert_issuable_on": 1654011406,
       "certs_received": {
@@ -24042,7 +24549,7 @@
     "Liam73": {
       "index": 8291,
       "owner_key": "3qLGDPyPPKzbFwdVP3pfqh1EH54L6nzcZtEge4QbDxUH",
-      "balance": 390493,
+      "balance": 431179,
       "membership_expire_on": 1712015901,
       "next_cert_issuable_on": 1682606453,
       "certs_received": {
@@ -24059,7 +24566,7 @@
     "Marc135": {
       "index": 2893,
       "owner_key": "3qdHKawDEGsvRMfhPT64qj6NKaCzNywQawhsxsDbDi2q",
-      "balance": 883211,
+      "balance": 922897,
       "membership_expire_on": 1703960950,
       "next_cert_issuable_on": 1685284867,
       "certs_received": {
@@ -24104,7 +24611,7 @@
     "Jeey": {
       "index": 3212,
       "owner_key": "3qyesTqvjAXQ98eCaQLutgXws3vXD6giydWkuSMTi1Yi",
-      "balance": 1105986,
+      "balance": 1145672,
       "membership_expire_on": 1700844579,
       "next_cert_issuable_on": 1661303944,
       "certs_received": {
@@ -24142,7 +24649,7 @@
     "ChristelleTh": {
       "index": 8971,
       "owner_key": "3r4QoCzvQzXSzxPSe9pyaeDKZXPbFnHhj4J9T28tHj62",
-      "balance": 429890,
+      "balance": 469576,
       "membership_expire_on": 1719250740,
       "next_cert_issuable_on": 1680253871,
       "certs_received": {
@@ -24157,7 +24664,7 @@
     "Vicon2": {
       "index": 9618,
       "owner_key": "3r4W8XYURShLWNGKkbN7vA82XV3at85BXgADfvJ5sqPF",
-      "balance": 180376,
+      "balance": 147262,
       "membership_expire_on": 1721559727,
       "next_cert_issuable_on": 1681813477,
       "certs_received": {
@@ -24194,9 +24701,9 @@
     "Armelluna": {
       "index": 8999,
       "owner_key": "3rJdLfNZfwPHnWtCvNu9HKZRGG4X6GZzTVhR7pRjPQ3P",
-      "balance": 358288,
+      "balance": 422974,
       "membership_expire_on": 1716991416,
-      "next_cert_issuable_on": 1686035195,
+      "next_cert_issuable_on": 1695032078,
       "certs_received": {
         "Tot16": 1750178671,
         "DaniailesA": 1719155685,
@@ -24216,6 +24723,22 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "nicolasd": {
+      "index": 13482,
+      "owner_key": "3rVjCPev4JKoDhMX9EE9kL2fYbVjiYsCTrqjCewL4jVe",
+      "balance": 37551,
+      "membership_expire_on": 1724200595,
+      "next_cert_issuable_on": 1696063323,
+      "certs_received": {
+        "AN-gela": 1756533887,
+        "pastachutta1964": 1756196636,
+        "DomMembre": 1756437689,
+        "Myosotis": 1756322750,
+        "KIAWE": 1756451881,
+        "Antares13": 1756196636,
+        "NanouchkaM": 1756241622
+      }
+    },
     "renardisa": {
       "index": 418,
       "owner_key": "3rWvrKwJsQ7fktvkY46K1twsFBgngXUQEMWqn2ryjiVX",
@@ -24235,7 +24758,7 @@
     "Soan81": {
       "index": 13237,
       "owner_key": "3rYWeNbhiqZP4Kkt9TyKCpr5LE6ySb9LHVpadW5UfMdC",
-      "balance": 39516,
+      "balance": 79202,
       "membership_expire_on": 1717030084,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -24257,7 +24780,7 @@
     "nlebrozec": {
       "index": 6394,
       "owner_key": "3rfnSfwsSW25aPwEyZrB1afyvDQkRgzVv4qPr8riYe29",
-      "balance": 492834,
+      "balance": 532520,
       "membership_expire_on": 1716400924,
       "next_cert_issuable_on": 1656031462,
       "certs_received": {
@@ -24271,7 +24794,7 @@
     "Florence76": {
       "index": 13370,
       "owner_key": "3rhEE4f29hyG8vqENrpPhSBoEZPLPPjRN4tzjgg9iw1t",
-      "balance": 18156,
+      "balance": 57842,
       "membership_expire_on": 1722947346,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -24310,24 +24833,29 @@
     "HelloSunshine": {
       "index": 5351,
       "owner_key": "3ru9TJwmQ5qNic58H8wXg7a3tujGm7jWFabwyEMrLeQa",
-      "balance": 665197,
+      "balance": 704983,
       "membership_expire_on": 1710548550,
-      "next_cert_issuable_on": 1693340105,
+      "next_cert_issuable_on": 1696230094,
       "certs_received": {
         "AnnaM": 1710734591,
         "Carole26": 1708550586,
         "Philippe26": 1729358528,
+        "Cristal38": 1756748679,
         "Takakra": 1756246489,
+        "Sofiachante": 1757203000,
         "veronaturo73": 1744067391,
-        "Aveline": 1693586105,
         "TristanG1": 1718487053,
+        "catmac": 1756682931,
+        "Walter2000": 1756929246,
         "SylvainGabarrou": 1697406044,
         "HectorTotor": 1725315992,
         "Michellecuyer26": 1710480061,
-        "JeDanse": 1696615602,
+        "JeDanse": 1757204793,
+        "JeffApa2A": 1756764711,
         "lumi": 1725248423,
         "Havanafleur": 1754939866,
         "OrAnge": 1721974861,
+        "Thiery": 1756739469,
         "Skarlett": 1721871157,
         "MoniqueChaplie": 1717045686,
         "Mashpro": 1754551050,
@@ -24337,10 +24865,11 @@
     "Sabine38": {
       "index": 8689,
       "owner_key": "3rwRUSTPunjMp1aBo9ZETH954Ns1QqYXkYJk5gKYVne1",
-      "balance": 291166,
+      "balance": 265852,
       "membership_expire_on": 1720380961,
-      "next_cert_issuable_on": 1663247732,
+      "next_cert_issuable_on": 1696213694,
       "certs_received": {
+        "JonathanT": 1758062387,
         "Yume": 1719457230,
         "JusteAlex": 1719443240,
         "Mavag": 1719456298,
@@ -24351,9 +24880,9 @@
     "PatrickRO": {
       "index": 12071,
       "owner_key": "3rzdytcVALWcbeWqC9wEk2ipuSoZnEU9En1LL5aSZHDo",
-      "balance": 162084,
+      "balance": 201770,
       "membership_expire_on": 1708622941,
-      "next_cert_issuable_on": 1683535341,
+      "next_cert_issuable_on": 1692896437,
       "certs_received": {
         "GeraldineLeprivier": 1740185479,
         "Gentil09": 1742496320,
@@ -24366,7 +24895,7 @@
     "ColetteM": {
       "index": 12043,
       "owner_key": "3s7wD56BN4P7wAtZRtNnJEm3GHQTuqncUQsuDgeSNx2Q",
-      "balance": 178202,
+      "balance": 217888,
       "membership_expire_on": 1710763500,
       "next_cert_issuable_on": 1684237268,
       "certs_received": {
@@ -24380,9 +24909,9 @@
     "Yesyes": {
       "index": 2259,
       "owner_key": "3sD9scCPbNMvb1Fu9Xs5iKykb9ddG67wdJacHPAeQrbT",
-      "balance": 1103841,
+      "balance": 1035727,
       "membership_expire_on": 1705341958,
-      "next_cert_issuable_on": 1673862102,
+      "next_cert_issuable_on": 1695061223,
       "certs_received": {
         "ClaireMonde": 1698300395,
         "BorisBernard": 1706116621,
@@ -24393,10 +24922,9 @@
         "JerryBB": 1723186941,
         "EstefaniaLopez": 1721613693,
         "SabineIsambert": 1716403080,
-        "GeraldineGarrigues": 1696372540,
+        "GeraldineGarrigues": 1758303263,
         "KokLine": 1726117520,
         "Crealine": 1697524058,
-        "Celuiquicrelamehaute": 1696717202,
         "daufun": 1699735950,
         "Koldo": 1722268546,
         "LoreParodi": 1736906039,
@@ -24408,7 +24936,7 @@
     "Jao": {
       "index": 12012,
       "owner_key": "3sH5f1BZcb1y6Bvb9TwwJGGps8wJmbv7cWHk8qNn34Ub",
-      "balance": 179379,
+      "balance": 219065,
       "membership_expire_on": 1710509760,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -24435,6 +24963,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "SecretdeJais": {
+      "index": 13493,
+      "owner_key": "3sMcF8z6BP223ad6zvToeCuHTbPJDS5acnWhTBJ2PDHj",
+      "balance": 26492,
+      "membership_expire_on": 1721823659,
+      "next_cert_issuable_on": 1696010541,
+      "certs_received": {
+        "Salsa33150": 1756682398,
+        "Dieudo": 1756670294,
+        "NathalieDard": 1756670623,
+        "Tango8943": 1756682398,
+        "MargueriteD33": 1753475752
+      }
+    },
     "MarionBG": {
       "index": 1306,
       "owner_key": "3sRDqK7JbF6bR3bfmRuHriLQvidwDCt61PkRt8YU8H3o",
@@ -24452,9 +24994,9 @@
     "AnaMery": {
       "index": 9889,
       "owner_key": "3sXGyh3Gg5PeF4rdbwrgKYmZdVR8A9zc1nQ4UjxCSQZQ",
-      "balance": 233224,
+      "balance": 182010,
       "membership_expire_on": 1724979560,
-      "next_cert_issuable_on": 1677773446,
+      "next_cert_issuable_on": 1693845092,
       "certs_received": {
         "Enara": 1739078713,
         "SanTuCa-REMyL": 1734634947,
@@ -24466,6 +25008,7 @@
         "JuanraChocolate": 1740595750,
         "Didiridi": 1739260603,
         "Jokin": 1746197406,
+        "MaEstherG1": 1756849350,
         "SeedFamily": 1736822331,
         "Dayana": 1728447336,
         "MaiteLeke": 1728446769,
@@ -24476,17 +25019,20 @@
     "Judit137": {
       "index": 11326,
       "owner_key": "3sYA4sRcdFhXT9TuddmgetcEBYAk1n7BGg1azaDCSQNf",
-      "balance": 209547,
+      "balance": 249233,
       "membership_expire_on": 1705012329,
-      "next_cert_issuable_on": 1692866459,
+      "next_cert_issuable_on": 1696443029,
       "certs_received": {
         "Ferpires": 1752053668,
+        "FatimaDonoso": 1757920591,
         "RitApolinario": 1744482702,
         "ManelG": 1737164515,
         "GuilhermeLopes": 1749685992,
         "PatriciaDoVale": 1747204846,
         "AureaLopes": 1749685992,
         "bareabrothers": 1749945324,
+        "Yana": 1757662064,
+        "artenomar": 1757747150,
         "InesHappyFamily": 1741247789,
         "EleonoraS": 1737164515,
         "Nilia": 1740647543,
@@ -24495,17 +25041,21 @@
         "lurdespinho": 1752520357,
         "NevFreeman": 1741849463,
         "HelenaMatos": 1749192342,
+        "otto": 1757662064,
         "Yohan": 1747294504,
         "MiguelHappyFamily": 1736989183,
         "RafaMalheiro": 1752097440,
+        "Rafael": 1757662064,
         "MarleneRibeiro": 1743874098,
         "SofiaDJ": 1755322021,
+        "catarinajunas": 1757709418,
         "pedroponte": 1745516861,
         "SaoSampaio": 1752225209,
         "Rahhui": 1748892598,
         "JorgeDraven": 1736912622,
         "JoaoLestro": 1747625027,
         "DavidJorge": 1750545514,
+        "PenaBranca": 1757662064,
         "ElisabeteMartins": 1736912622,
         "Kian": 1743056711,
         "ManuelSoares": 1752309248
@@ -24514,8 +25064,8 @@
     "Maelia38": {
       "index": 10221,
       "owner_key": "3sbkRYju2gWSjMpNg41vVEcQ3yQDEpS54umauhhiiwC3",
-      "balance": 317049,
-      "membership_expire_on": 1698500730,
+      "balance": 356735,
+      "membership_expire_on": 1727610979,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Mike": 1730403093,
@@ -24528,29 +25078,22 @@
     "Karigera": {
       "index": 5694,
       "owner_key": "3sfKUKztCrDjnmMA2G2335fAFcfnZLb33HuAiHuvfQLM",
-      "balance": 1017507,
-      "membership_expire_on": 1701156791,
+      "balance": 1038867,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1693149559,
       "certs_received": {
-        "Laulau": 1695262716,
-        "JeePofMars": 1695233143,
-        "CookieLilas": 1695248830,
         "Glycine13": 1756250085,
-        "Debora": 1708968047,
-        "bike13500": 1695279494,
-        "tatinetteb": 1695232655
+        "Debora": 1708968047
       }
     },
     "Puce": {
       "index": 2085,
       "owner_key": "3sk87bjQmvpjEPCsVjby37qwdTtNMd8xQoqKeDL2Hz5k",
-      "balance": 1628201,
-      "membership_expire_on": 1703884981,
+      "balance": 1674907,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Fleur-du-renouveau": 1697336148,
-        "venusienne": 1695918096,
-        "Florence": 1695861019,
+        "Fleur-du-renouveau": 1758909463,
         "GillesLangellotti": 1696869007,
         "Celinette": 1730433210
       }
@@ -24563,14 +25106,13 @@
       "next_cert_issuable_on": 1645340503,
       "certs_received": {
         "Mym": 1707466563,
-        "Margaux": 1694150198,
         "CelesteGuiral": 1709753678
       }
     },
     "Sylvie": {
       "index": 5481,
       "owner_key": "3sySmAyyq3uYHFqHa8XVgTKyFkS3EgN1kEwFei6Z21g8",
-      "balance": 737278,
+      "balance": 776964,
       "membership_expire_on": 1722034825,
       "next_cert_issuable_on": 1690554398,
       "certs_received": {
@@ -24599,12 +25141,15 @@
     "Gerardo": {
       "index": 12732,
       "owner_key": "3tBWySvyNwyHpmWkL575SxEHsfCQf8e7RFJBiyuo3vZU",
-      "balance": 150830,
+      "balance": 162976,
       "membership_expire_on": 1716334407,
-      "next_cert_issuable_on": 1687969849,
+      "next_cert_issuable_on": 1695536793,
       "certs_received": {
+        "Miguelprinter": 1758090262,
         "DadaPlanetaLibre": 1748116078,
         "FSuarez108": 1748035343,
+        "luismo": 1758833397,
+        "Pit": 1758146490,
         "quiquecaballero": 1748068912,
         "Ardan1977": 1747992014,
         "sonialarraz": 1748030391,
@@ -24617,7 +25162,7 @@
     "SistaKam": {
       "index": 9930,
       "owner_key": "3tDzRD6789nqga3gSdNyVoiDUeB9NvfzfGD3Xs4AFLp6",
-      "balance": 343406,
+      "balance": 383092,
       "membership_expire_on": 1697037450,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -24646,9 +25191,9 @@
     "anapatapouf": {
       "index": 11701,
       "owner_key": "3tRznM4USGxvwnqY1dXQ8HCRW7dZ47FfJfs6yhc6WwCB",
-      "balance": 210736,
+      "balance": 248422,
       "membership_expire_on": 1703560841,
-      "next_cert_issuable_on": 1690910870,
+      "next_cert_issuable_on": 1696323170,
       "certs_received": {
         "Temarante": 1740097882,
         "Palladium13": 1740092275,
@@ -24657,6 +25202,7 @@
         "PatriciaDoVale": 1747204362,
         "AureaLopes": 1752173520,
         "Rui-Famadoliz": 1747799140,
+        "artenomar": 1757747150,
         "InesHappyFamily": 1752173520,
         "Nandoporto": 1752015064,
         "lurdespinho": 1741118591,
@@ -24670,6 +25216,7 @@
         "JorgeDraven": 1750241199,
         "JoaoLestro": 1752525697,
         "LeaLorion": 1740074410,
+        "AnaIsis7animais": 1758267975,
         "CeriseCunegonde": 1740211811,
         "RosaAlvesPinho": 1741890041,
         "Fa5": 1740039825,
@@ -24681,30 +25228,26 @@
     "MacBoi": {
       "index": 5714,
       "owner_key": "3tTo6Nk55PavZq1U1pSvtg8xMnAvFg4owkfXcVgHjzm1",
-      "balance": 519591,
+      "balance": 559277,
       "membership_expire_on": 1724759773,
-      "next_cert_issuable_on": 1674788125,
+      "next_cert_issuable_on": 1694162037,
       "certs_received": {
         "SandrineMala": 1714371764,
-        "Come": 1694655993,
         "BrigitteGabaud": 1709927466,
         "Paciencia19": 1713848956,
+        "Sofiachante": 1758400002,
         "TerreDePleineConscience": 1712703377,
-        "SOROWE": 1699812428,
+        "SOROWE": 1757204793,
         "Tanguera": 1733526558,
         "Pereduchene": 1709408822,
-        "marieange": 1693721895,
         "OlivierditTiti": 1717149130,
         "chrisbaud": 1714342657,
         "Marcolariegeois": 1714871533,
         "Melusine": 1709775659,
         "Sureau": 1708660357,
-        "JeDanse": 1694767407,
-        "PERSIFLEUR": 1693692533,
+        "JeDanse": 1757204793,
         "Babouche00": 1733292832,
         "Lilou05": 1735240897,
-        "ChoraMadera": 1693761553,
-        "Anne05000": 1693857144,
         "Metta": 1702865336,
         "Bruno28": 1738002012
       }
@@ -24712,8 +25255,8 @@
     "Sylvae": {
       "index": 6232,
       "owner_key": "3tWeNmDAq3duL6eoNijEXKWMszjPPPdpKeYiKagJZPW3",
-      "balance": 637467,
-      "membership_expire_on": 1696445317,
+      "balance": 673919,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1677410979,
       "certs_received": {
         "Lordsagitere": 1700897761,
@@ -24730,9 +25273,9 @@
     "Jamorie": {
       "index": 12598,
       "owner_key": "3tspsru3nTUkHLJhehi6BT9EPKVy7GUNJMEzJFUACAU9",
-      "balance": 146852,
+      "balance": 174538,
       "membership_expire_on": 1715023065,
-      "next_cert_issuable_on": 1684586717,
+      "next_cert_issuable_on": 1694000960,
       "certs_received": {
         "colinuxCanut2": 1751873367,
         "lucba": 1746579878,
@@ -24759,7 +25302,7 @@
     "Ovejaenrebelion": {
       "index": 10693,
       "owner_key": "3tzySNpuUwNLN7sJBU55X2vSWyBH9JhqqDB9AgAc13La",
-      "balance": 606337,
+      "balance": 596023,
       "membership_expire_on": 1698506552,
       "next_cert_issuable_on": 1680235340,
       "certs_received": {
@@ -24779,7 +25322,7 @@
     "Papidudu84": {
       "index": 10829,
       "owner_key": "3u98gHcKiz9mjHx61EQgXUXp3B4rFcJCtqHFdiP74G5D",
-      "balance": 157866,
+      "balance": 197552,
       "membership_expire_on": 1701991946,
       "next_cert_issuable_on": 1671840961,
       "certs_received": {
@@ -24793,9 +25336,9 @@
     "SandyMenegazzi": {
       "index": 10560,
       "owner_key": "3uDgxv5pAJezGwbcjL9NsvBiMA1eHmFd6v5YtY3vVfYL",
-      "balance": 310700,
+      "balance": 350386,
       "membership_expire_on": 1710428836,
-      "next_cert_issuable_on": 1692437040,
+      "next_cert_issuable_on": 1696747177,
       "certs_received": {
         "AriahNarnia": 1732735314,
         "SionaJJJ": 1732564895,
@@ -24821,7 +25364,7 @@
     "Danosma": {
       "index": 7877,
       "owner_key": "3uFuEx6WVVxdLAP4YF6FN76QB4GQhEDfJHVCXKYznTCo",
-      "balance": 453374,
+      "balance": 475060,
       "membership_expire_on": 1712053820,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -24865,7 +25408,7 @@
     "Maryannick": {
       "index": 11430,
       "owner_key": "3uQEWZMwZf5YoPMYngR6vWqTCPwutLffDGgFoAB6M1n1",
-      "balance": 219336,
+      "balance": 259022,
       "membership_expire_on": 1706225638,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -24880,7 +25423,7 @@
     "Christelle51": {
       "index": 11984,
       "owner_key": "3uS9636v6NhQkKjkBypXDiXZMMgx34zg8aouAMVnzAAq",
-      "balance": 334997,
+      "balance": 372683,
       "membership_expire_on": 1708122283,
       "next_cert_issuable_on": 1683619487,
       "certs_received": {
@@ -24924,7 +25467,7 @@
     "Stephaneon": {
       "index": 7847,
       "owner_key": "3ujJoUYm7ebepoNZwMM2ysEfzvnBgtEYfSAghXnLBuTP",
-      "balance": 431902,
+      "balance": 471588,
       "membership_expire_on": 1714149112,
       "next_cert_issuable_on": 1670398569,
       "certs_received": {
@@ -24940,13 +25483,14 @@
     "Oietortue": {
       "index": 10513,
       "owner_key": "3uk7Z9SqiBtMVzTZcWMcq7xcZkNUBuEke77tuE4g1Pz5",
-      "balance": 301928,
-      "membership_expire_on": 1700358797,
-      "next_cert_issuable_on": 1687414331,
+      "balance": 310114,
+      "membership_expire_on": 1727714167,
+      "next_cert_issuable_on": 1696231660,
       "certs_received": {
         "vlareynie26": 1732487392,
         "Francou42": 1744397540,
         "ClauTie26": 1732496182,
+        "pat26": 1759334996,
         "Hera": 1731917515,
         "VincentMercier": 1731988986,
         "LORENZO2A": 1732380863
@@ -24987,13 +25531,15 @@
     "PatriciaDoVale": {
       "index": 12612,
       "owner_key": "3uotZuSnBgGkaK6d79XhKWyAqzNtnjxsW42scoU9k1jH",
-      "balance": 122616,
+      "balance": 162302,
       "membership_expire_on": 1715020941,
-      "next_cert_issuable_on": 1693185787,
+      "next_cert_issuable_on": 1696245446,
       "certs_received": {
         "Judit137": 1746936005,
         "anapatapouf": 1746701396,
+        "artenomar": 1756360185,
         "lurdespinho": 1746582207,
+        "catarinajunas": 1757709026,
         "HViegas": 1746727217,
         "pedroponte": 1751766204,
         "JorgeDraven": 1754701030,
@@ -25006,7 +25552,7 @@
     "Alex_decrecimiento": {
       "index": 9984,
       "owner_key": "3uxo37Y6PzXinaGrBa2rkgArrFeVY9apcyPiF7XtNX3R",
-      "balance": 322344,
+      "balance": 362030,
       "membership_expire_on": 1697598388,
       "next_cert_issuable_on": 1668007570,
       "certs_received": {
@@ -25023,7 +25569,7 @@
     "Zakaria007": {
       "index": 10983,
       "owner_key": "3v1PSUUGUkHtLRWiFS4XNeVFcG6932cNGpDBNDmmfHxy",
-      "balance": 268276,
+      "balance": 307962,
       "membership_expire_on": 1703376160,
       "next_cert_issuable_on": 1684839636,
       "certs_received": {
@@ -25039,9 +25585,9 @@
     "Xisca": {
       "index": 4628,
       "owner_key": "3v63gshw3jtAfFEqqzGMiWkb2rY6gJFwCTcqpBUSGBrp",
-      "balance": 183793,
+      "balance": 213479,
       "membership_expire_on": 1702077862,
-      "next_cert_issuable_on": 1688734170,
+      "next_cert_issuable_on": 1695311259,
       "certs_received": {
         "Aatma": 1740858246,
         "CarmeCastineira": 1741583424,
@@ -25065,7 +25611,7 @@
     "ISABELLEDR": {
       "index": 6429,
       "owner_key": "3v675KvC3oouqVevKmZSuQhHPFaWTeNuLE8fV5JsN4s8",
-      "balance": 758669,
+      "balance": 798355,
       "membership_expire_on": 1700316142,
       "next_cert_issuable_on": 1687359832,
       "certs_received": {
@@ -25087,11 +25633,10 @@
     "Solesan": {
       "index": 5811,
       "owner_key": "3v6zQC4QhJsq4owfFyJFx9D9YwTagJUb8WcWzXnQJxyk",
-      "balance": 928806,
-      "membership_expire_on": 1693766945,
+      "balance": 917614,
+      "membership_expire_on": 1725196100,
       "next_cert_issuable_on": 1687419651,
       "certs_received": {
-        "olione": 1694571345,
         "DominiqueCuvelier": 1702102002,
         "FabienneM": 1752029685,
         "LindaT": 1746645490,
@@ -25100,13 +25645,9 @@
         "Fabi26": 1700981389,
         "ChatChris": 1731307161,
         "ChristineRenier": 1730747168,
-        "Andre208": 1694572194,
         "RutenRolf": 1746587600,
-        "Calakendi": 1694906331,
         "Icejona": 1719302080,
-        "Dionysos": 1706693478,
-        "GeneVieve": 1695614764,
-        "Patoun": 1695114169
+        "Dionysos": 1706693478
       }
     },
     "ArmelleM": {
@@ -25120,15 +25661,18 @@
     "pastachutta1964": {
       "index": 12122,
       "owner_key": "3vEwdf6TQqmecCiCQaZ2GSmsEdBnUaNKUEHCSVvE6zaS",
-      "balance": 99034,
+      "balance": 228724,
       "membership_expire_on": 1711204125,
-      "next_cert_issuable_on": 1692282776,
+      "next_cert_issuable_on": 1696583356,
       "certs_received": {
         "DomMembre": 1742949531,
         "Vivakvo": 1753749116,
         "Chrisma1957": 1753240551,
+        "Husam": 1756172521,
         "DomVe": 1742762157,
+        "Miguela": 1757976494,
         "aufildeLAU": 1742878585,
+        "MaryBricteux": 1756633969,
         "Barbabulle73": 1742918977,
         "Candy2000": 1754429781,
         "Hagakure88": 1742933484,
@@ -25140,7 +25684,7 @@
     "Wiwi": {
       "index": 4124,
       "owner_key": "3vMYy6kE88PMiGHGuoh71tgaA2SVJADs8nQB1kejbfZ8",
-      "balance": 1041593,
+      "balance": 1081279,
       "membership_expire_on": 1720014722,
       "next_cert_issuable_on": 1681829974,
       "certs_received": {
@@ -25158,12 +25702,10 @@
     "Aatma": {
       "index": 4421,
       "owner_key": "3vQc4ypjbd9772yd7fCKrF5m5y811Agu8xZY7f6dQUcF",
-      "balance": 161863,
-      "membership_expire_on": 1694693001,
+      "balance": 176816,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1682830413,
       "certs_received": {
-        "Cordeliaze": 1695972497,
-        "carmela": 1695988697,
         "Xisca": 1738715335,
         "BlancaFlow": 1701577656,
         "SandraFernandes": 1698605612,
@@ -25174,7 +25716,6 @@
         "cocoloco": 1743643036,
         "GemaYogaThai": 1717823414,
         "Brahmaya": 1741835572,
-        "Lotus17": 1695070255,
         "marijou": 1714196206,
         "YOSOYLUZ": 1714032517,
         "JoseMariaDruidadianik": 1735466082,
@@ -25189,22 +25730,22 @@
         "Sandra72": 1713592261,
         "Thais": 1745098924,
         "BRAHMAMAYA": 1716981240,
-        "isaluz888": 1713373089,
-        "fania": 1696360582
+        "isaluz888": 1713373089
       }
     },
     "CeHunin": {
       "index": 8436,
       "owner_key": "3vVJRR5WLm1rRU5ytCTKjoWQQ7HMkYBESbse81Zqjofn",
-      "balance": 484382,
+      "balance": 543468,
       "membership_expire_on": 1713090668,
-      "next_cert_issuable_on": 1692793289,
+      "next_cert_issuable_on": 1696161745,
       "certs_received": {
         "Dj_raoult": 1717906183,
         "rockwater": 1718003753,
         "kuluk": 1717907093,
         "ElaineDana": 1717980187,
         "FRANLA": 1748302687,
+        "AnneMC": 1759205391,
         "WANMAR": 1747868239,
         "Mireilleplantessauvages": 1717946832,
         "Patoun": 1718008693
@@ -25221,9 +25762,9 @@
     "Javilion": {
       "index": 9806,
       "owner_key": "3vqxvtjJMi4damUHechpawHcuMrJgQYaGEhdpKyukyud",
-      "balance": 330587,
-      "membership_expire_on": 1695001630,
-      "next_cert_issuable_on": 1686798005,
+      "balance": 301137,
+      "membership_expire_on": 1726710375,
+      "next_cert_issuable_on": 1695312105,
       "certs_received": {
         "Manu_El": 1740119143,
         "celoman": 1726734177,
@@ -25234,6 +25775,7 @@
         "Quantumsinergy": 1731782844,
         "davidbp845": 1726629291,
         "Oarina": 1735748692,
+        "HectorG1": 1758344424,
         "MAIANA": 1731656127,
         "Amaraya": 1728005785,
         "AmaNacer": 1748731902,
@@ -25246,7 +25788,7 @@
     "TigerKim2410": {
       "index": 12494,
       "owner_key": "3vs3X354sFnnLBi2obQDNr65dRdMyPKYE1CowCiBUnQ8",
-      "balance": 622664,
+      "balance": 594850,
       "membership_expire_on": 1714422779,
       "next_cert_issuable_on": 1689242412,
       "certs_received": {
@@ -25286,7 +25828,7 @@
     "FloraMahy": {
       "index": 12056,
       "owner_key": "3vvys98FDVkEDMpL4Ga3KEDGtxcNvog6cn8evvxcJm52",
-      "balance": 185702,
+      "balance": 233388,
       "membership_expire_on": 1710166419,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -25300,8 +25842,8 @@
     "Christo": {
       "index": 4111,
       "owner_key": "3w3sFCVE4KXemLMouTEGcay8W1JxdiuqEHqVjCnMXVBe",
-      "balance": 645183,
-      "membership_expire_on": 1696508080,
+      "balance": 684869,
+      "membership_expire_on": 1726057324,
       "next_cert_issuable_on": 1657619173,
       "certs_received": {
         "LemanRuss": 1720737900,
@@ -25317,37 +25859,33 @@
     "celoman": {
       "index": 5773,
       "owner_key": "3w5X4iSkddbbZk47sqnRJg8Nzd7oTpEgukL5AkEs5r1q",
-      "balance": 251032,
+      "balance": 248394,
       "membership_expire_on": 1718657265,
-      "next_cert_issuable_on": 1685057729,
+      "next_cert_issuable_on": 1695224775,
       "certs_received": {
         "Manu_El": 1747985100,
-        "Cordeliaze": 1694588729,
-        "arbocenc": 1694588729,
+        "Cordeliaze": 1759075738,
         "Javilion": 1735258854,
         "Inma_HD_Bere": 1712189975,
         "Mokaita": 1726766059,
         "Jibuza": 1729485908,
-        "sheveck": 1694563562,
-        "timetale": 1694561522,
         "Lurtxu": 1705271084,
         "MaraVilla": 1747984012,
         "catalinons": 1726185095,
+        "EstherEstrella": 1758333548,
         "JuanCapitan": 1697151506,
-        "xavidp": 1694478913,
-        "Dixebral": 1694761896,
-        "Brahmaya": 1694767093,
         "PeterGreen": 1706068280,
+        "Nieves": 1757053122,
         "Wellno1": 1753207940,
         "Bianca": 1726420532,
-        "urkobein": 1694596223,
+        "Jkmbio": 1758301217,
         "SyBr": 1712820328
       }
     },
     "Pascal4207": {
       "index": 11362,
       "owner_key": "3w9Te8TpSg5yLLcwq8h23Rb6XMPn5eaGzkkXWRtc7o8K",
-      "balance": 303570,
+      "balance": 343256,
       "membership_expire_on": 1701958749,
       "next_cert_issuable_on": 1688030126,
       "certs_received": {
@@ -25373,7 +25911,7 @@
     "Armelle": {
       "index": 9006,
       "owner_key": "3wCrv4MmZC898Xjm7bikB4CCKatM2bv6quRjrhCmeRBA",
-      "balance": 410225,
+      "balance": 449911,
       "membership_expire_on": 1719614209,
       "next_cert_issuable_on": 1688659659,
       "certs_received": {
@@ -25404,7 +25942,7 @@
     "ElodieDoppagne": {
       "index": 285,
       "owner_key": "3wXjM3ApWwuMie3WMZEiu98oVWkaYGMBLJVHqEcDTMEn",
-      "balance": 1844591,
+      "balance": 1884277,
       "membership_expire_on": 1701438427,
       "next_cert_issuable_on": 1634435888,
       "certs_received": {
@@ -25426,14 +25964,14 @@
     "mamierabelle": {
       "index": 4929,
       "owner_key": "3weRBUc8CHUaRfVvbgDEJRs4vBcwDcS9JJnJLVzRnzSb",
-      "balance": 1854629,
+      "balance": 1894315,
       "membership_expire_on": 1708377550,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
         "Beasejour": 1745535483,
         "Patmos": 1713181509,
         "yannlefranco": 1703939407,
-        "Pascale72": 1698285364,
+        "Pascale72": 1759293539,
         "Vinny": 1703936583,
         "Lucharbour": 1718450139,
         "Belugah": 1703936583
@@ -25442,9 +25980,9 @@
     "jaya": {
       "index": 3544,
       "owner_key": "3weTTYy7H89MHNaxF9Fn7M295RavxNNJtqpfWC9L1fb7",
-      "balance": 971263,
-      "membership_expire_on": 1697031982,
-      "next_cert_issuable_on": 1689082905,
+      "balance": 1010949,
+      "membership_expire_on": 1725963792,
+      "next_cert_issuable_on": 1695792004,
       "certs_received": {
         "NicolasPepin": 1747585952,
         "Ninamaste": 1726286918,
@@ -25463,6 +26001,7 @@
         "Vicky": 1712367679,
         "ChaGaia5926": 1729907803,
         "Orquiepanda": 1725929517,
+        "Margaux776901": 1758846227,
         "chronophonix": 1756058271,
         "Tounette07": 1706999048,
         "OLDBLACK84": 1742531620
@@ -25494,7 +26033,7 @@
     "Inma_HD_Bere": {
       "index": 7499,
       "owner_key": "3xCwQNxEg8Urcmwr2w5uPQSyMG2WdDnXs1Ao9p7RYgVn",
-      "balance": 201768,
+      "balance": 241454,
       "membership_expire_on": 1710204924,
       "next_cert_issuable_on": 1671004578,
       "certs_received": {
@@ -25520,7 +26059,7 @@
     "moua": {
       "index": 10861,
       "owner_key": "3xMG49sNH5KH84bkGpSkoKfEpugVvx5HcjRU7EKsynUt",
-      "balance": 278089,
+      "balance": 317775,
       "membership_expire_on": 1700527271,
       "next_cert_issuable_on": 1677481778,
       "certs_received": {
@@ -25553,7 +26092,7 @@
       "owner_key": "3xTuyrEkBfXWyQ6o8gTf46HzqzLnBbDGYkL5oxcZzZ5U",
       "balance": 823119,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632189943,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Debo07": 1710310037,
         "Gregoire": 1705701174,
@@ -25563,7 +26102,7 @@
     "dieuhongloan": {
       "index": 7704,
       "owner_key": "3xUK1uFJHQirJDHWejC7izaU57KkUGkwvthdPDosgi49",
-      "balance": 497241,
+      "balance": 536927,
       "membership_expire_on": 1719063299,
       "next_cert_issuable_on": 1651396778,
       "certs_received": {
@@ -25578,9 +26117,9 @@
     "MaureenDoucet": {
       "index": 10743,
       "owner_key": "3xV7SBmhfzTukPXhQ74H4dkPtXvd3eBX3NtzgPpMqV7L",
-      "balance": 260220,
-      "membership_expire_on": 1701004488,
-      "next_cert_issuable_on": 1677161267,
+      "balance": 340906,
+      "membership_expire_on": 1727622657,
+      "next_cert_issuable_on": 1696140597,
       "certs_received": {
         "Andou": 1732591735,
         "Mamouchka": 1735429154,
@@ -25595,9 +26134,9 @@
     "BorisBernard": {
       "index": 6710,
       "owner_key": "3xXXjkrJ7D942QsmYE3u3GUx8XenZA3J3ocAtMcYPKQh",
-      "balance": 269817,
-      "membership_expire_on": 1700506680,
-      "next_cert_issuable_on": 1681826148,
+      "balance": 265503,
+      "membership_expire_on": 1727438456,
+      "next_cert_issuable_on": 1695973287,
       "certs_received": {
         "Eiutim": 1705614252,
         "Yesyes": 1705126281,
@@ -25617,14 +26156,13 @@
     "ZenaKhaldi": {
       "index": 3731,
       "owner_key": "3xh8DCRGXcsJkXLZrQw1Pe7YbzkfjXKT8Xq3fQrwm237",
-      "balance": 1053881,
+      "balance": 1093567,
       "membership_expire_on": 1708221887,
       "next_cert_issuable_on": 1657815333,
       "certs_received": {
         "FloLap": 1706407438,
         "Tchois": 1713923195,
         "Anitaantigone": 1708210588,
-        "pfouque": 1694760085,
         "EmiOne": 1710577382,
         "ClaireSMV": 1699160062
       }
@@ -25640,8 +26178,8 @@
     "ThaisSander": {
       "index": 2636,
       "owner_key": "3xj1C39sbBgmtRY2kExRA1Nv31CRYbfvdBqZnd1VNa72",
-      "balance": 881706,
-      "membership_expire_on": 1696626450,
+      "balance": 885392,
+      "membership_expire_on": 1728217906,
       "next_cert_issuable_on": 1691573783,
       "certs_received": {
         "Midorela": 1733894360,
@@ -25649,6 +26187,7 @@
         "Tibo0720": 1754327563,
         "MerlinMahy": 1696901714,
         "InesLaport": 1696816394,
+        "Gillo75": 1759807943,
         "ROVER5537": 1746846014,
         "Elle": 1729105668,
         "GeneBe": 1753550392,
@@ -25658,11 +26197,11 @@
     "marisol": {
       "index": 6513,
       "owner_key": "3xr3379WDc6TgHJMphuUKNJbYunTRCc462Tnr7aPxKkk",
-      "balance": 157427,
+      "balance": 197113,
       "membership_expire_on": 1699994179,
       "next_cert_issuable_on": 1659752665,
       "certs_received": {
-        "arbocenc": 1701215081,
+        "arbocenc": 1758983862,
         "mluque71": 1703211752,
         "sheveck": 1701600737,
         "lanuria": 1719435155,
@@ -25708,7 +26247,7 @@
     "Emelyne_Energies_de_Vies": {
       "index": 7381,
       "owner_key": "3xxtYHXDmDwnAi2YE8oLe6tWRHS6JBJjAhv5ATd3573w",
-      "balance": 510782,
+      "balance": 550468,
       "membership_expire_on": 1717872429,
       "next_cert_issuable_on": 1663895174,
       "certs_received": {
@@ -25751,7 +26290,7 @@
     "simonefrancesco": {
       "index": 10999,
       "owner_key": "3yGNozkYcdFLhqwcdWQnskQNQvEXGP59SEzC5qg4naje",
-      "balance": 285158,
+      "balance": 324844,
       "membership_expire_on": 1702224958,
       "next_cert_issuable_on": 1672140416,
       "certs_received": {
@@ -25765,7 +26304,7 @@
     "Lafeedeschants": {
       "index": 13400,
       "owner_key": "3yGTPsXgHtxZ9bLxRX7HxUhqc6A4eq1UcjWve2GkQKCG",
-      "balance": 11816,
+      "balance": 51502,
       "membership_expire_on": 1723408662,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -25779,9 +26318,9 @@
     "FRANCINE79": {
       "index": 6262,
       "owner_key": "3yTWzsFAHGD7vTACUVk8FwkbfuiZEgkX1hK7xHCeFFAj",
-      "balance": 424056,
-      "membership_expire_on": 1698407648,
-      "next_cert_issuable_on": 1677760927,
+      "balance": 298742,
+      "membership_expire_on": 1725321627,
+      "next_cert_issuable_on": 1694329216,
       "certs_received": {
         "CatherinePerma": 1701293417,
         "Unomasuno": 1726089375,
@@ -25799,7 +26338,7 @@
     "Ninon": {
       "index": 1923,
       "owner_key": "3yVUXMu2bevHgPdfBTHoPySLtosN8v1bdogcA9ZrL9Tm",
-      "balance": 1059164,
+      "balance": 1098850,
       "membership_expire_on": 1699380879,
       "next_cert_issuable_on": 1667998796,
       "certs_received": {
@@ -25815,7 +26354,7 @@
     "Priscilla31": {
       "index": 9784,
       "owner_key": "3yVY2Sx5jkPKaAciKDJcbq4wQadxGXqm4rchURgKsqPL",
-      "balance": 195204,
+      "balance": 234890,
       "membership_expire_on": 1722476448,
       "next_cert_issuable_on": 1679919225,
       "certs_received": {
@@ -25843,7 +26382,7 @@
     "SheShe": {
       "index": 11459,
       "owner_key": "3ya8jXRuB8CWBMcxTzPBdfnjNhqwSWa3oxQeeLPUTCdR",
-      "balance": 227384,
+      "balance": 267070,
       "membership_expire_on": 1706925132,
       "next_cert_issuable_on": 1684211311,
       "certs_received": {
@@ -25861,9 +26400,9 @@
     "Wynfyd": {
       "index": 10069,
       "owner_key": "3yfHdz7nmnknsvrX6Xi8KVdw1zaUUPG7sr3cGBHUtB3c",
-      "balance": 354769,
+      "balance": 339355,
       "membership_expire_on": 1697802684,
-      "next_cert_issuable_on": 1689241673,
+      "next_cert_issuable_on": 1696590191,
       "certs_received": {
         "LosMundosdeKrull": 1739145944,
         "Cordeliaze": 1740529014,
@@ -25904,6 +26443,7 @@
         "llecoeur": 1730778811,
         "Libertad": 1743288635,
         "PatriciaSalud": 1741641264,
+        "Lak": 1759284520,
         "lachispis": 1740969753
       }
     },
@@ -25924,16 +26464,20 @@
     "fabiolino": {
       "index": 3126,
       "owner_key": "3yhzUcgsjwYxWfqvutJHhgHS7pmh5ZbwQ7kE7vcq25hG",
-      "balance": 1015454,
+      "balance": 1055140,
       "membership_expire_on": 1723213564,
-      "next_cert_issuable_on": 1672669965,
+      "next_cert_issuable_on": 1694512767,
       "certs_received": {
         "JessyRipert": 1697136471,
+        "venusienne": 1758070023,
         "Marilyne": 1697099973,
         "dianto": 1707795261,
         "diletta": 1748761717,
+        "SoniaJimenezCook": 1757655350,
         "Stef": 1734831070,
         "PiNguyen": 1697091320,
+        "Kaya971Wolf": 1757192404,
+        "BenNature": 1758054239,
         "Christinejardin": 1697679735,
         "danieln": 1697317193
       }
@@ -25941,7 +26485,7 @@
     "SebastienCTL": {
       "index": 12037,
       "owner_key": "3ymRSMVqnsM2c3zcsztjBb681RpyxspLmEQFYKKBDy3C",
-      "balance": 204761,
+      "balance": 244447,
       "membership_expire_on": 1710187936,
       "next_cert_issuable_on": 1679275802,
       "certs_received": {
@@ -25977,7 +26521,7 @@
     "Etoiledesneiges": {
       "index": 6220,
       "owner_key": "3z18mcXGFuSKp5nTPjR1Q4ybMDUXw1P3Lg16kqh5AQxC",
-      "balance": 544534,
+      "balance": 584220,
       "membership_expire_on": 1709496036,
       "next_cert_issuable_on": 1678110756,
       "certs_received": {
@@ -26020,7 +26564,7 @@
     "PascaleC73": {
       "index": 8669,
       "owner_key": "3zH4GQEYpSGdMipTHro5dbVzvUp8vzyC6uh76tqi3QiC",
-      "balance": 478724,
+      "balance": 518410,
       "membership_expire_on": 1715961803,
       "next_cert_issuable_on": 1679380496,
       "certs_received": {
@@ -26037,24 +26581,21 @@
     "Trex": {
       "index": 5759,
       "owner_key": "3zR3t37whweEPX2KgAVLQuAWfQNANvSKjBPEJiwb5RuS",
-      "balance": 188910,
+      "balance": 228596,
       "membership_expire_on": 1709752705,
       "next_cert_issuable_on": 1688607217,
       "certs_received": {
-        "Mayhypocampe": 1696231986,
-        "Mayo": 1694125527,
-        "MoniQ": 1693559863,
         "Victoirecharlize": 1742881804,
         "LionelB": 1752645741,
         "Eloelodie": 1752892108,
-        "Celestecharlelie": 1752534631,
-        "yaetoile": 1696232449
+        "Steeve": 1756965803,
+        "Celestecharlelie": 1752534631
       }
     },
     "Lame90": {
       "index": 8856,
       "owner_key": "3zSjZ1fdAxUbJfxvVJis1fNGvZmu6e4pCRwceTzZEx62",
-      "balance": 440383,
+      "balance": 480069,
       "membership_expire_on": 1720012467,
       "next_cert_issuable_on": 1690442270,
       "certs_received": {
@@ -26068,7 +26609,7 @@
     "Carabistouille": {
       "index": 9792,
       "owner_key": "3zZWb6Xpg5745L2jbv5Y8VQtkRgWStAohv6U3nKYBPnm",
-      "balance": 237948,
+      "balance": 282634,
       "membership_expire_on": 1721955221,
       "next_cert_issuable_on": 1690636406,
       "certs_received": {
@@ -26086,7 +26627,7 @@
     "gabindom": {
       "index": 5946,
       "owner_key": "3zfttv98wTucRDq6zLNF1wrwHWY1YKbqyE15SVQm5gff",
-      "balance": 753774,
+      "balance": 793460,
       "membership_expire_on": 1723164218,
       "next_cert_issuable_on": 1670938746,
       "certs_received": {
@@ -26109,7 +26650,7 @@
     "karpat": {
       "index": 1713,
       "owner_key": "3zjXWK5zQoLk4yhMWCxoT8oXLbPN7LqiSa1QsNokuaMm",
-      "balance": 2979465,
+      "balance": 3020851,
       "membership_expire_on": 1699193499,
       "next_cert_issuable_on": 1680248312,
       "certs_received": {
@@ -26127,7 +26668,7 @@
     "YLD56460": {
       "index": 7402,
       "owner_key": "3zpahtRLetRUAXHVyp4eD2WFWH4HCQngXZjG5xgPrC2M",
-      "balance": 407241,
+      "balance": 446927,
       "membership_expire_on": 1706208933,
       "next_cert_issuable_on": 1687003803,
       "certs_received": {
@@ -26159,7 +26700,7 @@
     "Ivanof": {
       "index": 12201,
       "owner_key": "3zuMAs4wsHcTA1m15yuPTLhhGj8C52nBMeGk4Bxj9PvX",
-      "balance": 150868,
+      "balance": 206017,
       "membership_expire_on": 1711829602,
       "next_cert_issuable_on": 1686647771,
       "certs_received": {
@@ -26176,7 +26717,7 @@
     "Rose": {
       "index": 8629,
       "owner_key": "3zv98GBjte4sC4zyAcYv6si5txjVjvaMdf4oGyn6a62K",
-      "balance": 461419,
+      "balance": 501105,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1673707949,
       "certs_received": {
@@ -26193,8 +26734,8 @@
     "Koutine": {
       "index": 3586,
       "owner_key": "3zx1BVvghHTg9X6QSSP25SYaNDNx7EotD1Z9hJ1u4r2N",
-      "balance": 1026461,
-      "membership_expire_on": 1695903220,
+      "balance": 1056445,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1664442356,
       "certs_received": {
         "WamniyomniWaste": 1727916807,
@@ -26232,8 +26773,8 @@
     "Naika": {
       "index": 9646,
       "owner_key": "41BgicqTG6e6HwvmwMEZSt8jPrAFPxVp4UpQm33zfAfw",
-      "balance": 102383,
-      "membership_expire_on": 1694703205,
+      "balance": 117335,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1684404361,
       "certs_received": {
         "Miguel": 1726637068,
@@ -26254,7 +26795,7 @@
     "lelfettedesboa": {
       "index": 9599,
       "owner_key": "41K35MWwpckRXdwwtdSx2BTMUQs3sFMB3XjpLydMKubB",
-      "balance": 350822,
+      "balance": 386908,
       "membership_expire_on": 1722809707,
       "next_cert_issuable_on": 1678966302,
       "certs_received": {
@@ -26280,8 +26821,8 @@
     "CorinnePatris": {
       "index": 6535,
       "owner_key": "41bRThQTVxN3iZUyBj4s1ATe9QrjYQ8fkKJKxebrPA3W",
-      "balance": 710883,
-      "membership_expire_on": 1699658375,
+      "balance": 750569,
+      "membership_expire_on": 1726343406,
       "next_cert_issuable_on": 1686540424,
       "certs_received": {
         "MarcoSko": 1702754387,
@@ -26321,8 +26862,8 @@
     "GuillemDVL": {
       "index": 10629,
       "owner_key": "41pFDDreafoz7RJyb4KZrWNb7yysinyTQUnmeSW5DzYp",
-      "balance": 135216,
-      "membership_expire_on": 1700911886,
+      "balance": 13702,
+      "membership_expire_on": 1727549344,
       "next_cert_issuable_on": 1689742746,
       "certs_received": {
         "jorgeocanacastro": 1732494291,
@@ -26360,7 +26901,6 @@
       "certs_received": {
         "Nagual": 1696999464,
         "Stephanos": 1698476052,
-        "EveC": 1695616280,
         "Mazie1991": 1706740342,
         "s00999": 1697075210,
         "Herydanslanievre": 1696965313,
@@ -26370,17 +26910,18 @@
     "BlancaFlow": {
       "index": 5968,
       "owner_key": "422wL4PVLBbfs3Qb7ZUT1AadPSWfp6zsWFWKJFTFTv5Q",
-      "balance": 443354,
+      "balance": 448540,
       "membership_expire_on": 1705625786,
-      "next_cert_issuable_on": 1692875331,
+      "next_cert_issuable_on": 1695911246,
       "certs_received": {
+        "SoniaMallorca": 1758426590,
         "Aatma": 1698472617,
         "Corverd": 1697954140,
         "Brahmaya": 1697510040,
         "Lotus17": 1698358809,
         "MariantoniaHuguet": 1755829697,
         "Maro": 1703021090,
-        "Thais": 1697521392,
+        "Thais": 1758712803,
         "Nana_EsCalaix": 1717205290,
         "isaluz888": 1713372744
       }
@@ -26388,9 +26929,9 @@
     "ChristelleBeaussier": {
       "index": 13461,
       "owner_key": "423BQWgJpTsPHRSBkuyqZnxrZZV8xm38ftKy1wpLFMFX",
-      "balance": 2136,
+      "balance": 41822,
       "membership_expire_on": 1723921264,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694859500,
       "certs_received": {
         "RapMen90": 1756421614,
         "Arippocampe": 1756055164,
@@ -26402,7 +26943,7 @@
     "Naymar": {
       "index": 9301,
       "owner_key": "4264dHQuFq6BqkMSEjKoeSrGhhuZTbKBzXpExaU7w7B6",
-      "balance": 267711,
+      "balance": 289397,
       "membership_expire_on": 1721340894,
       "next_cert_issuable_on": 1682999952,
       "certs_received": {
@@ -26424,7 +26965,7 @@
     "MANICH77": {
       "index": 12310,
       "owner_key": "42CnAzhXSDoy27q6AHGf1YZCYMeaGtdv6iztga7guhEU",
-      "balance": 126656,
+      "balance": 166342,
       "membership_expire_on": 1712509791,
       "next_cert_issuable_on": 1690112957,
       "certs_received": {
@@ -26442,18 +26983,12 @@
       "balance": 376511,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1645271138,
-      "certs_received": {
-        "OncleDave": 1696562346,
-        "Isme": 1695941954,
-        "DCat": 1696024985,
-        "GaelC": 1695941166,
-        "DamienBesac": 1696149887
-      }
+      "certs_received": {}
     },
     "Ludivine-Kilesse": {
       "index": 12526,
       "owner_key": "42NXMxpG1u9fJH7kLbWBQkNd7jD7sDCS32ptGkqw36gP",
-      "balance": 128160,
+      "balance": 167846,
       "membership_expire_on": 1713437852,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -26468,7 +27003,7 @@
     "Yael07": {
       "index": 7633,
       "owner_key": "42PBTqgb2VYaCPM3KKuE7iAJmQXHBed2nQ6ej3mQBype",
-      "balance": 568143,
+      "balance": 607829,
       "membership_expire_on": 1708977972,
       "next_cert_issuable_on": 1669353382,
       "certs_received": {
@@ -26512,8 +27047,8 @@
     "Aeia-bien-etre": {
       "index": 9672,
       "owner_key": "42XmckZpRTPJ4SggEnJwXR16fzaf8rVsS7WBhDedJReF",
-      "balance": 264392,
-      "membership_expire_on": 1695583159,
+      "balance": 290064,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1677403482,
       "certs_received": {
         "SophieB": 1727150123,
@@ -26529,7 +27064,7 @@
     "Papillonbleu": {
       "index": 2861,
       "owner_key": "42YpHEV1LpsL2P1D5UEww7pzXGYoNZwDEJgx8fADph6J",
-      "balance": 1132540,
+      "balance": 1172226,
       "membership_expire_on": 1704725995,
       "next_cert_issuable_on": 1647227796,
       "certs_received": {
@@ -26544,9 +27079,9 @@
     "SeanB": {
       "index": 9872,
       "owner_key": "42c8QjAJB7SkDoJMsBXmd9NCQU3hwJBcnJNuhvgjZrSt",
-      "balance": 306142,
+      "balance": 345828,
       "membership_expire_on": 1721968543,
-      "next_cert_issuable_on": 1690482943,
+      "next_cert_issuable_on": 1695302819,
       "certs_received": {
         "Bigfourmi": 1737095241,
         "Niranjana": 1728496827,
@@ -26561,7 +27096,7 @@
     "DominiqueNyssen": {
       "index": 10109,
       "owner_key": "42d711Jai5pKYSWy7fSx8sv1mnaYbiToSjMuxuHPsUHu",
-      "balance": 317780,
+      "balance": 357466,
       "membership_expire_on": 1698270792,
       "next_cert_issuable_on": 1674644313,
       "certs_received": {
@@ -26583,7 +27118,7 @@
     "Mammagamma": {
       "index": 4453,
       "owner_key": "42diwecf3TdTVNLtKyG7aPHHixkdWZ8HRKYRCXn3CBDx",
-      "balance": 1005300,
+      "balance": 1044986,
       "membership_expire_on": 1698084109,
       "next_cert_issuable_on": 1670250355,
       "certs_received": {
@@ -26599,7 +27134,7 @@
     "ESBDSS": {
       "index": 12428,
       "owner_key": "42ePbtftXBg6P7EEEwCsEKxprLXv1nszu5ja1NiNyjus",
-      "balance": 138840,
+      "balance": 178526,
       "membership_expire_on": 1713802061,
       "next_cert_issuable_on": 1684021272,
       "certs_received": {
@@ -26617,7 +27152,7 @@
     "chloe07": {
       "index": 10661,
       "owner_key": "42nCrJPkUgCQT22sZ1STVwkEYYqEnpzH1U3d1ihEnBes",
-      "balance": 288456,
+      "balance": 328142,
       "membership_expire_on": 1701550991,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -26631,7 +27166,7 @@
     "NAGIOWOTALA": {
       "index": 3753,
       "owner_key": "42tqb6heiyft83xZKFAVghtC9oWC3jbGzjaSQmoNn3Tq",
-      "balance": 233681,
+      "balance": 273367,
       "membership_expire_on": 1703126586,
       "next_cert_issuable_on": 1676911438,
       "certs_received": {
@@ -26655,13 +27190,13 @@
         "CikalaHanwi": 1737455335,
         "Llorens": 1709497034,
         "Tanagra": 1725137123,
-        "Ethersource83": 1697612468
+        "Ethersource83": 1759158719
       }
     },
     "Ludo81": {
       "index": 8923,
       "owner_key": "42ytdXC4Ar8iRqQMoeBLw75k1qpaXLeCqeVNiUBZMcaR",
-      "balance": 370584,
+      "balance": 410270,
       "membership_expire_on": 1721758509,
       "next_cert_issuable_on": 1665969376,
       "certs_received": {
@@ -26678,7 +27213,7 @@
     "GerardDucerf": {
       "index": 11164,
       "owner_key": "42zoX6RwbxcpEhtZzPrngVXpt37Byw8ubXwWxPYew4md",
-      "balance": 861779,
+      "balance": 986465,
       "membership_expire_on": 1702424346,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -26695,7 +27230,7 @@
     "tram": {
       "index": 13375,
       "owner_key": "42zsmfnYUVR7S5kRe9UWCQbnYKS41SRvEfuNgqRyMsiy",
-      "balance": 10588,
+      "balance": 50274,
       "membership_expire_on": 1723470895,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -26704,7 +27239,8 @@
         "Ananda": 1755296153,
         "Helo-ise": 1755223831,
         "Mer-lin": 1755223831,
-        "Fanchon": 1755223432
+        "Fanchon": 1755223432,
+        "Mauve": 1756856213
       }
     },
     "Titi31": {
@@ -26732,7 +27268,7 @@
     "Patledauphin17": {
       "index": 10230,
       "owner_key": "438be2YPbVhuguKB9XnNLKRUE3i7XwjTboit2XiDyfe7",
-      "balance": 71457,
+      "balance": 71143,
       "membership_expire_on": 1698107482,
       "next_cert_issuable_on": 1690112957,
       "certs_received": {
@@ -26747,9 +27283,9 @@
     "EricPetit": {
       "index": 3534,
       "owner_key": "43ASt2LkgazDH2mVAbVCtmbgxJ3FziQpHaa4nXEFYiHr",
-      "balance": 157050,
+      "balance": 133664,
       "membership_expire_on": 1722389978,
-      "next_cert_issuable_on": 1692079887,
+      "next_cert_issuable_on": 1696556830,
       "certs_received": {
         "SylvieBeaumontPerron": 1710478133,
         "Gerard61": 1736495577,
@@ -26792,7 +27328,7 @@
     "Stella7": {
       "index": 10127,
       "owner_key": "43BiF3tJeAWzDsZAk2so7UpACKsskXCybSs9uuq6eZEk",
-      "balance": 355121,
+      "balance": 394807,
       "membership_expire_on": 1698256337,
       "next_cert_issuable_on": 1691589898,
       "certs_received": {
@@ -26811,7 +27347,7 @@
     "Yorch": {
       "index": 8197,
       "owner_key": "43HaduEgw4FTjxSsRHTW9SKgkQ7gAWynpm28hQJ8KCPQ",
-      "balance": 314647,
+      "balance": 354333,
       "membership_expire_on": 1713311748,
       "next_cert_issuable_on": 1677172325,
       "certs_received": {
@@ -26834,9 +27370,9 @@
     "Gemeff": {
       "index": 10330,
       "owner_key": "43K45SkCJeBo52o841BDqccbNtwV2HJ63ALhAcCnHY28",
-      "balance": 348100,
-      "membership_expire_on": 1698938875,
-      "next_cert_issuable_on": 1690977057,
+      "balance": 391786,
+      "membership_expire_on": 1725452478,
+      "next_cert_issuable_on": 1696749548,
       "certs_received": {
         "JF13": 1750801509,
         "Lilou19": 1730519021,
@@ -26871,13 +27407,12 @@
     "DelphineDietsch": {
       "index": 4398,
       "owner_key": "43XMPyWBojyFUcinTtjJdZ3fM5hzTXiGo9py1KtNWWxf",
-      "balance": 947708,
+      "balance": 987394,
       "membership_expire_on": 1724492407,
       "next_cert_issuable_on": 1650349590,
       "certs_received": {
         "Martine51": 1702938073,
         "ArmandeHumbert": 1711161124,
-        "Sunrise": 1693980055,
         "Yannick51200": 1729026357,
         "liberte55": 1697619665,
         "Diogox51": 1710819805,
@@ -26888,7 +27423,7 @@
     "Annur": {
       "index": 5906,
       "owner_key": "43gqoKkyEEZM54fZzXVz9Se4qZU13JGyE95Vm9KCUTVG",
-      "balance": 256152,
+      "balance": 214376,
       "membership_expire_on": 1724615999,
       "next_cert_issuable_on": 1680489684,
       "certs_received": {
@@ -26903,7 +27438,7 @@
     "Lisa34": {
       "index": 2642,
       "owner_key": "43jKXm1ChtVKdENeYEzaWQ5TjNkJKa5UxVm3UqGMMSvx",
-      "balance": 686010,
+      "balance": 725696,
       "membership_expire_on": 1706541677,
       "next_cert_issuable_on": 1684844198,
       "certs_received": {
@@ -26940,9 +27475,9 @@
     "PhilAngel": {
       "index": 9785,
       "owner_key": "43jRG5TbzVXzSfhqmCT7xMGj45foNCnVYcAozeWnZr9c",
-      "balance": 207695,
+      "balance": 228881,
       "membership_expire_on": 1724549964,
-      "next_cert_issuable_on": 1688518761,
+      "next_cert_issuable_on": 1694185481,
       "certs_received": {
         "Bigfourmi": 1726778000,
         "Sylou": 1726848002,
@@ -26971,7 +27506,7 @@
     "MarlenePETIT": {
       "index": 11931,
       "owner_key": "43swp7HuHcQJbz1PnSRVzJmCV3N4KStHoHabrizt3jrf",
-      "balance": 46825,
+      "balance": 86511,
       "membership_expire_on": 1709574450,
       "next_cert_issuable_on": 1690770401,
       "certs_received": {
@@ -26987,7 +27522,7 @@
     "FannyL": {
       "index": 479,
       "owner_key": "43tUiA2iiRcu1X3jYaxFzcrUqGSsKyCmQtNHYrp2D13E",
-      "balance": 1811613,
+      "balance": 1851299,
       "membership_expire_on": 1713443187,
       "next_cert_issuable_on": 1681957587,
       "certs_received": {
@@ -27004,7 +27539,7 @@
     "OrsoFleuri": {
       "index": 687,
       "owner_key": "442TM3rJ4KEcwJJYWQm6qC1nk1qmJM2wqhvYGAAP6z6E",
-      "balance": 1862142,
+      "balance": 1901828,
       "membership_expire_on": 1713706024,
       "next_cert_issuable_on": 1661517230,
       "certs_received": {
@@ -27025,7 +27560,7 @@
     "pascaldedomptail": {
       "index": 6191,
       "owner_key": "445JY1og6fRzN7YPRubYKDo78tY8QVdbEtYFcoWTPjpa",
-      "balance": 667340,
+      "balance": 707026,
       "membership_expire_on": 1709996229,
       "next_cert_issuable_on": 1647953411,
       "certs_received": {
@@ -27065,11 +27600,11 @@
     "FanchDz": {
       "index": 271,
       "owner_key": "44KGKJ9bXEqswvbHqoVGcbKd2WHx42Ws5APwJStghjjU",
-      "balance": 2052212,
+      "balance": 2091898,
       "membership_expire_on": 1699198787,
       "next_cert_issuable_on": 1684896161,
       "certs_received": {
-        "FLORESTRELA": 1700568530,
+        "FLORESTRELA": 1758346019,
         "ArthurLutz": 1701727867,
         "GaelleLC": 1732160525,
         "gerardchavanon": 1741121298,
@@ -27082,7 +27617,7 @@
     "lena": {
       "index": 12934,
       "owner_key": "44LiDuo4WL8uAJkwmBaXrLCTueA9Ki5BtTdsDNegHrRE",
-      "balance": 84164,
+      "balance": 123850,
       "membership_expire_on": 1718588362,
       "next_cert_issuable_on": 1688140069,
       "certs_received": {
@@ -27097,7 +27632,7 @@
     "CathyOlivier": {
       "index": 12254,
       "owner_key": "44MPdnkpvMuf9UzweBFRjsEPFXQCgQ9LShRSoNPFdNs4",
-      "balance": 130432,
+      "balance": 170118,
       "membership_expire_on": 1711482573,
       "next_cert_issuable_on": 1691312394,
       "certs_received": {
@@ -27131,7 +27666,7 @@
     "RONZO": {
       "index": 11875,
       "owner_key": "44TBC1gWB7qB2Td3EE6DdDbZCiBjgBRaMbV2t1tsAuPY",
-      "balance": 326228,
+      "balance": 413914,
       "membership_expire_on": 1708794725,
       "next_cert_issuable_on": 1679031158,
       "certs_received": {
@@ -27160,20 +27695,15 @@
       "next_cert_issuable_on": 1635320442,
       "certs_received": {
         "Loulou09": 1730159965,
-        "GeraldineLeprivier": 1695000151,
         "pascaldedomptail": 1710996611,
         "Gentil09": 1700384273,
-        "ChatelainAndrea": 1695000151,
-        "ChatelainJimmy": 1695000151,
-        "PhilippeRomanin": 1694999886,
-        "myriamdevivegnis": 1710996931,
-        "LeprivierLunel": 1695000151
+        "myriamdevivegnis": 1710996931
       }
     },
     "JulienVigier": {
       "index": 6197,
       "owner_key": "44aRuX6C89nKukMDYJxvPSMPXyCoxqB11KWW7UqPkNgz",
-      "balance": 655282,
+      "balance": 694968,
       "membership_expire_on": 1703163240,
       "next_cert_issuable_on": 1685420606,
       "certs_received": {
@@ -27270,16 +27800,15 @@
       "certs_received": {
         "Christos_Styliaras": 1697751161,
         "Geohuit": 1696923598,
-        "janhsh": 1697800130,
-        "Coucoudidier": 1696187352
+        "janhsh": 1697800130
       }
     },
     "AlvaroFernandez": {
       "index": 8994,
       "owner_key": "451P9b6MekwMr2faLVtnhkMeDxxn5KMx1EQu6UjBeaik",
-      "balance": 102415,
+      "balance": 94001,
       "membership_expire_on": 1716379113,
-      "next_cert_issuable_on": 1686931046,
+      "next_cert_issuable_on": 1696552441,
       "certs_received": {
         "Cholo": 1737516092,
         "RomainKornig": 1720917687,
@@ -27326,7 +27855,7 @@
     "pauldel": {
       "index": 12262,
       "owner_key": "454cKV8YvMm4UiGHxineMBqYQyopsStUX9HmcYQEURhG",
-      "balance": 98496,
+      "balance": 138182,
       "membership_expire_on": 1712187585,
       "next_cert_issuable_on": 1689860420,
       "certs_received": {
@@ -27342,7 +27871,7 @@
     "MAZUZA": {
       "index": 3449,
       "owner_key": "456ReDTrETfVxXCvkELR1Zewam4k53i4T5hrPQHXkohV",
-      "balance": 860696,
+      "balance": 900382,
       "membership_expire_on": 1724681224,
       "next_cert_issuable_on": 1683727510,
       "certs_received": {
@@ -27359,7 +27888,7 @@
     "philouch": {
       "index": 7148,
       "owner_key": "45BuEy4CrFs2jVyrzwUH1dbo8efA8WDFEomzKNGobCxD",
-      "balance": 663116,
+      "balance": 702802,
       "membership_expire_on": 1721178133,
       "next_cert_issuable_on": 1653561014,
       "certs_received": {
@@ -27380,7 +27909,7 @@
     "MorganeL07": {
       "index": 10691,
       "owner_key": "45E2ZJB3MJjg4AJ3d4x6C9yJ4dMJrUbAu4mLr7DdCG3j",
-      "balance": 286338,
+      "balance": 326024,
       "membership_expire_on": 1698775090,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -27394,7 +27923,7 @@
     "tuxmain": {
       "index": 1401,
       "owner_key": "45GfjkWCWQhJ3epJVGC2NSg1Rcu4Ue1vDD3kk9eLs5TQ",
-      "balance": 3748822,
+      "balance": 3867682,
       "membership_expire_on": 1705244539,
       "next_cert_issuable_on": 1687364165,
       "certs_received": {
@@ -27412,17 +27941,33 @@
         "denizen": 1735891248
       }
     },
+    "genchat": {
+      "index": 13506,
+      "owner_key": "45dDfPhvRKFNHFVR661ATzRjYcveJwfEJZjNnQrJKjS5",
+      "balance": 39166,
+      "membership_expire_on": 1725204838,
+      "next_cert_issuable_on": 1694318063,
+      "certs_received": {
+        "Nathalie_Robin": 1756773019,
+        "FIFIMERCIER": 1756849350,
+        "maximeparisot07": 1756771806,
+        "Mesamours84": 1756851476,
+        "MercierDominique30": 1756841810,
+        "ChaGaia5926": 1757361524,
+        "ChristineWilloth26": 1756846179
+      }
+    },
     "Damien": {
       "index": 700,
       "owner_key": "45kp9VMak443ztr6FhooZ7GqxtwUhNoUP3oTsRTApCLx",
-      "balance": 2513690,
-      "membership_expire_on": 1694770295,
+      "balance": 2528642,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683887296,
       "certs_received": {
         "Reumy": 1698378677,
         "EliseL": 1716254168,
         "DavidB": 1702147965,
-        "Stephio": 1700809563,
+        "Stephio": 1757541771,
         "Liliwasabi": 1711920038,
         "Eva": 1704582302,
         "Olipez": 1729457265,
@@ -27432,7 +27977,7 @@
     "Zoe73": {
       "index": 8294,
       "owner_key": "45mBH3yXxZY31Pic3myAGYiXUEQ18dHghGZAZtZiNECL",
-      "balance": 381993,
+      "balance": 421679,
       "membership_expire_on": 1712015901,
       "next_cert_issuable_on": 1682606453,
       "certs_received": {
@@ -27456,7 +28001,7 @@
     "LuisSarria": {
       "index": 10583,
       "owner_key": "465bNH57eGtpkgqSmBbjwdbuQ1kQF7UPb5GQuBfgYpxY",
-      "balance": 224592,
+      "balance": 264278,
       "membership_expire_on": 1701233200,
       "next_cert_issuable_on": 1688865248,
       "certs_received": {
@@ -27480,7 +28025,7 @@
     "FredVanHell": {
       "index": 8502,
       "owner_key": "469848C5ZcVk9he5LWvqkKDhqkZECmUxm8BcrpbrJaS1",
-      "balance": 466277,
+      "balance": 505963,
       "membership_expire_on": 1712523122,
       "next_cert_issuable_on": 1681037221,
       "certs_received": {
@@ -27510,9 +28055,9 @@
     "Mmu34": {
       "index": 10921,
       "owner_key": "46QR4K5Uod3cfLqPLJYT6o6ZmUAdumzjqWnzU8jbvivb",
-      "balance": 577012,
+      "balance": 616698,
       "membership_expire_on": 1702305174,
-      "next_cert_issuable_on": 1693212799,
+      "next_cert_issuable_on": 1694764872,
       "certs_received": {
         "Natalia": 1745378455,
         "Diego528": 1733959663,
@@ -27561,7 +28106,7 @@
     "Rakairos": {
       "index": 7751,
       "owner_key": "46r2WhFN6vXsU4qWFYFHA6kNkmgq5PXN2mzExrscchf2",
-      "balance": 711833,
+      "balance": 751519,
       "membership_expire_on": 1709038649,
       "next_cert_issuable_on": 1684379935,
       "certs_received": {
@@ -27596,6 +28141,21 @@
         "JeromeDelaigue": 1732844581
       }
     },
+    "Bricolette": {
+      "index": 13719,
+      "owner_key": "46rBtN7KZLzuGoziMUbnWGjEgmaKWyu2ru7aMJ17TkEB",
+      "balance": 23890,
+      "membership_expire_on": 1726598923,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "MurielleMuMu": 1758255045,
+        "Malena58": 1758583368,
+        "TristanG1": 1759112636,
+        "AnnParisot": 1759104454,
+        "Lylie_Bulle": 1759695388,
+        "SabineL": 1758486927
+      }
+    },
     "Lapin": {
       "index": 1952,
       "owner_key": "46xYcyVvLTGkBavr6YqBb8J59PH5dxtZKGXsHbvL74MB",
@@ -27631,7 +28191,7 @@
     "EmmanuelS974": {
       "index": 11280,
       "owner_key": "47Ds2YcEFMJ6oBPS8KCz14eVHQXiFDa627YJ46MKi2tA",
-      "balance": 251683,
+      "balance": 291369,
       "membership_expire_on": 1703263708,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -27655,7 +28215,7 @@
     "b_presles": {
       "index": 1765,
       "owner_key": "47JpfrGkoHJWtumeu7f67fbAxkvaHYVQBNo5GszNs61Z",
-      "balance": 772927,
+      "balance": 855533,
       "membership_expire_on": 1710252960,
       "next_cert_issuable_on": 1692493359,
       "certs_received": {
@@ -27671,12 +28231,11 @@
         "Pascale72": 1755799007,
         "aajaadee": 1724042416,
         "Anton": 1702421566,
-        "thierryR51": 1696217072,
         "denizen": 1739666307,
-        "Gerardl": 1695591634,
         "Maaltir": 1748460125,
         "KarlPrescott": 1702855028,
-        "EliseNantes": 1700705420
+        "EliseNantes": 1700705420,
+        "Anne_Marquer": 1755809413
       }
     },
     "LouCom": {
@@ -27734,8 +28293,8 @@
     "pierrot": {
       "index": 9668,
       "owner_key": "47hjathwu4hMqJ62tXiDKXbQ5nMPdQ1Eud9z5rMpNcs9",
-      "balance": 370368,
-      "membership_expire_on": 1695665045,
+      "balance": 397118,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673873140,
       "certs_received": {
         "Harriss": 1727312862,
@@ -27759,14 +28318,15 @@
     "Marieta": {
       "index": 10770,
       "owner_key": "47jrMJMRNbcBe8QG6zwpA4xiPD8zoEx8ADwTbdAXGADH",
-      "balance": 252686,
+      "balance": 292372,
       "membership_expire_on": 1701692731,
-      "next_cert_issuable_on": 1693141226,
+      "next_cert_issuable_on": 1696402661,
       "certs_received": {
         "midchaz": 1733264650,
         "Ninamaste": 1733702985,
         "Didilou": 1755749244,
         "NathS": 1733299881,
+        "Juneve": 1757724497,
         "CyyP": 1733270845,
         "zizou": 1733293307,
         "Cathy26": 1741651431,
@@ -27788,12 +28348,8 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Roco": 1696283560,
         "MayaRT": 1699504497,
-        "Jihi": 1696283196,
-        "Cecilelaurent": 1696999056,
-        "labomarjo": 1696284951,
-        "LydiaRoche": 1696279765
+        "Cecilelaurent": 1696999056
       }
     },
     "franckalcouffe": {
@@ -27815,7 +28371,7 @@
     "Speedygonzales73": {
       "index": 7230,
       "owner_key": "47z3EsEE9pXBKrGVoHgTptHS33f8UeP4JoJaxkvz9kuB",
-      "balance": 564709,
+      "balance": 604395,
       "membership_expire_on": 1706051385,
       "next_cert_issuable_on": 1670249859,
       "certs_received": {
@@ -27829,14 +28385,15 @@
     "Bambou": {
       "index": 7114,
       "owner_key": "4882YYAFcE4uxux5WhRTBiWMVvDPXfasVa5avnka3uc3",
-      "balance": 411010,
+      "balance": 514716,
       "membership_expire_on": 1708048701,
-      "next_cert_issuable_on": 1693379053,
+      "next_cert_issuable_on": 1695003981,
       "certs_received": {
         "Val48": 1722888047,
         "Sev": 1719628648,
         "Kristo": 1743186433,
         "Manu_Auger": 1709088168,
+        "Nounouche": 1758134862,
         "toutenstock": 1708247897,
         "Badiane": 1707850525,
         "Murmure": 1720035246,
@@ -27846,6 +28403,7 @@
         "Florencefleur": 1717014597,
         "CorinneCoco": 1709406403,
         "Did-yeah": 1724173545,
+        "Sol-Eric": 1758054239,
         "lilithdu34": 1707848536,
         "chane": 1707846581,
         "AuFilDuTemps": 1710136030,
@@ -27863,7 +28421,7 @@
     "Kathbs": {
       "index": 13369,
       "owner_key": "489dXHc1WyPNETWDG7u3WxZLZR5mTcGcydd6iNKZeY1N",
-      "balance": 26156,
+      "balance": 65842,
       "membership_expire_on": 1721669545,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -27877,7 +28435,7 @@
     "anouchka": {
       "index": 640,
       "owner_key": "48EjCSc4cbCnbwZ2VvzuStqoKZ9kyxrqE7FsvwHBJF1n",
-      "balance": 765079,
+      "balance": 804765,
       "membership_expire_on": 1724711129,
       "next_cert_issuable_on": 1693225529,
       "certs_received": {
@@ -27900,18 +28458,17 @@
     "Martine51": {
       "index": 5663,
       "owner_key": "48HDZgywHYY2xWovwL3utL5fXbakJvbgUkoMK2jDjVZe",
-      "balance": 1041415,
+      "balance": 1021101,
       "membership_expire_on": 1714689008,
-      "next_cert_issuable_on": 1689806994,
+      "next_cert_issuable_on": 1696733430,
       "certs_received": {
         "Muriel51": 1718041686,
         "LilianBonnardon": 1709856596,
         "Jiji": 1710194627,
         "Marysep": 1727357088,
         "Gabriel51": 1733275727,
-        "DelphineDietsch": 1693515024,
+        "MarcS": 1759270821,
         "JusteAlex": 1710412089,
-        "IsabelleGlorian": 1693524383,
         "MagouneMagalieBA": 1710994385,
         "Eric": 1705203826,
         "Elie88": 1733224912,
@@ -27942,6 +28499,7 @@
         "BernadetteMillefeuille": 1723254908,
         "Audr3y": 1728702783,
         "AngeliqueCharton": 1734558811,
+        "thierryR51": 1759610545,
         "Epicurom": 1740068542,
         "Roimain": 1736661958,
         "Syldess": 1733282185,
@@ -27951,6 +28509,7 @@
         "EleFarru79": 1726376757,
         "OValReiki": 1720665941,
         "AmandineMuller": 1714508269,
+        "MarielaureDardour": 1759521271,
         "Keramina51": 1718309880,
         "Nono51": 1733981154,
         "bubuche52": 1731815074,
@@ -27968,8 +28527,8 @@
     "leBerry": {
       "index": 9637,
       "owner_key": "48SfUdZUB4HhXWLbbameUU8XS2ve1UEZkvyxeRNNJ5Hm",
-      "balance": 287049,
-      "membership_expire_on": 1694450357,
+      "balance": 305531,
+      "membership_expire_on": 1726323065,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "mluque71": 1726708865,
@@ -27982,7 +28541,7 @@
     "FabiolaVR": {
       "index": 12089,
       "owner_key": "48VA6HsF3L5LYGLfvimqkFmrR3Gi8ZVHqyhJ4yWdtxMq",
-      "balance": 101584,
+      "balance": 146770,
       "membership_expire_on": 1710255687,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -27997,9 +28556,9 @@
     "Isa85190791": {
       "index": 3511,
       "owner_key": "48WSNEhToCG3EXhRszfRPe9mCrNMmHeP2Y6eQDe6yPis",
-      "balance": 1228067,
-      "membership_expire_on": 1699070224,
-      "next_cert_issuable_on": 1646747895,
+      "balance": 1267753,
+      "membership_expire_on": 1726712784,
+      "next_cert_issuable_on": 1695227436,
       "certs_received": {
         "b_presles": 1708931962,
         "DonQuiche": 1708036997,
@@ -28011,7 +28570,7 @@
     "ClaudiaVazquez": {
       "index": 11250,
       "owner_key": "48ZMFU3uQre6gLbGDPTopGGvZHRTvYa6s582MKUcCoZF",
-      "balance": 167460,
+      "balance": 168646,
       "membership_expire_on": 1705438159,
       "next_cert_issuable_on": 1687680404,
       "certs_received": {
@@ -28030,9 +28589,9 @@
     "doms": {
       "index": 13427,
       "owner_key": "48hKyPSDvpHuodS8vpyF8k9dyM1ge1YKd5F5xJVZLPn2",
-      "balance": 13644,
+      "balance": 53330,
       "membership_expire_on": 1722028176,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693030602,
       "certs_received": {
         "ValerieArtsetsens": 1755470740,
         "Yosoy": 1755586448,
@@ -28044,9 +28603,9 @@
     "CarmeCastineira": {
       "index": 11860,
       "owner_key": "48kqr6u1aPB6DhDa2cP3V96mkLjTwAmKD2dwpjC7eeRy",
-      "balance": 226734,
+      "balance": 257399,
       "membership_expire_on": 1708554232,
-      "next_cert_issuable_on": 1688726272,
+      "next_cert_issuable_on": 1695350478,
       "certs_received": {
         "Kaikus": 1740292988,
         "Xisca": 1741071476,
@@ -28062,7 +28621,7 @@
     "faraona": {
       "index": 11169,
       "owner_key": "48znE3Liv8cUXAfsxHEMdWwfm9HrnDYsKCrqWRXC28BJ",
-      "balance": 243463,
+      "balance": 233405,
       "membership_expire_on": 1704816128,
       "next_cert_issuable_on": 1691985622,
       "certs_received": {
@@ -28101,7 +28660,7 @@
     "Tassya341": {
       "index": 8337,
       "owner_key": "49CuRKbaSMC8VffvEPWUnbTbyxagg2ir8rXXWEKsCJbK",
-      "balance": 834176,
+      "balance": 873862,
       "membership_expire_on": 1718016874,
       "next_cert_issuable_on": 1667308161,
       "certs_received": {
@@ -28122,7 +28681,7 @@
     "Jgaut6577logascoun": {
       "index": 8811,
       "owner_key": "49E9zTZUBXczmsh1Rjmzt1Tjq7xHBtn8fVcgyBHdbgFU",
-      "balance": 470584,
+      "balance": 510270,
       "membership_expire_on": 1719587781,
       "next_cert_issuable_on": 1682431496,
       "certs_received": {
@@ -28136,7 +28695,7 @@
     "NEFERTARIE": {
       "index": 2269,
       "owner_key": "49GhUimjNDby9naeVGqNU9RPMQEar12kVC8mpuTid6WN",
-      "balance": 1398461,
+      "balance": 1438147,
       "membership_expire_on": 1710032751,
       "next_cert_issuable_on": 1661327480,
       "certs_received": {
@@ -28166,7 +28725,7 @@
     "Wenoo": {
       "index": 6402,
       "owner_key": "49We2JD5CjPk3AJAYJKfMMWgda6JpcanZaYjCCkjnh5x",
-      "balance": 660195,
+      "balance": 699881,
       "membership_expire_on": 1697589611,
       "next_cert_issuable_on": 1666104011,
       "certs_received": {
@@ -28180,11 +28739,12 @@
     "HanouLakhdarok": {
       "index": 1350,
       "owner_key": "49dTrv3eqw84dAo8ohCPjQ9YwqoD8ri8HpxYqDmabjyh",
-      "balance": 1381495,
+      "balance": 1421181,
       "membership_expire_on": 1719402568,
       "next_cert_issuable_on": 1670422811,
       "certs_received": {
         "GildasMalassinet": 1726544426,
+        "Yassin": 1757734534,
         "yekapharoah": 1719368159,
         "zazou": 1734739448,
         "CaroleFabre": 1728633267,
@@ -28205,14 +28765,15 @@
     "FabienneM": {
       "index": 10112,
       "owner_key": "49gtU9xLPyzDPV79PreDpH5xvr7VwpGytemb134mJg13",
-      "balance": 583880,
+      "balance": 589966,
       "membership_expire_on": 1724882982,
-      "next_cert_issuable_on": 1693200892,
+      "next_cert_issuable_on": 1696079744,
       "certs_received": {
         "Rebel": 1733331418,
         "Lauriernoble": 1730017495,
         "PhilAngel": 1730012636,
         "AlphaCentauri": 1730096313,
+        "remol": 1759610847,
         "STEPHEUSE": 1753373997,
         "DamienBesac": 1754644923,
         "Mazurka": 1749938775,
@@ -28249,7 +28810,7 @@
     "titix": {
       "index": 4783,
       "owner_key": "49nWdTQqDT8qpazzPeP6NH92NwppG7YEh6PFYC2VecNA",
-      "balance": 86854,
+      "balance": 61710,
       "membership_expire_on": 1702402063,
       "next_cert_issuable_on": 1688088051,
       "certs_received": {
@@ -28274,7 +28835,7 @@
     "DameBene": {
       "index": 9382,
       "owner_key": "49vyf7XRbe1y3wkxDi3rR1N1zN74efR2rZerSbcJCMT2",
-      "balance": 413231,
+      "balance": 452917,
       "membership_expire_on": 1724977716,
       "next_cert_issuable_on": 1683188120,
       "certs_received": {
@@ -28309,11 +28870,12 @@
     "Perrinha": {
       "index": 12667,
       "owner_key": "4AEL77DcnRaHKw8zyJuDuSDCrFeT19rf9CrjTyq1hmFw",
-      "balance": 118276,
+      "balance": 157962,
       "membership_expire_on": 1715040909,
       "next_cert_issuable_on": 1693127857,
       "certs_received": {
         "RitApolinario": 1747013268,
+        "artenomar": 1756360460,
         "HelenaMatos": 1747200958,
         "DeboraTavares": 1747174198,
         "AnaPires": 1749972461,
@@ -28332,8 +28894,8 @@
     "Emergencia": {
       "index": 9434,
       "owner_key": "4AHMaDPAhabu8MXPmZJJz8miPeWbk8syte5DEYa6RFZ6",
-      "balance": 375169,
-      "membership_expire_on": 0,
+      "balance": 410593,
+      "membership_expire_on": 1725395818,
       "next_cert_issuable_on": 1675400388,
       "certs_received": {
         "Mianne": 1725323659,
@@ -28348,7 +28910,7 @@
     "Dani": {
       "index": 9290,
       "owner_key": "4ASq81EMVMvce8DaukhLJoSYCELG1Tt8MCgaLAuGdNGK",
-      "balance": 130758,
+      "balance": 128444,
       "membership_expire_on": 1718233415,
       "next_cert_issuable_on": 1686755111,
       "certs_received": {
@@ -28364,8 +28926,8 @@
     "Hubertlecourt": {
       "index": 6058,
       "owner_key": "4AYmM8sgffM1HBEEutcuJ8HCDtXvPKQcrLEK9Gv4W3sg",
-      "balance": 719402,
-      "membership_expire_on": 1700135959,
+      "balance": 759088,
+      "membership_expire_on": 1727892299,
       "next_cert_issuable_on": 1673852898,
       "certs_received": {
         "Bcabon": 1743204885,
@@ -28376,7 +28938,7 @@
         "MarieLaureGruauGeslot": 1698703299,
         "PhilippeGruau": 1698710704,
         "PatrickCrepin": 1699842519,
-        "AnneAmbles": 1698432701,
+        "AnneAmbles": 1758600352,
         "Chantallef72": 1701316049,
         "LucileFeuilleau": 1711674531,
         "NathanGruau": 1698706729,
@@ -28386,11 +28948,13 @@
     "CaroleFabre": {
       "index": 8,
       "owner_key": "4Aaj8b3PRvLM8R3Zi9kGk7bfkE9ivLLW5TLCAEBdR3bn",
-      "balance": 1077183,
-      "membership_expire_on": 1696987575,
-      "next_cert_issuable_on": 1682080477,
+      "balance": 1086869,
+      "membership_expire_on": 1725298087,
+      "next_cert_issuable_on": 1694934120,
       "certs_received": {
+        "sarahmagicienne": 1758781213,
         "cgeek": 1701311142,
+        "Philippe26": 1758134862,
         "Quintescence": 1742504864,
         "jogi": 1742061812,
         "4rion": 1734804831,
@@ -28399,7 +28963,7 @@
         "chcesetti": 1749353211,
         "Meubleu": 1750352399,
         "Spyou": 1741661696,
-        "denizen": 1698982745,
+        "denizen": 1756852781,
         "StregaBianca": 1732407775
       }
     },
@@ -28447,7 +29011,7 @@
     "celineR": {
       "index": 4075,
       "owner_key": "4AmVZgYKPU9nhNqUz9fnv5UVZssFZ7T1HwMbwXZrZuUN",
-      "balance": 100547,
+      "balance": 125233,
       "membership_expire_on": 1716203675,
       "next_cert_issuable_on": 1689785060,
       "certs_received": {
@@ -28459,13 +29023,14 @@
         "Kaya971Wolf": 1732136893,
         "Fredlassave": 1730411890,
         "ofontes": 1753643013,
-        "bert": 1713370062
+        "bert": 1713370062,
+        "Pipootz": 1755372959
       }
     },
     "valmuzet": {
       "index": 9130,
       "owner_key": "4Aupeoxxn1Yb6rHdwBunDvatkwX7fo7x1Jh94nxqC7XD",
-      "balance": 86889,
+      "balance": 126575,
       "membership_expire_on": 1720975935,
       "next_cert_issuable_on": 1672657847,
       "certs_received": {
@@ -28481,7 +29046,7 @@
     "FloLap": {
       "index": 6691,
       "owner_key": "4B85Y4GfdAct3t3QXJS3USwbwarHt7BhX9GzF1ZZGgby",
-      "balance": 528725,
+      "balance": 472711,
       "membership_expire_on": 1702567782,
       "next_cert_issuable_on": 1678986701,
       "certs_received": {
@@ -28497,8 +29062,8 @@
     "Maiwenn": {
       "index": 6628,
       "owner_key": "4BBaWX1FTbZhnuPWkrh2LVpsrDQamfeg2WBAUNFQRUvK",
-      "balance": 672019,
-      "membership_expire_on": 1695930549,
+      "balance": 702003,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1664444949,
       "certs_received": {
         "DaniailesA": 1714537828,
@@ -28518,17 +29083,20 @@
     "Andrelie": {
       "index": 1961,
       "owner_key": "4BC7eFHvZs4uFSftcaFTPwGRV5naRnVcMt6zdtjSAexe",
-      "balance": 169641,
+      "balance": 189327,
       "membership_expire_on": 1722189193,
-      "next_cert_issuable_on": 1693525219,
+      "next_cert_issuable_on": 1695958038,
       "certs_received": {
         "hibiscus11": 1739858777,
         "AnneLaroche": 1755275779,
+        "LouisCarvalho": 1758223042,
         "MoniQ": 1730003686,
         "OlivierRed": 1730231704,
         "Anita": 1739335536,
         "beniz": 1729988905,
         "LOLOBOBO11": 1739335536,
+        "Sylvieswing82": 1759102366,
+        "Bigoudi888": 1759007385,
         "ValyChev": 1739857903,
         "SandraC": 1729971056
       }
@@ -28536,7 +29104,7 @@
     "Jc_ikigai": {
       "index": 12727,
       "owner_key": "4BDQVHNnSBgA4egfy5GwT7h5KTeRcmHWvLwppW5RWkaW",
-      "balance": 106800,
+      "balance": 146486,
       "membership_expire_on": 1712696225,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -28550,7 +29118,7 @@
     "PascaleLeclerc": {
       "index": 8733,
       "owner_key": "4BJ5NhTcFzWMwCUU8B9WAsbxi8RC4gjfAKZ1YCN3pw1S",
-      "balance": 422397,
+      "balance": 462083,
       "membership_expire_on": 1721049070,
       "next_cert_issuable_on": 1657123129,
       "certs_received": {
@@ -28570,27 +29138,22 @@
     "DanceX47": {
       "index": 5632,
       "owner_key": "4BSdLu3nnQM5EKmeG9dBoRHYKcGTtoJoC36xqFN5QxqU",
-      "balance": 763379,
+      "balance": 803065,
       "membership_expire_on": 1721411079,
       "next_cert_issuable_on": 1659488363,
       "certs_received": {
         "Robisar": 1756002292,
-        "Mariou": 1693946912,
+        "Mariou": 1757057378,
         "ThierryAudic": 1722386815,
-        "Kaileanah": 1694322503,
-        "Misslesfleurs": 1694012529,
         "jpeupagrando": 1756005885,
-        "Phen": 1694310837,
         "LoPetitSoleil": 1756050900,
-        "Clairebach": 1693944523,
-        "Nadege": 1694496816,
         "Numerus47": 1756174473
       }
     },
     "Camillou05": {
       "index": 3730,
       "owner_key": "4BTZHnjzkGRHty1ei1nSJZibdhCnvTSFBG9VsJ8sTGGb",
-      "balance": 1170190,
+      "balance": 1209876,
       "membership_expire_on": 1715470825,
       "next_cert_issuable_on": 1673716337,
       "certs_received": {
@@ -28609,14 +29172,16 @@
     "SophieDeprez": {
       "index": 12552,
       "owner_key": "4BUPvmnjYtTniuT2r91icdN1R2RPcx7VVWpsXDdUSx6q",
-      "balance": 49828,
+      "balance": 75978,
       "membership_expire_on": 1713025817,
-      "next_cert_issuable_on": 1693093283,
+      "next_cert_issuable_on": 1696469604,
       "certs_received": {
+        "FredEnergie": 1758737290,
         "Monalibra": 1747882469,
         "AgnesJs": 1749168365,
         "Domusol": 1746435356,
         "ElaineDana": 1746417855,
+        "BrigitteB": 1757655350,
         "Shinix63": 1746436787,
         "Annae": 1746419075,
         "Goldwing": 1746468856,
@@ -28627,12 +29192,13 @@
     "Charbel45": {
       "index": 12121,
       "owner_key": "4BXBM3kSMSrgZHJPtUFqru4FyCc7ZuroMDPNyk4efWAh",
-      "balance": 169812,
+      "balance": 209498,
       "membership_expire_on": 1710431490,
       "next_cert_issuable_on": 1693310692,
       "certs_received": {
         "Gscarabbe": 1750903242,
         "Holistique": 1741997655,
+        "Effelmandy": 1756501868,
         "Nelmotard58": 1743975612,
         "Seve": 1742930420,
         "Floreale": 1742018346,
@@ -28644,7 +29210,7 @@
     "nadinegil": {
       "index": 11228,
       "owner_key": "4Bdwqi63xaVYWfAg8uB2RgqfpGSGbtYyu4Lfg1J35wTf",
-      "balance": 419478,
+      "balance": 459164,
       "membership_expire_on": 1704220466,
       "next_cert_issuable_on": 1688456373,
       "certs_received": {
@@ -28659,8 +29225,8 @@
     "ZamaDembele": {
       "index": 4174,
       "owner_key": "4Bn6Umqs9tFQD8MwEpwXNuTgFaFJyBpuqPV2FkPZdqmM",
-      "balance": 697915,
-      "membership_expire_on": 1695489782,
+      "balance": 722509,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1664801202,
       "certs_received": {
         "MHaM": 1721083200,
@@ -28687,7 +29253,7 @@
     "YUAWIMA": {
       "index": 12253,
       "owner_key": "4Bpp3LReVLYcdx5SMk7iacu6N9YchmF5fYSrw9itYqtU",
-      "balance": 653165,
+      "balance": 767251,
       "membership_expire_on": 1711228428,
       "next_cert_issuable_on": 1691723015,
       "certs_received": {
@@ -28705,8 +29271,8 @@
     "mamieflo": {
       "index": 2280,
       "owner_key": "4BsqTKUPhAD7XiPmzf47sPmECCdpN69ERk345RwrdSgY",
-      "balance": 1066047,
-      "membership_expire_on": 1696616605,
+      "balance": 1104655,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1679065520,
       "certs_received": {
         "EvelyneS": 1697345273,
@@ -28714,9 +29280,9 @@
         "Christelle": 1713379240,
         "gaaltic": 1747931764,
         "MarioD": 1750991854,
-        "MoulinMuriel": 1696640610,
+        "MoulinMuriel": 1759429019,
         "severinem": 1750991302,
-        "ChristopheRobine": 1697316800,
+        "ChristopheRobine": 1759538238,
         "romane": 1701122270,
         "Max": 1701616366,
         "Joellebingo": 1706408608,
@@ -28734,7 +29300,7 @@
     "Zbilo": {
       "index": 12502,
       "owner_key": "4Bze25JTj7QmxXNt31rbMiXT44eEmRT1TdmXsdrtZPBr",
-      "balance": 134296,
+      "balance": 163982,
       "membership_expire_on": 1711406061,
       "next_cert_issuable_on": 1689725889,
       "certs_received": {
@@ -28748,8 +29314,8 @@
     "ArthurLutz": {
       "index": 983,
       "owner_key": "4C4jsvxmFQBoHN86BHsSreTKoK2bYvQV9gAGtH3BMNc3",
-      "balance": 1637336,
-      "membership_expire_on": 1693772659,
+      "balance": 1640540,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683021162,
       "certs_received": {
         "Framasky": 1724132773,
@@ -28763,7 +29329,7 @@
     "Geotrouvtout": {
       "index": 4483,
       "owner_key": "4C7x56vLYkTVQ9ndCUpXwjfpuJvBrp9HidfFwwMe7TCm",
-      "balance": 1671916,
+      "balance": 1511602,
       "membership_expire_on": 1699580130,
       "next_cert_issuable_on": 1676400748,
       "certs_received": {
@@ -28780,7 +29346,7 @@
     "Echandols": {
       "index": 9894,
       "owner_key": "4CFBPPEvFfCtonuxPXGD4R8Xrfvkoh9nhBnbMSSt6NoX",
-      "balance": 301624,
+      "balance": 341310,
       "membership_expire_on": 1724464930,
       "next_cert_issuable_on": 1692979330,
       "certs_received": {
@@ -28818,9 +29384,9 @@
     "Fox": {
       "index": 10886,
       "owner_key": "4CRNCrey3oXhfnEeQAhDad7s2CxuWjK754Gf8FND7xwx",
-      "balance": 434047,
+      "balance": 473733,
       "membership_expire_on": 1702397360,
-      "next_cert_issuable_on": 1692499731,
+      "next_cert_issuable_on": 1695738300,
       "certs_received": {
         "Stejulemont": 1737182398,
         "WintgensJoseph": 1733969295,
@@ -28838,13 +29404,14 @@
         "Ricou": 1734340681,
         "chicaleylou": 1750379554,
         "Puravida": 1734406873,
+        "Mmemonica": 1754869237,
         "VaivaG": 1737826629
       }
     },
     "Amina": {
       "index": 12300,
       "owner_key": "4CXzhhSeMALoeDFpCTg8D57WjLKaALubqGtyHsofBEFS",
-      "balance": 153724,
+      "balance": 193410,
       "membership_expire_on": 1712573560,
       "next_cert_issuable_on": 1681977886,
       "certs_received": {
@@ -28858,13 +29425,12 @@
     "deb26": {
       "index": 2384,
       "owner_key": "4CZ3gzq1rKN2xiw2T5rSQr6Y7XDTRCHTdqNXK93hY1xE",
-      "balance": 2717521,
+      "balance": 2757207,
       "membership_expire_on": 1699195343,
       "next_cert_issuable_on": 1655771090,
       "certs_received": {
         "EvelyneS": 1697345273,
         "Juju98": 1700043649,
-        "Feerique": 1694555347,
         "Ceriseblu": 1698208766,
         "MoulinMuriel": 1698621166,
         "HubertRoussel": 1708233732,
@@ -28883,28 +29449,22 @@
     "theresecaillere": {
       "index": 5677,
       "owner_key": "4Cfx1zJLVgcs1kty6KJejCELYYUJ8qnZZCo9ro2mXAik",
-      "balance": 712075,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1645885717,
+      "balance": 723933,
+      "membership_expire_on": 1726915923,
+      "next_cert_issuable_on": 1695974263,
       "certs_received": {
         "GaryGrandin": 1739605196,
-        "simonelion": 1693715630,
         "MariPotter": 1704849654,
         "AlineLecoeur": 1738783239,
-        "PascaleRoncoroni": 1694732638,
         "MessagereDeLumiere": 1707419361,
         "RichardGhislaine": 1709318915,
-        "llecoeur": 1693715630,
-        "YanickChareille": 1693809242,
-        "MicheleChaplain": 1746750395,
-        "EdithSineux": 1694725612,
-        "ChloeLebon": 1695671216
+        "MicheleChaplain": 1746750395
       }
     },
     "LIAMHE77": {
       "index": 12215,
       "owner_key": "4Cj9BubWAfbmwHJ8BDQvHNpa6ikSkLSh5RhvhchsfYkL",
-      "balance": 160300,
+      "balance": 199986,
       "membership_expire_on": 1711907850,
       "next_cert_issuable_on": 1682038456,
       "certs_received": {
@@ -28919,15 +29479,16 @@
     "Pensey20": {
       "index": 4037,
       "owner_key": "4CsXJ1FFaRSprQHgRB5FsZrCXccmgpAksZa6Tz9BBCom",
-      "balance": 1034309,
-      "membership_expire_on": 1696542762,
-      "next_cert_issuable_on": 1686822859,
+      "balance": 1073995,
+      "membership_expire_on": 1726872440,
+      "next_cert_issuable_on": 1695386840,
       "certs_received": {
         "Iris": 1729320270,
         "Philippe26": 1729902076,
         "Assoben": 1728100134,
         "Senou86": 1728099421,
         "Salome": 1729319415,
+        "Deo2004": 1758859219,
         "Vinanssey15": 1728099665,
         "Paco": 1729752536
       }
@@ -28943,7 +29504,7 @@
     "Clo888": {
       "index": 5656,
       "owner_key": "4Cwi3u2sUppZWdTkYfbTXth6Ez2SNho33vQVEHXQw4cg",
-      "balance": 732041,
+      "balance": 771727,
       "membership_expire_on": 1721418335,
       "next_cert_issuable_on": 1690008973,
       "certs_received": {
@@ -28952,8 +29513,7 @@
         "MargauxD": 1753049050,
         "SylvainGabarrou": 1752348184,
         "ThibautDEPRET": 1752979574,
-        "Sevdiesse": 1752974930,
-        "OrAnge": 1694727512
+        "Sevdiesse": 1752974930
       }
     },
     "Linda": {
@@ -28967,7 +29527,7 @@
     "Jamespatagueule": {
       "index": 8556,
       "owner_key": "4DCqfbwf7dB1HhMVD2Q5WcVu1sC24AU1Yiqy8omSBghj",
-      "balance": 495224,
+      "balance": 534910,
       "membership_expire_on": 1718406814,
       "next_cert_issuable_on": 1669628954,
       "certs_received": {
@@ -28984,8 +29544,8 @@
     "Evi50": {
       "index": 9640,
       "owner_key": "4DHhmaZJgg173YcJvFsGYHD4HnXefSMiSiWPnxMwrK6Y",
-      "balance": 358186,
-      "membership_expire_on": 1695163546,
+      "balance": 378478,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675167001,
       "certs_received": {
         "Manuella85": 1726795702,
@@ -28999,7 +29559,7 @@
     "Nartagnan": {
       "index": 85,
       "owner_key": "4DVWFcDQFm6XEkz56HPFYX7QA8QW2z4pxsJhmUpWw94W",
-      "balance": 618274,
+      "balance": 657960,
       "membership_expire_on": 1717584506,
       "next_cert_issuable_on": 1686125745,
       "certs_received": {
@@ -29030,7 +29590,7 @@
     "GUL40_Fp1": {
       "index": 8263,
       "owner_key": "4DdCtDjGwGHHJTfTQyeRdD5hCHHfy8DLF4eNWvBr926W",
-      "balance": 466046,
+      "balance": 505732,
       "membership_expire_on": 1714955779,
       "next_cert_issuable_on": 1672564552,
       "certs_received": {
@@ -29049,8 +29609,8 @@
     "VERDANDI77": {
       "index": 6483,
       "owner_key": "4DeagrDKdX2thTos6vsVR5PpNhJsPZ1pMng3Zh9QGt9F",
-      "balance": 772056,
-      "membership_expire_on": 1700014182,
+      "balance": 801742,
+      "membership_expire_on": 1726499732,
       "next_cert_issuable_on": 1682997559,
       "certs_received": {
         "OlDog": 1703272953,
@@ -29066,7 +29626,7 @@
     "Mira21": {
       "index": 11517,
       "owner_key": "4Dk1xUtjmikDwB9Bh21dBRAfJ1XovVRwWYXJtewhy6UT",
-      "balance": 267503,
+      "balance": 307189,
       "membership_expire_on": 1707175113,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -29081,7 +29641,7 @@
     "AnnieLa": {
       "index": 8867,
       "owner_key": "4Dkopc93ax3sfzmM41RJYZ98v99xuPXt5vy94fM7FaC4",
-      "balance": 459696,
+      "balance": 499382,
       "membership_expire_on": 1715778978,
       "next_cert_issuable_on": 1663587891,
       "certs_received": {
@@ -29096,10 +29656,11 @@
     "MarcS": {
       "index": 13169,
       "owner_key": "4DmcWtfEnbGKbpEzDeJ4RyiEo7PUYgk4bQtmpBg4Drwk",
-      "balance": 124128,
+      "balance": 223814,
       "membership_expire_on": 1720205524,
-      "next_cert_issuable_on": 1691744364,
+      "next_cert_issuable_on": 1696227621,
       "certs_received": {
+        "Martine51": 1757362749,
         "ArmandeHumbert": 1752630416,
         "GwenolaLef": 1751917398,
         "Lydiabloch": 1752630416,
@@ -29111,9 +29672,9 @@
     "Julienbar": {
       "index": 13381,
       "owner_key": "4Dyhim3vxtiKycfCUhsne615H2PtiLv1ow5QHn6BUuHS",
-      "balance": 15952,
+      "balance": 54038,
       "membership_expire_on": 1723589312,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1692408998,
       "certs_received": {
         "Avalon": 1755147515,
         "Parissse": 1755279463,
@@ -29125,7 +29686,7 @@
     "titou26": {
       "index": 9296,
       "owner_key": "4E2EUwXUEy6Cz1bLmYAaoHGywzhoFGRsJ8bboKGUnDxH",
-      "balance": 396139,
+      "balance": 435825,
       "membership_expire_on": 1723759322,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -29171,7 +29732,7 @@
     "Cat_Wz": {
       "index": 7363,
       "owner_key": "4EUB46GYa4MS1rLv7LS8TknossbhSkB9ZLBtHsrtSiE2",
-      "balance": 549863,
+      "balance": 589549,
       "membership_expire_on": 1706124476,
       "next_cert_issuable_on": 1667048836,
       "certs_received": {
@@ -29186,7 +29747,7 @@
     "Kate26": {
       "index": 9247,
       "owner_key": "4EWnMKzfQuUjtbLCTtYGX6Q1LMVS2c5ExbDCx3BusKLG",
-      "balance": 401394,
+      "balance": 441080,
       "membership_expire_on": 1723759788,
       "next_cert_issuable_on": 1661049056,
       "certs_received": {
@@ -29200,26 +29761,28 @@
     "MonyKan": {
       "index": 11804,
       "owner_key": "4EeMSmYiraGZrqEgKviTyyPCgvnbZovxhYCTZkMjZJVH",
-      "balance": 70184,
+      "balance": 68270,
       "membership_expire_on": 1707344610,
-      "next_cert_issuable_on": 1693548965,
+      "next_cert_issuable_on": 1696384393,
       "certs_received": {
         "SantiTrinquete": 1754772709,
         "Anam": 1739208349,
         "Aneyusta": 1739475134,
         "EstefaniaLopez": 1754774656,
+        "IbonNakin": 1757547926,
         "Montse": 1745395333,
         "Jontxu67": 1747294109,
         "Maritxu": 1740721487,
         "Ekane": 1739475134,
         "OM-Ostepatia-eta-Masajea": 1756322750,
-        "Asiergr": 1739475659
+        "Asiergr": 1739475659,
+        "lachispis": 1757550543
       }
     },
     "MichLang": {
       "index": 2738,
       "owner_key": "4EnV9CZqytYFjEKw1VVyRKiCXShbKxxG3JD4UiptYvDX",
-      "balance": 2164400,
+      "balance": 2183260,
       "membership_expire_on": 1713481951,
       "next_cert_issuable_on": 1691550515,
       "certs_received": {
@@ -29235,7 +29798,7 @@
     "PetraFrollais": {
       "index": 11338,
       "owner_key": "4EpjFcRKB7RN6kkEnMaeQLJsUinhEUVHTMXCrPL39UKP",
-      "balance": 207347,
+      "balance": 227033,
       "membership_expire_on": 1705354128,
       "next_cert_issuable_on": 1691225047,
       "certs_received": {
@@ -29262,7 +29825,7 @@
     "JacquelinePlan": {
       "index": 2939,
       "owner_key": "4EptLypnYUf8D1Y82DWCLuK8hjya71bRPAqYQJKeY2nP",
-      "balance": 1143257,
+      "balance": 1182943,
       "membership_expire_on": 1719929276,
       "next_cert_issuable_on": 1693555500,
       "certs_received": {
@@ -29276,7 +29839,7 @@
     "SIEL": {
       "index": 7930,
       "owner_key": "4EszMFzjDi1g3udX23HafGy8SBxnBGvuTE1b7xpUMYUf",
-      "balance": 1154928,
+      "balance": 1194614,
       "membership_expire_on": 1716825134,
       "next_cert_issuable_on": 1655293393,
       "certs_received": {
@@ -29299,7 +29862,7 @@
     "KrineBlt": {
       "index": 7841,
       "owner_key": "4FFzyPrUBXuRdpWkhaxK6BykNfjUwPTsfLmyPGQXRBp8",
-      "balance": 505997,
+      "balance": 545683,
       "membership_expire_on": 1709207752,
       "next_cert_issuable_on": 1685198391,
       "certs_received": {
@@ -29317,22 +29880,25 @@
     "Olilove": {
       "index": 3320,
       "owner_key": "4FG7bKfcPjLxoM7P4nQFM65TsEdJZy82kgoePES8iNDp",
-      "balance": 996817,
-      "membership_expire_on": 1696026924,
+      "balance": 970503,
+      "membership_expire_on": 1725296120,
       "next_cert_issuable_on": 1650979456,
       "certs_received": {
+        "olione": 1757457432,
         "Berniebx": 1703558430,
         "ChristopheCompere": 1702875170,
         "amandinehinnekens": 1703549785,
         "Fabi26": 1731521308,
         "fanfan": 1703548551,
+        "ValTayie": 1759210156,
+        "Goldwing": 1759209270,
         "Maudinettepouetpouet": 1703956258
       }
     },
     "Acd64": {
       "index": 10010,
       "owner_key": "4FHJsKAZA4kxiXiAJQUoGVkvmGSgzpuMtkC6knp7kxwq",
-      "balance": 337552,
+      "balance": 377238,
       "membership_expire_on": 1697583058,
       "next_cert_issuable_on": 1666406954,
       "certs_received": {
@@ -29354,7 +29920,7 @@
     "NansCoCreator": {
       "index": 5974,
       "owner_key": "4FHhfYtv5bdjKrqmXvTdWLPpgiXALm7ZKAcw2iavSTGn",
-      "balance": 493101,
+      "balance": 532787,
       "membership_expire_on": 1697322853,
       "next_cert_issuable_on": 1668695898,
       "certs_received": {
@@ -29372,7 +29938,7 @@
     "AnneChaimbault": {
       "index": 4796,
       "owner_key": "4FRqGwaGJYKBLMYZTtQuUc3MhVeDkcCz68wy5HTHV1nX",
-      "balance": 792921,
+      "balance": 832608,
       "membership_expire_on": 1703120742,
       "next_cert_issuable_on": 1686005943,
       "certs_received": {
@@ -29382,6 +29948,7 @@
         "AngeliqueEleusis": 1752817627,
         "Matymama": 1713307713,
         "lul": 1749239953,
+        "Isabohin": 1756940822,
         "AliceWatsu": 1706943467,
         "AurelienBois": 1700287923,
         "stephanehouse": 1712775861,
@@ -29391,7 +29958,7 @@
     "GautierDavid": {
       "index": 10183,
       "owner_key": "4FTfg13DXwnj4os2VNzj9Vk9FL1LJKJUysLKEJ9hmb5j",
-      "balance": 384165,
+      "balance": 423851,
       "membership_expire_on": 1724172796,
       "next_cert_issuable_on": 1689575135,
       "certs_received": {
@@ -29408,7 +29975,7 @@
     "Sabinepapillon": {
       "index": 12366,
       "owner_key": "4FTxkRXJYtxzRNYHZnNGZJWk8JsnAy3TpLRJkJfa7oc6",
-      "balance": 146316,
+      "balance": 186002,
       "membership_expire_on": 1713228486,
       "next_cert_issuable_on": 1682755779,
       "certs_received": {
@@ -29424,7 +29991,7 @@
     "Sanpapillon": {
       "index": 1793,
       "owner_key": "4FUDty7fmfsi4FdFX9vFHhyj7DSzF1MD7MQ6CKEnnDbG",
-      "balance": 1077252,
+      "balance": 1116938,
       "membership_expire_on": 1706789172,
       "next_cert_issuable_on": 1682570296,
       "certs_received": {
@@ -29439,7 +30006,7 @@
     "Jefferson": {
       "index": 2761,
       "owner_key": "4FUxXo1asXJE2HRiRMNCir89PWTMYFEiQA4TiRVHSubt",
-      "balance": 1118064,
+      "balance": 1157750,
       "membership_expire_on": 1722886487,
       "next_cert_issuable_on": 1676952805,
       "certs_received": {
@@ -29454,12 +30021,12 @@
     "Robin_et_Odile": {
       "index": 6010,
       "owner_key": "4FXtMvrSykEHuJfvyt6YcvfxsZ3Zb8ruiVG1mGcQcGna",
-      "balance": 110563,
-      "membership_expire_on": 1720698542,
-      "next_cert_issuable_on": 1688374274,
+      "balance": 75249,
+      "membership_expire_on": 1727967908,
+      "next_cert_issuable_on": 1696482525,
       "certs_received": {
         "Beasejour": 1712453466,
-        "fdrubigny": 1699154695,
+        "fdrubigny": 1756944027,
         "pacifikveronique": 1707770449,
         "Tchois": 1699000428,
         "toypurina": 1736400610,
@@ -29472,7 +30039,7 @@
         "Co-la-Vie": 1736800789,
         "agnesphilippe": 1740358662,
         "HAMSTERDAME": 1735447087,
-        "Mika83": 1699127428,
+        "Mika83": 1756653683,
         "Canardargent": 1699301233,
         "CatherineCPo": 1710899028,
         "Altaiire": 1712819021,
@@ -29487,7 +30054,8 @@
         "Tanagra": 1708029178,
         "Val83": 1726271506,
         "Sailorcherry": 1735514775,
-        "Rajesh": 1743871904
+        "Rajesh": 1743871904,
+        "ElvireDracenie": 1757044652
       }
     },
     "Peche": {
@@ -29501,7 +30069,7 @@
     "Hombeline": {
       "index": 10218,
       "owner_key": "4FbtauePADuhSVenQ3ns4AMSyM8516wiXNuFZbvd3CTC",
-      "balance": 418049,
+      "balance": 457735,
       "membership_expire_on": 1699291173,
       "next_cert_issuable_on": 1668698393,
       "certs_received": {
@@ -29517,24 +30085,22 @@
     "Jaycee": {
       "index": 6021,
       "owner_key": "4Fe3oJ4Kamy8Xmr2J6tLpXQzTF6A7bWcjw6afssbavpA",
-      "balance": 726491,
-      "membership_expire_on": 1720376375,
-      "next_cert_issuable_on": 1673689500,
+      "balance": 756475,
+      "membership_expire_on": 0,
+      "next_cert_issuable_on": 1694067743,
       "certs_received": {
         "hibiscus11": 1699474358,
-        "ElisaDunNotreMonde": 1695941557,
         "Moineau": 1699856266,
         "danielbo": 1696977429,
-        "AudreyG11": 1699082017,
-        "StephaneDunNotreMonde": 1695596876
+        "AudreyG11": 1699082017
       }
     },
     "paidge": {
       "index": 63,
       "owner_key": "4FgeWzpWDQ2Vp38wJa2PfShLLKXyFGRLwAHA44koEhQj",
-      "balance": 4914304,
+      "balance": 4964490,
       "membership_expire_on": 1713241936,
-      "next_cert_issuable_on": 1689444282,
+      "next_cert_issuable_on": 1693885703,
       "certs_received": {
         "Midorela": 1722482009,
         "Theo": 1706136556,
@@ -29579,7 +30145,7 @@
     "FrancoisW": {
       "index": 3238,
       "owner_key": "4Fmb3EsGbbwjmZ7zRySyGSdFroSCpQ9TY46ZHweiVf85",
-      "balance": 1070079,
+      "balance": 1059765,
       "membership_expire_on": 1702314508,
       "next_cert_issuable_on": 1676969404,
       "certs_received": {
@@ -29587,18 +30153,17 @@
         "AudreyHesseling": 1702878373,
         "Alexia": 1740005774,
         "AnneLadragonitta": 1701138063,
-        "Pol": 1698533972,
+        "Pol": 1757883145,
         "WilliamWeber": 1718001704,
-        "Genfi": 1695581999,
         "Demosthene": 1756513866
       }
     },
     "IISHVARA": {
       "index": 9657,
       "owner_key": "4Fo3AjhHvWJdMTGpsF4JYwNeNPRGoum113XrzZfQBbc8",
-      "balance": 161027,
+      "balance": 200713,
       "membership_expire_on": 1724759345,
-      "next_cert_issuable_on": 1668913540,
+      "next_cert_issuable_on": 1695301224,
       "certs_received": {
         "ROCIO": 1727214788,
         "Mohinii": 1727199019,
@@ -29630,7 +30195,7 @@
     "NadineP": {
       "index": 8070,
       "owner_key": "4FsbUxaNJD7QouHENmdAJGRaP3qKjUDCNYtCKeso1S9t",
-      "balance": 422761,
+      "balance": 450447,
       "membership_expire_on": 1718894049,
       "next_cert_issuable_on": 1690440413,
       "certs_received": {
@@ -29682,8 +30247,8 @@
     "Charly2227": {
       "index": 9720,
       "owner_key": "4GCABJq2nCUvHDkHE2m7oq9s8e1cza3pEgDHqWZdrjwC",
-      "balance": 357391,
-      "membership_expire_on": 1694468062,
+      "balance": 369139,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Jsln6289": 1726407058,
@@ -29713,9 +30278,9 @@
     "LaMagicienne": {
       "index": 12464,
       "owner_key": "4GHjY3JM7e6vFVwR8zRkip2i6LuMRacE6arJfRcDK9nP",
-      "balance": 137568,
+      "balance": 258254,
       "membership_expire_on": 1714135006,
-      "next_cert_issuable_on": 1690888915,
+      "next_cert_issuable_on": 1696768978,
       "certs_received": {
         "Oree": 1745707701,
         "Pocahontas": 1745701255,
@@ -29728,8 +30293,8 @@
     "riky": {
       "index": 10607,
       "owner_key": "4GLJfWhj9S24zr7NkHtMUA7oPFhjVEa2d8H9VFdYfWht",
-      "balance": 189339,
-      "membership_expire_on": 1701255568,
+      "balance": 273484,
+      "membership_expire_on": 1727667314,
       "next_cert_issuable_on": 1690148974,
       "certs_received": {
         "LosMundosdeKrull": 1741866277,
@@ -29748,6 +30313,7 @@
         "Mariaseelcambio": 1732927592,
         "migueleon": 1747190102,
         "CarmenSR": 1732904966,
+        "Leia": 1759542591,
         "Nella": 1753156157,
         "Dixebral": 1732922583,
         "nussyna": 1746550458,
@@ -29775,8 +30341,8 @@
     "OliverChaMo": {
       "index": 10261,
       "owner_key": "4GSsRpDSTHCSQwVpUGKqSCKx3Nruq7VfGCbopoEs6Bpy",
-      "balance": 798781,
-      "membership_expire_on": 1695548301,
+      "balance": 823375,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670719033,
       "certs_received": {
         "Madreselva": 1728581292,
@@ -29790,7 +30356,7 @@
     "Monica": {
       "index": 8034,
       "owner_key": "4GUh9iSoSjoQkp8tfBbfbm8uNVp9pi7sMfXE7qgrJsQR",
-      "balance": 386302,
+      "balance": 425988,
       "membership_expire_on": 1708119278,
       "next_cert_issuable_on": 1669040320,
       "certs_received": {
@@ -29812,7 +30378,7 @@
     "PauloTerapeuta": {
       "index": 13013,
       "owner_key": "4GV24ZFAgENyhDhMVn8sSqHbaY1biAnQGrN5g22tDvsk",
-      "balance": 141828,
+      "balance": 128514,
       "membership_expire_on": 1719440467,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -29843,8 +30409,8 @@
     "JONATHANCARPENTIER": {
       "index": 9737,
       "owner_key": "4GeNiWwQGTnGHLmj9cisDNjrS8TxHVeFc5UothnoTFt4",
-      "balance": 350412,
-      "membership_expire_on": 1695570434,
+      "balance": 352708,
+      "membership_expire_on": 1727619871,
       "next_cert_issuable_on": 1685287665,
       "certs_received": {
         "Manu_El": 1738028986,
@@ -29859,7 +30425,7 @@
     "HubuH": {
       "index": 3480,
       "owner_key": "4Gee3LHtgb8WrVFujioj5HWfDECk8i4phoFu5UKAXjT7",
-      "balance": 40164,
+      "balance": 79850,
       "membership_expire_on": 1721053317,
       "next_cert_issuable_on": 1689567717,
       "certs_received": {
@@ -29887,7 +30453,7 @@
     "Stefpo170": {
       "index": 10464,
       "owner_key": "4GpuM4RcUL4171um5WpzxDA5d5a37d9eQyAbcuwWu6EZ",
-      "balance": 316105,
+      "balance": 356191,
       "membership_expire_on": 1697672177,
       "next_cert_issuable_on": 1687999074,
       "certs_received": {
@@ -29904,7 +30470,7 @@
     "OREAN12": {
       "index": 12931,
       "owner_key": "4Gq2amRt3Tw6jKyQW6jFWp6wPVDcArMamjqtVS5egddc",
-      "balance": 79964,
+      "balance": 119650,
       "membership_expire_on": 1718725168,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -29929,11 +30495,12 @@
     "anaka": {
       "index": 2925,
       "owner_key": "4H3JosQBsSqP22CQ9Bq1jrjZBpVydLpknGWcJVEuH1MQ",
-      "balance": 612549,
+      "balance": 562235,
       "membership_expire_on": 1713515287,
-      "next_cert_issuable_on": 1656999023,
+      "next_cert_issuable_on": 1694763775,
       "certs_received": {
         "Crystal": 1709875508,
+        "IrisBleu": 1757807518,
         "TheCat": 1722415448,
         "FranckBarbe": 1753317819,
         "Josephine": 1699216618,
@@ -29945,9 +30512,9 @@
     "Cristol-Iquid": {
       "index": 4773,
       "owner_key": "4H57a3kv6nEWXDgud7KZrwJpPCu1E9uHz9eDE1UsTJ24",
-      "balance": 61714,
-      "membership_expire_on": 1699834313,
-      "next_cert_issuable_on": 1690806829,
+      "balance": 56160,
+      "membership_expire_on": 1726277324,
+      "next_cert_issuable_on": 1696154655,
       "certs_received": {
         "Crystal": 1720911213,
         "Juju2pom": 1705641103,
@@ -29972,7 +30539,8 @@
         "Maaude09": 1752782063,
         "Albertocc": 1723145098,
         "NadineGS": 1731709101,
-        "Lolobuss": 1701678003,
+        "Lolobuss": 1757883602,
+        "Enric": 1758578222,
         "ManuVille": 1737144568,
         "Hermione": 1736796563,
         "Chanchan": 1753849755,
@@ -29992,14 +30560,16 @@
     "MurielleMuMu": {
       "index": 13429,
       "owner_key": "4HTW7oGbXPLWtLCBBgYx32ZAmX2qEpJo3fVmLWEdCZPv",
-      "balance": 14376,
+      "balance": 36062,
       "membership_expire_on": 1723494162,
-      "next_cert_issuable_on": 1693035329,
+      "next_cert_issuable_on": 1695211845,
       "certs_received": {
         "Rachel_Haromniya": 1756174792,
         "Malena58": 1755991321,
         "Hernest": 1755058249,
+        "TristanG1": 1758860280,
         "CecilePhoenix": 1755972430,
+        "Christine1892": 1757385100,
         "SabineL": 1755075973,
         "Danie": 1755107122
       }
@@ -30007,7 +30577,7 @@
     "Sixalpha": {
       "index": 9172,
       "owner_key": "4HVvTrm6o1je84nvhHdx3fPyM1PLpRmkx5tCJLCPV5Fp",
-      "balance": 417270,
+      "balance": 456956,
       "membership_expire_on": 1720278883,
       "next_cert_issuable_on": 1664450576,
       "certs_received": {
@@ -30031,7 +30601,7 @@
     "BHT": {
       "index": 10130,
       "owner_key": "4Hn36Qcp4fEoyVNRDjW3PToLVhn4868PiynRfZoyjRbd",
-      "balance": 325521,
+      "balance": 365207,
       "membership_expire_on": 1697181070,
       "next_cert_issuable_on": 1668848932,
       "certs_received": {
@@ -30045,7 +30615,7 @@
     "NadineR": {
       "index": 10279,
       "owner_key": "4HrBLJEMJFrqk96Ge94aDHPJnhWPuxpqCuLw7GdHYJ41",
-      "balance": 332813,
+      "balance": 372499,
       "membership_expire_on": 1698090980,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -30068,9 +30638,9 @@
     "Samuel77": {
       "index": 6019,
       "owner_key": "4HzHGWLsBDM1NQ42XiDqR7GJz9WHt5FjFddgFyvRWWNQ",
-      "balance": 1611901,
-      "membership_expire_on": 1694781342,
-      "next_cert_issuable_on": 1689151837,
+      "balance": 1574587,
+      "membership_expire_on": 1725800943,
+      "next_cert_issuable_on": 1694316278,
       "certs_received": {
         "RomainKornig": 1706584808,
         "MaryseR": 1740638836,
@@ -30105,7 +30675,7 @@
     "Kamilmilka": {
       "index": 7389,
       "owner_key": "4J6oQ24U3pLE7bv9FWNeP5Kvs7dAZWsWgSyAAw7adnpL",
-      "balance": 163152,
+      "balance": 61862,
       "membership_expire_on": 1709127306,
       "next_cert_issuable_on": 1679279627,
       "certs_received": {
@@ -30137,13 +30707,12 @@
     "daryl": {
       "index": 2176,
       "owner_key": "4JBGYm5oLjZcjrKi3kHoqWM1VxjfTmN5yCoX5G5xNc5t",
-      "balance": 1855188,
-      "membership_expire_on": 1698980672,
-      "next_cert_issuable_on": 1693026045,
+      "balance": 1894874,
+      "membership_expire_on": 1725707424,
+      "next_cert_issuable_on": 1694221824,
       "certs_received": {
         "clemlamalice": 1703911977,
         "nuvolari": 1697254984,
-        "LaureFemmeVanne": 1696233513,
         "stephanechevreau": 1704437313,
         "Pascale72": 1756081363,
         "NordineVallas": 1755966376,
@@ -30159,7 +30728,7 @@
     "samsufy": {
       "index": 3884,
       "owner_key": "4JBKAVKgGCanfgjvuc7dVvfmVn4HER91sUuzYvYmuSo6",
-      "balance": 104012,
+      "balance": 78698,
       "membership_expire_on": 1714738485,
       "next_cert_issuable_on": 1677554556,
       "certs_received": {
@@ -30195,9 +30764,9 @@
     "Paslake": {
       "index": 10536,
       "owner_key": "4JGs7LCNFmDcK4RGeXKPfEF4FiAXf4GsdyS4B3dHKABN",
-      "balance": 272269,
-      "membership_expire_on": 1701095783,
-      "next_cert_issuable_on": 1687747073,
+      "balance": 310855,
+      "membership_expire_on": 1727651956,
+      "next_cert_issuable_on": 1695514458,
       "certs_received": {
         "Piet": 1732654284,
         "Paradine": 1735604628,
@@ -30217,7 +30786,7 @@
     "Baloucorsair": {
       "index": 9256,
       "owner_key": "4JMviXYJjDVUoPTyrUaVEWrhdhtkhccD98fvHvqsza7V",
-      "balance": 337546,
+      "balance": 377232,
       "membership_expire_on": 1723886993,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -30231,7 +30800,7 @@
     "Bernard": {
       "index": 12694,
       "owner_key": "4JY7bbwWN6MsPMp5sAQfaqzH6yhzJbBsXwL5u8spW6Pz",
-      "balance": 117072,
+      "balance": 161758,
       "membership_expire_on": 1714610807,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -30246,9 +30815,9 @@
     "Danysa": {
       "index": 5260,
       "owner_key": "4JfxDjALsYac8rdDnxSgLJCm44KamM9qiyY5YUgELopP",
-      "balance": 14798,
+      "balance": 42584,
       "membership_expire_on": 1717840333,
-      "next_cert_issuable_on": 1691810432,
+      "next_cert_issuable_on": 1695621430,
       "certs_received": {
         "SvetRuskof": 1702795995,
         "Magabrasil2020": 1700206566,
@@ -30262,9 +30831,9 @@
         "NadineGS": 1749851509,
         "EnderWither": 1719690839,
         "soizh": 1720821300,
-        "hinalola": 1695936633,
         "Margauxgau": 1717343944,
         "Nyttliv": 1705115684,
+        "VeroniqueB": 1759854727,
         "Marielac": 1723846775
       }
     },
@@ -30279,7 +30848,7 @@
     "lesrivagesdelescure": {
       "index": 7273,
       "owner_key": "4Jjpd6jgNYt237h3eLDM6ksp65h5ZXWKysVZxKwTJNsw",
-      "balance": 595263,
+      "balance": 634949,
       "membership_expire_on": 1709322920,
       "next_cert_issuable_on": 1649821580,
       "certs_received": {
@@ -30305,9 +30874,9 @@
     "CHRISTIANE": {
       "index": 8643,
       "owner_key": "4JpJN5vhXkznREFA8yfuAeZ76hRyHzRLdhsarJwbxgc4",
-      "balance": 99378,
+      "balance": 94064,
       "membership_expire_on": 1710955516,
-      "next_cert_issuable_on": 1693553459,
+      "next_cert_issuable_on": 1696676177,
       "certs_received": {
         "Natalya71": 1731119083,
         "SvetRuskof": 1719172472,
@@ -30330,7 +30899,7 @@
     "Manou": {
       "index": 9373,
       "owner_key": "4JqGniGnikPehwLsMmX7oEqjab6c8LKgVZiQnAA84bae",
-      "balance": 407650,
+      "balance": 447336,
       "membership_expire_on": 1724289877,
       "next_cert_issuable_on": 1681207442,
       "certs_received": {
@@ -30350,7 +30919,7 @@
     "Lisembert": {
       "index": 10142,
       "owner_key": "4Jt4ctBuSV7AeBtQnbNHTiCiguvCCZ8nf6b9EMWH1nbi",
-      "balance": 406752,
+      "balance": 668938,
       "membership_expire_on": 1724613897,
       "next_cert_issuable_on": 1673865666,
       "certs_received": {
@@ -30371,9 +30940,9 @@
     "Naturkike": {
       "index": 12813,
       "owner_key": "4K3sp9HzHtwb85Vz4MPguhnENTorN56QB7K12gEVFQht",
-      "balance": 211584,
+      "balance": 275370,
       "membership_expire_on": 1717421602,
-      "next_cert_issuable_on": 1692063186,
+      "next_cert_issuable_on": 1693866360,
       "certs_received": {
         "riky": 1750585870,
         "unica": 1749061710,
@@ -30382,6 +30951,7 @@
         "nussyna": 1748981253,
         "JoanaGomez": 1749061362,
         "EMA": 1749019661,
+        "Marianfs": 1756855948,
         "OrganikSolution": 1749419154,
         "AndresXaudi": 1749062450
       }
@@ -30421,7 +30991,7 @@
     "OBIYAN10J": {
       "index": 9971,
       "owner_key": "4KFebZnhvUW5stdLP7syhJUK9FeZmZkqPFr2dVYguEjL",
-      "balance": 336429,
+      "balance": 376115,
       "membership_expire_on": 1724600988,
       "next_cert_issuable_on": 1693115388,
       "certs_received": {
@@ -30440,7 +31010,7 @@
     "ophel": {
       "index": 10177,
       "owner_key": "4KH9tp6KmjcgiG4yQmXX346u1hdaZrjpn3hYJCSoxKDg",
-      "balance": 321285,
+      "balance": 360971,
       "membership_expire_on": 1698790737,
       "next_cert_issuable_on": 1673425533,
       "certs_received": {
@@ -30466,7 +31036,6 @@
         "Puppi": 1745039831,
         "SicouJess": 1707183168,
         "Lhirondelle": 1707456386,
-        "Aneuf": 1695406187,
         "MahoRC": 1707378524,
         "CyyP": 1707182475,
         "roodinux": 1704873860,
@@ -30485,8 +31054,8 @@
     "EstherVM": {
       "index": 9990,
       "owner_key": "4KL7h38QNDCMEA3cLSsdv9Mgwy22pqrp2CryqMuBhd6f",
-      "balance": 100953,
-      "membership_expire_on": 1697227049,
+      "balance": 59639,
+      "membership_expire_on": 1725304867,
       "next_cert_issuable_on": 1691080877,
       "certs_received": {
         "Aguas": 1734061848,
@@ -30522,9 +31091,9 @@
     "phidelo": {
       "index": 8185,
       "owner_key": "4KUbbfH12okiyr1yEjGpzXwCo82yFSiCivJxWGmzyw53",
-      "balance": 466699,
+      "balance": 514385,
       "membership_expire_on": 1711288944,
-      "next_cert_issuable_on": 1688647104,
+      "next_cert_issuable_on": 1694606669,
       "certs_received": {
         "Artdevivre": 1748382734,
         "AnnC57": 1748382734,
@@ -30549,9 +31118,9 @@
     "Amethyste13": {
       "index": 7143,
       "owner_key": "4KhvLu6nKrcAyapU7dv95JabkYSZGRkuq5WN4wDJJP8H",
-      "balance": 274603,
+      "balance": 217290,
       "membership_expire_on": 1705616087,
-      "next_cert_issuable_on": 1675776084,
+      "next_cert_issuable_on": 1695647939,
       "certs_received": {
         "Lionel_Dechilly": 1709284576,
         "NathalieEtreSouverain": 1709268990,
@@ -30573,19 +31142,18 @@
     "Gerg": {
       "index": 888,
       "owner_key": "4Ktopx8UqZuWXK773XoVNf3bTpNb5ZPhhdrYMxRunNJi",
-      "balance": 664309,
+      "balance": 703995,
       "membership_expire_on": 1720743550,
-      "next_cert_issuable_on": 1675168873,
+      "next_cert_issuable_on": 1694587621,
       "certs_received": {
         "Katou": 1699677569,
         "piaaf31": 1709416955,
-        "Lilou": 1696103818,
         "MikaYeel": 1701713341,
         "Nelsan": 1712792723,
         "Michel1955": 1713628075,
         "Sylvieswing82": 1699927984,
         "Pichotilha": 1712817083,
-        "fredswing": 1698735802
+        "fredswing": 1759012260
       }
     },
     "Umaaum": {
@@ -30613,7 +31181,7 @@
     "BrigitteBC": {
       "index": 11320,
       "owner_key": "4L98mHqEfNMp2KM9MN6YX8BKXaZYJXGjFqB2pmw1QaQX",
-      "balance": 291511,
+      "balance": 226197,
       "membership_expire_on": 1704748680,
       "next_cert_issuable_on": 1681026418,
       "certs_received": {
@@ -30640,7 +31208,7 @@
     "lucilevignon": {
       "index": 11431,
       "owner_key": "4LVw1P2s6KNPhdvdcBrgdE7Gi1KAkigkvkBppJPLiVo5",
-      "balance": 224916,
+      "balance": 264602,
       "membership_expire_on": 1703106312,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -30673,7 +31241,7 @@
     "Marionblssrdom8": {
       "index": 10847,
       "owner_key": "4LaU3fixfuG6R7X6t5BFubGYJ4CsVD2xAEVQYuyMmSf2",
-      "balance": 305748,
+      "balance": 345434,
       "membership_expire_on": 1698417430,
       "next_cert_issuable_on": 1671535660,
       "certs_received": {
@@ -30687,7 +31255,7 @@
     "jbdeproost": {
       "index": 12219,
       "owner_key": "4Lch3REqxKx3dtLzfAi6jHUXRbJ5bbdvULEkx6udza5q",
-      "balance": 159800,
+      "balance": 199486,
       "membership_expire_on": 1711803530,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -30709,14 +31277,14 @@
     "Carole26": {
       "index": 5388,
       "owner_key": "4Le9ioWvv6xSGXeC5aaoNAbBy5cR1L1NKmBuUrNdESA7",
-      "balance": 408030,
+      "balance": 427716,
       "membership_expire_on": 1711937685,
-      "next_cert_issuable_on": 1692753135,
+      "next_cert_issuable_on": 1695314201,
       "certs_received": {
         "Rachele": 1717745512,
         "JeromeGolliet": 1730265654,
         "Ninamaste": 1719119647,
-        "Philippe26": 1700157647,
+        "Philippe26": 1759442612,
         "Kouleurs": 1726691896,
         "gege110560": 1731479534,
         "TristanG1": 1707412354,
@@ -30727,6 +31295,7 @@
         "Alisce": 1728700235,
         "SylvainGabarrou": 1702609830,
         "Helsephine": 1727728036,
+        "Lorraine83": 1757318556,
         "chronophonix": 1708164994,
         "martine26": 1710503387,
         "ChristineWilloth26": 1709633335,
@@ -30736,7 +31305,7 @@
     "Honore2020": {
       "index": 4271,
       "owner_key": "4LefhyWrJWgu8zXbjtzXmWVKqVWRbKU2vkwsKie8WTuQ",
-      "balance": 1137028,
+      "balance": 1176714,
       "membership_expire_on": 1702372674,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -30751,7 +31320,7 @@
     "ForrestVaillant": {
       "index": 3066,
       "owner_key": "4LiLrmJz9JiTzxhRZpVWrJvv4sr9g9tCxHxjVGxjqKFg",
-      "balance": 1424119,
+      "balance": 1463805,
       "membership_expire_on": 1703340205,
       "next_cert_issuable_on": 1652435990,
       "certs_received": {
@@ -30769,7 +31338,7 @@
     "DidierDavid": {
       "index": 1818,
       "owner_key": "4Loxm2nzpcgcEzqBWW6mgQdWcqdYjMXuXWBp4NbqaHki",
-      "balance": 1332840,
+      "balance": 1372526,
       "membership_expire_on": 1724005554,
       "next_cert_issuable_on": 1688641850,
       "certs_received": {
@@ -30783,7 +31352,6 @@
         "Toma": 1710835312,
         "Bricalie": 1748118211,
         "Cat": 1734673061,
-        "Iguana": 1694661800,
         "Mikhaella3448": 1750228238,
         "BRIGITTE2019": 1702454063,
         "Eauvive": 1755555692,
@@ -30796,7 +31364,7 @@
     "YannPapaYal": {
       "index": 4772,
       "owner_key": "4LqFzVoxj27LwxjXmv9unAxXrfUZxJDN4ZPbUj6vWjbL",
-      "balance": 644147,
+      "balance": 683833,
       "membership_expire_on": 1715212875,
       "next_cert_issuable_on": 1652365954,
       "certs_received": {
@@ -30842,7 +31410,7 @@
     "MurielLaragne": {
       "index": 10457,
       "owner_key": "4Lt1zLY7JW9ntVdukHcpEq7JDWPhs2Bh9Eeecn5NA27o",
-      "balance": 318864,
+      "balance": 142950,
       "membership_expire_on": 1700254875,
       "next_cert_issuable_on": 1673174141,
       "certs_received": {
@@ -30858,30 +31426,32 @@
     "reG1nald": {
       "index": 13038,
       "owner_key": "4LvywMd5wFCCYXxh7MfvhjUAwrSYS6toegM6YUNWyyMV",
-      "balance": 64320,
+      "balance": 78038,
       "membership_expire_on": 1719161837,
-      "next_cert_issuable_on": 1691263005,
+      "next_cert_issuable_on": 1695522047,
       "certs_received": {
         "AgnesJs": 1751301209,
         "ElaineDana": 1751335114,
         "Annae": 1751269340,
         "Goldwing": 1753181845,
         "MikaPac": 1751300179,
+        "GeneBe": 1757573668,
         "IsaPetitsBonheurs": 1751255237
       }
     },
     "Tembo": {
       "index": 11660,
       "owner_key": "4LwTFEicLbTHeDxygBwRLEVaMA6aSre8f4WMBqCJmmcA",
-      "balance": 249764,
+      "balance": 284450,
       "membership_expire_on": 1707667474,
-      "next_cert_issuable_on": 1693327326,
+      "next_cert_issuable_on": 1694681037,
       "certs_received": {
         "reididflorent": 1739509331,
         "Etipol61": 1754933234,
         "ColetteNavaux": 1751592988,
         "Fox": 1742626241,
         "Chabe13": 1739816728,
+        "Tournesol": 1756570576,
         "Augusta24": 1756319390,
         "labradorite": 1751601974,
         "Elodie": 1739853872,
@@ -30905,7 +31475,7 @@
     "YohannAnnet": {
       "index": 6892,
       "owner_key": "4ME7ekrQ4aagJS2zWQshasM6drXow6WPKKB7aSFgtchV",
-      "balance": 602950,
+      "balance": 642636,
       "membership_expire_on": 1702356128,
       "next_cert_issuable_on": 1680085115,
       "certs_received": {
@@ -30944,9 +31514,9 @@
     "IsabelleP": {
       "index": 11531,
       "owner_key": "4ML6PPRmvxg6ywsfeste35AjBqifoHCqpiZW9uw9Dx9e",
-      "balance": 768304,
+      "balance": 807990,
       "membership_expire_on": 1703281017,
-      "next_cert_issuable_on": 1681735417,
+      "next_cert_issuable_on": 1695519203,
       "certs_received": {
         "SvetRuskof": 1738135357,
         "Mia81": 1738780263,
@@ -30971,7 +31541,7 @@
     "Gaelle81": {
       "index": 8258,
       "owner_key": "4MNXayxE5D7gxE8YMB1Bte3JhFgjLUkyt1RXx2ZyMcMd",
-      "balance": 794214,
+      "balance": 833900,
       "membership_expire_on": 1710198185,
       "next_cert_issuable_on": 1684152498,
       "certs_received": {
@@ -30989,9 +31559,9 @@
     "Lys2703": {
       "index": 7607,
       "owner_key": "4MT2BzoSdwdAM8381tF5B1Tx5Vcd4yrYpoTWCvuK5sSF",
-      "balance": 452194,
+      "balance": 436880,
       "membership_expire_on": 1706907026,
-      "next_cert_issuable_on": 1677895497,
+      "next_cert_issuable_on": 1695558484,
       "certs_received": {
         "Milan": 1709461532,
         "NathBro": 1738542118,
@@ -31019,7 +31589,7 @@
     "Samuel": {
       "index": 5275,
       "owner_key": "4MZf9tgPU38TJBmUZSNT3oUD5Xij7fWgqvCrmUQCJvBh",
-      "balance": 818314,
+      "balance": 858000,
       "membership_expire_on": 1710125433,
       "next_cert_issuable_on": 1689473898,
       "certs_received": {
@@ -31037,7 +31607,7 @@
     "Gigane": {
       "index": 10361,
       "owner_key": "4MZsSjhsAc1ESe8uyDoRBhRjobmS4AH29932rwQmkymM",
-      "balance": 230518,
+      "balance": 270204,
       "membership_expire_on": 1699299826,
       "next_cert_issuable_on": 1676996625,
       "certs_received": {
@@ -31053,8 +31623,8 @@
     "Namaste": {
       "index": 9980,
       "owner_key": "4MaTRfWF5Dc5uierHocKBTQacV8RLXGwf11miSCBUqgp",
-      "balance": 68695,
-      "membership_expire_on": 1697346521,
+      "balance": 59481,
+      "membership_expire_on": 1726480838,
       "next_cert_issuable_on": 1685841260,
       "certs_received": {
         "Marianoconcentrado": 1732064280,
@@ -31068,7 +31638,7 @@
     "Socrate": {
       "index": 12775,
       "owner_key": "4Mc4R6VkvKQd41xLYSrFZuVAutR5t1j4Z8nrAqcKWcSZ",
-      "balance": 112824,
+      "balance": 152510,
       "membership_expire_on": 1716937390,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -31082,9 +31652,9 @@
     "MicheleSauterey": {
       "index": 13219,
       "owner_key": "4McKyUses3vTyqYHAjPUP7831pPbBs8xFw178kW9ibLP",
-      "balance": 44920,
+      "balance": 61606,
       "membership_expire_on": 1719575494,
-      "next_cert_issuable_on": 1692968412,
+      "next_cert_issuable_on": 1695889319,
       "certs_received": {
         "DomRomy20": 1751133472,
         "LeDemineur21": 1751229405,
@@ -31100,7 +31670,7 @@
     "Joce78": {
       "index": 9974,
       "owner_key": "4Meqmn28S73Ltx2TZBRxst4s4h4Rdk3zs3KKDKTizXsq",
-      "balance": 209129,
+      "balance": 248815,
       "membership_expire_on": 1724160306,
       "next_cert_issuable_on": 1692676399,
       "certs_received": {
@@ -31114,6 +31684,7 @@
         "Totoro": 1729125447,
         "Eleonore": 1729048729,
         "kikilulu": 1729041014,
+        "Bikoucel86": 1759640236,
         "AndreasLivet": 1740085863
       }
     },
@@ -31128,7 +31699,7 @@
     "LindaT": {
       "index": 11157,
       "owner_key": "4MjhR5x73ehbpLTayQMgnKN5EkSGRyAhM73tFiBZMSw8",
-      "balance": 250332,
+      "balance": 290018,
       "membership_expire_on": 1718578179,
       "next_cert_issuable_on": 1687419368,
       "certs_received": {
@@ -31143,7 +31714,7 @@
     "Kornelia2404": {
       "index": 12485,
       "owner_key": "4MqdAerFYW5rWPV394rEg3jFcwiBHxmR3B9SuZsCrnPS",
-      "balance": 185232,
+      "balance": 224918,
       "membership_expire_on": 1714265647,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -31158,8 +31729,8 @@
     "Aryana": {
       "index": 9600,
       "owner_key": "4MrRoQxfa23W4RxuKjER9Yq9b7hizE1UT8iF2qiixoNn",
-      "balance": 333701,
-      "membership_expire_on": 1694263011,
+      "balance": 343313,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670730656,
       "certs_received": {
         "Jerome035": 1738472155,
@@ -31174,9 +31745,9 @@
     "VildarinIoan": {
       "index": 11961,
       "owner_key": "4MtSUXUXPqvoFnfHSRVcPwGBD9m3Qte7vXB4SpXv5f5V",
-      "balance": 436815,
+      "balance": 414551,
       "membership_expire_on": 1710204415,
-      "next_cert_issuable_on": 1687062253,
+      "next_cert_issuable_on": 1696181503,
       "certs_received": {
         "OctavioAG": 1741764631,
         "tamaranspa": 1741765122,
@@ -31188,6 +31759,20 @@
         "Fefy": 1741762994
       }
     },
+    "Chloe2305": {
+      "index": 13755,
+      "owner_key": "4MuNNZgCgLw2U1dM1cBSRKqaH5d9YcqN7ehK8G1PtPyV",
+      "balance": 17978,
+      "membership_expire_on": 1725450139,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Liminence": 1759729301,
+        "Sandylore": 1759771848,
+        "Marie51": 1759733989,
+        "Keramina51": 1759786411,
+        "Nadsoljoy": 1759739438
+      }
+    },
     "LovingCompassion": {
       "index": 4579,
       "owner_key": "4Mx2gXYm3USaArUgf81qNcmBeg4D21G6jL1567F6YEhw",
@@ -31201,7 +31786,7 @@
     "ARSINOE": {
       "index": 7661,
       "owner_key": "4N1H3ykG4GfQR25UyREgNXWRBefGWBtNCmodUbtgmWNb",
-      "balance": 551245,
+      "balance": 590931,
       "membership_expire_on": 1710528770,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -31218,7 +31803,7 @@
     "AmeHC": {
       "index": 6215,
       "owner_key": "4N2fTyvwMNFBPaS4ZbuB5hiyvfyPbK2ax36gbQNHoPDA",
-      "balance": 695161,
+      "balance": 734847,
       "membership_expire_on": 1725046984,
       "next_cert_issuable_on": 1693561384,
       "certs_received": {
@@ -31226,19 +31811,19 @@
         "Badiane": 1703700297,
         "JuanLu": 1700416559,
         "ANOLIS": 1702495080,
-        "CorinneCoco": 1701125313,
+        "CorinneCoco": 1756604956,
         "lilithdu34": 1700326404,
         "chane": 1705697739,
-        "AuFilDuTemps": 1700116804,
-        "Fleur": 1700117751,
-        "MatHC": 1700884758,
+        "AuFilDuTemps": 1756607798,
+        "Fleur": 1756608160,
+        "MatHC": 1756604584,
         "Yaelle48": 1700271228
       }
     },
     "AlainVillain": {
       "index": 10370,
       "owner_key": "4N5h1APeXaCxXPzprdJpxMhPYKDLAWKrHX6tkvddG9LE",
-      "balance": 266918,
+      "balance": 336604,
       "membership_expire_on": 1700006981,
       "next_cert_issuable_on": 1688979396,
       "certs_received": {
@@ -31255,7 +31840,7 @@
     "Math_25": {
       "index": 10499,
       "owner_key": "4N7ihuGqcLfdHhJCf3TNARXVikfv3cEwQDvvAjGpDFoD",
-      "balance": 359002,
+      "balance": 398688,
       "membership_expire_on": 1699221441,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -31269,10 +31854,11 @@
     "JeanChristopheSekinger": {
       "index": 13326,
       "owner_key": "4NFCNoq7YMdcXmzznT4Jy8HnhrF49c2FBD6nitJDy87c",
-      "balance": 14600,
+      "balance": 102886,
       "membership_expire_on": 1719958840,
       "next_cert_issuable_on": 1692709486,
       "certs_received": {
+        "1000i100": 1757663486,
         "DyanZan_Gce": 1754440848,
         "Dieudo": 1751522928,
         "denizen": 1755447122,
@@ -31285,13 +31871,16 @@
     "Malena58": {
       "index": 13021,
       "owner_key": "4NJATSSwqHA9zxee8Y12t3xkuJ8bVuoekhM6tYeWfJdv",
-      "balance": 115752,
+      "balance": 152438,
       "membership_expire_on": 1717866445,
-      "next_cert_issuable_on": 1692948121,
+      "next_cert_issuable_on": 1695540168,
       "certs_received": {
         "Rachel_Haromniya": 1749845730,
+        "MurielleMuMu": 1757208517,
         "Hernest": 1749797976,
         "CecilePhoenix": 1750389214,
+        "florian": 1757100969,
+        "AnnParisot": 1758404263,
         "Lylie_Bulle": 1750475272,
         "SabineL": 1749876126,
         "Danie": 1750392911
@@ -31300,7 +31889,7 @@
     "YvelineMNC": {
       "index": 6632,
       "owner_key": "4NKtgDk896rmzc62by48QkZGQ1xBYmoQcFCLya6rXWrq",
-      "balance": 455219,
+      "balance": 449905,
       "membership_expire_on": 1700068326,
       "next_cert_issuable_on": 1678418318,
       "certs_received": {
@@ -31323,7 +31912,7 @@
     "Lasuik": {
       "index": 12070,
       "owner_key": "4NWJwaZgRfuqxkAteNrsjumHGYXz1yV2bRyHx3ytUbFK",
-      "balance": 189084,
+      "balance": 228770,
       "membership_expire_on": 1706557985,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -31352,7 +31941,7 @@
     "Karine07": {
       "index": 8218,
       "owner_key": "4Nbz4WVn2cHdGpF3aj1Fs3wCVZUAz5Kp7UimGqyzkxkD",
-      "balance": 490848,
+      "balance": 530534,
       "membership_expire_on": 1712594641,
       "next_cert_issuable_on": 1681109041,
       "certs_received": {
@@ -31392,9 +31981,9 @@
     "NathalieEtreSouverain": {
       "index": 6588,
       "owner_key": "4Nhx7qxVSTvVDpcvW2K3kVRvPJz8axSfgeX3KL9txDwY",
-      "balance": 382394,
-      "membership_expire_on": 1699990402,
-      "next_cert_issuable_on": 1688140069,
+      "balance": 413180,
+      "membership_expire_on": 1727207312,
+      "next_cert_issuable_on": 1695629921,
       "certs_received": {
         "Lionel_Dechilly": 1712429762,
         "Selena": 1719460962,
@@ -31403,6 +31992,7 @@
         "ChristelleBaba": 1715957655,
         "Ludolol13200": 1718780520,
         "Maminou13": 1704687692,
+        "laurencef": 1757018365,
         "Pizzawallas": 1704686363,
         "YehoshuaRossille": 1709920531,
         "David13500": 1704694948,
@@ -31417,6 +32007,7 @@
         "carineg": 1734147891,
         "SandrineLeslycornes": 1728057797,
         "kerhas": 1750576451,
+        "Patrakage": 1755938166,
         "MartineCoquelicot": 1716956673,
         "Disine": 1715928942,
         "MarieAngevin13": 1729043497,
@@ -31443,7 +32034,7 @@
     "HJarry": {
       "index": 12291,
       "owner_key": "4NoHrNsLfxp3GkkNhWH4z1Lna2tFRXAruBnjWLrNvRoH",
-      "balance": 163792,
+      "balance": 203479,
       "membership_expire_on": 1712660678,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -31473,7 +32064,7 @@
     "weyando": {
       "index": 6415,
       "owner_key": "4PA4hEQFRboW5JnEjdcBW9q4xR6vXTSyyHwBdkgeM77p",
-      "balance": 478995,
+      "balance": 518681,
       "membership_expire_on": 1701046333,
       "next_cert_issuable_on": 1669391895,
       "certs_received": {
@@ -31491,7 +32082,7 @@
     "nicolemarguerite": {
       "index": 6935,
       "owner_key": "4PCCYbtaBDMdyBuxTen6wfPgfSy5VZ7WtQSqdeiikDSa",
-      "balance": 554259,
+      "balance": 593945,
       "membership_expire_on": 1702222723,
       "next_cert_issuable_on": 1683279820,
       "certs_received": {
@@ -31508,11 +32099,11 @@
     "Nora": {
       "index": 2966,
       "owner_key": "4PJhpA3Pns1yCTo5YsXiqLaBEgqTB56RLATqN5nujrFP",
-      "balance": 1111726,
+      "balance": 1151412,
       "membership_expire_on": 1702220218,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Lulu31Verfeil": 1695190173,
+        "Lulu31Verfeil": 1758241281,
         "fabiolino": 1735713165,
         "diletta": 1735154099,
         "LaeVie": 1736758766,
@@ -31524,8 +32115,8 @@
     "AnnePG": {
       "index": 10007,
       "owner_key": "4PM7oS6vx6VsQ28PocZDEZVNwxwhxZAqDakhdpCK3gfj",
-      "balance": 325052,
-      "membership_expire_on": 1696510384,
+      "balance": 364738,
+      "membership_expire_on": 1726487002,
       "next_cert_issuable_on": 1675687918,
       "certs_received": {
         "Sylou04": 1733099713,
@@ -31553,7 +32144,7 @@
     "Manuparadis": {
       "index": 11357,
       "owner_key": "4PPjo3d1o2ecjF8feujcsREzGfpS727sR6GaYhSwTVpz",
-      "balance": 231270,
+      "balance": 270956,
       "membership_expire_on": 1704295049,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -31577,11 +32168,10 @@
     "NathalieCatelin": {
       "index": 5446,
       "owner_key": "4PS3W3QeDugja1Y6ZQHwmQVjNWbanc8fHhRTuMD1RUiU",
-      "balance": 320269,
+      "balance": 359955,
       "membership_expire_on": 1712925102,
       "next_cert_issuable_on": 1687334429,
       "certs_received": {
-        "IngridCourreges": 1696421398,
         "Nickita13": 1722660570,
         "gelauni": 1728180956,
         "Christine13": 1750199794,
@@ -31593,7 +32183,7 @@
     "Montsin": {
       "index": 9552,
       "owner_key": "4PXi7tC8XgwXXbcRnRoHDPynLhh34o6TbPV1XfDY3xhT",
-      "balance": 229618,
+      "balance": 209304,
       "membership_expire_on": 1721854479,
       "next_cert_issuable_on": 1691475064,
       "certs_received": {
@@ -31622,7 +32212,7 @@
     "baobab51": {
       "index": 11916,
       "owner_key": "4PZahu7fjBq94c6kKsZYdZThqDDRYCmbXNfhiiWj1ojp",
-      "balance": 201792,
+      "balance": 241478,
       "membership_expire_on": 1708709305,
       "next_cert_issuable_on": 1679850465,
       "certs_received": {
@@ -31636,7 +32226,7 @@
     "Augusta": {
       "index": 13051,
       "owner_key": "4Q6gsRzGNsUz3UY2546jADvJ4GmrPBDG6NYtkpGUDUVw",
-      "balance": 106248,
+      "balance": 175934,
       "membership_expire_on": 1715429072,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -31698,8 +32288,8 @@
     "fabireine": {
       "index": 9349,
       "owner_key": "4QMPBPiuczK7DZu2hpy3YhSE2Z5n5WqpsXaBi3bx41r8",
-      "balance": 385680,
-      "membership_expire_on": 0,
+      "balance": 417958,
+      "membership_expire_on": 1725622123,
       "next_cert_issuable_on": 1673442920,
       "certs_received": {
         "FraBro": 1724892582,
@@ -31715,7 +32305,7 @@
     "Sophie": {
       "index": 3715,
       "owner_key": "4QP6ZBvAoLkWPCTK3DyNeMdQqqYgtDP2UVScSf1iLCvL",
-      "balance": 1480409,
+      "balance": 1520095,
       "membership_expire_on": 1700615117,
       "next_cert_issuable_on": 1675156185,
       "certs_received": {
@@ -31735,8 +32325,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1651035139,
       "certs_received": {
-        "AurelienPiton": 1696718914,
-        "Kogyn": 1696718914,
         "aline31": 1697937577,
         "ofontes": 1697937962
       }
@@ -31744,7 +32332,7 @@
     "TataYoyo": {
       "index": 2913,
       "owner_key": "4QVNAdmHKb4yAv1cB3otv9gMpxWdbhmYZxnRCiUGkoH4",
-      "balance": 1284946,
+      "balance": 1324632,
       "membership_expire_on": 1703962694,
       "next_cert_issuable_on": 1685284867,
       "certs_received": {
@@ -31775,7 +32363,7 @@
     "CRICRI77": {
       "index": 12387,
       "owner_key": "4QrScKyr6VMAn6ZfCAmNNLj9QjyJsVbxThBR35QiGtah",
-      "balance": 143112,
+      "balance": 182798,
       "membership_expire_on": 1712930867,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -31789,7 +32377,7 @@
     "Zofia": {
       "index": 10699,
       "owner_key": "4Qrumgd3zK3f27n4fULB7uPAdnUAyHSoHFLQsxkSAyiT",
-      "balance": 296338,
+      "balance": 336024,
       "membership_expire_on": 1701715748,
       "next_cert_issuable_on": 1670767502,
       "certs_received": {
@@ -31820,7 +32408,7 @@
     "Chrissou01": {
       "index": 10764,
       "owner_key": "4QtpP5nfjoUAayDTS2ptne1Q2rz8tAppZbZqLmW3Vbh9",
-      "balance": 282102,
+      "balance": 321788,
       "membership_expire_on": 1702076187,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -31834,8 +32422,8 @@
     "IsaM": {
       "index": 6638,
       "owner_key": "4Qtw6C2t21KZ5GpKtkUAdZuuiYCH4sMVs9KKi26DuBcp",
-      "balance": 350118,
-      "membership_expire_on": 1699439489,
+      "balance": 436104,
+      "membership_expire_on": 1726999367,
       "next_cert_issuable_on": 1682131622,
       "certs_received": {
         "LilianBonnardon": 1705214225,
@@ -31854,7 +32442,7 @@
     "Leticia-Wood": {
       "index": 757,
       "owner_key": "4QufbDmsdAFSXPBe4JrDg9GsJiKWCzS7QnEZrgENQiDt",
-      "balance": 1656444,
+      "balance": 1696130,
       "membership_expire_on": 1719054840,
       "next_cert_issuable_on": 1669549921,
       "certs_received": {
@@ -31906,8 +32494,8 @@
     "Mokaita": {
       "index": 4539,
       "owner_key": "4RHHbmS1mPrz1zZ8v2AXRCQc8ckWiLq27w9TJGQadW7k",
-      "balance": 211807,
-      "membership_expire_on": 1698497716,
+      "balance": 251493,
+      "membership_expire_on": 1726917547,
       "next_cert_issuable_on": 1683161355,
       "certs_received": {
         "Manu_El": 1725934849,
@@ -31942,9 +32530,9 @@
     "ClaireAzur": {
       "index": 6782,
       "owner_key": "4RL5RHG17CpjtZ3qZdDdXW6eMKLjyRNKBefiMuDPqbxo",
-      "balance": 94412,
-      "membership_expire_on": 1701517944,
-      "next_cert_issuable_on": 1687758788,
+      "balance": 85598,
+      "membership_expire_on": 1728258588,
+      "next_cert_issuable_on": 1694413942,
       "certs_received": {
         "harry974": 1719032741,
         "Altheaagathe": 1721787538,
@@ -31960,6 +32548,7 @@
         "pfouque": 1706057754,
         "laetitiarecycle": 1710995448,
         "Tontonmika": 1706057284,
+        "Sailorcherry": 1757612669,
         "ClaireSMV": 1706073670,
         "lily06": 1706057754,
         "Edith2213": 1714344412
@@ -31983,7 +32572,7 @@
     "RosaQ": {
       "index": 10417,
       "owner_key": "4RagEyUCz6CiqZRKNhetZNF2S6TC2FM9vXESCSR8JW2d",
-      "balance": 33041,
+      "balance": 57727,
       "membership_expire_on": 1700257185,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -31997,7 +32586,7 @@
     "CecTo": {
       "index": 11466,
       "owner_key": "4RpDXueVKixmdb79MbWG8cuBr3Wi6qn2QGrzzWzh8Mna",
-      "balance": 246739,
+      "balance": 286425,
       "membership_expire_on": 1707089543,
       "next_cert_issuable_on": 1686827994,
       "certs_received": {
@@ -32011,22 +32600,18 @@
     "IngridCourreges": {
       "index": 5750,
       "owner_key": "4RqThMJYfenB7FgVLLBejXf1R9HZZc9F6rJV1wQ8Q7LH",
-      "balance": 1653651,
-      "membership_expire_on": 1694285447,
-      "next_cert_issuable_on": 1633378198,
+      "balance": 1699977,
+      "membership_expire_on": 1727193564,
+      "next_cert_issuable_on": 1696219165,
       "certs_received": {
         "Crystal": 1707452331,
+        "Alinerv": 1759454482,
         "fdrubigny": 1756405140,
-        "NathalieCatelin": 1696163585,
-        "Tchois": 1696154613,
-        "BobMarchand": 1696226065,
         "MioPalmon988": 1733356144,
-        "Glycine13": 1695972497,
         "ArnaudLuc": 1706949285,
-        "tomval83": 1696226658,
-        "Atua": 1695972497,
         "Sandy": 1706356874,
-        "tatinetteb": 1696144850
+        "tatinetteb": 1759201567,
+        "ElvireDracenie": 1759362858
       }
     },
     "FreeMind": {
@@ -32048,9 +32633,9 @@
     "AnabelArmendariz": {
       "index": 10091,
       "owner_key": "4Rv49y7Vi4CyLkQo5TWw94zkJohcQBBr72gSBi3dHwXV",
-      "balance": 137448,
-      "membership_expire_on": 1698409985,
-      "next_cert_issuable_on": 1686619665,
+      "balance": 98768,
+      "membership_expire_on": 1727021758,
+      "next_cert_issuable_on": 1696139185,
       "certs_received": {
         "InmaRegina": 1729972950,
         "AnaMery": 1739556936,
@@ -32078,7 +32663,7 @@
     "ShivaG": {
       "index": 8874,
       "owner_key": "4SF2J2XhHvpJzdGdqg82qiYHobD19fNgnm6fcRFTZSP8",
-      "balance": 245397,
+      "balance": 255083,
       "membership_expire_on": 1715305807,
       "next_cert_issuable_on": 1687228076,
       "certs_received": {
@@ -32096,12 +32681,26 @@
         "BeatrizGG": 1723055806
       }
     },
+    "CoralieMassage": {
+      "index": 13667,
+      "owner_key": "4SFXw9jSdYo8H9LzsesC3dCcnrcsQBFuYKkZBedP4RdS",
+      "balance": 118858,
+      "membership_expire_on": 1725750578,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Carma2310": 1757719010,
+        "Sandcreart": 1757482997,
+        "stephane32": 1758585153,
+        "Naty31": 1758331015,
+        "MarieFrance31": 1757801397
+      }
+    },
     "Lilith8888": {
       "index": 12699,
       "owner_key": "4SJnVXS3sc3BvnwH4m6Fh8S1bWs1kjgqBuWAG4QoR9Wn",
-      "balance": 96440,
+      "balance": 114126,
       "membership_expire_on": 1715563433,
-      "next_cert_issuable_on": 1692626490,
+      "next_cert_issuable_on": 1696385276,
       "certs_received": {
         "G21": 1747122001,
         "Eleo94": 1747351370,
@@ -32125,7 +32724,7 @@
     "Graton": {
       "index": 9901,
       "owner_key": "4SSVPubBBbfCxYNCP3iW4kAwTfmnQx1jsYxy6prrnHqe",
-      "balance": 453524,
+      "balance": 493210,
       "membership_expire_on": 1696881030,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -32150,7 +32749,7 @@
     "Yznar": {
       "index": 10837,
       "owner_key": "4STwCfbb5g8nzCZbgPdT3XTwYpTTmbcLRE1bJzccL9zu",
-      "balance": 277866,
+      "balance": 317552,
       "membership_expire_on": 1701134202,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -32168,9 +32767,9 @@
     "PascaleP": {
       "index": 12639,
       "owner_key": "4ShqAvYfmwrpFx6KDdZgM1bKu28x7FoKf1qWLzeoz3FP",
-      "balance": 117580,
+      "balance": 157266,
       "membership_expire_on": 1714853852,
-      "next_cert_issuable_on": 1684145197,
+      "next_cert_issuable_on": 1694422502,
       "certs_received": {
         "FreedomExpansion": 1746583845,
         "Pashi": 1746411452,
@@ -32182,7 +32781,7 @@
     "Sylou": {
       "index": 6756,
       "owner_key": "4SkQD4DWnakf8zTLN7SkdiwHHy8yLQbsj7FytzrjpiJZ",
-      "balance": 596431,
+      "balance": 636117,
       "membership_expire_on": 1701376000,
       "next_cert_issuable_on": 1671601403,
       "certs_received": {
@@ -32197,7 +32796,7 @@
     "MarindChanti": {
       "index": 7530,
       "owner_key": "4SkvTdvymjSq6sRRKcsJM5UhHTHLhgz1HFgx6KpWJFcZ",
-      "balance": 543000,
+      "balance": 582686,
       "membership_expire_on": 1711324511,
       "next_cert_issuable_on": 1691507464,
       "certs_received": {
@@ -32211,7 +32810,7 @@
     "rosette24": {
       "index": 13218,
       "owner_key": "4SqvgsSzEdPRreZLFN22Hbjz8tFhse9JwX7RY2rCM5AJ",
-      "balance": 115420,
+      "balance": 155106,
       "membership_expire_on": 1721397365,
       "next_cert_issuable_on": 1693229580,
       "certs_received": {
@@ -32244,7 +32843,7 @@
     "Mala": {
       "index": 12687,
       "owner_key": "4SyYQbADvkgDnDnq63NFe1ey4EaQ8xkvAQ29SBwV7c3X",
-      "balance": 112140,
+      "balance": 151826,
       "membership_expire_on": 1715199609,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -32255,10 +32854,24 @@
         "lozu": 1747110100
       }
     },
+    "Annarella": {
+      "index": 13756,
+      "owner_key": "4Szskb1Sboai6TKzUZckQsVCon7wzkdTLMtfh2wmX1F5",
+      "balance": 92000,
+      "membership_expire_on": 1727623896,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Malene": 1759295265,
+        "ElieLombard": 1759181927,
+        "GOPA": 1759287761,
+        "MarineJ": 1759295265,
+        "LaurentM": 1759181927
+      }
+    },
     "Aries": {
       "index": 10454,
       "owner_key": "4T6sEqJCMLWxU6xT2M2UQg1HmCtP4kwsWQVy5aj3uM3r",
-      "balance": 637697,
+      "balance": 654883,
       "membership_expire_on": 1699048086,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -32272,8 +32885,8 @@
     "EstefaniaSainz": {
       "index": 10280,
       "owner_key": "4T8CWT4X1dp28urHowHEt4YzRsgvrpdevAbsJbMuqzmU",
-      "balance": 26197,
-      "membership_expire_on": 1699012514,
+      "balance": 21683,
+      "membership_expire_on": 1726449664,
       "next_cert_issuable_on": 1692943887,
       "certs_received": {
         "Vichara": 1731105485,
@@ -32281,6 +32894,7 @@
         "Lupunita": 1730998598,
         "Almudenartista": 1741058160,
         "MaraVilla": 1735853441,
+        "Meg": 1758269881,
         "IbonNakin": 1752868514,
         "JosunePP": 1730945925,
         "Jontxu67": 1730945925,
@@ -32303,9 +32917,9 @@
     "Sylou04": {
       "index": 10526,
       "owner_key": "4THfrv3xiZFBDDxFbj7TH9d79VaedYHv7KaUcogaD9uV",
-      "balance": 322948,
+      "balance": 362634,
       "membership_expire_on": 1724786033,
-      "next_cert_issuable_on": 1691477013,
+      "next_cert_issuable_on": 1693300433,
       "certs_received": {
         "Andrelebourhis": 1733543659,
         "MarlenePETIT": 1753813601,
@@ -32317,7 +32931,8 @@
         "Langlaisvalerie04": 1754693049,
         "PERSIFLEUR": 1728701634,
         "Marjo": 1734730674,
-        "WARTHLANDAISSOPHIE": 1728712877
+        "WARTHLANDAISSOPHIE": 1728712877,
+        "Gebender6": 1757480481
       }
     },
     "PatHoux": {
@@ -32333,8 +32948,8 @@
     "Colibris": {
       "index": 9418,
       "owner_key": "4TQgEk5x3KsS1nqqerPtTjzjmNuzbpAtegoCes3ke1dA",
-      "balance": 391646,
-      "membership_expire_on": 1693765755,
+      "balance": 394850,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1671642984,
       "certs_received": {
         "FraBro": 1725426292,
@@ -32349,8 +32964,8 @@
     "Kristen": {
       "index": 2080,
       "owner_key": "4TRnVK2mzMYDmQUdykCmmsdNVj8s7iGWfbjF6EW9PRJA",
-      "balance": 2283042,
-      "membership_expire_on": 1699320799,
+      "balance": 2322728,
+      "membership_expire_on": 1727516185,
       "next_cert_issuable_on": 1677812318,
       "certs_received": {
         "SolangeAIME": 1735676015,
@@ -32368,9 +32983,9 @@
     "LaurePollantru": {
       "index": 3400,
       "owner_key": "4TVMAMDkxkAhHu1mQGfagJAJTEDPnPQhaV1K9tWE48GA",
-      "balance": 415635,
-      "membership_expire_on": 1697467905,
-      "next_cert_issuable_on": 1683034301,
+      "balance": 455321,
+      "membership_expire_on": 1727116990,
+      "next_cert_issuable_on": 1695631744,
       "certs_received": {
         "CValentine": 1717789751,
         "Francoeur": 1697345273,
@@ -32384,6 +32999,7 @@
         "SylvaineAlnot": 1716501056,
         "Gwenaelle": 1708291282,
         "Rumper": 1719500758,
+        "Lea": 1754874000,
         "Vagueabonds": 1726186612,
         "Etsamanga": 1750298553,
         "Meryazel": 1721455340,
@@ -32395,7 +33011,7 @@
     "RomGuilb": {
       "index": 1036,
       "owner_key": "4TaqMvijVJnogtBJwx2ns2VETdHUAtYgCNemVzHwpffT",
-      "balance": 1466465,
+      "balance": 1506151,
       "membership_expire_on": 1699521959,
       "next_cert_issuable_on": 1670571077,
       "certs_received": {
@@ -32417,7 +33033,7 @@
     "MaineCoon": {
       "index": 6723,
       "owner_key": "4ThfePtdUY8V1siWVtSryuhS1RXuxWW8f6MdgUSYyFfs",
-      "balance": 522362,
+      "balance": 562048,
       "membership_expire_on": 1705972991,
       "next_cert_issuable_on": 1689676408,
       "certs_received": {
@@ -32434,9 +33050,9 @@
     "Philp": {
       "index": 11102,
       "owner_key": "4Tm3tXQ9goPdLUdEcBGYNtp58pbgiJ8kkigsvP1L8CZN",
-      "balance": 237327,
+      "balance": 277013,
       "membership_expire_on": 1702731861,
-      "next_cert_issuable_on": 1691301801,
+      "next_cert_issuable_on": 1696053772,
       "certs_received": {
         "Zap": 1741197250,
         "Gossein": 1743281366,
@@ -32457,7 +33073,7 @@
     "LetTheMagicShine": {
       "index": 12648,
       "owner_key": "4TmgYBigtD6yj3tDNraMmux3yvKR99Bh6wQ9ddDfPUsm",
-      "balance": 111112,
+      "balance": 149298,
       "membership_expire_on": 1715426296,
       "next_cert_issuable_on": 1689658375,
       "certs_received": {
@@ -32486,6 +33102,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Randolf": {
+      "index": 13662,
+      "owner_key": "4TvCkkcfiNVWMwBxxj1cLo5cXjBBLkrWf62XLNUZaUwt",
+      "balance": 24500,
+      "membership_expire_on": 1726175150,
+      "next_cert_issuable_on": 1696676420,
+      "certs_received": {
+        "Ghostdog": 1758780621,
+        "Anma": 1758693806,
+        "FEUERFRAU": 1758691139,
+        "Micha": 1758667909,
+        "Geli": 1758780621
+      }
+    },
     "gregoryf09": {
       "index": 1093,
       "owner_key": "4TxWyg91khSHAtELA3HWhN5kGkhiBei3DJwD5rCfvf82",
@@ -32505,7 +33135,7 @@
     "Guada": {
       "index": 10093,
       "owner_key": "4UBfj78AvRgKxcm3Sv4jh5AUmMn24F4jrLTdiiAKPH4A",
-      "balance": 80707,
+      "balance": 102494,
       "membership_expire_on": 1697801217,
       "next_cert_issuable_on": 1678271196,
       "certs_received": {
@@ -32552,7 +33182,7 @@
     "thibat": {
       "index": 11386,
       "owner_key": "4UGRvwURebdigyuP2Z74pMeSe4z7nEXb1bwL7BNTwyva",
-      "balance": 282152,
+      "balance": 321838,
       "membership_expire_on": 1701547456,
       "next_cert_issuable_on": 1678093677,
       "certs_received": {
@@ -32566,7 +33196,7 @@
     "Nickita13": {
       "index": 8707,
       "owner_key": "4UHcQF86uYFJjnNz1YVK4qYwyVerw8QJQTWUyu9ZuWet",
-      "balance": 437003,
+      "balance": 476689,
       "membership_expire_on": 1722627320,
       "next_cert_issuable_on": 1680797040,
       "certs_received": {
@@ -32598,7 +33228,7 @@
     "Tarfaya2020": {
       "index": 5362,
       "owner_key": "4URfMiXH552Fk9ZKQsvc2bEycnRjoePKdg8weEren4L6",
-      "balance": 727968,
+      "balance": 769654,
       "membership_expire_on": 1717193771,
       "next_cert_issuable_on": 1684051257,
       "certs_received": {
@@ -32608,15 +33238,16 @@
         "Auxance": 1749364729,
         "Kilibix": 1746648575,
         "Titus": 1747080990,
+        "Merlindoc": 1758147340,
         "LudovicMJC": 1745807671
       }
     },
     "FIFIMERCIER": {
       "index": 3703,
       "owner_key": "4URz2Y37GSxR8nxJR8GvRWkFWihZzG75eXSznJGFAXTB",
-      "balance": 1199351,
+      "balance": 1249037,
       "membership_expire_on": 1711325174,
-      "next_cert_issuable_on": 1691520958,
+      "next_cert_issuable_on": 1693806150,
       "certs_received": {
         "Katiecat": 1743400805,
         "AnnaM": 1744869694,
@@ -32636,7 +33267,7 @@
     "Dach": {
       "index": 5978,
       "owner_key": "4UUdAoyxCTz9hbsx4rgHrv3bLW4VGn1jWL1HYrFfpp2F",
-      "balance": 304094,
+      "balance": 343780,
       "membership_expire_on": 1701101556,
       "next_cert_issuable_on": 1638198476,
       "certs_received": {
@@ -32652,7 +33283,7 @@
     "CARINEL": {
       "index": 12584,
       "owner_key": "4UXbDVaXRJrE8iUKYH9ZgqjJvCcHpRipsskGJ464abFn",
-      "balance": 106731,
+      "balance": 124917,
       "membership_expire_on": 1714238002,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -32666,7 +33297,7 @@
     "Yume": {
       "index": 7578,
       "owner_key": "4UZ2tfQ1zsftwhHNg8hgNzujTaPi6uquYQrZ2FxgMVsC",
-      "balance": 421137,
+      "balance": 460823,
       "membership_expire_on": 1713480968,
       "next_cert_issuable_on": 1682132824,
       "certs_received": {
@@ -32696,7 +33327,7 @@
     "MyrdhinLecotClaes": {
       "index": 4927,
       "owner_key": "4UsbcPoT7xizDAXnJ9Asj373EWXVr7zG9RaXGwtczgWT",
-      "balance": 623555,
+      "balance": 663241,
       "membership_expire_on": 1703182165,
       "next_cert_issuable_on": 1671699046,
       "certs_received": {
@@ -32761,8 +33392,8 @@
     "Zoulya": {
       "index": 3810,
       "owner_key": "4VMXJaQ7wLJTdMEMhgQ8NpQX93L3sXzbDUiNK1Renhpw",
-      "balance": 691022,
-      "membership_expire_on": 1697254111,
+      "balance": 730708,
+      "membership_expire_on": 1725278653,
       "next_cert_issuable_on": 1672881434,
       "certs_received": {
         "Katiecat": 1711386096,
@@ -32785,7 +33416,7 @@
     "Fleurdamour": {
       "index": 7885,
       "owner_key": "4VQqP77isPgHTxjGrGqf2frBhEQgGtYGxmSHz5AEfYRS",
-      "balance": 482947,
+      "balance": 522634,
       "membership_expire_on": 1716986237,
       "next_cert_issuable_on": 1685516782,
       "certs_received": {
@@ -32799,7 +33430,7 @@
     "Anne": {
       "index": 1294,
       "owner_key": "4VQvVLT1R6upLuRk85A5eWTowqJwvkSMGQQZ9Hc4bqLg",
-      "balance": 479829,
+      "balance": 519515,
       "membership_expire_on": 1707913516,
       "next_cert_issuable_on": 1691059832,
       "certs_received": {
@@ -32818,21 +33449,24 @@
     "isabelha": {
       "index": 5495,
       "owner_key": "4VUcA6fp4a1LHJQGffJxeyufa1AWPdeNr4j8gUqT25FF",
-      "balance": 170191,
-      "membership_expire_on": 0,
+      "balance": 192789,
+      "membership_expire_on": 1725709221,
       "next_cert_issuable_on": 1667838927,
       "certs_received": {
+        "miguelon": 1757266821,
         "AlfredoRG": 1714031533,
         "Rodrigo": 1712618321,
+        "GerardoS": 1757297667,
+        "moincagranada": 1757578730,
         "Pilarpm": 1713406137
       }
     },
     "Eilahtan": {
       "index": 13327,
       "owner_key": "4VW7AYNBfa8XsgDt1aqcTvrscgLWCzPKjAofsRiLbkBL",
-      "balance": 127832,
+      "balance": 137518,
       "membership_expire_on": 1722038015,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696646443,
       "certs_received": {
         "Claudius12": 1754069256,
         "CedricSabbe": 1754076212,
@@ -32840,19 +33474,21 @@
         "Jerryz": 1754068387,
         "Paola": 1754035441,
         "Eauvive": 1754259606,
+        "Mmemonica": 1754869237,
         "Myriam1912": 1754292740
       }
     },
     "Cle": {
       "index": 9429,
       "owner_key": "4VZh6wYpa8gYqXLfcYpnFytJXjjjAWUMxtDQuZ74u1hN",
-      "balance": 294699,
+      "balance": 333417,
       "membership_expire_on": 1720024674,
-      "next_cert_issuable_on": 1690720878,
+      "next_cert_issuable_on": 1694507650,
       "certs_received": {
         "DomRomy20": 1752023425,
         "Shinra": 1725887826,
         "JusteAlex": 1725126675,
+        "Abalone": 1756968128,
         "Dom": 1725142710,
         "CecilePhoenix": 1739869196,
         "wopat": 1725246752,
@@ -32881,7 +33517,7 @@
     "cyberio": {
       "index": 11583,
       "owner_key": "4Vb2j5DGjJxKfbcy9MwyA4SJqSYRBKpkx6XRQixTveBu",
-      "balance": 191267,
+      "balance": 265953,
       "membership_expire_on": 1707481585,
       "next_cert_issuable_on": 1688488045,
       "certs_received": {
@@ -32912,12 +33548,12 @@
     "Philippe26": {
       "index": 25,
       "owner_key": "4VszDP37wGfk4TGwjuqCyeVSJdzo61v1TYYsNjCeVvF3",
-      "balance": 841168,
+      "balance": 880854,
       "membership_expire_on": 1713706024,
-      "next_cert_issuable_on": 1690074929,
+      "next_cert_issuable_on": 1696399412,
       "certs_received": {
-        "CaroleFabre": 1697581626,
-        "Dom": 1700341701,
+        "CaroleFabre": 1757977320,
+        "Dom": 1756948457,
         "Jjacq07": 1743566178,
         "MarcelDoppagne": 1700936323,
         "DavidMontpellier": 1728268751,
@@ -32934,7 +33570,7 @@
     "JeanBernardG974": {
       "index": 10566,
       "owner_key": "4VvWM77EczuexEiEaVDsb32QS1nQQtCtHajLYj8Mosqx",
-      "balance": 295951,
+      "balance": 335637,
       "membership_expire_on": 1700321438,
       "next_cert_issuable_on": 1669877874,
       "certs_received": {
@@ -32949,7 +33585,7 @@
     "JusteAlex": {
       "index": 6519,
       "owner_key": "4Vw86aY1B3h7BympuDP1ghoE5nGVR494EzXnePxrf3Mg",
-      "balance": 464903,
+      "balance": 504589,
       "membership_expire_on": 1720749786,
       "next_cert_issuable_on": 1680635276,
       "certs_received": {
@@ -32990,10 +33626,24 @@
         "Martienne": 1740002228
       }
     },
+    "Papinou25230": {
+      "index": 13588,
+      "owner_key": "4W1Ne9meLknKMHc7jDBnhqjo6XDh5tqeui1MmZChYD22",
+      "balance": 26530,
+      "membership_expire_on": 1725664456,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "RapMen90": 1757277680,
+        "ChristelleBeaussier": 1757902700,
+        "maitala": 1758085081,
+        "guly": 1757270840,
+        "GigiRougeGorge": 1757269070
+      }
+    },
     "GabrielCohergne": {
       "index": 4088,
       "owner_key": "4W8Wr1yS1DHYZSWAJyePjkLEyoGEa8pCkd4ay4fFEYdP",
-      "balance": 914593,
+      "balance": 944463,
       "membership_expire_on": 1723592878,
       "next_cert_issuable_on": 1676442213,
       "certs_received": {
@@ -33027,7 +33677,7 @@
     "STEPH": {
       "index": 8223,
       "owner_key": "4WBnDzFQhxPx5qCrEgXyxf4g7kBi3yi6MGLnCS4MiuGe",
-      "balance": 480168,
+      "balance": 519854,
       "membership_expire_on": 1713527120,
       "next_cert_issuable_on": 1682593963,
       "certs_received": {
@@ -33043,9 +33693,9 @@
     "RAMA62": {
       "index": 10179,
       "owner_key": "4WEBGjafBBPmuva1M8Li9XPLLPfUocRNhLa6hGX5zYFy",
-      "balance": 66526,
-      "membership_expire_on": 1698606408,
-      "next_cert_issuable_on": 1680329817,
+      "balance": 106212,
+      "membership_expire_on": 1725325980,
+      "next_cert_issuable_on": 1694182395,
       "certs_received": {
         "LosMundosdeKrull": 1735038393,
         "larboleda897": 1730499338,
@@ -33083,8 +33733,8 @@
     "ApanandoHerbas": {
       "index": 10785,
       "owner_key": "4WMkV68zutm3oeNEDJLk4tRX7uWat7wHaDcf5MprY3Uv",
-      "balance": 193624,
-      "membership_expire_on": 1699460948,
+      "balance": 233310,
+      "membership_expire_on": 1726399373,
       "next_cert_issuable_on": 1684855289,
       "certs_received": {
         "belcarme": 1743184696,
@@ -33123,7 +33773,7 @@
     "Eria": {
       "index": 13422,
       "owner_key": "4WpdU7jSpt5CFZnQqe2NW3M5bGX2MterzQeGsfTu8SfL",
-      "balance": 9712,
+      "balance": 49398,
       "membership_expire_on": 1722878333,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -33147,9 +33797,9 @@
     "lumirose": {
       "index": 8165,
       "owner_key": "4XS3a9S3GU4y6MJz1YfEV5wrXir4kX4SLs2HspzcuGrx",
-      "balance": 129021,
+      "balance": 147387,
       "membership_expire_on": 1710458322,
-      "next_cert_issuable_on": 1693188019,
+      "next_cert_issuable_on": 1694416754,
       "certs_received": {
         "Stejulemont": 1716216402,
         "BudFox": 1736062154,
@@ -33158,8 +33808,10 @@
         "filou": 1716232168,
         "DavidMontpellier": 1756320547,
         "Patappui": 1716174829,
+        "ROVER5537": 1758988638,
         "nathinfi": 1716222218,
         "nicgouG": 1716230682,
+        "Mireilleplantessauvages": 1756661291,
         "ArianeRiveros": 1716331075
       }
     },
@@ -33172,16 +33824,14 @@
       "certs_received": {
         "Gippon": 1697151142,
         "hibiscus11": 1697152591,
-        "MARTIGOUGOUGNETTE": 1696522531,
         "dtarcz": 1698364007,
-        "BRIGITTE2019": 1696427629,
         "DanJoue": 1697168662
       }
     },
     "Hellorico": {
       "index": 5172,
       "owner_key": "4XkRjdPtbRVpuwnRTKW7DurFej3PRh8yQVe4LxEGY8f3",
-      "balance": 789531,
+      "balance": 829217,
       "membership_expire_on": 1710470442,
       "next_cert_issuable_on": 1683700786,
       "certs_received": {
@@ -33199,7 +33849,7 @@
     "SylvieB": {
       "index": 10907,
       "owner_key": "4XohXdZdf8MeAw5Urn25KKgxZFJFRqRNYXojQZqopRLJ",
-      "balance": 451571,
+      "balance": 491257,
       "membership_expire_on": 1697909829,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -33214,8 +33864,8 @@
     "Valou_2": {
       "index": 10290,
       "owner_key": "4XpMF95PzZNg5iGDVCHM7vfUY6XhsDudPtVCJsZnZMu6",
-      "balance": 235759,
-      "membership_expire_on": 1696162895,
+      "balance": 268977,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1688248561,
       "certs_received": {
         "Eiutim": 1728251652,
@@ -33229,7 +33879,7 @@
     "Manu_Auger": {
       "index": 2587,
       "owner_key": "4Xu86cNGMMFBMdqmG63eKLRaxL9Eq9jRgo5xv2rNVy2o",
-      "balance": 1454964,
+      "balance": 1494650,
       "membership_expire_on": 1708801062,
       "next_cert_issuable_on": 1687774057,
       "certs_received": {
@@ -33255,7 +33905,7 @@
     "tokyo": {
       "index": 3486,
       "owner_key": "4Y3eGsCuLM3XiCBUbqugURQ9dMzVbcNZnJnWBGtTrye2",
-      "balance": 1307185,
+      "balance": 1346871,
       "membership_expire_on": 1713642763,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -33271,23 +33921,24 @@
     "UBUNTU": {
       "index": 13154,
       "owner_key": "4YAGBsfAYMMMBQAijuh5JjfnvuvNdok1NCvRMW919qa9",
-      "balance": 57332,
+      "balance": 97018,
       "membership_expire_on": 1720787927,
-      "next_cert_issuable_on": 1691724370,
+      "next_cert_issuable_on": 1694072544,
       "certs_received": {
         "rockwater": 1752366307,
         "LucAndre": 1752348489,
         "Crystale": 1752384055,
         "GenDes": 1752429379,
-        "Mireilleplantessauvages": 1752359774
+        "Mireilleplantessauvages": 1752359774,
+        "Patfil": 1759517698
       }
     },
     "Virginie": {
       "index": 10272,
       "owner_key": "4YPV2KbEqauBaakbWCXo62kUZPDYZFHFA5bbiKhARGe4",
-      "balance": 191072,
+      "balance": 172774,
       "membership_expire_on": 1723766185,
-      "next_cert_issuable_on": 1692280585,
+      "next_cert_issuable_on": 1696769201,
       "certs_received": {
         "Laeti": 1751737437,
         "Samsan": 1736319245,
@@ -33319,9 +33970,9 @@
     "Fleur-du-renouveau": {
       "index": 1959,
       "owner_key": "4YW4Ny3UnkUESsjLdJ2KFAaYCKZqRDYpkVcF2kj6ma4x",
-      "balance": 74623,
+      "balance": 128919,
       "membership_expire_on": 1719977094,
-      "next_cert_issuable_on": 1691641392,
+      "next_cert_issuable_on": 1695866263,
       "certs_received": {
         "Wilouchou": 1753565729,
         "Alcidejet": 1749143359,
@@ -33330,12 +33981,9 @@
         "Yacamoneye": 1727589241,
         "Ormica": 1742281707,
         "4rion": 1703409433,
-        "Claire666": 1695417562,
         "TristanG1": 1756408842,
-        "Pac": 1695972940,
         "EstefaniaLopez": 1722797365,
         "Fleurdusoleil": 1701337247,
-        "Mahe": 1695937734,
         "mae": 1735815665,
         "KumaNinja": 1727252791,
         "FilouLibre59": 1716106662,
@@ -33350,12 +33998,13 @@
     "Cristal38": {
       "index": 5081,
       "owner_key": "4YXG8QxYaFyk4fKxd5u7YXbrfAWqj325Pzqk3UNKqk4n",
-      "balance": 899885,
+      "balance": 939571,
       "membership_expire_on": 1706119538,
-      "next_cert_issuable_on": 1693114585,
+      "next_cert_issuable_on": 1694505013,
       "certs_received": {
         "Ninamaste": 1743052132,
         "ThierryS": 1717800681,
+        "HelloSunshine": 1757751278,
         "Angel": 1730067148,
         "Corine": 1712454014,
         "bienetreettao": 1719882121,
@@ -33363,13 +34012,14 @@
         "Eve38": 1716001405,
         "Bap": 1734765594,
         "thierry38": 1751581076,
-        "Max": 1721121187
+        "Max": 1721121187,
+        "Thiery": 1757188358
       }
     },
     "lb46": {
       "index": 4488,
       "owner_key": "4YaxK7X7i2APWQde92rZHZ7TnV9Mh2A9Qrk5ZdbfamCB",
-      "balance": 983183,
+      "balance": 1022869,
       "membership_expire_on": 1704371452,
       "next_cert_issuable_on": 1673950083,
       "certs_received": {
@@ -33383,7 +34033,7 @@
     "Blum": {
       "index": 11094,
       "owner_key": "4YepPqspvs9tJBwLZ6eN16roECbVQJnFjhyFLwzvJWhN",
-      "balance": 305800,
+      "balance": 345486,
       "membership_expire_on": 1702816328,
       "next_cert_issuable_on": 1673867786,
       "certs_received": {
@@ -33401,24 +34051,22 @@
     "IsabelleGlorian": {
       "index": 5134,
       "owner_key": "4YiUdZPtgL7ZQQztyvrzZJB478zwjwNsuJpHRpFYfAyo",
-      "balance": 472705,
-      "membership_expire_on": 1709665586,
+      "balance": 484453,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
-        "Sunrise": 1693980055,
         "Diogox51": 1710820060,
         "Sylvania51": 1711503271,
         "Mathe": 1715155776,
-        "letoilebleue": 1694497719,
         "jjberte": 1714889294
       }
     },
     "BlanDine06": {
       "index": 9000,
       "owner_key": "4Yw6Zz5K3htpNN7DzNe1KwQQR9mHNtaUPzeKMoBCJcYG",
-      "balance": 428888,
+      "balance": 455574,
       "membership_expire_on": 1720325214,
-      "next_cert_issuable_on": 1660060061,
+      "next_cert_issuable_on": 1693840636,
       "certs_received": {
         "ClaireAzur": 1721781061,
         "Tchois": 1721808637,
@@ -33431,6 +34079,20 @@
         "Edith2213": 1721849914
       }
     },
+    "Invisibleforce": {
+      "index": 13742,
+      "owner_key": "4Z8EthmPgZei5TngNcsMgfoVbUN2yEnk4XazgJ3CpvZP",
+      "balance": 8790,
+      "membership_expire_on": 1727302138,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Sunshining": 1759274069,
+        "feesfleurs": 1759605932,
+        "Kryszu": 1759265283,
+        "Missouri": 1759458637,
+        "LUCKY": 1759272909
+      }
+    },
     "BenoitPlanchenault": {
       "index": 854,
       "owner_key": "4ZEGkUgPTrvA5u5wrd4utxW73ZY2q4CJZkurDXXhqcmf",
@@ -33442,15 +34104,17 @@
     "venusienne": {
       "index": 4031,
       "owner_key": "4ZJyH33pExPoeGZnm9fQERroyeEThmpREQkcFWLzGTVV",
-      "balance": 830945,
+      "balance": 895631,
       "membership_expire_on": 1714643398,
-      "next_cert_issuable_on": 1688887098,
+      "next_cert_issuable_on": 1695032078,
       "certs_received": {
         "Mairyn31": 1731000671,
         "yekapharoah": 1732845535,
         "annicam": 1710226725,
+        "fabiolino": 1757462765,
         "Cristol-Iquid": 1712110815,
         "JessyC": 1701899519,
+        "diletta": 1757463428,
         "sylvine": 1713969626,
         "Fleurdusoleil": 1743790183,
         "LafeeValerie": 1710212730,
@@ -33468,22 +34132,25 @@
     "MaryK": {
       "index": 2848,
       "owner_key": "4ZK4amjrVdtdA4ybkt6MhpyQnvZVVmWXeDNfzAzb88gq",
-      "balance": 466013,
+      "balance": 494839,
       "membership_expire_on": 1722690546,
-      "next_cert_issuable_on": 1686540424,
+      "next_cert_issuable_on": 1694679569,
       "certs_received": {
         "Cygogne22": 1747512823,
         "Tidus": 1740086546,
         "Tarfaya2020": 1741402725,
+        "Sainte-Russie": 1757881590,
         "Auxance": 1747811418,
         "Migus01": 1748077106,
         "YANNIERRE": 1751397255,
         "Kilibix": 1741502528,
         "Titouan": 1704018750,
+        "Vivant3000": 1757723468,
         "Kimedo": 1746812207,
         "Titus": 1739682959,
         "GeoTT": 1747151680,
         "Moi_C_Olivier": 1741946349,
+        "Merlindoc": 1757464298,
         "LudovicMJC": 1746768752
       }
     },
@@ -33506,9 +34173,9 @@
     "EricSIMON": {
       "index": 6020,
       "owner_key": "4ZRVEmNjwUo2r3MooV5datP1ECRcNZvcEyGeAagPfvap",
-      "balance": 90403,
+      "balance": 142709,
       "membership_expire_on": 1722351351,
-      "next_cert_issuable_on": 1691397648,
+      "next_cert_issuable_on": 1696424805,
       "certs_received": {
         "hydromel": 1732944589,
         "StephaneMongeois": 1732770090,
@@ -33540,7 +34207,7 @@
         "KarenW": 1743315333,
         "Mariezen": 1721109349,
         "Cathykty": 1701052228,
-        "JeanTibou": 1698293240,
+        "JeanTibou": 1759167796,
         "JF62": 1721547316,
         "Coco46": 1701243079,
         "Koldo": 1708883112,
@@ -33551,9 +34218,9 @@
     "OlivierHovasse": {
       "index": 8661,
       "owner_key": "4ZTqxWU9s2yKkem4gQC79jZkXYtV77bNoLbSgvCt8SXj",
-      "balance": 715061,
+      "balance": 754747,
       "membership_expire_on": 1714645268,
-      "next_cert_issuable_on": 1693095241,
+      "next_cert_issuable_on": 1694732728,
       "certs_received": {
         "Al27": 1722227783,
         "CharlesHovasse": 1726873466,
@@ -33588,9 +34255,9 @@
     "FernandP": {
       "index": 12615,
       "owner_key": "4ZaL4AbUa8dwNne9CUDPKpktfRrPncEzjsKJnkvjJixZ",
-      "balance": 218548,
+      "balance": 258234,
       "membership_expire_on": 1712422470,
-      "next_cert_issuable_on": 1692409293,
+      "next_cert_issuable_on": 1695380700,
       "certs_received": {
         "MarcelleA": 1749170101,
         "Chabe13": 1747003844,
@@ -33598,17 +34265,19 @@
         "IsadeSpa": 1746760792,
         "Tavartalvert": 1746674888,
         "Meubleu": 1747110100,
+        "cricri": 1757916571,
         "MPaule": 1746907296,
         "Daniellyson": 1749593438,
-        "VeronicaDe": 1746818195
+        "VeronicaDe": 1746818195,
+        "Bilou": 1757291047
       }
     },
     "MalvinaBoutot": {
       "index": 6970,
       "owner_key": "4ZoptK66q8gCdCHPZRkg5zRBB8qPFLPDU8tcmatKq93a",
-      "balance": 922791,
+      "balance": 1026557,
       "membership_expire_on": 1701029896,
-      "next_cert_issuable_on": 1680898775,
+      "next_cert_issuable_on": 1695349075,
       "certs_received": {
         "Zap": 1729800577,
         "Lionel_Dechilly": 1707003205,
@@ -33621,6 +34290,7 @@
         "Papillote": 1708022548,
         "Flovie": 1745264151,
         "carineg": 1708020601,
+        "Lilo26": 1757062151,
         "GhisSerre": 1717446610,
         "gedeon26": 1730403093,
         "arbogast": 1719242843
@@ -33629,7 +34299,7 @@
     "helenecolibri": {
       "index": 10658,
       "owner_key": "4Zoq6hVyZTg2Mz4KRPg7meg7Zint2kufPtceDsDZ8vZ8",
-      "balance": 326421,
+      "balance": 366107,
       "membership_expire_on": 1698176578,
       "next_cert_issuable_on": 1671846079,
       "certs_received": {
@@ -33643,9 +34313,9 @@
     "Takakra": {
       "index": 13188,
       "owner_key": "4ZqU1URaL1YufbzE8boZgTPCEydkS5gjhkgdeVVtMjny",
-      "balance": 57892,
+      "balance": 115106,
       "membership_expire_on": 1719435033,
-      "next_cert_issuable_on": 1693203289,
+      "next_cert_issuable_on": 1696303027,
       "certs_received": {
         "HelloSunshine": 1752225209,
         "MyleneBN": 1752008583,
@@ -33673,7 +34343,7 @@
     "acetosella93": {
       "index": 7267,
       "owner_key": "4ZwgsTxQ8TiSJi7VSc9wJv7ZT85fsPs99MYKUooVpZD7",
-      "balance": 326041,
+      "balance": 264727,
       "membership_expire_on": 1704569200,
       "next_cert_issuable_on": 1682347357,
       "certs_received": {
@@ -33696,7 +34366,7 @@
     "Photovero": {
       "index": 10724,
       "owner_key": "4a1zKgA9DDB8m4Eq4rcNPxaV6XfZgHuedvBBdZSUMi3R",
-      "balance": 291279,
+      "balance": 330965,
       "membership_expire_on": 1700510622,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -33711,7 +34381,7 @@
     "AnnePrisciandaro": {
       "index": 10368,
       "owner_key": "4a3um6CmV1AZtGJG43aogy8wpe6kzdvpQqFUZwa8xssG",
-      "balance": 320518,
+      "balance": 360204,
       "membership_expire_on": 1696790043,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -33726,7 +34396,7 @@
     "Jibuza": {
       "index": 9764,
       "owner_key": "4a4gnXK3uzd91yo8DGYNv2go3KsW6u8eqES374rwouMu",
-      "balance": 193114,
+      "balance": 232800,
       "membership_expire_on": 1723394556,
       "next_cert_issuable_on": 1666442708,
       "certs_received": {
@@ -33743,7 +34413,7 @@
     "ANTON": {
       "index": 8580,
       "owner_key": "4a82arFfhYubdyj5qvqD6SU8Yb6bZzHVoCK2koxY1c2Q",
-      "balance": 478522,
+      "balance": 518208,
       "membership_expire_on": 1714609500,
       "next_cert_issuable_on": 1683123900,
       "certs_received": {
@@ -33758,7 +34428,7 @@
     "NanaNuts": {
       "index": 11042,
       "owner_key": "4aAPi6iBzowpRyzkrjb8f7vFgeqnb9CnRYiH61W6T2Ag",
-      "balance": 265922,
+      "balance": 305608,
       "membership_expire_on": 1703713655,
       "next_cert_issuable_on": 1673660369,
       "certs_received": {
@@ -33777,6 +34447,23 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "libellulecreative": {
+      "index": 13501,
+      "owner_key": "4aHqoDCGECys6q3gmvJaCaLMhEYsCw4P3Mm5mdMXXuGv",
+      "balance": 60056,
+      "membership_expire_on": 1725226899,
+      "next_cert_issuable_on": 1696502840,
+      "certs_received": {
+        "Gazaile": 1756837270,
+        "LaFeeClochette": 1756796611,
+        "Xaby60": 1757140603,
+        "Aquaneo": 1757028123,
+        "Picsou": 1757028123,
+        "Pamelaayurveda": 1756800332,
+        "AutomneIndien": 1756797118,
+        "Evanouche": 1756852781
+      }
+    },
     "rogervaucluse": {
       "index": 1421,
       "owner_key": "4aLwFVGt5kNJBeEVHXvofbpoAvuaKg9hUAcNuWUanEbq",
@@ -33788,9 +34475,9 @@
     "ClaraFuerteventura": {
       "index": 13140,
       "owner_key": "4aRxtsPZwQMNUBg16wKmMYDUhJSU8HUGBCSHzRdw2PTd",
-      "balance": 54468,
+      "balance": 94054,
       "membership_expire_on": 1719668442,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695718080,
       "certs_received": {
         "kaimdilekeno": 1752258521,
         "Mahj": 1751759860,
@@ -33810,9 +34497,9 @@
     "Tchois": {
       "index": 3323,
       "owner_key": "4agK3ycEQNahuRGoFJDXA2aQGt4iV2YSMPKcoMeR6ZfA",
-      "balance": 48075,
+      "balance": 88061,
       "membership_expire_on": 1720572631,
-      "next_cert_issuable_on": 1693238338,
+      "next_cert_issuable_on": 1696215419,
       "certs_received": {
         "Rebirth35": 1755513031,
         "SylvieBoitard": 1729756906,
@@ -33824,13 +34511,11 @@
         "MAGSENS": 1730997089,
         "FloLap": 1706407438,
         "Robin_et_Odile": 1701753022,
-        "IngridCourreges": 1696421398,
-        "Delfe": 1694729452,
+        "Bibifri06": 1758335531,
         "Anitaantigone": 1708242200,
         "Permaor": 1709082804,
         "Rach": 1737530769,
         "Imppao": 1749839565,
-        "SoNyA": 1693875530,
         "katialabomatik": 1718946433,
         "Chiara07": 1724358518,
         "Bibi06": 1716527725,
@@ -33849,6 +34534,7 @@
         "osavoyard": 1713237146,
         "DjaneDiveraine": 1728785943,
         "Maiana": 1727165740,
+        "SyoulAnuanua": 1758487328,
         "tomval83": 1712623347,
         "hypericum": 1739256275,
         "sarauniya": 1731718954,
@@ -33864,15 +34550,16 @@
     "ClaudiaR": {
       "index": 11793,
       "owner_key": "4aibxaCxmiTR9A2pumHUYBZz6CKAZxkNkA8TB1EHSRsN",
-      "balance": 175446,
+      "balance": 93133,
       "membership_expire_on": 1708735963,
-      "next_cert_issuable_on": 1693038163,
+      "next_cert_issuable_on": 1694182101,
       "certs_received": {
         "elenagrizzly": 1741915233,
         "majo": 1756359613,
         "RONZO": 1741571050,
         "EcoMary": 1743791808,
         "katialabomatik": 1740631132,
+        "Edramax": 1759109631,
         "Josefina": 1740594594,
         "ErichGraf": 1740624027,
         "XavierPS": 1752362395,
@@ -33880,6 +34567,7 @@
         "OtreB": 1740294148,
         "christianmermeladas": 1752193095,
         "VeroniqueV": 1744255680,
+        "Micha": 1757875090,
         "BarbarayErichGraf": 1740623809,
         "NONI": 1744869348
       }
@@ -33921,7 +34609,7 @@
     "BELIOT59": {
       "index": 12412,
       "owner_key": "4ayhh9z6YShYLNCTXqWsVvS88k6zo9a2E5rSXnYPj813",
-      "balance": 144408,
+      "balance": 184094,
       "membership_expire_on": 1712546746,
       "next_cert_issuable_on": 1688323452,
       "certs_received": {
@@ -33938,7 +34626,7 @@
     "Nadou971": {
       "index": 10678,
       "owner_key": "4b3q3UPwfHMnctQcfQEXM6mbHLwPsuKCp3zpuK4w4yZv",
-      "balance": 264097,
+      "balance": 303783,
       "membership_expire_on": 1701655470,
       "next_cert_issuable_on": 1685010749,
       "certs_received": {
@@ -33953,7 +34641,7 @@
     "Yacer": {
       "index": 11768,
       "owner_key": "4b5eqsvBNb66EMzWkq3gxEnrj2Mzd5ytqX54K85pmwAz",
-      "balance": 199500,
+      "balance": 239186,
       "membership_expire_on": 1708917314,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -33967,20 +34655,19 @@
     "Gregory": {
       "index": 570,
       "owner_key": "4bCKgV5YbHsfFhkQKzZxsSrgKtEwp4qUPGVh4dGVcBiP",
-      "balance": 1773351,
+      "balance": 1770937,
       "membership_expire_on": 1704760674,
-      "next_cert_issuable_on": 1691104087,
+      "next_cert_issuable_on": 1695631390,
       "certs_received": {
         "CValentine": 1718827014,
         "Francoeur": 1697345273,
-        "FLORESTRELA": 1698387811,
+        "FLORESTRELA": 1758345492,
         "dine": 1754213637,
         "Camomillefv": 1724572164,
         "BorisBernard": 1729131792,
         "FanchDz": 1747939361,
         "Sixalpha": 1726111014,
         "LaurePollantru": 1707984931,
-        "Gaelle": 1695518783,
         "mimi": 1740534302,
         "NatUnivers": 1742708458,
         "lelfedesboa": 1722142260,
@@ -34000,8 +34687,9 @@
         "Gwenaelle": 1708291725,
         "PascaleRoncoroni": 1738175677,
         "Rumper": 1718822219,
+        "Amaelle": 1759525290,
         "Genosa": 1720114384,
-        "Julien_Jardin": 1703228857,
+        "Julien_Jardin": 1759099654,
         "jeremiemaes": 1740078422,
         "Lea": 1754874000,
         "Etsamanga": 1746160756,
@@ -34014,7 +34702,7 @@
     "fbuland": {
       "index": 37,
       "owner_key": "4bD7J3uA5pH2N9Xqimspf2XxWN4ESM2Az2XBqtSeHvUZ",
-      "balance": 830057,
+      "balance": 869743,
       "membership_expire_on": 1716037576,
       "next_cert_issuable_on": 1684634649,
       "certs_received": {
@@ -34029,8 +34717,8 @@
     "ICHA": {
       "index": 7831,
       "owner_key": "4bFm1PbtspkkvXB3umpBZgEZdPudazya13fznmeR393q",
-      "balance": 320110,
-      "membership_expire_on": 0,
+      "balance": 330500,
+      "membership_expire_on": 1727813442,
       "next_cert_issuable_on": 1674563935,
       "certs_received": {
         "Bioguigui": 1739756565,
@@ -34045,9 +34733,9 @@
     "colinuxCanut2": {
       "index": 12706,
       "owner_key": "4bQuEN7tB6nCpaScULce6V3E83MjFatoSZkP1UG4Tt9u",
-      "balance": 120104,
+      "balance": 208790,
       "membership_expire_on": 1715721939,
-      "next_cert_issuable_on": 1689765059,
+      "next_cert_issuable_on": 1696244348,
       "certs_received": {
         "RomainKornig": 1750742967,
         "Jamorie": 1747629917,
@@ -34061,8 +34749,8 @@
     "DanielPGT": {
       "index": 9865,
       "owner_key": "4bTJvQ9pXNwrBzVEaaT7tEF1gU8WfpQkVQkxcbxZNZUe",
-      "balance": 322142,
-      "membership_expire_on": 1695157360,
+      "balance": 335828,
+      "membership_expire_on": 1725325980,
       "next_cert_issuable_on": 1684021643,
       "certs_received": {
         "lydiemdb": 1741326428,
@@ -34088,7 +34776,7 @@
     "Didou73": {
       "index": 13088,
       "owner_key": "4bVgqHxyKqczPXD1m3fXVGHuJoTaR2bJiyWPbXm2gDdN",
-      "balance": 66808,
+      "balance": 106494,
       "membership_expire_on": 1719872837,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -34102,7 +34790,7 @@
     "MagouneMagalieBA": {
       "index": 7347,
       "owner_key": "4bat44eUBuFNCEvvTpbw9XB9YYy2eHzuNmMACidmqtLf",
-      "balance": 1070125,
+      "balance": 1109811,
       "membership_expire_on": 1706571950,
       "next_cert_issuable_on": 1687769333,
       "certs_received": {
@@ -34123,7 +34811,7 @@
     "Yuca": {
       "index": 11391,
       "owner_key": "4bhLW888SKd3bhA5D1rQPyMFqFP5BcSagzFSpznYXGPv",
-      "balance": 204952,
+      "balance": 183638,
       "membership_expire_on": 1705417522,
       "next_cert_issuable_on": 1687233302,
       "certs_received": {
@@ -34140,7 +34828,7 @@
     "Vahe": {
       "index": 7370,
       "owner_key": "4brjeD5L44RhyrofF2fczJr3PM7FrjgYhZibroT5Jm7F",
-      "balance": 583363,
+      "balance": 590049,
       "membership_expire_on": 1709161934,
       "next_cert_issuable_on": 1652276208,
       "certs_received": {
@@ -34148,6 +34836,7 @@
         "Esprit-paille": 1716793769,
         "Fabi26": 1710871645,
         "Andre208": 1710897276,
+        "DominiqueA": 1758862943,
         "Insa": 1710881639,
         "EmiOne": 1710893344,
         "NadCha": 1712212692
@@ -34178,7 +34867,7 @@
     "AlexandreMaesAlbert": {
       "index": 11150,
       "owner_key": "4bvVwPxvYTfhsgCRArqZJKQ4AFhfwBuRdURDfRMF8sh8",
-      "balance": 308332,
+      "balance": 348018,
       "membership_expire_on": 1704312739,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -34192,9 +34881,9 @@
     "EliotBF": {
       "index": 13378,
       "owner_key": "4bxAWNXNrTg9ko3ADGaedqhkQ8Sc1n8Eqv8W7EbP8H7V",
-      "balance": 21120,
+      "balance": 60806,
       "membership_expire_on": 1723765082,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695402772,
       "certs_received": {
         "NiCoLasF": 1755321344,
         "Carinelechelle": 1755323785,
@@ -34224,7 +34913,7 @@
     "Valenvan": {
       "index": 11532,
       "owner_key": "4cEGaXjnvgrwfDPUTnuKCpJ8pYbUbPuRb9to5vHbC8Pi",
-      "balance": 207444,
+      "balance": 221130,
       "membership_expire_on": 1707411074,
       "next_cert_issuable_on": 1676032832,
       "certs_received": {
@@ -34249,8 +34938,8 @@
     "Shivanishivani": {
       "index": 5957,
       "owner_key": "4cEUS7HhPuH4fDAhwgWxeACDyscSvXAKaUTUBqb2cCmw",
-      "balance": 657826,
-      "membership_expire_on": 1697929147,
+      "balance": 697512,
+      "membership_expire_on": 1728077577,
       "next_cert_issuable_on": 1690088381,
       "certs_received": {
         "OhdeLali": 1698806630,
@@ -34277,8 +34966,8 @@
     "ClaraBelle": {
       "index": 9263,
       "owner_key": "4cU4vankyNLhFzBAdJksyv26pEqnPvhSvSniko6fmmxk",
-      "balance": 346399,
-      "membership_expire_on": 0,
+      "balance": 371813,
+      "membership_expire_on": 1725406806,
       "next_cert_issuable_on": 1667464380,
       "certs_received": {
         "Mariyam": 1720842620,
@@ -34294,12 +34983,13 @@
     "Ratnaboar": {
       "index": 8834,
       "owner_key": "4cWG5mV6LPPxQ61ZwEXTTMdDSbQ3YiHgx4gzLAN5CNqi",
-      "balance": 583821,
+      "balance": 585927,
       "membership_expire_on": 1722281533,
-      "next_cert_issuable_on": 1665992733,
+      "next_cert_issuable_on": 1694609076,
       "certs_received": {
         "Francois-Rose": 1720584380,
         "MoreauCatherine": 1736845295,
+        "LionLDouNIo": 1757694793,
         "virelangue": 1720596545,
         "LionelDrain": 1720408442,
         "Lylnuur": 1720537333,
@@ -34322,20 +35012,15 @@
     "stephanieguillem": {
       "index": 5767,
       "owner_key": "4cXiSyaXEbVKYaUDdGX5eGAX6snC1quj2qkWKBJLVoxF",
-      "balance": 556419,
+      "balance": 601105,
       "membership_expire_on": 1718025702,
       "next_cert_issuable_on": 1686540742,
       "certs_received": {
         "Andrelebourhis": 1720638010,
-        "FaBe": 1695350607,
         "Marionnette": 1756261950,
         "Dzsaga": 1701804474,
-        "EvaBruneau": 1696053593,
         "Guillemyannick": 1714445427,
-        "PhilippeGuillemant": 1695168718,
-        "Reno04": 1695970625,
         "RobertC": 1713933659,
-        "StephaneLONGUET": 1695614238,
         "Fred04": 1739555410,
         "MissVegetal": 1723583169
       }
@@ -34343,9 +35028,9 @@
     "Liliporti": {
       "index": 12856,
       "owner_key": "4coB8ugcFmoinWFQetPvnUBM3Ej8LnSZRo7taLB1jqXm",
-      "balance": 57576,
+      "balance": 97262,
       "membership_expire_on": 1716936165,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695135094,
       "certs_received": {
         "Mmu34": 1749527453,
         "Sophie_Jiyu": 1749079735,
@@ -34357,8 +35042,8 @@
     "LindaNozza": {
       "index": 10380,
       "owner_key": "4coEgx3Qbw9yUyjvPEcHC9Mksto51kK2C5fCfxVtXNHj",
-      "balance": 194359,
-      "membership_expire_on": 1696866040,
+      "balance": 234045,
+      "membership_expire_on": 1727988440,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "GabriellaFugazzotto": 1730997089,
@@ -34371,13 +35056,16 @@
     "CnouFoss": {
       "index": 13240,
       "owner_key": "4cogND7D9furDsYWVhdTmEaV3o9LPHJ2nT8wbjCmYtaw",
-      "balance": 60440,
+      "balance": 96126,
       "membership_expire_on": 1721571420,
-      "next_cert_issuable_on": 1692945972,
+      "next_cert_issuable_on": 1696234329,
       "certs_received": {
+        "Altheaagathe": 1759287111,
         "CaroKro": 1753225533,
         "Emeraude": 1753498362,
         "Alexag": 1753307127,
+        "Juliefab91": 1759286470,
+        "Maaltir": 1757991331,
         "Peesse": 1753156798,
         "Vega44": 1753259803
       }
@@ -34409,7 +35097,7 @@
     "enrica": {
       "index": 10679,
       "owner_key": "4d4xvthEspQip61HPicqG1fvDCb2z6z2LXohpBDa1vBH",
-      "balance": 288397,
+      "balance": 316083,
       "membership_expire_on": 1701734761,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -34426,7 +35114,7 @@
     "AndreaP": {
       "index": 10538,
       "owner_key": "4d6qi1HAJtw9NMiyTcmorNivjHLC8jRZAkn4eZaC6w9L",
-      "balance": 124810,
+      "balance": 164496,
       "membership_expire_on": 1700838344,
       "next_cert_issuable_on": 1671461157,
       "certs_received": {
@@ -34441,7 +35129,7 @@
     "NathalieLeclerc": {
       "index": 10473,
       "owner_key": "4dBQXnYpH3Z17Dwu3fHeAQ6SamRimo3kvmi1an7HpUGw",
-      "balance": 298205,
+      "balance": 337891,
       "membership_expire_on": 1700414808,
       "next_cert_issuable_on": 1671106658,
       "certs_received": {
@@ -34464,7 +35152,7 @@
     "Gerard61": {
       "index": 1757,
       "owner_key": "4dNA8hpi2DeSev5Zssv9448hF97XVdEse9tGhNR1nvxT",
-      "balance": 1679035,
+      "balance": 1718721,
       "membership_expire_on": 1704744674,
       "next_cert_issuable_on": 1676985526,
       "certs_received": {
@@ -34488,7 +35176,7 @@
     "Bonnemime": {
       "index": 11571,
       "owner_key": "4dUwy6WAqv7iQefKa4bUBH8ZERTMnu6y3c8cGBRs4d8h",
-      "balance": 507826,
+      "balance": 561512,
       "membership_expire_on": 1706964163,
       "next_cert_issuable_on": 1682231266,
       "certs_received": {
@@ -34506,15 +35194,15 @@
     "FrancoisSchlesser": {
       "index": 6165,
       "owner_key": "4dgWMW89AS5FJeULJufc3MhDE16gt4NNxzL4gjVn8hgF",
-      "balance": 964961,
-      "membership_expire_on": 1696108175,
-      "next_cert_issuable_on": 1664622932,
+      "balance": 1004647,
+      "membership_expire_on": 1726860496,
+      "next_cert_issuable_on": 1696171908,
       "certs_received": {
         "weyando": 1702962740,
         "Stevia30120": 1700291109,
         "BrigitteW": 1702457495,
         "pielonet": 1700383759,
-        "Chaweyane": 1703409433,
+        "Chaweyane": 1759463209,
         "Yanneuh": 1728429361,
         "LaurentArno": 1700359518,
         "PascalGuillemain": 1700435260,
@@ -34536,9 +35224,9 @@
     "Fan971": {
       "index": 4294,
       "owner_key": "4dozMcv21iwmvnPW1oEKEhE21KWDNXQmUSJS4ZbYfZHB",
-      "balance": 911188,
+      "balance": 948874,
       "membership_expire_on": 1717346108,
-      "next_cert_issuable_on": 1690881624,
+      "next_cert_issuable_on": 1695836663,
       "certs_received": {
         "Stef38": 1718836963,
         "MaryMarie": 1709339587,
@@ -34590,7 +35278,7 @@
     "Michto": {
       "index": 4688,
       "owner_key": "4e4JiS7UCJN8zSfZHF5PT86GnExFTD5Y9Yw2AZ1VRYYT",
-      "balance": 878862,
+      "balance": 918548,
       "membership_expire_on": 1710700332,
       "next_cert_issuable_on": 1682659732,
       "certs_received": {
@@ -34624,14 +35312,28 @@
       "next_cert_issuable_on": 1660973327,
       "certs_received": {
         "Vivakvo": 1701478287,
-        "Pac": 1694240085,
         "Loutre": 1699316609
       }
     },
+    "Malena": {
+      "index": 13583,
+      "owner_key": "4e9s44PBTq9GpjEGhwhiRa64Xi4uJnbdZp2kiuzbCgpE",
+      "balance": 41349,
+      "membership_expire_on": 1726073561,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "MaudD": 1757632556,
+        "SantiTrinquete": 1757634995,
+        "Estherm": 1757633322,
+        "YagoMago": 1757641683,
+        "AnianaYpunto": 1757633322,
+        "Monicakoala": 1757657522
+      }
+    },
     "stetibu79": {
       "index": 6555,
       "owner_key": "4eAjv44Cn4X1PD8CkMh5BTKBS5gXCK2oc4wVedpKPyQe",
-      "balance": 678001,
+      "balance": 717687,
       "membership_expire_on": 1706581213,
       "next_cert_issuable_on": 1655302794,
       "certs_received": {
@@ -34650,14 +35352,12 @@
       "balance": 1403236,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Aude49": 1694346407
-      }
+      "certs_received": {}
     },
     "CreaCoco": {
       "index": 13190,
       "owner_key": "4eEDJ5F5VzGLfotbJWPVs8Lf4rJHpZFu3YkYVqEiwoqk",
-      "balance": 68892,
+      "balance": 108578,
       "membership_expire_on": 1718591244,
       "next_cert_issuable_on": 1690989599,
       "certs_received": {
@@ -34673,9 +35373,9 @@
     "CaroJans": {
       "index": 7478,
       "owner_key": "4eGhodye27DcPB3Jz17TMtpr3hKRWwd4ZtEEu5JG9VDT",
-      "balance": 19209,
+      "balance": 26795,
       "membership_expire_on": 1710364734,
-      "next_cert_issuable_on": 1691738475,
+      "next_cert_issuable_on": 1696309449,
       "certs_received": {
         "RuthGuerrero": 1753665396,
         "LeDemineur21": 1711579230,
@@ -34698,6 +35398,7 @@
         "Christie21160": 1734072351,
         "Lnbanor": 1723364094,
         "Prisc": 1742362766,
+        "AnnParisot": 1755928879,
         "Lylie_Bulle": 1742431148,
         "Atharreau": 1718677697,
         "OrAnge": 1754954830,
@@ -34711,7 +35412,7 @@
     "Celibre": {
       "index": 12670,
       "owner_key": "4eLZcsDhdQg1xf8b6Eg3ZPvfUvHx7LM79zYSjA76eWPN",
-      "balance": 114276,
+      "balance": 153962,
       "membership_expire_on": 1714588130,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -34736,7 +35437,7 @@
     "Arnaudremy": {
       "index": 12937,
       "owner_key": "4eNwHoibr3zjWWfq5rfeJb3WYcMpbgC7U3vHcAmvNg1P",
-      "balance": 86964,
+      "balance": 126650,
       "membership_expire_on": 1716000909,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -34767,8 +35468,8 @@
     "Marine": {
       "index": 9769,
       "owner_key": "4eUjM4ccihTmERSXPZcPnwToCEFjVF7i4JWXjoxUZ7j5",
-      "balance": 356555,
-      "membership_expire_on": 1695809115,
+      "balance": 384383,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1671946412,
       "certs_received": {
         "DETTE": 1727803899,
@@ -34800,7 +35501,7 @@
     "NataNieves": {
       "index": 6800,
       "owner_key": "4ehkQME6hyS1oZXYt6XzPte5QvrfJDjQTdKqZouWebyE",
-      "balance": 537605,
+      "balance": 577291,
       "membership_expire_on": 1701604851,
       "next_cert_issuable_on": 1691299288,
       "certs_received": {
@@ -34822,9 +35523,9 @@
     "BOUbou007": {
       "index": 7833,
       "owner_key": "4ejR7fEev6DagheheagNDWoYJC38hp3y3upwB9c3qdQJ",
-      "balance": 399712,
+      "balance": 415698,
       "membership_expire_on": 1708699972,
-      "next_cert_issuable_on": 1683196869,
+      "next_cert_issuable_on": 1695991174,
       "certs_received": {
         "Etipol61": 1714076628,
         "lumirose": 1716496509,
@@ -34836,6 +35537,7 @@
         "phil3455": 1722732413,
         "LaSoyeFee": 1741915689,
         "Coucoudidier": 1713814310,
+        "sercla": 1756655420,
         "Pekos": 1739482508,
         "Hesjie": 1743128857,
         "GeneBe": 1737097356,
@@ -34847,8 +35549,8 @@
     "Lordsagitere": {
       "index": 6184,
       "owner_key": "4ek93vDHspsKVajimcRqJ8p6Vhk9JBd7TXzhZksXkwfw",
-      "balance": 620109,
-      "membership_expire_on": 1693838600,
+      "balance": 658727,
+      "membership_expire_on": 1725552687,
       "next_cert_issuable_on": 1678457705,
       "certs_received": {
         "MilaChavez": 1700696831,
@@ -34877,7 +35579,7 @@
     "JeanMicheljoannes": {
       "index": 13256,
       "owner_key": "4ex4hY6GLSsuKnYRExEoy51gwKaJSMJs5aiEZv8KkHNW",
-      "balance": 37380,
+      "balance": 74066,
       "membership_expire_on": 1721831361,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -34892,7 +35594,7 @@
     "DanielL": {
       "index": 9152,
       "owner_key": "4exXF6qBAzteU5yrFZgVjPmD9bQroseA6A4buUVnp9VU",
-      "balance": 923472,
+      "balance": 963158,
       "membership_expire_on": 1714519522,
       "next_cert_issuable_on": 1664780765,
       "certs_received": {
@@ -34911,7 +35613,7 @@
     "Merkaba": {
       "index": 10754,
       "owner_key": "4f4AHVXtLmUpnLfKpzbwTrxPw1DHJGxuPsMKMRAmkVsh",
-      "balance": 282661,
+      "balance": 311847,
       "membership_expire_on": 1701475332,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -34925,23 +35627,26 @@
     "Nounouche": {
       "index": 5406,
       "owner_key": "4fCFSKPA3LwuCjmpKe8Gnp9zRwJG93FxE8j7GNNeqdqw",
-      "balance": 725245,
+      "balance": 709931,
       "membership_expire_on": 1712698412,
-      "next_cert_issuable_on": 1688884764,
+      "next_cert_issuable_on": 1696746918,
       "certs_received": {
-        "Sev": 1696202489,
+        "Bambou": 1758047181,
         "ChristineMontpellier": 1733718308,
         "Brigitte71": 1733718080,
+        "camillerichard": 1758786654,
         "Beacouleurs": 1745616308,
         "RosaChristina": 1749362140,
         "SylvieDici": 1745387446,
-        "VALVALO": 1745598074
+        "Sol-Eric": 1758054239,
+        "VALVALO": 1745598074,
+        "Hdsaf": 1758301983
       }
     },
     "pafzedog": {
       "index": 52,
       "owner_key": "4fHMTFBMo5sTQEc5p1CNWz28S4mnnqdUBmECq1zt4n2m",
-      "balance": 2439100,
+      "balance": 2478786,
       "membership_expire_on": 1719751417,
       "next_cert_issuable_on": 1682226759,
       "certs_received": {
@@ -34970,7 +35675,7 @@
     "Vincent18": {
       "index": 8945,
       "owner_key": "4fP1zHSzHtw9nvGZovGQbXdZNiLbvgp37MjdR4yqiNBP",
-      "balance": 437043,
+      "balance": 476729,
       "membership_expire_on": 1720209079,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -35001,7 +35706,7 @@
     "Andimion": {
       "index": 13316,
       "owner_key": "4fV6F8sp59R5xjmZL3NYNATcJoKjJJpcpLBr364gXJbK",
-      "balance": 27768,
+      "balance": 67454,
       "membership_expire_on": 1722124820,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -35016,7 +35721,7 @@
     "AlexDurain": {
       "index": 4882,
       "owner_key": "4fghwLCNWw9fx6L6VuPq6Xc1wE1xtx5AH1SyYbXVB56F",
-      "balance": 1419209,
+      "balance": 1458895,
       "membership_expire_on": 1707155728,
       "next_cert_issuable_on": 1677211736,
       "certs_received": {
@@ -35034,8 +35739,8 @@
     "VALRI34": {
       "index": 9500,
       "owner_key": "4fyjkw9HQcJLo7gYEfno78uwYbHNccEmqYsQebumLAxh",
-      "balance": 386289,
-      "membership_expire_on": 1694513681,
+      "balance": 398037,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1687226639,
       "certs_received": {
         "absalon2": 1724906303,
@@ -35051,7 +35756,7 @@
     "PtitLouis": {
       "index": 10090,
       "owner_key": "4fzBb3Wu4FB5ZNkf4XHuYz5wX9zN1SPK7ZbLLW4wr5Lu",
-      "balance": 310798,
+      "balance": 350484,
       "membership_expire_on": 1697231602,
       "next_cert_issuable_on": 1682490818,
       "certs_received": {
@@ -35065,7 +35770,7 @@
     "Sophiechevre": {
       "index": 11223,
       "owner_key": "4g1cXpAVH2a9xHwEvLsujvVgsFoor7HjtNWhb43jc1YY",
-      "balance": 140818,
+      "balance": 180504,
       "membership_expire_on": 1701296329,
       "next_cert_issuable_on": 1691211274,
       "certs_received": {
@@ -35085,7 +35790,7 @@
     "Mluc": {
       "index": 7250,
       "owner_key": "4g1vC97soLTaE3JFDdFNXQyfxp9skEmw4Ck4zcLpWPuj",
-      "balance": 438552,
+      "balance": 478238,
       "membership_expire_on": 1715381504,
       "next_cert_issuable_on": 1683896643,
       "certs_received": {
@@ -35104,7 +35809,7 @@
     "ophelie": {
       "index": 3240,
       "owner_key": "4g78MU29XCsSJMzKURo4SCFjQBZ5Ng13SNJeQ38vYeLE",
-      "balance": 1102378,
+      "balance": 1142064,
       "membership_expire_on": 1706790557,
       "next_cert_issuable_on": 1675304957,
       "certs_received": {
@@ -35119,7 +35824,7 @@
     "Richard": {
       "index": 8407,
       "owner_key": "4gCMq56HqxpN2u2GR145WXB9zFMnLP9MZjwBcpbZyS2c",
-      "balance": 518634,
+      "balance": 558320,
       "membership_expire_on": 1710985866,
       "next_cert_issuable_on": 1689602249,
       "certs_received": {
@@ -35145,7 +35850,7 @@
     "Nekane": {
       "index": 6909,
       "owner_key": "4gNfD5uXYRw5oQGxA9n1sRYf24e4AvECk9rtsjvobgQv",
-      "balance": 283097,
+      "balance": 338751,
       "membership_expire_on": 1704739561,
       "next_cert_issuable_on": 1681183455,
       "certs_received": {
@@ -35153,8 +35858,10 @@
         "Cordeliaze": 1707470705,
         "Etipol61": 1721103432,
         "MaudD": 1720925840,
+        "regy": 1757063710,
         "sheveck": 1714701914,
         "Estitz": 1713949653,
+        "Sorgentini": 1759809375,
         "Josepeuta": 1731518307,
         "Estherm": 1728367057,
         "LI21": 1707469809,
@@ -35183,7 +35890,7 @@
     "AnnePrache": {
       "index": 3243,
       "owner_key": "4gTKSuFqjc3XZBj4xZmLzrEaCcRrAirmbtmMvZvUNzBr",
-      "balance": 1296546,
+      "balance": 1336232,
       "membership_expire_on": 1705364902,
       "next_cert_issuable_on": 1689677711,
       "certs_received": {
@@ -35191,20 +35898,22 @@
         "etnebab": 1728702020,
         "Nelsonchapiteau": 1698449734,
         "Manu_Auger": 1728103064,
+        "Perrine971": 1759346718,
         "HenriCotonnec": 1735876431,
-        "Damery": 1703743075
+        "Damery": 1759590527
       }
     },
     "Vanthegreat": {
       "index": 10081,
       "owner_key": "4gdcFpU3qi6UthzWPth5KnZgKsC13LsQ6NwoDTVdWWpD",
-      "balance": 329757,
-      "membership_expire_on": 1697674820,
-      "next_cert_issuable_on": 1691918223,
+      "balance": 369443,
+      "membership_expire_on": 1725911938,
+      "next_cert_issuable_on": 1694426338,
       "certs_received": {
         "lims": 1729462060,
         "lavenirestunlongpasse": 1729462427,
         "LyTo": 1729463144,
+        "CTL": 1757975285,
         "LabelleVi": 1729462060,
         "iafu": 1729473155
       }
@@ -35212,7 +35921,7 @@
     "Gioadelina": {
       "index": 13012,
       "owner_key": "4gdu5HF83MR8wtt5SdDpCkvpZ6g5nd1qRwNrUm7fCGgD",
-      "balance": 81420,
+      "balance": 121106,
       "membership_expire_on": 1719446603,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -35226,9 +35935,9 @@
     "heinz": {
       "index": 13144,
       "owner_key": "4gkLqToAmAATptn7NW69GtBhufio7vmso2abw635BZrk",
-      "balance": 59642,
+      "balance": 44472,
       "membership_expire_on": 1720111438,
-      "next_cert_issuable_on": 1690640224,
+      "next_cert_issuable_on": 1695445885,
       "certs_received": {
         "Jens777": 1752287447,
         "majo": 1751936332,
@@ -35242,8 +35951,8 @@
     "MERA": {
       "index": 9435,
       "owner_key": "4gp2gL3yS1JCxNQ8PzgvNF8Kb3XbHT8FCCKTbdyryXEe",
-      "balance": 371546,
-      "membership_expire_on": 1693960032,
+      "balance": 376886,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683428633,
       "certs_received": {
         "Micha99": 1726128377,
@@ -35258,9 +35967,9 @@
     "Pacha": {
       "index": 12957,
       "owner_key": "4grXmCq2irRXWHxPBk1xu467U76pCit2TpY2VEKSJ8su",
-      "balance": 319260,
+      "balance": 331446,
       "membership_expire_on": 1718034779,
-      "next_cert_issuable_on": 1692589846,
+      "next_cert_issuable_on": 1695134809,
       "certs_received": {
         "Sophie_Jiyu": 1749592379,
         "gerardchavanon": 1750567776,
@@ -35273,7 +35982,7 @@
     "papistef": {
       "index": 2403,
       "owner_key": "4gteRsaLN5zChmTk11qWnQj41Bctn8siDvvxngTsmMBG",
-      "balance": 1169570,
+      "balance": 1209256,
       "membership_expire_on": 1698082191,
       "next_cert_issuable_on": 1655100651,
       "certs_received": {
@@ -35293,8 +36002,8 @@
     "NoellieDelande": {
       "index": 9412,
       "owner_key": "4gv7wsanfp3U7A6bkDFtafmkLy8WbmttZMYanQx6AiEW",
-      "balance": 386646,
-      "membership_expire_on": 1693774473,
+      "balance": 389850,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1672382004,
       "certs_received": {
         "Midorela": 1725691717,
@@ -35302,16 +36011,32 @@
         "MIA": 1725406313,
         "KdSL63": 1732683827,
         "filou": 1725381288,
+        "prevotfran5310": 1756605325,
         "SAIGA": 1734382820,
         "xaviercdb": 1725401430,
         "Coolga5575": 1725332273,
         "NoelSoudon": 1725405989
       }
     },
+    "Cilou": {
+      "index": 13568,
+      "owner_key": "4gwNJeQ9uEbEX7WGpCcYNCDBExmj1teZF1BwbG9a5dNY",
+      "balance": 94802,
+      "membership_expire_on": 1722375842,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Tot16": 1753485470,
+        "DaniailesA": 1753484975,
+        "Coco-B": 1754062638,
+        "Fannyhihihi": 1757116639,
+        "AnaisLicorne": 1757116919,
+        "NolanRoni": 1757116919
+      }
+    },
     "Cathylou97480": {
       "index": 11781,
       "owner_key": "4h158s2Rf1LnnFNHbW9nLjFf3M2u8eYoTsdEWsQFE8es",
-      "balance": 279941,
+      "balance": 281627,
       "membership_expire_on": 1708971148,
       "next_cert_issuable_on": 1692002693,
       "certs_received": {
@@ -35331,7 +36056,7 @@
     "Phil7": {
       "index": 2164,
       "owner_key": "4h16MHcDucbUzj8yWePm7PyerW7yPbWcxitinrCjWfrz",
-      "balance": 375246,
+      "balance": 414932,
       "membership_expire_on": 1706032377,
       "next_cert_issuable_on": 1687830168,
       "certs_received": {
@@ -35342,6 +36067,7 @@
         "Gaia5": 1745641979,
         "CareIn": 1751973085,
         "Brunov974": 1707357059,
+        "pbienfait": 1756942453,
         "CelineB": 1745649324,
         "pvincent": 1751390930,
         "Corinne974": 1718672646,
@@ -35357,7 +36083,7 @@
     "Libellule58": {
       "index": 12259,
       "owner_key": "4h1HNzCjxc4YiZ4PMFqfh7GfvKMjApVdR8aCVwhHsfhk",
-      "balance": 150996,
+      "balance": 190682,
       "membership_expire_on": 1712238374,
       "next_cert_issuable_on": 1682824603,
       "certs_received": {
@@ -35380,7 +36106,7 @@
     "JeanMichelBrisard": {
       "index": 8373,
       "owner_key": "4h8jeXCJyd67Wjb33dGfMkom48KCPbkYFiWvVk7epQ71",
-      "balance": 428736,
+      "balance": 457422,
       "membership_expire_on": 1712436372,
       "next_cert_issuable_on": 1682363492,
       "certs_received": {
@@ -35401,7 +36127,7 @@
     "Gloria974": {
       "index": 5556,
       "owner_key": "4h9ikAWZMsnvLHYBdKuB76F85GXLKfrgzzgT1DYsDCeY",
-      "balance": 780685,
+      "balance": 820371,
       "membership_expire_on": 1718795120,
       "next_cert_issuable_on": 1687933337,
       "certs_received": {
@@ -35411,7 +36137,8 @@
         "Monik9366": 1740436046,
         "Kiara974": 1748746932,
         "pearlreunion": 1708316645,
-        "Roswell": 1748747343
+        "Roswell": 1748747343,
+        "FredericAmany974": 1756676717
       }
     },
     "tyjak": {
@@ -35431,7 +36158,7 @@
     "Luquinene": {
       "index": 6465,
       "owner_key": "4hHtQNM1MPyT3NLpWR4Ko79pJeFqELAEv5Ckvi5JHhRy",
-      "balance": 409688,
+      "balance": 449374,
       "membership_expire_on": 1698175345,
       "next_cert_issuable_on": 1666695740,
       "certs_received": {
@@ -35473,7 +36200,7 @@
     "MrHernando": {
       "index": 13077,
       "owner_key": "4hPFxvz72dfVxKKms9UeVAKvDDRejE5xLm6xAbpquNgu",
-      "balance": 129190,
+      "balance": 168876,
       "membership_expire_on": 1719244388,
       "next_cert_issuable_on": 1690640224,
       "certs_received": {
@@ -35506,12 +36233,13 @@
     "unica": {
       "index": 10422,
       "owner_key": "4he8PiQqnwwRkCHgpiYrN5HL6GWihY15PLUXmnbov45Y",
-      "balance": 165292,
-      "membership_expire_on": 1700185675,
-      "next_cert_issuable_on": 1690982238,
+      "balance": 277278,
+      "membership_expire_on": 1726609761,
+      "next_cert_issuable_on": 1696749548,
       "certs_received": {
         "LosMundosdeKrull": 1731972178,
         "Cholo": 1747942835,
+        "Cordeliaze": 1759810724,
         "Silvi": 1748148778,
         "Unomasuno": 1734302227,
         "Ambar": 1741216072,
@@ -35528,6 +36256,7 @@
         "Leia": 1751875553,
         "Nella": 1754023406,
         "Dixebral": 1746493168,
+        "Oarina": 1759797521,
         "Felisa": 1745568803,
         "mariabiodanza": 1740678862,
         "nussyna": 1746549441,
@@ -35535,6 +36264,7 @@
         "BeatricePieper": 1737751735,
         "Anaagua": 1737079624,
         "RuthLibelulaAzul": 1731970819,
+        "Didy": 1758265321,
         "CristinaAbella": 1738726535,
         "RocioArmonia": 1734766065,
         "AylaSatyaSangat": 1740291694,
@@ -35542,6 +36272,7 @@
         "EMA": 1749796934,
         "Marianfs": 1740034682,
         "Runa_81": 1731874586,
+        "GuillermoHarmonia": 1759790917,
         "AndresXaudi": 1753649711,
         "lachispis": 1750827750,
         "fania": 1752287929
@@ -35584,7 +36315,7 @@
     "CharlesHovasse": {
       "index": 9531,
       "owner_key": "4hkBRQK2XNs758tNAzWbZiPKeA3WzJs4QHaZSM7pb3hP",
-      "balance": 383336,
+      "balance": 423022,
       "membership_expire_on": 1719671805,
       "next_cert_issuable_on": 1692501850,
       "certs_received": {
@@ -35608,7 +36339,7 @@
     "Marifer": {
       "index": 11501,
       "owner_key": "4hkVjS66WN4odgvgs4HQCGUei3UGf8KvdhmqzGhMjeGR",
-      "balance": 189531,
+      "balance": 223817,
       "membership_expire_on": 1706715939,
       "next_cert_issuable_on": 1685456193,
       "certs_received": {
@@ -35626,7 +36357,7 @@
     "Lheureux": {
       "index": 1841,
       "owner_key": "4hn1YnTUdSQvoMS39bpPbF16EP5y3c85CWuiinzizVY1",
-      "balance": 1247480,
+      "balance": 1287166,
       "membership_expire_on": 1711740127,
       "next_cert_issuable_on": 1690037769,
       "certs_received": {
@@ -35644,7 +36375,7 @@
     "Callepsa": {
       "index": 6758,
       "owner_key": "4i26ufDJjYNubHmzXJut1KEwb7fHRRU9X994iRPsFYDh",
-      "balance": 480762,
+      "balance": 520448,
       "membership_expire_on": 1713884091,
       "next_cert_issuable_on": 1662127035,
       "certs_received": {
@@ -35659,7 +36390,7 @@
     "Philomene": {
       "index": 8442,
       "owner_key": "4i2G3kAAwd6EGzo7w2LFN3rVqS7C7Y43fpxxwzn9HQh4",
-      "balance": 472981,
+      "balance": 512667,
       "membership_expire_on": 1712579316,
       "next_cert_issuable_on": 1662751526,
       "certs_received": {
@@ -35674,7 +36405,7 @@
     "Sunny": {
       "index": 10925,
       "owner_key": "4iBUnZq7Qb3mMG2vVFAkw78ih1WH2V4zVivA63xYGXPw",
-      "balance": 271212,
+      "balance": 290898,
       "membership_expire_on": 1701228629,
       "next_cert_issuable_on": 1683532193,
       "certs_received": {
@@ -35694,7 +36425,7 @@
     "aikaeros": {
       "index": 11395,
       "owner_key": "4iDZEtwvFyF1gFk8JeL8t91QSCgF2E33kdUU5diAX4r7",
-      "balance": 228294,
+      "balance": 267980,
       "membership_expire_on": 1705962135,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -35708,8 +36439,8 @@
     "ylona11": {
       "index": 9654,
       "owner_key": "4iFooX5UysuzKytga25PtykH4GjaZuZfpnhAKw6JMjLq",
-      "balance": 361527,
-      "membership_expire_on": 1694549734,
+      "balance": 374343,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1684543602,
       "certs_received": {
         "christiane6907": 1725039868,
@@ -35725,7 +36456,7 @@
     "Ssunkev": {
       "index": 4862,
       "owner_key": "4iGRG6gM4rG44Vwstwmn7x6TYpTVJeHA5Lrizm7HMPy6",
-      "balance": 618960,
+      "balance": 658646,
       "membership_expire_on": 1704900640,
       "next_cert_issuable_on": 1654060852,
       "certs_received": {
@@ -35734,16 +36465,15 @@
         "Brahmaya": 1740194278,
         "LOLOBOBO11": 1736714128,
         "Monok": 1736715167,
-        "ElenaMavida": 1695364622,
         "Nana_EsCalaix": 1718265141
       }
     },
     "VeroDeJetsDoux": {
       "index": 8807,
       "owner_key": "4iJJbSnUTmWMMsqust3GpVdq9NvooQCChZfrkDManbJW",
-      "balance": 950833,
+      "balance": 1046519,
       "membership_expire_on": 1716983582,
-      "next_cert_issuable_on": 1693195354,
+      "next_cert_issuable_on": 1696413036,
       "certs_received": {
         "Justis": 1720566928,
         "MarieDel": 1738210201,
@@ -35755,6 +36485,7 @@
         "luismo": 1720272974,
         "armiele": 1748328067,
         "guillaumedangin": 1726368748,
+        "JNR25": 1759036023,
         "Fannyhihihi": 1719993211,
         "RobinRoni": 1720049113,
         "Vicktor": 1720321445,
@@ -35768,7 +36499,7 @@
     "ChristianGrobostMembre": {
       "index": 11545,
       "owner_key": "4iUmKCcRUJ2R4xDWY42zeJ9oX5Rxs3yqr1yER17SWYBg",
-      "balance": 215385,
+      "balance": 255071,
       "membership_expire_on": 1707514590,
       "next_cert_issuable_on": 1690369161,
       "certs_received": {
@@ -35782,20 +36513,36 @@
         "yannig": 1739076339
       }
     },
+    "Aghi": {
+      "index": 13647,
+      "owner_key": "4ibgJGGxEAwH3aYX97pZ4XdvMC93kxMa2N8BehM6pMf3",
+      "balance": 15992,
+      "membership_expire_on": 1725286083,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Agartha": 1756856592,
+        "Mayazoy": 1758398179,
+        "Clairdelune": 1756845817,
+        "PapillonIsis": 1758319407,
+        "AnemoneSyl": 1758563191
+      }
+    },
     "Sylviane79": {
       "index": 6250,
       "owner_key": "4ifqkbdTmyaG7MyqLWuL8VBQHTbs2z9RBAjvzpcbkcFa",
-      "balance": 352319,
-      "membership_expire_on": 0,
+      "balance": 373849,
+      "membership_expire_on": 1726525560,
       "next_cert_issuable_on": 1649737664,
       "certs_received": {
         "Kevinbdn": 1701142608,
         "JohannFox": 1701245925,
+        "fredo79": 1759255936,
         "TramB": 1713853698,
         "Coco-B": 1701285412,
-        "Mobilhomme": 1701227909,
+        "Mobilhomme": 1759210771,
         "AdelineCesbron": 1700707479,
-        "SamsFactory": 1700701143
+        "SamsFactory": 1700701143,
+        "Siellevie": 1759256305
       }
     },
     "GeraldineLebreton": {
@@ -35811,7 +36558,7 @@
     "LaurentMuller": {
       "index": 8241,
       "owner_key": "4irYovYRDt9aYdptgEsvaxyzQPapAZuqaiCdYzrNu4UE",
-      "balance": 698746,
+      "balance": 753432,
       "membership_expire_on": 1714072305,
       "next_cert_issuable_on": 1665229214,
       "certs_received": {
@@ -35824,10 +36571,40 @@
         "bubuche52": 1734669636
       }
     },
+    "EdouardDURAND": {
+      "index": 13609,
+      "owner_key": "4is1RSLjbeDe2N9mpXFWSQ4G54d4ze2yj1sGiRTtWdEg",
+      "balance": 23294,
+      "membership_expire_on": 1725387828,
+      "next_cert_issuable_on": 1696425091,
+      "certs_received": {
+        "AnnieFortin": 1758267349,
+        "Flam": 1758055174,
+        "ChaGaia5926": 1757828611,
+        "MARIEFRANCE": 1758667909,
+        "CMamounette": 1758053266,
+        "LEO": 1758266795
+      }
+    },
+    "CarolePo": {
+      "index": 13470,
+      "owner_key": "4iswhrGfFdQrWwGyAf4y4A3yDh3Cc16xAhdevqkVcu4p",
+      "balance": 0,
+      "membership_expire_on": 0,
+      "next_cert_issuable_on": 1694223101,
+      "certs_received": {
+        "Lilibeth79": 1756697261,
+        "AnthonyDel": 1756192759,
+        "DomVe": 1756174792,
+        "Cyrian": 1756176410,
+        "Nyriel": 1756174473,
+        "NanouchkaM": 1756241622
+      }
+    },
     "BernardORSONI": {
       "index": 6,
       "owner_key": "4iwyu6St2K7K4TrsbS7JvjUqT2ndw1vXFXWE3ttki6uk",
-      "balance": 292906,
+      "balance": 332592,
       "membership_expire_on": 1716763789,
       "next_cert_issuable_on": 1676383543,
       "certs_received": {
@@ -35873,7 +36650,7 @@
     "Paconecte0898": {
       "index": 7709,
       "owner_key": "4j9r2a7k6bApTv8woqH7qs8scZAknSexNmRFx4bK7T87",
-      "balance": 531837,
+      "balance": 571523,
       "membership_expire_on": 1707864901,
       "next_cert_issuable_on": 1677587628,
       "certs_received": {
@@ -35892,7 +36669,7 @@
     "gaiasy": {
       "index": 10502,
       "owner_key": "4jAygC8FUQ4Yu1qGtxprjgw2hYBMTZ7vYikdLndtjBgW",
-      "balance": 312487,
+      "balance": 352173,
       "membership_expire_on": 1699817937,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -35907,7 +36684,7 @@
     "ciboulette92": {
       "index": 8789,
       "owner_key": "4jDzRM1XW2LdCMEk9YaoXR1yssCPqKVMKfjGFd2cYZ4o",
-      "balance": 489757,
+      "balance": 572943,
       "membership_expire_on": 1719698632,
       "next_cert_issuable_on": 1657340493,
       "certs_received": {
@@ -35933,16 +36710,14 @@
       "balance": 1454304,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Eauvive": 1694812739
-      }
+      "certs_received": {}
     },
     "IsaForest": {
       "index": 120,
       "owner_key": "4jWGXdQMRk698hVjkxLYc5iGntn9eoo3NTUPdeGq2WKs",
-      "balance": 806307,
+      "balance": 825993,
       "membership_expire_on": 1700935550,
-      "next_cert_issuable_on": 1688348424,
+      "next_cert_issuable_on": 1694747423,
       "certs_received": {
         "HazaiIsambert": 1705477917,
         "SevChereau": 1717687810,
@@ -35950,9 +36725,9 @@
         "ChloeWeber": 1733949952,
         "LaurenceIG": 1755331386,
         "KarineForest": 1733042752,
+        "Spirulina": 1756784499,
         "SabineIsambert": 1698600448,
         "NoaChereau": 1717688565,
-        "Leticia": 1696115966,
         "HugoWeber": 1733505798
       }
     },
@@ -35969,7 +36744,7 @@
     "BernardGarat": {
       "index": 12256,
       "owner_key": "4ji3SZ4mY1FRCw5jR8pXuc45MdXWYqAyAsMUnTBvHKwp",
-      "balance": 157096,
+      "balance": 196782,
       "membership_expire_on": 1708271078,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -35987,7 +36762,7 @@
     "namagra": {
       "index": 5530,
       "owner_key": "4jnkCobM7uwXgYYDWjQWkaFFdVjNTyEQ49hhXJ38WvhN",
-      "balance": 525095,
+      "balance": 564782,
       "membership_expire_on": 1716442690,
       "next_cert_issuable_on": 1685711833,
       "certs_received": {
@@ -36002,8 +36777,8 @@
     "gilpat": {
       "index": 7687,
       "owner_key": "4jt5LRQHZG3h9DDBkXrXFVBnC6LBhHD2SWwLEo5jm4fh",
-      "balance": 366571,
-      "membership_expire_on": 0,
+      "balance": 371961,
+      "membership_expire_on": 1727829603,
       "next_cert_issuable_on": 1674563029,
       "certs_received": {
         "Bioguigui": 1739224874,
@@ -36025,14 +36800,15 @@
     "DomMembre": {
       "index": 3954,
       "owner_key": "4kEyMs9UDtDPVrsbSVRLdjZwpkkxdy3SBUrjezkVUenf",
-      "balance": 1070540,
+      "balance": 1110226,
       "membership_expire_on": 1723640308,
-      "next_cert_issuable_on": 1692154708,
+      "next_cert_issuable_on": 1696488698,
       "certs_received": {
         "Lionel_Dechilly": 1750042706,
         "Francois-Rose": 1707347923,
         "AN-gela": 1755248594,
         "Lilibeth79": 1755242491,
+        "Papou": 1756419968,
         "pastachutta1964": 1754427990,
         "UBUNTU": 1754767570,
         "Husam": 1754720136,
@@ -36059,30 +36835,28 @@
     "ChristianDelaunay": {
       "index": 5128,
       "owner_key": "4kHbbLoRhi8rEZW1AmXhD5inVuX5iBU1HDjjGzuYaxYV",
-      "balance": 758910,
+      "balance": 798596,
       "membership_expire_on": 1706557985,
-      "next_cert_issuable_on": 1685254941,
+      "next_cert_issuable_on": 1696501531,
       "certs_received": {
         "Sunflower": 1717186218,
         "Stephaneon": 1716002467,
         "MarionM": 1700033789,
         "Filou": 1749452142,
         "Cleo59": 1749451512,
-        "ZinzinGroues": 1696369713,
         "DidierPapillon": 1754026537,
         "Punya": 1701062496,
         "ElisaDesFougeres": 1705269074,
         "SeveOrange": 1709324446,
-        "NathalieBuxerolle": 1747282983,
-        "katou": 1696369713
+        "NathalieBuxerolle": 1747282983
       }
     },
     "HeleneH": {
       "index": 11740,
       "owner_key": "4kJa7w4oVscZU9ukAoZi477RuAbDtM3Xj9K7Xcd6eDbe",
-      "balance": 207018,
+      "balance": 246704,
       "membership_expire_on": 1703798722,
-      "next_cert_issuable_on": 1692932260,
+      "next_cert_issuable_on": 1696727477,
       "certs_received": {
         "absalon2": 1740157268,
         "devihope": 1740309262,
@@ -36096,14 +36870,16 @@
     "catrelax11": {
       "index": 13058,
       "owner_key": "4kRRBs3MHSYrmudF3ih1WzCCs8nw9otkpWCf3HVQjAVd",
-      "balance": 87076,
+      "balance": 46862,
       "membership_expire_on": 1719404929,
-      "next_cert_issuable_on": 1693132225,
+      "next_cert_issuable_on": 1695360061,
       "certs_received": {
+        "Marylune": 1758677930,
         "JeanMarcBuge": 1751418174,
         "ASHTARA": 1750962529,
         "SylvieT": 1751341191,
         "GeraldineGarrigues": 1751337208,
+        "Thiam": 1756707385,
         "Mido": 1751337208,
         "StarTerreHappy": 1753258948,
         "stephanoel": 1756249176
@@ -36112,7 +36888,7 @@
     "Veroniquez": {
       "index": 9441,
       "owner_key": "4kVv3cpvVraHqruhwC2w59i4uKRGCqnJAoRUQXuLvyNu",
-      "balance": 493844,
+      "balance": 543530,
       "membership_expire_on": 1720455024,
       "next_cert_issuable_on": 1686387878,
       "certs_received": {
@@ -36128,7 +36904,7 @@
     "BrunoGJ07": {
       "index": 7176,
       "owner_key": "4kWZyDbRGb3n46iurJzkAJrtp397eApEHHPVMrTji2Ft",
-      "balance": 566164,
+      "balance": 605850,
       "membership_expire_on": 1709587515,
       "next_cert_issuable_on": 1651662570,
       "certs_received": {
@@ -36143,15 +36919,13 @@
     "Snox": {
       "index": 163,
       "owner_key": "4kYSEm8cho3s2v4yuMZa5FqqXADM8oFHKTnkqrKSmLQZ",
-      "balance": 2521200,
+      "balance": 2560886,
       "membership_expire_on": 1699643177,
       "next_cert_issuable_on": 1692162257,
       "certs_received": {
         "HeDog": 1753916659,
         "Paulart": 1753156476,
-        "poka": 1696577109,
         "Attilax": 1754384236,
-        "MissSophie": 1694277053,
         "hocine": 1750831845,
         "Mdita": 1753929180
       }
@@ -36167,8 +36941,8 @@
     "Sylvie-Linas": {
       "index": 9786,
       "owner_key": "4kZZ4ywR9EYXGan8QUjUW9JxzDdYFF5mdyacvXvcqGBy",
-      "balance": 702316,
-      "membership_expire_on": 1695852459,
+      "balance": 752002,
+      "membership_expire_on": 1727485664,
       "next_cert_issuable_on": 1686918647,
       "certs_received": {
         "Tettla": 1727490227,
@@ -36183,7 +36957,7 @@
     "Aimala": {
       "index": 2053,
       "owner_key": "4kcSbEB1Yx6bZCxbk821EgMcuJxqmyVQ1BSK5yTA6dxh",
-      "balance": 99115,
+      "balance": 138801,
       "membership_expire_on": 1710186076,
       "next_cert_issuable_on": 1678700785,
       "certs_received": {
@@ -36244,7 +37018,7 @@
     "eve46": {
       "index": 6602,
       "owner_key": "4mBQp9PkYKahGJhFGhVmiAKnYyzcAuDk3hBPh4VEmDnJ",
-      "balance": 653145,
+      "balance": 692831,
       "membership_expire_on": 1702839439,
       "next_cert_issuable_on": 1671354878,
       "certs_received": {
@@ -36259,9 +37033,9 @@
     "sro": {
       "index": 7943,
       "owner_key": "4mGEj5VYSQWUKqnXhD7Ypy6wnkXtdhTrMsdFzoyDJLbJ",
-      "balance": 337368,
+      "balance": 377054,
       "membership_expire_on": 1711710442,
-      "next_cert_issuable_on": 1692017683,
+      "next_cert_issuable_on": 1693922845,
       "certs_received": {
         "ChristelR": 1734053007,
         "fluidlog": 1714763170,
@@ -36284,8 +37058,8 @@
     "maanna": {
       "index": 9608,
       "owner_key": "4mKyTMjNzTPbqK4Xh2TT67FZo6TzwrJxuvXPwFDbwjm8",
-      "balance": 365763,
-      "membership_expire_on": 1695329125,
+      "balance": 388201,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1663849570,
       "certs_received": {
         "Elise26": 1726893462,
@@ -36306,7 +37080,7 @@
     "Marionn": {
       "index": 12341,
       "owner_key": "4mZvPhwqLXhzytmfC3DV1C2DseQsotAMYTQYLRSCrgVg",
-      "balance": 151420,
+      "balance": 191106,
       "membership_expire_on": 1711733912,
       "next_cert_issuable_on": 1686373482,
       "certs_received": {
@@ -36320,7 +37094,7 @@
     "ZazouBen": {
       "index": 12620,
       "owner_key": "4mazSXQ8t6kwhoJYrbPtceMdSFytZcZ2A54xj6otjkQt",
-      "balance": 178548,
+      "balance": 218234,
       "membership_expire_on": 1710454451,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -36335,7 +37109,7 @@
     "BAYC007": {
       "index": 7111,
       "owner_key": "4mcCUviW3GnfT9qmUY3m9fwKS812157XKoY8vkRcdogg",
-      "balance": 471077,
+      "balance": 510763,
       "membership_expire_on": 1707744803,
       "next_cert_issuable_on": 1667619517,
       "certs_received": {
@@ -36350,7 +37124,7 @@
     "DDFire": {
       "index": 12652,
       "owner_key": "4mfDVcxZRibiWTy9sopY3CSF6B6dB1VR7voaP4JnoQ22",
-      "balance": 116755,
+      "balance": 156441,
       "membership_expire_on": 1715426538,
       "next_cert_issuable_on": 1684841491,
       "certs_received": {
@@ -36366,7 +37140,7 @@
     "flodol": {
       "index": 11683,
       "owner_key": "4mfHk7F5dVN1Y7pkR7aYodhBh1sPUNmgHo5pkw9eg9C5",
-      "balance": 192264,
+      "balance": 231950,
       "membership_expire_on": 1703724359,
       "next_cert_issuable_on": 1678673074,
       "certs_received": {
@@ -36380,11 +37154,12 @@
     "Montesclaros": {
       "index": 11040,
       "owner_key": "4mnKscQZyjgvMjREKT2pBERLFXv1zgYg64D6Jeu5krSp",
-      "balance": 463022,
+      "balance": 348208,
       "membership_expire_on": 1703863402,
-      "next_cert_issuable_on": 1678718270,
+      "next_cert_issuable_on": 1695615801,
       "certs_received": {
         "Malu": 1735424162,
+        "migueleon": 1759000239,
         "BeatricePieper": 1735423322,
         "Didy": 1735422411,
         "AylaSatyaSangat": 1735434576,
@@ -36394,9 +37169,9 @@
     "PierreLOICQ": {
       "index": 466,
       "owner_key": "4mp5xsVPHJKtyHNpZQyfXwzRtvzSg7HoZvWZgfuoaGTx",
-      "balance": 1702463,
+      "balance": 1743227,
       "membership_expire_on": 1716905829,
-      "next_cert_issuable_on": 1691680777,
+      "next_cert_issuable_on": 1696763439,
       "certs_received": {
         "Maxoud": 1754720435,
         "Mic": 1707304605,
@@ -36408,7 +37183,7 @@
     "corinne13me": {
       "index": 9719,
       "owner_key": "4mp9hbEaK4Knm7YSxHsMwshtgmR9TzbKQmqMon7ZZchL",
-      "balance": 101643,
+      "balance": 130929,
       "membership_expire_on": 1722172898,
       "next_cert_issuable_on": 1690945698,
       "certs_received": {
@@ -36438,14 +37213,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1633792755,
       "certs_received": {
-        "Pomme21": 1703658343,
-        "fredswing": 1695539973
+        "Pomme21": 1703658343
       }
     },
     "Sandrak": {
       "index": 8527,
       "owner_key": "4mrA3Su93VSMFkzCjvFvxYPmyyBi3ao6g2o7CXeCMb8Q",
-      "balance": 176626,
+      "balance": 216312,
       "membership_expire_on": 1714443927,
       "next_cert_issuable_on": 1679769178,
       "certs_received": {
@@ -36475,7 +37249,7 @@
     "LenaSuryMangas": {
       "index": 2851,
       "owner_key": "4mu6yxbod5vsQUeHo9Wh4QpPkWJVZjdf8CSuoUHSU62Q",
-      "balance": 807658,
+      "balance": 847344,
       "membership_expire_on": 1710376920,
       "next_cert_issuable_on": 1688460222,
       "certs_received": {
@@ -36486,7 +37260,6 @@
         "BabethMangas": 1697220553,
         "ROSITA71": 1738818481,
         "Celine974": 1700946353,
-        "NnattNature": 1695530244,
         "LILOU974": 1721152083,
         "Brunov974": 1724564653,
         "frantzsury": 1741934921,
@@ -36503,7 +37276,7 @@
     "Papipoule": {
       "index": 11647,
       "owner_key": "4myMtWZKXJ2Gamsk6uUbF48TfcAx9KCeFJr4kB2sDK1R",
-      "balance": 233972,
+      "balance": 273658,
       "membership_expire_on": 1707172460,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -36518,15 +37291,16 @@
     "ValerieArtsetsens": {
       "index": 12074,
       "owner_key": "4n7Q2ARf1ZE2qDgVspAFXLc5VaReojrTG24Feyg6cFfh",
-      "balance": 1121714,
+      "balance": 1124400,
       "membership_expire_on": 1710507523,
-      "next_cert_issuable_on": 1692427540,
+      "next_cert_issuable_on": 1693794070,
       "certs_received": {
         "Monette": 1752283887,
         "CatherineMontpellier": 1742537982,
         "Yosoy": 1742108325,
         "Harmony": 1743143868,
         "LudusArenaConcept": 1747707268,
+        "MarieCamus": 1759183797,
         "VeroDieu": 1742145674,
         "Mystere": 1742106631,
         "KinouJones": 1742084332,
@@ -36536,9 +37310,9 @@
     "Calendula": {
       "index": 12609,
       "owner_key": "4n8NDsHHipvq1c2drqKk1oRXStMtyGfC3YAu1ccbmiqG",
-      "balance": 250456,
+      "balance": 284142,
       "membership_expire_on": 1714325081,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696151294,
       "certs_received": {
         "Mamouchka": 1746897072,
         "DanielVienne": 1745890397,
@@ -36565,7 +37339,7 @@
     "Anges": {
       "index": 6541,
       "owner_key": "4nDgdNKKmvKLUfwsxbDGT4FnV3q8MM9agJgrXwuKSouX",
-      "balance": 462785,
+      "balance": 502471,
       "membership_expire_on": 1718651353,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -36579,7 +37353,7 @@
     "Thya": {
       "index": 12072,
       "owner_key": "4nDzr9mhFsVdgBX92gwCQtxNc3BvssyxUzDoEYeBVg1C",
-      "balance": 300584,
+      "balance": 340270,
       "membership_expire_on": 1710950467,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -36611,7 +37385,7 @@
     "JoelleSQ": {
       "index": 11296,
       "owner_key": "4nc8D6eg6FfZJjxL79n2kh9r677CpJ52rz1kcFpJqfp2",
-      "balance": 82624,
+      "balance": 122310,
       "membership_expire_on": 1702907721,
       "next_cert_issuable_on": 1679214029,
       "certs_received": {
@@ -36645,7 +37419,7 @@
     "AlineG": {
       "index": 7918,
       "owner_key": "4nqdoQ6kP29CPzJA5mgrqzVxBdh4oS7ABLiQHWFqQFrK",
-      "balance": 512902,
+      "balance": 552588,
       "membership_expire_on": 1714220175,
       "next_cert_issuable_on": 1657276583,
       "certs_received": {
@@ -36664,8 +37438,8 @@
     "Ormalove84": {
       "index": 9583,
       "owner_key": "4nsu92fSRkQR7cDJ2wGBFc9RWnKdkb9pjT2twGkeJy7h",
-      "balance": 304881,
-      "membership_expire_on": 1695084477,
+      "balance": 324105,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1679376285,
       "certs_received": {
         "TigerKim2410": 1746518005,
@@ -36683,9 +37457,9 @@
     "MamieCrypto": {
       "index": 970,
       "owner_key": "4ntvPfPU85FjHKShUb6wuEotTaicY5AhxKbBZPbCPfsA",
-      "balance": 385799,
-      "membership_expire_on": 1698459653,
-      "next_cert_issuable_on": 1681772635,
+      "balance": 305485,
+      "membership_expire_on": 1727037521,
+      "next_cert_issuable_on": 1696136343,
       "certs_received": {
         "lanoire": 1729804927,
         "EmaPom": 1716926411,
@@ -36695,8 +37469,7 @@
         "Nikos": 1706674456,
         "Krrisse": 1705639710,
         "Vajrabro": 1715229666,
-        "Florentt": 1695165038,
-        "Paulart": 1695844975,
+        "ortie": 1758756712,
         "poka": 1730456151,
         "Attilax": 1707293417,
         "YemayaPapillon": 1727408790,
@@ -36706,13 +37479,14 @@
         "supernino90": 1726681833,
         "hayssam": 1730738966,
         "MatthieuLatapy": 1720020275,
+        "Houriadeparissud": 1758610196,
         "littlegreg": 1748036942
       }
     },
     "Farouche": {
       "index": 12469,
       "owner_key": "4nzqoSfq1Dk9geJsUHS2DmgzLodTbMrvXS5o4Gh2nrkE",
-      "balance": 134568,
+      "balance": 174254,
       "membership_expire_on": 1713559878,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -36726,7 +37500,7 @@
     "Miquele": {
       "index": 12594,
       "owner_key": "4o2LZ1hAPPzMdBTApMYeLBFwbtD6uC4pc32FiYb4Yc22",
-      "balance": 113752,
+      "balance": 153438,
       "membership_expire_on": 1715178414,
       "next_cert_issuable_on": 1687075766,
       "certs_received": {
@@ -36741,27 +37515,21 @@
     "ElisaDunNotreMonde": {
       "index": 5647,
       "owner_key": "4o2gndA3Nt8kka5phxYtFBBbG6okk5QTwkEmU69EQpxk",
-      "balance": 825920,
+      "balance": 865606,
       "membership_expire_on": 1721918152,
       "next_cert_issuable_on": 1687500624,
       "certs_received": {
         "SachaCirque": 1737708500,
         "AlexDurain": 1738832156,
-        "LolieRu": 1694594521,
-        "Moineau": 1694454074,
-        "Lill": 1694400047,
         "Monique2605": 1730063821,
         "OlivierRed": 1753558508,
-        "Arnaud11": 1694601977,
-        "Natheo": 1694330022,
-        "YannickGuennou": 1694293893,
         "domimeert": 1750444144
       }
     },
     "NEO": {
       "index": 9143,
       "owner_key": "4o2hDPPiVCNgHKPJTx1g2xdhdsYFPxzMyxRzEHMtJAqv",
-      "balance": 445119,
+      "balance": 484805,
       "membership_expire_on": 1719335560,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -36776,7 +37544,7 @@
     "Pivoine": {
       "index": 4406,
       "owner_key": "4o4DKxi76Cp4VzbfMsrvoWqWxa7ys7Y5MMYuGXtgBMLB",
-      "balance": 1021649,
+      "balance": 1065335,
       "membership_expire_on": 1698083155,
       "next_cert_issuable_on": 1670250612,
       "certs_received": {
@@ -36790,6 +37558,20 @@
         "PasMoi": 1731975329
       }
     },
+    "Perleblanche": {
+      "index": 13531,
+      "owner_key": "4oBCPkmCNYdFiYHcyicFio6qyL7ifA4AcHYfaPg5bd5G",
+      "balance": 41152,
+      "membership_expire_on": 1725053188,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Katou": 1756704759,
+        "Andrelie": 1757200879,
+        "AnneLaroche": 1756616557,
+        "LouisCarvalho": 1757185233,
+        "domimeert": 1757350903
+      }
+    },
     "SeverineBiraud": {
       "index": 4198,
       "owner_key": "4oC63zVZHwvKYVsuewcn6QZuLyTuMQb2AEDwjJLPzsiA",
@@ -36801,7 +37583,7 @@
     "latoudou": {
       "index": 5958,
       "owner_key": "4oE8e7FEYZuiAGXNPne65uM28Hhdg7w7JLRH9kQGEkc7",
-      "balance": 238685,
+      "balance": 278371,
       "membership_expire_on": 1697335155,
       "next_cert_issuable_on": 1669386632,
       "certs_received": {
@@ -36837,10 +37619,25 @@
         "SophieMD": 1718219049
       }
     },
+    "Amau": {
+      "index": 13639,
+      "owner_key": "4oUeX5HRFULLHbYi82LVVQNRq3tA5do3RdfYnNE5DfTe",
+      "balance": 15092,
+      "membership_expire_on": 1726331669,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Paslake": 1758557658,
+        "Paradine": 1758557925,
+        "PaulDominicus": 1759005664,
+        "Fab": 1758557658,
+        "Denis": 1758556967,
+        "Passparis": 1758601684
+      }
+    },
     "SiegmarTheodor": {
       "index": 12405,
       "owner_key": "4oeA21dpFaSLkvEDWghJr7FcF5RRsYnasE3gTHcd3jGP",
-      "balance": 141108,
+      "balance": 180794,
       "membership_expire_on": 1710518381,
       "next_cert_issuable_on": 1682330139,
       "certs_received": {
@@ -36854,9 +37651,9 @@
     "Arkenhertz": {
       "index": 2654,
       "owner_key": "4ofGFTbu9kDCVc6hSdsFM1FzmiiLEvdwc63Yqw9BychM",
-      "balance": 1155411,
+      "balance": 1195097,
       "membership_expire_on": 1711125839,
-      "next_cert_issuable_on": 1673495537,
+      "next_cert_issuable_on": 1694141708,
       "certs_received": {
         "Lizy": 1707360078,
         "Zabou": 1714441439,
@@ -36871,7 +37668,7 @@
     "denkyemx": {
       "index": 4199,
       "owner_key": "4ohbkqJ7wQZ38CJECsyJshrKNcfNU4EEtAkLMXjnkjJT",
-      "balance": 818548,
+      "balance": 858234,
       "membership_expire_on": 1700591261,
       "next_cert_issuable_on": 1687747570,
       "certs_received": {
@@ -36887,7 +37684,7 @@
     "LyraS": {
       "index": 8051,
       "owner_key": "4ojgzFBcRqr3v7CXZKoSxaMzYs9juh5L6RC8o1cJoppa",
-      "balance": 501324,
+      "balance": 541010,
       "membership_expire_on": 1715284742,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -36901,7 +37698,7 @@
     "ZafirArte": {
       "index": 11527,
       "owner_key": "4okHR1dA7amoUTjikaW9fPpSWS1LXPJsyKHscnXk1x36",
-      "balance": 48504,
+      "balance": 63690,
       "membership_expire_on": 1706977793,
       "next_cert_issuable_on": 1683871672,
       "certs_received": {
@@ -36942,13 +37739,14 @@
     "MariepauleF": {
       "index": 10415,
       "owner_key": "4p2HLPbq3FWnKLGYpJ65v3QyrkegrLKCwHkH7GnVWsJP",
-      "balance": 126041,
-      "membership_expire_on": 1698856374,
+      "balance": 138727,
+      "membership_expire_on": 1727893157,
       "next_cert_issuable_on": 1682220951,
       "certs_received": {
         "Rachele": 1731220975,
         "MAZUZA": 1730433851,
         "Gib26": 1730438130,
+        "Lorraine83": 1757318781,
         "ISAParadis": 1730419272,
         "LilianeFaure": 1730420025
       }
@@ -36972,9 +37770,9 @@
     "Andy34": {
       "index": 12413,
       "owner_key": "4pArzkon9bDrpwha6Dp6qz1Z9bzXY39sLn1wckL1tHPS",
-      "balance": 136636,
+      "balance": 176322,
       "membership_expire_on": 1713629910,
-      "next_cert_issuable_on": 1682653805,
+      "next_cert_issuable_on": 1693697844,
       "certs_received": {
         "Marie-Laure": 1745284404,
         "Elascap": 1745187990,
@@ -37025,7 +37823,7 @@
     "Slater04": {
       "index": 11282,
       "owner_key": "4pcztAdCe6JU558aHYr1MhxoXbAXRsYGz4qhhfvQppTW",
-      "balance": 225283,
+      "balance": 263919,
       "membership_expire_on": 1705100864,
       "next_cert_issuable_on": 1680662306,
       "certs_received": {
@@ -37039,7 +37837,7 @@
     "Clo07": {
       "index": 12925,
       "owner_key": "4pdwhYWHLnsnbJXDKy2SAHhTHe6cyA83xm91qpFCBEuy",
-      "balance": 79032,
+      "balance": 118718,
       "membership_expire_on": 1718053669,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -37053,7 +37851,7 @@
     "Junouille": {
       "index": 8709,
       "owner_key": "4pfG4vU5MWCADvo7Khddp5zte7iB9h48KruijLPsQXqP",
-      "balance": 433768,
+      "balance": 465978,
       "membership_expire_on": 1720621307,
       "next_cert_issuable_on": 1678694674,
       "certs_received": {
@@ -37072,7 +37870,7 @@
     "Rabah": {
       "index": 13100,
       "owner_key": "4phQBHLj6BZDoFb4UgNyKuDxjQpVziAjB7MPkM4dVLSx",
-      "balance": 73008,
+      "balance": 112694,
       "membership_expire_on": 1719531610,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -37087,12 +37885,10 @@
     "Florence": {
       "index": 3923,
       "owner_key": "4ppWsXtJ9Vyq6dLntQMb3FZzbvcK69mz64w8NJkjN1Rm",
-      "balance": 690233,
+      "balance": 682433,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632817819,
-      "certs_received": {
-        "Mahe": 1695937734
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "Sky": {
       "index": 1735,
@@ -37127,7 +37923,7 @@
     "Celang": {
       "index": 1966,
       "owner_key": "4q2UGaj96suefBidxbE2CTAjrvHDsRd7MtzhSZPZngWY",
-      "balance": 1454967,
+      "balance": 1494653,
       "membership_expire_on": 1706556184,
       "next_cert_issuable_on": 1684591511,
       "certs_received": {
@@ -37144,7 +37940,7 @@
     "alegna": {
       "index": 11051,
       "owner_key": "4q3cFpESFBRbtw3gaxNBS8iboJQs6LLrCRR6CohUv4LX",
-      "balance": 263922,
+      "balance": 303608,
       "membership_expire_on": 1702249009,
       "next_cert_issuable_on": 1683612136,
       "certs_received": {
@@ -37161,9 +37957,9 @@
     "Majoli34": {
       "index": 4035,
       "owner_key": "4q7QgG1Q83dPwrtZh6yvUoUqx3SrfR4LdBpZJjWJ7wfK",
-      "balance": 1367851,
+      "balance": 1722537,
       "membership_expire_on": 1715254607,
-      "next_cert_issuable_on": 1685338360,
+      "next_cert_issuable_on": 1696482308,
       "certs_received": {
         "hibiscus11": 1738296135,
         "Natalia": 1743788877,
@@ -37217,6 +38013,7 @@
         "MaudPK": 1746490125,
         "zenbio": 1733192880,
         "Dodjay": 1728198085,
+        "enchemin": 1755122852,
         "Calou26": 1727490828,
         "CyyP": 1734885993,
         "FabyLR": 1717394720,
@@ -37269,8 +38066,8 @@
     "Toutoune": {
       "index": 7979,
       "owner_key": "4qJnvkwZPcxct319nWob2MqBZBmgPHsqmmFHo1tKKfS5",
-      "balance": 450085,
-      "membership_expire_on": 0,
+      "balance": 472683,
+      "membership_expire_on": 1726431824,
       "next_cert_issuable_on": 1671025689,
       "certs_received": {
         "CorinnePatris": 1715140930,
@@ -37287,7 +38084,7 @@
     "IsaRevol": {
       "index": 7112,
       "owner_key": "4qKMz3ij2LM52ButSESqp2YKPDYzCNmBCMeW2xteVthw",
-      "balance": 582087,
+      "balance": 621773,
       "membership_expire_on": 1706145715,
       "next_cert_issuable_on": 1646040294,
       "certs_received": {
@@ -37331,7 +38128,7 @@
     "Bernardfrennet": {
       "index": 12350,
       "owner_key": "4qVZNQHne2GDFGTv17fXsqi73sRB9cgRHQd88WMvEye3",
-      "balance": 147384,
+      "balance": 187070,
       "membership_expire_on": 1711380136,
       "next_cert_issuable_on": 1691207928,
       "certs_received": {
@@ -37345,8 +38142,8 @@
     "Praline": {
       "index": 10062,
       "owner_key": "4qWU7tscDjrPwT1sugDw3xwX6MKWpsUoZzJWiLPx6eFV",
-      "balance": 347816,
-      "membership_expire_on": 1694371422,
+      "balance": 361730,
+      "membership_expire_on": 1727992179,
       "next_cert_issuable_on": 1668740500,
       "certs_received": {
         "hibiscus11": 1729449186,
@@ -37360,7 +38157,7 @@
     "Feerique": {
       "index": 2785,
       "owner_key": "4qX8Bi9vKpFmMi35PBihGS8hbjbJTNCUcDMFzEFjbdVU",
-      "balance": 607671,
+      "balance": 853357,
       "membership_expire_on": 1715521580,
       "next_cert_issuable_on": 1689252072,
       "certs_received": {
@@ -37376,27 +38173,21 @@
         "Pizzawallas": 1716855041,
         "Isiris84": 1715362139,
         "Annick84": 1751854807,
-        "Didierlife84": 1693941187,
-        "RosadoraLafee": 1695780981,
         "Lisa84": 1722234527,
         "Meiluce": 1719992807,
         "Bealia": 1712099697,
         "FleurdEtoiles": 1710476945,
         "Melusoize": 1743058873,
         "pfouque": 1726679785,
-        "lamouette": 1693883859,
         "CatherineCPo": 1709433554,
         "Dlies": 1713677002,
         "lapivoine": 1718323792,
         "maceo": 1726722999,
-        "Coco46": 1696650714,
         "TAMI": 1743640185,
-        "zenbio": 1695792202,
         "Merlinor": 1747460745,
         "Amazinggoldenturf": 1716281628,
         "ReMaLoup": 1751046926,
         "Jadom": 1747553909,
-        "CovaDidier": 1696234149,
         "Fabido84": 1741469814
       }
     },
@@ -37420,7 +38211,7 @@
     "BALOU73": {
       "index": 7451,
       "owner_key": "4qguVNH7XW4N5WqVBvqtAjMoZKcJhjFUKjXNTCoNk5io",
-      "balance": 462755,
+      "balance": 502441,
       "membership_expire_on": 1707847216,
       "next_cert_issuable_on": 1692599631,
       "certs_received": {
@@ -37458,7 +38249,7 @@
     "LukaKi": {
       "index": 9612,
       "owner_key": "4r13PXnWbrRAF5Fh8ePmKYMJ4L7ETdWerLYn6XmwQ9LB",
-      "balance": 366763,
+      "balance": 403849,
       "membership_expire_on": 1724549487,
       "next_cert_issuable_on": 1664978391,
       "certs_received": {
@@ -37472,7 +38263,7 @@
     "AurelieProf83": {
       "index": 8747,
       "owner_key": "4rAi7Y2gWAHTbN3RHgS7rCdQXJa9UBLSdpvPUTCaBSHE",
-      "balance": 709784,
+      "balance": 769470,
       "membership_expire_on": 1719112258,
       "next_cert_issuable_on": 1678179444,
       "certs_received": {
@@ -37505,9 +38296,9 @@
     "MADHU": {
       "index": 8932,
       "owner_key": "4rVbYKVpb9TGiRCoM9K6MRGwiWTovCR9kRL6HM8zSfgE",
-      "balance": 418033,
+      "balance": 457720,
       "membership_expire_on": 1720484461,
-      "next_cert_issuable_on": 1678447665,
+      "next_cert_issuable_on": 1695304738,
       "certs_received": {
         "Ainat255": 1721096221,
         "ROCIO": 1727992988,
@@ -37530,7 +38321,7 @@
     "Gaelle": {
       "index": 15,
       "owner_key": "4rWREtAxNS2L427f4vG2LafZNZ9ZLj3cvFFxGyrtFzGL",
-      "balance": 768720,
+      "balance": 819186,
       "membership_expire_on": 1718738524,
       "next_cert_issuable_on": 1693493960,
       "certs_received": {
@@ -37542,13 +38333,13 @@
         "paidge": 1730518646,
         "Gregory": 1720730301,
         "mimi": 1734582646,
-        "henrilarvaron": 1696462847,
         "DanielFortin": 1735608988,
         "SylvieClayer": 1750011905,
         "FranckBarbe": 1707253716,
         "NicolasFloquet": 1720898528,
         "AnneNanou": 1710443430,
         "PascaleRoncoroni": 1720584611,
+        "MessagereDeLumiere": 1757187310,
         "mathieuM": 1728627416,
         "Moussa": 1746311650,
         "Krugor": 1719423250,
@@ -37558,13 +38349,13 @@
     "dianto": {
       "index": 3465,
       "owner_key": "4rc6j7Gaiwgntpxrgnb4ThaXqsF4RhhrGKeVciUjJfHd",
-      "balance": 1763490,
+      "balance": 1803176,
       "membership_expire_on": 1702686068,
       "next_cert_issuable_on": 1655858119,
       "certs_received": {
         "JessyRipert": 1716409086,
         "fabiolino": 1706672634,
-        "Vivakvo": 1703566703,
+        "Vivakvo": 1759385077,
         "diletta": 1705876287,
         "Abondance": 1714364121,
         "Emeuh31": 1718979716,
@@ -37587,7 +38378,7 @@
     "NicoleN64": {
       "index": 12952,
       "owner_key": "4rsQhwH8XB9dGYmEpACQrSsDuEiRWCRtQ1tfrQjTnVbG",
-      "balance": 103260,
+      "balance": 142946,
       "membership_expire_on": 1718496529,
       "next_cert_issuable_on": 1687495722,
       "certs_received": {
@@ -37602,7 +38393,7 @@
     "Claude": {
       "index": 4855,
       "owner_key": "4rxEf6nsCTcW33X8jVPqX8wLd9NdpR5QcjQeGW7Y7oa7",
-      "balance": 878709,
+      "balance": 918395,
       "membership_expire_on": 1706967365,
       "next_cert_issuable_on": 1662402543,
       "certs_received": {
@@ -37641,9 +38432,9 @@
     "Ju73": {
       "index": 3232,
       "owner_key": "4s5D3MTuY3ifaMYqcWud22rHh3V7n3X9hYBGn4HAvSu9",
-      "balance": 706837,
+      "balance": 682143,
       "membership_expire_on": 1719675356,
-      "next_cert_issuable_on": 1689229201,
+      "next_cert_issuable_on": 1696377175,
       "certs_received": {
         "adridu38": 1709086451,
         "looie": 1710210319,
@@ -37698,7 +38489,7 @@
     "NAT": {
       "index": 6538,
       "owner_key": "4sAdV2WdEyMWJp4ofNQ25doCCEz2syBKKR5yuq8nNWrw",
-      "balance": 737281,
+      "balance": 776967,
       "membership_expire_on": 1699280608,
       "next_cert_issuable_on": 1677158304,
       "certs_received": {
@@ -37715,7 +38506,7 @@
     "Mamouchka": {
       "index": 9275,
       "owner_key": "4sFpSZp2kaoWbWq7xbcToxEmwskQ15ZbnJS3RTHurhM5",
-      "balance": 202904,
+      "balance": 243590,
       "membership_expire_on": 1719044126,
       "next_cert_issuable_on": 1687679794,
       "certs_received": {
@@ -37736,14 +38527,14 @@
     "Ruby": {
       "index": 4186,
       "owner_key": "4sG6cP8TxsuYTko4sVA4TqtzBFdMBe3ehx4aKJVU4fDi",
-      "balance": 858477,
+      "balance": 898163,
       "membership_expire_on": 1717774199,
       "next_cert_issuable_on": 1686288873,
       "certs_received": {
         "Tanita": 1726044709,
-        "nuvolari": 1694996707,
         "PatrickCrepin": 1702783810,
         "Babaroun": 1699856894,
+        "Pascale72": 1757549952,
         "RomanUza": 1701296897,
         "Key": 1725418734,
         "MarionDrn": 1701728416,
@@ -37755,12 +38546,11 @@
     "TomAs": {
       "index": 3404,
       "owner_key": "4sJiP62yQRuURYFbs2s3hdwh9B1DQacpupLFmfmG32MZ",
-      "balance": 1073687,
+      "balance": 1113373,
       "membership_expire_on": 1706842199,
-      "next_cert_issuable_on": 1647679289,
+      "next_cert_issuable_on": 1694500259,
       "certs_received": {
         "HugoTrentesaux": 1707629931,
-        "OlDog": 1694676374,
         "Maaude09": 1754982408,
         "Celline": 1738435964,
         "Attilax": 1704171249,
@@ -37787,7 +38577,7 @@
     "TwentySeligUriel": {
       "index": 6658,
       "owner_key": "4sPDi4tK9x8dSjC2LcJLXQiss6wsGhATqGCUUfBCDQeB",
-      "balance": 743977,
+      "balance": 783663,
       "membership_expire_on": 1702945737,
       "next_cert_issuable_on": 1677583624,
       "certs_received": {
@@ -37821,7 +38611,7 @@
     "BleuEagle": {
       "index": 12338,
       "owner_key": "4soR6u79zM7p2zdtGx1p3pYGnP5SNn7QJq5En99ujtco",
-      "balance": 148452,
+      "balance": 188138,
       "membership_expire_on": 1712770453,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -37835,7 +38625,7 @@
     "Giovy": {
       "index": 10665,
       "owner_key": "4srVM2nKDbyk81uws3y4S6dhSdPvhYWK11x18N16oZPN",
-      "balance": 105248,
+      "balance": 104874,
       "membership_expire_on": 1701390673,
       "next_cert_issuable_on": 1676871787,
       "certs_received": {
@@ -37850,7 +38640,7 @@
     "NATH": {
       "index": 8091,
       "owner_key": "4srW2A8k3xi3cXmugshZ4TbWHevnhDe3JE6fFoSau8GA",
-      "balance": 505307,
+      "balance": 544993,
       "membership_expire_on": 1711238608,
       "next_cert_issuable_on": 1680445840,
       "certs_received": {
@@ -37880,7 +38670,7 @@
     "Batman": {
       "index": 11131,
       "owner_key": "4t3dx446i833VF21XyGCnWMWU9Q2KitfTpJjDTBnMyyf",
-      "balance": 247550,
+      "balance": 287236,
       "membership_expire_on": 1703930395,
       "next_cert_issuable_on": 1675697923,
       "certs_received": {
@@ -37929,7 +38719,7 @@
     "Fleurs2863": {
       "index": 9723,
       "owner_key": "4tDuhFZQMtNCh7j2nD4Ch7C3ErfwUYNbTCiczF1axWWr",
-      "balance": 342291,
+      "balance": 381977,
       "membership_expire_on": 1719011026,
       "next_cert_issuable_on": 1671803037,
       "certs_received": {
@@ -37944,7 +38734,7 @@
     "CPG": {
       "index": 11376,
       "owner_key": "4tMiLq4VNVSq6je2oES64LmgPqnUW2E6sAAaq5iLnUYJ",
-      "balance": 230211,
+      "balance": 269897,
       "membership_expire_on": 1704915747,
       "next_cert_issuable_on": 1676128308,
       "certs_received": {
@@ -38008,7 +38798,7 @@
     "Myhia": {
       "index": 6761,
       "owner_key": "4tbcdAQKXBjfnSmDAYuBYAsf2zvfGKC4iMxpQCsUcLT4",
-      "balance": 720194,
+      "balance": 759880,
       "membership_expire_on": 1701478252,
       "next_cert_issuable_on": 1675347536,
       "certs_received": {
@@ -38029,14 +38819,16 @@
     "Bsamuel": {
       "index": 10545,
       "owner_key": "4teDejyhpLLgZ1yv9HoosG9wiikLMkdjA3KNVuaj1Ac7",
-      "balance": 160664,
+      "balance": 200250,
       "membership_expire_on": 1722539829,
-      "next_cert_issuable_on": 1672486295,
+      "next_cert_issuable_on": 1695992823,
       "certs_received": {
         "OlivierHovasse": 1732679416,
         "vit": 1732667255,
         "Rom1": 1732672154,
         "orion": 1728343282,
+        "CecileM34": 1759374083,
+        "Marcus_974": 1759152167,
         "Drako": 1732674974
       }
     },
@@ -38048,6 +38840,21 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "MathildeC": {
+      "index": 13669,
+      "owner_key": "4tn2UqcHa4sww6xiRuRuudrM5Vm73HVZLZDkLWiW1zQS",
+      "balance": 157758,
+      "membership_expire_on": 1727102085,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Chtmosaik": 1758687098,
+        "Kaena70": 1758746264,
+        "ji_emme": 1758665792,
+        "Georges": 1758659851,
+        "Sandrabacq": 1758853222,
+        "VeroniqueB": 1758665392
+      }
+    },
     "Beatriz": {
       "index": 4122,
       "owner_key": "4tn2WTZkBAHJCH2YQnn8dvFD4ksi9rwwFFaHPkJAiKh8",
@@ -38067,13 +38874,12 @@
     "AlainLebrun": {
       "index": 60,
       "owner_key": "4tsFXtKofD6jK8zwLymgXWAoMBzhFx7KNANhtK86mKzA",
-      "balance": 1888624,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1680855040,
+      "balance": 1923138,
+      "membership_expire_on": 1725384218,
+      "next_cert_issuable_on": 1696054557,
       "certs_received": {
         "GenevLeb": 1697826472,
         "PhilippeGua53": 1706946148,
-        "Princesse": 1694133596,
         "LionelDrain": 1700286562,
         "BertrandBigot": 1735378757,
         "ValerieJamin": 1698040953,
@@ -38083,7 +38889,6 @@
         "MartineBlinGarry": 1729036676,
         "VanessaVigier": 1704645620,
         "LilaLeBars": 1735963407,
-        "Nomadanne": 1693984737,
         "Miryanon": 1744094846,
         "Enjolras14": 1698806630
       }
@@ -38091,7 +38896,7 @@
     "EvelyneB": {
       "index": 6300,
       "owner_key": "4txehwqcxSgCreBJDJdg5Cs3RkqJcdSoVkaXUrnj3o6a",
-      "balance": 641645,
+      "balance": 681331,
       "membership_expire_on": 1706981507,
       "next_cert_issuable_on": 1675495907,
       "certs_received": {
@@ -38123,14 +38928,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1641710012,
       "certs_received": {
-        "kytiu": 1715276360,
-        "LauQui": 1695931693
+        "kytiu": 1715276360
       }
     },
     "GUL40_L21": {
       "index": 6716,
       "owner_key": "4u2wWsKg3NJEMbxYT2GquMPQEGRSR9BsmrDyHVMQCasw",
-      "balance": 575652,
+      "balance": 615338,
       "membership_expire_on": 1703087003,
       "next_cert_issuable_on": 1688409104,
       "certs_received": {
@@ -38167,7 +38971,7 @@
     "Vero": {
       "index": 3171,
       "owner_key": "4u9rjKcZTV27Pev4f4dsBc8wcxnRD2cd4dJYGveGcQ1M",
-      "balance": 593167,
+      "balance": 632853,
       "membership_expire_on": 1722589302,
       "next_cert_issuable_on": 1691104465,
       "certs_received": {
@@ -38190,9 +38994,9 @@
     "IrisBleu": {
       "index": 7493,
       "owner_key": "4uDfYSVNc6VAWNhaQbyofsEAtsiFuuAuJg7YEexM9Dsb",
-      "balance": 518170,
+      "balance": 639856,
       "membership_expire_on": 1708518393,
-      "next_cert_issuable_on": 1670592470,
+      "next_cert_issuable_on": 1696469604,
       "certs_received": {
         "anaka": 1711574480,
         "Cristol-Iquid": 1711589847,
@@ -38214,7 +39018,7 @@
     "Clemence": {
       "index": 6871,
       "owner_key": "4uJ8Q1UBZrEihFXEtrBNFjadKCt7jVxvWeUh2YLMVx3T",
-      "balance": 604390,
+      "balance": 644076,
       "membership_expire_on": 1704319250,
       "next_cert_issuable_on": 1678462504,
       "certs_received": {
@@ -38232,9 +39036,9 @@
     "MisterLuix": {
       "index": 11409,
       "owner_key": "4uJFzRoDTnqEaTDCmBdq3teAtrUhiw8tbqv2SCo6a48P",
-      "balance": 180224,
+      "balance": 207610,
       "membership_expire_on": 1706391886,
-      "next_cert_issuable_on": 1683989936,
+      "next_cert_issuable_on": 1693903420,
       "certs_received": {
         "belcarme": 1745186534,
         "Justis": 1745712091,
@@ -38256,7 +39060,7 @@
     "Jeniii": {
       "index": 12185,
       "owner_key": "4uMmbYYwb9VhjUjVf9c7L5xStrRqK4CxGjTDS5HR5h81",
-      "balance": 148504,
+      "balance": 173190,
       "membership_expire_on": 1711832678,
       "next_cert_issuable_on": 1684575387,
       "certs_received": {
@@ -38275,8 +39079,8 @@
     "Hina88": {
       "index": 9591,
       "owner_key": "4uRYk8rMdHcSWwjgf1Bh3EZF1efKzzMpz3YD24jcKpDy",
-      "balance": 387322,
-      "membership_expire_on": 1694195871,
+      "balance": 395866,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673009191,
       "certs_received": {
         "DaniailesA": 1726164250,
@@ -38298,7 +39102,7 @@
     "Mylene": {
       "index": 8903,
       "owner_key": "4uedyVnfEr81uNeY2h3ANb3Ai9UAtijh4q9e7MbHDzGf",
-      "balance": 449804,
+      "balance": 489490,
       "membership_expire_on": 1720226318,
       "next_cert_issuable_on": 1688740718,
       "certs_received": {
@@ -38313,11 +39117,12 @@
     "FredEnergie": {
       "index": 11325,
       "owner_key": "4uhyMaBLXSBuHhkPFsDqv8Ne7tyqxk7ugEDogUHbvtXu",
-      "balance": 229747,
+      "balance": 199433,
       "membership_expire_on": 1705867720,
-      "next_cert_issuable_on": 1680095501,
+      "next_cert_issuable_on": 1695694090,
       "certs_received": {
         "rockwater": 1740437649,
+        "SophieDeprez": 1758687098,
         "Elik": 1737487477,
         "Marino": 1737613466,
         "ElaineDana": 1737521259,
@@ -38329,7 +39134,7 @@
     "esila26": {
       "index": 11358,
       "owner_key": "4uit5hFCoBvkEB9Uokhnnybkj2g1p1wXRS3te8KfoFBD",
-      "balance": 231270,
+      "balance": 270956,
       "membership_expire_on": 1706272119,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -38343,7 +39148,7 @@
     "Aeladaulne": {
       "index": 6784,
       "owner_key": "4upHuGKVs1RKvoWcM5wKHmkFNG41nmHQeFrq8xcT7mgu",
-      "balance": 507507,
+      "balance": 547193,
       "membership_expire_on": 1712147906,
       "next_cert_issuable_on": 1680797040,
       "certs_received": {
@@ -38357,7 +39162,7 @@
     "COLYBRY": {
       "index": 9670,
       "owner_key": "4uq9gHbi5RTFaqd6Y4Ags6wubmRGWjgjd4sTsAWFGJmS",
-      "balance": 24868,
+      "balance": 37254,
       "membership_expire_on": 1721581565,
       "next_cert_issuable_on": 1691402709,
       "certs_received": {
@@ -38383,7 +39188,7 @@
     "AureaLopes": {
       "index": 12604,
       "owner_key": "4usZZXbzqcthiFGMrZLPQyCQgXA3US5982sCvTBj9GF5",
-      "balance": 120684,
+      "balance": 160370,
       "membership_expire_on": 1714475119,
       "next_cert_issuable_on": 1689130320,
       "certs_received": {
@@ -38401,7 +39206,7 @@
     "Solene": {
       "index": 7400,
       "owner_key": "4uysnpBrm5q1gi4zo6Mwoi4nje3Kb5pP4r4i6gV7d2jG",
-      "balance": 554951,
+      "balance": 594637,
       "membership_expire_on": 1708653780,
       "next_cert_issuable_on": 1654399447,
       "certs_received": {
@@ -38415,7 +39220,7 @@
     "Ladjack": {
       "index": 11847,
       "owner_key": "4v1tMJCBU6VYYmNNpSuuuR7LDhdoheJ8FxMaBep2QtK7",
-      "balance": 252582,
+      "balance": 252764,
       "membership_expire_on": 1709226868,
       "next_cert_issuable_on": 1690874033,
       "certs_received": {
@@ -38432,7 +39237,7 @@
     "SebastienTimbre": {
       "index": 8514,
       "owner_key": "4v63AzFtJodnMzqcZmBNJZsLqSKR7tgesYbRgppgasyN",
-      "balance": 427726,
+      "balance": 467412,
       "membership_expire_on": 1712275061,
       "next_cert_issuable_on": 1680919859,
       "certs_received": {
@@ -38462,18 +39267,20 @@
     "Bibifri06": {
       "index": 9942,
       "owner_key": "4vBALkuHemTpj3iZbUEfZy3E2ViRScCvqsrELJg8guMg",
-      "balance": 288052,
+      "balance": 303830,
       "membership_expire_on": 1724167802,
-      "next_cert_issuable_on": 1688467514,
+      "next_cert_issuable_on": 1695292331,
       "certs_received": {
         "JF13": 1735444155,
         "MAGSENS": 1729019491,
         "NaneDeProvence": 1733123776,
         "BrigitteBC": 1744069618,
+        "Tchois": 1756969302,
         "Imppao": 1728851647,
         "PoissonClown": 1732670817,
         "Marionnette": 1730996887,
         "Centifolia": 1739898867,
+        "pfouque": 1756874561,
         "Flavy13": 1728179870,
         "Loulou13": 1728179870,
         "Totoro": 1728882681,
@@ -38520,16 +39327,7 @@
       "balance": 382188,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1638102286,
-      "certs_received": {
-        "Clochette": 1694463182,
-        "EleonoreBois": 1695093897,
-        "Amande": 1694547600,
-        "Plantalarose": 1694469047,
-        "Louna": 1695286235,
-        "Monchatonetoile": 1694463908,
-        "Youna": 1694547863,
-        "Lucianael": 1694548384
-      }
+      "certs_received": {}
     },
     "ManonJ": {
       "index": 6554,
@@ -38557,7 +39355,7 @@
     "BricePassarotto": {
       "index": 9517,
       "owner_key": "4vfK4k7LqmAuAGcf5gcHigw75x8rd8SLgbpw4NXFPR1F",
-      "balance": 497323,
+      "balance": 537009,
       "membership_expire_on": 1721685821,
       "next_cert_issuable_on": 1693104846,
       "certs_received": {
@@ -38573,7 +39371,7 @@
     "Magabrasil2020": {
       "index": 4105,
       "owner_key": "4vpjpbC2FjCicoGoihpwB3h9dMTdK2m1Pp7km9XuYY6k",
-      "balance": 230300,
+      "balance": 269986,
       "membership_expire_on": 1717619038,
       "next_cert_issuable_on": 1680364599,
       "certs_received": {
@@ -38592,7 +39390,7 @@
     "zencat": {
       "index": 11814,
       "owner_key": "4w43eh29642KGS2HpzUYaHn67PqXsqyfKYdHHGhmcdhy",
-      "balance": 195264,
+      "balance": 234950,
       "membership_expire_on": 1709161131,
       "next_cert_issuable_on": 1678373182,
       "certs_received": {
@@ -38648,7 +39446,7 @@
       "owner_key": "4wRq84hctCwKpFEK7tWPUWf5xFooYg8DcSL8K9TQHeAf",
       "balance": 747913,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632713855,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Jaune51": 1700355026,
         "mariemanon": 1700354782
@@ -38657,7 +39455,7 @@
     "sanddebeloest38": {
       "index": 3843,
       "owner_key": "4wUJSRrW5wLprPpQCV3MCexMd7bRC5T84qAY998WZpXZ",
-      "balance": 440651,
+      "balance": 282581,
       "membership_expire_on": 1705525214,
       "next_cert_issuable_on": 1684485082,
       "certs_received": {
@@ -38684,9 +39482,9 @@
     "Vivakvo": {
       "index": 848,
       "owner_key": "4wUdA1dx1NCZUNSUPhTd9oJHv9gEiuFDgkFscGWKi8t1",
-      "balance": 1534174,
+      "balance": 1583860,
       "membership_expire_on": 1710101877,
-      "next_cert_issuable_on": 1693101298,
+      "next_cert_issuable_on": 1696341877,
       "certs_received": {
         "kapis": 1720553976,
         "KuluseSouriant": 1731122485,
@@ -38721,18 +39519,19 @@
         "FannyLequerrec": 1723185221,
         "Demosthene": 1704257083,
         "hocine": 1718060172,
-        "PascalGuillemain": 1703823426,
+        "PascalGuillemain": 1759337745,
         "Milenie26": 1722021359,
         "Runa_81": 1727388864,
+        "CatherineMaire": 1758421334,
         "Vainamoinen": 1710445463,
-        "Glass": 1694678419
+        "Glass": 1757648199
       }
     },
     "SimoCapri": {
       "index": 9481,
       "owner_key": "4wWsdFzdpoEMnntkTpiX66eyHSQAnD95Y8uTHFaRJF9M",
-      "balance": 350440,
-      "membership_expire_on": 1694222430,
+      "balance": 381582,
+      "membership_expire_on": 1726457808,
       "next_cert_issuable_on": 1662976010,
       "certs_received": {
         "EnergyKiwi": 1725820932,
@@ -38748,15 +39547,12 @@
       "balance": 1295965,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "MarliMarl": 1696624409,
-        "scanlegentil": 1696624409
-      }
+      "certs_received": {}
     },
     "Clairecala": {
       "index": 10214,
       "owner_key": "4wjftsv5sauGSTXq4HguRYy2VhVKsC9oAdZ2iWiKz526",
-      "balance": 333049,
+      "balance": 372735,
       "membership_expire_on": 1698956702,
       "next_cert_issuable_on": 1671600229,
       "certs_received": {
@@ -38771,7 +39567,7 @@
     "MYCELIUM": {
       "index": 9730,
       "owner_key": "4wnq996odAGf411qS8yYZSTtz1F8f9mC1GqebQN3FTkz",
-      "balance": 695420,
+      "balance": 799186,
       "membership_expire_on": 1721595634,
       "next_cert_issuable_on": 1690549578,
       "certs_received": {
@@ -38812,7 +39608,7 @@
     "MILO9669": {
       "index": 7730,
       "owner_key": "4wyRVdBQsNbL2Ur6faNp24df913MnkC2V4csa4Pxtyue",
-      "balance": 529735,
+      "balance": 569421,
       "membership_expire_on": 1709330459,
       "next_cert_issuable_on": 1677845213,
       "certs_received": {
@@ -38829,9 +39625,9 @@
     "ClaudeFresonnet": {
       "index": 13395,
       "owner_key": "4xHpLFs9QzNFJpfMDpNr7AZyRj5SaV2etGLV7YDmt8SP",
-      "balance": 38284,
+      "balance": 77070,
       "membership_expire_on": 1722799794,
-      "next_cert_issuable_on": 1693184365,
+      "next_cert_issuable_on": 1693640264,
       "certs_received": {
         "Vivakvo": 1756144498,
         "Syltraci": 1755390270,
@@ -38860,13 +39656,15 @@
     "Choupinette": {
       "index": 2896,
       "owner_key": "4xMzDZuqrjmiNjEWDyuBvWGCf6qn4vU2PcQhQuWsrxtV",
-      "balance": 213267,
+      "balance": 252953,
       "membership_expire_on": 1707777936,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695038895,
       "certs_received": {
         "LauQui": 1702173160,
         "Anita": 1736713676,
+        "HenriRGN": 1758082343,
         "LOLOBOBO11": 1736714128,
+        "Gigi": 1758253311,
         "Monok": 1736715167,
         "Cazouline": 1737524070
       }
@@ -38899,22 +39697,24 @@
     "CatherineMontpellier": {
       "index": 4902,
       "owner_key": "4xdUhmy5t2dD3233ATpHk6yrhMdSJETj8B6P7twL63tx",
-      "balance": 284244,
+      "balance": 223930,
       "membership_expire_on": 1702936720,
-      "next_cert_issuable_on": 1693313146,
+      "next_cert_issuable_on": 1695180597,
       "certs_received": {
         "InmaRegina": 1725334058,
         "Ghadjo": 1696962170,
         "Majoli34": 1706312599,
         "Volatiana": 1731994247,
         "Ashawik": 1754953990,
+        "Lucyinthesky": 1757735473,
         "Badiane": 1716156812,
         "Amelia34": 1725393575,
-        "Hassina": 1696382625,
         "Annery": 1721777851,
+        "Harmony": 1757404151,
         "Vievillejp": 1696962170,
         "MillyS": 1697948298,
         "YEROKI": 1739396115,
+        "GanTao": 1753151797,
         "pielonet": 1746663639,
         "Florencefleur": 1721002425,
         "DavidMontpellier": 1718315953,
@@ -38922,7 +39722,6 @@
         "MarieCamus": 1751495859,
         "Edith3": 1708535244,
         "HebraudH": 1716140070,
-        "Mikhaella3448": 1693989807,
         "Myriam97410": 1701660543,
         "Barbara7": 1708650655,
         "cedricEolix": 1717037110,
@@ -38939,7 +39738,7 @@
     "Lupunita": {
       "index": 8196,
       "owner_key": "4xdtDpBrNqthcEH79UngVL5smSvHbmymbU8ELXGYbLA3",
-      "balance": 523957,
+      "balance": 299643,
       "membership_expire_on": 1710468437,
       "next_cert_issuable_on": 1690773814,
       "certs_received": {
@@ -38972,6 +39771,7 @@
         "GojiBerry": 1730599356,
         "NORGERAL": 1727647793,
         "Mikelegi": 1753817014,
+        "Xabikyo": 1757546098,
         "Kol": 1729804515,
         "ABuenVivir": 1728113545,
         "Bosqui": 1733274221
@@ -38988,13 +39788,14 @@
     "RachelKlein": {
       "index": 3607,
       "owner_key": "4xjt4Bpyz95KPBhvcinXgYJ4jb4X4uoeWLbhr9Lxj73Y",
-      "balance": 1255484,
+      "balance": 1295170,
       "membership_expire_on": 1705358445,
       "next_cert_issuable_on": 1674143888,
       "certs_received": {
         "ThomasRossi": 1709929828,
         "Yukulele": 1710965648,
         "Diane": 1710478675,
+        "Lisediez": 1759115941,
         "Ramiane": 1719041476,
         "LaurentVanEeckhout": 1706294513,
         "AnemoneSyl": 1706114471,
@@ -39045,7 +39846,7 @@
     "ChristelleBaba": {
       "index": 8012,
       "owner_key": "4xuYZh6EgxjX4yS55PzL6CsWW2jSYa9jn3HDnh2g3kx1",
-      "balance": 333613,
+      "balance": 373299,
       "membership_expire_on": 1713912017,
       "next_cert_issuable_on": 1687534688,
       "certs_received": {
@@ -39063,16 +39864,15 @@
     "DonQuiche": {
       "index": 194,
       "owner_key": "4xukaowExZYa6xpZ81y1y31kvUNxJw6GxK9rPH2E9bDv",
-      "balance": 1781534,
+      "balance": 1821220,
       "membership_expire_on": 1697928589,
       "next_cert_issuable_on": 1666952821,
       "certs_received": {
-        "Anthonycormier": 1696742658,
+        "Anthonycormier": 1756658232,
         "ClaireBrune": 1725393375,
         "b_presles": 1712821390,
         "Isa85190791": 1709268379,
         "Patlutine": 1700607878,
-        "Droudrou": 1696622150,
         "StephaneROBIN": 1729837073,
         "yvesmignotte": 1700619178,
         "Bruni": 1726461553,
@@ -39101,8 +39901,8 @@
     "Cramikcosmique": {
       "index": 9864,
       "owner_key": "4y6NsKUcMFbVipwMxDob8Tu5pmJyHYzZYGNW1kRgThKm",
-      "balance": 359701,
-      "membership_expire_on": 1696284726,
+      "balance": 393997,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666603936,
       "certs_received": {
         "Tchoupi": 1728504654,
@@ -39129,7 +39929,7 @@
     "ValMad": {
       "index": 12845,
       "owner_key": "4yHCg4oLhVtEAuP8axae5mbYMKnmA2gQ67nWQTn4WAxR",
-      "balance": 71712,
+      "balance": 111398,
       "membership_expire_on": 1716830606,
       "next_cert_issuable_on": 1687849532,
       "certs_received": {
@@ -39144,7 +39944,7 @@
     "SoleLuna": {
       "index": 10524,
       "owner_key": "4yHg8v6PBN1J4DrkBVstiNf19cBrXCV2rSwLwSVBzEbu",
-      "balance": 295887,
+      "balance": 335573,
       "membership_expire_on": 1698160295,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -39174,7 +39974,7 @@
     "CharoFiguras": {
       "index": 11704,
       "owner_key": "4ymrDTHgXGjm7iDanzgxfTH19Nb5cJcRXvHGsmW2hcJn",
-      "balance": 16256,
+      "balance": 23242,
       "membership_expire_on": 1708277748,
       "next_cert_issuable_on": 1690772792,
       "certs_received": {
@@ -39200,16 +40000,18 @@
     "Eric": {
       "index": 5600,
       "owner_key": "4yojwbYtAwAmNpnHNRTx5DR5q3ounkpwG144hE4N5JS1",
-      "balance": 740924,
+      "balance": 779710,
       "membership_expire_on": 1719601854,
-      "next_cert_issuable_on": 1688950142,
+      "next_cert_issuable_on": 1694318583,
       "certs_received": {
         "ChristelleRousseau": 1721170557,
         "Martine51": 1723627580,
+        "diletta": 1757190137,
         "Dom": 1700335963,
         "Cathdanse": 1725779589,
         "NatUnivers": 1742708458,
         "Sanzoni": 1714512196,
+        "MarieG": 1757443144,
         "ortie": 1754861177,
         "Colombe3": 1726639348,
         "toutestjoli34": 1699511634,
@@ -39220,7 +40022,7 @@
     "AntoineRisselin": {
       "index": 12112,
       "owner_key": "4yqcCm7bxUfUbtUkpuJcQJp8wBd34eWic5gE8myK77jF",
-      "balance": 173180,
+      "balance": 212866,
       "membership_expire_on": 1710689167,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -39237,10 +40039,26 @@
         "Mireilleplantessauvages": 1742843721
       }
     },
+    "feehalee": {
+      "index": 13726,
+      "owner_key": "4yv8uCaPrXvbYyxcyqoGD6gudTP1dZpHgYAhKH5XUZHw",
+      "balance": 92746,
+      "membership_expire_on": 1727395134,
+      "next_cert_issuable_on": 1696492115,
+      "certs_received": {
+        "AnneB": 1759604766,
+        "SarahBianca": 1759014854,
+        "Floclochette": 1759079367,
+        "Jmbe": 1759013902,
+        "Noa07": 1759078433,
+        "Luviam": 1759528225,
+        "FranckVal": 1758953135
+      }
+    },
     "Guiaime": {
       "index": 8568,
       "owner_key": "4z2ubPXs3dFpzw62XC38dAHiJp2mPm6A1eJqvKjbfimJ",
-      "balance": 287517,
+      "balance": 327203,
       "membership_expire_on": 1720531193,
       "next_cert_issuable_on": 1656181835,
       "certs_received": {
@@ -39265,7 +40083,7 @@
     "angelight": {
       "index": 5896,
       "owner_key": "4zCUQgEWrW4McnbD12Bo56BZmv1WdDRiZMTiZ2NAVzqn",
-      "balance": 694295,
+      "balance": 733981,
       "membership_expire_on": 1724423518,
       "next_cert_issuable_on": 1680400722,
       "certs_received": {
@@ -39300,7 +40118,7 @@
     "CedricSabbe": {
       "index": 13250,
       "owner_key": "4zJNuwEvrq7T2FnkdYia8XEXGbcgQs2hyV6ZPy3CunXE",
-      "balance": 184980,
+      "balance": 222666,
       "membership_expire_on": 1722026824,
       "next_cert_issuable_on": 1691033012,
       "certs_received": {
@@ -39317,7 +40135,7 @@
     "LilouL": {
       "index": 6807,
       "owner_key": "4zSzkPD8JoRZJ1CeDUreaLXWL68McRmTDc4sUXgRsuc",
-      "balance": 566305,
+      "balance": 605991,
       "membership_expire_on": 1701208290,
       "next_cert_issuable_on": 1688443676,
       "certs_received": {
@@ -39339,8 +40157,8 @@
     "Morpheus": {
       "index": 8099,
       "owner_key": "4zTN1mZMtQLk9Z5vxRojwtfbq1K45mr1DYPVzZmFC51i",
-      "balance": 380344,
-      "membership_expire_on": 0,
+      "balance": 382500,
+      "membership_expire_on": 1728137788,
       "next_cert_issuable_on": 1660450836,
       "certs_received": {
         "jaenyph": 1715716681,
@@ -39356,7 +40174,7 @@
     "JaviTender": {
       "index": 10535,
       "owner_key": "4zUp289otNZs7wNkTYfpmWDhnXGK7zVBstJbJJZyuNn9",
-      "balance": 150669,
+      "balance": 190355,
       "membership_expire_on": 1700607221,
       "next_cert_issuable_on": 1682220424,
       "certs_received": {
@@ -39373,7 +40191,7 @@
     "bbqueen": {
       "index": 8149,
       "owner_key": "4zVnBPKJAFZMFcMeYT3tmLbjyf9zh1TkqkPcYSmDJmgQ",
-      "balance": 380193,
+      "balance": 409879,
       "membership_expire_on": 1712413463,
       "next_cert_issuable_on": 1666409655,
       "certs_received": {
@@ -39393,7 +40211,7 @@
     "ClemenceD": {
       "index": 7196,
       "owner_key": "4zZVQaFGXKvU2vyAjyBGfs2s5DcG4N9PyEN7bPaWxZod",
-      "balance": 563936,
+      "balance": 603622,
       "membership_expire_on": 1705525214,
       "next_cert_issuable_on": 1656388010,
       "certs_received": {
@@ -39420,7 +40238,7 @@
     "OncleDave": {
       "index": 4527,
       "owner_key": "4zeJLxQFbdtmfCka5eGPGdL2WKmqpoa6r9xsHcqFzJz6",
-      "balance": 800205,
+      "balance": 839891,
       "membership_expire_on": 1699383200,
       "next_cert_issuable_on": 1690260417,
       "certs_received": {
@@ -39437,8 +40255,8 @@
     "SRVR": {
       "index": 6506,
       "owner_key": "4zo9jPFGgJoQp8yCTdDC5zwYbVubfvXA9EC9YL17fX2y",
-      "balance": 576149,
-      "membership_expire_on": 1696500530,
+      "balance": 612601,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1665014930,
       "certs_received": {
         "DCat": 1703797473,
@@ -39452,17 +40270,17 @@
     "Henk-Quillan": {
       "index": 6309,
       "owner_key": "4zpKsyEGg8VxWFQCriUXv5LGxL2k6EyjXVDsXKLbS7bD",
-      "balance": 665431,
+      "balance": 730117,
       "membership_expire_on": 1700956056,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695525428,
       "certs_received": {
-        "Bich": 1701467494,
+        "Bich": 1758575908,
         "Crystal": 1702017008,
-        "JeandelAude": 1701497472,
-        "SylvieT": 1701467126,
+        "JeandelAude": 1758610196,
+        "SylvieT": 1757918987,
         "EvaSorel": 1747926327,
-        "LaurenceDavid": 1701563314,
-        "RitaWilson": 1701497730
+        "LaurenceDavid": 1758862035,
+        "RitaWilson": 1758610196
       }
     },
     "McKlubz": {
@@ -39494,7 +40312,7 @@
     "tkpx": {
       "index": 432,
       "owner_key": "4zusN7Mbct7MUuupXkJ2cZZJ6ACKWKTn9wKPY5AtKm23",
-      "balance": 2262126,
+      "balance": 2301812,
       "membership_expire_on": 1714485181,
       "next_cert_issuable_on": 1651414733,
       "certs_received": {
@@ -39546,7 +40364,7 @@
     "Gabriel": {
       "index": 238,
       "owner_key": "51EFVNZwpfmTXU7BSLpeh3PZFgfdmm5hq5MzCDopdH2",
-      "balance": 391148,
+      "balance": 430834,
       "membership_expire_on": 1700919868,
       "next_cert_issuable_on": 1687571161,
       "certs_received": {
@@ -39568,7 +40386,7 @@
     "MGweb": {
       "index": 5060,
       "owner_key": "51GUB6VF3JZ1K1Nuhq1WxhHY1QsgtTfwjYUiQFFa5tos",
-      "balance": 863135,
+      "balance": 902821,
       "membership_expire_on": 1706109984,
       "next_cert_issuable_on": 1686125467,
       "certs_received": {
@@ -39583,9 +40401,9 @@
     "rosydailleurs": {
       "index": 9255,
       "owner_key": "51HVzcXX6oFMgz28w4WMfiHmny15f5u5K5hruxEdskfy",
-      "balance": 432994,
+      "balance": 462680,
       "membership_expire_on": 1722898522,
-      "next_cert_issuable_on": 1676548406,
+      "next_cert_issuable_on": 1696250339,
       "certs_received": {
         "toypurina": 1736400336,
         "FredTahiti": 1724047980,
@@ -39600,8 +40418,8 @@
     "Chatounet": {
       "index": 10030,
       "owner_key": "51KWtKNScjdGkTcgspah5sa5Yj3VbjrFyRvyfdkJ5Jn8",
-      "balance": 198518,
-      "membership_expire_on": 1695911958,
+      "balance": 238204,
+      "membership_expire_on": 1725732582,
       "next_cert_issuable_on": 1687073076,
       "certs_received": {
         "Mamouchka": 1727626786,
@@ -39617,7 +40435,7 @@
     "Vikolander": {
       "index": 11029,
       "owner_key": "51QjgTWb4ijj78dMgcCkVgYksH1Wy3sVAnHJJXpBpKWz",
-      "balance": 232781,
+      "balance": 205367,
       "membership_expire_on": 1702996392,
       "next_cert_issuable_on": 1687425783,
       "certs_received": {
@@ -39637,7 +40455,7 @@
     "LydieParthenay": {
       "index": 6983,
       "owner_key": "51RiFxt8f7MgcbkTsg2qrGUkbYFbgT3fpZYnPvqpPvM5",
-      "balance": 409990,
+      "balance": 449676,
       "membership_expire_on": 1707649300,
       "next_cert_issuable_on": 1670141544,
       "certs_received": {
@@ -39659,7 +40477,7 @@
     "Nico4roux": {
       "index": 13172,
       "owner_key": "51Ro7eNtdV6Rp2cSMcE1vQK9qxct5WUTnSdYUpmBhY1Q",
-      "balance": 53128,
+      "balance": 106814,
       "membership_expire_on": 1720642793,
       "next_cert_issuable_on": 1691581997,
       "certs_received": {
@@ -39676,9 +40494,9 @@
     "PierreYves": {
       "index": 69,
       "owner_key": "51Zb6wvH7YX4RiQNue4GYyPfALgRqr8KihUzL4cguuws",
-      "balance": 1961757,
+      "balance": 2362573,
       "membership_expire_on": 1723207948,
-      "next_cert_issuable_on": 1675166340,
+      "next_cert_issuable_on": 1693808930,
       "certs_received": {
         "Sophie": 1732244207,
         "OlivierHovasse": 1730074554,
@@ -39698,8 +40516,8 @@
     "NineNova": {
       "index": 6050,
       "owner_key": "51bx8dMoZ9R67sXX4bNzDqTsqr5QMedXPcQwAceLDNB",
-      "balance": 786220,
-      "membership_expire_on": 1693908273,
+      "balance": 790492,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1651729101,
       "certs_received": {
         "echo": 1699474058,
@@ -39715,8 +40533,8 @@
     "Almudenartista": {
       "index": 10542,
       "owner_key": "51dUkT4Jv8RhQJJEvMVYbpYQJpBFNbDTvwpxZqPaPjj1",
-      "balance": 172187,
-      "membership_expire_on": 1700752610,
+      "balance": 205229,
+      "membership_expire_on": 1727912279,
       "next_cert_issuable_on": 1678015600,
       "certs_received": {
         "AlbaMur": 1744670356,
@@ -39737,7 +40555,7 @@
     "Sylvel": {
       "index": 11643,
       "owner_key": "51hbA3rjDKPB47cywUd9ygkwmUjLwyBYHyaokFNBWmFp",
-      "balance": 254040,
+      "balance": 293726,
       "membership_expire_on": 1707362007,
       "next_cert_issuable_on": 1688398815,
       "certs_received": {
@@ -39755,13 +40573,14 @@
     "LaGoudale": {
       "index": 10252,
       "owner_key": "51hs15y2hNxRhjbaFfj3y3WH1d85WVAuVG7c7FavNtbK",
-      "balance": 305031,
-      "membership_expire_on": 1696536805,
-      "next_cert_issuable_on": 1693008180,
+      "balance": 344717,
+      "membership_expire_on": 1725963792,
+      "next_cert_issuable_on": 1695696551,
       "certs_received": {
         "LhamoKarine": 1729309426,
         "Hernest": 1733981400,
         "Ananas21": 1729278015,
+        "TristanG1": 1758067135,
         "lelfedesboa": 1730880012,
         "Charlette2": 1729278980,
         "Eastwood": 1728782175,
@@ -39774,7 +40593,7 @@
     "clemencetourrel": {
       "index": 8484,
       "owner_key": "51kuALPupoqHsQUQAGg52VHNfEaoCkz66gaSsyML9YS8",
-      "balance": 468379,
+      "balance": 508065,
       "membership_expire_on": 1713110727,
       "next_cert_issuable_on": 1660120726,
       "certs_received": {
@@ -39788,7 +40607,7 @@
     "toypurina": {
       "index": 11153,
       "owner_key": "51m2czbtbDje3wWKRwmNebgRFxeVErMxNALvkn32uJ8s",
-      "balance": 240117,
+      "balance": 279803,
       "membership_expire_on": 1703035407,
       "next_cert_issuable_on": 1673494377,
       "certs_received": {
@@ -39805,12 +40624,11 @@
     "sparkle765": {
       "index": 5494,
       "owner_key": "51qQc3puNTws4pZ4zwerZRrqETgpLZsVCVeWzsrEi34H",
-      "balance": 139548,
+      "balance": 146734,
       "membership_expire_on": 1711077981,
       "next_cert_issuable_on": 1681471959,
       "certs_received": {
         "Noelia": 1738734446,
-        "LaCasaGran": 1694655274,
         "Josepeuta": 1733166979,
         "luismo": 1720933488,
         "Tchoupi": 1733601468,
@@ -39824,9 +40642,9 @@
     "PhilippeLafontaine": {
       "index": 7868,
       "owner_key": "51tZEgRqEt6AdB5aCWpaJ9wBARG7nFwettpCseXhNJPz",
-      "balance": 410274,
+      "balance": 449960,
       "membership_expire_on": 1706411822,
-      "next_cert_issuable_on": 1690719827,
+      "next_cert_issuable_on": 1694274438,
       "certs_received": {
         "dnoelle": 1713745132,
         "Carine888": 1737358903,
@@ -39854,6 +40672,7 @@
         "7Daniel": 1713405729,
         "juwolf": 1731362793,
         "NalaMandala": 1745883540,
+        "Bilou": 1757916571,
         "Domyrhapsody": 1719814114,
         "VaivaG": 1740123659
       }
@@ -39874,7 +40693,6 @@
       "next_cert_issuable_on": 1637214311,
       "certs_received": {
         "Stevia30120": 1732495002,
-        "daufun": 1695598777,
         "Hubert": 1722299093
       }
     },
@@ -39886,7 +40704,6 @@
       "next_cert_issuable_on": 1690873459,
       "certs_received": {
         "Snox": 1753915495,
-        "poka": 1696577109,
         "MissSophie": 1749776741,
         "Mdita": 1748229739
       }
@@ -39894,27 +40711,25 @@
     "Elie88": {
       "index": 5956,
       "owner_key": "52Fr5YadsEqJJTXTCFfu7vG4GgXxM5fgj3PNWWpTgzgQ",
-      "balance": 624449,
+      "balance": 664135,
       "membership_expire_on": 1725032977,
       "next_cert_issuable_on": 1670181712,
       "certs_received": {
-        "Martine51": 1696384393,
-        "CharlineNature": 1696655638,
+        "Yannick51200": 1757265479,
         "Olacelou": 1697186497,
         "PoseidonR": 1728177886,
         "Audr3y": 1726951850,
         "Micka": 1697214109,
-        "Syldess": 1696385184,
-        "FatimaMIEL51": 1696561122,
         "letoilebleue": 1697247801,
         "hypericum": 1698348890,
+        "Keramina51": 1757718094,
         "Martienne": 1754996228
       }
     },
     "Rui-Famadoliz": {
       "index": 12178,
       "owner_key": "52H6onjaEUCuVmT1eGDM747fFE9KqRLHJT1cSjpNnPV8",
-      "balance": 313322,
+      "balance": 353008,
       "membership_expire_on": 1710801075,
       "next_cert_issuable_on": 1692284505,
       "certs_received": {
@@ -39933,7 +40748,7 @@
     "Marylouchou": {
       "index": 13074,
       "owner_key": "52NYBV7xq2txR2JUhKEGZnTRRwoidtEt6YJitqW5s82Y",
-      "balance": 55012,
+      "balance": 156798,
       "membership_expire_on": 1719334159,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -39965,8 +40780,8 @@
     "LolieRu": {
       "index": 3255,
       "owner_key": "52ZuXdshcJ9fynFPjzJenEcPrdYbHZzajBeqUNuoYvDg",
-      "balance": 2988364,
-      "membership_expire_on": 1693872722,
+      "balance": 2992636,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678425409,
       "certs_received": {
         "Tahiti": 1728341833,
@@ -39987,8 +40802,8 @@
     "jokoli": {
       "index": 9525,
       "owner_key": "52bdUm4YTGruHZt66QWzDBakVRHsacibyBJ3EAoaoXVk",
-      "balance": 389187,
-      "membership_expire_on": 1694045897,
+      "balance": 428873,
+      "membership_expire_on": 1725061232,
       "next_cert_issuable_on": 1682234335,
       "certs_received": {
         "Mairyn31": 1725728969,
@@ -40006,7 +40821,7 @@
     "TreenfolkG": {
       "index": 11664,
       "owner_key": "52erqwG4vvua9q54mMm5Tcj8jA2NvTHBc7ZP2qAyhSAA",
-      "balance": 225472,
+      "balance": 265158,
       "membership_expire_on": 1707668335,
       "next_cert_issuable_on": 1689557431,
       "certs_received": {
@@ -40025,7 +40840,7 @@
     "MarliMarl": {
       "index": 1161,
       "owner_key": "52hbG8tnnFKa2xUJEGqVuZnQx3i8qHKzp62qip3RTWAe",
-      "balance": 646050,
+      "balance": 685736,
       "membership_expire_on": 1703173074,
       "next_cert_issuable_on": 1690190023,
       "certs_received": {
@@ -40049,7 +40864,7 @@
     "EstebanA": {
       "index": 10246,
       "owner_key": "52hi4rWNuKqoweAkwUiSJw2njvMWDTsU2KntFMpFyMDp",
-      "balance": 315131,
+      "balance": 354817,
       "membership_expire_on": 1699237009,
       "next_cert_issuable_on": 1673238499,
       "certs_received": {
@@ -40063,7 +40878,7 @@
     "Celine388": {
       "index": 11611,
       "owner_key": "52r57iPWoEXK3DzHcdwKxDGJW68vDUkPMHAVCmzgGD7m",
-      "balance": 211149,
+      "balance": 211335,
       "membership_expire_on": 1706984518,
       "next_cert_issuable_on": 1678359034,
       "certs_received": {
@@ -40078,7 +40893,7 @@
     "Chrisbgs": {
       "index": 10546,
       "owner_key": "52rhEGQLDAxkhR41prVwjJoQqk7QUXYHuPWnwDv1kWzA",
-      "balance": 309110,
+      "balance": 348796,
       "membership_expire_on": 1699221012,
       "next_cert_issuable_on": 1681439042,
       "certs_received": {
@@ -40127,9 +40942,7 @@
       "balance": 351147,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1640232860,
-      "certs_received": {
-        "Cec": 1693599658
-      }
+      "certs_received": {}
     },
     "CatherineLetinturier": {
       "index": 557,
@@ -40142,13 +40955,14 @@
     "CoraRose": {
       "index": 12476,
       "owner_key": "53CL4vMPW45Nkfkct5DKatxEgDGhB7Zukq9BbxCtKJHR",
-      "balance": 133500,
+      "balance": 173186,
       "membership_expire_on": 1714076691,
-      "next_cert_issuable_on": 1687485739,
+      "next_cert_issuable_on": 1695646601,
       "certs_received": {
         "Brunop": 1745817282,
         "GRIBOUILLE22": 1745773273,
         "Jojo83": 1746077868,
+        "Agartha": 1758770748,
         "PatHamster": 1745537128,
         "HAMSTERDAME": 1745615803,
         "Joa-KimTiago": 1745647994,
@@ -40161,13 +40975,7 @@
       "balance": 340205,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1655803335,
-      "certs_received": {
-        "Topolinos": 1695223841,
-        "lindanas": 1693715047,
-        "FrancoisNas": 1693725724,
-        "alicejasmin": 1694419104,
-        "Spartacus": 1693623660
-      }
+      "certs_received": {}
     },
     "Compagnon": {
       "index": 4379,
@@ -40180,7 +40988,7 @@
     "MaricarmenSQ": {
       "index": 11689,
       "owner_key": "53Mb9jGHqLMW7JXXTdyb2D6X62hpZgATAnvWyiDp1DyC",
-      "balance": 171455,
+      "balance": 195141,
       "membership_expire_on": 1708467237,
       "next_cert_issuable_on": 1682478245,
       "certs_received": {
@@ -40197,7 +41005,7 @@
     "Sidney": {
       "index": 12946,
       "owner_key": "53ZNVbakAiXfckzqrKsKq5ftj2spa5JpJ8iGNpw25o5A",
-      "balance": 226896,
+      "balance": 266582,
       "membership_expire_on": 1714785650,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -40214,7 +41022,7 @@
     "TWAMEVA": {
       "index": 7949,
       "owner_key": "53ngvNMTYsbdkeuik8zLnmWz27B2AByHRZJfP9emnRKE",
-      "balance": 277998,
+      "balance": 317684,
       "membership_expire_on": 1708995487,
       "next_cert_issuable_on": 1682387829,
       "certs_received": {
@@ -40261,7 +41069,7 @@
     "Rafouille": {
       "index": 12194,
       "owner_key": "53xazawM8YkRNctdjQBN6tkRU3RWaJ25NwxHbgts11bf",
-      "balance": 237336,
+      "balance": 277022,
       "membership_expire_on": 1711750104,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -40299,7 +41107,7 @@
     "GaelleLC": {
       "index": 4277,
       "owner_key": "549PL7YCVXeh8S8dn7XZPuwbXNZYH29fiuKGThCncYb5",
-      "balance": 950129,
+      "balance": 989815,
       "membership_expire_on": 1700602925,
       "next_cert_issuable_on": 1674883418,
       "certs_received": {
@@ -40334,9 +41142,9 @@
     "BelgianGardoise": {
       "index": 10488,
       "owner_key": "54Z2SWcjntmq1qv3a3kP65RURTnzhT2Au3CRbsGKoBB3",
-      "balance": 310546,
+      "balance": 350232,
       "membership_expire_on": 1700144142,
-      "next_cert_issuable_on": 1672810241,
+      "next_cert_issuable_on": 1694310408,
       "certs_received": {
         "AmeHC": 1731706463,
         "CorinneCoco": 1731705889,
@@ -40348,8 +41156,8 @@
     "Isme": {
       "index": 4137,
       "owner_key": "54ZsFUpnSFtj1jyrzt6CCKxQENXZvFXKqDqipYU4tKMt",
-      "balance": 389222,
-      "membership_expire_on": 1696851257,
+      "balance": 428908,
+      "membership_expire_on": 1725128028,
       "next_cert_issuable_on": 1669310224,
       "certs_received": {
         "OncleDave": 1728674154,
@@ -40371,7 +41179,7 @@
     "Petrosilius": {
       "index": 10801,
       "owner_key": "54bbyKtQrujwpp962PEaWUHKfmatXbWff9oBFrpM3PZR",
-      "balance": 288984,
+      "balance": 328670,
       "membership_expire_on": 1702337115,
       "next_cert_issuable_on": 1680609957,
       "certs_received": {
@@ -40397,7 +41205,7 @@
     "ChloeElfe": {
       "index": 1001,
       "owner_key": "54cCgF2oEyiveeP36ez5NfpnyqHdqMTvxWQkKgjDnNsh",
-      "balance": 1630618,
+      "balance": 1670304,
       "membership_expire_on": 1697655609,
       "next_cert_issuable_on": 1690127471,
       "certs_received": {
@@ -40413,9 +41221,9 @@
     "Guigui17": {
       "index": 5826,
       "owner_key": "54cEqFMTduLkWBWbCeHSiGsWvVfqYWohoqaZ9LLCg6cg",
-      "balance": 672799,
-      "membership_expire_on": 1693652263,
-      "next_cert_issuable_on": 1685078365,
+      "balance": 722485,
+      "membership_expire_on": 1725110287,
+      "next_cert_issuable_on": 1693625200,
       "certs_received": {
         "pierreM": 1696901430,
         "seb": 1697566295,
@@ -40423,6 +41231,7 @@
         "Kittinyani": 1715899436,
         "SophieMichaud": 1716625631,
         "Ingriddevendee": 1696901149,
+        "Beatrice": 1756668400,
         "Valerieptjn17": 1718506951,
         "Titem": 1696903737,
         "Sylmon": 1696901714,
@@ -40434,7 +41243,7 @@
     "Txotxe": {
       "index": 11973,
       "owner_key": "54cirRPUePrMGEVs6oJiW45oXQzu6W9P56PJbcuc7V9K",
-      "balance": 299520,
+      "balance": 68706,
       "membership_expire_on": 1710085365,
       "next_cert_issuable_on": 1681314053,
       "certs_received": {
@@ -40443,6 +41252,7 @@
         "Sonya": 1741805331,
         "Caperucita": 1741845436,
         "Martylove": 1753837135,
+        "MaestroJorge": 1758933146,
         "Kris_Izaratia": 1741682065,
         "lachispis": 1741849463
       }
@@ -40469,7 +41279,7 @@
     "Lilas211148": {
       "index": 7785,
       "owner_key": "54iTZBnHT4STms16kFmqu8qJ8E1T7Rt7SAAgBb34PrEA",
-      "balance": 517531,
+      "balance": 557217,
       "membership_expire_on": 1707919866,
       "next_cert_issuable_on": 1679982177,
       "certs_received": {
@@ -40487,26 +41297,21 @@
     "BricePedrono": {
       "index": 5852,
       "owner_key": "54keP6H2vbdPLqQ44shnT5Ycc7z9PDpMwEgE3Kmgwhx6",
-      "balance": 720673,
-      "membership_expire_on": 1694523161,
+      "balance": 733489,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675306399,
       "certs_received": {
         "AmeHC": 1701245143,
         "CatherineMontpellier": 1697657164,
-        "Mandala": 1695403290,
-        "Esme34": 1695496694,
-        "Alex34": 1695403290,
         "CorinneCoco": 1700881809,
         "VeroDieu": 1740950491,
-        "enchemin": 1695403290,
-        "Nico34": 1695403652,
         "MatHC": 1700365775
       }
     },
     "Gregouz26": {
       "index": 1699,
       "owner_key": "54poeiHB3zyzYED8He1D3h7jqxXn9i7cMUovJATx1v3x",
-      "balance": 1607135,
+      "balance": 1646821,
       "membership_expire_on": 1710872118,
       "next_cert_issuable_on": 1681562587,
       "certs_received": {
@@ -40520,7 +41325,7 @@
     "Cavalier07": {
       "index": 6327,
       "owner_key": "54wHMPfhYc3EkEa6LT8UrM4CNYVCk3JzN4RJ8pTWroed",
-      "balance": 649047,
+      "balance": 688733,
       "membership_expire_on": 1699439489,
       "next_cert_issuable_on": 1670863031,
       "certs_received": {
@@ -40536,9 +41341,9 @@
     "NanouB": {
       "index": 9310,
       "owner_key": "54yhyoYYqRqx2UQxz6gB3VKPnT1tdq3crjwCjw6Ubzv8",
-      "balance": 324188,
+      "balance": 356874,
       "membership_expire_on": 1722598781,
-      "next_cert_issuable_on": 1693055729,
+      "next_cert_issuable_on": 1696561201,
       "certs_received": {
         "Amiel": 1724299240,
         "tangosol": 1756098929,
@@ -40573,9 +41378,9 @@
     "HugoTrentesaux": {
       "index": 344,
       "owner_key": "55oM6F9ZE2MGi642GGjhCzHhdDdWwU6KchTjPzW7g3bp",
-      "balance": 3471550,
+      "balance": 3587832,
       "membership_expire_on": 1700624593,
-      "next_cert_issuable_on": 1693544416,
+      "next_cert_issuable_on": 1695448523,
       "certs_received": {
         "kapis": 1749802021,
         "lanoire": 1712256151,
@@ -40585,6 +41390,7 @@
         "CamilleLemasson": 1731824521,
         "Sylharmonie": 1727773615,
         "vit": 1734319583,
+        "JerryBB": 1757860640,
         "Pini": 1755279124,
         "ENO": 1750565025,
         "EtK": 1747879841,
@@ -40609,6 +41415,7 @@
         "SyoulAnuanua": 1740679204,
         "Mido": 1737336248,
         "tree": 1717299172,
+        "Ninette89": 1759088769,
         "hypericum": 1750420519,
         "MatthieuLatapy": 1722757117,
         "moul": 1702179765,
@@ -40616,14 +41423,27 @@
         "tatinetteb": 1754763092
       }
     },
+    "DianaMarianma": {
+      "index": 13673,
+      "owner_key": "55pH7Uaxou7S6p19QQ7bgL1omkFUD93QVjcimK3p1heU",
+      "balance": 24434,
+      "membership_expire_on": 1724204465,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Jens777": 1756626549,
+        "Kaikus": 1756618832,
+        "catalinons": 1756612276,
+        "Laurahedrosa": 1757476998,
+        "eno": 1758086301
+      }
+    },
     "SandraFernandes": {
       "index": 5855,
       "owner_key": "5672QJTxFJrWJESDnh4eUkw8E4urgoT2k8URf9dJ9Ka3",
-      "balance": 183865,
+      "balance": 223351,
       "membership_expire_on": 1719850047,
       "next_cert_issuable_on": 1686284232,
       "certs_received": {
-        "kapis": 1696188696,
         "FJO-LaV": 1752949979,
         "Aatma": 1697524309,
         "lanawin": 1698634994,
@@ -40641,9 +41461,7 @@
         "Munay": 1724974445,
         "Rio": 1696907010,
         "Cristetapaixao": 1738007302,
-        "SurfinMaya": 1696537798,
         "Cathy26": 1730762276,
-        "SandraHeleno": 1695854474,
         "Naneff": 1730870065,
         "Joaquim": 1722657660,
         "fania": 1696749350
@@ -40652,7 +41470,7 @@
     "SevChereau": {
       "index": 4402,
       "owner_key": "56EGsy34MmemFrRrYTdDwKqbC3Z51Q8owQtnBd8Pcb1b",
-      "balance": 813178,
+      "balance": 852864,
       "membership_expire_on": 1706546623,
       "next_cert_issuable_on": 1688343584,
       "certs_received": {
@@ -40670,7 +41488,7 @@
     "Speranza": {
       "index": 11481,
       "owner_key": "56LzjTsHgpG3imUuHMQzVV4vyuT2FvmWKD2YHht8kx1U",
-      "balance": 195680,
+      "balance": 235366,
       "membership_expire_on": 1706136670,
       "next_cert_issuable_on": 1689315852,
       "certs_received": {
@@ -40708,7 +41526,7 @@
     "annebugarach": {
       "index": 12397,
       "owner_key": "56PnT46oSXpP6ErcPhPnHZSXfbjRZFgTbDwSMpMKsuk",
-      "balance": 119044,
+      "balance": 158730,
       "membership_expire_on": 1713117556,
       "next_cert_issuable_on": 1689394414,
       "certs_received": {
@@ -40723,9 +41541,9 @@
     "valentinekaya": {
       "index": 10249,
       "owner_key": "56R8jCnqAT6qK3Lc8VRsCrv3tH2FCdmenSfLrQkxWfku",
-      "balance": 144831,
-      "membership_expire_on": 1698256940,
-      "next_cert_issuable_on": 1688055466,
+      "balance": 181517,
+      "membership_expire_on": 1725889958,
+      "next_cert_issuable_on": 1694408142,
       "certs_received": {
         "Nagual": 1729919018,
         "Icobonhomme": 1729824662,
@@ -40747,7 +41565,7 @@
     "P0LIX": {
       "index": 2055,
       "owner_key": "56YyU2ZEDPdiLFDx6Wt2mrCM6B6uWPAQPVGMVXYhWumL",
-      "balance": 916979,
+      "balance": 956665,
       "membership_expire_on": 1722251362,
       "next_cert_issuable_on": 1682386961,
       "certs_received": {
@@ -40761,7 +41579,7 @@
     "cuckooland": {
       "index": 35,
       "owner_key": "56aXsYLSQmGz75ZohRQMLcKiYaUmJK5cbyz4ZGiKsbAe",
-      "balance": 1820714,
+      "balance": 1860400,
       "membership_expire_on": 1719783925,
       "next_cert_issuable_on": 1688299773,
       "certs_received": {
@@ -40777,7 +41595,7 @@
     "LouiseRun": {
       "index": 2754,
       "owner_key": "56dm5mM8ZLPf4KopLNZwDJCnhpJok5pbxdFiJGkHhTeQ",
-      "balance": 1280774,
+      "balance": 1320460,
       "membership_expire_on": 1709331784,
       "next_cert_issuable_on": 1643695764,
       "certs_received": {
@@ -40804,11 +41622,12 @@
     "Cathlon": {
       "index": 9752,
       "owner_key": "56p4yo9y7xK5fr7eB8cYFYuxKmPcHyzXE85HrcMNhBVB",
-      "balance": 683214,
-      "membership_expire_on": 1695247743,
-      "next_cert_issuable_on": 1677339841,
+      "balance": 704900,
+      "membership_expire_on": 1726090599,
+      "next_cert_issuable_on": 1695035471,
       "certs_received": {
         "Cyrius": 1727815093,
+        "gberdal": 1758081854,
         "DanielL": 1727813931,
         "Lovylou": 1745470288,
         "gui_tooun": 1726805343,
@@ -40823,7 +41642,7 @@
     "barbiecatie": {
       "index": 11627,
       "owner_key": "571eQGqrjyxEiz3zX8eZoPjtEo265BpkTYuvGCDC26qh",
-      "balance": 260090,
+      "balance": 299776,
       "membership_expire_on": 1707632395,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -40850,7 +41669,6 @@
       "next_cert_issuable_on": 1649147633,
       "certs_received": {
         "celoman": 1696749959,
-        "sparkle765": 1693868809,
         "SandraFernandes": 1702467745,
         "sheveck": 1727426022,
         "timetale": 1727426721,
@@ -40896,9 +41714,9 @@
     "Fleurdelotus": {
       "index": 8567,
       "owner_key": "57QLT4hQsUvrazADRmWGCpcd3WFYaNbXrp73sCjEQqWe",
-      "balance": 432121,
+      "balance": 473807,
       "membership_expire_on": 1719534957,
-      "next_cert_issuable_on": 1680526039,
+      "next_cert_issuable_on": 1694158486,
       "certs_received": {
         "GaelleRou": 1726815429,
         "jeje43": 1724216399,
@@ -40945,7 +41763,7 @@
     "Happily": {
       "index": 1039,
       "owner_key": "57eLuEv4CmU8uEbQSKsNC7BLbQLFs7w92ofSqxpvW258",
-      "balance": 1993050,
+      "balance": 2032736,
       "membership_expire_on": 1706533890,
       "next_cert_issuable_on": 1681959695,
       "certs_received": {
@@ -40960,7 +41778,7 @@
     "Christian76": {
       "index": 13233,
       "owner_key": "57fcFoSvCbwgWT4uyZwQFEWam7KrYhgTEfYPLjPaaYHt",
-      "balance": 35584,
+      "balance": 75270,
       "membership_expire_on": 1721671304,
       "next_cert_issuable_on": 1691209746,
       "certs_received": {
@@ -40975,7 +41793,7 @@
     "AliceLeparc": {
       "index": 4446,
       "owner_key": "57fvH8KoQdBmzvNRJ3njmmipG3JoK4UCWctTCoFdT83U",
-      "balance": 1382474,
+      "balance": 1422160,
       "membership_expire_on": 1701124125,
       "next_cert_issuable_on": 1685855794,
       "certs_received": {
@@ -40983,7 +41801,8 @@
         "Chris08": 1730995974,
         "Phil7": 1732494653,
         "Gaia5": 1733537242,
-        "Ingriddevendee": 1732586974
+        "Ingriddevendee": 1732586974,
+        "CoralieM": 1757960514
       }
     },
     "Vincentc12": {
@@ -40997,7 +41816,7 @@
     "ZeusDevora": {
       "index": 12495,
       "owner_key": "57sXKYuB2y4tG9APeA3NvUqyojNVmHiyGGBN6a9gfUQf",
-      "balance": 186464,
+      "balance": 226150,
       "membership_expire_on": 1714440728,
       "next_cert_issuable_on": 1686404923,
       "certs_received": {
@@ -41030,13 +41849,12 @@
     "Alassane": {
       "index": 3071,
       "owner_key": "582A8YghEMSSgtYErN51PLRRfVB4TKchR1QqWFZXQE2g",
-      "balance": 1249177,
+      "balance": 1288863,
       "membership_expire_on": 1713391743,
       "next_cert_issuable_on": 1658543517,
       "certs_received": {
         "hv23": 1706305863,
         "Lilou": 1696816674,
-        "Guenoel": 1695951163,
         "elbab": 1696821791,
         "LeonardG": 1696816674,
         "ahmed": 1699318407
@@ -41045,8 +41863,8 @@
     "Tygrre": {
       "index": 9831,
       "owner_key": "586KqQjjyfkkRjpcwTffPs722fJha5G7jM1QLcQjm9Ne",
-      "balance": 348819,
-      "membership_expire_on": 1696268313,
+      "balance": 383115,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Rebel": 1727936404,
@@ -41061,7 +41879,7 @@
     "Nellio": {
       "index": 6425,
       "owner_key": "58Azb7ju7RyPasSpphWCQsHVyVJy3PQhhiKBNR7PE3Xa",
-      "balance": 496824,
+      "balance": 491510,
       "membership_expire_on": 1713884091,
       "next_cert_issuable_on": 1662127582,
       "certs_received": {
@@ -41084,7 +41902,7 @@
     "Marjorie": {
       "index": 6699,
       "owner_key": "58JiGMv5Gen5svhCRV7xZpQTdFeu9m3xzpkQH315uSMp",
-      "balance": 500041,
+      "balance": 520227,
       "membership_expire_on": 1705323985,
       "next_cert_issuable_on": 1682725509,
       "certs_received": {
@@ -41101,9 +41919,9 @@
     "alaintorres": {
       "index": 10989,
       "owner_key": "58JzJQtPvxV1PbPNk722RjqG1xQbZLRQpuBKhEAZGtq5",
-      "balance": 266217,
+      "balance": 305903,
       "membership_expire_on": 1703036902,
-      "next_cert_issuable_on": 1691415660,
+      "next_cert_issuable_on": 1695198929,
       "certs_received": {
         "Yukimarou": 1734844928,
         "ThierryLacaze": 1734844928,
@@ -41116,7 +41934,7 @@
     "Jogaia": {
       "index": 6804,
       "owner_key": "58K9tUY65MKELiAF14uQTfaMGqRAC7WHohhooj5hrd6y",
-      "balance": 535529,
+      "balance": 575215,
       "membership_expire_on": 1710419053,
       "next_cert_issuable_on": 1646624386,
       "certs_received": {
@@ -41139,7 +41957,7 @@
     "echo": {
       "index": 3792,
       "owner_key": "58Z2fys5HVmxSuyAJtV7VSDtyfKSpb64avd1ZrrPqafq",
-      "balance": 459642,
+      "balance": 499328,
       "membership_expire_on": 1704176577,
       "next_cert_issuable_on": 1682928153,
       "certs_received": {
@@ -41158,14 +41976,13 @@
     "Josevi": {
       "index": 4097,
       "owner_key": "58an5GjnnTJuNRxLur1pUvmTRV7XNNbcKvGJJBRsH9DD",
-      "balance": 190469,
+      "balance": 180469,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1681125378,
       "certs_received": {
         "Quantumsinergy": 1731782844,
         "Gamaliel": 1725911557,
-        "Fer": 1744168578,
-        "MissPine": 1693535811
+        "Fer": 1744168578
       }
     },
     "VeroniqueHonlet": {
@@ -41182,7 +41999,7 @@
     "Nath25": {
       "index": 13269,
       "owner_key": "58cMVHwKNxJDUS4ooUFZ4HCRLRrW61iHk4gLXqcJzEEK",
-      "balance": 151008,
+      "balance": 190694,
       "membership_expire_on": 1722169500,
       "next_cert_issuable_on": 1692705793,
       "certs_received": {
@@ -41201,7 +42018,7 @@
     "Delfcolibri7": {
       "index": 10824,
       "owner_key": "58kLu6Ag3H6PPTkbVVE41v3Mf3kVLQaRuNkkESXZfoFE",
-      "balance": 312264,
+      "balance": 351950,
       "membership_expire_on": 1701823889,
       "next_cert_issuable_on": 1673060846,
       "certs_received": {
@@ -41217,7 +42034,7 @@
     "Patmoy": {
       "index": 8340,
       "owner_key": "58nHCYRZrwUXrbUNNSxcBD7sTPEV5VptDkjrgSQsRtvB",
-      "balance": 464893,
+      "balance": 488579,
       "membership_expire_on": 1711680117,
       "next_cert_issuable_on": 1688320002,
       "certs_received": {
@@ -41235,7 +42052,7 @@
     "Couleurs": {
       "index": 12195,
       "owner_key": "58tg6GSQ3d2yRu22c8VMGHuXmD5d2iJmzD5M88snKLpk",
-      "balance": 92856,
+      "balance": 110542,
       "membership_expire_on": 1711938008,
       "next_cert_issuable_on": 1690494822,
       "certs_received": {
@@ -41254,29 +42071,25 @@
     "LaCasaGran": {
       "index": 4056,
       "owner_key": "58x4LvRCFYfvbrEoZTepA5Si3uWPa7PwuFU6iU8n4zeM",
-      "balance": 380172,
+      "balance": 419858,
       "membership_expire_on": 1717204117,
       "next_cert_issuable_on": 1685718517,
       "certs_received": {
         "Cordeliaze": 1729966219,
         "mluque71": 1697698933,
-        "carmela": 1694680271,
         "sparkle765": 1708845942,
         "LI21": 1697526357,
         "aitorjs": 1726053568,
-        "Wellno1": 1694474252,
         "llanero": 1707464033,
         "albalibre": 1726381504,
         "hocine": 1699079822,
-        "tereseta": 1725695387,
-        "Koldo": 1695828646,
-        "MissPine": 1693536111
+        "tereseta": 1725695387
       }
     },
     "SunderSimranSingh": {
       "index": 11388,
       "owner_key": "594cB8wkfbiQe1fhe84d4HreJWH3u3goXBjdj1gbhab2",
-      "balance": 218047,
+      "balance": 257733,
       "membership_expire_on": 1703559979,
       "next_cert_issuable_on": 1688013925,
       "certs_received": {
@@ -41296,6 +42109,7 @@
         "HViegas": 1745932140,
         "pedroponte": 1748548303,
         "JorgeDraven": 1735442153,
+        "AnaIsis7animais": 1758267975,
         "OlgaO": 1741209410,
         "Fa5": 1737621091,
         "ElisabeteMartins": 1735872323,
@@ -41328,7 +42142,7 @@
     "NellJ": {
       "index": 11943,
       "owner_key": "597GWWii9JCHc43zJeKBJEhhXwqMCErLhCWjsWhstpwj",
-      "balance": 213374,
+      "balance": 263060,
       "membership_expire_on": 1709679432,
       "next_cert_issuable_on": 1683343357,
       "certs_received": {
@@ -41359,7 +42173,7 @@
     "Latie": {
       "index": 12076,
       "owner_key": "59f6EYjwRwrGLoUeDuw1AvmSCMSfihSJ7HY54RcGnj4v",
-      "balance": 63084,
+      "balance": 102770,
       "membership_expire_on": 1707005633,
       "next_cert_issuable_on": 1689080220,
       "certs_received": {
@@ -41389,7 +42203,7 @@
     "Tulsi": {
       "index": 10893,
       "owner_key": "59fegbB8Vd5B3BXCeW37v43M7VeSkyFLjCJ8jL78FGGU",
-      "balance": 132630,
+      "balance": 140816,
       "membership_expire_on": 1702427271,
       "next_cert_issuable_on": 1675329641,
       "certs_received": {
@@ -41408,7 +42222,7 @@
     "Shandra": {
       "index": 7312,
       "owner_key": "59m1vovftKUokrNRN4wrZ4QX2HA5kuD1tyHuXi4VKXJh",
-      "balance": 505368,
+      "balance": 545054,
       "membership_expire_on": 1704632707,
       "next_cert_issuable_on": 1690700034,
       "certs_received": {
@@ -41432,7 +42246,7 @@
       "owner_key": "59oBzp4yXkEyM5LK2n4h1DmkZ54iwCruRGqXVK8AkmZe",
       "balance": 1452697,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631253703,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "JoelChainay": 1710046573,
         "PascalMahe": 1710046573
@@ -41441,9 +42255,9 @@
     "sheveck": {
       "index": 4044,
       "owner_key": "59pE8atyJTkGwQEKGh1BktCpnCT9YTT627AjVsjL5gQK",
-      "balance": 668460,
+      "balance": 231086,
       "membership_expire_on": 1710787253,
-      "next_cert_issuable_on": 1689414278,
+      "next_cert_issuable_on": 1694752092,
       "certs_received": {
         "kapis": 1728531011,
         "SaraRo": 1723329986,
@@ -41462,7 +42276,6 @@
         "Lurtxu": 1704443093,
         "Marianoconcentrado": 1725468336,
         "Annina": 1748199209,
-        "LI21": 1696650017,
         "CarmeLilum": 1717838056,
         "G1rgina": 1728718760,
         "NIUM": 1735803895,
@@ -41481,8 +42294,6 @@
         "tuttle": 1713944181,
         "tereseta": 1724490000,
         "Koldo": 1751873367,
-        "ElenaMavida": 1695364622,
-        "SandraHeleno": 1695704536,
         "sarava": 1722633435,
         "Jkmbio": 1726684571,
         "BeatrizGG": 1741681914,
@@ -41492,7 +42303,7 @@
     "DomiNihant": {
       "index": 10935,
       "owner_key": "59tbLnGokfzxcaLDfkS5YfDDDU9am6seL8SfMFFmdwHe",
-      "balance": 268453,
+      "balance": 308139,
       "membership_expire_on": 1702509495,
       "next_cert_issuable_on": 1678709260,
       "certs_received": {
@@ -41512,7 +42323,7 @@
     "Yeskah": {
       "index": 10147,
       "owner_key": "59vo6KYYHFh5WcvMTD1FCjP2DwbAQ5NRLy4uQsEvmebK",
-      "balance": 176678,
+      "balance": 216364,
       "membership_expire_on": 1698155676,
       "next_cert_issuable_on": 1677830315,
       "certs_received": {
@@ -41537,14 +42348,15 @@
     "maud": {
       "index": 6763,
       "owner_key": "5A2Kf1fA6VhADSn91oKZGL6szjT8ig1fEFS5UTjFNCGR",
-      "balance": 535331,
+      "balance": 575017,
       "membership_expire_on": 1700705648,
-      "next_cert_issuable_on": 1680755602,
+      "next_cert_issuable_on": 1695992823,
       "certs_received": {
         "Nagual": 1705532426,
         "Chamax": 1705210553,
         "s00999": 1705653317,
         "AnjeLaur": 1743621932,
+        "Badiane94": 1759447826,
         "Herydanslanievre": 1705121508,
         "maBeltjens": 1705299299,
         "MutatisMutandis": 1704945461
@@ -41553,9 +42365,9 @@
     "Bil26": {
       "index": 12833,
       "owner_key": "5A8vk6qBsToGtPZnmrNCmveR1bJ4y44rKWEfY3Y9G4Gw",
-      "balance": 182220,
+      "balance": 277406,
       "membership_expire_on": 1714260843,
-      "next_cert_issuable_on": 1691245677,
+      "next_cert_issuable_on": 1696164138,
       "certs_received": {
         "vlareynie26": 1745820797,
         "FrancisBperso": 1751352958,
@@ -41569,7 +42381,7 @@
     "Caline": {
       "index": 6115,
       "owner_key": "5AFmMFvEmLFzvHcsmrK9NjR1Bu3auL4V5hXJwjDKFuzr",
-      "balance": 671829,
+      "balance": 711515,
       "membership_expire_on": 1721332564,
       "next_cert_issuable_on": 1690733166,
       "certs_received": {
@@ -41592,25 +42404,27 @@
     "AnneSophieConotte": {
       "index": 12800,
       "owner_key": "5AGPce4UxVUKxZ2RUAqKG5Fg5ZfUtZVagaYnnJkmJVLg",
-      "balance": 148984,
+      "balance": 167546,
       "membership_expire_on": 1714130970,
-      "next_cert_issuable_on": 1690603082,
+      "next_cert_issuable_on": 1696807935,
       "certs_received": {
         "ThaisSander": 1748414022,
         "AgnesJs": 1753483613,
         "Annae": 1748889543,
         "Gillo75": 1748891318,
         "NataSha": 1748933713,
-        "Goldwing": 1748891318
+        "Goldwing": 1748891318,
+        "Fanchon": 1759264284
       }
     },
     "NathaGhis6389": {
       "index": 6738,
       "owner_key": "5AKzm8m3f7XgcDnfDNydCPc79EEV4vtCZmsYqQ8B3pdG",
-      "balance": 597456,
-      "membership_expire_on": 1699624002,
-      "next_cert_issuable_on": 1688388435,
+      "balance": 643142,
+      "membership_expire_on": 1726771705,
+      "next_cert_issuable_on": 1694483212,
       "certs_received": {
+        "Jsln6289": 1757558075,
         "Hernest": 1751345881,
         "marinetfrommars": 1745377339,
         "Bobbie": 1746323020,
@@ -41631,15 +42445,14 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1635516646,
       "certs_received": {
-        "dondiego78": 1703250798,
-        "Chlea2010": 1696686808
+        "dondiego78": 1703250798
       }
     },
     "Fred72": {
       "index": 9643,
       "owner_key": "5APMbQYfvmd5rKMeKyMMR2bPjYw8pSKbDTG7SnCVkkyp",
-      "balance": 367586,
-      "membership_expire_on": 1694999620,
+      "balance": 385742,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678206030,
       "certs_received": {
         "Philibert": 1726559230,
@@ -41653,13 +42466,15 @@
     "Miguelprinter": {
       "index": 13083,
       "owner_key": "5ARB6uMusPRtvJvJ4NdgACPQX3ct38dKRAZNu7ih5QGX",
-      "balance": 39249,
+      "balance": 24435,
       "membership_expire_on": 1720100109,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695229724,
       "certs_received": {
+        "Gerardo": 1757291047,
         "luismo": 1753839468,
         "Jacci": 1751669038,
         "Alejandrolpa": 1751662112,
+        "noemi": 1758763579,
         "Runa_81": 1751658388,
         "BaltaMed": 1751659044,
         "SantiagoAcosta": 1751665130
@@ -41699,7 +42514,7 @@
     "MUMU12": {
       "index": 12352,
       "owner_key": "5Ast9DmVSnf2MqoAMLZtGHXqwrc1mYSmWSWCaTsqApYw",
-      "balance": 147384,
+      "balance": 187070,
       "membership_expire_on": 1713137544,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -41724,7 +42539,7 @@
     "Anouk": {
       "index": 7517,
       "owner_key": "5Aum8C5mXNBkynAbAkR38nFWnhXb3LBhd7UcLYuwAS3z",
-      "balance": 541244,
+      "balance": 580930,
       "membership_expire_on": 1706481672,
       "next_cert_issuable_on": 1652868799,
       "certs_received": {
@@ -41739,7 +42554,7 @@
     "Hunzatonic": {
       "index": 5097,
       "owner_key": "5AxD8BzYLAErbktw6zRE9EYjDP1hYzQ2F8db3F3NHwG4",
-      "balance": 366129,
+      "balance": 375815,
       "membership_expire_on": 1710288671,
       "next_cert_issuable_on": 1692267939,
       "certs_received": {
@@ -41764,19 +42579,16 @@
     "Ded": {
       "index": 5953,
       "owner_key": "5BBsW9WJ6nDZGan9jVwJCSW3KVZzM4G3TY9crxSF6uLs",
-      "balance": 431851,
+      "balance": 471537,
       "membership_expire_on": 1724268395,
       "next_cert_issuable_on": 1688385979,
       "certs_received": {
         "MarineDR": 1698386245,
-        "Martine51": 1696572191,
         "CharlineNature": 1697345565,
         "CecileM": 1725566004,
-        "Brigitte": 1695079435,
         "Audr3y": 1733543659,
         "Luna": 1720568257,
         "Micka": 1697156574,
-        "FatimaMIEL51": 1696653716,
         "hypericum": 1698652972,
         "OValReiki": 1733774443,
         "Keramina51": 1728948773,
@@ -41787,7 +42599,7 @@
     "Marie-Laure": {
       "index": 11039,
       "owner_key": "5BLeQKjbPkcY5Rkg4dsbGUeUiM9W41DqTMeUa4TTGDNT",
-      "balance": 153154,
+      "balance": 191762,
       "membership_expire_on": 1703170883,
       "next_cert_issuable_on": 1685260713,
       "certs_received": {
@@ -41804,7 +42616,7 @@
     "Amvala": {
       "index": 12565,
       "owner_key": "5BTxoKAMMf1qKDxHCMnN64Mo6jwtxvUVcAubCbQ3YN4K",
-      "balance": 135638,
+      "balance": 57324,
       "membership_expire_on": 1715016481,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -41819,8 +42631,8 @@
     "doronag": {
       "index": 9859,
       "owner_key": "5BUNqb9VeqKiydsEm6MJVNpf8UCLFdhKiBtPThie1KrE",
-      "balance": 291101,
-      "membership_expire_on": 1696115302,
+      "balance": 330787,
+      "membership_expire_on": 1727700774,
       "next_cert_issuable_on": 1684156328,
       "certs_received": {
         "ClaraBelle": 1730506456,
@@ -41836,7 +42648,7 @@
     "FranzFFBO": {
       "index": 6029,
       "owner_key": "5BWhpyNfJCDNfN23yJzuUJsJERuGBSSyNs6TrHcmyWhY",
-      "balance": 709649,
+      "balance": 749335,
       "membership_expire_on": 1698921019,
       "next_cert_issuable_on": 1667953889,
       "certs_received": {
@@ -41854,7 +42666,7 @@
     "evetravigne": {
       "index": 5988,
       "owner_key": "5BaaEQWasHhSc4rkBXbKgcs382fUstLZhkBH3MFK5hk1",
-      "balance": 728780,
+      "balance": 768466,
       "membership_expire_on": 1700140027,
       "next_cert_issuable_on": 1668674906,
       "certs_received": {
@@ -41866,7 +42678,7 @@
         "MarieLaureGruauGeslot": 1698703299,
         "PhilippeGruau": 1698710704,
         "PatrickCrepin": 1699286200,
-        "AnneAmbles": 1698432701,
+        "AnneAmbles": 1758600352,
         "SergeMascaro": 1698632311,
         "Chantallef72": 1701316049,
         "LucileFeuilleau": 1711674531,
@@ -41876,9 +42688,9 @@
     "JOD77": {
       "index": 7973,
       "owner_key": "5BgpRNf6WBovo6MQe9p23uyhxYDx2ZzP8XNbDibfJeDd",
-      "balance": 506391,
+      "balance": 573577,
       "membership_expire_on": 1711908674,
-      "next_cert_issuable_on": 1681445981,
+      "next_cert_issuable_on": 1695189806,
       "certs_received": {
         "lindsaymalytai": 1738644144,
         "Slimounet": 1714896284,
@@ -41899,7 +42711,7 @@
     "enrichill": {
       "index": 4468,
       "owner_key": "5BqkG5G8hQvTc3S7gVFqznrGEJvzxPSdngF6wVLZf8CP",
-      "balance": 940954,
+      "balance": 980640,
       "membership_expire_on": 1705358445,
       "next_cert_issuable_on": 1675160651,
       "certs_received": {
@@ -41913,13 +42725,14 @@
     "Estitz": {
       "index": 7456,
       "owner_key": "5ByGnPrk3sGUVRb8fiyGqZqc8JKBk4waotavrCyBGQb",
-      "balance": 183320,
+      "balance": 173006,
       "membership_expire_on": 1706298776,
       "next_cert_issuable_on": 1671676481,
       "certs_received": {
         "Cordeliaze": 1711307576,
         "MaudD": 1730441652,
         "GUL40_Fr1": 1714556460,
+        "regy": 1758251663,
         "Naymar": 1724964444,
         "Nekane": 1711320314,
         "GUL40_L21": 1714556460,
@@ -41967,9 +42780,9 @@
     "Enialeh": {
       "index": 10627,
       "owner_key": "5CHPvT8qfpDBFEcL7vcbYDvFWHKdb4nqVJ7YoQkCwrCK",
-      "balance": 322074,
-      "membership_expire_on": 1698799846,
-      "next_cert_issuable_on": 1673082535,
+      "balance": 331760,
+      "membership_expire_on": 1725927987,
+      "next_cert_issuable_on": 1694926863,
       "certs_received": {
         "Goldy": 1730683118,
         "Maaude09": 1732745911,
@@ -41981,7 +42794,7 @@
     "CHLOE51": {
       "index": 11708,
       "owner_key": "5CWCCYP1u9iyECEvWGDaKHSas3rjniPAzSDRqZtpoXyV",
-      "balance": 259376,
+      "balance": 279062,
       "membership_expire_on": 1707792531,
       "next_cert_issuable_on": 1681296097,
       "certs_received": {
@@ -41997,7 +42810,7 @@
     "etsaman": {
       "index": 9444,
       "owner_key": "5CiE9TJBDLKKczEzhGsbe7D56upJ8xy6i2b6DWJbURJc",
-      "balance": 1167153,
+      "balance": 991839,
       "membership_expire_on": 1720443592,
       "next_cert_issuable_on": 1692938214,
       "certs_received": {
@@ -42061,7 +42874,7 @@
     "JESS": {
       "index": 4315,
       "owner_key": "5CkFkhCAZW7G3HzJfX1hUXWBzx8bp3zX26NgBpaE3aA1",
-      "balance": 1241543,
+      "balance": 1281229,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
@@ -42076,7 +42889,7 @@
     "Irene": {
       "index": 7776,
       "owner_key": "5CtLz3MNYDRkXHy5p49qSXDqeLu8bRkguezzKgkF223w",
-      "balance": 280167,
+      "balance": 375253,
       "membership_expire_on": 1709758892,
       "next_cert_issuable_on": 1690537309,
       "certs_received": {
@@ -42106,9 +42919,9 @@
     "KiiAymara": {
       "index": 8763,
       "owner_key": "5D2jEmdTv34qp5ZJ9uhSarcrFfJzuWDmmVFW2iN1H7RC",
-      "balance": 424647,
+      "balance": 568333,
       "membership_expire_on": 1713831238,
-      "next_cert_issuable_on": 1691554771,
+      "next_cert_issuable_on": 1693817010,
       "certs_received": {
         "Intercanvi": 1740465247,
         "ManelG": 1719088861,
@@ -42131,6 +42944,7 @@
         "Luallum": 1725694350,
         "Mariaje": 1728788818,
         "Rodrigo": 1718349203,
+        "Berenice78": 1759208988,
         "Toki": 1725837209,
         "Laurel": 1747356415,
         "JuanCarlos": 1743221057
@@ -42157,8 +42971,8 @@
     "ingrid": {
       "index": 3873,
       "owner_key": "5D3NBDVWs4GkaH6PB9YCDttcQPPX3DvMYXG2cAEdc7FJ",
-      "balance": 195685,
-      "membership_expire_on": 1696586966,
+      "balance": 233215,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1667706948,
       "certs_received": {
         "nashira": 1728149896,
@@ -42180,9 +42994,9 @@
     "Sophie_Jiyu": {
       "index": 1319,
       "owner_key": "5DUtKnEit3n9opxjn6MTHHtvG9JhNdb6paK8xLR261iP",
-      "balance": 1402130,
+      "balance": 1441816,
       "membership_expire_on": 1719077353,
-      "next_cert_issuable_on": 1690845892,
+      "next_cert_issuable_on": 1696641804,
       "certs_received": {
         "Pacha": 1754430159,
         "gerardchavanon": 1741120939,
@@ -42218,7 +43032,7 @@
     "Speedy86": {
       "index": 12883,
       "owner_key": "5DbkcbAZ8fuixh2sWZR6G9o2hTJFRxwUJAFM7tNSVt4J",
-      "balance": 233816,
+      "balance": 273502,
       "membership_expire_on": 1718033210,
       "next_cert_issuable_on": 1692674179,
       "certs_received": {
@@ -42226,14 +43040,15 @@
         "Nelly86": 1749592379,
         "Totoro": 1749664029,
         "Eric-Frodon86": 1749592163,
-        "Eleonore": 1749610126
+        "Eleonore": 1749610126,
+        "Bikoucel86": 1759031412
       }
     },
     "Emilia0784": {
       "index": 9545,
       "owner_key": "5DbmkzAmPM8aE5gGU2yC92bBTfr3V3TamZVZLVwE7fQr",
-      "balance": 371034,
-      "membership_expire_on": 1694370939,
+      "balance": 381714,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Julieb": 1726443454,
@@ -42247,9 +43062,9 @@
     "Mavag": {
       "index": 6702,
       "owner_key": "5DsamEAUUBWKbk8sWuWbjmsphFFZu3C5xb1mb421EHik",
-      "balance": 374341,
+      "balance": 414027,
       "membership_expire_on": 1701014655,
-      "next_cert_issuable_on": 1689004695,
+      "next_cert_issuable_on": 1695279257,
       "certs_received": {
         "LilianBonnardon": 1705466769,
         "Sabine38": 1724356786,
@@ -42258,6 +43073,7 @@
         "Elody": 1705469648,
         "LibertyFran": 1705537319,
         "Scipikari": 1752029088,
+        "Zenobie": 1758322186,
         "voironnaise": 1746597678,
         "Adelle": 1705463290,
         "JBM": 1705467542,
@@ -42275,12 +43091,13 @@
     "Rene13": {
       "index": 12935,
       "owner_key": "5E3HZ7KYdPqHGMAMhWi8AtuqjA1zKho355QGY8aFw3j2",
-      "balance": 443464,
+      "balance": 483150,
       "membership_expire_on": 1718661842,
       "next_cert_issuable_on": 1691223042,
       "certs_received": {
         "IldaraMaioralta": 1750349401,
         "LuisSarria": 1750328142,
+        "EscuelaTephira": 1757097117,
         "BeaSarria": 1750328662,
         "AmarPrakash": 1753921583,
         "Ailime": 1750352720,
@@ -42295,7 +43112,7 @@
     "Renaub": {
       "index": 8172,
       "owner_key": "5E9WYBRhMHh9uzZPocbPtRCYmdNTRtFEE48tV3kqPsNW",
-      "balance": 298926,
+      "balance": 210452,
       "membership_expire_on": 1710262416,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -42309,8 +43126,8 @@
     "LPTcathia": {
       "index": 6888,
       "owner_key": "5E9XSbf1SqQXUJ9oZzYNAGMiiBseC4XVHmdf86JNMfoK",
-      "balance": 381434,
-      "membership_expire_on": 0,
+      "balance": 420052,
+      "membership_expire_on": 1725203732,
       "next_cert_issuable_on": 1665804654,
       "certs_received": {
         "MAGSENS": 1707364197,
@@ -42326,9 +43143,9 @@
     "Nouchka1": {
       "index": 8743,
       "owner_key": "5EBvHGLvW9yTAHFMQiMJ9FWZoNNZeLJKkGomYopGBALV",
-      "balance": 474510,
+      "balance": 510196,
       "membership_expire_on": 1714415754,
-      "next_cert_issuable_on": 1691578862,
+      "next_cert_issuable_on": 1695600544,
       "certs_received": {
         "FraBro": 1719734517,
         "Etipol61": 1719730101,
@@ -42350,7 +43167,7 @@
     "timetale": {
       "index": 4077,
       "owner_key": "5ENCaG1C6LtsmZApDbWgoofiSgk73qLtG2KQwCsPU9ey",
-      "balance": 145766,
+      "balance": 78152,
       "membership_expire_on": 1716864217,
       "next_cert_issuable_on": 1685378617,
       "certs_received": {
@@ -42361,17 +43178,14 @@
         "ShivaG": 1721122125,
         "sheveck": 1727076961,
         "Irene": 1715210229,
-        "LI21": 1696578501,
         "NIUM": 1741226182,
         "davidbp845": 1718317721,
         "Gamaliel": 1728532556,
         "brufaganya": 1720564823,
-        "Wellno1": 1694406109,
         "tuttle": 1713944181,
         "tereseta": 1727740184,
         "Koldo": 1718838246,
         "Rio": 1735198013,
-        "SandraHeleno": 1695704536,
         "BeatrizGG": 1741649578
       }
     },
@@ -42386,9 +43200,9 @@
     "yvesfalck": {
       "index": 2036,
       "owner_key": "5EVTNhnBWvQ4TXP1mDvWqWyLTbfaNt2WCiAoG5ReRM5v",
-      "balance": 1205119,
+      "balance": 1191405,
       "membership_expire_on": 1701112946,
-      "next_cert_issuable_on": 1677144591,
+      "next_cert_issuable_on": 1694750911,
       "certs_received": {
         "EricPetit": 1728069970,
         "mimi": 1739855865,
@@ -42402,7 +43216,7 @@
     "jvinagre": {
       "index": 12691,
       "owner_key": "5EWb1mDiFfA1gQNpK2uSxVfmjqYknA4i4kwWPsaqRepE",
-      "balance": 127480,
+      "balance": 167166,
       "membership_expire_on": 1714356985,
       "next_cert_issuable_on": 1684571227,
       "certs_received": {
@@ -42438,7 +43252,7 @@
     "EliBenifato": {
       "index": 6873,
       "owner_key": "5EcX17YJjmh2AVPD2eaTX9nqvSpetrrAnXBRGuhRyDYz",
-      "balance": 349184,
+      "balance": 355570,
       "membership_expire_on": 1702343473,
       "next_cert_issuable_on": 1676267965,
       "certs_received": {
@@ -42455,8 +43269,8 @@
     "IgnacioZa": {
       "index": 10172,
       "owner_key": "5Ejmg8Jm5Hy9tR9LVFa4zrvUnuzxVSUjLRBNmSAU86o6",
-      "balance": 505521,
-      "membership_expire_on": 1698416862,
+      "balance": 561107,
+      "membership_expire_on": 1725626232,
       "next_cert_issuable_on": 1683701492,
       "certs_received": {
         "InmaRegina": 1730459062,
@@ -42486,7 +43300,7 @@
     "McBidouille": {
       "index": 3854,
       "owner_key": "5Emquc36CKhHmZ7ktC9K8cJTfXVjmk5vw7HPJ4QBwzAQ",
-      "balance": 938079,
+      "balance": 977765,
       "membership_expire_on": 1702741727,
       "next_cert_issuable_on": 1671260062,
       "certs_received": {
@@ -42502,9 +43316,9 @@
     "MyleneBN": {
       "index": 10208,
       "owner_key": "5EyotQPzbPrRKfN3X2HgJZnpPA1n4J2iF1vQ9RoaBBxp",
-      "balance": 326328,
-      "membership_expire_on": 1698764362,
-      "next_cert_issuable_on": 1690448527,
+      "balance": 295526,
+      "membership_expire_on": 1725641725,
+      "next_cert_issuable_on": 1695006641,
       "certs_received": {
         "SandrineP": 1730777247,
         "NickH": 1730790765,
@@ -42512,30 +43326,34 @@
         "veronaturo73": 1744924347,
         "CelineThiebaut": 1730615608,
         "Biba07": 1730753831,
-        "SKOSA": 1748242671
+        "SKOSA": 1748242671,
+        "Thiery": 1757601563,
+        "armunia": 1758141592
       }
     },
     "SOPHRO": {
       "index": 7337,
       "owner_key": "5Ez48ENvL9TJFCMVtSRap3UVALdSRAyf8ns5YMhsZRZb",
-      "balance": 77915,
+      "balance": 108701,
       "membership_expire_on": 1707005300,
       "next_cert_issuable_on": 1683115954,
       "certs_received": {
         "olione": 1710573508,
         "Olilove": 1710253270,
         "Marino": 1735161806,
+        "ChamAnne": 1756841810,
         "HeidiFARFALE": 1738574274,
         "March": 1710298110,
         "TribuRaph": 1707853199,
         "denizen": 1737036939,
-        "VeroD": 1707497008
+        "VeroD": 1707497008,
+        "Mireilleplantessauvages": 1758227482
       }
     },
     "Carol": {
       "index": 6934,
       "owner_key": "5EzevSRZP5q7fk79joxrYh5U1R5rLYJDwCQSVsvPAEdB",
-      "balance": 637884,
+      "balance": 677570,
       "membership_expire_on": 1708298503,
       "next_cert_issuable_on": 1662954485,
       "certs_received": {
@@ -42565,7 +43383,7 @@
     "roulaquiroule": {
       "index": 12758,
       "owner_key": "5FABcjTZXjBiC16jfRS6tzNNzZFHoPQbiW1roNtvPxum",
-      "balance": 66028,
+      "balance": 69714,
       "membership_expire_on": 1716825494,
       "next_cert_issuable_on": 1693221225,
       "certs_received": {
@@ -42584,7 +43402,7 @@
     "INTI": {
       "index": 4724,
       "owner_key": "5FAY5aypdnfFFpeAGHWXdxyzSMcxqSetmYWMUmHQSh9j",
-      "balance": 991712,
+      "balance": 1031398,
       "membership_expire_on": 1700656401,
       "next_cert_issuable_on": 1674489806,
       "certs_received": {
@@ -42607,7 +43425,7 @@
     "DuniaRamosMedina": {
       "index": 11249,
       "owner_key": "5FFimsoyErVvkJzxy7iznVLrG29Pv7dqJcyfXhPhSDcc",
-      "balance": 709132,
+      "balance": 848820,
       "membership_expire_on": 1705450658,
       "next_cert_issuable_on": 1682963403,
       "certs_received": {
@@ -42635,8 +43453,8 @@
     "Sansandetry": {
       "index": 9551,
       "owner_key": "5FSudyjVUbLc8pUVgkYXAW13TqcvmQq4AqrvCPBvfr5k",
-      "balance": 376234,
-      "membership_expire_on": 1694371917,
+      "balance": 386914,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681228764,
       "certs_received": {
         "Acd64": 1729438404,
@@ -42653,7 +43471,7 @@
     "YonasdePithiviers": {
       "index": 11081,
       "owner_key": "5FTQjapLBrdTmB3oLYVUEAmnXyQ9G1RFpytrdQNTyuRJ",
-      "balance": 235286,
+      "balance": 274972,
       "membership_expire_on": 1700136268,
       "next_cert_issuable_on": 1676003873,
       "certs_received": {
@@ -42668,7 +43486,7 @@
     "JGMETAL": {
       "index": 10262,
       "owner_key": "5FXZYJd88QRg4btkyMcvzU4DUNZVAikC7CH275dB1AwC",
-      "balance": 315931,
+      "balance": 355617,
       "membership_expire_on": 1698868757,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -42712,9 +43530,9 @@
     "Paradine": {
       "index": 10767,
       "owner_key": "5FbRpcoMTxviwWFgkSCYGbyZBGCJLwv42dYqSycyZVpB",
-      "balance": 282102,
+      "balance": 320788,
       "membership_expire_on": 1701725385,
-      "next_cert_issuable_on": 1679968222,
+      "next_cert_issuable_on": 1695514725,
       "certs_received": {
         "Paslake": 1733709362,
         "CedLion": 1733715873,
@@ -42755,7 +43573,7 @@
     "Trula": {
       "index": 10592,
       "owner_key": "5Fv2CHvvgtqavepNqusAxzzeHb4LvPJbgXm9abXccrg2",
-      "balance": 124592,
+      "balance": 164278,
       "membership_expire_on": 1701132278,
       "next_cert_issuable_on": 1680917525,
       "certs_received": {
@@ -42772,9 +43590,9 @@
     "djam": {
       "index": 5301,
       "owner_key": "5G3Yi5qddirLZqdiyNZDCchgjCt5s3nh21MsE12wa9Fa",
-      "balance": 423249,
+      "balance": 474935,
       "membership_expire_on": 1709224638,
-      "next_cert_issuable_on": 1684862645,
+      "next_cert_issuable_on": 1696566650,
       "certs_received": {
         "Elixcoeur": 1750176762,
         "Pamelahh": 1747263261,
@@ -42794,7 +43612,7 @@
     "OscArt": {
       "index": 11719,
       "owner_key": "5G7xaJsdqvcjkxXhZFKsbL3MpUdRF8v5iBm1iE4fnDim",
-      "balance": 235677,
+      "balance": 285363,
       "membership_expire_on": 1706478163,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -42809,9 +43627,9 @@
     "Emilie850": {
       "index": 6073,
       "owner_key": "5GAmLTWKBqhMFTrHfqSrfVBLE5s7v9B8MtDkM1tDELAi",
-      "balance": 649947,
+      "balance": 664133,
       "membership_expire_on": 1724024041,
-      "next_cert_issuable_on": 1692538694,
+      "next_cert_issuable_on": 1696307050,
       "certs_received": {
         "Fleurdevie": 1700176983,
         "hibiscus11": 1701823348,
@@ -42826,7 +43644,7 @@
         "Dodjay": 1742360202,
         "PascalGuillemain": 1755309033,
         "DanieleSenegasTrobadorenca": 1699997881,
-        "Fabricealexandre": 1699743292,
+        "Fabricealexandre": 1759003198,
         "Guilhom347": 1700616157
       }
     },
@@ -42848,7 +43666,7 @@
     "JessyC": {
       "index": 6235,
       "owner_key": "5GHY5yb8BaZeJgm8Zitu9PYLeqD336a1cvk8E8gWAFXo",
-      "balance": 161810,
+      "balance": 191496,
       "membership_expire_on": 1722809503,
       "next_cert_issuable_on": 1688828912,
       "certs_received": {
@@ -42877,12 +43695,14 @@
     "Chrisma1957": {
       "index": 10590,
       "owner_key": "5GHe7rpN93rBsB7hGAv5vTjVpfz1dvg5wfnUVpiuNoD",
-      "balance": 324510,
-      "membership_expire_on": 1701028005,
+      "balance": 404206,
+      "membership_expire_on": 1727733012,
       "next_cert_issuable_on": 1691153542,
       "certs_received": {
+        "Framboisefraise": 1759031732,
         "Schourey": 1732679416,
         "pastachutta1964": 1751665882,
+        "MarieMas": 1759207338,
         "BrigitteB": 1732585605,
         "Tavartalvert": 1742015532,
         "Juanyvas": 1739486141,
@@ -42893,6 +43713,7 @@
         "Philaloe": 1737066666,
         "B-4": 1732686059,
         "Petfa": 1732820850,
+        "Elodie2706": 1758646448,
         "gitti": 1741555789,
         "VaivaG": 1737225163,
         "Gclaire": 1740294148
@@ -42909,7 +43730,7 @@
     "NanieLCK": {
       "index": 9081,
       "owner_key": "5GTLs2LoWYhyeck9MmfC28WYmDQQJMDfTbWjiZb9vZr9",
-      "balance": 155908,
+      "balance": 195594,
       "membership_expire_on": 1716825134,
       "next_cert_issuable_on": 1691001651,
       "certs_received": {
@@ -42932,10 +43753,25 @@
         "brunobo": 1722531237
       }
     },
+    "chrisphot": {
+      "index": 13711,
+      "owner_key": "5GUMZ8bdZrVtxhCDpJ1TUMEzsFPfjhD4pU4ZkczDoAHU",
+      "balance": 38068,
+      "membership_expire_on": 1725365318,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "FenderChristophe": 1759335982,
+        "LaureHuber": 1756924142,
+        "lilarose": 1756968371,
+        "Als_67": 1757692641,
+        "seb2nor12": 1757680900,
+        "SylvieSpielmann": 1758690806
+      }
+    },
     "ThierryGillet": {
       "index": 3098,
       "owner_key": "5GasLqgv3FYYgt6rNAaiKQdhnLV7ivjMUc8mhwWsgQEi",
-      "balance": 1487482,
+      "balance": 1564898,
       "membership_expire_on": 1723891744,
       "next_cert_issuable_on": 1684143243,
       "certs_received": {
@@ -42950,7 +43786,7 @@
         "Matteo": 1724743102,
         "ghyom": 1703104462,
         "CelineLou": 1746689618,
-        "PascaleRoncoroni": 1701310067,
+        "PascaleRoncoroni": 1759599652,
         "ThibaudLibre": 1716270144,
         "art15te": 1718863151,
         "Albassierseverine": 1719698328,
@@ -42960,7 +43796,7 @@
     "ChantalSophro": {
       "index": 12768,
       "owner_key": "5Gb2ZdUa6x7NdDykNHEWype7L5bfW5tChPcsQp34N69N",
-      "balance": 100392,
+      "balance": 140078,
       "membership_expire_on": 1712178566,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -42975,7 +43811,7 @@
     "Hidraya": {
       "index": 4252,
       "owner_key": "5GcMrB5dgLuo3S4Yii3xn94xQVARvYgqRnx52PXtvNTb",
-      "balance": 762304,
+      "balance": 801990,
       "membership_expire_on": 1723923839,
       "next_cert_issuable_on": 1692438239,
       "certs_received": {
@@ -42991,7 +43827,7 @@
     "berlumi": {
       "index": 6941,
       "owner_key": "5Ggm4QMX6g6v7LDup71RnviUKt4YRwwFjQbN5w2M8HRU",
-      "balance": 598759,
+      "balance": 638445,
       "membership_expire_on": 1704895533,
       "next_cert_issuable_on": 1678182982,
       "certs_received": {
@@ -43030,7 +43866,7 @@
     "aurel": {
       "index": 10049,
       "owner_key": "5GtNCurt7PHuGTi1aznYNCYdekUhD6LJ5RnLeJ7won3R",
-      "balance": 316626,
+      "balance": 356312,
       "membership_expire_on": 1697592563,
       "next_cert_issuable_on": 1692147744,
       "certs_received": {
@@ -43044,16 +43880,32 @@
         "alex88": 1729654835
       }
     },
+    "Sarieluz": {
+      "index": 13557,
+      "owner_key": "5GzuLJRHqzjXwazyXQgrgSfrUrax4G5YTkCjMJfC3xL7",
+      "balance": 18451,
+      "membership_expire_on": 1726086706,
+      "next_cert_issuable_on": 1696009989,
+      "certs_received": {
+        "Manu_El": 1757648978,
+        "MaraVilla": 1757648717,
+        "Oarina": 1757647197,
+        "Nieves": 1757707466,
+        "MAIANA": 1757644758,
+        "Amaraya": 1757647197,
+        "Bianca": 1757641683
+      }
+    },
     "pascalpioline": {
       "index": 2962,
       "owner_key": "5H41fWGdt5ffouofRW9vZZgMpEQMWJtAiZpyGS3LkHug",
-      "balance": 1179581,
-      "membership_expire_on": 1695819187,
+      "balance": 1199863,
+      "membership_expire_on": 1727527121,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
         "EricPetit": 1753947839,
         "yvesfalck": 1697312009,
-        "mimi": 1697520055,
+        "mimi": 1759113957,
         "Laula": 1698265748,
         "MichelLeMer": 1731892467,
         "simonelion": 1696996931,
@@ -43062,7 +43914,7 @@
         "RIALLANDSANDRINE": 1710477898,
         "PascaleRoncoroni": 1705446325,
         "Alain-Plantes": 1698265477,
-        "aubrunjeanclaude": 1697315712,
+        "aubrunjeanclaude": 1759294909,
         "lilou50220": 1697075803,
         "FlorenceBoisjoly": 1701288386,
         "EdithSineux": 1697088449
@@ -43089,7 +43941,7 @@
     "Jeanmichel": {
       "index": 10264,
       "owner_key": "5HAcfuXUVTHdJ2zYxw6zvYX8d72trfT41RRWDoEh9bj2",
-      "balance": 231172,
+      "balance": 260858,
       "membership_expire_on": 1723339332,
       "next_cert_issuable_on": 1690465044,
       "certs_received": {
@@ -43097,6 +43949,7 @@
         "HelloSunshine": 1747813086,
         "Wiwi": 1730616731,
         "Philippe26": 1750538922,
+        "gege110560": 1759019173,
         "NGO": 1744869694,
         "CalineR2": 1730142132,
         "Coucoudidier": 1749220713,
@@ -43114,9 +43967,9 @@
     "Moineau": {
       "index": 2035,
       "owner_key": "5HF5mbnDPFzZNiComHcSQkRz5BxV3wySiZoyDAK6ppty",
-      "balance": 344316,
+      "balance": 357502,
       "membership_expire_on": 1721521776,
-      "next_cert_issuable_on": 1679749613,
+      "next_cert_issuable_on": 1696063323,
       "certs_received": {
         "hibiscus11": 1735530188,
         "Eli25": 1743747196,
@@ -43134,7 +43987,7 @@
     "Agnes71": {
       "index": 6940,
       "owner_key": "5HPCV725dtBKquxefu1t58SoLztw42hpeZ8ex6MtR28W",
-      "balance": 494759,
+      "balance": 534445,
       "membership_expire_on": 1701046333,
       "next_cert_issuable_on": 1662723067,
       "certs_received": {
@@ -43158,22 +44011,25 @@
     "Husam": {
       "index": 13234,
       "owner_key": "5HQgF5U4agayYU9eAtqxKGP7UezxYwmzoZPXTr2Wfo9k",
-      "balance": 31584,
+      "balance": 71281,
       "membership_expire_on": 1719006494,
-      "next_cert_issuable_on": 1693129321,
+      "next_cert_issuable_on": 1695301224,
       "certs_received": {
+        "Papou": 1757360670,
         "pastachutta1964": 1751447133,
         "DomMembre": 1751447429,
+        "Steph41": 1757790790,
         "ChloeS": 1750565296,
         "GeraldS": 1750564094,
-        "TheoVS": 1750564724
+        "TheoVS": 1750564724,
+        "AlexCl": 1757311688
       }
     },
     "adrien_berthel": {
       "index": 4426,
       "owner_key": "5HawtXiESG7TVjDM2nRozqYKPEt1CMS1kTsJ3NjMywRg",
-      "balance": 938030,
-      "membership_expire_on": 1694791321,
+      "balance": 954050,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670401284,
       "certs_received": {
         "Phil_Thouin": 1732102998,
@@ -43181,14 +44037,13 @@
         "Mammagamma": 1733293555,
         "Pivoine": 1733293812,
         "batata": 1729642652,
-        "Misslesfleurs": 1694329215,
         "PasMoi": 1731974915
       }
     },
     "bareabrothers": {
       "index": 11315,
       "owner_key": "5HhcmdJHfTfzYWNJRBhkz9hWgM2eHfmxANctB14cUTwn",
-      "balance": 140506,
+      "balance": 180092,
       "membership_expire_on": 1705631409,
       "next_cert_issuable_on": 1686902124,
       "certs_received": {
@@ -43205,10 +44060,27 @@
         "JuanraKalinga": 1736973319
       }
     },
+    "Paty": {
+      "index": 13739,
+      "owner_key": "5HmbDZ3XBdcLYWKivCpYxBcegPdfoAtfjoRjcjprgQpw",
+      "balance": 5334,
+      "membership_expire_on": 1727808770,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "EricH": 1759532668,
+        "Alfybe": 1759468580,
+        "CapuChoeur": 1759514826,
+        "Audeko": 1759432238,
+        "AmandineDupret": 1759524820,
+        "nathinfi": 1759772708,
+        "Ceciletricoteuse": 1759694815,
+        "Mimosa": 1759462243
+      }
+    },
     "JoshuaF": {
       "index": 12106,
       "owner_key": "5Hr5tgFyH6icoJ7fjtkr4Jvpr7Tr2Daa3VVNY8rUPLFj",
-      "balance": 170880,
+      "balance": 210566,
       "membership_expire_on": 1709649549,
       "next_cert_issuable_on": 1686660316,
       "certs_received": {
@@ -43225,7 +44097,7 @@
     "Adribirix": {
       "index": 9868,
       "owner_key": "5HuWxwNGqFGzicb2vWY3sESwcP4qGX37ph4n3urGCxny",
-      "balance": 180198,
+      "balance": 219884,
       "membership_expire_on": 1696863869,
       "next_cert_issuable_on": 1684548600,
       "certs_received": {
@@ -43249,7 +44121,7 @@
     "IsaAnandaMaya": {
       "index": 13323,
       "owner_key": "5JCGpF5Px3pbD8QEaEc7cs36JfjhmStv4iCXkZ2SzpDw",
-      "balance": 148200,
+      "balance": 117086,
       "membership_expire_on": 1722884060,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -43280,9 +44152,9 @@
     "Luluzlb": {
       "index": 9624,
       "owner_key": "5JKfNRFjzYQ6A71JmarGwAGpKxjP4mWetCMcTXZrAfWm",
-      "balance": 136988,
+      "balance": 210274,
       "membership_expire_on": 1722372296,
-      "next_cert_issuable_on": 1688745702,
+      "next_cert_issuable_on": 1695143053,
       "certs_received": {
         "Miriam3": 1743992921,
         "SalinJL": 1726805343,
@@ -43295,13 +44167,14 @@
         "LeonoreLOPEZ": 1738241745,
         "jjange": 1726887459,
         "Karinette": 1737417122,
+        "DidiX": 1759363331,
         "VeroPointeNoire": 1726886725
       }
     },
     "AlexisMarcotte": {
       "index": 5788,
       "owner_key": "5JW1YyY3QeuKdqsn1uoUYswfpsqK1yGWt1KFN1UMZvh7",
-      "balance": 16020,
+      "balance": 55706,
       "membership_expire_on": 1722181800,
       "next_cert_issuable_on": 1680856912,
       "certs_received": {
@@ -43309,12 +44182,8 @@
         "SvayamFred": 1753769825,
         "Alcidejet": 1753745257,
         "Kamilmilka": 1726529038,
-        "Stevia30120": 1696223992,
         "NinaB": 1726732612,
-        "KumaNinja": 1696444630,
-        "loup12": 1696541759,
-        "Harout": 1737062570,
-        "PhilippLarsen": 1696441606
+        "Harout": 1737062570
       }
     },
     "BarjolJC": {
@@ -43351,15 +44220,13 @@
       "balance": 346138,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Misspio": 1694838518
-      }
+      "certs_received": {}
     },
     "Icam": {
       "index": 9825,
       "owner_key": "5JneMpoASoN6EsRPcT33YC9cmAeLG8qmGmrgCBPebCoz",
-      "balance": 350778,
-      "membership_expire_on": 1696188226,
+      "balance": 383996,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Nell": 1727933448,
@@ -43380,7 +44247,7 @@
     "Bourgoispat": {
       "index": 8219,
       "owner_key": "5K8q5khxbv2akUhuzoTjfU4gcV1tPJdb5WfcPbeocD3k",
-      "balance": 454848,
+      "balance": 486534,
       "membership_expire_on": 1711548596,
       "next_cert_issuable_on": 1661337767,
       "certs_received": {
@@ -43391,11 +44258,26 @@
         "Miam71": 1716512587
       }
     },
+    "Didou13": {
+      "index": 13732,
+      "owner_key": "5K91HtahMj298UA2yomKVbQLUQYuoE6jNG64VWiYEyYP",
+      "balance": 15390,
+      "membership_expire_on": 1727441239,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Katou": 1758999404,
+        "Andrelie": 1759001238,
+        "Yvelineplantes": 1759002958,
+        "Michel1955": 1759018108,
+        "Bigoudi888": 1759002958,
+        "fredswing": 1759005027
+      }
+    },
     "Zab": {
       "index": 9746,
       "owner_key": "5KASJ2DWy1yKCQWuuGJ32mKu1cto2DNXnvppjgqXMDxM",
-      "balance": 350323,
-      "membership_expire_on": 1696025360,
+      "balance": 381385,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666443547,
       "certs_received": {
         "Rosalie": 1727677702,
@@ -43410,7 +44292,7 @@
     "JohnBjorn": {
       "index": 12107,
       "owner_key": "5KAndDj27oiWzRDeQuAvn5FPNkB76nXoEiQigTi9N3EP",
-      "balance": 186081,
+      "balance": 225767,
       "membership_expire_on": 1706881741,
       "next_cert_issuable_on": 1680858403,
       "certs_received": {
@@ -43425,7 +44307,7 @@
     "MicheleM": {
       "index": 4858,
       "owner_key": "5KBQZeSsB7jAAAcCPbruGXJLYDQCQtduGfaHPpdXxo2N",
-      "balance": 845869,
+      "balance": 869535,
       "membership_expire_on": 1712515328,
       "next_cert_issuable_on": 1658042279,
       "certs_received": {
@@ -43440,17 +44322,22 @@
     "Yana": {
       "index": 12933,
       "owner_key": "5KEcRANRzoqpRbkJr35wmcmEzXnZRoYJXLER6WKys4D7",
-      "balance": 82964,
+      "balance": 122650,
       "membership_expire_on": 1717204117,
-      "next_cert_issuable_on": 1693303959,
+      "next_cert_issuable_on": 1696395443,
       "certs_received": {
+        "Ferpires": 1758914793,
+        "Judit137": 1758354459,
         "otto": 1749872761,
         "RafaMalheiro": 1749889223,
         "Rafael": 1754116867,
         "HViegas": 1749687741,
+        "Rahhui": 1756406721,
+        "JorgeDraven": 1755748466,
         "JoaoLestro": 1750226975,
         "PenaBranca": 1753600934,
-        "ElisabeteMartins": 1749889223
+        "ElisabeteMartins": 1749889223,
+        "ManuelSoares": 1756355480
       }
     },
     "domdenantes": {
@@ -43460,7 +44347,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1645276201,
       "certs_received": {
-        "Anthonycormier": 1696742963,
         "Droudrou": 1696792699,
         "Raymondebaba": 1700698090,
         "Langlais115": 1717979126,
@@ -43470,7 +44356,7 @@
     "Giviero": {
       "index": 7914,
       "owner_key": "5KjiqSuetz57SWxcY12sz2ZHyZviWoZMn2XumFjvrrKz",
-      "balance": 517638,
+      "balance": 557324,
       "membership_expire_on": 1710187315,
       "next_cert_issuable_on": 1683157030,
       "certs_received": {
@@ -43492,7 +44378,7 @@
     "Andrepac": {
       "index": 10057,
       "owner_key": "5L2HqWueMXnAsxTryNtZ7txTtpBmB1bXJpbCkvgj2XnZ",
-      "balance": 566175,
+      "balance": 557361,
       "membership_expire_on": 1697575218,
       "next_cert_issuable_on": 1687609623,
       "certs_received": {
@@ -43501,6 +44387,7 @@
         "E84": 1729283754,
         "SylC185-2": 1729223270,
         "belledecadix": 1750633325,
+        "zenbio": 1756884355,
         "Micaela": 1729233829,
         "FredRueff": 1729297359
       }
@@ -43508,9 +44395,9 @@
     "M-France": {
       "index": 11359,
       "owner_key": "5L9hkzKuV9RkHohJNaLic4hhxGvyQppEqCymnKEfT1r8",
-      "balance": 340870,
+      "balance": 354556,
       "membership_expire_on": 1706043142,
-      "next_cert_issuable_on": 1692095871,
+      "next_cert_issuable_on": 1696422147,
       "certs_received": {
         "poissondanslo": 1737793602,
         "Violette32": 1750883508,
@@ -43525,7 +44412,7 @@
     "Carmela": {
       "index": 10669,
       "owner_key": "5LAgiHneY4cGZxjF8UefqQ4VZseKArrN74YLfyTFBcka",
-      "balance": 289397,
+      "balance": 329083,
       "membership_expire_on": 1701361900,
       "next_cert_issuable_on": 1676259203,
       "certs_received": {
@@ -43539,7 +44426,7 @@
     "Clarajuliette": {
       "index": 6481,
       "owner_key": "5LBmsaKo3CMmddpCBS5RdHpobkEDTiVU9a7gWehSpSrW",
-      "balance": 594717,
+      "balance": 634403,
       "membership_expire_on": 1701194503,
       "next_cert_issuable_on": 1669708903,
       "certs_received": {
@@ -43557,7 +44444,7 @@
     "Latisaniere": {
       "index": 6099,
       "owner_key": "5LESM8puVpozqZPU5yzLduvq9ZnkojNBVAoVYYDg8E49",
-      "balance": 785618,
+      "balance": 825304,
       "membership_expire_on": 1723664524,
       "next_cert_issuable_on": 1683802814,
       "certs_received": {
@@ -43586,9 +44473,9 @@
     "Sofiachante": {
       "index": 5428,
       "owner_key": "5LJfCQ7eF4taQGoTGzNRZKKvMDXztitAn4xgVY7LA5Rc",
-      "balance": 1486517,
-      "membership_expire_on": 1698927738,
-      "next_cert_issuable_on": 1693273326,
+      "balance": 1472103,
+      "membership_expire_on": 1725554248,
+      "next_cert_issuable_on": 1696228567,
       "certs_received": {
         "SandrineMala": 1713940875,
         "MarineDR": 1712442468,
@@ -43597,7 +44484,7 @@
         "SabineD": 1696919880,
         "Jethro": 1699471248,
         "HelloSunshine": 1756383305,
-        "MacBoi": 1696212298,
+        "MacBoi": 1757205237,
         "Paciencia19": 1712703377,
         "YvelineMNC": 1705272194,
         "Delfe": 1710354893,
@@ -43619,7 +44506,6 @@
         "Marcolariegeois": 1714161136,
         "Melusine": 1710443430,
         "Sureau": 1708660357,
-        "JeDanse": 1696212298,
         "denizen": 1721178998,
         "raquelmciancio": 1720515302,
         "AnneH0512": 1707601661,
@@ -43627,9 +44513,9 @@
         "Babouche00": 1733870386,
         "ClaraFeutrier": 1736705579,
         "Libreensoi": 1731489434,
-        "Llorens": 1699476223,
+        "Llorens": 1758650519,
         "Lilou05": 1733868855,
-        "ChoraMadera": 1696212298,
+        "ChoraMadera": 1757203913,
         "CeriseCunegonde": 1719648117,
         "harperdoc": 1704166384,
         "Soanne29": 1706835761,
@@ -43642,7 +44528,7 @@
     "Crouzigues": {
       "index": 12013,
       "owner_key": "5LUbj8UuqibPqjnn5bwHXWwG7FJbcgN7psGaWbdaSjLP",
-      "balance": 223015,
+      "balance": 262701,
       "membership_expire_on": 1709066427,
       "next_cert_issuable_on": 1684162587,
       "certs_received": {
@@ -43668,16 +44554,13 @@
       "balance": 1184907,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1655170273,
-      "certs_received": {
-        "Aude49": 1694346407,
-        "PatrickGilles": 1696095547
-      }
+      "certs_received": {}
     },
     "Ninagust": {
       "index": 10383,
       "owner_key": "5LomjxnsDHBj3TzgK6wujBbfxm6gam73u32YDviVtcBG",
-      "balance": 316195,
-      "membership_expire_on": 1695582775,
+      "balance": 341867,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Celiane": 1730997089,
@@ -43695,9 +44578,9 @@
     "GuyPeq11": {
       "index": 4685,
       "owner_key": "5LpMnvvzv7Kbq4yT6RXGSU7R9EK2TttJ6pazYmqXRJVL",
-      "balance": 1297456,
+      "balance": 960559,
       "membership_expire_on": 1699295700,
-      "next_cert_issuable_on": 1686035195,
+      "next_cert_issuable_on": 1696239943,
       "certs_received": {
         "hibiscus11": 1741282450,
         "nashira": 1743284971,
@@ -43725,7 +44608,7 @@
     "HeleneAnsay": {
       "index": 9195,
       "owner_key": "5Lwr4vicPXre3JqWQopAdHJKn3PfESPMXScZaGimpbj2",
-      "balance": 435468,
+      "balance": 475154,
       "membership_expire_on": 1716758030,
       "next_cert_issuable_on": 1678267105,
       "certs_received": {
@@ -43743,14 +44626,14 @@
     "Lurtxu": {
       "index": 5874,
       "owner_key": "5LyjJPeo3jipwMNZHyJHtGHhoa3ewCUkeFFZzM1NCbfk",
-      "balance": 175842,
+      "balance": 160138,
       "membership_expire_on": 1722358197,
       "next_cert_issuable_on": 1688214817,
       "certs_received": {
         "Eiutim": 1724270891,
         "Eleonor": 1736833287,
         "Cordeliaze": 1697759304,
-        "arbocenc": 1697766762,
+        "arbocenc": 1756394801,
         "Senda": 1736130056,
         "SanTuCa-REMyL": 1729661135,
         "carmela": 1697664715,
@@ -43834,9 +44717,9 @@
     "Chabe13": {
       "index": 9817,
       "owner_key": "5M6ZfFYt4vQagZVfbNCizEPRRqf8cJqJsEWpWG9pZ118",
-      "balance": 211858,
+      "balance": 229044,
       "membership_expire_on": 1722881375,
-      "next_cert_issuable_on": 1692257634,
+      "next_cert_issuable_on": 1696229709,
       "certs_received": {
         "FabiH": 1750050079,
         "Domij": 1728001798,
@@ -43866,7 +44749,7 @@
     "LUNATERRE": {
       "index": 13424,
       "owner_key": "5M6jsmHyX8UfKdrh526qR64KKntBZjZ7WmpQg8reb4V9",
-      "balance": 8544,
+      "balance": 48230,
       "membership_expire_on": 1724281680,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -43914,7 +44797,7 @@
     "Sonrie": {
       "index": 12537,
       "owner_key": "5MUvAsw3bkdYLkerCmcYuuWjHTmxQCkdQJ4XLLecrcCu",
-      "balance": 51881,
+      "balance": 91567,
       "membership_expire_on": 1714416132,
       "next_cert_issuable_on": 1690784679,
       "certs_received": {
@@ -43964,7 +44847,7 @@
     "boya988": {
       "index": 140,
       "owner_key": "5MZNu6NoLUetTcEq5kMy5ByYUUu7YcV2AFKnHDLfCM8M",
-      "balance": 2296681,
+      "balance": 2336367,
       "membership_expire_on": 1703293427,
       "next_cert_issuable_on": 1672150970,
       "certs_received": {
@@ -43978,7 +44861,7 @@
     "SoniaValencia": {
       "index": 9823,
       "owner_key": "5Mf8yQMkz8BksYRApcTQMark4gn3N1k9H1Z1rKbxAr9p",
-      "balance": 114825,
+      "balance": 154511,
       "membership_expire_on": 1722895006,
       "next_cert_issuable_on": 1684746759,
       "certs_received": {
@@ -44000,7 +44883,7 @@
     "natascha": {
       "index": 7412,
       "owner_key": "5MgnA1JYNeQXRz95oLSpq7fdZ8Y6ZxH5MBcfTRR5uzb1",
-      "balance": 626709,
+      "balance": 616395,
       "membership_expire_on": 1702162047,
       "next_cert_issuable_on": 1683015827,
       "certs_received": {
@@ -44022,7 +44905,7 @@
     "LuciaKorosiova": {
       "index": 4095,
       "owner_key": "5Mtx65oQFXiXEgxAayUi5orvsyXj3Nm81N1ckQKeTy8F",
-      "balance": 1088985,
+      "balance": 1128671,
       "membership_expire_on": 1698717524,
       "next_cert_issuable_on": 1667414551,
       "certs_received": {
@@ -44033,7 +44916,6 @@
         "MichelLeMer": 1726384405,
         "JeandMeryMAYOPARRA": 1697153979,
         "EmileMACRAIGNE": 1697154672,
-        "PatrickGilles": 1696095547,
         "Moussa": 1746311650,
         "SteveMacraigne": 1697156010
       }
@@ -44057,7 +44939,7 @@
     "Premila": {
       "index": 11121,
       "owner_key": "5MvSRmdLAzAVJAu1BJgzuJVpvpV5dNsnApWTgafGgknp",
-      "balance": 334709,
+      "balance": 305395,
       "membership_expire_on": 1703097782,
       "next_cert_issuable_on": 1674983873,
       "certs_received": {
@@ -44072,7 +44954,7 @@
     "GRhum": {
       "index": 12698,
       "owner_key": "5MvvmmXtLESYdRMzgFh3zQpDUKWeBa1i8bgDNc5fmXBd",
-      "balance": 135972,
+      "balance": 175658,
       "membership_expire_on": 1714320330,
       "next_cert_issuable_on": 1686089981,
       "certs_received": {
@@ -44103,7 +44985,7 @@
     "Bertram154": {
       "index": 11745,
       "owner_key": "5NKdwNvjhYpQUdVtu8ovL1toqs5sask4DUsa8yV28CXH",
-      "balance": 216618,
+      "balance": 256304,
       "membership_expire_on": 1708728276,
       "next_cert_issuable_on": 1679493470,
       "certs_received": {
@@ -44150,12 +45032,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "fatimaespoir": 1698945974,
-        "Galuel": 1695409117,
-        "mathieuBize": 1696614639,
-        "StephaneLONGUET": 1696544484,
-        "Nadou": 1696389705,
-        "HyperBrut": 1695959440
+        "fatimaespoir": 1698945974
       }
     },
     "Mtdm": {
@@ -44197,7 +45074,7 @@
     "SashaD": {
       "index": 10547,
       "owner_key": "5NYpACiMScF6JCtvDLD3orKmCK2LZwLyfee5U56GCLdZ",
-      "balance": 293428,
+      "balance": 333114,
       "membership_expire_on": 1701109655,
       "next_cert_issuable_on": 1676806501,
       "certs_received": {
@@ -44213,7 +45090,7 @@
     "Mathiasrapl": {
       "index": 11898,
       "owner_key": "5NYvSsEY4UVtavmTdAMx9Xdv6D3FbriGxoGuVorHmZit",
-      "balance": 175910,
+      "balance": 215596,
       "membership_expire_on": 1707090201,
       "next_cert_issuable_on": 1685794432,
       "certs_received": {
@@ -44242,11 +45119,12 @@
     "valeria": {
       "index": 13080,
       "owner_key": "5NhF4EoWWgQQQMxtawWFUMdhLNmahchNTwSTA64pWV9P",
-      "balance": 124802,
+      "balance": 39106,
       "membership_expire_on": 1720099406,
-      "next_cert_issuable_on": 1692280585,
+      "next_cert_issuable_on": 1695892139,
       "certs_received": {
         "RuthGuerrero": 1756258157,
+        "Ainat255": 1759784921,
         "Alfonso": 1754257819,
         "Montsin": 1754518264,
         "PerePinyolTortosa": 1751660596,
@@ -44259,6 +45137,7 @@
         "Ardan1977": 1753258948,
         "SueLeyva": 1753213010,
         "Galadriel": 1752039510,
+        "albalibre": 1758153149,
         "Sylvain": 1753244212,
         "YaYiSu": 1751660334,
         "Pilarpm": 1752368986
@@ -44267,7 +45146,7 @@
     "Oroenpano": {
       "index": 11946,
       "owner_key": "5Nhmg7LGUnU4Ey1Ziwt1oZhUWZPd5ki5JFsrcN6MbrQZ",
-      "balance": 188174,
+      "balance": 211860,
       "membership_expire_on": 1710111310,
       "next_cert_issuable_on": 1687000010,
       "certs_received": {
@@ -44282,7 +45161,7 @@
     "NatGordon": {
       "index": 1684,
       "owner_key": "5NjXeQ9DbH7K4HDksy5bz5fzZNJHt842hkQ9QmemPiRS",
-      "balance": 722691,
+      "balance": 762377,
       "membership_expire_on": 1701795205,
       "next_cert_issuable_on": 1675072834,
       "certs_received": {
@@ -44311,9 +45190,9 @@
     "Yanoudesiles": {
       "index": 12735,
       "owner_key": "5NpubeQAGbY5BxvrsnipdG3AJdG8VDRhkb3MGUdCR2R6",
-      "balance": 111632,
+      "balance": 156618,
       "membership_expire_on": 1715557420,
-      "next_cert_issuable_on": 1688491212,
+      "next_cert_issuable_on": 1693377819,
       "certs_received": {
         "Nadou971": 1748053949,
         "Latie": 1748037798,
@@ -44325,8 +45204,8 @@
     "GaryGrandin": {
       "index": 4134,
       "owner_key": "5NqEwdLyCbEsLdj2o8M6SpvhDD9dfXweci4swgs22o1a",
-      "balance": 1167646,
-      "membership_expire_on": 1693947198,
+      "balance": 1197720,
+      "membership_expire_on": 1726263192,
       "next_cert_issuable_on": 1681352185,
       "certs_received": {
         "StephanieN": 1742178406,
@@ -44348,9 +45227,9 @@
     "MaiteTudela": {
       "index": 9763,
       "owner_key": "5NrHfTodrFBMib1iXowS2EpfuuZfmLGFJxNvnfAeUqmq",
-      "balance": 942049,
+      "balance": 901735,
       "membership_expire_on": 1724894574,
-      "next_cert_issuable_on": 1683886661,
+      "next_cert_issuable_on": 1694568406,
       "certs_received": {
         "SanTuCa-REMyL": 1727936404,
         "carmenchu_almacristal": 1738038820,
@@ -44374,8 +45253,8 @@
     "HRDESIGNPROD": {
       "index": 4794,
       "owner_key": "5NtzTWdHjRGvYEHW4nL5BFQhewBQfjfsxY3bDQGvG7bQ",
-      "balance": 865925,
-      "membership_expire_on": 1694795433,
+      "balance": 895959,
+      "membership_expire_on": 1727128842,
       "next_cert_issuable_on": 1679132200,
       "certs_received": {
         "b_presles": 1744120988,
@@ -44437,7 +45316,7 @@
     "ElodieV": {
       "index": 10967,
       "owner_key": "5P59WSFNsd12nyKmCriqE83r4nYcNC21NhHsbancv9gu",
-      "balance": 268335,
+      "balance": 308021,
       "membership_expire_on": 1703161237,
       "next_cert_issuable_on": 1684993965,
       "certs_received": {
@@ -44453,7 +45332,7 @@
     "Ludolol13200": {
       "index": 3075,
       "owner_key": "5P9HB1uBdE3ZqThSatBdBbjVmh3psa1BhsCRBumn1aMo",
-      "balance": 1231968,
+      "balance": 1271654,
       "membership_expire_on": 1698173301,
       "next_cert_issuable_on": 1687682284,
       "certs_received": {
@@ -44461,7 +45340,7 @@
         "ForrestVaillant": 1702064376,
         "NathalieEtreSouverain": 1719354035,
         "adelinecaz": 1700206261,
-        "MoulinMuriel": 1698208072,
+        "MoulinMuriel": 1757752043,
         "ChristopheRobine": 1702412127,
         "oliviercaz": 1700203141,
         "LenaB": 1699764440,
@@ -44475,9 +45354,7 @@
       "balance": 1627846,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1634145392,
-      "certs_received": {
-        "CharlesAbecassis": 1696722936
-      }
+      "certs_received": {}
     },
     "Miguelilpoeta": {
       "index": 5359,
@@ -44499,7 +45376,7 @@
     "Fanny": {
       "index": 7507,
       "owner_key": "5PLtXSJbDstW2KShnqjtPgFXVWdUyWjuGswo1nRsKdZg",
-      "balance": 513518,
+      "balance": 553204,
       "membership_expire_on": 1715209101,
       "next_cert_issuable_on": 1674739014,
       "certs_received": {
@@ -44543,30 +45420,27 @@
     "Delfe": {
       "index": 5625,
       "owner_key": "5PbP8CJWpu5w8V6XhWMhiDHtJsapDVqgUvPQd2ZoZWVg",
-      "balance": 135479,
+      "balance": 143165,
       "membership_expire_on": 1719234470,
       "next_cert_issuable_on": 1692969858,
       "certs_received": {
+        "sarahmagicienne": 1756933014,
         "Luciole": 1721190087,
         "Altheaagathe": 1727047382,
-        "Tchois": 1694068101,
         "Sofiachante": 1710381810,
         "OstaraChristophe": 1733456434,
-        "FaridaB": 1693628174,
         "LilianeLilou": 1743023736,
         "gaellemarcherat": 1699254609,
-        "pfouque": 1693625446,
+        "pfouque": 1757481832,
         "Cathylousouc": 1743133465,
         "Tontonmika": 1755553230,
+        "Mamarion": 1757005266,
         "OtreB": 1745169471,
         "Maiana": 1730757724,
         "KarineKala": 1710383142,
         "MissChaChaCha": 1711380008,
         "Tanagra": 1708029607,
-        "ClaireSMV": 1693689861,
-        "S-H": 1695227170,
-        "Ethersource83": 1697254434,
-        "lily06": 1693558742,
+        "Ethersource83": 1758251365,
         "Edith2213": 1728589582
       }
     },
@@ -44581,7 +45455,7 @@
     "Vivianedv": {
       "index": 11568,
       "owner_key": "5PjafYPe5wo25BWiqBDzgDsBS6BtU9CL2rdaQDC6KJ67",
-      "balance": 248926,
+      "balance": 314612,
       "membership_expire_on": 1707694181,
       "next_cert_issuable_on": 1684524537,
       "certs_received": {
@@ -44596,8 +45470,8 @@
     "LoicM": {
       "index": 10096,
       "owner_key": "5Pmh2MVvCqagiacjZsKeyehwMd8SdiAgHqX5uXdhWoFd",
-      "balance": 317049,
-      "membership_expire_on": 1698443787,
+      "balance": 356735,
+      "membership_expire_on": 1727017818,
       "next_cert_issuable_on": 1686120021,
       "certs_received": {
         "Maryc": 1730001387,
@@ -44613,9 +45487,9 @@
     "veronaturo73": {
       "index": 5258,
       "owner_key": "5Pmi73gUF6NXH8GT5TbsEg6nVdrgrncLb9VpME3JXNRX",
-      "balance": 725270,
+      "balance": 764956,
       "membership_expire_on": 1712367868,
-      "next_cert_issuable_on": 1684850198,
+      "next_cert_issuable_on": 1692894966,
       "certs_received": {
         "puce": 1717204192,
         "Flocon": 1709151592,
@@ -44638,7 +45512,7 @@
     "rosajean": {
       "index": 6950,
       "owner_key": "5PpjPoZugCqSPtKGkkLNqJDMPv8CLYRgQeNKvDCdxtqR",
-      "balance": 593481,
+      "balance": 633167,
       "membership_expire_on": 1704242234,
       "next_cert_issuable_on": 1648179004,
       "certs_received": {
@@ -44676,9 +45550,9 @@
     "Evelyne87": {
       "index": 10650,
       "owner_key": "5QKaryS2jZjza47DwTvDWJ37hHiygHfJbJvKysJLPr1U",
-      "balance": 285956,
-      "membership_expire_on": 1697075415,
-      "next_cert_issuable_on": 1680089578,
+      "balance": 325642,
+      "membership_expire_on": 1727949214,
+      "next_cert_issuable_on": 1696463915,
       "certs_received": {
         "LionLDouNIo": 1732770090,
         "DimitriTuffreau": 1732651539,
@@ -44700,7 +45574,7 @@
     "Stepharabi": {
       "index": 8035,
       "owner_key": "5QVgXxnLtuYi1FwGFtgzWm4piaugBDa5RqbjQ8DR6d42",
-      "balance": 601430,
+      "balance": 834171,
       "membership_expire_on": 1714431457,
       "next_cert_issuable_on": 1689954149,
       "certs_received": {
@@ -44726,7 +45600,7 @@
     "DelphineL": {
       "index": 3184,
       "owner_key": "5QaTCpJTvnXRD7MhMcYpUjVu2wYzxHPkjdtAhEriHM9Y",
-      "balance": 931726,
+      "balance": 971412,
       "membership_expire_on": 1706565602,
       "next_cert_issuable_on": 1651635982,
       "certs_received": {
@@ -44742,39 +45616,50 @@
     "OlDog": {
       "index": 691,
       "owner_key": "5QeRxNgEQx987TumrukAoFXNL672DbJVdmpLKJYWrUgi",
-      "balance": 549544,
+      "balance": 589230,
       "membership_expire_on": 1721749527,
       "next_cert_issuable_on": 1693455657,
       "certs_received": {
         "EricPetit": 1721958845,
-        "TomAs": 1694556605,
         "Lascapi": 1711395195,
-        "ThomasDesaunay": 1696554990,
         "batata": 1729644454,
         "Nikos": 1754592610,
         "Espritangel": 1729727305,
         "laurhaq": 1703112187,
         "gpsqueeek": 1709514699,
+        "Faquantharmonie": 1758431369,
         "FilouLibre59": 1732871656,
-        "PascaleRoncoroni": 1700346826,
+        "PascaleRoncoroni": 1756877082,
         "aubrunjeanclaude": 1697315890
       }
     },
+    "AurelieJurisse": {
+      "index": 13596,
+      "owner_key": "5QiNAzXWrznpHcUp34tkWfvXg5jnuYZqDGpJ7YJbkH5W",
+      "balance": 19912,
+      "membership_expire_on": 1726425298,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "GybelsJosee": 1758129310,
+        "MaryBricteux": 1758010749,
+        "LarissaLora": 1758167948,
+        "Masillonpatricia": 1758164265,
+        "Matedi23": 1758169842
+      }
+    },
     "Stevia30120": {
       "index": 2823,
       "owner_key": "5QnMzVrWzgJmZDPxMMyRU4DchnhjNyr6jUbGGorQYTug",
-      "balance": 943318,
-      "membership_expire_on": 1697844353,
+      "balance": 983004,
+      "membership_expire_on": 1725060096,
       "next_cert_issuable_on": 1687947839,
       "certs_received": {
         "absalon2": 1704393362,
-        "JMF": 1695519977,
         "Sev": 1707088704,
         "Kamilmilka": 1726529038,
         "Jaya": 1752133194,
         "MarieCamus": 1740094862,
         "Mystere": 1734929820,
-        "Summerinfinity": 1693968977,
         "Thomas": 1749227087,
         "Librerk": 1719682868,
         "chronophonix": 1751101181
@@ -44783,17 +45668,20 @@
     "artenomar": {
       "index": 13447,
       "owner_key": "5Qp83NJNjeUsgjk19fgWUW26TAAbXGQKZGCNoXzohwzP",
-      "balance": 16740,
+      "balance": 48426,
       "membership_expire_on": 1724554354,
-      "next_cert_issuable_on": 1693316985,
+      "next_cert_issuable_on": 1694703950,
       "certs_received": {
         "Ferpires": 1756181583,
         "devihope": 1756179241,
+        "Judit137": 1757225901,
+        "anapatapouf": 1756634470,
         "PatriciaDoVale": 1756228987,
         "Perrinha": 1756171057,
         "lurdespinho": 1756186968,
         "DivinaC": 1756172728,
-        "pedroponte": 1756238824
+        "pedroponte": 1756238824,
+        "ManuelSoares": 1757203000
       }
     },
     "Freemel": {
@@ -44825,7 +45713,7 @@
     "Volatiana": {
       "index": 7458,
       "owner_key": "5REk7LiR5VVdW294PyvoHEXc6Us8tNpc4iDqieSMqFxP",
-      "balance": 337455,
+      "balance": 377141,
       "membership_expire_on": 1709532702,
       "next_cert_issuable_on": 1680964842,
       "certs_received": {
@@ -44874,8 +45762,8 @@
     "Rita74": {
       "index": 9788,
       "owner_key": "5RHLApHj4R1YdwCThaYX3Yd4sxCmoSEYWG9xNUkA3GH7",
-      "balance": 404996,
-      "membership_expire_on": 1696424962,
+      "balance": 444682,
+      "membership_expire_on": 1728050198,
       "next_cert_issuable_on": 1675857527,
       "certs_received": {
         "Paciencia19": 1728018784,
@@ -44906,7 +45794,7 @@
     "francoiserigo1325": {
       "index": 11143,
       "owner_key": "5RKFSRJs7d5NwGftTBYEab9CNJGWvoi6vnnRzbSeCRQU",
-      "balance": 251391,
+      "balance": 291077,
       "membership_expire_on": 1702564389,
       "next_cert_issuable_on": 1683520845,
       "certs_received": {
@@ -44952,7 +45840,7 @@
     "GypsiCla": {
       "index": 8533,
       "owner_key": "5RSZEzpzWmG7hhMPcjVDFxHG2RDA2qxXbbUnDsBttag1",
-      "balance": 464975,
+      "balance": 504661,
       "membership_expire_on": 1713481951,
       "next_cert_issuable_on": 1685452537,
       "certs_received": {
@@ -44966,7 +45854,7 @@
     "Elfedelumiere": {
       "index": 5286,
       "owner_key": "5RVkvpVekTE3mdAzeuEmBJK45rytzs1hxGT9gPdiphEy",
-      "balance": 648326,
+      "balance": 688012,
       "membership_expire_on": 1718121453,
       "next_cert_issuable_on": 1687249901,
       "certs_received": {
@@ -44975,16 +45863,15 @@
         "scanlegentil": 1750181631,
         "phuzen69": 1747065969,
         "CovaDidier": 1722200302,
-        "Peps": 1750895999,
-        "fredswing": 1695540710
+        "Peps": 1750895999
       }
     },
     "Audette": {
       "index": 9834,
       "owner_key": "5RW6fesFoVuEqQkduppuYsCg8JupdMNRQHQCpdZ8QGnq",
-      "balance": 281319,
+      "balance": 362905,
       "membership_expire_on": 1723316400,
-      "next_cert_issuable_on": 1689241177,
+      "next_cert_issuable_on": 1696290342,
       "certs_received": {
         "sat": 1728021900,
         "Amg": 1743649939,
@@ -45008,7 +45895,7 @@
     "TomGllrd": {
       "index": 9884,
       "owner_key": "5RfepxVJk1o7jJmJkqjudjsDAAVjy9kY4SLDjxpQBKSP",
-      "balance": 195583,
+      "balance": 235269,
       "membership_expire_on": 1723661875,
       "next_cert_issuable_on": 1693130967,
       "certs_received": {
@@ -45025,17 +45912,12 @@
     "Louis": {
       "index": 1244,
       "owner_key": "5Rgy9Y6jfiiNdH4sejrr1eU1i8GyrDnQR9Rq4gykSqbH",
-      "balance": 2208609,
-      "membership_expire_on": 1693828791,
+      "balance": 2212881,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1656820613,
       "certs_received": {
-        "cathyCH": 1695755408,
         "LaurePollantru": 1718695887,
-        "merenoel": 1695599242,
-        "Bleuisere": 1695756163,
         "SylvaineAlnot": 1716501342,
-        "BRIDGET": 1695835271,
-        "Linette": 1695972054,
         "Lilas38160": 1704601470
       }
     },
@@ -45050,7 +45932,7 @@
     "MaribelSierraMesa": {
       "index": 11494,
       "owner_key": "5RiXj536XtwoZ115mvciwRBwmaoqo6pd7rHKf7SMFSrN",
-      "balance": 174480,
+      "balance": 214166,
       "membership_expire_on": 1706910407,
       "next_cert_issuable_on": 1678158932,
       "certs_received": {
@@ -45067,13 +45949,13 @@
       "owner_key": "5RmyMqe6TzDBrXKqgb3yGoHUMCHZ5R5tf1qD9Gh9Kqus",
       "balance": 780750,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632491457,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "Giom": {
       "index": 13352,
       "owner_key": "5RnyZWpZtC9djZUUeh8QDC3toToh9uBBxxzz5DVcM83T",
-      "balance": 22428,
+      "balance": 62114,
       "membership_expire_on": 1718046407,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -45089,9 +45971,9 @@
     "Estherflamenki": {
       "index": 13032,
       "owner_key": "5RrheQ3meT3Vf45ST3Xkq9AveJh2pLu2yVrZjD2Rkerk",
-      "balance": 69498,
+      "balance": 86284,
       "membership_expire_on": 1719526266,
-      "next_cert_issuable_on": 1692869381,
+      "next_cert_issuable_on": 1694500259,
       "certs_received": {
         "carmela": 1752015522,
         "Noelia": 1751400240,
@@ -45106,12 +45988,14 @@
     "LeaSLV": {
       "index": 8456,
       "owner_key": "5Ru9AnNxJtnLBKSJuoze215NecW3yDhqBKSFUu2UrHkJ",
-      "balance": 299660,
+      "balance": 351346,
       "membership_expire_on": 1713706551,
       "next_cert_issuable_on": 1666798587,
       "certs_received": {
         "Tchois": 1718164841,
         "EricL": 1717971593,
+        "Chiara07": 1756923514,
+        "Tontonmika": 1756867017,
         "Tchara06": 1720841428,
         "tomval83": 1718057460,
         "ClaireSMV": 1718164841,
@@ -45121,7 +46005,7 @@
     "Kanel972": {
       "index": 12600,
       "owner_key": "5Rus1op2CgBWpyaVcAtoEqQWagXtXwS6xJF2koA3LL3v",
-      "balance": 121752,
+      "balance": 161438,
       "membership_expire_on": 1714693432,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -45136,7 +46020,7 @@
     "Marianoconcentrado": {
       "index": 9383,
       "owner_key": "5S23361vxvfF36m6nrLWGNi9N3c1PNbt8ewQuR8QTPeE",
-      "balance": 177586,
+      "balance": 217272,
       "membership_expire_on": 1718225590,
       "next_cert_issuable_on": 1686739990,
       "certs_received": {
@@ -45156,10 +46040,24 @@
         "bert": 1730351115
       }
     },
+    "eclosion": {
+      "index": 13728,
+      "owner_key": "5S4Xhs7hjwCPJTdKoLtc2GHKzaMXG6zTNbCs21GaANC4",
+      "balance": 5390,
+      "membership_expire_on": 1726519182,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Padi": 1759261931,
+        "Estemamia22": 1758354891,
+        "ThierryK": 1758344978,
+        "AndreaFrance": 1759387881,
+        "Papyclaude": 1758354891
+      }
+    },
     "MarieL81": {
       "index": 8131,
       "owner_key": "5SBSjP89YsLkpeRP2FNDFdUrkxDryzFxQRNHrx35knJM",
-      "balance": 497154,
+      "balance": 536840,
       "membership_expire_on": 1711241208,
       "next_cert_issuable_on": 1677740694,
       "certs_received": {
@@ -45178,9 +46076,9 @@
     "BrigitteW": {
       "index": 3259,
       "owner_key": "5SJT7nawJe7Cqb4VwLEgydDFRtACzCsNxSLp6qJ7QLWj",
-      "balance": 260041,
+      "balance": 138227,
       "membership_expire_on": 1702682402,
-      "next_cert_issuable_on": 1686662357,
+      "next_cert_issuable_on": 1696774004,
       "certs_received": {
         "Majoli34": 1706312599,
         "sauveepargrace": 1708497280,
@@ -45191,7 +46089,7 @@
         "ADodson": 1709405427,
         "monique": 1738526130,
         "Paola": 1749800033,
-        "Lilinico": 1697586948,
+        "Lilinico": 1758087281,
         "Nirma": 1703133275,
         "Dodjay": 1709406749,
         "Philae": 1734840553,
@@ -45229,7 +46127,7 @@
     "Waterlelie": {
       "index": 7602,
       "owner_key": "5SeFYpiM2178Qai3GZto3rguCtBXfnELEB8HM8zLc79D",
-      "balance": 507545,
+      "balance": 524731,
       "membership_expire_on": 1709935582,
       "next_cert_issuable_on": 1666826077,
       "certs_received": {
@@ -45244,7 +46142,7 @@
     "Lemosque": {
       "index": 11389,
       "owner_key": "5ShEcxsc1SEMjVHPqG2oakGAqHsVirvJ1KWXQmJ2pSy5",
-      "balance": 205593,
+      "balance": 173279,
       "membership_expire_on": 1706472635,
       "next_cert_issuable_on": 1682600369,
       "certs_received": {
@@ -45288,7 +46186,7 @@
     "Domij": {
       "index": 8481,
       "owner_key": "5SyYsphBycr8kQG9m6eDiKYfKjozVpB8y7p8mKWba3yL",
-      "balance": 331061,
+      "balance": 350247,
       "membership_expire_on": 1718715224,
       "next_cert_issuable_on": 1689692533,
       "certs_received": {
@@ -45315,7 +46213,7 @@
     "Vincent69": {
       "index": 10365,
       "owner_key": "5T5ayUhF8c8dqvj5Abtv4GAvnRy5BrhvBtWGr4XaQFSj",
-      "balance": 307518,
+      "balance": 347204,
       "membership_expire_on": 1697996030,
       "next_cert_issuable_on": 1668914714,
       "certs_received": {
@@ -45378,7 +46276,7 @@
     "Mimas": {
       "index": 10812,
       "owner_key": "5TJUmrdetHR8ARfUcXGmy16861YMvFhv7PPh2MxcNhaQ",
-      "balance": 279984,
+      "balance": 319670,
       "membership_expire_on": 1702343473,
       "next_cert_issuable_on": 1670942414,
       "certs_received": {
@@ -45419,7 +46317,7 @@
     "kytiu": {
       "index": 3860,
       "owner_key": "5TbTQE2AYoiKCYCbte6qZJAhUSn12YReD6yBGbp7kGQz",
-      "balance": 1113811,
+      "balance": 1153497,
       "membership_expire_on": 1721406953,
       "next_cert_issuable_on": 1665214279,
       "certs_received": {
@@ -45433,7 +46331,7 @@
     "Afreekash": {
       "index": 6929,
       "owner_key": "5Te6PkTu7WeRwjPCP61dYtVYKyRbpsN6EXSRQbas4S3Y",
-      "balance": 596009,
+      "balance": 635695,
       "membership_expire_on": 1701469860,
       "next_cert_issuable_on": 1691924721,
       "certs_received": {
@@ -45448,20 +46346,19 @@
     "issandrol": {
       "index": 5930,
       "owner_key": "5ThAb39o4bvEkPvzVsppXuHTd5TCgjaWALLPPmbhatAp",
-      "balance": 679211,
+      "balance": 717897,
       "membership_expire_on": 1717802812,
-      "next_cert_issuable_on": 1693492116,
+      "next_cert_issuable_on": 1696264075,
       "certs_received": {
         "Sev": 1706002419,
-        "Ghadjo": 1696374399,
+        "Nounouche": 1759790118,
         "JulieBeauvois": 1756534515,
         "DeniseGhiti": 1698113489,
-        "Vievillejp": 1696373672,
         "ChochoisJo": 1698113066,
         "JuanLu": 1702493948,
         "Nadium": 1712021771,
         "Florencefleur": 1723419990,
-        "micheloueb": 1696374033,
+        "CorinneCoco": 1756604956,
         "Did-yeah": 1729644454,
         "lilithdu34": 1699508252,
         "FloP": 1729923260,
@@ -45483,7 +46380,7 @@
     "EveJOURDIN": {
       "index": 232,
       "owner_key": "5Tif7Wz1Gf41LoLc1q7x7s2CzaP3cQur647MKMqG9SV4",
-      "balance": 1057750,
+      "balance": 1097436,
       "membership_expire_on": 1717548644,
       "next_cert_issuable_on": 1686064005,
       "certs_received": {
@@ -45517,9 +46414,9 @@
     "DitchB": {
       "index": 9467,
       "owner_key": "5Tu4gtghjDNBpj4J79WZq6DNNZE3eWPB5dL2CpnLnEA7",
-      "balance": 248991,
+      "balance": 288677,
       "membership_expire_on": 1721968195,
-      "next_cert_issuable_on": 1690482595,
+      "next_cert_issuable_on": 1695302819,
       "certs_received": {
         "LeonDelhez": 1734376399,
         "MaryBricteux": 1725777769,
@@ -45534,12 +46431,13 @@
     "Quintescence": {
       "index": 12051,
       "owner_key": "5U2mb1twbGN4HTuB7pmkzUhTWu72KCsDv1YqpvHd6Dci",
-      "balance": 203956,
+      "balance": 243642,
       "membership_expire_on": 1708459700,
-      "next_cert_issuable_on": 1680524259,
+      "next_cert_issuable_on": 1696478401,
       "certs_received": {
         "CaroleFabre": 1742256891,
         "mably": 1742754236,
+        "LaFouif": 1757799600,
         "Dieudo": 1740689868,
         "xomer": 1741984744,
         "Jdbetoile": 1740190540,
@@ -45558,9 +46456,9 @@
     "Ashawik": {
       "index": 6042,
       "owner_key": "5U3ncSesmjda6jhJgM7BRm8WiPRrrKrbo2P3eyro7rmM",
-      "balance": 68032,
+      "balance": 102718,
       "membership_expire_on": 1721341411,
-      "next_cert_issuable_on": 1693358970,
+      "next_cert_issuable_on": 1696676658,
       "certs_received": {
         "Midorela": 1724222613,
         "myt": 1756369092,
@@ -45570,7 +46468,7 @@
         "JusteAlex": 1711907374,
         "ChristopheD": 1718917858,
         "AmeSurTerre": 1697560469,
-        "Babaroun": 1700291732,
+        "Babaroun": 1757698946,
         "Pascale72": 1698555611,
         "PatHamster": 1696989456,
         "HAMSTERDAME": 1697406044,
@@ -45580,6 +46478,7 @@
         "TailleDouce": 1696997397,
         "ChristineB": 1709713057,
         "Nathjeanson": 1731473619,
+        "Cybelle-Prune": 1759287548,
         "Myriam1912": 1754716024,
         "Ninon914": 1728540948,
         "Ninusca": 1754432375,
@@ -45598,7 +46497,7 @@
     "emmanuelcedat": {
       "index": 11474,
       "owner_key": "5UEhBnRXuwa9j1Rf1rV6CiNwLjCaxy5LzQhnbDciL1Yf",
-      "balance": 229180,
+      "balance": 268866,
       "membership_expire_on": 1706719508,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -45612,12 +46511,11 @@
     "mimi": {
       "index": 48,
       "owner_key": "5UGxjjevfX4vJwH3Q4e76nFEppfXFx6wyKzVBjRK8om5",
-      "balance": 563776,
+      "balance": 362360,
       "membership_expire_on": 1712183587,
-      "next_cert_issuable_on": 1687179521,
+      "next_cert_issuable_on": 1696070757,
       "certs_received": {
         "SylvieBeaumontPerron": 1710478133,
-        "Aude49": 1693985362,
         "FLORESTRELA": 1713414671,
         "1000i100": 1718623073,
         "DBuxerolle": 1748652858,
@@ -45645,7 +46543,7 @@
         "RIALLANDSANDRINE": 1710477898,
         "Wahida": 1733362102,
         "gerard94": 1746179905,
-        "DidierPapillon": 1698487263,
+        "DidierPapillon": 1757549952,
         "PascaleRoncoroni": 1752649934,
         "MessagereDeLumiere": 1749770777,
         "Eauvive": 1743798802,
@@ -45665,7 +46563,7 @@
     "Ayaluz": {
       "index": 12052,
       "owner_key": "5UeSw1g7rpnoKN16Qgg1x2qQhkHrXyc2P9LsG4ierRMh",
-      "balance": 176202,
+      "balance": 227888,
       "membership_expire_on": 1708820594,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -45680,7 +46578,7 @@
     "Diego528": {
       "index": 2388,
       "owner_key": "5UfR7cfmaZ44oeKB9ZLSVdACDnQbSVsxstuc8QgRekwL",
-      "balance": 1337998,
+      "balance": 1377684,
       "membership_expire_on": 1707349858,
       "next_cert_issuable_on": 1686485448,
       "certs_received": {
@@ -45691,14 +46589,13 @@
         "Mikhaella3448": 1700687641,
         "Eauvive": 1718821895,
         "Dodjay": 1718812556,
-        "PascalGuillemain": 1725905906,
-        "mat14": 1696375485
+        "PascalGuillemain": 1725905906
       }
     },
     "Geraldbenmerzoug": {
       "index": 9235,
       "owner_key": "5UfUuYEGY37yEHvPk6SWfhqodoWmozz3ay9NNagBcu9j",
-      "balance": 501513,
+      "balance": 541199,
       "membership_expire_on": 1717162961,
       "next_cert_issuable_on": 1666932679,
       "certs_received": {
@@ -45713,10 +46610,11 @@
     "LibelluleNoe": {
       "index": 13438,
       "owner_key": "5UguLHPxP9g3QD3MP21h3pqo9ouyiG5Aa68y3ngbCkw4",
-      "balance": 23586,
+      "balance": 63272,
       "membership_expire_on": 1721951488,
-      "next_cert_issuable_on": 1693387828,
+      "next_cert_issuable_on": 1696405838,
       "certs_received": {
+        "Tot16": 1757112442,
         "DaniailesA": 1756148889,
         "Dieudo": 1755418597,
         "Fannyhihihi": 1754844818,
@@ -45760,7 +46658,7 @@
     "TerreDePleineConscience": {
       "index": 7388,
       "owner_key": "5UpUxdTtaFgMEkx2yvAMHrknrobY3sjpRfiLEzZsJouq",
-      "balance": 256871,
+      "balance": 296557,
       "membership_expire_on": 1705962135,
       "next_cert_issuable_on": 1664975234,
       "certs_received": {
@@ -45785,9 +46683,9 @@
     "ELEOTIE": {
       "index": 9635,
       "owner_key": "5UuBZvcA7eApbXN6toME3MPKoT83yhAGVJHsFxDS6x8M",
-      "balance": 361443,
+      "balance": 286629,
       "membership_expire_on": 1724098917,
-      "next_cert_issuable_on": 1692613317,
+      "next_cert_issuable_on": 1696161309,
       "certs_received": {
         "Cristol-Iquid": 1726990902,
         "IrisBleu": 1727063438,
@@ -45821,7 +46719,7 @@
     "DelphineA": {
       "index": 10932,
       "owner_key": "5VJeNUkyaEDGCyjxMyTwzUxktFuSffPCrV2M1Q83z744",
-      "balance": 266953,
+      "balance": 310739,
       "membership_expire_on": 1702338339,
       "next_cert_issuable_on": 1687870409,
       "certs_received": {
@@ -45860,12 +46758,13 @@
     "Sanashitaka": {
       "index": 12779,
       "owner_key": "5VPqhoBNQxPbTLdnJKctEnwgbnF7cYbi8hJ9FsoV885g",
-      "balance": 103256,
+      "balance": 136942,
       "membership_expire_on": 1716988699,
       "next_cert_issuable_on": 1688130857,
       "certs_received": {
         "DomRomy20": 1748626255,
         "LeDemineur21": 1748558070,
+        "MicheleSauterey": 1758490905,
         "CaroJans": 1748553949,
         "yasminaB": 1749259106,
         "CecilePhoenix": 1748674032,
@@ -45877,7 +46776,7 @@
     "Didiw": {
       "index": 6436,
       "owner_key": "5VTstW1p8H3Z1uVJVSoGDKXeSDrQrxhHx8wuS82y7tFX",
-      "balance": 299976,
+      "balance": 339662,
       "membership_expire_on": 1722029505,
       "next_cert_issuable_on": 1682611774,
       "certs_received": {
@@ -45898,7 +46797,7 @@
     "verolodeve": {
       "index": 2717,
       "owner_key": "5VYg9YHvLQuoky7EPyyk3cEfBUtB1GuAeJ6SiJ6c9wWe",
-      "balance": 754306,
+      "balance": 793992,
       "membership_expire_on": 1711532436,
       "next_cert_issuable_on": 1684755616,
       "certs_received": {
@@ -45906,7 +46805,6 @@
         "MagaliLodeve": 1728774450,
         "ValerieOrvain": 1697174633,
         "Helene-petiteriviere": 1717689295,
-        "PhilChamp": 1694889065,
         "FlorenceG": 1724595987,
         "VoillaumeDominique": 1728965545,
         "Evy": 1722305483,
@@ -45946,7 +46844,7 @@
     "Cath11": {
       "index": 11652,
       "owner_key": "5VfuVqDcbA5Sebiq4ARzth4mqqvd6d7xjRfiL4q1b87T",
-      "balance": 207972,
+      "balance": 247658,
       "membership_expire_on": 1707775300,
       "next_cert_issuable_on": 1681562889,
       "certs_received": {
@@ -45963,7 +46861,7 @@
     "yali7612": {
       "index": 2516,
       "owner_key": "5VhejePfwvPXQv1EKt2YvskNcDGzvR3x9ytY1LGGW2Ja",
-      "balance": 183757,
+      "balance": 223443,
       "membership_expire_on": 1709996419,
       "next_cert_issuable_on": 1679558066,
       "certs_received": {
@@ -45977,7 +46875,7 @@
     "Yoham24": {
       "index": 4965,
       "owner_key": "5Vmi3W9rRHkiNmUartnWhevrZZzLvarfMa69k5DqRcDM",
-      "balance": 738572,
+      "balance": 778258,
       "membership_expire_on": 1718414361,
       "next_cert_issuable_on": 1687486803,
       "certs_received": {
@@ -45993,7 +46891,7 @@
     "FrankDeMey": {
       "index": 147,
       "owner_key": "5VvcabfWLhJhEKdarYjzVwDBBxLEaDyUFenxeTpWutYi",
-      "balance": 2988141,
+      "balance": 3027827,
       "membership_expire_on": 1698175648,
       "next_cert_issuable_on": 1690539976,
       "certs_received": {
@@ -46005,12 +46903,10 @@
         "MarcelDoppagne": 1717644618,
         "valerie": 1753841689,
         "MarieBertheRanwet": 1711517789,
-        "Numerosympa": 1693550807,
+        "Numerosympa": 1756191668,
         "phil3455": 1720565786,
-        "NirmalaMary": 1695536062,
         "tierce": 1753842099,
         "Verozen": 1737319044,
-        "ChristelleHerbagemembre": 1695962578,
         "CravatteLucien": 1702190679,
         "Gclaire": 1717627871
       }
@@ -46042,9 +46938,9 @@
     "BabethMangas": {
       "index": 2664,
       "owner_key": "5W97LRZwmV3K4KZCU9gpwe1w1m1Hmns846VPUAjpw6bA",
-      "balance": 240025,
+      "balance": 279711,
       "membership_expire_on": 1704016738,
-      "next_cert_issuable_on": 1689748005,
+      "next_cert_issuable_on": 1694053542,
       "certs_received": {
         "mimone974": 1711071674,
         "RomainKornig": 1720123095,
@@ -46091,7 +46987,7 @@
     "LaTigresse": {
       "index": 8749,
       "owner_key": "5WCubDKLSzLYUbBu1CiHAnMrPFYepGYApAQXxtWTyBWr",
-      "balance": 458042,
+      "balance": 497728,
       "membership_expire_on": 1717962346,
       "next_cert_issuable_on": 1688393879,
       "certs_received": {
@@ -46146,7 +47042,7 @@
     "Cheyennegaia": {
       "index": 8929,
       "owner_key": "5WLPWHB9qCXDAaBCVT5iLeAPcX8swAuGP73UwkZ2hibB",
-      "balance": 220778,
+      "balance": 238464,
       "membership_expire_on": 1722725300,
       "next_cert_issuable_on": 1681205396,
       "certs_received": {
@@ -46157,13 +47053,14 @@
         "osavoyard": 1721343299,
         "Maiana": 1720893619,
         "tomval83": 1721200414,
-        "Val83": 1739860560
+        "Val83": 1739860560,
+        "ElvireDracenie": 1757045116
       }
     },
     "Fedie": {
       "index": 11667,
       "owner_key": "5WNv5LCArVcMJjrVyLEMg8xC5SmkAXuozmsbZv7ZjSqF",
-      "balance": 207913,
+      "balance": 242599,
       "membership_expire_on": 1707527189,
       "next_cert_issuable_on": 1682246901,
       "certs_received": {
@@ -46178,7 +47075,7 @@
     "emmabeauvais": {
       "index": 11877,
       "owner_key": "5WQ81g2HmBpgzJkxRpKFwrywYwzJtVCuYtY6AtTsBptf",
-      "balance": 235028,
+      "balance": 274714,
       "membership_expire_on": 1709649549,
       "next_cert_issuable_on": 1686979043,
       "certs_received": {
@@ -46201,7 +47098,7 @@
     "Mayatchica": {
       "index": 12824,
       "owner_key": "5Wh1ExFoa46zwBNQPbjgdMorPCzAEo7wYndHcngWuPPe",
-      "balance": 106848,
+      "balance": 146534,
       "membership_expire_on": 1715221702,
       "next_cert_issuable_on": 1687669353,
       "certs_received": {
@@ -46215,7 +47112,7 @@
     "KevinBragard": {
       "index": 11419,
       "owner_key": "5WwGYExyBM29qXwsUhJjVHoMCqCXDz3Kd8s6nMhfmXdR",
-      "balance": 218975,
+      "balance": 257661,
       "membership_expire_on": 1706471189,
       "next_cert_issuable_on": 1676190552,
       "certs_received": {
@@ -46231,7 +47128,7 @@
     "apsara": {
       "index": 9537,
       "owner_key": "5X16o1p9zCg39DWJUFe6sZy7ifiHeSXGhXCzqbogqgCy",
-      "balance": 227785,
+      "balance": 267471,
       "membership_expire_on": 1720997707,
       "next_cert_issuable_on": 1665119864,
       "certs_received": {
@@ -46247,7 +47144,7 @@
     "Sergio": {
       "index": 7132,
       "owner_key": "5X3M7yDzRn4Nsxz3jeb6f1byUxfRdZvZvriZQLwQdMWu",
-      "balance": 159738,
+      "balance": 184425,
       "membership_expire_on": 1703028079,
       "next_cert_issuable_on": 1683037239,
       "certs_received": {
@@ -46278,7 +47175,7 @@
     "metatron": {
       "index": 12187,
       "owner_key": "5X4tPgfwWFwJ8ejtZquBGQHacdbyAE6H2C6XkdkLHLed",
-      "balance": 10680,
+      "balance": 50366,
       "membership_expire_on": 1711401892,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -46308,7 +47205,7 @@
     "YOYO": {
       "index": 3707,
       "owner_key": "5XB9dunU3aihtm2cH7LfV6G9ZvKm4vfJk1KohcNHwVin",
-      "balance": 1167563,
+      "balance": 1207249,
       "membership_expire_on": 1715470535,
       "next_cert_issuable_on": 1673716962,
       "certs_received": {
@@ -46332,7 +47229,7 @@
     "Ccecile": {
       "index": 7344,
       "owner_key": "5XDgbjexZegff3FpxZGNCVELMR39h8bdj9Pn5LmbV7Y7",
-      "balance": 509747,
+      "balance": 549433,
       "membership_expire_on": 1709417700,
       "next_cert_issuable_on": 1667227765,
       "certs_received": {
@@ -46353,7 +47250,7 @@
     "Herminebzh": {
       "index": 10161,
       "owner_key": "5XECjkYcr47x9bHrhC3Pie5va8DwRZh3RhVjyRLa1vhE",
-      "balance": 322944,
+      "balance": 362630,
       "membership_expire_on": 1697061614,
       "next_cert_issuable_on": 1671355928,
       "certs_received": {
@@ -46373,25 +47270,22 @@
     "Charlene": {
       "index": 5603,
       "owner_key": "5XEEXy1BrXUQYBhZ78nGgq2fv5AF2QZpjPmhziBs7sPx",
-      "balance": 766361,
+      "balance": 806047,
       "membership_expire_on": 1719105344,
       "next_cert_issuable_on": 1690539584,
       "certs_received": {
         "Clo888": 1753051843,
         "Anamaya": 1753645037,
         "MargauxD": 1753492899,
-        "SylvainGabarrou": 1693627696,
         "ThibautDEPRET": 1753579176,
         "kristo": 1753492899,
-        "Sevdiesse": 1750664286,
-        "OrAnge": 1693770598,
-        "maglieres": 1693882669
+        "Sevdiesse": 1750664286
       }
     },
     "Clarinette": {
       "index": 4381,
       "owner_key": "5XMipm2zNdwh3A7raDkZfkbWK9PE4q5MNUYsk82CaFUm",
-      "balance": 383695,
+      "balance": 291753,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1687411362,
       "certs_received": {
@@ -46432,9 +47326,9 @@
     "FrancoisBaloche": {
       "index": 3934,
       "owner_key": "5XgRTZfhyoWgJVTifgD2dTvDyyscn2SqXsA7BCyRXv9z",
-      "balance": 2796845,
+      "balance": 2897407,
       "membership_expire_on": 1706926692,
-      "next_cert_issuable_on": 1682694704,
+      "next_cert_issuable_on": 1695390002,
       "certs_received": {
         "EricPetit": 1705878341,
         "pascalpioline": 1744869694,
@@ -46457,7 +47351,7 @@
     "MichelLamour": {
       "index": 6342,
       "owner_key": "5Xp1g9r1Rz1ybWhSpUELeGPmHcUPyVKQHkYRye3LAiLe",
-      "balance": 616311,
+      "balance": 655997,
       "membership_expire_on": 1702513277,
       "next_cert_issuable_on": 1684329125,
       "certs_received": {
@@ -46480,7 +47374,7 @@
     "Patlutine": {
       "index": 5970,
       "owner_key": "5XqzcVy624vuWJzy4ox9ogpkm65NtKEwKCVK1BLt1qGU",
-      "balance": 700346,
+      "balance": 740032,
       "membership_expire_on": 1719837451,
       "next_cert_issuable_on": 1646293097,
       "certs_received": {
@@ -46498,21 +47392,24 @@
     "MorganeV": {
       "index": 13371,
       "owner_key": "5XwRgtp6PkikKJNzvM3okpBFkohaspa4YByHgDuTDCtK",
-      "balance": 203408,
+      "balance": 573594,
       "membership_expire_on": 1720804795,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696240229,
       "certs_received": {
         "lydiemdb": 1752368445,
         "Fabi26": 1752373858,
         "veronicmartignac": 1752395836,
         "Pilar": 1752373858,
-        "CedricSQ": 1755220226
+        "Thomas": 1757101763,
+        "DameCeline12": 1757006956,
+        "CedricSQ": 1755220226,
+        "KatchouKat": 1757124136
       }
     },
     "Gedege": {
       "index": 4857,
       "owner_key": "5Y1uucucQd7XGYMyxaxqR8TQZ3V8QtWUziBRVXqa51xy",
-      "balance": 750537,
+      "balance": 740223,
       "membership_expire_on": 1704842166,
       "next_cert_issuable_on": 1692502414,
       "certs_received": {
@@ -46525,13 +47422,13 @@
         "Bobydick": 1718924453,
         "harmoniterravie": 1736303516,
         "Permaterravie": 1738400193,
-        "annefreda": 1701069921
+        "annefreda": 1759449466
       }
     },
     "piotino": {
       "index": 891,
       "owner_key": "5Y5fXuwamt53zRBTRDaENHhUNWjANBagEfMY8hbq3Aj3",
-      "balance": 1591933,
+      "balance": 1631619,
       "membership_expire_on": 1699010705,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -46545,11 +47442,12 @@
     "Kiki": {
       "index": 4810,
       "owner_key": "5YAp1w6ECBxbrDPFBoyhArtDAm8FuZrCdZXCJR3G57cL",
-      "balance": 1329951,
+      "balance": 1369637,
       "membership_expire_on": 1711741128,
       "next_cert_issuable_on": 1691986645,
       "certs_received": {
         "LouiseRun": 1706425196,
+        "EveMahe": 1756957218,
         "LouisanneRun": 1706339967,
         "lilithdu34": 1743527759,
         "Damery": 1743317107,
@@ -46570,9 +47468,9 @@
     "Anne-SophieL88": {
       "index": 10110,
       "owner_key": "5YDtnB8n1fhf1ecx3iuBi65y3fTawqMdZmHWMSmW5nsZ",
-      "balance": 330480,
+      "balance": 370166,
       "membership_expire_on": 1697928866,
-      "next_cert_issuable_on": 1686561195,
+      "next_cert_issuable_on": 1693667420,
       "certs_received": {
         "raphaeltissot26": 1729889884,
         "melissandrecd": 1735274642,
@@ -46580,8 +47478,10 @@
         "estherwalther26": 1729840604,
         "Michellecuyer26": 1729928917,
         "Did-yeah": 1733719172,
+        "sandrinedesicy26": 1757470517,
         "sylvielambert2403": 1729840604,
-        "ISAParadis": 1729896536
+        "ISAParadis": 1729896536,
+        "nicolascartiaux": 1759257649
       }
     },
     "GillesAsquier": {
@@ -46595,7 +47495,7 @@
     "Rachel": {
       "index": 325,
       "owner_key": "5YJMWDU6x4pEwAmhBsm2HDfJA5E5wuwbxsbXRN49pXCG",
-      "balance": 2021700,
+      "balance": 2061386,
       "membership_expire_on": 1701817927,
       "next_cert_issuable_on": 1683370025,
       "certs_received": {
@@ -46612,7 +47512,7 @@
     "CELIOCTAVE": {
       "index": 5123,
       "owner_key": "5YKxA8AGB2SUeuAeSCr7CrWd17LLRrn4AZBAM2V8sYcD",
-      "balance": 642675,
+      "balance": 682361,
       "membership_expire_on": 1712528083,
       "next_cert_issuable_on": 1683170534,
       "certs_received": {
@@ -46628,7 +47528,7 @@
     "Nanou59": {
       "index": 9838,
       "owner_key": "5YL8UBJMc8fmj32Lw4sJbwXRBUGenkfii29PhuyoKNDM",
-      "balance": 330160,
+      "balance": 369646,
       "membership_expire_on": 1723546320,
       "next_cert_issuable_on": 1680486763,
       "certs_received": {
@@ -46651,28 +47551,23 @@
     "Corinne-Co": {
       "index": 5877,
       "owner_key": "5YQkHGfsyLQixNYMYSK8S5u4U8YaXPWkaBBxnCmUKvsb",
-      "balance": 171016,
+      "balance": 210702,
       "membership_expire_on": 1721468902,
       "next_cert_issuable_on": 1683280178,
       "certs_received": {
         "Eiutim": 1697052015,
         "ClaireMonde": 1700855741,
         "LionLDouNIo": 1746125072,
-        "jbar": 1695764524,
-        "JerryBB": 1696141066,
         "NathydeSainteVerge": 1746348191,
         "Jean-Michel_Filing": 1745264151,
-        "MaEstherG1": 1721113894,
-        "VivienProuvot": 1695936633,
-        "GeraldineGarrigues": 1696211449,
-        "Fred": 1696141066
+        "MaEstherG1": 1721113894
       }
     },
     "Isona": {
       "index": 6356,
       "owner_key": "5YS8NfBsVkqwCerHd7UBYem4EVVNhqR7G3iS4QGrG7Sp",
-      "balance": 1058921,
-      "membership_expire_on": 1695834946,
+      "balance": 1137827,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1688284730,
       "certs_received": {
         "Jsln6289": 1751328533,
@@ -46697,8 +47592,8 @@
     "Naruto": {
       "index": 9931,
       "owner_key": "5YTdT9gcyaPdHSRqYYC6cwJjjpe17gerF6xjykm4Xtwh",
-      "balance": 341406,
-      "membership_expire_on": 1693674410,
+      "balance": 343542,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Ludo81": 1725293523,
@@ -46730,7 +47625,7 @@
     "karjine": {
       "index": 4485,
       "owner_key": "5YdCDpnWVWyoorJU6Lszbu9LicDV8hYxA9arSyPiYn6T",
-      "balance": 478180,
+      "balance": 517866,
       "membership_expire_on": 1717799686,
       "next_cert_issuable_on": 1686476958,
       "certs_received": {
@@ -46753,7 +47648,7 @@
     "MicheleTampon974": {
       "index": 8026,
       "owner_key": "5YooKJLsXUsXt4j3fEiXL3BmpHbRfZaEwnu58TKRqgAj",
-      "balance": 764167,
+      "balance": 803853,
       "membership_expire_on": 1710518190,
       "next_cert_issuable_on": 1692080106,
       "certs_received": {
@@ -46802,11 +47697,12 @@
     "Tournesol": {
       "index": 12753,
       "owner_key": "5YwC6UXYf4EggFiuFRU3JhUmDfZQXyFiEZNJUsSphHgx",
-      "balance": 73028,
+      "balance": 104814,
       "membership_expire_on": 1716563965,
-      "next_cert_issuable_on": 1693038163,
+      "next_cert_issuable_on": 1695513996,
       "certs_received": {
         "Fox": 1754516233,
+        "Tembo": 1756444842,
         "Chabe13": 1755300834,
         "Sam": 1748122796,
         "RussoDavid13": 1748329234,
@@ -46815,13 +47711,14 @@
         "EmiOne": 1748330550,
         "Domino7": 1755839280,
         "MinaManar": 1748122796,
-        "Domi-Merlinou": 1755539250
+        "Domi-Merlinou": 1755539250,
+        "Passparis": 1759506814
       }
     },
     "Nanou": {
       "index": 5095,
       "owner_key": "5YxrTyX8z93iqx3ZFBvTzNdT8r6qrBMiK7ycrADeE3LH",
-      "balance": 911029,
+      "balance": 950715,
       "membership_expire_on": 1710321733,
       "next_cert_issuable_on": 1683515735,
       "certs_received": {
@@ -46835,8 +47732,8 @@
     "Michel13": {
       "index": 9521,
       "owner_key": "5YyUy5huaW29iNR4GiEMwKkCk2NGGVbAkERrot7P3koQ",
-      "balance": 374687,
-      "membership_expire_on": 1694171369,
+      "balance": 383231,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Beatricebia": 1725998387,
@@ -46857,7 +47754,7 @@
     "virginie": {
       "index": 11857,
       "owner_key": "5Z62m3gPxBdvqt5zb423fjf62nH6Dpg5eKM4Z8kk3XFK",
-      "balance": 291067,
+      "balance": 330753,
       "membership_expire_on": 1707280790,
       "next_cert_issuable_on": 1683458041,
       "certs_received": {
@@ -46888,7 +47785,7 @@
     "Christos_Styliaras": {
       "index": 5860,
       "owner_key": "5Z95j9xkv6cBZvU7XmdkeQd7P8QXCtYJrLCtodwHiSMe",
-      "balance": 601936,
+      "balance": 641622,
       "membership_expire_on": 1705963275,
       "next_cert_issuable_on": 1693208945,
       "certs_received": {
@@ -46905,9 +47802,9 @@
     "Jeff7791": {
       "index": 5966,
       "owner_key": "5ZNghZjGnGkEbDs7xJ7LEevhqe3gMBKN2Jgn9ir1pcmn",
-      "balance": 262399,
+      "balance": 304085,
       "membership_expire_on": 1718138347,
-      "next_cert_issuable_on": 1692158655,
+      "next_cert_issuable_on": 1696162191,
       "certs_received": {
         "THORGAL1968": 1755372487,
         "ROCIO": 1729797314,
@@ -46916,8 +47813,8 @@
         "yoelijomivida": 1734768882,
         "Shankarina": 1753516718,
         "PerePinyolTortosa": 1729913333,
-        "Faquantharmonie": 1698354071,
-        "Maaude09": 1698552928,
+        "Faquantharmonie": 1758431716,
+        "Maaude09": 1759259548,
         "sonialarraz": 1732778373,
         "ZinzinGroues": 1705178943,
         "ollo": 1698597637,
@@ -46958,7 +47855,7 @@
     "Angel": {
       "index": 10098,
       "owner_key": "5ZhfRAtinnpVHK8QtT9rhzL7jDRrFfxMXSamirhmvFNy",
-      "balance": 187639,
+      "balance": 227325,
       "membership_expire_on": 1698429408,
       "next_cert_issuable_on": 1675938516,
       "certs_received": {
@@ -46998,7 +47895,7 @@
     "MadV77": {
       "index": 10276,
       "owner_key": "5ZyAV21sQmwQcHQh7CNwM7maebBGUbTqnVbDZkzp2yXE",
-      "balance": 249305,
+      "balance": 273032,
       "membership_expire_on": 1698238879,
       "next_cert_issuable_on": 1689678646,
       "certs_received": {
@@ -47012,9 +47909,9 @@
     "SantiTrinquete": {
       "index": 10278,
       "owner_key": "5a2wvHEkzAan3sNyLukvqdApC7H99NgU5HDvNE4WHtG5",
-      "balance": 406610,
-      "membership_expire_on": 1699401898,
-      "next_cert_issuable_on": 1693228650,
+      "balance": 313364,
+      "membership_expire_on": 1726013756,
+      "next_cert_issuable_on": 1696318603,
       "certs_received": {
         "InmaRegina": 1743113220,
         "MaudD": 1756422253,
@@ -47026,6 +47923,7 @@
         "MAILURROZ": 1731139542,
         "Belobal": 1731088023,
         "JCNAVARLAZ": 1744656390,
+        "Estherm": 1757383178,
         "begobienestar": 1737794317,
         "Meg": 1750252656,
         "YagoMago": 1734252370,
@@ -47054,7 +47952,7 @@
     "ChristopheD": {
       "index": 7194,
       "owner_key": "5a6zd88SjZMNXW3fBAznnnNRuhWVjmiHMc2a9DfstH7t",
-      "balance": 599293,
+      "balance": 638979,
       "membership_expire_on": 1706562954,
       "next_cert_issuable_on": 1690508612,
       "certs_received": {
@@ -47070,7 +47968,7 @@
     "Diablottin01": {
       "index": 11075,
       "owner_key": "5aLi9J5uhUF4yu3guk6mE2RcJQ5HaSnENTjrjU4zv9it",
-      "balance": 273804,
+      "balance": 313490,
       "membership_expire_on": 1702006412,
       "next_cert_issuable_on": 1672752816,
       "certs_received": {
@@ -47115,14 +48013,14 @@
     "ThierryAudic": {
       "index": 5395,
       "owner_key": "5adHrC7usokcvWPKyQDRRuVquh9pWNAQJMBTCsZroUXx",
-      "balance": 709409,
+      "balance": 749095,
       "membership_expire_on": 1712596743,
       "next_cert_issuable_on": 1659343615,
       "certs_received": {
+        "Mariou": 1757057927,
         "DanceX47": 1722531563,
         "ElisaSalsa47": 1720029062,
         "Sebmaubert": 1717639296,
-        "Vivi": 1695016678,
         "MLDevant": 1717560651,
         "Numerus47": 1717634147
       }
@@ -47130,8 +48028,8 @@
     "BarberanSophie": {
       "index": 9920,
       "owner_key": "5anmKtJVjwcXsh6VCJE95Pk8UzimTtT9w6UGvVkRD3Uz",
-      "balance": 341765,
-      "membership_expire_on": 1694458329,
+      "balance": 353513,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "MarcoSko": 1728427344,
@@ -47145,35 +48043,36 @@
     "Libertad22": {
       "index": 5889,
       "owner_key": "5aoPTrkFAeYVr2ZLjWxazzGt9czQi6UMs9TPDJZq63FY",
-      "balance": 552993,
+      "balance": 592680,
       "membership_expire_on": 1724903858,
-      "next_cert_issuable_on": 1693463082,
+      "next_cert_issuable_on": 1693463335,
       "certs_received": {
         "orociclo": 1731904800,
         "Nella": 1730997089,
-        "Brahmaya": 1695966579,
-        "MariantoniaHuguet": 1696485155,
+        "Brahmaya": 1756514419,
         "Eliasmurcia": 1756590577,
-        "ElenaMavida": 1695966579,
+        "ElenaMavida": 1756514721,
         "eno": 1756594307,
-        "fania": 1697436320
+        "fania": 1756844573
       }
     },
     "EricL": {
       "index": 8083,
       "owner_key": "5aqtBgowfQHVrzGnEYDxRJRkwHCSTKC5cvENF5izpYtQ",
-      "balance": 957764,
+      "balance": 1156210,
       "membership_expire_on": 1708791885,
-      "next_cert_issuable_on": 1658635835,
+      "next_cert_issuable_on": 1694498012,
       "certs_received": {
         "Luciole": 1715800921,
         "samsufy": 1715731843,
+        "BlanDine06": 1756883836,
         "Delfe": 1712091764,
         "Corinart": 1715730799,
         "Chiara07": 1748467651,
         "guillaumedangin": 1715731843,
         "pfouque": 1715731843,
         "Altaiire": 1715781038,
+        "Cathylousouc": 1759197400,
         "ClaireSMV": 1715799878
       }
     },
@@ -47185,6 +48084,22 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "chuchiosteopata": {
+      "index": 13717,
+      "owner_key": "5av1GbM9fNTRFdKjBDyX6Ao3XQS9JATa2fntiXiPrpA6",
+      "balance": 141790,
+      "membership_expire_on": 1727742746,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Mariacrea": 1759343391,
+        "edubotaoo": 1759451205,
+        "NoemiRO": 1759371496,
+        "MaitePG76": 1759303042,
+        "BeatricePieper": 1759304504,
+        "PatriciucaNina": 1759365433,
+        "emboscada": 1759336222
+      }
+    },
     "Elitovius": {
       "index": 2952,
       "owner_key": "5b7cKzFKbL4ikPxYkbxr71kVR3oJ6o6aueLmwRByh4WR",
@@ -47196,9 +48111,9 @@
     "JeanneFlowJ": {
       "index": 5949,
       "owner_key": "5bAheTJJs6TySQPYgqv5gmbUAfC5mjgDVF5XcWkF42mc",
-      "balance": 382017,
+      "balance": 421703,
       "membership_expire_on": 1721327416,
-      "next_cert_issuable_on": 1693050202,
+      "next_cert_issuable_on": 1696605969,
       "certs_received": {
         "Tot16": 1750178671,
         "yekapharoah": 1697518295,
@@ -47211,6 +48126,7 @@
         "Vlad": 1698634994,
         "Kittinyani": 1717399726,
         "Pllumes": 1720035856,
+        "ZimG": 1756086248,
         "Swaruu": 1715456239,
         "ArnaudFleuri": 1698000220,
         "MoiseK": 1753741722,
@@ -47226,7 +48142,7 @@
     "Minouche": {
       "index": 7955,
       "owner_key": "5bCwnWMdXgNGFb2mfqryS2T8VBGASwA6mgg64DV9v6BN",
-      "balance": 489019,
+      "balance": 523705,
       "membership_expire_on": 1715444503,
       "next_cert_issuable_on": 1686390144,
       "certs_received": {
@@ -47264,9 +48180,9 @@
     "AngieantesGeles": {
       "index": 9661,
       "owner_key": "5bJ9wYykYq75jCGJ2HiuWyNRon8oekNcYQGqAFT13C2h",
-      "balance": 155372,
-      "membership_expire_on": 1695327045,
-      "next_cert_issuable_on": 1685959155,
+      "balance": 91358,
+      "membership_expire_on": 1725623627,
+      "next_cert_issuable_on": 1694512767,
       "certs_received": {
         "ArtesaniaAna": 1727364045,
         "SophSav": 1727986556,
@@ -47276,6 +48192,7 @@
         "Belobal": 1726884051,
         "AngelMacksimilia": 1745472959,
         "Isabella": 1727044268,
+        "botera75": 1758843041,
         "Icobonhomme": 1727832417,
         "AliciaConsuelo": 1747898489,
         "vivelavidaconpasion": 1755503706,
@@ -47310,14 +48227,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "BrigitteW": 1706320123,
-        "Parpalhon": 1694544808
+        "BrigitteW": 1706320123
       }
     },
     "Nina04": {
       "index": 10908,
       "owner_key": "5bjAX5azCK5ErhyyEvSmss5uM4fAUfuWv9E4Ry8oBNyJ",
-      "balance": 268871,
+      "balance": 308557,
       "membership_expire_on": 1702318559,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -47360,7 +48276,7 @@
     "VirginieH": {
       "index": 7416,
       "owner_key": "5c17PKkyw2ADeSUkY5eR2mqBGusPPVrYyKwjDqZAJ7G",
-      "balance": 565759,
+      "balance": 605445,
       "membership_expire_on": 1709084441,
       "next_cert_issuable_on": 1652794969,
       "certs_received": {
@@ -47384,7 +48300,7 @@
     "patriziatavormina": {
       "index": 4859,
       "owner_key": "5c6mxPMKpTkDc4W25LPW8Dc63fJTi2wJfYNkAaZALKrt",
-      "balance": 742370,
+      "balance": 782056,
       "membership_expire_on": 1706469858,
       "next_cert_issuable_on": 1682220951,
       "certs_received": {
@@ -47403,7 +48319,7 @@
     "Ivanhoe": {
       "index": 13011,
       "owner_key": "5cAeU42bQyKUX2E5Nm12pEBRkQRm5BNjpHKTTtr4MMCM",
-      "balance": 79420,
+      "balance": 119106,
       "membership_expire_on": 1719237502,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -47437,7 +48353,7 @@
     "gillgir": {
       "index": 12570,
       "owner_key": "5cFKW69KeJmiZShM4vLnNXQhfNVxSdXk5g6U7cKiwWYx",
-      "balance": 127888,
+      "balance": 167574,
       "membership_expire_on": 1714853363,
       "next_cert_issuable_on": 1683555923,
       "certs_received": {
@@ -47451,7 +48367,7 @@
     "chrystele73": {
       "index": 10211,
       "owner_key": "5cFPZtiXi94dtmRJnF2opHto45gePY5kvTRZ1uzFpegc",
-      "balance": 388108,
+      "balance": 427794,
       "membership_expire_on": 1698770399,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -47466,7 +48382,7 @@
     "benemonn": {
       "index": 11934,
       "owner_key": "5cNPjF6LVEkimCTLChm4NwZMEgcZgtyw3KsEg5RycXKG",
-      "balance": 186733,
+      "balance": 226419,
       "membership_expire_on": 1710072683,
       "next_cert_issuable_on": 1686733541,
       "certs_received": {
@@ -47480,8 +48396,8 @@
     "Ulyssepiau": {
       "index": 9857,
       "owner_key": "5cQEGj2jfKUpGzgM2QPo2gf4dwcU1do9NVGoRrcpyqUM",
-      "balance": 396701,
-      "membership_expire_on": 1694638624,
+      "balance": 411663,
+      "membership_expire_on": 1728222811,
       "next_cert_issuable_on": 1683273298,
       "certs_received": {
         "petitetoile": 1726554109,
@@ -47516,6 +48432,35 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Nilhan": {
+      "index": 13591,
+      "owner_key": "5ccEftSQYLym7gn9azSbR3mSAdow5Twf4e3rmaXeT2pK",
+      "balance": 51615,
+      "membership_expire_on": 1726520086,
+      "next_cert_issuable_on": 1695539885,
+      "certs_received": {
+        "AgnesJs": 1758128930,
+        "Shinix63": 1758127203,
+        "Annae": 1758086301,
+        "Goldwing": 1758089311,
+        "MikaPac": 1758091215
+      }
+    },
+    "Kelia": {
+      "index": 13654,
+      "owner_key": "5ce5Rebk745WjcexU2qV3ZQwr6YY8m8pYcaJtYMfw93q",
+      "balance": 14014,
+      "membership_expire_on": 1726324903,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Eloine": 1758747022,
+        "Nouchka1": 1758643744,
+        "AlphaCentauri": 1758648110,
+        "Cybelle-Prune": 1758696165,
+        "Ceciletricoteuse": 1758647351,
+        "Mimosa": 1758670427
+      }
+    },
     "inso": {
       "index": 43,
       "owner_key": "5cnvo5bmR8QbtyNVnkDXWq6n5My6oNLd1o6auJApGCsv",
@@ -47524,10 +48469,24 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "AnjaTell": {
+      "index": 13481,
+      "owner_key": "5crzcsvQqK6CW8LvUofC74nd2uJSETKpn7vv1dedhoQw",
+      "balance": 87289,
+      "membership_expire_on": 1722866339,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "majo": 1755938166,
+        "Miguela": 1755806914,
+        "Thor": 1754423939,
+        "danielali": 1756712042,
+        "Ralf": 1755669690
+      }
+    },
     "Simplementemaria": {
       "index": 7938,
       "owner_key": "5ctdsjgU1A5LV2CP5Aa7W3C1H5oQCbjHsDSuXfGkeFvd",
-      "balance": 265264,
+      "balance": 24950,
       "membership_expire_on": 1710941887,
       "next_cert_issuable_on": 1683015827,
       "certs_received": {
@@ -47571,13 +48530,7 @@
       "balance": 231819,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "sanddebeloest38": 1695397361,
-        "izotoad38": 1695022492,
-        "Joailes38": 1696547614,
-        "Monaco73": 1695837212,
-        "LaurentM": 1695002208
-      }
+      "certs_received": {}
     },
     "MarieLaureGruauGeslot": {
       "index": 5194,
@@ -47620,14 +48573,12 @@
     "hv23": {
       "index": 2407,
       "owner_key": "5dCpd2cQJCXAisRubzVM5wVxjAPEx8iBCQMtYsLGyFEb",
-      "balance": 1089496,
-      "membership_expire_on": 1713369862,
+      "balance": 1121636,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1658681137,
       "certs_received": {
         "jfa": 1696816117,
-        "Lilou": 1696104425,
         "Matilou": 1696816117,
-        "Guenoel": 1696104425,
         "LeonardG": 1696816394
       }
     },
@@ -47656,7 +48607,7 @@
     "Mirre": {
       "index": 8793,
       "owner_key": "5dKr2PHYNbv3wwjiQS4mE561iKwL9T8K6CxzVQ4ZjLqZ",
-      "balance": 270461,
+      "balance": 310147,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -47671,8 +48622,8 @@
     "Cilla": {
       "index": 380,
       "owner_key": "5dPiEDAQ6EqeFSju1vc3REcA51NZ3D5WLZmMn12A5bV9",
-      "balance": 2203574,
-      "membership_expire_on": 1695941790,
+      "balance": 2238948,
+      "membership_expire_on": 1727809093,
       "next_cert_issuable_on": 1677490584,
       "certs_received": {
         "karpat": 1740943935,
@@ -47690,7 +48641,7 @@
     "Jai": {
       "index": 8783,
       "owner_key": "5dQCrxdXQaVQoAwjPim3GuNiByhG1E91DN5NWbyFaFEV",
-      "balance": 126964,
+      "balance": 166650,
       "membership_expire_on": 1716129973,
       "next_cert_issuable_on": 1690640224,
       "certs_received": {
@@ -47715,9 +48666,9 @@
     "Chus": {
       "index": 9344,
       "owner_key": "5dRCWBvRRGCCb2RQsE6SaBfn7riEi71oJkbu9UuFPWUg",
-      "balance": 21408,
+      "balance": 16094,
       "membership_expire_on": 1720825502,
-      "next_cert_issuable_on": 1686906651,
+      "next_cert_issuable_on": 1696683388,
       "certs_received": {
         "Cholo": 1749519531,
         "Alex_decrecimiento": 1730278674,
@@ -47757,7 +48708,7 @@
     "hugolebeau": {
       "index": 12346,
       "owner_key": "5dXrqk9yvD8mmN53hSFGVLhi48mEoAFiKk4UiutU6vmw",
-      "balance": 149384,
+      "balance": 189070,
       "membership_expire_on": 1712696225,
       "next_cert_issuable_on": 1683958903,
       "certs_received": {
@@ -47783,7 +48734,7 @@
     "Poppahoudini": {
       "index": 10063,
       "owner_key": "5dtw88gTdWkxp6VfnnRhbqNuF2NP8t7BqjiMRLoafRYY",
-      "balance": 333816,
+      "balance": 373502,
       "membership_expire_on": 1697993951,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -47797,7 +48748,7 @@
     "SylvieVDS": {
       "index": 12273,
       "owner_key": "5dxhVA8SzWnSgGruHZ1ChMGEWiWcpT6UN5giP1iBBN9f",
-      "balance": 165928,
+      "balance": 205614,
       "membership_expire_on": 1710902095,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -47825,7 +48776,7 @@
     "vincentux": {
       "index": 57,
       "owner_key": "5dzkzedBWdeqTFCaD7AkKPMPusfRUL1XyFNJWWGYQ9f1",
-      "balance": 759258,
+      "balance": 798944,
       "membership_expire_on": 1717271982,
       "next_cert_issuable_on": 1693305166,
       "certs_received": {
@@ -47839,13 +48790,14 @@
         "Maaltir": 1704258724,
         "Murielle44": 1732215047,
         "Tiphaine": 1721782241,
+        "Anne_Marquer": 1755809413,
         "EmmanuelOLIVIER": 1712722950
       }
     },
     "Ninon3000": {
       "index": 2729,
       "owner_key": "5e2cchMTkXM3LYGF6uMpLhaxG1tK9uJn37Lv647oU1ZQ",
-      "balance": 730599,
+      "balance": 770285,
       "membership_expire_on": 1718271892,
       "next_cert_issuable_on": 1686562346,
       "certs_received": {
@@ -47902,7 +48854,7 @@
     "Lisou38": {
       "index": 11826,
       "owner_key": "5eBekMyFf9rNLDbvGQomHSrAhGD57iFNJD1KnktT6w6o",
-      "balance": 214405,
+      "balance": 254091,
       "membership_expire_on": 1706147096,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -47941,7 +48893,7 @@
     "Drissa81": {
       "index": 11499,
       "owner_key": "5eeEbryYqXvFGJdET3aGfFP1BFVLGZdmbJbx7JBeb8Km",
-      "balance": 219621,
+      "balance": 204307,
       "membership_expire_on": 1707069711,
       "next_cert_issuable_on": 1675791673,
       "certs_received": {
@@ -47958,15 +48910,13 @@
       "owner_key": "5ehFC5WihRf1BKdq1nFwWiGFAaZFvf28ugKebEoueLdk",
       "balance": 633561,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1633089795,
-      "certs_received": {
-        "Celuiquicrelamehaute": 1696716254
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "Maryline": {
       "index": 4776,
       "owner_key": "5emgCgypHdV97yuFQqhB6Xw9VgS5qqSTDRX1KkHaLcpv",
-      "balance": 2360159,
+      "balance": 2399845,
       "membership_expire_on": 1706476825,
       "next_cert_issuable_on": 1676824374,
       "certs_received": {
@@ -48008,7 +48958,7 @@
     "Mamietarteopommes": {
       "index": 8957,
       "owner_key": "5f4WKXyiiQTTFrJmHLWjQgeGK1BxhAqXg5R8NmVRvqo9",
-      "balance": 220092,
+      "balance": 362878,
       "membership_expire_on": 1716321865,
       "next_cert_issuable_on": 1687492315,
       "certs_received": {
@@ -48032,16 +48982,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1643349239,
       "certs_received": {
-        "AnneJutonPinson": 1694922241,
-        "Ingriddevendee": 1693698800,
-        "Titem": 1693791740,
         "Totoro": 1710796291
       }
     },
     "ClaraM": {
       "index": 13103,
       "owner_key": "5fGN3XY5zP4aXUX5CG4ndVcR7W5v45QcWPBHuf4ia4a1",
-      "balance": 58740,
+      "balance": 98426,
       "membership_expire_on": 1719279283,
       "next_cert_issuable_on": 1689073641,
       "certs_received": {
@@ -48070,9 +49017,9 @@
     "LENOU61": {
       "index": 5950,
       "owner_key": "5fHMhHQFUDaTaR9ZtmYJRdzCshDFexShAdPEDYvNPvx6",
-      "balance": 718375,
+      "balance": 564321,
       "membership_expire_on": 1721700917,
-      "next_cert_issuable_on": 1678098890,
+      "next_cert_issuable_on": 1695006889,
       "certs_received": {
         "ChristianDelaunay": 1698634094,
         "simonelion": 1697056237,
@@ -48084,13 +49031,13 @@
         "Punya": 1702703581,
         "SeveOrange": 1709324446,
         "Bertr29": 1742807386,
-        "Remy": 1697136471
+        "Remy": 1758049841
       }
     },
     "Hoppel": {
       "index": 11829,
       "owner_key": "5fL2v5rJvgnCmjBo6n6Eygny49qNebwxRic2Dm6o6Fix",
-      "balance": 197205,
+      "balance": 236891,
       "membership_expire_on": 1709162132,
       "next_cert_issuable_on": 1681111374,
       "certs_received": {
@@ -48107,7 +49054,7 @@
     "Chrystal26": {
       "index": 6208,
       "owner_key": "5fPjoyU7Cub8ahZ9XqhZoJtxNcobM3ymdn43Wec5JjrK",
-      "balance": 648299,
+      "balance": 687985,
       "membership_expire_on": 1702077462,
       "next_cert_issuable_on": 1654779787,
       "certs_received": {
@@ -48121,7 +49068,7 @@
     "doudou": {
       "index": 7994,
       "owner_key": "5fXPGEMNVMtDZV954B6VccQE7dVdSo3e1FPSaE7zAwFA",
-      "balance": 488564,
+      "balance": 528250,
       "membership_expire_on": 1708810062,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -48140,28 +49087,23 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1642848364,
       "certs_received": {
-        "GregCrediteur": 1695753325,
-        "Lagina": 1695757055,
-        "Tartynet": 1696024684,
-        "CeliaSnowLibre": 1695753040,
-        "Crismou": 1696024406,
         "HenriRGN": 1698014563,
-        "thierry09": 1696390551,
         "CathyLibre": 1697141342
       }
     },
     "MIDO": {
       "index": 12452,
       "owner_key": "5ffWbxBpF47Aj8zUS9M1o1TBqPwPbs7r5FrrEs5Wykup",
-      "balance": 74480,
+      "balance": 109166,
       "membership_expire_on": 1714056844,
-      "next_cert_issuable_on": 1692894966,
+      "next_cert_issuable_on": 1695609825,
       "certs_received": {
         "IsabellePriou": 1754178355,
         "cpriou11": 1745608382,
         "Fabrice": 1745623900,
         "VeroniqueMaessen": 1745565278,
         "CecileBeaulieu": 1748759637,
+        "Malouve": 1757375273,
         "MaryseD": 1745622685,
         "SergeUme": 1745565278,
         "FranckAubert": 1754711258
@@ -48178,7 +49120,7 @@
     "Bridjeth": {
       "index": 10940,
       "owner_key": "5fhMBmH8nvFa9TiPgT5E41DzaGGzYXGBvc2cmE6oUQy8",
-      "balance": 270453,
+      "balance": 310139,
       "membership_expire_on": 1703033403,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -48200,9 +49142,9 @@
     "Hermione43": {
       "index": 4156,
       "owner_key": "5fiNZHh4WGNQQS2vVdF2PQQx54eqsreTiiSvc9Ko3rii",
-      "balance": 806385,
+      "balance": 806071,
       "membership_expire_on": 1709293487,
-      "next_cert_issuable_on": 1686658972,
+      "next_cert_issuable_on": 1692894966,
       "certs_received": {
         "MatheoLibreCommeLaMesange": 1741421305,
         "Riri": 1748920684,
@@ -48210,6 +49152,7 @@
         "Jean-Pierre07": 1741393995,
         "DannyDadoune": 1741413610,
         "GXIST": 1741049425,
+        "Margauxgau": 1758418611,
         "charlotterenee": 1741394360,
         "Georges43": 1748548644
       }
@@ -48217,15 +49160,15 @@
     "arfocine": {
       "index": 658,
       "owner_key": "5fvsEtdFJzSen5Abue51gJeBgyanzF8KrcKTa61ghGzN",
-      "balance": 2187153,
+      "balance": 2226839,
       "membership_expire_on": 1719942269,
-      "next_cert_issuable_on": 1685960971,
+      "next_cert_issuable_on": 1695519203,
       "certs_received": {
         "myma63": 1738403394,
         "sylvain": 1697136758,
-        "mmu_man": 1697101200,
+        "mmu_man": 1756869142,
         "Pensey20": 1749866059,
-        "Philippe26": 1697099973,
+        "Philippe26": 1756652115,
         "Carodelabegude": 1722358308,
         "Jean-Pierre07": 1749878075
       }
@@ -48233,8 +49176,8 @@
     "Rimek94": {
       "index": 1661,
       "owner_key": "5g2Ja28bGaMQdHwR8T8vMXsGESNXw76ffQJwerbdXjfD",
-      "balance": 2091060,
-      "membership_expire_on": 1696683410,
+      "balance": 2132746,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689175461,
       "certs_received": {
         "GUL40_Fr1": 1723269281,
@@ -48246,7 +49189,6 @@
         "LenaB": 1743285297,
         "Attilax": 1732328592,
         "nicoleC": 1701427366,
-        "Louis_Mandr2": 1695438601,
         "josemallet": 1724296003,
         "DelphineBougie": 1710895531,
         "FredB": 1743283358
@@ -48255,7 +49197,7 @@
     "pierrealain": {
       "index": 11974,
       "owner_key": "5g5wrtks6RRnXg8TZAzw4AbzbVb859BPN3M7Y7nqAxCQ",
-      "balance": 191756,
+      "balance": 231442,
       "membership_expire_on": 1709903918,
       "next_cert_issuable_on": 1687412281,
       "certs_received": {
@@ -48278,7 +49220,7 @@
     "ElyM": {
       "index": 11410,
       "owner_key": "5g7uZ8mhtFKsg5Yh8kms63Q3DavvL6W3C1v8f9wEitp2",
-      "balance": 229434,
+      "balance": 269120,
       "membership_expire_on": 1704636663,
       "next_cert_issuable_on": 1682332110,
       "certs_received": {
@@ -48303,9 +49245,9 @@
     "etrehumainJordan92i": {
       "index": 3141,
       "owner_key": "5gJ7hTb7FZxUzjqF5UmZi46z5gcjVvxAefdxSYtj1BLB",
-      "balance": 668261,
+      "balance": 697767,
       "membership_expire_on": 1704240294,
-      "next_cert_issuable_on": 1686540742,
+      "next_cert_issuable_on": 1694679569,
       "certs_received": {
         "Hugues35": 1736573512,
         "Cygogne22": 1749583942,
@@ -48317,6 +49259,7 @@
         "Auxance": 1748899308,
         "Migus01": 1748188103,
         "YANNIERRE": 1755739199,
+        "Vivant3000": 1757723468,
         "Titus": 1740701028,
         "Sailorcherry": 1737456479,
         "eLisabel": 1735859911,
@@ -48335,7 +49278,7 @@
     "micheleB": {
       "index": 11236,
       "owner_key": "5gLEjnZbJ18ggBWMiSz8KiW7GgiS77sxBMbFc4KecZzy",
-      "balance": 232919,
+      "balance": 272605,
       "membership_expire_on": 1704887460,
       "next_cert_issuable_on": 1685511147,
       "certs_received": {
@@ -48350,15 +49293,17 @@
     "tangosol": {
       "index": 7045,
       "owner_key": "5gPJzV4a6d1XjWZVEVc3waQqAf3wrX8seLF1YPvmmmt",
-      "balance": 537421,
+      "balance": 551607,
       "membership_expire_on": 1704310390,
-      "next_cert_issuable_on": 1693055729,
+      "next_cert_issuable_on": 1696425710,
       "certs_received": {
+        "MurielOVL": 1759283429,
         "NanouB": 1756098929,
         "YugavanOrloff": 1707952198,
         "CatherineMonastirieff": 1707953841,
         "takleung": 1708137731,
         "Nadia": 1707951120,
+        "Kifgrave": 1759271767,
         "NagNag": 1708035279,
         "MinaManar": 1707944687,
         "AnemoneSyl": 1707955593,
@@ -48368,7 +49313,7 @@
     "AntoniusLimones": {
       "index": 10367,
       "owner_key": "5gVHhJMNYwtcL88NHQ5wh1mFGHFUUyYkkZKDnEteQjPH",
-      "balance": 188502,
+      "balance": 228188,
       "membership_expire_on": 1699635615,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -48384,22 +49329,33 @@
     "JohannFox": {
       "index": 5723,
       "owner_key": "5gajsY3BtD8mnxWtVbt4DjjHdaiGZqbMz54A45A6AsNz",
-      "balance": 711035,
+      "balance": 730721,
       "membership_expire_on": 1720567164,
       "next_cert_issuable_on": 1690185413,
       "certs_received": {
+        "sarahmagicienne": 1757908752,
         "DaniailesA": 1715153606,
-        "Ingriddevendee": 1695168718,
-        "fredo79": 1695166197,
-        "Coco-B": 1695780981,
         "Fannyhihihi": 1753372990,
         "AnaisLicorne": 1753395604,
         "BisQI": 1703542099,
         "JoW": 1715204755,
         "Amankosmos": 1720493286,
         "SamsFactory": 1752124764,
-        "eln": 1756506282,
-        "IJMah": 1695692305
+        "eln": 1756506282
+      }
+    },
+    "Melouf": {
+      "index": 13731,
+      "owner_key": "5gcoF1B8Du5GaBkrJTnWRc63odiHTzKiXWS1wmCkQKkz",
+      "balance": 10290,
+      "membership_expire_on": 1726325545,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Lilith8888": 1759428476,
+        "Berenice": 1759059467,
+        "Yanneuh": 1758168511,
+        "TCT60162": 1758587691,
+        "Joysline": 1758186253
       }
     },
     "virgiliolobo": {
@@ -48413,7 +49369,7 @@
     "sauveepargrace": {
       "index": 3410,
       "owner_key": "5gpnPGKpteNUwHbN5PJ2bdATfzzd7CVozBeFpqLeuYSB",
-      "balance": 1987931,
+      "balance": 2027617,
       "membership_expire_on": 1699295700,
       "next_cert_issuable_on": 1693049342,
       "certs_received": {
@@ -48424,7 +49380,6 @@
         "MonChant": 1728543064,
         "Helene-petiteriviere": 1727285979,
         "Amelia34": 1725393575,
-        "Manholy34": 1695844304,
         "Etolol": 1740802636,
         "DominiquePROUVIER-ARNAUD": 1725425767,
         "Lililys": 1731009899,
@@ -48456,11 +49411,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Kalsto": {
+      "index": 13716,
+      "owner_key": "5h3iAA6Ruir3PEvnqWmvjp2PBtyz77ZF9UUhtgV96eoy",
+      "balance": 39490,
+      "membership_expire_on": 1727347965,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Ozia": 1759114192,
+        "Xaby60": 1759337745,
+        "chantlavie60": 1759192399,
+        "Pamelaayurveda": 1759286470,
+        "Picatch": 1759175833
+      }
+    },
     "lavenirestunlongpasse": {
       "index": 9943,
       "owner_key": "5h6Afa7DAoeuwuDw5xKdU3TM8NLKMMXUfmMTe2ub2yGk",
-      "balance": 339239,
-      "membership_expire_on": 1696296023,
+      "balance": 373535,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1680075010,
       "certs_received": {
         "lims": 1728608132,
@@ -48473,7 +49442,7 @@
     "EnriqueSandoval": {
       "index": 11423,
       "owner_key": "5h815qwuwUyje6iuYm86XygtTZjpQSJU3TGi8EzuL9Rj",
-      "balance": 116175,
+      "balance": 136461,
       "membership_expire_on": 1705353891,
       "next_cert_issuable_on": 1690954537,
       "certs_received": {
@@ -48496,13 +49465,14 @@
     "AnthonyDel": {
       "index": 13441,
       "owner_key": "5h9wPdbDCGF85jUBcWC2SPNPP8pqWf2YLxPfbQg117PT",
-      "balance": 6408,
+      "balance": 78512,
       "membership_expire_on": 1723668313,
-      "next_cert_issuable_on": 1693118622,
+      "next_cert_issuable_on": 1696218291,
       "certs_received": {
         "Lilibeth79": 1755829046,
         "Husam": 1755241383,
         "DomVe": 1755764811,
+        "Venceremos": 1758305046,
         "Cyrian": 1755755256,
         "levanne": 1755584805,
         "Nyriel": 1755225913
@@ -48511,8 +49481,8 @@
     "AbrahamRP": {
       "index": 9937,
       "owner_key": "5hNH5jbw6o4x9c4sn2AjvgKLbfzhZkF8wSzPxq9ucBf5",
-      "balance": 324827,
-      "membership_expire_on": 1696731007,
+      "balance": 406893,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689476188,
       "certs_received": {
         "VirginiaDuran": 1728447623,
@@ -48524,6 +49494,7 @@
         "miguelon": 1728886763,
         "AlfredoRG": 1728288607,
         "mathieuBize": 1729365668,
+        "Santi_ajedrez": 1756837270,
         "GretaArtemis": 1729803321,
         "moincagranada": 1728969144,
         "mimamamemima": 1728938251,
@@ -48541,7 +49512,7 @@
     "SophieChastanet971": {
       "index": 12535,
       "owner_key": "5hPeuFF7tfmnDDQkSLx1iWxbEECjs5DyBLEx5WhHc2QV",
-      "balance": 140192,
+      "balance": 179878,
       "membership_expire_on": 1710892581,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -48555,9 +49526,9 @@
     "Charista": {
       "index": 9427,
       "owner_key": "5hREU4yK5zjJi5TPM9tMfQKUiJ6uaMo2eiqGPUvSCuee",
-      "balance": 471795,
+      "balance": 511481,
       "membership_expire_on": 1723243187,
-      "next_cert_issuable_on": 1679071162,
+      "next_cert_issuable_on": 1696712017,
       "certs_received": {
         "Dj_raoult": 1725497731,
         "Beatricebia": 1725475183,
@@ -48565,13 +49536,14 @@
         "Francoisheb": 1725518157,
         "Jaune51": 1741114191,
         "GeneVieve": 1725490864,
-        "mariemanon": 1741113875
+        "mariemanon": 1741113875,
+        "NadCha": 1759436733
       }
     },
     "Monalibra": {
       "index": 12690,
       "owner_key": "5hTptvXn9wKX2cporzdHLGPH7Am6AgoxTJc6zhjUWZFY",
-      "balance": 110848,
+      "balance": 187834,
       "membership_expire_on": 1715947560,
       "next_cert_issuable_on": 1689578075,
       "certs_received": {
@@ -48581,6 +49553,8 @@
         "Shinix63": 1748377371,
         "Annae": 1747507247,
         "Gillo75": 1749402150,
+        "Lazuly": 1759207151,
+        "Sycol": 1759182385,
         "MikaPac": 1747506016
       }
     },
@@ -48611,7 +49585,7 @@
     "Consulmutante": {
       "index": 7735,
       "owner_key": "5hpS3rx88vJXrRcSe5kVPkTw3hPjhKFoADSJz2uFhyfb",
-      "balance": 523635,
+      "balance": 563321,
       "membership_expire_on": 1710452410,
       "next_cert_issuable_on": 1678966810,
       "certs_received": {
@@ -48639,11 +49613,12 @@
     "Benedicte38": {
       "index": 7444,
       "owner_key": "5i1GAuXFdyj6MHV8UgfjNTYZiJ4c8j2Qywe6RxcMH2vx",
-      "balance": 448857,
+      "balance": 443543,
       "membership_expire_on": 1704748680,
       "next_cert_issuable_on": 1693210009,
       "certs_received": {
         "NopamasYC": 1727561159,
+        "Toutvabien": 1756953418,
         "Malene": 1750451649,
         "SandRA": 1710144867,
         "ThierryS": 1709317864,
@@ -48663,7 +49638,7 @@
     "TakiBanjongket": {
       "index": 12141,
       "owner_key": "5i2b3zZGc6HAqaYC9qSYCiYGqxUHwFGbrj29S8kPn79n",
-      "balance": 167676,
+      "balance": 207362,
       "membership_expire_on": 1711306461,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -48675,10 +49650,24 @@
         "iafu": 1743099773
       }
     },
+    "Isabella11": {
+      "index": 13561,
+      "owner_key": "5i515Vu8pZq6a3ps2HFWjUrTrqBMF49zhnKxG1RUSJ4r",
+      "balance": 21620,
+      "membership_expire_on": 1724427263,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Crystal": 1757448930,
+        "SylvieT": 1757449780,
+        "marika8": 1755997151,
+        "Cricri11190": 1756324262,
+        "Renefaby": 1755997433
+      }
+    },
     "padrepio": {
       "index": 11525,
       "owner_key": "5i7ioNJ9woiyxJAisorTvBxCttUqvonoY8MPz8u4fhzE",
-      "balance": 498503,
+      "balance": 538189,
       "membership_expire_on": 1707399581,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -48702,7 +49691,7 @@
     "Alex46": {
       "index": 7963,
       "owner_key": "5iDJmYMMn2zfdnydqSuMm3B6FjEkRjkNgtDYXCFqw9gT",
-      "balance": 511817,
+      "balance": 551503,
       "membership_expire_on": 1708206907,
       "next_cert_issuable_on": 1676724032,
       "certs_received": {
@@ -48716,7 +49705,7 @@
     "LudoF": {
       "index": 11705,
       "owner_key": "5iHDzN59Y6TLXR3tHB51R5fLqHr9egywv7j3aJcnJnzH",
-      "balance": 203736,
+      "balance": 243422,
       "membership_expire_on": 1708209632,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -48730,11 +49719,25 @@
     "GEKA": {
       "index": 5218,
       "owner_key": "5iHZCCYt5dyc5W5jYthcePzJckY3ZsQkb2z1r8iC3G1Q",
-      "balance": 741661,
+      "balance": 726661,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632750407,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Babouille11": {
+      "index": 13592,
+      "owner_key": "5iLYWeKnTkSFja86DB1RPa2jESewxdjVJghakhVwuBYc",
+      "balance": 27462,
+      "membership_expire_on": 1726269447,
+      "next_cert_issuable_on": 1696681367,
+      "certs_received": {
+        "MIDO": 1757827838,
+        "Etoiledunord": 1758160524,
+        "CecileBeaulieu": 1757828355,
+        "AnnieP38": 1757998879,
+        "RejjeR": 1757828868
+      }
+    },
     "PierreR": {
       "index": 6548,
       "owner_key": "5iSA9cvrpKWALbUmTAntXGGvSz4D9fJ1LAQ834Pj1Uw9",
@@ -48771,7 +49774,7 @@
     "Oree": {
       "index": 7067,
       "owner_key": "5iUdSMjmTpwVXoyvKCbp3cDTPaNktjtWYafANmu5PzVN",
-      "balance": 701255,
+      "balance": 792941,
       "membership_expire_on": 1707065155,
       "next_cert_issuable_on": 1684210667,
       "certs_received": {
@@ -48803,7 +49806,7 @@
     "ChristineAndre": {
       "index": 6093,
       "owner_key": "5iYHi8B2YUY7gVg1RM4GUZf9fJi6kEAtrp1sCVJchtWU",
-      "balance": 609155,
+      "balance": 649041,
       "membership_expire_on": 1724604872,
       "next_cert_issuable_on": 1681483972,
       "certs_received": {
@@ -48836,7 +49839,7 @@
     "CedLion": {
       "index": 10050,
       "owner_key": "5id4oTUWndPDHXAJDTAcyzygHDFy4MFX7ugyCJBypPED",
-      "balance": 287349,
+      "balance": 326035,
       "membership_expire_on": 1723861405,
       "next_cert_issuable_on": 1688261708,
       "certs_received": {
@@ -48881,9 +49884,9 @@
     "MayaPTT": {
       "index": 12739,
       "owner_key": "5ijEx4sNsekkMvf4AWr1ACrdZy1w2sebJwxbgcWeNjnm",
-      "balance": 106132,
+      "balance": 154818,
       "membership_expire_on": 1715115307,
-      "next_cert_issuable_on": 1691464891,
+      "next_cert_issuable_on": 1694078879,
       "certs_received": {
         "Gemeff": 1747280468,
         "Fleurdusoleil": 1746774554,
@@ -48895,8 +49898,8 @@
     "lecolombin": {
       "index": 9898,
       "owner_key": "5im14uzue8PWGowQKKAwzYxauz1z8w7SMxNUNv9gsChS",
-      "balance": 368524,
-      "membership_expire_on": 1696681926,
+      "balance": 408210,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681862859,
       "certs_received": {
         "Camillefairy": 1728409587,
@@ -48939,9 +49942,9 @@
     "Sylvia8636": {
       "index": 8653,
       "owner_key": "5j4AkuAuC1Fb6yGxs4kFYR4raYuPQhEaEQ4G86vRSm1M",
-      "balance": 301516,
+      "balance": 215602,
       "membership_expire_on": 1713042607,
-      "next_cert_issuable_on": 1692673190,
+      "next_cert_issuable_on": 1694217035,
       "certs_received": {
         "CatherinePerma": 1719123261,
         "LionLDouNIo": 1747896688,
@@ -48963,7 +49966,7 @@
     "marcelojourde": {
       "index": 13189,
       "owner_key": "5j5Ejr6XanhaJkT6at1sqYCwgppEC7L4MX6QQowjZkKj",
-      "balance": 71992,
+      "balance": 117678,
       "membership_expire_on": 1720801922,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -48977,7 +49980,7 @@
     "Sweetpea": {
       "index": 7756,
       "owner_key": "5j6mVTpBzarD1TCvchiXqB6WtVo1sbh4qKJWA5TBBtH8",
-      "balance": 495784,
+      "balance": 545470,
       "membership_expire_on": 1711672855,
       "next_cert_issuable_on": 1689595598,
       "certs_received": {
@@ -48994,7 +49997,7 @@
     "Alexia": {
       "index": 6119,
       "owner_key": "5j77wgxuE6Zz94JK2AqZt4hwoHxuarT2e8vQaTDu4x9h",
-      "balance": 618789,
+      "balance": 708475,
       "membership_expire_on": 1704185869,
       "next_cert_issuable_on": 1687686694,
       "certs_received": {
@@ -49038,7 +50041,7 @@
     "Matymama": {
       "index": 6755,
       "owner_key": "5jPCzgBsSrn1pTCAX56t5HgAENCDCUZuwG8xZmuXaiiS",
-      "balance": 365931,
+      "balance": 405617,
       "membership_expire_on": 1700583020,
       "next_cert_issuable_on": 1684746759,
       "certs_received": {
@@ -49060,13 +50063,12 @@
     "Laula": {
       "index": 5851,
       "owner_key": "5jWnWEcDz3jrnBjMrfsTDEcBbsqHf147MTRgPST2EpsF",
-      "balance": 717115,
+      "balance": 756801,
       "membership_expire_on": 1723085993,
       "next_cert_issuable_on": 1671862041,
       "certs_received": {
         "Bcabon": 1753994809,
-        "Aude49": 1696385425,
-        "Princesse": 1696634939,
+        "Aude49": 1756607434,
         "pascalpioline": 1697003561,
         "EveJOURDIN": 1698718490,
         "MarieLaureGruauGeslot": 1702520534,
@@ -49074,16 +50076,30 @@
         "CarlosDreamer": 1733154759,
         "SergeMascaro": 1697237093,
         "RoselyneBinesse": 1697046013,
-        "Nomadanne": 1696635352,
-        "Cath44": 1735062093,
-        "DominiqueRoudiere": 1696627282
+        "Cath44": 1735062093
+      }
+    },
+    "XeniaLR": {
+      "index": 13678,
+      "owner_key": "5jaGLS4CHmRiFwuKtskigd9htdMF7qvwQS268p65CJEe",
+      "balance": 17802,
+      "membership_expire_on": 1727304435,
+      "next_cert_issuable_on": 1696733921,
+      "certs_received": {
+        "Flore45": 1759152624,
+        "MarieCathou": 1758933984,
+        "Antoine45": 1758939905,
+        "Xavier91": 1759030750,
+        "Delfine": 1758868586,
+        "Marino45": 1758939905,
+        "GalanD7745": 1759004185
       }
     },
     "DamageCo": {
       "index": 409,
       "owner_key": "5jfUpXPWAiBXNVG49tjQYA7R3VFX2oG2aPiskR5PE8Mc",
-      "balance": 1849615,
-      "membership_expire_on": 1697291144,
+      "balance": 1889301,
+      "membership_expire_on": 1725881410,
       "next_cert_issuable_on": 1669542834,
       "certs_received": {
         "b_presles": 1708576423,
@@ -49113,7 +50129,7 @@
     "Hernest": {
       "index": 8591,
       "owner_key": "5jnQuUd9vu4rB5VrJeDiTbsQ9k1Y1Wz5JcTikrEUFYjL",
-      "balance": 177643,
+      "balance": 220329,
       "membership_expire_on": 1713396080,
       "next_cert_issuable_on": 1692015049,
       "certs_received": {
@@ -49146,6 +50162,7 @@
         "Eastwood": 1733877377,
         "Meatball": 1750409363,
         "Escoufle": 1744869694,
+        "AnnParisot": 1755928879,
         "Myka": 1718169940,
         "Lylie_Bulle": 1746754931,
         "Buellton89": 1751330324,
@@ -49162,7 +50179,7 @@
     "Nausicaa": {
       "index": 13015,
       "owner_key": "5k9bpVbEyuuYj4RxbpdfNNmeQdE5JX6y8ecaQ2NFz9c3",
-      "balance": 96652,
+      "balance": 129938,
       "membership_expire_on": 1719347613,
       "next_cert_issuable_on": 1689058846,
       "certs_received": {
@@ -49176,7 +50193,7 @@
     "Onlyfab": {
       "index": 11130,
       "owner_key": "5kFpexPrptzansEcH9CZWaCuMApPJForRksrgVzXp3dt",
-      "balance": 254450,
+      "balance": 294136,
       "membership_expire_on": 1704400553,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -49190,26 +50207,39 @@
     "Droudrou": {
       "index": 2843,
       "owner_key": "5kWimGncmJFZuSbBC22mD28aP9HVMPCqq3AA3G61LSmk",
-      "balance": 1173406,
+      "balance": 1213092,
       "membership_expire_on": 1714236538,
-      "next_cert_issuable_on": 1670593534,
+      "next_cert_issuable_on": 1694087546,
       "certs_received": {
-        "Anthonycormier": 1696742963,
+        "Anthonycormier": 1756658232,
         "DonQuiche": 1711674740,
         "domdenantes": 1699861358,
-        "samyourte": 1696735450,
         "mimitoutvabien": 1723494036,
-        "Maaltir": 1695241649,
+        "Maaltir": 1757478479,
         "Fleurdeschamps": 1728499815,
         "Giroflee": 1705469870,
         "DanIcare": 1710993750
       }
     },
+    "JonathanCh": {
+      "index": 13521,
+      "owner_key": "5kY3JgPTtxJGGNM7cDPH3zDq61SnNm2ripvwzDhfu3jT",
+      "balance": 38288,
+      "membership_expire_on": 1723137174,
+      "next_cert_issuable_on": 1695388873,
+      "certs_received": {
+        "Inanna": 1756866324,
+        "Dom67": 1756855435,
+        "Barbatruc": 1756775568,
+        "BenFoxy": 1756768005,
+        "Katecat": 1756806325
+      }
+    },
     "valdedrome26": {
       "index": 6138,
       "owner_key": "5kdE5Bs5YGB2Gon2em1VyNiGadMsMywycRnWaN9vqVtW",
-      "balance": 624545,
-      "membership_expire_on": 1696156492,
+      "balance": 656685,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1679038796,
       "certs_received": {
         "FIFIMERCIER": 1700510845,
@@ -49230,9 +50260,9 @@
     "PhilippeLogiaco": {
       "index": 6324,
       "owner_key": "5kgenDZRVUDeseyD2MJgP2zPVjFjXNWtzzTYP9RZPuJZ",
-      "balance": 143112,
-      "membership_expire_on": 1700063868,
-      "next_cert_issuable_on": 1640856536,
+      "balance": 182798,
+      "membership_expire_on": 1726490085,
+      "next_cert_issuable_on": 1695009081,
       "certs_received": {
         "Petragizeh": 1701486402,
         "JusteAlex": 1704618002,
@@ -49242,13 +50272,15 @@
         "Cywil": 1705703796,
         "twix_bis": 1702006202,
         "MissSophie": 1701754708,
-        "SophieR03": 1709326292
+        "SophieR03": 1709326292,
+        "Eric-Frodon86": 1758053988,
+        "romainForca": 1758393678
       }
     },
     "AtmaRajpreet": {
       "index": 4065,
       "owner_key": "5kij4woQFiL6bMMtfZkmcgKCQRq13Mg3EtMYXrqYDAMc",
-      "balance": 527054,
+      "balance": 566740,
       "membership_expire_on": 1714659002,
       "next_cert_issuable_on": 1689064691,
       "certs_received": {
@@ -49262,13 +50294,14 @@
         "AtmaRajprem": 1721628939,
         "Coco46": 1744779235,
         "Annachronik": 1721669992,
-        "Bzh38": 1750505399
+        "Bzh38": 1750505399,
+        "Susheela": 1757157959
       }
     },
     "nanuk": {
       "index": 12137,
       "owner_key": "5kn67QsFagqbxzE32omWcBE8qYcvbXQJQCsCYgHmxUa7",
-      "balance": 196176,
+      "balance": 235862,
       "membership_expire_on": 1711464681,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -49286,19 +50319,12 @@
       "balance": 706289,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Brigitte": 1694659462,
-        "sisyphe": 1694557247,
-        "ortie": 1694559946,
-        "s00999": 1694559284,
-        "krischamp": 1694673343,
-        "Nounoursgt8946": 1694559946
-      }
+      "certs_received": {}
     },
     "QuickRabbit": {
       "index": 6787,
       "owner_key": "5knYBTwhHgxfpqpZ3Zd5Tbb1839z2fukep7MfC9JmubV",
-      "balance": 601047,
+      "balance": 640733,
       "membership_expire_on": 1704227362,
       "next_cert_issuable_on": 1666064798,
       "certs_received": {
@@ -49316,8 +50342,8 @@
     "Roco": {
       "index": 97,
       "owner_key": "5kpscasQx9p45TXJxtGV17G1Fw9URmMeqouz3x8FNYpB",
-      "balance": 870839,
-      "membership_expire_on": 1695221591,
+      "balance": 892199,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1686642792,
       "certs_received": {
         "Wilouchou": 1728596833,
@@ -49325,8 +50351,7 @@
         "Piouch": 1729065665,
         "armoni": 1698623892,
         "soeurmilotus": 1724295015,
-        "Cecilelaurent": 1696999056,
-        "Pommedapi": 1696578820
+        "Cecilelaurent": 1696999056
       }
     },
     "EmmanuelWidmer": {
@@ -49340,7 +50365,7 @@
     "Montsant": {
       "index": 10634,
       "owner_key": "5kraM2ywc7hBUx1Pbju3y9ZGXUFYpTdESHW1DYdccs2E",
-      "balance": 227515,
+      "balance": 80701,
       "membership_expire_on": 1701353697,
       "next_cert_issuable_on": 1680487586,
       "certs_received": {
@@ -49356,7 +50381,7 @@
     "Lazarine": {
       "index": 9008,
       "owner_key": "5kuF3QZtfKi5FFBJTgyzeRC2NLjmqxSZomztmrkuuAE1",
-      "balance": 610737,
+      "balance": 650423,
       "membership_expire_on": 1719050170,
       "next_cert_issuable_on": 1676515215,
       "certs_received": {
@@ -49399,7 +50424,7 @@
     "Dinosaure": {
       "index": 11073,
       "owner_key": "5kzpiBGB1pruaiM4z8ukwWXdmtGhz7RyLRCxK7gDYjtF",
-      "balance": 252904,
+      "balance": 292590,
       "membership_expire_on": 1703929691,
       "next_cert_issuable_on": 1675697923,
       "certs_received": {
@@ -49414,7 +50439,7 @@
     "MAILURROZ": {
       "index": 8888,
       "owner_key": "5m2HB8PuiN1tuFTQ9CjaftzHwhspyG2CH6mzNhRHNirD",
-      "balance": 212651,
+      "balance": 238947,
       "membership_expire_on": 1716500119,
       "next_cert_issuable_on": 1690005850,
       "certs_received": {
@@ -49463,7 +50488,7 @@
     "eric70": {
       "index": 12096,
       "owner_key": "5m9peA7NmwHmr6EVNdKQRFgBugXY4YQD46wmjtbfpnqi",
-      "balance": 171948,
+      "balance": 211634,
       "membership_expire_on": 1710425100,
       "next_cert_issuable_on": 1679732120,
       "certs_received": {
@@ -49525,7 +50550,7 @@
     "kassounette": {
       "index": 8266,
       "owner_key": "5mRCh4fuCRnkFUJH613GxQnjamxZBYwTznsFH38KKiJ4",
-      "balance": 486644,
+      "balance": 526330,
       "membership_expire_on": 1714766142,
       "next_cert_issuable_on": 1656416198,
       "certs_received": {
@@ -49539,13 +50564,12 @@
     "FrancoiseEpiard": {
       "index": 1040,
       "owner_key": "5mSk3HS6wLcpBZ82gJ1BBU4F7xHP4VJMcHYiP5Jbg5dr",
-      "balance": 1810142,
+      "balance": 1849828,
       "membership_expire_on": 1698003333,
       "next_cert_issuable_on": 1683508700,
       "certs_received": {
         "CelineNaturel": 1730849472,
         "SylvieClayer": 1733871815,
-        "MTNaturelpapillon": 1693948776,
         "MIEUSETb": 1730775577,
         "Floalchimistefee": 1730521337,
         "DominiqueRoudiere": 1730933298
@@ -49555,15 +50579,9 @@
       "index": 5619,
       "owner_key": "5mUmwwAY9V3AQYLNogVE93XTDLQs29KZKzC9hndgbntJ",
       "balance": 358689,
-      "membership_expire_on": 1721509232,
-      "next_cert_issuable_on": 1632750614,
-      "certs_received": {
-        "ElieLombard": 1693675716,
-        "GEKA": 1693948405,
-        "Margaux": 1693697345,
-        "MarineJ": 1693526710,
-        "Cigalou": 1696648276
-      }
+      "membership_expire_on": 0,
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "Cheminons": {
       "index": 3275,
@@ -49581,7 +50599,7 @@
     "Nilasco": {
       "index": 8803,
       "owner_key": "5mYv6XWJKUrP8tmHjt4Tz3yvfX3JAmQt18AWtGdpwmjo",
-      "balance": 456807,
+      "balance": 496493,
       "membership_expire_on": 1713184746,
       "next_cert_issuable_on": 1663205696,
       "certs_received": {
@@ -49598,11 +50616,11 @@
     "nuvolari": {
       "index": 5255,
       "owner_key": "5mdpWyadmwoCwoBAWk6vU9bdD5BTTPYdHAhrc5PTYXDr",
-      "balance": 848601,
+      "balance": 888287,
       "membership_expire_on": 1715946375,
       "next_cert_issuable_on": 1685630832,
       "certs_received": {
-        "myt": 1699682855,
+        "myt": 1756759858,
         "daryl": 1746597155,
         "Babaroun": 1702517153,
         "Pascale72": 1747587013,
@@ -49625,7 +50643,7 @@
     "Lanaosteo": {
       "index": 3554,
       "owner_key": "5ms3ZbSPTLG1UsK4H2FLQ2xtnFGtiQsHrJrw4NrcirHn",
-      "balance": 372812,
+      "balance": 412498,
       "membership_expire_on": 1721738812,
       "next_cert_issuable_on": 1690449699,
       "certs_received": {
@@ -49646,8 +50664,8 @@
     "gerardchavanon": {
       "index": 476,
       "owner_key": "5mv9d5YR1h5L2MffxWKevXsct27Abo8tSrz9bwGFSyiu",
-      "balance": 1973779,
-      "membership_expire_on": 1705784074,
+      "balance": 2013465,
+      "membership_expire_on": 1728070166,
       "next_cert_issuable_on": 1692787184,
       "certs_received": {
         "FLORESTRELA": 1713414671,
@@ -49681,7 +50699,7 @@
     "MyriamGuillot": {
       "index": 9702,
       "owner_key": "5mxK9UTajWNzQd1R2fMcK7XQ63XoKmvTWzBC7QyhZUrV",
-      "balance": 354709,
+      "balance": 394395,
       "membership_expire_on": 1722774778,
       "next_cert_issuable_on": 1691382634,
       "certs_received": {
@@ -49705,21 +50723,25 @@
     "LionLDouNIo": {
       "index": 9276,
       "owner_key": "5mz5xaugdfG4SaLBYT3yNBx1qnXsb5X4j8EHueB5o68K",
-      "balance": 85455,
+      "balance": 56026,
       "membership_expire_on": 1719859166,
-      "next_cert_issuable_on": 1692629103,
+      "next_cert_issuable_on": 1696264849,
       "certs_received": {
+        "FabFabounette": 1757192107,
         "MoreauCatherine": 1743661412,
         "OlivierHovasse": 1724256317,
+        "Ratnaboar": 1757652276,
         "CharlesHovasse": 1729053352,
         "Evelyne87": 1733377263,
         "Corinne-Co": 1744764647,
+        "Sylvia8636": 1757260235,
         "DimitriTuffreau": 1724268884,
         "MayaRT": 1724268556,
         "nat-uro86": 1744572830,
         "Rom1": 1724275364,
         "Martine86": 1747454223,
         "Cuicui86": 1750349036,
+        "LaPetiteMaisonDansLaPrairie": 1758072746,
         "NathydeSainteVerge": 1747983020,
         "ClaireNangyor": 1724274518,
         "Permabees": 1724285300,
@@ -49728,6 +50750,8 @@
         "Fred": 1752629039,
         "Noel": 1744157597,
         "DeniseHovasse": 1724258416,
+        "CoeurdeRigole": 1759335501,
+        "Eric-Frodon86": 1757453771,
         "ElricHovasse": 1729054505,
         "maritigrette": 1735345731,
         "ben078m": 1733885543,
@@ -49737,7 +50761,7 @@
     "Lovylou": {
       "index": 11892,
       "owner_key": "5n2iHN5phJPQP4CWDZ6keLDD8RNy4UrBCApmkUnhxjyW",
-      "balance": 189969,
+      "balance": 229655,
       "membership_expire_on": 1708820905,
       "next_cert_issuable_on": 1691651243,
       "certs_received": {
@@ -49757,14 +50781,17 @@
     "Sangita": {
       "index": 9336,
       "owner_key": "5n5cG3DxXvuewfMHhxrczaCU6LHfSewbdL7dx3dbx5jv",
-      "balance": 451746,
+      "balance": 537132,
       "membership_expire_on": 1724790506,
-      "next_cert_issuable_on": 1670593534,
+      "next_cert_issuable_on": 1696130177,
       "certs_received": {
+        "CeHunin": 1759204945,
         "Bourgoispat": 1724380967,
         "MarieFrance": 1724276472,
+        "123Marie": 1757790623,
         "Vio": 1728266669,
         "CTL": 1724748029,
+        "Sycol": 1759650244,
         "Stelzchantal": 1724734087,
         "Miam71": 1724274518,
         "StregaBianca": 1729381994
@@ -49773,7 +50800,7 @@
     "UlrikeBauereis": {
       "index": 12884,
       "owner_key": "5n5gjB2UCBa3aMkTZrh3cSPo8RBGk9Mu5Zcyw8LUg8rF",
-      "balance": 455672,
+      "balance": 678358,
       "membership_expire_on": 1717162961,
       "next_cert_issuable_on": 1692964139,
       "certs_received": {
@@ -49788,7 +50815,7 @@
     "lanarz": {
       "index": 13048,
       "owner_key": "5n8hqoNCJLphp9316ErnS6Xddw8XoaEJJ5NHmw1n5G6V",
-      "balance": 65148,
+      "balance": 104834,
       "membership_expire_on": 1719181352,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -49803,7 +50830,7 @@
     "mat": {
       "index": 852,
       "owner_key": "5nHhk6wwHELKPn5zvUYjzK9gN1iT214udKyXg5PFazq3",
-      "balance": 1237772,
+      "balance": 1277458,
       "membership_expire_on": 1698610106,
       "next_cert_issuable_on": 1676147583,
       "certs_received": {
@@ -49838,7 +50865,7 @@
     "haddock": {
       "index": 2022,
       "owner_key": "5nZDE4nyBYCGbsqXaRHNp9gpUBEbGsq6ELmytjjwuLC7",
-      "balance": 688330,
+      "balance": 760216,
       "membership_expire_on": 1721846634,
       "next_cert_issuable_on": 1683714708,
       "certs_received": {
@@ -49867,20 +50894,21 @@
         "Vertsauvage": 1738034098,
         "Solight777": 1728558875,
         "Luc34": 1731359436,
-        "Isabiloba": 1720991149,
-        "Misspio": 1694838518
+        "Isabiloba": 1720991149
       }
     },
     "Damadespadas": {
       "index": 12630,
       "owner_key": "5nZWtoAcLGHrAuiYrv29BYPFG7JbpyNu6SpEhJvQDiAP",
-      "balance": 138731,
+      "balance": 185012,
       "membership_expire_on": 1715267617,
-      "next_cert_issuable_on": 1691501949,
+      "next_cert_issuable_on": 1694320892,
       "certs_received": {
+        "AfricadeHarmonia": 1759268283,
         "Kristo": 1746983646,
         "AlexanderT": 1751540612,
         "RainbowQueen": 1747027286,
+        "mariabiodanza": 1757365465,
         "Anadi": 1747016219,
         "Aurora-SandraMogo": 1747013865,
         "Flordocampo": 1747088587
@@ -49889,7 +50917,7 @@
     "anakuna": {
       "index": 12636,
       "owner_key": "5nbR2fwbmkurw35g2Z3uK9tJyqSJGUtzGJ5GficShy6v",
-      "balance": 171907,
+      "balance": 196593,
       "membership_expire_on": 1712070758,
       "next_cert_issuable_on": 1688263996,
       "certs_received": {
@@ -49902,26 +50930,40 @@
         "ViudasDasTerras": 1747165954
       }
     },
+    "Bea971": {
+      "index": 13488,
+      "owner_key": "5ncSDLLMbAKEk9yzMUYaofbgRdx3CT7DS8i1Forgwiya",
+      "balance": 78660,
+      "membership_expire_on": 1725223518,
+      "next_cert_issuable_on": 1695473943,
+      "certs_received": {
+        "Miriam3": 1756851246,
+        "fred09bl": 1756843683,
+        "Perrine971": 1756847923,
+        "Jade971": 1756842746,
+        "AnneSo": 1757286850,
+        "MOUCHE971": 1756851027,
+        "Brit971": 1756888292,
+        "Ivann971": 1756864971
+      }
+    },
     "Aramil": {
       "index": 2766,
       "owner_key": "5nkHUn3PU4sYzzvTy7LHR9k3uTDm2uymYbfv4PBPxYni",
-      "balance": 1449098,
-      "membership_expire_on": 1702250567,
+      "balance": 1483394,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1685284867,
       "certs_received": {
         "Marc135": 1697657164,
         "TataYoyo": 1697657164,
-        "Puppi": 1696291416,
-        "Aibai": 1696292006,
-        "ZZR": 1697657465,
-        "HerrW": 1696441606
+        "ZZR": 1697657465
       }
     },
     "fabiennezuttre": {
       "index": 9322,
       "owner_key": "5nogeWDbxzCWUUeeCu2rqqWU5Yh3nPV1nfwvfmWjs7GU",
-      "balance": 435979,
-      "membership_expire_on": 0,
+      "balance": 473529,
+      "membership_expire_on": 1725215189,
       "next_cert_issuable_on": 1682600616,
       "certs_received": {
         "Steph50": 1724282685,
@@ -49936,7 +50978,7 @@
     "Clocloduveau": {
       "index": 6967,
       "owner_key": "5nptuTuVzeuzoEUUgUmrEbNSxaBsMpBrGPJnJ8Zx6P6u",
-      "balance": 536275,
+      "balance": 575961,
       "membership_expire_on": 1711497510,
       "next_cert_issuable_on": 1680873128,
       "certs_received": {
@@ -49951,7 +50993,7 @@
     "PauleJany1802": {
       "index": 11883,
       "owner_key": "5nr4aa7e3HNp8iwFk9C1hiMedn2Qe7ZrDRqovZkaA9jp",
-      "balance": 520315,
+      "balance": 560001,
       "membership_expire_on": 1709594401,
       "next_cert_issuable_on": 1678520100,
       "certs_received": {
@@ -49965,7 +51007,7 @@
     "Celina": {
       "index": 8842,
       "owner_key": "5ny4XpCt9zF94s1nbH4ptWWFwDujvw2Rh4pzS5QTHYVi",
-      "balance": 397016,
+      "balance": 436702,
       "membership_expire_on": 1721221519,
       "next_cert_issuable_on": 1676623466,
       "certs_received": {
@@ -49989,7 +51031,7 @@
     "Pascaleb": {
       "index": 8371,
       "owner_key": "5o2Dpx8WDKLozsgqiZXmaQDBxvNKCwRPbZdZtWMU1q4T",
-      "balance": 473636,
+      "balance": 503322,
       "membership_expire_on": 1711394416,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -50003,7 +51045,7 @@
     "lolinette": {
       "index": 2363,
       "owner_key": "5o5vkhNwygSE7ZQjt2BMpKbZ4hc2ngrtKRGeyMhJnV5a",
-      "balance": 1215516,
+      "balance": 1255202,
       "membership_expire_on": 1722432389,
       "next_cert_issuable_on": 1685189561,
       "certs_received": {
@@ -50028,7 +51070,7 @@
     "Avogadron": {
       "index": 7932,
       "owner_key": "5oMQsmDSVymk1H7rTxn8JL6AZ9k11MDsiwXo4QXVDybD",
-      "balance": 560221,
+      "balance": 599907,
       "membership_expire_on": 1707867419,
       "next_cert_issuable_on": 1659952817,
       "certs_received": {
@@ -50042,7 +51084,7 @@
     "Pazuca": {
       "index": 7866,
       "owner_key": "5oMcbXQyCmsSYxzR2H1X2GQz2JrH9SA2tLUcfvBSTLke",
-      "balance": 259124,
+      "balance": 298810,
       "membership_expire_on": 1711408975,
       "next_cert_issuable_on": 1679802082,
       "certs_received": {
@@ -50077,7 +51119,7 @@
     "NoaChanoine": {
       "index": 12176,
       "owner_key": "5oPr8nnSHvU1YvQJxP7zUJD3JVrYUvNvMgY3oT7fQtR8",
-      "balance": 160472,
+      "balance": 200158,
       "membership_expire_on": 1710322468,
       "next_cert_issuable_on": 1686406806,
       "certs_received": {
@@ -50093,7 +51135,7 @@
     "ArianeB": {
       "index": 11284,
       "owner_key": "5oRbcbRudeXkZK7gaDeBbHY848LwtCaB6EPzsZkT98Gm",
-      "balance": 258955,
+      "balance": 298641,
       "membership_expire_on": 1703287328,
       "next_cert_issuable_on": 1689149619,
       "certs_received": {
@@ -50127,7 +51169,7 @@
     "Pamelahh": {
       "index": 4705,
       "owner_key": "5oRmxhEXZFDUWNhgwju5GfY15RwRn9fvvWc4pVm6Hbx7",
-      "balance": 435905,
+      "balance": 385905,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1684256102,
       "certs_received": {
@@ -50140,9 +51182,9 @@
     "Kouleurs": {
       "index": 6907,
       "owner_key": "5oWqM4YURKAgUpbZaJSUaqXzWchTcTTvMmUyb7KGniuG",
-      "balance": 125013,
+      "balance": 305699,
       "membership_expire_on": 1701716922,
-      "next_cert_issuable_on": 1692276502,
+      "next_cert_issuable_on": 1696559310,
       "certs_received": {
         "kapis": 1744420502,
         "Manu_El": 1743042739,
@@ -50163,6 +51205,7 @@
         "JerryBB": 1752860401,
         "PerePinyolTortosa": 1737661108,
         "Angharad": 1726673780,
+        "Meiluce": 1759348535,
         "mae": 1740735609,
         "Etoilecassiopee": 1734195714,
         "LaSoyeFee": 1732948273,
@@ -50195,38 +51238,35 @@
     "gui_tooun": {
       "index": 5715,
       "owner_key": "5od17N1yN1J3gowSFExkeASHwGySU3zKhxtVPd4x8fTY",
-      "balance": 1392664,
+      "balance": 1518430,
       "membership_expire_on": 1717610765,
-      "next_cert_issuable_on": 1690640224,
+      "next_cert_issuable_on": 1696590542,
       "certs_received": {
-        "lanoire": 1695189563,
-        "CELIOCTAVE": 1695626428,
         "Cyrius666": 1717343607,
-        "yosoycomoeloso": 1695170824,
         "Lesamourai": 1734504357,
         "YIKING": 1708661462,
-        "EveC": 1695622873,
         "Pashi": 1732248114,
-        "ortie": 1695621084,
+        "ortie": 1758150978,
         "s00999": 1707456386,
         "Shaypalgv": 1733799253,
+        "Framboise89": 1756600889,
         "Guillermo89": 1756151443,
         "Ninette89": 1732830215,
         "Aard89": 1724587766,
         "naturel89": 1754255541,
         "Samadhi": 1707456386,
-        "Amelmag89": 1716530561,
-        "MutatisMutandis": 1695629620
+        "Amelmag89": 1716530561
       }
     },
     "Maminou13": {
       "index": 5572,
       "owner_key": "5ofMbjS5KQiZAQcuGHGFES3BjniGXaPi8oP3t5LUy1TD",
-      "balance": 424250,
+      "balance": 511236,
       "membership_expire_on": 1714997859,
-      "next_cert_issuable_on": 1691585747,
+      "next_cert_issuable_on": 1696812572,
       "certs_received": {
         "IsiaLe": 1721091189,
+        "Chantal": 1759776867,
         "Eveilducoeur": 1748219662,
         "Selena": 1713496576,
         "RomainKornig": 1725411803,
@@ -50243,7 +51283,7 @@
         "Yamina": 1723252859,
         "Myosotis": 1724975384,
         "SylvieDelage": 1714802195,
-        "DCat": 1699510616,
+        "DCat": 1759812178,
         "Marionnette": 1724006348,
         "Ninou01": 1710371093,
         "Diessanne": 1697501101,
@@ -50275,7 +51315,7 @@
     "AITAN": {
       "index": 12087,
       "owner_key": "5ohUCfQ7aBnyBg5yiZcyeTLPNd4xkhMcjk7zoefDaiGU",
-      "balance": 183011,
+      "balance": 202697,
       "membership_expire_on": 1710778649,
       "next_cert_issuable_on": 1680254527,
       "certs_received": {
@@ -50304,7 +51344,6 @@
       "next_cert_issuable_on": 1664974853,
       "certs_received": {
         "HugoTrib": 1728592552,
-        "IsaLecot": 1696210286,
         "LucileFeuilleau": 1711674531,
         "PascalinePacati": 1710995980,
         "NathanGruau": 1698706729,
@@ -50316,9 +51355,9 @@
     "nathanaelf": {
       "index": 9337,
       "owner_key": "5osHShb4bwZ9WJSjCEpxJiAYWPaQh57jsff1zH7gEvfb",
-      "balance": 391958,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1684291800,
+      "balance": 385624,
+      "membership_expire_on": 1726417304,
+      "next_cert_issuable_on": 1696231660,
       "certs_received": {
         "PatrickFlouriot": 1725046193,
         "Milan": 1724727480,
@@ -50341,7 +51380,7 @@
     "Sylvie07": {
       "index": 7764,
       "owner_key": "5oszFxH3VZmb7CJZ7DbUW25jLdR2E6Vx83aS8RnysJem",
-      "balance": 508233,
+      "balance": 547919,
       "membership_expire_on": 1710522375,
       "next_cert_issuable_on": 1687212049,
       "certs_received": {
@@ -50366,8 +51405,8 @@
     "Lilou8888": {
       "index": 9856,
       "owner_key": "5p5j6EFprH9be3cyTcmWJTjzrp7FkPBDVn6ZBjJdeepG",
-      "balance": 345928,
-      "membership_expire_on": 1696316060,
+      "balance": 380224,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1684391728,
       "certs_received": {
         "Sunny": 1736377420,
@@ -50391,7 +51430,7 @@
     "Leonardo73": {
       "index": 6795,
       "owner_key": "5pBc834qfxYT7Bzsgnf78GcxEgTgc2xUSwaw97eTpZpK",
-      "balance": 331087,
+      "balance": 370773,
       "membership_expire_on": 1724681506,
       "next_cert_issuable_on": 1688387824,
       "certs_received": {
@@ -50430,7 +51469,7 @@
     "Becassine81": {
       "index": 12009,
       "owner_key": "5pM7kVG9wYLJH4E9R63nq5bt4GaNChen9iNrh5zKW97w",
-      "balance": 224379,
+      "balance": 264065,
       "membership_expire_on": 1709565270,
       "next_cert_issuable_on": 1685948020,
       "certs_received": {
@@ -50444,7 +51483,7 @@
     "InesHappyFamily": {
       "index": 11887,
       "owner_key": "5pMsfExgCHgBGEoxYk5qu4mtrErwqnGEHLWVpNX5eE2P",
-      "balance": 197087,
+      "balance": 236773,
       "membership_expire_on": 1708429273,
       "next_cert_issuable_on": 1689130320,
       "certs_received": {
@@ -50499,7 +51538,7 @@
     "Tivuse": {
       "index": 11727,
       "owner_key": "5pfrPefU2mYCtf8E9eC1YqZj1xDxcxoQUAewbmteVfqh",
-      "balance": 202677,
+      "balance": 242363,
       "membership_expire_on": 1708219501,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -50521,8 +51560,8 @@
     "Marite": {
       "index": 5606,
       "owner_key": "5q2KwuHeiis4TV68UDF2W6g8KbmrzBbEUKqq1YY51dDp",
-      "balance": 651242,
-      "membership_expire_on": 1695662263,
+      "balance": 677992,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1639312906,
       "certs_received": {
         "DonQuiche": 1707878856,
@@ -50551,7 +51590,7 @@
     "Elsaz": {
       "index": 1743,
       "owner_key": "5qZTZ4RP4knr8fn4WuE9xU4mLYPvcqyHyM6ZE2N7SPFK",
-      "balance": 1697976,
+      "balance": 1737662,
       "membership_expire_on": 1697199018,
       "next_cert_issuable_on": 1666666626,
       "certs_received": {
@@ -50566,9 +51605,9 @@
     "Berniebx": {
       "index": 6375,
       "owner_key": "5qZTZzE7MAM1PC6gWYTqzamNdGBEDSxedGLFsijb5PfJ",
-      "balance": 562684,
-      "membership_expire_on": 1698581578,
-      "next_cert_issuable_on": 1682780047,
+      "balance": 629870,
+      "membership_expire_on": 1726237210,
+      "next_cert_issuable_on": 1695439951,
       "certs_received": {
         "Amiel": 1709090683,
         "Michel-Immerzeel": 1713910976,
@@ -50576,8 +51615,10 @@
         "amandinehinnekens": 1702162208,
         "Fabi26": 1727413350,
         "CatherineMonastirieff": 1745194966,
+        "DominiqueA": 1757794343,
         "PatHamster": 1702447083,
         "fanfan": 1700882933,
+        "RoryKiwi": 1757455712,
         "Vio": 1712621624,
         "Jeannelle": 1715177925,
         "MicheleMaton": 1752367915,
@@ -50588,7 +51629,7 @@
     "jethrotull": {
       "index": 8885,
       "owner_key": "5qdHwC5rhPNeL4Cp16Pkxhny5imwEy39jw9z8AbbS2gE",
-      "balance": 251483,
+      "balance": 211169,
       "membership_expire_on": 1716918165,
       "next_cert_issuable_on": 1669686903,
       "certs_received": {
@@ -50614,25 +51655,25 @@
     "ChristopheCompere": {
       "index": 5140,
       "owner_key": "5r2RZNYX1dCrzowJTWQifNjvJu8WP54eCqT5fkJPqVRA",
-      "balance": 696285,
+      "balance": 725971,
       "membership_expire_on": 1712620705,
-      "next_cert_issuable_on": 1688973270,
+      "next_cert_issuable_on": 1696596269,
       "certs_received": {
         "Olilove": 1702928322,
         "casadesam": 1748502207,
-        "NirmalaMary": 1694664035,
         "Maquilleuse": 1701849589,
         "Lando": 1717494719,
         "ChristelleHerbagemembre": 1700544435,
-        "SELHENIA": 1737486828
+        "SELHENIA": 1737486828,
+        "BDMan": 1759733370
       }
     },
     "Sorgentini": {
       "index": 12809,
       "owner_key": "5r4qube7yXcn67yyxwXhpB7pj8ApfL7HRT9hS398fvjt",
-      "balance": 113152,
+      "balance": 140526,
       "membership_expire_on": 1716957270,
-      "next_cert_issuable_on": 1689608827,
+      "next_cert_issuable_on": 1696766175,
       "certs_received": {
         "Josemi108": 1748536531,
         "Gloria974": 1748746932,
@@ -50650,7 +51691,7 @@
     "Flor4": {
       "index": 5198,
       "owner_key": "5r7av15jurV7UYjWvfy9QL8cxS4EorvNnQoCG1GhH53a",
-      "balance": 665075,
+      "balance": 704761,
       "membership_expire_on": 1715360120,
       "next_cert_issuable_on": 1686403771,
       "certs_received": {
@@ -50660,13 +51701,14 @@
         "ThomasTango": 1751422594,
         "Omkara": 1747925586,
         "JacquesMorot": 1748101378,
-        "Leticia": 1747336148
+        "Leticia": 1747336148,
+        "Nico34": 1755126101
       }
     },
     "Anaya": {
       "index": 10324,
       "owner_key": "5r85fghugkTWTiXcUNVLj8oXnGkBi6BeW3Ju1z6uGXvM",
-      "balance": 309836,
+      "balance": 349522,
       "membership_expire_on": 1699803838,
       "next_cert_issuable_on": 1674011222,
       "certs_received": {
@@ -50696,7 +51738,7 @@
     "Tatacoa": {
       "index": 8118,
       "owner_key": "5rGnk28FyF6Nh1Ga2vwdTvui1e3fP7g2vijn9PatSQdq",
-      "balance": 398205,
+      "balance": 437891,
       "membership_expire_on": 1712585864,
       "next_cert_issuable_on": 1676775271,
       "certs_received": {
@@ -50714,7 +51756,7 @@
     "MariO": {
       "index": 7808,
       "owner_key": "5rQ9YtVVy4LZuxkrS899FzxrJkroeJcTWm9Uytv856oo",
-      "balance": 523429,
+      "balance": 563115,
       "membership_expire_on": 1711322772,
       "next_cert_issuable_on": 1651557678,
       "certs_received": {
@@ -50736,11 +51778,13 @@
     "gege110560": {
       "index": 9391,
       "owner_key": "5rXivkbPPaTBG2WULQjzAFx9hv7NjwmUHr8yXfBm7WPo",
-      "balance": 457762,
+      "balance": 502048,
       "membership_expire_on": 1719780247,
-      "next_cert_issuable_on": 1693037067,
+      "next_cert_issuable_on": 1696558909,
       "certs_received": {
         "nashira": 1724913660,
+        "JC29": 1756653255,
+        "Sylvdesbois": 1759374083,
         "Caline29": 1737613821,
         "Andrelie": 1727561159,
         "Carole26": 1729618978,
@@ -50762,6 +51806,7 @@
         "Vagueabonds": 1725231753,
         "Mcm2": 1740546935,
         "Francesca": 1732162741,
+        "DidiX": 1758410298,
         "SophieMD": 1725216499
       }
     },
@@ -50778,7 +51823,7 @@
     "gladTDH": {
       "index": 12855,
       "owner_key": "5reupK71q7mMKFWiurcsQVA8axGTd9CuyQKVaNtknt2n",
-      "balance": 127576,
+      "balance": 167262,
       "membership_expire_on": 1717743455,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -50792,9 +51837,9 @@
     "Tico": {
       "index": 6828,
       "owner_key": "5rhgWh59dVznqiF5tLGXgDHVg2QRcrNPLLpESGRmyPnx",
-      "balance": 557449,
+      "balance": 612085,
       "membership_expire_on": 1701186844,
-      "next_cert_issuable_on": 1686265030,
+      "next_cert_issuable_on": 1696070992,
       "certs_received": {
         "Katiecat": 1745975871,
         "JeromeGolliet": 1732227057,
@@ -50815,9 +51860,9 @@
     "marinetfrommars": {
       "index": 6974,
       "owner_key": "5rsUAKukMgoSLfKJGzxS5K3Z9SKnCtuHULyeR2s9p6V5",
-      "balance": 678491,
+      "balance": 659177,
       "membership_expire_on": 1702402063,
-      "next_cert_issuable_on": 1693222678,
+      "next_cert_issuable_on": 1695019599,
       "certs_received": {
         "Nagual": 1705532426,
         "agustinton": 1733034774,
@@ -50844,7 +51889,7 @@
     "Mikatoshi": {
       "index": 7316,
       "owner_key": "5rspYJQcVHZs3BobhGu7pNBcs57xNYnL6M7eEXHMfKf8",
-      "balance": 347373,
+      "balance": 387059,
       "membership_expire_on": 1705585246,
       "next_cert_issuable_on": 1671441334,
       "certs_received": {
@@ -50862,8 +51907,8 @@
     "MarinaMB": {
       "index": 6060,
       "owner_key": "5ruCQM24soUk7snQtCnfi4qn6xWGmzyyAiwx67wXwPK4",
-      "balance": 254809,
-      "membership_expire_on": 1694356979,
+      "balance": 265489,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1652790022,
       "certs_received": {
         "mluque71": 1699860526,
@@ -50880,9 +51925,9 @@
     "Feltai": {
       "index": 9671,
       "owner_key": "5ruvHeYqYpmkY13w9u4DLusTDeKqqY8ACQq7h3UgmJZP",
-      "balance": 179468,
+      "balance": 92254,
       "membership_expire_on": 1724332003,
-      "next_cert_issuable_on": 1685074308,
+      "next_cert_issuable_on": 1696603940,
       "certs_received": {
         "Noelia": 1746316965,
         "AlvaroFernandez": 1727075838,
@@ -50891,6 +51936,7 @@
         "Dixebral": 1727076961,
         "mariabiodanza": 1727073074,
         "Thito": 1733960392,
+        "AmaNacer": 1756591594,
         "CristinaAbella": 1727078343,
         "alberto_wabisabi": 1727331390
       }
@@ -50954,7 +52000,7 @@
     "Loonys": {
       "index": 7579,
       "owner_key": "5satATJNpCqqNafuTfZx3758SGRHbRx6gazZxLfqVKdC",
-      "balance": 537473,
+      "balance": 577159,
       "membership_expire_on": 1710797034,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -50971,8 +52017,8 @@
     "Josepeuta": {
       "index": 6526,
       "owner_key": "5seBQtApt43EoVjRR8eTJaDtg8x8sMXWX3KjGsuJjNnV",
-      "balance": 102502,
-      "membership_expire_on": 1698658945,
+      "balance": 367474,
+      "membership_expire_on": 1725279331,
       "next_cert_issuable_on": 1690005850,
       "certs_received": {
         "kapis": 1703801306,
@@ -50998,6 +52044,7 @@
         "Simplementemaria": 1716662944,
         "Chus": 1727646710,
         "MAILURROZ": 1753049050,
+        "realbrucest": 1755562251,
         "Semilla": 1717181764,
         "Madreselva": 1718166567,
         "LI21": 1712733489,
@@ -51088,7 +52135,7 @@
     "Cyrius666": {
       "index": 8329,
       "owner_key": "5swgozvxX2RinY5HNXEpGt9SmWh1RkMhpq1YeJm2TwLn",
-      "balance": 1444318,
+      "balance": 1559004,
       "membership_expire_on": 1711241896,
       "next_cert_issuable_on": 1689194370,
       "certs_received": {
@@ -51126,7 +52173,7 @@
     "PascalePoelman": {
       "index": 8164,
       "owner_key": "5syjNVhyGLgzsNL6xTpHzcxvqt3mJHoQLCoBh7S2J3wa",
-      "balance": 492321,
+      "balance": 532007,
       "membership_expire_on": 1718909529,
       "next_cert_issuable_on": 1679159092,
       "certs_received": {
@@ -51141,7 +52188,7 @@
     "LaurenceT": {
       "index": 7299,
       "owner_key": "5t2tBh9my3xZ3WYxcXY1nGeVQpwGG5Ku49RaVS1XHXRb",
-      "balance": 564415,
+      "balance": 604101,
       "membership_expire_on": 1708978290,
       "next_cert_issuable_on": 1678113839,
       "certs_received": {
@@ -51170,7 +52217,7 @@
     "LauraPDF": {
       "index": 13025,
       "owner_key": "5t3jSBnpJ1wAj15WR8W3s6Zg8ngqrzX9uZgvBjEGeU39",
-      "balance": 173644,
+      "balance": 213331,
       "membership_expire_on": 1719152561,
       "next_cert_issuable_on": 1691744834,
       "certs_received": {
@@ -51188,18 +52235,31 @@
     "Laulau": {
       "index": 5509,
       "owner_key": "5t6EyRRvp4mwm9E3zfmn67ijLwdbkSHCqSbuNjZfdiUL",
-      "balance": 672021,
+      "balance": 711707,
       "membership_expire_on": 1718548939,
-      "next_cert_issuable_on": 1658155742,
+      "next_cert_issuable_on": 1694837697,
       "certs_received": {
         "Karigera": 1700719092,
         "Thorvald": 1721271785,
-        "CookieLilas": 1695668358,
         "Pogona": 1705538075,
         "Mariviere": 1699936854,
         "tatinetteb": 1755246155
       }
     },
+    "ElynElios": {
+      "index": 13743,
+      "owner_key": "5t9Y9dJncYjDyTqhUpDwbCa7CLFR4ahLGdMzebKo6UQr",
+      "balance": 126734,
+      "membership_expire_on": 1727394573,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Hebou": 1758953969,
+        "MarieG46": 1759270821,
+        "CathD": 1758997817,
+        "ArletB": 1759606709,
+        "Carolonsdonc": 1758953744
+      }
+    },
     "ConstanceLatour": {
       "index": 4957,
       "owner_key": "5tPt9zuXcYmEwGzv4WTYPkFmn9btUQvEkfyCpRX7bv8d",
@@ -51219,11 +52279,12 @@
     "MaiseD": {
       "index": 7811,
       "owner_key": "5tbXMGhDdumzfDwZZnXa252rnzvxrQAepCaCjzihuEk7",
-      "balance": 107290,
+      "balance": 135476,
       "membership_expire_on": 1716659105,
-      "next_cert_issuable_on": 1675078559,
+      "next_cert_issuable_on": 1695810022,
       "certs_received": {
         "Abrialys": 1732650908,
+        "Ofildevie": 1758921696,
         "Georges": 1713685992,
         "ALPIGirou": 1745019225,
         "LeoLiens": 1713672332,
@@ -51243,8 +52304,7 @@
         "ZazieND": 1728119249,
         "Jeffrenchpilot": 1730697498,
         "PiNguyen": 1728014123,
-        "AurelieDouay": 1728118937,
-        "Misspio": 1694838518
+        "AurelieDouay": 1728118937
       }
     },
     "Fanfan": {
@@ -51258,7 +52318,7 @@
     "GerardSiegle": {
       "index": 486,
       "owner_key": "5tp5GZRGfDPm3uBaadWLpJ7x6C1ZP5PkyiZoW3oe7ukH",
-      "balance": 1877230,
+      "balance": 1916916,
       "membership_expire_on": 1712953556,
       "next_cert_issuable_on": 1681469758,
       "certs_received": {
@@ -51267,14 +52327,13 @@
         "CharlesAbecassis": 1721458873,
         "Pascale72": 1744611846,
         "AnneAmbles": 1701251487,
-        "RoselyneBinesse": 1700467100,
-        "AbelGilles": 1696036462
+        "RoselyneBinesse": 1700467100
       }
     },
     "Sauge5076": {
       "index": 12629,
       "owner_key": "5tq9F4yL7jzEDLn7viDjZzEtsT4eBvqjcmnQLat1ACaB",
-      "balance": 178648,
+      "balance": 218334,
       "membership_expire_on": 1715097148,
       "next_cert_issuable_on": 1691404936,
       "certs_received": {
@@ -51288,7 +52347,7 @@
     "Marmotte": {
       "index": 7082,
       "owner_key": "5ts5hqRXAQSBzWLE5U6Xb1QDuD6XPkUsTNyvPZtFriG3",
-      "balance": 524213,
+      "balance": 571899,
       "membership_expire_on": 1706925602,
       "next_cert_issuable_on": 1661049690,
       "certs_received": {
@@ -51304,7 +52363,7 @@
     "realbrucest": {
       "index": 13295,
       "owner_key": "5u5P5isvz3P6Rmc8g4eKFgsCE2NYsAPFiR7bEkj7X9Up",
-      "balance": 159176,
+      "balance": 198862,
       "membership_expire_on": 1722457048,
       "next_cert_issuable_on": 1692519492,
       "certs_received": {
@@ -51312,16 +52371,18 @@
         "LaMatriarcaToro": 1754120183,
         "EstherVM": 1754124077,
         "Madreselva": 1754131280,
+        "virginiaoreoro": 1757459954,
         "MaEstherG1": 1754120183,
         "Juanmatierraplana": 1754123154,
         "MACANATURE": 1754014857,
+        "mellamanhernan": 1757304667,
         "MERYFITT": 1754076212
       }
     },
     "Maelstrom": {
       "index": 4943,
       "owner_key": "5uBq1FpChW8idCubYkKkMUR7YPpsQV4SvDs22tog9Qh9",
-      "balance": 817945,
+      "balance": 857631,
       "membership_expire_on": 1702729270,
       "next_cert_issuable_on": 1686576353,
       "certs_received": {
@@ -51343,9 +52404,9 @@
     "Marylin": {
       "index": 11279,
       "owner_key": "5uQ87ir3E6CBKMHkTdvs2HEVedsPqSmHJV622KDL4gZW",
-      "balance": 242683,
+      "balance": 282369,
       "membership_expire_on": 1705359360,
-      "next_cert_issuable_on": 1693522351,
+      "next_cert_issuable_on": 1694815751,
       "certs_received": {
         "NAMA-STE": 1737314616,
         "RoryKiwi": 1737306884,
@@ -51357,9 +52418,9 @@
     "ClaireM97410": {
       "index": 8761,
       "owner_key": "5ueFzJGYmfCj9fNWi3FZ84UuiBgkismc2MH2p6JareWz",
-      "balance": 409159,
+      "balance": 330045,
       "membership_expire_on": 1714988961,
-      "next_cert_issuable_on": 1691001651,
+      "next_cert_issuable_on": 1693967599,
       "certs_received": {
         "Zoul": 1734906768,
         "mimone974": 1719624736,
@@ -51373,6 +52434,7 @@
         "KC974": 1728928798,
         "AgnesDallaVijaya": 1751752228,
         "PlanchaudAndree": 1744746766,
+        "Diessanne": 1757480758,
         "Corinne974": 1719330021,
         "SophieCD974": 1739718703,
         "Linya": 1740792742,
@@ -51401,10 +52463,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "PedroX": {
+      "index": 13484,
+      "owner_key": "5ufEqtxo8gFYvNBwSL76AdTJtewjDcC5rwXnDHoALtB2",
+      "balance": 65808,
+      "membership_expire_on": 1724863419,
+      "next_cert_issuable_on": 1695966921,
+      "certs_received": {
+        "Damaso": 1756830480,
+        "Mariaje": 1756830701,
+        "VICTORF": 1756947672,
+        "Alberto": 1756745676,
+        "GRUKSY": 1756536300,
+        "sarava": 1756581673
+      }
+    },
     "Aurelielight": {
       "index": 6353,
       "owner_key": "5urz39sv85qjD7LXq7pptg48HZDSr2tzUei5cgaGrE9B",
-      "balance": 291240,
+      "balance": 330926,
       "membership_expire_on": 1706447621,
       "next_cert_issuable_on": 1665102153,
       "certs_received": {
@@ -51436,7 +52513,7 @@
     "Titia13": {
       "index": 13332,
       "owner_key": "5vFYmoQSYbAKpQ4VupVELmx4PPS9HfegFhnF2tyNW1PS",
-      "balance": 25632,
+      "balance": 41318,
       "membership_expire_on": 1722347961,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -51450,7 +52527,7 @@
     "Aurelien": {
       "index": 9923,
       "owner_key": "5vKdMLptEa28Ei7yzXk5rmoULQzE6nVv2rhnubkEEMMu",
-      "balance": 342406,
+      "balance": 381092,
       "membership_expire_on": 1722067916,
       "next_cert_issuable_on": 1690582316,
       "certs_received": {
@@ -51465,7 +52542,7 @@
     "Violette33": {
       "index": 4521,
       "owner_key": "5vNQM7UWAJyeWtjAk87u8AyEnBfgdZvPCPopo3BatnD3",
-      "balance": 884340,
+      "balance": 924026,
       "membership_expire_on": 1701288495,
       "next_cert_issuable_on": 1678873445,
       "certs_received": {
@@ -51495,7 +52572,7 @@
     "metakiaze": {
       "index": 8773,
       "owner_key": "5viQ3xU5j1dZjJgH4oJ56hWL4qNWydAYNebCGkBtQB9B",
-      "balance": 430672,
+      "balance": 470358,
       "membership_expire_on": 1719776072,
       "next_cert_issuable_on": 1658053304,
       "certs_received": {
@@ -51513,19 +52590,22 @@
     "Ananas21": {
       "index": 9914,
       "owner_key": "5vjNcaaHKwd4BPoiFFv4KvfaciWN9d8DnjEBPR5YtmMB",
-      "balance": 202278,
+      "balance": 246464,
       "membership_expire_on": 1722889153,
-      "next_cert_issuable_on": 1692894966,
+      "next_cert_issuable_on": 1696130177,
       "certs_received": {
         "MariadeJesus": 1751698564,
         "Moujik": 1729708768,
         "FabFabounette": 1731342722,
         "LhamoKarine": 1728713470,
+        "MurielleMuMu": 1758068393,
         "Philp": 1745454043,
         "Hernest": 1733989939,
         "Isali": 1744762310,
+        "TristanG1": 1759443574,
         "Icobonhomme": 1728714258,
         "CecilePhoenix": 1744784446,
+        "Christine1892": 1759080850,
         "Elbabecoba": 1753678035,
         "Charlette2": 1728632176,
         "Eastwood": 1728618979,
@@ -51533,6 +52613,7 @@
         "AnneHH": 1745537128,
         "Escoufle": 1744869694,
         "couetmikael": 1751078044,
+        "Lylie_Bulle": 1758844890,
         "Danie": 1733898121,
         "Kiis": 1728627416,
         "Lourinhacoda": 1749941284
@@ -51541,7 +52622,7 @@
     "Alex341": {
       "index": 8274,
       "owner_key": "5vnAUiks9guk8idgYPypjzB94Xdr9cPHXo8qCf5VLRaK",
-      "balance": 1151911,
+      "balance": 1191597,
       "membership_expire_on": 1718016546,
       "next_cert_issuable_on": 1655897672,
       "certs_received": {
@@ -51573,7 +52654,7 @@
     "Audreylasa": {
       "index": 4011,
       "owner_key": "5vyqf8zsqnVo6BvcMFTYb3jZer9JdaYXgPnNwLHnfmv5",
-      "balance": 1049478,
+      "balance": 1089164,
       "membership_expire_on": 1720838236,
       "next_cert_issuable_on": 1658656480,
       "certs_received": {
@@ -51603,7 +52684,7 @@
     "Chris26": {
       "index": 7175,
       "owner_key": "5wUHazg8rFTo5UtQGTGrMQXaXbEi1Hzz8wZyiP5fP2bq",
-      "balance": 576177,
+      "balance": 615863,
       "membership_expire_on": 1709557684,
       "next_cert_issuable_on": 1681631403,
       "certs_received": {
@@ -51621,7 +52702,7 @@
     "Lowikv": {
       "index": 10338,
       "owner_key": "5wbrhDRZ8sLkFzWjZactAYT2HWPL86pceTXg3bTjvnfP",
-      "balance": 304636,
+      "balance": 344322,
       "membership_expire_on": 1698104893,
       "next_cert_issuable_on": 1669136148,
       "certs_received": {
@@ -51635,7 +52716,7 @@
     "MaguelonneHovasse": {
       "index": 9400,
       "owner_key": "5wfgrgQqCsBTjdjsqeZzn8n3UDYb72b2j2XVXXNZtF72",
-      "balance": 394697,
+      "balance": 434383,
       "membership_expire_on": 1723981288,
       "next_cert_issuable_on": 1692584988,
       "certs_received": {
@@ -51662,7 +52743,7 @@
     "Kael": {
       "index": 7992,
       "owner_key": "5wfuvvsEBVjVZjiynNWSGhmNqvQ4y6txPphEsXfaNQZT",
-      "balance": 544145,
+      "balance": 583831,
       "membership_expire_on": 1715197965,
       "next_cert_issuable_on": 1671803770,
       "certs_received": {
@@ -51678,8 +52759,8 @@
     "Triniti": {
       "index": 10512,
       "owner_key": "5whBp1XXcyNeUMr3gqyUSnqWMZB8tLPrRo6pVWNqyJt8",
-      "balance": 321928,
-      "membership_expire_on": 1700159258,
+      "balance": 348614,
+      "membership_expire_on": 1727226964,
       "next_cert_issuable_on": 1672147514,
       "certs_received": {
         "Selena": 1732164542,
@@ -51694,9 +52775,9 @@
     "HeleneSoleil": {
       "index": 5469,
       "owner_key": "5wjf6EjdJc2Eq5GJmzfyX3QgVaqS6vwRg976bpd8Vxz7",
-      "balance": 735839,
+      "balance": 791525,
       "membership_expire_on": 1712081408,
-      "next_cert_issuable_on": 1692453736,
+      "next_cert_issuable_on": 1694832172,
       "certs_received": {
         "jeje43": 1733377263,
         "Mariefleur": 1711750799,
@@ -51709,10 +52790,12 @@
         "Aneuf": 1701898693,
         "Bastien-29": 1719064951,
         "Florencefleur": 1718825875,
+        "Mistigri": 1758862943,
         "Bde": 1715316659,
         "Did-yeah": 1727309223,
         "Noa07": 1715712047,
         "Claire": 1715586409,
+        "CoeurdeRigole": 1759352995,
         "Freti73": 1699675676,
         "MarieFranceL": 1751206161,
         "OrAnge": 1698468402,
@@ -51734,16 +52817,18 @@
     "Laurentld": {
       "index": 3103,
       "owner_key": "5woYr85kzcgKaJQksigtiaz6N52YCKXoiSUoqd6gfXYp",
-      "balance": 1306476,
-      "membership_expire_on": 1698344778,
-      "next_cert_issuable_on": 1685961175,
+      "balance": 1346162,
+      "membership_expire_on": 1727004803,
+      "next_cert_issuable_on": 1695519203,
       "certs_received": {
+        "myma63": 1756660065,
         "sylvain": 1697136758,
-        "perenoel": 1697230264,
-        "mmu_man": 1697101200,
-        "Philippe26": 1697100226,
-        "arfocine": 1697224596,
-        "merenoel": 1697231331
+        "perenoel": 1758671094,
+        "mmu_man": 1756869142,
+        "Pensey20": 1758430040,
+        "Philippe26": 1756652115,
+        "arfocine": 1756652469,
+        "merenoel": 1758671094
       }
     },
     "Vilay": {
@@ -51779,23 +52864,25 @@
     "Shanty": {
       "index": 8152,
       "owner_key": "5x2LtMjYZkr8uT8dXte1rgLAYEKYcKwRWP27JGTyngP5",
-      "balance": 882722,
+      "balance": 886272,
       "membership_expire_on": 1714685577,
-      "next_cert_issuable_on": 1658635835,
+      "next_cert_issuable_on": 1693813013,
       "certs_received": {
         "Tchois": 1716244294,
         "Delfe": 1716243232,
         "EricL": 1715809385,
         "Corinart": 1715731152,
         "Altaiire": 1715781038,
+        "Cathylousouc": 1758147060,
+        "DanyNoisy": 1757390653,
         "ClaireSMV": 1715803666
       }
     },
     "Mandogirl": {
       "index": 10303,
       "owner_key": "5x66zPUc926ZpjrTQ9oZSKnKRC2NWHxGR7Ss9s566dGq",
-      "balance": 47982,
-      "membership_expire_on": 1698689690,
+      "balance": 83368,
+      "membership_expire_on": 1725755508,
       "next_cert_issuable_on": 1680540692,
       "certs_received": {
         "MamieCrypto": 1731055267,
@@ -51810,7 +52897,7 @@
     "Garfield": {
       "index": 7552,
       "owner_key": "5x6PFPU3vJYpYEHnYDQWW8R7KsQn7bhvGMzxyNCd232S",
-      "balance": 495506,
+      "balance": 535192,
       "membership_expire_on": 1715521580,
       "next_cert_issuable_on": 1652309789,
       "certs_received": {
@@ -51824,7 +52911,7 @@
     "lindanas": {
       "index": 3741,
       "owner_key": "5x7CunpybxMwBWnLUg5ah7HJjidS2hQWPUF5pEjZX2TK",
-      "balance": 1268934,
+      "balance": 1308620,
       "membership_expire_on": 1708633378,
       "next_cert_issuable_on": 1655304885,
       "certs_received": {
@@ -51840,9 +52927,9 @@
     "CaroKro": {
       "index": 10067,
       "owner_key": "5xJXDx6MNfdF3CAECfYgNGiCUQyihWmDRqPsFPoCV5aU",
-      "balance": 294294,
+      "balance": 333980,
       "membership_expire_on": 1724062379,
-      "next_cert_issuable_on": 1690182333,
+      "next_cert_issuable_on": 1696256372,
       "certs_received": {
         "Zap": 1728423176,
         "ContrePropagande": 1742673614,
@@ -51887,7 +52974,7 @@
     "Vincentdecoster": {
       "index": 12134,
       "owner_key": "5xW8Zs7cnFFExNgd4AmQBXiStr5krAFyrBPsEPYzw1jH",
-      "balance": 178744,
+      "balance": 218430,
       "membership_expire_on": 1711223622,
       "next_cert_issuable_on": 1679981325,
       "certs_received": {
@@ -51903,9 +52990,9 @@
     "Elinette": {
       "index": 12335,
       "owner_key": "5xayQgbDzi3rje5ktEzHPFFG3X7FerMRH4CZu9ns3PiQ",
-      "balance": 113588,
+      "balance": 153274,
       "membership_expire_on": 1712002997,
-      "next_cert_issuable_on": 1689251175,
+      "next_cert_issuable_on": 1695518823,
       "certs_received": {
         "Chrisma1957": 1744575623,
         "Inanna": 1749602855,
@@ -51941,8 +53028,8 @@
     "MarieChristineCantagrel": {
       "index": 3394,
       "owner_key": "5xfCh2tKt94ktErUGfZkwx5i9qyw9dgBypLWwgqFSvrb",
-      "balance": 1075161,
-      "membership_expire_on": 1697060870,
+      "balance": 1114847,
+      "membership_expire_on": 1727953574,
       "next_cert_issuable_on": 1679990155,
       "certs_received": {
         "verolodeve": 1707894520,
@@ -51962,9 +53049,9 @@
     "pema": {
       "index": 10202,
       "owner_key": "5xfLWFbWMJbb3JQaEAmhWxQNpaEGv4B6Tqn5RaGUBHe3",
-      "balance": 701808,
-      "membership_expire_on": 1698522473,
-      "next_cert_issuable_on": 1686224734,
+      "balance": 747494,
+      "membership_expire_on": 1726771705,
+      "next_cert_issuable_on": 1696218731,
       "certs_received": {
         "HeleneL": 1730267610,
         "AlainVillain": 1749685992,
@@ -52009,9 +53096,9 @@
     "couillaler": {
       "index": 11462,
       "owner_key": "5ycLRxzbb8kwS8dX7dUTE7vnnBbpxbsheJrqxrUZrShV",
-      "balance": 130500,
+      "balance": 165186,
       "membership_expire_on": 1705952049,
-      "next_cert_issuable_on": 1686539113,
+      "next_cert_issuable_on": 1696149199,
       "certs_received": {
         "Andou": 1738389155,
         "SylvianePetit": 1738831453,
@@ -52025,7 +53112,7 @@
     "Lorahan": {
       "index": 4353,
       "owner_key": "5yq3dAG78r8WRhhbFS3FmqkrYTPKZuYSiczhuJft8NYk",
-      "balance": 786836,
+      "balance": 826522,
       "membership_expire_on": 1723490853,
       "next_cert_issuable_on": 1687351538,
       "certs_received": {
@@ -52043,7 +53130,7 @@
     "Bengo": {
       "index": 9002,
       "owner_key": "5ytZah2tt3kTS7QhkuHU6J5V7QPD59dYVk8c2rPVVAzu",
-      "balance": 429482,
+      "balance": 466668,
       "membership_expire_on": 1715523685,
       "next_cert_issuable_on": 1688832554,
       "certs_received": {
@@ -52076,12 +53163,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1634262922,
       "certs_received": {
-        "LiseBourdelle": 1696640865,
-        "LeoMC": 1696026239,
-        "LauQui": 1696640610,
-        "Danahe": 1701419458,
-        "DanJoue": 1695935877,
-        "LOIC3322": 1695950440
+        "Danahe": 1701419458
       }
     },
     "Carine": {
@@ -52107,8 +53189,8 @@
     "Doudou73": {
       "index": 9812,
       "owner_key": "5z3eve5foWF3ppJCJkiSQ4jauuTDUSLrFWxPdT7w96We",
-      "balance": 350937,
-      "membership_expire_on": 1696428956,
+      "balance": 390623,
+      "membership_expire_on": 1727355372,
       "next_cert_issuable_on": 1673089264,
       "certs_received": {
         "PaulSavoielibre": 1728094405,
@@ -52122,7 +53204,7 @@
     "NoraMaela": {
       "index": 5119,
       "owner_key": "5z5gJtbstUuBkn6y6638bN21VszEUUXYz6SCtkH7c6Wx",
-      "balance": 811605,
+      "balance": 851291,
       "membership_expire_on": 1708714407,
       "next_cert_issuable_on": 1692085807,
       "certs_received": {
@@ -52154,7 +53236,7 @@
     "Ya2koi": {
       "index": 11078,
       "owner_key": "5zGu8ctSrYvyUhzsZXuYy4Ea4AjFQZSonRS8JmLGLDbZ",
-      "balance": 166635,
+      "balance": 166321,
       "membership_expire_on": 1702330255,
       "next_cert_issuable_on": 1678698374,
       "certs_received": {
@@ -52172,7 +53254,7 @@
     "CatCat": {
       "index": 9254,
       "owner_key": "5zHCeVgMKoWx5aFEJGof5bRbnaPzjDfzpydFY1yrN7FT",
-      "balance": 368354,
+      "balance": 396160,
       "membership_expire_on": 1723465775,
       "next_cert_issuable_on": 1676794164,
       "certs_received": {
@@ -52196,7 +53278,7 @@
       "index": 9518,
       "owner_key": "5zTP6GKfgJCfGrDiJFZnQYD2YSrbvoYBGq5kRgfLbqN6",
       "balance": 374187,
-      "membership_expire_on": 1693497458,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "marinetfrommars": 1725423907,
@@ -52210,7 +53292,7 @@
     "flordecolores": {
       "index": 12017,
       "owner_key": "5zdehddemgbPnALHvD4xh37vZzUjCX3qAyrTQfEBk3kw",
-      "balance": 57638,
+      "balance": 89324,
       "membership_expire_on": 1710287836,
       "next_cert_issuable_on": 1682181174,
       "certs_received": {
@@ -52268,7 +53350,7 @@
     "Mymy": {
       "index": 11213,
       "owner_key": "61DqSQGh6Nx91hxbiCmgsrTsRedYtbDdSYoB855Ro7kY",
-      "balance": 291837,
+      "balance": 331523,
       "membership_expire_on": 1702069193,
       "next_cert_issuable_on": 1687152690,
       "certs_received": {
@@ -52299,14 +53381,15 @@
     "Murielle93": {
       "index": 9932,
       "owner_key": "61Ka5Akch1EXbWvXkTVEVM3G4niXfjRTTGd1eLbh5Cp4",
-      "balance": 233406,
+      "balance": 273092,
       "membership_expire_on": 1722612507,
-      "next_cert_issuable_on": 1691127256,
+      "next_cert_issuable_on": 1695471833,
       "certs_received": {
         "JOD77": 1728405404,
         "lindsaymalytai": 1728713202,
         "Alexag": 1728195600,
         "orion": 1728245454,
+        "ussyplume": 1759785217,
         "Malica77": 1754721250,
         "Jackstyle": 1741215235,
         "gero": 1728729165
@@ -52323,9 +53406,9 @@
     "Esprit-paille": {
       "index": 8030,
       "owner_key": "61RAou5S8TsJgAuqyLc9F6HbxJg7rDnSh2QQPa4J45kf",
-      "balance": 490862,
+      "balance": 514548,
       "membership_expire_on": 1712487733,
-      "next_cert_issuable_on": 1691336880,
+      "next_cert_issuable_on": 1695485551,
       "certs_received": {
         "Vahe": 1715319408,
         "Sylvieb": 1746323020,
@@ -52340,7 +53423,7 @@
     "RosineLG": {
       "index": 7113,
       "owner_key": "61gLJeNdFdXxeyR2MYK7QYxvzP8y14Wz2n7nwqPpqJQf",
-      "balance": 563087,
+      "balance": 602773,
       "membership_expire_on": 1708706004,
       "next_cert_issuable_on": 1677220404,
       "certs_received": {
@@ -52355,7 +53438,7 @@
     "Nataliedanseencouple": {
       "index": 11237,
       "owner_key": "61tV81vG21XvAqqGLUEbayzjjDghet9yqmSgbsAh7Nzo",
-      "balance": 253509,
+      "balance": 293195,
       "membership_expire_on": 1705245988,
       "next_cert_issuable_on": 1688446764,
       "certs_received": {
@@ -52384,28 +53467,37 @@
         "baptisttou": 1706329428
       }
     },
+    "chabi": {
+      "index": 13471,
+      "owner_key": "61wc7dtf83bcay1LDZ3jRw9k5KvryX9GuAHF48HjiTgF",
+      "balance": 33386,
+      "membership_expire_on": 1724176892,
+      "next_cert_issuable_on": 1693894346,
+      "certs_received": {
+        "Bricedonnadieu26": 1756492365,
+        "MIZOU26": 1756099715,
+        "estherwalther26": 1756189695,
+        "Calou26": 1756111161,
+        "ChristineWilloth26": 1756016394
+      }
+    },
     "luciano974": {
       "index": 5700,
       "owner_key": "622cnm2P1Dd9GKUfm86Cj1VyVQE31xe5DNk8iux8PyRi",
-      "balance": 497425,
-      "membership_expire_on": 1718967375,
+      "balance": 519863,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668374191,
       "certs_received": {
         "Zoul": 1710565426,
-        "mimone974": 1695312889,
         "BabethMangas": 1713980306,
-        "Cindy974": 1695358525,
         "gabyjoce974": 1751973085,
-        "Brunov974": 1755825995,
-        "MayaFoucaud": 1695314668,
-        "Gislaine974": 1695349286,
-        "marcos974": 1695314066
+        "Brunov974": 1755825995
       }
     },
     "SimonL": {
       "index": 8324,
       "owner_key": "62BfTQVLYdju1wfL2C5iuHSTYx2hxgzWTKM61fdVYHyP",
-      "balance": 483940,
+      "balance": 523626,
       "membership_expire_on": 1712343225,
       "next_cert_issuable_on": 1686913796,
       "certs_received": {
@@ -52427,7 +53519,7 @@
     "Elik": {
       "index": 10200,
       "owner_key": "62SJnGqYLs4DY58UfuzV6YvGszYg71rowEZNsV1pguhq",
-      "balance": 281230,
+      "balance": 307216,
       "membership_expire_on": 1724715772,
       "next_cert_issuable_on": 1681230584,
       "certs_received": {
@@ -52463,7 +53555,7 @@
     "delpocka": {
       "index": 10876,
       "owner_key": "62dJB3YqqDx2GNXTHAy9r8pRkCdHHsxWAvWcGrTWzCNh",
-      "balance": 282189,
+      "balance": 321875,
       "membership_expire_on": 1702303777,
       "next_cert_issuable_on": 1675440002,
       "certs_received": {
@@ -52484,7 +53576,7 @@
     "EddyMannino": {
       "index": 7017,
       "owner_key": "62mc7xgJjQAnayokAzDs6BwZqwVHjB9w26cQBZkQbLgM",
-      "balance": 430023,
+      "balance": 469709,
       "membership_expire_on": 1704414005,
       "next_cert_issuable_on": 1655349391,
       "certs_received": {
@@ -52498,7 +53590,7 @@
     "Nicolcrew73": {
       "index": 6897,
       "owner_key": "62pwCRKKQdjUFY6FJHUR2KjpUD8e28gMJFWuDERemmjP",
-      "balance": 602927,
+      "balance": 642613,
       "membership_expire_on": 1705702118,
       "next_cert_issuable_on": 1670341687,
       "certs_received": {
@@ -52529,9 +53621,9 @@
     "Bea813": {
       "index": 8838,
       "owner_key": "633Ysi7V8751p2eFDCHFFt3PcF4t27RHjnbgWdm7i4KG",
-      "balance": 486204,
+      "balance": 525890,
       "membership_expire_on": 1713903469,
-      "next_cert_issuable_on": 1689342470,
+      "next_cert_issuable_on": 1695125585,
       "certs_received": {
         "SandrineMala": 1734404158,
         "nashira": 1739639121,
@@ -52584,7 +53676,7 @@
     "Yv1K": {
       "index": 10133,
       "owner_key": "635amCHXNDCc6jFKhvHvSJFDnuqQ9abKgmCkTW9bK6eZ",
-      "balance": 304021,
+      "balance": 343707,
       "membership_expire_on": 1698247715,
       "next_cert_issuable_on": 1674883753,
       "certs_received": {
@@ -52623,7 +53715,7 @@
     "Maksim": {
       "index": 12776,
       "owner_key": "63HAecqMK9fNq38FHtA6AuPEXuK5jtpJWveBdufnZWeo",
-      "balance": 106724,
+      "balance": 142010,
       "membership_expire_on": 1714765420,
       "next_cert_issuable_on": 1690818998,
       "certs_received": {
@@ -52648,9 +53740,9 @@
     "SarahBianca": {
       "index": 8220,
       "owner_key": "63Zm6S1EwJctHz9xkwPiFjnUXaNqRbDMB7Hhaaa1tMCZ",
-      "balance": 489648,
+      "balance": 529334,
       "membership_expire_on": 1714578183,
-      "next_cert_issuable_on": 1655001571,
+      "next_cert_issuable_on": 1695971654,
       "certs_received": {
         "Chrystal26": 1716000692,
         "Jmbe": 1716006190,
@@ -52663,7 +53755,7 @@
     "Marilina": {
       "index": 7335,
       "owner_key": "63d2NNS67CiDMRThNReqYh4n91hH8FsbV9ocLncvTXGm",
-      "balance": 520789,
+      "balance": 560475,
       "membership_expire_on": 1706980048,
       "next_cert_issuable_on": 1649261637,
       "certs_received": {
@@ -52678,7 +53770,7 @@
     "Samantha07": {
       "index": 7826,
       "owner_key": "63d5nV2WK3XG9QMfGFWXT5ZFRRtt5apCHbdyCscPUysY",
-      "balance": 522378,
+      "balance": 562064,
       "membership_expire_on": 1710534283,
       "next_cert_issuable_on": 1687214195,
       "certs_received": {
@@ -52694,7 +53786,7 @@
     "GUL40_Th1": {
       "index": 7231,
       "owner_key": "63e53vmUXCYzgpgfVTUJqSy7tkNfcgynzJDNTHYf91WP",
-      "balance": 561732,
+      "balance": 601418,
       "membership_expire_on": 1706413902,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -52725,6 +53817,20 @@
         "Fred04": 1705084896
       }
     },
+    "Raquell": {
+      "index": 13694,
+      "owner_key": "63oYUzmXhh5cEyBhRLgYUPoajWqswq8CnuFaaeVMgtqh",
+      "balance": 15624,
+      "membership_expire_on": 1727624785,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "BANESA": 1759182385,
+        "TxeRoki": 1759182847,
+        "Lolito": 1759182385,
+        "Azpi33": 1759182385,
+        "Xabikyo": 1759182847
+      }
+    },
     "Kokopelli": {
       "index": 913,
       "owner_key": "63sfMGaRyBsB2DhqBKNRR3FiYDa3nkjWULb5KuCBWAuj",
@@ -52736,7 +53842,7 @@
     "Gib26": {
       "index": 4999,
       "owner_key": "63ssjTEP9AMJz16rLbFgsUc1j59VhWyGxj8ABDLmfyYe",
-      "balance": 1120629,
+      "balance": 1160315,
       "membership_expire_on": 1706154325,
       "next_cert_issuable_on": 1680534837,
       "certs_received": {
@@ -52756,7 +53862,7 @@
     "FlorineCombe": {
       "index": 13281,
       "owner_key": "63wLDXqx7DgdqRbLekWcoiNzgrHGVA4guHRUDBfKbzNs",
-      "balance": 41628,
+      "balance": 81314,
       "membership_expire_on": 1721835574,
       "next_cert_issuable_on": 1691072102,
       "certs_received": {
@@ -52788,7 +53894,7 @@
     "Pablito": {
       "index": 8978,
       "owner_key": "64FZmj6xCwhcok1FaKfonEHXUvbiaaN4Kr4xzYKwefz",
-      "balance": 452839,
+      "balance": 460780,
       "membership_expire_on": 1715459808,
       "next_cert_issuable_on": 1683974208,
       "certs_received": {
@@ -52802,13 +53908,14 @@
     "diletta": {
       "index": 1493,
       "owner_key": "64Q1JiMzsQioDbETqGvLRX4dgGcAUnwh35gr7q9ozjQc",
-      "balance": 260512,
+      "balance": 400198,
       "membership_expire_on": 1717203851,
-      "next_cert_issuable_on": 1691727964,
+      "next_cert_issuable_on": 1694759616,
       "certs_received": {
         "JessyRipert": 1712178152,
         "dianto": 1710808377,
         "Eric": 1751993342,
+        "SoniaJimenezCook": 1757923096,
         "Stef": 1734831070,
         "tano": 1749953894,
         "scanlegentil": 1730997089,
@@ -52837,7 +53944,7 @@
     "Benito71": {
       "index": 12596,
       "owner_key": "64bgcr54DYYpnoRqKDfwVaZMR1SYkP677VDN9ry7e371",
-      "balance": 113392,
+      "balance": 153078,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1692180631,
       "certs_received": {
@@ -52855,7 +53962,7 @@
     "ReiRoma": {
       "index": 11819,
       "owner_key": "64cRoakFE1r8uB2KMKqQuayjNuVxXWEDf3A4PiyMZDD2",
-      "balance": 170559,
+      "balance": 206245,
       "membership_expire_on": 1709144392,
       "next_cert_issuable_on": 1684028338,
       "certs_received": {
@@ -52890,7 +53997,7 @@
     "Claudiadu15": {
       "index": 11774,
       "owner_key": "64uanLdbZCu6fEogLq5xCQdrGKQgdbRVHuU6MoJiXFKi",
-      "balance": 199441,
+      "balance": 239127,
       "membership_expire_on": 1708731970,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -52944,7 +54051,7 @@
     "KdeLambesc": {
       "index": 7851,
       "owner_key": "64ytrHFwNgSFFKWsunMKpidh4d8AwgyjrL7GBbkLpn3h",
-      "balance": 389092,
+      "balance": 428778,
       "membership_expire_on": 1707828625,
       "next_cert_issuable_on": 1692514304,
       "certs_received": {
@@ -52960,7 +54067,7 @@
     "AnnaStella": {
       "index": 7066,
       "owner_key": "651BqwH8teAt2CzwdVpCSdGZNkrngfSktAHtbfipKTgr",
-      "balance": 11855,
+      "balance": 51541,
       "membership_expire_on": 1704768131,
       "next_cert_issuable_on": 1657019070,
       "certs_received": {
@@ -52989,7 +54096,7 @@
     "Gnostique34": {
       "index": 8511,
       "owner_key": "65BhJJiZDh6KF7aWfHPYchobxvHi37gejb4s5Y7YmZh1",
-      "balance": 336651,
+      "balance": 376337,
       "membership_expire_on": 1721573981,
       "next_cert_issuable_on": 1691852683,
       "certs_received": {
@@ -53027,8 +54134,8 @@
     "Napo": {
       "index": 3500,
       "owner_key": "65HyUAhDmxkH5Xkj9VSPZTVUsRAkbjxUP7k7T4fBFEXP",
-      "balance": 394644,
-      "membership_expire_on": 1696251702,
+      "balance": 428940,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670866973,
       "certs_received": {
         "GildasMalassinet": 1717225896,
@@ -53037,11 +54144,11 @@
         "Zabou": 1729099471,
         "AliasRiton": 1730527390,
         "Opti": 1697182898,
+        "CelineRenou": 1755558623,
         "AnaisTerraFlor": 1701225840,
         "Voyageur32": 1727049896,
         "FilouLibre59": 1733981946,
         "Yanoc": 1732491604,
-        "marmotte32": 1694060437,
         "stephane32": 1732160763,
         "Ananda46": 1711564898,
         "Zoriko-J": 1740799487,
@@ -53068,17 +54175,17 @@
     "TheodoreMACRAIGNE": {
       "index": 4328,
       "owner_key": "65RpyXdfspRzwBVUuDGPhBVuQjuN5jgSGC9o991M8RJM",
-      "balance": 995360,
+      "balance": 1035046,
       "membership_expire_on": 1702989829,
-      "next_cert_issuable_on": 1685332601,
+      "next_cert_issuable_on": 1695774438,
       "certs_received": {
         "AnneAmbles": 1733126591,
         "CelesteLeBars": 1735293599,
         "Lydiabloch": 1733126591,
         "JeandMeryMAYOPARRA": 1734549421,
-        "EmileMACRAIGNE": 1697154672,
+        "EmileMACRAIGNE": 1758817263,
         "AnnickBoubounelle": 1735926166,
-        "SteveMacraigne": 1697156010
+        "SteveMacraigne": 1758818414
       }
     },
     "Papilio14": {
@@ -53115,7 +54222,7 @@
     "110patates": {
       "index": 7603,
       "owner_key": "65gpnP1A9pQ6kCHdkC6tsLaDsgjGfDRvjo2RGky3k1dA",
-      "balance": 720426,
+      "balance": 760112,
       "membership_expire_on": 1706670226,
       "next_cert_issuable_on": 1676464517,
       "certs_received": {
@@ -53132,7 +54239,7 @@
     "Basile": {
       "index": 6045,
       "owner_key": "65hw8fwEuTZMHgykFR8znYW3XjmnFqccnN5uveNL4358",
-      "balance": 693965,
+      "balance": 733951,
       "membership_expire_on": 1723208161,
       "next_cert_issuable_on": 1686617493,
       "certs_received": {
@@ -53154,7 +54261,7 @@
     "cascabel": {
       "index": 12018,
       "owner_key": "65jwLY5TtEaJrPXTv3DNJWowmuYZC4c6dvkugBhMHhCP",
-      "balance": 221720,
+      "balance": 203506,
       "membership_expire_on": 1710432346,
       "next_cert_issuable_on": 1686745565,
       "certs_received": {
@@ -53173,7 +54280,7 @@
     "MorganeVirot": {
       "index": 2423,
       "owner_key": "65oqbFB2cwozPYcZCuFsQWcoKZE6mnVkoumdpAX8dVRT",
-      "balance": 431159,
+      "balance": 470845,
       "membership_expire_on": 1708297805,
       "next_cert_issuable_on": 1676812205,
       "certs_received": {
@@ -53197,7 +54304,7 @@
     "Jane": {
       "index": 8740,
       "owner_key": "65qTdyRR7FWZM6oL8RQDebvNZx8sMd9grsMvPgMMfX8b",
-      "balance": 437009,
+      "balance": 476695,
       "membership_expire_on": 1720215472,
       "next_cert_issuable_on": 1688733835,
       "certs_received": {
@@ -53213,15 +54320,15 @@
     "PatrickCrepin": {
       "index": 5883,
       "owner_key": "65xhbJjyJZQJQxqTCKYTbEosPZhc2AV52R44VBiiVMbv",
-      "balance": 677260,
+      "balance": 716946,
       "membership_expire_on": 1724594196,
-      "next_cert_issuable_on": 1687521207,
+      "next_cert_issuable_on": 1696735251,
       "certs_received": {
         "Jean-Marie": 1697985699,
         "Ruby": 1697940456,
         "evetravigne": 1699316834,
         "fluidlog": 1698020546,
-        "Pascale72": 1697940456,
+        "Pascale72": 1759093423,
         "Chantallef72": 1701316049,
         "guillaumed": 1697957304,
         "Floalchimistefee": 1719530889,
@@ -53246,9 +54353,9 @@
     "KIRPI": {
       "index": 12069,
       "owner_key": "662JDL36LSvxRgXAfQK7pFzU7d4HmK3L7yueEkKXtXQh",
-      "balance": 214084,
+      "balance": 223770,
       "membership_expire_on": 1709566123,
-      "next_cert_issuable_on": 1689416498,
+      "next_cert_issuable_on": 1695741634,
       "certs_received": {
         "Geronimo12": 1741644409,
         "Claire666": 1741382212,
@@ -53256,6 +54363,7 @@
         "MarieLeg": 1741225379,
         "Dum": 1745466587,
         "DameYouli": 1744603655,
+        "Lilou12": 1758257100,
         "CecileBekate": 1742802018,
         "lecoyote": 1741413610,
         "Fablap12": 1741579036,
@@ -53273,9 +54381,9 @@
     "Pocpoc": {
       "index": 5983,
       "owner_key": "669Pesb9CoyFtZ9TVhnm7nSgU4V2WBbxTZDMuLweBmYt",
-      "balance": 631035,
-      "membership_expire_on": 1700066416,
-      "next_cert_issuable_on": 1691201681,
+      "balance": 670721,
+      "membership_expire_on": 1727717656,
+      "next_cert_issuable_on": 1694664266,
       "certs_received": {
         "Caline": 1711845404,
         "Alundra": 1753901319,
@@ -53293,7 +54401,7 @@
     "Elyzia84": {
       "index": 9410,
       "owner_key": "66JNdXkoYuNzU8gnwmxXC4hGruzRdYXWoBupAGRJrsjT",
-      "balance": 111646,
+      "balance": 114332,
       "membership_expire_on": 1724675895,
       "next_cert_issuable_on": 1685283607,
       "certs_received": {
@@ -53310,7 +54418,7 @@
     "Anitaantigone": {
       "index": 6918,
       "owner_key": "66JnMFUy2MUszGNEsG33hWrqE1TQpPYR9E1nDkc1Hrgx",
-      "balance": 609585,
+      "balance": 649271,
       "membership_expire_on": 1702169391,
       "next_cert_issuable_on": 1651246435,
       "certs_received": {
@@ -53326,23 +54434,26 @@
     "Galouprof": {
       "index": 13468,
       "owner_key": "66KfNirYHbr6mmRUerwoRDyrGC4fDhg2ynt32GeVEH8N",
-      "balance": 200,
+      "balance": 39686,
       "membership_expire_on": 1720697661,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695615985,
       "certs_received": {
         "Gazaile": 1752994767,
+        "Couleurs": 1752951633,
         "LaFeeClochette": 1752255261,
         "Aquaneo": 1756598006,
         "Picsou": 1756598362,
+        "Pamelaayurveda": 1752909568,
+        "AutomneIndien": 1752255261,
         "Hannah": 1752869966
       }
     },
     "AgnesJs": {
       "index": 12625,
       "owner_key": "66XfHTR8xerepxhCgtoGvxYYGk1T32W8oVLPimvxUc71",
-      "balance": 97407,
+      "balance": 183647,
       "membership_expire_on": 1715339472,
-      "next_cert_issuable_on": 1693117610,
+      "next_cert_issuable_on": 1696747984,
       "certs_received": {
         "SophieDeprez": 1747064843,
         "Monalibra": 1747882469,
@@ -53359,16 +54470,18 @@
         "SabineB": 1747121605,
         "Goldwing": 1747039844,
         "BeneVM": 1751014791,
+        "Fanchon": 1758080092,
         "Nadia": 1752801984,
         "MikaPac": 1746976693,
         "MinaManar": 1752685821,
+        "SELHENIA": 1759177471,
         "Mmemonica": 1750911468
       }
     },
     "phildefer": {
       "index": 7090,
       "owner_key": "66bBFyjwweNqVWwh5QyUszwsopcuFuWnXUFc8jKsdurX",
-      "balance": 666813,
+      "balance": 705499,
       "membership_expire_on": 1705867357,
       "next_cert_issuable_on": 1686191914,
       "certs_received": {
@@ -53383,8 +54496,8 @@
     "Thymthym": {
       "index": 8320,
       "owner_key": "66e3FVYdG8uvn6q5CeMgeC5hYdqmHLphdtFCrDq6ubpi",
-      "balance": 379912,
-      "membership_expire_on": 0,
+      "balance": 332104,
+      "membership_expire_on": 1727096799,
       "next_cert_issuable_on": 1657726246,
       "certs_received": {
         "CricriNM": 1717054606,
@@ -53397,10 +54510,11 @@
     "Sherylin81": {
       "index": 10188,
       "owner_key": "66tYeqerbqESf2wKqZnptdz3jHVej8V1URFNwAWdQMhF",
-      "balance": 639761,
-      "membership_expire_on": 1698155676,
+      "balance": 656947,
+      "membership_expire_on": 1727133539,
       "next_cert_issuable_on": 1684163393,
       "certs_received": {
+        "Natalya71": 1758671408,
         "Stella7": 1730245010,
         "Cristol-Iquid": 1730184999,
         "jokoli": 1729718859,
@@ -53416,7 +54530,7 @@
     "Anam": {
       "index": 11116,
       "owner_key": "66uRwVKV9SV29tzeLTnURqweBVGcyBkM4pYexXHLwT4R",
-      "balance": 174908,
+      "balance": 122894,
       "membership_expire_on": 1704477661,
       "next_cert_issuable_on": 1693300852,
       "certs_received": {
@@ -53429,6 +54543,7 @@
         "Aneferse": 1736050363,
         "Shivabelle": 1756097588,
         "Gontzal": 1736037975,
+        "Pituverduras": 1756853962,
         "Maritxu": 1736037975,
         "Ekane": 1740864628,
         "Asiergr": 1736035261
@@ -53437,9 +54552,9 @@
     "Egopode": {
       "index": 11939,
       "owner_key": "66uaUS1McmeM5PWSBPXRd9vgLSuovuqPujaZdodBVA5B",
-      "balance": 210174,
+      "balance": 225860,
       "membership_expire_on": 1709828344,
-      "next_cert_issuable_on": 1692676399,
+      "next_cert_issuable_on": 1695695923,
       "certs_received": {
         "Geronimo12": 1741644409,
         "Zbilo": 1752767564,
@@ -53448,6 +54563,7 @@
         "LudusArenaConcept": 1755626982,
         "Dum": 1745466587,
         "DameYouli": 1744603655,
+        "Lilou12": 1758256761,
         "bertha": 1746058609,
         "lecoyote": 1741413610,
         "SylvainDeCadix": 1751866657,
@@ -53458,9 +54574,9 @@
     "Julieb": {
       "index": 5597,
       "owner_key": "673Ku853uCxghKXx5gKS9F7fTqmNu7AyYhA4zmo21tCh",
-      "balance": 744016,
+      "balance": 783702,
       "membership_expire_on": 1724428594,
-      "next_cert_issuable_on": 1672199310,
+      "next_cert_issuable_on": 1695789437,
       "certs_received": {
         "Foxy": 1754951726,
         "LentilleCorail": 1755850233,
@@ -53490,7 +54606,7 @@
     "Lumineux": {
       "index": 6625,
       "owner_key": "67GTizYwgWpYfdeMPsXnPXGQxVECsSrxWaanyWujNcZt",
-      "balance": 506988,
+      "balance": 546674,
       "membership_expire_on": 1706285673,
       "next_cert_issuable_on": 1680235340,
       "certs_received": {
@@ -53507,9 +54623,9 @@
     "SebLorion": {
       "index": 9297,
       "owner_key": "67LEN7tTzxitYhY9h6akFQzpEfgH6hXY3gu2fcJSMu6A",
-      "balance": 438107,
+      "balance": 469393,
       "membership_expire_on": 1723569054,
-      "next_cert_issuable_on": 1686319479,
+      "next_cert_issuable_on": 1695033582,
       "certs_received": {
         "SandrineMala": 1730487830,
         "Temarante": 1732745911,
@@ -53530,6 +54646,7 @@
         "PascaleGaia": 1725421537,
         "CeriseCunegonde": 1733113851,
         "SandraHeleno": 1724461513,
+        "MoutonNoir": 1758687327,
         "MUSUBI": 1736467324,
         "Naneff": 1724466109,
         "GillesGaia": 1730080340,
@@ -53541,7 +54658,7 @@
     "Saphira36": {
       "index": 9860,
       "owner_key": "67LKfEkVNU1mprKJ7Y1i7yap2Q8M2rqXxFuBeNRdCASc",
-      "balance": 202901,
+      "balance": 212587,
       "membership_expire_on": 1724110581,
       "next_cert_issuable_on": 1669453883,
       "certs_received": {
@@ -53556,7 +54673,7 @@
     "Marico974": {
       "index": 3918,
       "owner_key": "67WoamDaxmi32XQd2a1w9q3Q7KiCse8wu3mvt2kf535y",
-      "balance": 1096555,
+      "balance": 1136241,
       "membership_expire_on": 1708255868,
       "next_cert_issuable_on": 1682220951,
       "certs_received": {
@@ -53614,14 +54731,13 @@
       "next_cert_issuable_on": 0,
       "certs_received": {
         "EricPetit": 1700025020,
-        "Lassoupalortie": 1700120632,
-        "aubrunjeanclaude": 1695697520
+        "Lassoupalortie": 1700120632
       }
     },
     "LyseOcci": {
       "index": 8981,
       "owner_key": "67yG8hqP62eLqpCA52fgVfmnNDnXqEpEMmmvMyudBVVG",
-      "balance": 396839,
+      "balance": 430525,
       "membership_expire_on": 1715654838,
       "next_cert_issuable_on": 1690604164,
       "certs_received": {
@@ -53636,7 +54752,7 @@
     "FridaaGuinawa": {
       "index": 802,
       "owner_key": "682rd8MdZAAMegbGJNzckA59wfBpEYpC8zJU7W1EiPCn",
-      "balance": 681061,
+      "balance": 720747,
       "membership_expire_on": 1704305121,
       "next_cert_issuable_on": 1649321918,
       "certs_received": {
@@ -53682,15 +54798,28 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1653132597,
       "certs_received": {
-        "IsiaLe": 1716151928,
-        "ASHTARA": 1694818201
+        "IsiaLe": 1716151928
+      }
+    },
+    "mog": {
+      "index": 13670,
+      "owner_key": "68dekH63kAVaazB4HrNZaq835EPdxKjfmGAHW5RPGdkz",
+      "balance": 151112,
+      "membership_expire_on": 1726868089,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "YannKervran": 1758425990,
+        "Maelly97": 1758426898,
+        "PiNguyen": 1758826301,
+        "toto1967": 1758426590,
+        "TimotheeGoguely": 1758425689
       }
     },
     "Jmg86": {
       "index": 10529,
       "owner_key": "68hzm1thCKuTHM275sgmJREvgG6L3PNDoFnWqR8UMFHx",
-      "balance": 237303,
-      "membership_expire_on": 1698678983,
+      "balance": 238989,
+      "membership_expire_on": 1725908102,
       "next_cert_issuable_on": 1687949433,
       "certs_received": {
         "Ivanof": 1749690971,
@@ -53708,11 +54837,11 @@
     "Nathawie": {
       "index": 6277,
       "owner_key": "68kTYNLQSbF7RqWQAuVYfu9bDCFDWdYdRN84zMkQ5gWe",
-      "balance": 573041,
-      "membership_expire_on": 1694655849,
+      "balance": 606319,
+      "membership_expire_on": 1726702207,
       "next_cert_issuable_on": 1683509839,
       "certs_received": {
-        "Helenep": 1701408702,
+        "Helenep": 1757692272,
         "Sunrise": 1722971067,
         "JerryBB": 1700466403,
         "darben87": 1700291109,
@@ -53724,7 +54853,7 @@
     "Vlad": {
       "index": 3069,
       "owner_key": "68nX6a2L6wk9E8o5NHcH6mJ4GUXLm7QMufn8Fhk9T27j",
-      "balance": 1064709,
+      "balance": 1104395,
       "membership_expire_on": 1712772606,
       "next_cert_issuable_on": 1667975010,
       "certs_received": {
@@ -53747,7 +54876,7 @@
     "Mamycrocodile": {
       "index": 8737,
       "owner_key": "68nvEMxZUfY39rncnuUD5i7Yj19tVsBCFsXaJd9kKcN1",
-      "balance": 484961,
+      "balance": 524647,
       "membership_expire_on": 1714765420,
       "next_cert_issuable_on": 1683380582,
       "certs_received": {
@@ -53764,7 +54893,7 @@
     "mhdesert": {
       "index": 4161,
       "owner_key": "68pNDwMDRJ1u19FzZKfaEi3pvVijpEE2nWd4U9Sh4h8A",
-      "balance": 2751701,
+      "balance": 2791387,
       "membership_expire_on": 1719697292,
       "next_cert_issuable_on": 1683563968,
       "certs_received": {
@@ -53780,7 +54909,7 @@
     "VICTOIRE": {
       "index": 11612,
       "owner_key": "68rJiLQUiCeVn9LAPvWxygpaM7dNrVWuAtjKXXaTNkGf",
-      "balance": 292549,
+      "balance": 332235,
       "membership_expire_on": 1707071291,
       "next_cert_issuable_on": 1690787922,
       "certs_received": {
@@ -53825,7 +54954,7 @@
     "jpeve": {
       "index": 9184,
       "owner_key": "698a3jejPAjGW8exrrhA9rag5E1qqunRJJ2gQUnWoYcq",
-      "balance": 412327,
+      "balance": 452013,
       "membership_expire_on": 1720532469,
       "next_cert_issuable_on": 1673276877,
       "certs_received": {
@@ -53842,7 +54971,7 @@
     "May18": {
       "index": 12445,
       "owner_key": "698nyUAjgMTyUr3hv747iECmjpCkvXBsFdhKysiNgsbP",
-      "balance": 136704,
+      "balance": 172390,
       "membership_expire_on": 1713755505,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -53883,10 +55012,24 @@
         "Hauteclairedacla": 1712209544
       }
     },
+    "Marineleneveu": {
+      "index": 13570,
+      "owner_key": "69XFN88UVwLzAD4quxvXPioD7wxge1qSZ4b5vmi7U1Ep",
+      "balance": 104802,
+      "membership_expire_on": 1721929048,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "JaYaMaTa": 1753486648,
+        "Coidzikow": 1753744014,
+        "bob31": 1756281538,
+        "Tango8943": 1753509638,
+        "mio": 1756281760
+      }
+    },
     "Briballe": {
       "index": 6090,
       "owner_key": "69gw57e6hVws4p1ocWZKPNaHF2y6u17xb1YsMjNwkrgJ",
-      "balance": 675555,
+      "balance": 715241,
       "membership_expire_on": 1698115357,
       "next_cert_issuable_on": 1691590371,
       "certs_received": {
@@ -53919,8 +55062,8 @@
     "selmekki76": {
       "index": 10325,
       "owner_key": "69jmB4X4WkcZvw8AtCFSsT7hdc21utapbV4mN3wVwyzq",
-      "balance": 218591,
-      "membership_expire_on": 1698959555,
+      "balance": 321777,
+      "membership_expire_on": 1726772626,
       "next_cert_issuable_on": 1668869111,
       "certs_received": {
         "EmmanuelZetace": 1731008347,
@@ -53934,7 +55077,7 @@
     "Camou": {
       "index": 11177,
       "owner_key": "69jwnVaUBDTWFNzq4g9L7nD45tBKVaeJYX5YBpQmtFiX",
-      "balance": 138714,
+      "balance": 78400,
       "membership_expire_on": 1704913576,
       "next_cert_issuable_on": 1680760385,
       "certs_received": {
@@ -53951,7 +55094,7 @@
     "Glycine": {
       "index": 11561,
       "owner_key": "69kk8zMEVzG75uTCKCTNJdndpDdeiEwjwfBRJKudYc5D",
-      "balance": 210726,
+      "balance": 250412,
       "membership_expire_on": 1707407804,
       "next_cert_issuable_on": 1689133290,
       "certs_received": {
@@ -53962,10 +55105,28 @@
         "Anelyse": 1739242199
       }
     },
+    "CelineVivante": {
+      "index": 13486,
+      "owner_key": "69kzwyjRXz2axxz5NdKePbUodwrfNsBzmNWxSBsgoQrq",
+      "balance": 46696,
+      "membership_expire_on": 1725153749,
+      "next_cert_issuable_on": 1696393533,
+      "certs_received": {
+        "MartinsE": 1757221787,
+        "ibisio": 1756778024,
+        "LutziaZ": 1756794023,
+        "Antoine45": 1758383132,
+        "Cath-Boute": 1759688678,
+        "PatrickREVIF": 1756764244,
+        "theotop": 1756802200,
+        "Seve": 1756792768,
+        "MarieThom": 1756839548
+      }
+    },
     "titisiocnarf": {
       "index": 11578,
       "owner_key": "69o2KBNsFZbX3d6jVPqRdNsyQTLoJ3c2MtjQMm4PFm3R",
-      "balance": 223767,
+      "balance": 263453,
       "membership_expire_on": 1707437690,
       "next_cert_issuable_on": 1687868268,
       "certs_received": {
@@ -53979,7 +55140,7 @@
     "droopy": {
       "index": 2014,
       "owner_key": "69serW32z4RYpAP8sXGyLkLn7EB2oHgSXavbrBghzodp",
-      "balance": 1450007,
+      "balance": 1489693,
       "membership_expire_on": 1716231994,
       "next_cert_issuable_on": 1693216069,
       "certs_received": {
@@ -53987,7 +55148,6 @@
         "Sanpapillon": 1745613496,
         "Sophie_Jiyu": 1708744435,
         "Libellule34": 1699510107,
-        "Hassina": 1696382075,
         "Allan": 1726150220,
         "Cat": 1737440727,
         "Samlepirate": 1710876060,
@@ -54007,7 +55167,7 @@
     "MariaSanchez": {
       "index": 10298,
       "owner_key": "69szKqFgs24WkRGtj4K4WzEnv8bLESYg46KcS2ouWGeB",
-      "balance": 221254,
+      "balance": 220940,
       "membership_expire_on": 1699733291,
       "next_cert_issuable_on": 1681455101,
       "certs_received": {
@@ -54026,9 +55186,9 @@
     "Mayo": {
       "index": 5532,
       "owner_key": "69vFoiUP9yKmBZBCZUdc2VQkcgVLAjap6d6P1hMUKKjM",
-      "balance": 356328,
+      "balance": 396014,
       "membership_expire_on": 1718816384,
-      "next_cert_issuable_on": 1689600963,
+      "next_cert_issuable_on": 1696424513,
       "certs_received": {
         "Trex": 1741389422,
         "MarinaNavarro": 1733126312,
@@ -54048,7 +55208,7 @@
     "michaelopdenacker": {
       "index": 3485,
       "owner_key": "69x1Mh9YJHAMgnw64GoecctyBPhYL64KtuedqqVQGPFJ",
-      "balance": 790219,
+      "balance": 829905,
       "membership_expire_on": 1704373445,
       "next_cert_issuable_on": 1663845355,
       "certs_received": {
@@ -54069,7 +55229,7 @@
     "MeliCP": {
       "index": 8323,
       "owner_key": "69yWAD5xAEEuRkHxZnj9UxCtGqJgfBDrgfnnLF2TuV5r",
-      "balance": 488905,
+      "balance": 580093,
       "membership_expire_on": 1709583115,
       "next_cert_issuable_on": 1691651878,
       "certs_received": {
@@ -54128,7 +55288,7 @@
     "Isee": {
       "index": 11641,
       "owner_key": "6AJJJMDCpje9f4yYT3Lv62VHbYBzbTKm33Bj15Eo2Xed",
-      "balance": 210031,
+      "balance": 249717,
       "membership_expire_on": 1708119278,
       "next_cert_issuable_on": 1677123405,
       "certs_received": {
@@ -54143,7 +55303,7 @@
     "EleonoraS": {
       "index": 9694,
       "owner_key": "6AKhNEbSHSKeS1stDSQBVGF27GnK9H39j9weAZep17QS",
-      "balance": 274209,
+      "balance": 313895,
       "membership_expire_on": 1723586249,
       "next_cert_issuable_on": 1692100649,
       "certs_received": {
@@ -54169,7 +55329,7 @@
     "DaisyL": {
       "index": 11697,
       "owner_key": "6AMgECqs4dFdWoBCYoV7eZLZdiTLNes4Z1UJty7ZqT2J",
-      "balance": 214795,
+      "balance": 254481,
       "membership_expire_on": 1705330752,
       "next_cert_issuable_on": 1679471782,
       "certs_received": {
@@ -54184,10 +55344,11 @@
     "JaviEsko": {
       "index": 11597,
       "owner_key": "6ATDThkKSkQ4FpC6Sc1v5da3SLDep6jDzmoQ152LJc4r",
-      "balance": 158310,
+      "balance": 116096,
       "membership_expire_on": 1705336791,
-      "next_cert_issuable_on": 1691402988,
+      "next_cert_issuable_on": 1694513762,
       "certs_received": {
+        "Glorieta": 1756958497,
         "MaudD": 1739424357,
         "JCNAVARLAZ": 1744661335,
         "Estherm": 1739424357,
@@ -54221,9 +55382,9 @@
     "Belobal": {
       "index": 9053,
       "owner_key": "6AYsWJiKrp1ed47mTAnbBAW697sDpCGonuRihjxiGu8H",
-      "balance": 187045,
+      "balance": 153131,
       "membership_expire_on": 1715815655,
-      "next_cert_issuable_on": 1692544307,
+      "next_cert_issuable_on": 1696206246,
       "certs_received": {
         "kapis": 1747975405,
         "ArtesaniaAna": 1731310742,
@@ -54242,6 +55403,7 @@
         "AngelMacksimilia": 1743619882,
         "EstefaniaLopez": 1721612628,
         "Isabella": 1726822117,
+        "botera75": 1758470601,
         "AliciaConsuelo": 1734200008,
         "MaEstherG1": 1721008071,
         "Gamaliel": 1750924426,
@@ -54274,7 +55436,7 @@
     "api61": {
       "index": 1444,
       "owner_key": "6AdJvHHqMZncUX6wcUskJEoaCYLwBk8wAQge6GCmGD81",
-      "balance": 1186653,
+      "balance": 1226339,
       "membership_expire_on": 1698238879,
       "next_cert_issuable_on": 1669434656,
       "certs_received": {
@@ -54298,7 +55460,7 @@
     "RikaLorion": {
       "index": 9414,
       "owner_key": "6AwvFapcWtEgFQsgmcKmy5n3ozYrZpYxAjQXUyB7ZrkA",
-      "balance": 365146,
+      "balance": 394832,
       "membership_expire_on": 1723569054,
       "next_cert_issuable_on": 1677683678,
       "certs_received": {
@@ -54334,7 +55496,7 @@
     "Mapaule": {
       "index": 4467,
       "owner_key": "6B6pVPPNH9X65GgtM1fYbaY4KeuEPxY1gpEvzz8XNs9x",
-      "balance": 1055538,
+      "balance": 1095224,
       "membership_expire_on": 1705338498,
       "next_cert_issuable_on": 1673965762,
       "certs_received": {
@@ -54349,7 +55511,7 @@
     "Sacrenenette": {
       "index": 8036,
       "owner_key": "6B9F9SocFJAzCu4Q37x3j9iqsoK9zxuV6tCBNm1zdYA3",
-      "balance": 385810,
+      "balance": 425496,
       "membership_expire_on": 1724879699,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -54363,7 +55525,7 @@
     "Litlefarfadet": {
       "index": 7295,
       "owner_key": "6B9RqiP1X47xuNgxDXyANR68AR87h6SbmXz2GLm9q5a1",
-      "balance": 447785,
+      "balance": 487471,
       "membership_expire_on": 1704813278,
       "next_cert_issuable_on": 1682728478,
       "certs_received": {
@@ -54383,9 +55545,9 @@
     "Didier2665": {
       "index": 13355,
       "owner_key": "6BFMQFfA7bdZtEgF9Wagw5Zg7ntKS34Ayamw8FSMXoBm",
-      "balance": 31360,
+      "balance": 55046,
       "membership_expire_on": 1721918443,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693639466,
       "certs_received": {
         "Ninamaste": 1753943317,
         "pat26": 1753912921,
@@ -54397,7 +55559,7 @@
     "Xiscos": {
       "index": 10588,
       "owner_key": "6BHq9eLWLmKfLSnx6KbevuLGRTj2ManaDyVaFqxfpRR5",
-      "balance": 321824,
+      "balance": 361510,
       "membership_expire_on": 1700862555,
       "next_cert_issuable_on": 1671027864,
       "certs_received": {
@@ -54415,8 +55577,8 @@
     "CarmenOurense": {
       "index": 9778,
       "owner_key": "6BMDEGNB5tzkMmj34h2NsAZN1tzmLM1ZU8M8p4TuSj5Z",
-      "balance": 83585,
-      "membership_expire_on": 1696266646,
+      "balance": 118271,
+      "membership_expire_on": 1725320534,
       "next_cert_issuable_on": 1686915791,
       "certs_received": {
         "LosMundosdeKrull": 1737852602,
@@ -54466,7 +55628,7 @@
     "Jeromine": {
       "index": 7258,
       "owner_key": "6BZcqzmLnxkdTu4ZcgZc7vuQoZwsJXxdbuu9zhqAu1Vf",
-      "balance": 477391,
+      "balance": 517077,
       "membership_expire_on": 1705067169,
       "next_cert_issuable_on": 1684579678,
       "certs_received": {
@@ -54492,13 +55654,14 @@
     "TiboDom": {
       "index": 13089,
       "owner_key": "6Bd7vUReykyVF5rhxdDeCSnJmjvsrCiEzzpSCUktqGgs",
-      "balance": 69608,
+      "balance": 109294,
       "membership_expire_on": 1719854574,
-      "next_cert_issuable_on": 1693110658,
+      "next_cert_issuable_on": 1695889103,
       "certs_received": {
         "Flore45": 1751746405,
         "Mathdom": 1751751123,
         "PatrickREVIF": 1751617978,
+        "Cat45190": 1758399722,
         "Carole45": 1751669901,
         "GMokeur": 1751689075,
         "Marino45": 1751751706,
@@ -54516,7 +55679,7 @@
     "WaltherVeronique67": {
       "index": 10587,
       "owner_key": "6BhatJE5DeG8dZBRGr8zetstY3aKbzzkLzcSQKmbbTrZ",
-      "balance": 303992,
+      "balance": 343678,
       "membership_expire_on": 1701217946,
       "next_cert_issuable_on": 1672844034,
       "certs_received": {
@@ -54532,38 +55695,38 @@
     "LauQui": {
       "index": 3035,
       "owner_key": "6BjKkeAmSuFasAoYrhopnr9WstWEXLnw4h4diFbY5PFL",
-      "balance": 92372,
+      "balance": 73058,
       "membership_expire_on": 1715696911,
-      "next_cert_issuable_on": 1692062527,
+      "next_cert_issuable_on": 1694853406,
       "certs_received": {
-        "LiseBourdelle": 1698105067,
-        "LeoMC": 1696026239,
+        "LiseBourdelle": 1756274666,
         "NAGIOWOTALA": 1713578328,
         "YolandeSinizergues": 1699656424,
         "Brigitte09": 1731388636,
         "Pascaleg": 1716992812,
         "GENEV": 1730062989,
         "pi_ramide": 1707882841,
+        "AntoineSablayrolles": 1757947653,
         "OlivierRed": 1714812865,
         "Etolol": 1736319245,
         "Rlov": 1739322298,
         "Estellea": 1745637971,
         "PDC": 1722706414,
+        "HenriRGN": 1759382276,
         "ortie": 1732577886,
         "s00999": 1722650745,
         "DanJoue": 1756169687,
-        "LOIC3322": 1694294574,
         "domimeert": 1707772955,
         "Parhit": 1730872827,
         "PascalGuillemain": 1748716237,
         "valoche": 1702453853,
-        "FredB": 1697417270
+        "FredB": 1759832021
       }
     },
     "Jarmila": {
       "index": 11678,
       "owner_key": "6BnLfY3vbi7esZeFcspULzTYEJ7r9zaPufeNoi5EimAM",
-      "balance": 205854,
+      "balance": 245540,
       "membership_expire_on": 1708271078,
       "next_cert_issuable_on": 1677852656,
       "certs_received": {
@@ -54585,7 +55748,7 @@
     "Violainerod": {
       "index": 11635,
       "owner_key": "6BoEWHrWMCnZkwXmYnpyZ9TPtgtUg8NRJSHJuyjYyatt",
-      "balance": 180631,
+      "balance": 222817,
       "membership_expire_on": 1706911612,
       "next_cert_issuable_on": 1682932974,
       "certs_received": {
@@ -54608,9 +55771,9 @@
     "Kittinyani": {
       "index": 8100,
       "owner_key": "6BumqqFvuJHtMzCwBWvBfjYj7537DKw4aW5p2qpH2Tir",
-      "balance": 549003,
+      "balance": 586189,
       "membership_expire_on": 1714396217,
-      "next_cert_issuable_on": 1692712679,
+      "next_cert_issuable_on": 1696298317,
       "certs_received": {
         "Unomasuno": 1714508010,
         "JeanneFlowJ": 1714495225,
@@ -54619,6 +55782,7 @@
         "Soluna": 1727421546,
         "ArnaudFleuri": 1714501783,
         "CecileM": 1725565611,
+        "Mistigri": 1759528225,
         "Fannyhihihi": 1715625552,
         "BisQI": 1717387270,
         "Cesarmour12": 1717573346,
@@ -54646,9 +55810,9 @@
     "jef": {
       "index": 8025,
       "owner_key": "6CHCMo4A9A5Jew2bL6hHfrZpn8ErzVtSqUw6JDnQK8WX",
-      "balance": 581508,
+      "balance": 621194,
       "membership_expire_on": 1709856358,
-      "next_cert_issuable_on": 1688450141,
+      "next_cert_issuable_on": 1695035647,
       "certs_received": {
         "fdrubigny": 1751504984,
         "Georges_M_mbr": 1713286441,
@@ -54669,7 +55833,7 @@
     "ManonM": {
       "index": 8381,
       "owner_key": "6CR8jf1fUJgMu4gKGqwiSaXU5CrejaZg8hweWhNE7aMg",
-      "balance": 478236,
+      "balance": 517922,
       "membership_expire_on": 1709825280,
       "next_cert_issuable_on": 1678339680,
       "certs_received": {
@@ -54684,7 +55848,7 @@
     "Pfs": {
       "index": 11876,
       "owner_key": "6CTwkHSAh63eyTwa4DBfTrxaMzcGPiFkXA78BzLiq3Pq",
-      "balance": 98466,
+      "balance": 106586,
       "membership_expire_on": 1709559501,
       "next_cert_issuable_on": 1680343181,
       "certs_received": {
@@ -54728,7 +55892,7 @@
     "Yacamoneye": {
       "index": 3056,
       "owner_key": "6CiBo5Ngp4QgQE8zbN4NwQrwoHjPARCmNJJAZ8zHwTbp",
-      "balance": 636040,
+      "balance": 675726,
       "membership_expire_on": 1720880416,
       "next_cert_issuable_on": 1689395012,
       "certs_received": {
@@ -54743,26 +55907,24 @@
     "Tonychevalier974": {
       "index": 4152,
       "owner_key": "6Ck8QQcGgtB3a2MnYyQzvEaCTBfYsjkxspwPP3kJ34T3",
-      "balance": 444712,
+      "balance": 490798,
       "membership_expire_on": 1717312884,
       "next_cert_issuable_on": 1677641031,
       "certs_received": {
         "Loise": 1697137706,
         "Gloria974": 1748746932,
-        "NnattNature": 1695530244,
         "Brunov974": 1739908314,
         "Florence97410": 1729731962,
         "melanie_zen974": 1697512286,
         "Lea974": 1725461646,
-        "Sergeboyer974": 1693667278,
         "KeshavaDasi": 1708226914
       }
     },
     "nono10": {
       "index": 9729,
       "owner_key": "6CmQwBq9Xx7dBqmvcvaYfLG8cM5CTecZ2LJmHSor44i3",
-      "balance": 356232,
-      "membership_expire_on": 1694549966,
+      "balance": 369048,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1684543813,
       "certs_received": {
         "christiane6907": 1725039868,
@@ -54778,7 +55940,7 @@
     "Tihrap-V4l": {
       "index": 8975,
       "owner_key": "6CrmSwrZyGkVukU3FhwxRoiXVa4uCEWUdecFZrPUFPc9",
-      "balance": 428839,
+      "balance": 468525,
       "membership_expire_on": 1717340171,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -54792,7 +55954,7 @@
     "Harmonie_MJB": {
       "index": 7293,
       "owner_key": "6CvaJNtD4ZgToUqd25hYyBZWsHDHUD6x7aoC7DCZXt3J",
-      "balance": 502238,
+      "balance": 509924,
       "membership_expire_on": 1710367131,
       "next_cert_issuable_on": 1683330698,
       "certs_received": {
@@ -54801,6 +55963,7 @@
         "Sunrise": 1710444111,
         "FORET": 1710444362,
         "CharlineNature": 1710540924,
+        "PatriciaA": 1759181071,
         "thierryR51": 1710388406,
         "Martienne": 1710383142
       }
@@ -54808,9 +55971,9 @@
     "danielbo": {
       "index": 1643,
       "owner_key": "6CwSyYPV77iGKQ39JJMcsSsHdXYKAyGRRUbXsGV9iPDw",
-      "balance": 533751,
+      "balance": 583437,
       "membership_expire_on": 1700229334,
-      "next_cert_issuable_on": 1691830800,
+      "next_cert_issuable_on": 1694697187,
       "certs_received": {
         "hibiscus11": 1727396153,
         "Lisa34": 1746261908,
@@ -54818,6 +55981,7 @@
         "Majoli34": 1733503640,
         "LolieRu": 1727485556,
         "GuyPeq11": 1740423134,
+        "AnneLaroche": 1757742150,
         "Helene-petiteriviere": 1702534404,
         "c0c0": 1734572766,
         "Sparrak": 1734977663,
@@ -54830,7 +55994,7 @@
         "Coiflibre": 1725843792,
         "Dodjay": 1697590282,
         "ValyChev": 1733960392,
-        "PascalGuillemain": 1702865336,
+        "PascalGuillemain": 1758220697,
         "Christophe-C": 1705390522,
         "SylvieSpielmann": 1737537480,
         "Nigbi2118": 1733779525
@@ -54839,7 +56003,7 @@
     "zoran06": {
       "index": 11968,
       "owner_key": "6CzQN2rt1YLkX9hCVcjXRnQ88pL6hreFuq5Q54osnA3L",
-      "balance": 1159956,
+      "balance": 1273242,
       "membership_expire_on": 1708787666,
       "next_cert_issuable_on": 1681826830,
       "certs_received": {
@@ -54876,7 +56040,7 @@
     "GuillaumeGrenier": {
       "index": 6252,
       "owner_key": "6D8EbYCtVRTMcs4orn1GYkJk9Sc2bJx2RcREJsRCVMsX",
-      "balance": 620178,
+      "balance": 659864,
       "membership_expire_on": 1697584468,
       "next_cert_issuable_on": 1686122920,
       "certs_received": {
@@ -54912,7 +56076,7 @@
     "ravensara": {
       "index": 10656,
       "owner_key": "6DhRFz1jtyvW88ZrSEYz51Ee9XHPKKXymYDntPJBGL7n",
-      "balance": 314276,
+      "balance": 353962,
       "membership_expire_on": 1701082882,
       "next_cert_issuable_on": 1670251134,
       "certs_received": {
@@ -54927,18 +56091,16 @@
     "Helenep": {
       "index": 4284,
       "owner_key": "6DiJkDMSiUYA4qWo55va3PsiaSu3XfubG8bLFVYJULDK",
-      "balance": 116280,
+      "balance": 136066,
       "membership_expire_on": 1722177633,
-      "next_cert_issuable_on": 1691765580,
+      "next_cert_issuable_on": 1696075252,
       "certs_received": {
         "Julia": 1710412089,
         "Rachele": 1723165081,
         "Vincentfuel": 1722355916,
-        "djam": 1703561476,
+        "djam": 1759609850,
         "Pamelahh": 1747297757,
         "Nathawie": 1710379116,
-        "kosnik": 1693847741,
-        "Caropirate": 1696212298,
         "KevinRF": 1703248467,
         "JerryBB": 1738380619,
         "darben87": 1734936207,
@@ -54951,6 +56113,7 @@
         "Souris": 1720058580,
         "Gail": 1715533904,
         "Mumdje": 1708980188,
+        "labomarjo": 1759546587,
         "hocine": 1728886101,
         "Millefeuille": 1723520003,
         "lovol": 1710284973,
@@ -54973,9 +56136,9 @@
     "DimitriTuffreau": {
       "index": 2495,
       "owner_key": "6DitB4aEWKiaR9GprENUcj9JtDY2ak38AT51ArrvErh",
-      "balance": 1034234,
+      "balance": 995920,
       "membership_expire_on": 1710714523,
-      "next_cert_issuable_on": 1689157193,
+      "next_cert_issuable_on": 1695035996,
       "certs_received": {
         "Zap": 1732333268,
         "LionLDouNIo": 1725815522,
@@ -54983,7 +56146,6 @@
         "LaPetiteMaisonDansLaPrairie": 1734408082,
         "Jihi": 1747361318,
         "LaurenceIG": 1753358221,
-        "Tiptaptop": 1696365842,
         "Emeline": 1747940794,
         "ElisabethMoreil": 1733870651,
         "Parhit": 1703183761,
@@ -54993,7 +56155,7 @@
     "SeliaBen": {
       "index": 12032,
       "owner_key": "6DjwD8DCWTWDsrV1UfEUVFEyt46PPJpAVH161UdyyP1r",
-      "balance": 177761,
+      "balance": 217447,
       "membership_expire_on": 1710455506,
       "next_cert_issuable_on": 1683452225,
       "certs_received": {
@@ -55025,9 +56187,9 @@
     "vjrj": {
       "index": 12483,
       "owner_key": "6DrGg8cftpkgffv4Y4Lse9HSjgc8coEQor3yvMPHAnVH",
-      "balance": 677290,
+      "balance": 625137,
       "membership_expire_on": 1714100407,
-      "next_cert_issuable_on": 1691339480,
+      "next_cert_issuable_on": 1696309795,
       "certs_received": {
         "Cholo": 1745879018,
         "AlvaroFernandez": 1745880178,
@@ -55040,13 +56202,14 @@
         "CristinaAbella": 1746781415,
         "Santi_ajedrez": 1745882681,
         "Marianfs": 1754544628,
+        "AndresXaudi": 1759351633,
         "fania": 1749071767
       }
     },
     "Nicolasbry": {
       "index": 9542,
       "owner_key": "6Ds7dSZGH4jffuCsgPkuC12YigvGxZTmYRVKcsJe8Lu3",
-      "balance": 343985,
+      "balance": 376771,
       "membership_expire_on": 1718068545,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -55060,12 +56223,13 @@
     "Beasegovia": {
       "index": 12411,
       "owner_key": "6DspNZZreCP3uw8C9DSZGTCVZnCS4KePFhbxZjPPRABR",
-      "balance": 252955,
+      "balance": 292641,
       "membership_expire_on": 1709067351,
       "next_cert_issuable_on": 1685675397,
       "certs_received": {
         "Simplementemaria": 1745203151,
         "Josepeuta": 1745171060,
+        "realbrucest": 1755562251,
         "ManuGi": 1745873613,
         "virginiaoreoro": 1746243177,
         "Okcfecadiz": 1745171349,
@@ -55079,7 +56243,7 @@
     "SperzagaLorenzo": {
       "index": 7694,
       "owner_key": "6E5MBc9oZzdAsEm94cjWQskyiSCCiWkEo3civUXX4SeY",
-      "balance": 494888,
+      "balance": 534574,
       "membership_expire_on": 1706701741,
       "next_cert_issuable_on": 1686305282,
       "certs_received": {
@@ -55094,7 +56258,7 @@
     "GR54": {
       "index": 12234,
       "owner_key": "6EBcGF2tiNiPMY3AxTSHHTb15g4XetbdwjkQZXVbh78G",
-      "balance": 159132,
+      "balance": 198818,
       "membership_expire_on": 1711757534,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -55110,7 +56274,7 @@
     "Blondine": {
       "index": 12417,
       "owner_key": "6EBzP37EchrgHvs2vyALt9g6N5ssVbCFCuumCWFkfhV6",
-      "balance": 143908,
+      "balance": 183594,
       "membership_expire_on": 1712796719,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -55124,7 +56288,7 @@
     "Marguerite": {
       "index": 8792,
       "owner_key": "6EJbPPZS5BpsJKZe36VWEhkqw7AXbh15dvuUXs7Ntdhp",
-      "balance": 380425,
+      "balance": 420111,
       "membership_expire_on": 1724192614,
       "next_cert_issuable_on": 1658463194,
       "certs_received": {
@@ -55140,9 +56304,9 @@
     "karhoog": {
       "index": 3284,
       "owner_key": "6ELTXtd2mDJB5JtcUq2cR62ALhb3jFThGBL3qa9g8Ezw",
-      "balance": 180438,
+      "balance": 170124,
       "membership_expire_on": 1710250943,
-      "next_cert_issuable_on": 1653211614,
+      "next_cert_issuable_on": 1695472359,
       "certs_received": {
         "RomainKornig": 1708563516,
         "Samuel77": 1708458890,
@@ -55158,7 +56322,7 @@
     "Math333": {
       "index": 12627,
       "owner_key": "6EWAm3JncHjDcvy6pRTkTHukDvXG6KTE115GVsRi1Ln",
-      "balance": 117912,
+      "balance": 141598,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1687567492,
       "certs_received": {
@@ -55175,17 +56339,16 @@
     "JeandelAude": {
       "index": 5780,
       "owner_key": "6EiGMKkrfCLpfiJn2aEviUfGnC8Sp1AvtkytVGvTGv2m",
-      "balance": 435071,
+      "balance": 429757,
       "membership_expire_on": 1724933698,
-      "next_cert_issuable_on": 1693449165,
+      "next_cert_issuable_on": 1695566996,
       "certs_received": {
         "Crystal": 1756067646,
+        "Henk-Quillan": 1757278529,
         "Etoiledunord": 1717737173,
-        "ASHTARA": 1698817165,
-        "SylvieT": 1695778032,
-        "EvaSorel": 1695741905,
-        "LaurenceDavid": 1695685422,
-        "Omkara": 1695742191,
+        "ASHTARA": 1756688858,
+        "SylvieT": 1756671895,
+        "EvaSorel": 1756768005,
         "annefreda": 1714463920,
         "IsaDiavel": 1746409154,
         "BrigitteBaron": 1703483291
@@ -55194,7 +56357,7 @@
     "anna850": {
       "index": 10572,
       "owner_key": "6ExNfahg9S279zbHZJoU4kt3e8k7UYzWVNxobuQcMqme",
-      "balance": 301589,
+      "balance": 341275,
       "membership_expire_on": 1700882860,
       "next_cert_issuable_on": 1683811516,
       "certs_received": {
@@ -55208,8 +56371,8 @@
     "FerFeliz": {
       "index": 10621,
       "owner_key": "6F2ivZAxkjPkmuCWSkXswSu4MJ75XbycgNJsUa3mPkdK",
-      "balance": 212224,
-      "membership_expire_on": 1700769425,
+      "balance": 264110,
+      "membership_expire_on": 1727279269,
       "next_cert_issuable_on": 1683993495,
       "certs_received": {
         "belcarme": 1743624627,
@@ -55239,7 +56402,7 @@
     "Inilaya11": {
       "index": 4570,
       "owner_key": "6F7yDuR57MjRBN191R894ZND1jketafkk6sYvkfJrpMc",
-      "balance": 952028,
+      "balance": 991714,
       "membership_expire_on": 1705336791,
       "next_cert_issuable_on": 1655817961,
       "certs_received": {
@@ -55253,9 +56416,9 @@
     "Abalone": {
       "index": 13264,
       "owner_key": "6FJjBkHNGLsFeSjYiuDpzBcam3kx7w9JE4au4wwNGALB",
-      "balance": 122704,
+      "balance": 149322,
       "membership_expire_on": 1721069983,
-      "next_cert_issuable_on": 1693195624,
+      "next_cert_issuable_on": 1693924928,
       "certs_received": {
         "Cle": 1753764078,
         "CalineR2": 1752639504,
@@ -55268,9 +56431,9 @@
     "jogi": {
       "index": 11853,
       "owner_key": "6FRrYmAytCaXV9Y8bdEoGnSnMFYXx2j9JvJdhPdxmrLT",
-      "balance": 211327,
+      "balance": 251013,
       "membership_expire_on": 1709317433,
-      "next_cert_issuable_on": 1683693876,
+      "next_cert_issuable_on": 1690519880,
       "certs_received": {
         "CaroleFabre": 1742061812,
         "natascha": 1740886498,
@@ -55284,7 +56447,7 @@
     "JoBe22": {
       "index": 6840,
       "owner_key": "6FUuECvvHGZ5tZqd6E6PrbnpFyBn3bhumGqx17HGA9TQ",
-      "balance": 501610,
+      "balance": 541296,
       "membership_expire_on": 1700861468,
       "next_cert_issuable_on": 1663638633,
       "certs_received": {
@@ -55320,7 +56483,7 @@
     "SimonFreedom": {
       "index": 6767,
       "owner_key": "6FcBCA8ZYwRLcSBvDyaKwMvU1m5n7sLiH2Eaj8ua4vom",
-      "balance": 613431,
+      "balance": 653117,
       "membership_expire_on": 1701213121,
       "next_cert_issuable_on": 1668347505,
       "certs_received": {
@@ -55335,7 +56498,7 @@
     "_Wapetoooooooo_": {
       "index": 64,
       "owner_key": "6Fdtk5DLmfJXxPhPTf27oH5KA8jw84H2vXMAnm5eCey",
-      "balance": 962718,
+      "balance": 1002404,
       "membership_expire_on": 1702871068,
       "next_cert_issuable_on": 1675346808,
       "certs_received": {
@@ -55352,22 +56515,17 @@
     "simone_c86": {
       "index": 5741,
       "owner_key": "6FjP6pYVrYpBfxxxBz91ALdteQhsatSQsc3fRmaKdPrY",
-      "balance": 572123,
-      "membership_expire_on": 1723078669,
+      "balance": 599951,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678869922,
       "certs_received": {
-        "mluque71": 1695770333,
-        "NeusVI": 1695843981,
-        "VictorTorre": 1716057200,
-        "6202nicola": 1695929910,
-        "CharlieLenglez": 1695840245,
-        "Gaudi": 1695780981
+        "VictorTorre": 1716057200
       }
     },
     "VMeyer": {
       "index": 8908,
       "owner_key": "6FkZK74oAZfUiBwMmZWmmY4B1UC8LtT5ArkUJmMQpzJt",
-      "balance": 431721,
+      "balance": 471407,
       "membership_expire_on": 1724929539,
       "next_cert_issuable_on": 1663082682,
       "certs_received": {
@@ -55404,7 +56562,7 @@
     "jyde": {
       "index": 6841,
       "owner_key": "6G1gRfpqzn6hk47o3EtWHLnAoR46VPyFgjoXvkprPChz",
-      "balance": 552451,
+      "balance": 592137,
       "membership_expire_on": 1704748224,
       "next_cert_issuable_on": 1686745565,
       "certs_received": {
@@ -55421,13 +56579,14 @@
     "Ninja22": {
       "index": 13282,
       "owner_key": "6G3xVAosEPW2vA9u7StmFHPs8RMjNazYFHgcvF7sapCp",
-      "balance": 174008,
+      "balance": 193694,
       "membership_expire_on": 1721369034,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "JACA": 1753626482,
         "Polaris": 1753939602,
         "Ade": 1753914637,
+        "MarioM": 1759292538,
         "MonicaMu": 1753655937,
         "Caropin": 1753651970
       }
@@ -55435,7 +56594,7 @@
     "Amandine": {
       "index": 1380,
       "owner_key": "6G7iGiGMo5dXcyWwE7N7pRGgVa5kB4FJb2DJjwgB4MFF",
-      "balance": 1655254,
+      "balance": 1694940,
       "membership_expire_on": 1713836402,
       "next_cert_issuable_on": 1683557550,
       "certs_received": {
@@ -55451,7 +56610,7 @@
     "Brigitte09": {
       "index": 5822,
       "owner_key": "6GAk2JeAfefJjwFXLn5wnNdokqducNaLR5NzHyXe9En6",
-      "balance": 634130,
+      "balance": 673816,
       "membership_expire_on": 1698970218,
       "next_cert_issuable_on": 1678188199,
       "certs_received": {
@@ -55460,14 +56619,13 @@
         "LauQui": 1755105727,
         "OlivierRed": 1697254118,
         "Natheo": 1697258025,
-        "LOIC3322": 1696535046,
         "valoche": 1730261798
       }
     },
     "RayMonde": {
       "index": 3960,
       "owner_key": "6GByVr7Ds3kr4CWwibLxej9a341j5y56Z1WPjqQiQUGs",
-      "balance": 1098275,
+      "balance": 1137961,
       "membership_expire_on": 1712277857,
       "next_cert_issuable_on": 1675389638,
       "certs_received": {
@@ -55483,7 +56641,7 @@
     "ENDIKA": {
       "index": 12614,
       "owner_key": "6GHLTJM5d5WvgGeti3xHZ9zUeJRLx1RczJEA77nvYCax",
-      "balance": 99116,
+      "balance": 102602,
       "membership_expire_on": 1715303172,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -55501,9 +56659,9 @@
     "Luc": {
       "index": 6140,
       "owner_key": "6GKSJSUsr4BJFenEzN8MzUDy8UFc2yWTePewFkgk3DCS",
-      "balance": 541576,
-      "membership_expire_on": 1699439489,
-      "next_cert_issuable_on": 1691325759,
+      "balance": 578262,
+      "membership_expire_on": 1726694379,
+      "next_cert_issuable_on": 1693839165,
       "certs_received": {
         "EveMahe": 1729039666,
         "Badiane": 1699690524,
@@ -55536,7 +56694,7 @@
     "E84": {
       "index": 9790,
       "owner_key": "6GhAEbX12iAokmgLrSuv75yBLWC2Qke3dLSZoumbusJb",
-      "balance": 118192,
+      "balance": 67878,
       "membership_expire_on": 1722958314,
       "next_cert_issuable_on": 1679828205,
       "certs_received": {
@@ -55553,7 +56711,7 @@
     "kiku": {
       "index": 10922,
       "owner_key": "6H1wpKJkgW7VWVGYw7S7T43obz85v3Zqfqr44ciZb9N1",
-      "balance": 233112,
+      "balance": 272808,
       "membership_expire_on": 1702460474,
       "next_cert_issuable_on": 1686989639,
       "certs_received": {
@@ -55569,7 +56727,7 @@
     "Edgar": {
       "index": 7741,
       "owner_key": "6H7CU4r2aLTFvkpxB5uXXtaqrkzEAtBWgumwp7maaX56",
-      "balance": 249086,
+      "balance": 244372,
       "membership_expire_on": 1708203522,
       "next_cert_issuable_on": 1676717922,
       "certs_received": {
@@ -55604,7 +56762,7 @@
     "Danatu": {
       "index": 9711,
       "owner_key": "6HBTxnr7CuhpXMRKCfCLBx3gBeDSCeL5utnPxzxdzovu",
-      "balance": 285650,
+      "balance": 228336,
       "membership_expire_on": 1724451050,
       "next_cert_issuable_on": 1692965116,
       "certs_received": {
@@ -55650,7 +56808,7 @@
     "Sabrina89": {
       "index": 9539,
       "owner_key": "6HVDiW4BGibaULvvcKEhTJEnMeYuvieJECdc36jgYBAZ",
-      "balance": 460386,
+      "balance": 557112,
       "membership_expire_on": 1717541955,
       "next_cert_issuable_on": 1677774892,
       "certs_received": {
@@ -55667,7 +56825,7 @@
     "Bobyv": {
       "index": 9121,
       "owner_key": "6HWDnxFFL9yoXJfmjPQeiAPHsfz4ETC7o2PnJy1q6vWt",
-      "balance": 384176,
+      "balance": 423862,
       "membership_expire_on": 1717073134,
       "next_cert_issuable_on": 1688367723,
       "certs_received": {
@@ -55688,12 +56846,12 @@
     "Dom": {
       "index": 734,
       "owner_key": "6HawP53VL9EJcdxyrc4xRDxPdM9XsCAZfreD3YYSeNhs",
-      "balance": 2105435,
+      "balance": 2143121,
       "membership_expire_on": 1720227650,
-      "next_cert_issuable_on": 1688469527,
+      "next_cert_issuable_on": 1693905257,
       "certs_received": {
         "Cle": 1728010038,
-        "Philippe26": 1701503086,
+        "Philippe26": 1758562798,
         "CaroJans": 1712437446,
         "Eric": 1701659331,
         "yasminaB": 1749259916,
@@ -55720,8 +56878,8 @@
     "Sylroc77": {
       "index": 5890,
       "owner_key": "6HdJ1FQKvWCiJNmG6QTP1KPX6qSR5N91vKdwVMF27viv",
-      "balance": 588503,
-      "membership_expire_on": 1694864090,
+      "balance": 606669,
+      "membership_expire_on": 1728228811,
       "next_cert_issuable_on": 1665022635,
       "certs_received": {
         "Bcabon": 1743204885,
@@ -55762,7 +56920,7 @@
     "Francoise81": {
       "index": 12997,
       "owner_key": "6HvbfbE58LejQz7xcDTihHoZGNyy7GN1tdnFzMb489mf",
-      "balance": 168488,
+      "balance": 198374,
       "membership_expire_on": 1719273577,
       "next_cert_issuable_on": 1693554115,
       "certs_received": {
@@ -55777,7 +56935,7 @@
     "MarieAgnes": {
       "index": 11218,
       "owner_key": "6Hy7EfNCdaf6VzUKu5hXLqRTPRh82ykzRyUzxJtQpyGS",
-      "balance": 235334,
+      "balance": 275020,
       "membership_expire_on": 1704472398,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -55792,11 +56950,10 @@
     "Aveline": {
       "index": 5116,
       "owner_key": "6J2EZiCEjJsYijrhPvSBf5NqCZAKXqcmQGTsNugikuRu",
-      "balance": 602956,
-      "membership_expire_on": 1699439489,
-      "next_cert_issuable_on": 1681826494,
+      "balance": 900198,
+      "membership_expire_on": 1726517339,
+      "next_cert_issuable_on": 1696378787,
       "certs_received": {
-        "JulienAmory": 1693763736,
         "Andrelebourhis": 1716399902,
         "BrigitteGabaud": 1708563782,
         "sat": 1711507958,
@@ -55826,12 +56983,13 @@
         "Babouche00": 1732015044,
         "ClaraFeutrier": 1736705880,
         "Libreensoi": 1731489434,
-        "StephaneLONGUET": 1695614238,
         "RomainNOEL": 1701279108,
         "ChoraMadera": 1701880067,
         "Soanne29": 1706132330,
         "Metta": 1702865336,
-        "DjedjePit": 1712459515
+        "DjedjePit": 1712459515,
+        "Niederhauser": 1758080092,
+        "EricBourdet": 1759524820
       }
     },
     "Pedro": {
@@ -55853,8 +57011,8 @@
     "ceti12": {
       "index": 9644,
       "owner_key": "6JRuqk9yMHC8ZRifk28Dtt2Qum2f4HDvn7ibq7FruU22",
-      "balance": 367586,
-      "membership_expire_on": 1695081271,
+      "balance": 393278,
+      "membership_expire_on": 1727783917,
       "next_cert_issuable_on": 1672206303,
       "certs_received": {
         "cedre": 1726639592,
@@ -55876,8 +57034,8 @@
     "Papacito": {
       "index": 9875,
       "owner_key": "6JWUtTVUTwWAtLo7DZbmJaJUckzYkgXy4TZKaLBQH6FJ",
-      "balance": 431232,
-      "membership_expire_on": 1695573586,
+      "balance": 456904,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675914435,
       "certs_received": {
         "Maminou13": 1728523424,
@@ -55890,9 +57048,9 @@
     "DomVe": {
       "index": 3916,
       "owner_key": "6JXMGArC1hLytB72oJ5s465nforS5sdb9vDT87MaPWRL",
-      "balance": 963278,
+      "balance": 1001964,
       "membership_expire_on": 1723088852,
-      "next_cert_issuable_on": 1692721611,
+      "next_cert_issuable_on": 1696426679,
       "certs_received": {
         "GabrielCohergne": 1705096188,
         "DomMembre": 1728259605,
@@ -55908,8 +57066,10 @@
         "Barbabulle73": 1754921518,
         "LouLiette": 1752208832,
         "TheoVS": 1756026070,
+        "Mohanad": 1756174473,
         "Pieter-LucvanNikkel": 1737478015,
         "Anne-Pierre": 1728627112,
+        "Ceciledgh": 1758685810,
         "PascalGuillemain": 1728318851,
         "mcs": 1753924824,
         "Milenie26": 1728269312,
@@ -55921,7 +57081,7 @@
     "Elise26": {
       "index": 8496,
       "owner_key": "6JXvKyUXptt5H2ey34o3B58QgWNxeo94PSCEedSog9Mm",
-      "balance": 467692,
+      "balance": 507378,
       "membership_expire_on": 1715398320,
       "next_cert_issuable_on": 1677753350,
       "certs_received": {
@@ -55935,7 +57095,7 @@
     "dagasaga": {
       "index": 1853,
       "owner_key": "6JZd9J34poVT61vMAcH8gPRUkWhWHh5J3go9ekrAGz41",
-      "balance": 86508,
+      "balance": 126194,
       "membership_expire_on": 1701345976,
       "next_cert_issuable_on": 1689912094,
       "certs_received": {
@@ -55962,7 +57122,7 @@
     "ROSITA71": {
       "index": 11438,
       "owner_key": "6JgcLMBavXRTB8EHzBXd99aCHaKgQ6UnLFsiDEDM1Q5d",
-      "balance": 110816,
+      "balance": 120502,
       "membership_expire_on": 1706728133,
       "next_cert_issuable_on": 1683989209,
       "certs_received": {
@@ -55981,7 +57141,7 @@
     "G1ID": {
       "index": 9966,
       "owner_key": "6JkAu2nTwdNAarek3L8MhVCmWMTyoM53X4YPgF9wVDDb",
-      "balance": 338229,
+      "balance": 377915,
       "membership_expire_on": 1723745288,
       "next_cert_issuable_on": 1677763221,
       "certs_received": {
@@ -55997,7 +57157,7 @@
     "Sylco": {
       "index": 13211,
       "owner_key": "6JsHd9aQ57HKduWLkGbyrMiezig79wnsBCnwoxtXzQUm",
-      "balance": 43788,
+      "balance": 83474,
       "membership_expire_on": 1721517298,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -56012,7 +57172,7 @@
     "PierreFleuri": {
       "index": 998,
       "owner_key": "6JyFMeRAmhAiUwuPs9hPQ3GKAwBDxTh3shdWWtqR8atW",
-      "balance": 1876870,
+      "balance": 1916556,
       "membership_expire_on": 1723117639,
       "next_cert_issuable_on": 1642327053,
       "certs_received": {
@@ -56028,7 +57188,7 @@
     "VAVA80": {
       "index": 10941,
       "owner_key": "6K8226Am8M3dAV2fvyMxeYKgYLUQjEPvVCgZLYi6CFpV",
-      "balance": 270453,
+      "balance": 310139,
       "membership_expire_on": 1703031958,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -56039,6 +57199,20 @@
         "Theomnipower": 1734730980
       }
     },
+    "lisenathanson": {
+      "index": 13757,
+      "owner_key": "6KCg2LKHh7VGyEbMV89KyyYwSHRS5om6m85ib1iiEJ2F",
+      "balance": 11890,
+      "membership_expire_on": 1727963671,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "libellulecreative": 1759546040,
+        "Xaby60": 1759777378,
+        "Auroise": 1759629238,
+        "chantlavie60": 1759699375,
+        "IceCaramba": 1759716702
+      }
+    },
     "lanuria": {
       "index": 7959,
       "owner_key": "6KD5qReKkUhoMXoksjV9MBVHjYhxAJTezmacHw2T9E77",
@@ -56061,15 +57235,16 @@
     "BenjaminDAVID": {
       "index": 4990,
       "owner_key": "6KJoQkfzRKSect9hzXqU4sTCRBZgeapghSnYvkQZ9U21",
-      "balance": 1487027,
+      "balance": 1381557,
       "membership_expire_on": 1711062029,
-      "next_cert_issuable_on": 1692157673,
+      "next_cert_issuable_on": 1696148060,
       "certs_received": {
         "looie": 1744508748,
         "ChristopheG25": 1755201855,
         "Valerie25": 1754440343,
         "Kiki2404": 1745168325,
         "LibertyFran": 1745437826,
+        "conchitaSIMON": 1759217927,
         "cecile_voiron": 1744484044,
         "Freti73": 1745121786,
         "JBM": 1744479868,
@@ -56079,8 +57254,8 @@
     "Mimi5691": {
       "index": 10734,
       "owner_key": "6KSn1hZAaMAtam6r6jEVkhWNTgwQcpUqjoKbBAjeJexj",
-      "balance": 411022,
-      "membership_expire_on": 1700996299,
+      "balance": 439984,
+      "membership_expire_on": 1727741972,
       "next_cert_issuable_on": 1685198930,
       "certs_received": {
         "UFO": 1733721597,
@@ -56109,9 +57284,9 @@
     "Chtmosaik": {
       "index": 10775,
       "owner_key": "6KWQw59fruV1wmdHYBL9b9VQ1x9TfYBbCzunkXSAhftG",
-      "balance": 3315988,
-      "membership_expire_on": 1701100221,
-      "next_cert_issuable_on": 1689497281,
+      "balance": 3640674,
+      "membership_expire_on": 1727646452,
+      "next_cert_issuable_on": 1696124001,
       "certs_received": {
         "Danysa": 1733510848,
         "Marie81": 1745772871,
@@ -56130,7 +57305,7 @@
     "sabledevie": {
       "index": 12442,
       "owner_key": "6KXx5VPmQPVD5Gj3BVPeu2TzBr2Hgkqy56jmFx75gFGk",
-      "balance": 156704,
+      "balance": 196390,
       "membership_expire_on": 1713891044,
       "next_cert_issuable_on": 1684255530,
       "certs_received": {
@@ -56174,7 +57349,7 @@
     "Samiaustralie": {
       "index": 12434,
       "owner_key": "6KiQNUxVYbad1UtMQcWXpmeoyYiNftq2RVRz8a22zRVp",
-      "balance": 137772,
+      "balance": 177458,
       "membership_expire_on": 1711438561,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -56194,12 +57369,13 @@
     "Miguela": {
       "index": 12745,
       "owner_key": "6KkTR9FyqpDkzQK2K7GZ2i63sqK7FZ4bdkDgWb8WzPQK",
-      "balance": 243223,
+      "balance": 311172,
       "membership_expire_on": 1715533268,
-      "next_cert_issuable_on": 1692408998,
+      "next_cert_issuable_on": 1695526768,
       "certs_received": {
         "Jens777": 1747789594,
         "majo": 1747848765,
+        "pastachutta1964": 1759626556,
         "heinz": 1752721608,
         "catalinons": 1747538010,
         "Felicia": 1747852911,
@@ -56215,9 +57391,9 @@
     "EveMahe": {
       "index": 1772,
       "owner_key": "6KkuDM9REv4AhvpghBXKPUYxNHeCzGhQxWo5j3Qhysng",
-      "balance": 1651084,
-      "membership_expire_on": 1700101525,
-      "next_cert_issuable_on": 1689844378,
+      "balance": 2419570,
+      "membership_expire_on": 1726672136,
+      "next_cert_issuable_on": 1696497162,
       "certs_received": {
         "SalinJL": 1713992715,
         "Kiki": 1755029504,
@@ -56274,7 +57450,7 @@
     "MIKEMITH": {
       "index": 11927,
       "owner_key": "6LEcwmpQLzxnKDE2op3t4xUGmJGH8CZqbfY2Q95gJMRX",
-      "balance": 89658,
+      "balance": 106919,
       "membership_expire_on": 1710000977,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -56299,7 +57475,7 @@
     "Clauclo": {
       "index": 10688,
       "owner_key": "6LLSV57x5eoWt6Z1ZP1uS9TM1HT9LFPCb2JkxddHbF1r",
-      "balance": 213475,
+      "balance": 253161,
       "membership_expire_on": 1701049394,
       "next_cert_issuable_on": 1688358660,
       "certs_received": {
@@ -56311,13 +57487,14 @@
         "Smart35": 1734149858,
         "Maaltir": 1733201553,
         "ArenoFontaine": 1755025685,
-        "Yann35": 1751401063
+        "Yann35": 1751401063,
+        "Isa35": 1758077235
       }
     },
     "Bea29": {
       "index": 10552,
       "owner_key": "6LNTxSrXcCxUcgWCAEKY9xVvCUCMNVv1yDPyNUqP1Tv9",
-      "balance": 250810,
+      "balance": 290496,
       "membership_expire_on": 1701126829,
       "next_cert_issuable_on": 1684921630,
       "certs_received": {
@@ -56332,9 +57509,9 @@
     "Louloutte1402": {
       "index": 8031,
       "owner_key": "6LPz7XkspH4XCvTnagk41qxrmaMCZeBVXsjG9rgN4vTX",
-      "balance": 444122,
+      "balance": 483808,
       "membership_expire_on": 1720415485,
-      "next_cert_issuable_on": 1670237033,
+      "next_cert_issuable_on": 1693742788,
       "certs_received": {
         "Martine51": 1714972615,
         "Christelle09": 1714505551,
@@ -56348,7 +57525,7 @@
     "Bheema": {
       "index": 8534,
       "owner_key": "6LQgerstsNoPQLLTnbueUE9cf8LSNSN8yHPoTnBnXjZG",
-      "balance": 181985,
+      "balance": 221671,
       "membership_expire_on": 1712415709,
       "next_cert_issuable_on": 1677903595,
       "certs_received": {
@@ -56363,25 +57540,22 @@
     "kosnik": {
       "index": 5175,
       "owner_key": "6LXL7vQPpFX27UZL9J5iPTbeWjXyB9mqkGW7iPX3KQci",
-      "balance": 493449,
+      "balance": 533135,
       "membership_expire_on": 1708384806,
       "next_cert_issuable_on": 1647888903,
       "certs_received": {
         "djam": 1746410963,
         "Pamelahh": 1747263261,
         "Helenep": 1750821949,
-        "Caropirate": 1696212298,
-        "CitizenFour": 1695966579,
         "hommepoirier": 1703003286,
-        "Joailes38": 1693849417,
-        "LeoLeo": 1694554119,
-        "Debu24590": 1700005577
+        "Debu24590": 1700005577,
+        "Piraculteur": 1758124598
       }
     },
     "Tipheret": {
       "index": 10204,
       "owner_key": "6La2ApSnLsUDQPrErxwuGShHkbNW1Y5qfU7by3v5ehBW",
-      "balance": 287008,
+      "balance": 151894,
       "membership_expire_on": 1698799309,
       "next_cert_issuable_on": 1687827161,
       "certs_received": {
@@ -56401,7 +57575,7 @@
     "MagaliTostivint": {
       "index": 11434,
       "owner_key": "6LeKV7Ljx46UWPjMubZEm4JfHwSqZQnq7jb69dB9b1Re",
-      "balance": 178434,
+      "balance": 198120,
       "membership_expire_on": 1706715180,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -56440,8 +57614,8 @@
     "AlexandreA": {
       "index": 8052,
       "owner_key": "6LjJeVxScBpnp3fT2ZtfQUCaRKKin8xjhQVuFZF8aCr",
-      "balance": 383844,
-      "membership_expire_on": 0,
+      "balance": 384922,
+      "membership_expire_on": 1728175162,
       "next_cert_issuable_on": 1652890634,
       "certs_received": {
         "JeromeCastel": 1715555720,
@@ -56454,7 +57628,7 @@
     "Sylvierosartetculture": {
       "index": 9562,
       "owner_key": "6LqiwppaNiGej7yJ6DagTseeAWP3mTSysdLyBQbFXFdh",
-      "balance": 381439,
+      "balance": 421125,
       "membership_expire_on": 1723478056,
       "next_cert_issuable_on": 1667953889,
       "certs_received": {
@@ -56469,7 +57643,7 @@
     "Ayka07": {
       "index": 2711,
       "owner_key": "6Lsmzzb2yfMrk3WaKSKqAiChxVkzFRFkbzxPbghVGogm",
-      "balance": 1208911,
+      "balance": 1248597,
       "membership_expire_on": 1710261316,
       "next_cert_issuable_on": 1644335995,
       "certs_received": {
@@ -56503,8 +57677,8 @@
     "FRANZ": {
       "index": 10662,
       "owner_key": "6M32mytwPcfAbaga22Lbf4qJQo2CGmZSds5KQxayjfSa",
-      "balance": 514656,
-      "membership_expire_on": 1701268389,
+      "balance": 543142,
+      "membership_expire_on": 1727807254,
       "next_cert_issuable_on": 1684641123,
       "certs_received": {
         "EmmaD": 1732840222,
@@ -56517,12 +57691,26 @@
         "Lieve": 1745370898
       }
     },
+    "ChantalG": {
+      "index": 13738,
+      "owner_key": "6MAUUScp4HS3UcMtGNqCDrjurqx31teEiCpU7sa4MMAa",
+      "balance": 9312,
+      "membership_expire_on": 1724180513,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "DomVe": 1759469879,
+        "SylG": 1759424007,
+        "RudiB": 1759468005,
+        "levanne": 1759468005,
+        "CelesteWH": 1759431273
+      }
+    },
     "Melvil84": {
       "index": 12285,
       "owner_key": "6MGHieeTSqM9VJYAhiZrJdu4yy9QzVykJZdS5Q9taAsr",
-      "balance": 168792,
+      "balance": 208478,
       "membership_expire_on": 1709054116,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696250339,
       "certs_received": {
         "Andrepac": 1743611682,
         "Angharad": 1743828554,
@@ -56540,8 +57728,6 @@
       "certs_received": {
         "MarieBouny": 1710115303,
         "Gedege": 1699653610,
-        "EleonoreBois": 1694031850,
-        "AurelienBois": 1696465836,
         "Lucianael": 1732752728,
         "annefreda": 1721149183
       }
@@ -56549,7 +57735,7 @@
     "Patou86": {
       "index": 9499,
       "owner_key": "6MPgmAdrrvCEgsXkoW9uinWvNaJTEJZQx9qV5hnEmk48",
-      "balance": 526074,
+      "balance": 538180,
       "membership_expire_on": 1720528219,
       "next_cert_issuable_on": 1690112957,
       "certs_received": {
@@ -56564,7 +57750,7 @@
     "Patmos": {
       "index": 7165,
       "owner_key": "6MRxDQ3rMidjXmQERV5hVwZDkFDo4mcmc2CU23UTDuUh",
-      "balance": 553519,
+      "balance": 593205,
       "membership_expire_on": 1708730977,
       "next_cert_issuable_on": 1686681345,
       "certs_received": {
@@ -56593,9 +57779,9 @@
     "Lucyinthesky": {
       "index": 13306,
       "owner_key": "6MSmLKP1TfggZKx2K3bBRVRSrVfajiF9KzfCeN7cwJUK",
-      "balance": 133088,
+      "balance": 197774,
       "membership_expire_on": 1722204848,
-      "next_cert_issuable_on": 1693375399,
+      "next_cert_issuable_on": 1694692273,
       "certs_received": {
         "absalon2": 1754241039,
         "MaryMarie": 1754264416,
@@ -56607,8 +57793,8 @@
     "vialli": {
       "index": 9798,
       "owner_key": "6MV8KUGw8kq4CAUSUT2JHnNiNNsZQL3PTkjfnV1NPrjD",
-      "balance": 355937,
-      "membership_expire_on": 1695995412,
+      "balance": 386999,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666336832,
       "certs_received": {
         "CyrilPommier": 1727591686,
@@ -56621,7 +57807,7 @@
     "Anthoula": {
       "index": 8203,
       "owner_key": "6McoW9AjT8kttFLK4bQAnGPf3HfJQUDxL2mSC2aVwGjW",
-      "balance": 420699,
+      "balance": 460385,
       "membership_expire_on": 1710100219,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -56637,7 +57823,7 @@
       "index": 4316,
       "owner_key": "6MeqNVyQpokXXHbBwaENT19ZARHT5EMShFjrciEma96g",
       "balance": 743615,
-      "membership_expire_on": 1693502044,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "LILI": 1725091197,
@@ -56650,7 +57836,7 @@
     "MichelLeMer": {
       "index": 2534,
       "owner_key": "6Mi6Mbsb8NxhAkxhqRV6yCzcfsQgaXwQP7gjMUQNYajA",
-      "balance": 911149,
+      "balance": 950835,
       "membership_expire_on": 1714703166,
       "next_cert_issuable_on": 1683217566,
       "certs_received": {
@@ -56667,7 +57853,7 @@
     "BriSi": {
       "index": 11828,
       "owner_key": "6MiBuSCe2fqxNTALX2ZHLHsdvzpT9d1Xr3bZhCESAUgi",
-      "balance": 182705,
+      "balance": 222391,
       "membership_expire_on": 1709306692,
       "next_cert_issuable_on": 1684317703,
       "certs_received": {
@@ -56682,14 +57868,16 @@
     "Corinart": {
       "index": 8072,
       "owner_key": "6Mj3zQyN5tWJWMxFkFBZj5Ee8Q3C8fjp8WwL32jXUo8C",
-      "balance": 426128,
+      "balance": 430314,
       "membership_expire_on": 1715715017,
       "next_cert_issuable_on": 1667789437,
       "certs_received": {
         "samsufy": 1713459313,
         "ClaireAzur": 1712723182,
+        "BlanDine06": 1756883836,
         "Tchois": 1715725899,
         "Delfe": 1713390368,
+        "EricL": 1757541212,
         "S-H": 1713894443,
         "Edith2213": 1715218706
       }
@@ -56697,21 +57885,39 @@
     "MaxGay07": {
       "index": 7049,
       "owner_key": "6Mp6gYfzKY9fmHBWA7M7w5WsMs2gFGQjkvAsBMuZ3M96",
-      "balance": 595797,
+      "balance": 635483,
       "membership_expire_on": 1705448711,
       "next_cert_issuable_on": 1676728064,
       "certs_received": {
         "Tico": 1707993180,
         "Laurentld": 1707991057,
+        "Floclochette": 1758487328,
+        "Mattleblanc": 1758493705,
         "ClauTie26": 1707951993,
+        "VincentMercier": 1758473251,
         "RemiGaudi26": 1708652228,
         "Loune": 1707980485
       }
     },
+    "sylgiane": {
+      "index": 13538,
+      "owner_key": "6MpVLYP5NniDGoZsF66fAZqvegSWQ3wVVhdh3FiZiL9k",
+      "balance": 140194,
+      "membership_expire_on": 1725737276,
+      "next_cert_issuable_on": 1695035294,
+      "certs_received": {
+        "Dom79": 1757379647,
+        "FRANCINE79": 1757372416,
+        "fredo79": 1757380300,
+        "Val79": 1758761956,
+        "Carolune": 1757380618,
+        "Laburg79": 1757385709
+      }
+    },
     "Alex07": {
       "index": 6808,
       "owner_key": "6MpzmjkYmhZM6on32i5qzJPCGS2naUk8fynyFtkgCew4",
-      "balance": 632566,
+      "balance": 672252,
       "membership_expire_on": 1705336791,
       "next_cert_issuable_on": 1673851191,
       "certs_received": {
@@ -56737,6 +57943,21 @@
         "domimeert": 1715366782
       }
     },
+    "MaugeyRegis": {
+      "index": 13593,
+      "owner_key": "6MzoLzPBQP4JjWGMHaanofPWbd6po6TiVJ7UrnEf9jy1",
+      "balance": 58863,
+      "membership_expire_on": 1726443820,
+      "next_cert_issuable_on": 1696238641,
+      "certs_received": {
+        "LeDemineur21": 1758081345,
+        "CaroJans": 1758061136,
+        "yasminaB": 1758169587,
+        "vibes": 1758035197,
+        "DCat": 1758131926,
+        "MarcJPG1": 1759285453
+      }
+    },
     "Mikorimer": {
       "index": 2057,
       "owner_key": "6N3rUaeXbcAHg6CMFZBeAA2YMTM689qNw2CgXSHZ2q9w",
@@ -56748,17 +57969,15 @@
     "Jjacq07": {
       "index": 2262,
       "owner_key": "6N73MDDfQ6AVyRZguv79UxsHFsdCR7xmggoddbDobEcK",
-      "balance": 399434,
+      "balance": 439120,
       "membership_expire_on": 1720899159,
-      "next_cert_issuable_on": 1689413559,
+      "next_cert_issuable_on": 1696420733,
       "certs_received": {
-        "MatheoLibreCommeLaMesange": 1694307176,
         "VictoireJune": 1723503185,
         "Flocon": 1728429361,
         "Eveilducoeur": 1726027056,
         "Mathilde07": 1716854776,
         "Philippe26": 1742494423,
-        "Orchys": 1696641380,
         "Athena73": 1723539682,
         "JeanTibou": 1721501849,
         "lumi": 1721575490,
@@ -56770,7 +57989,7 @@
     "ColetteB": {
       "index": 7262,
       "owner_key": "6NBPQGjiJFyoyMB8Zw5S7SaxscpK9jbkFq9GNSnZr1c5",
-      "balance": 406690,
+      "balance": 446376,
       "membership_expire_on": 1720415485,
       "next_cert_issuable_on": 1651536816,
       "certs_received": {
@@ -56788,8 +58007,8 @@
     "Cocora": {
       "index": 9802,
       "owner_key": "6NFP8SBmDHxqNnYt1zXeP8TjGVT2UdCazs2XnWXZ5Mc3",
-      "balance": 275204,
-      "membership_expire_on": 1695568531,
+      "balance": 314890,
+      "membership_expire_on": 1726492489,
       "next_cert_issuable_on": 1669206569,
       "certs_received": {
         "ErickG_G": 1727717903,
@@ -56803,11 +58022,12 @@
     "dosy": {
       "index": 13156,
       "owner_key": "6NKsQt4itu2rYeWLBKJEjYj65u8DfRreb2DkT63Hbedy",
-      "balance": 586278,
+      "balance": 695964,
       "membership_expire_on": 1718565156,
       "next_cert_issuable_on": 1693485924,
       "certs_received": {
         "Gemeff": 1752449692,
+        "MayaPTT": 1757122079,
         "Mayo": 1752453458,
         "MIZO": 1754679273,
         "GeraldineGarrigues": 1752455337,
@@ -56841,7 +58061,7 @@
     "Mariongou": {
       "index": 7471,
       "owner_key": "6NS4DwuJCgafJ3dNWzq591GFa4myHWksguMNGfQ5HGsZ",
-      "balance": 414404,
+      "balance": 454090,
       "membership_expire_on": 1707996048,
       "next_cert_issuable_on": 1668603086,
       "certs_received": {
@@ -56855,7 +58075,7 @@
     "GabrielLavenier": {
       "index": 623,
       "owner_key": "6NVwMpLdWmCq8aXuWDjgfiQ23m8pE14CAtm615Cm8bKR",
-      "balance": 1949253,
+      "balance": 1988939,
       "membership_expire_on": 1715697768,
       "next_cert_issuable_on": 1690947018,
       "certs_received": {
@@ -56863,14 +58083,13 @@
         "lolinette": 1710046573,
         "AnneAmbles": 1755931985,
         "PascalMahe": 1748232471,
-        "AurelieLavenier": 1715800223,
-        "PhSoudan": 1694296459
+        "AurelieLavenier": 1715800223
       }
     },
     "Amankay": {
       "index": 10320,
       "owner_key": "6NYLMF8s62qP4UpvCmJ6R4knM3pB6akERnuWivgbmjQA",
-      "balance": 742145,
+      "balance": 697831,
       "membership_expire_on": 1699098866,
       "next_cert_issuable_on": 1679049233,
       "certs_received": {
@@ -56892,7 +58111,7 @@
     "anva": {
       "index": 10749,
       "owner_key": "6NdxoikN81cJtXfrCtby4vVMpkJURwhckpTQx45W6Ygr",
-      "balance": 283161,
+      "balance": 322847,
       "membership_expire_on": 1700346296,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -56906,7 +58125,7 @@
     "Binette": {
       "index": 10710,
       "owner_key": "6NjXzL8E6eNkZ14FxKFNaygAK6Qa4vaRFcsdti3Y1qzy",
-      "balance": 311338,
+      "balance": 326024,
       "membership_expire_on": 1701026703,
       "next_cert_issuable_on": 1672157721,
       "certs_received": {
@@ -56917,10 +58136,24 @@
         "Papillote": 1733377866
       }
     },
+    "Annka": {
+      "index": 13764,
+      "owner_key": "6NsjzDwTsWHSwrRTeJTGbdaePVAYxVrqcSDzygwmEutH",
+      "balance": 495000,
+      "membership_expire_on": 1726866888,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "rosydailleurs": 1759293539,
+        "yannlefranco": 1759043636,
+        "MarieDo": 1759044346,
+        "Ladgege": 1759835104,
+        "Teriiehina": 1759476607
+      }
+    },
     "Rosvalla": {
       "index": 8037,
       "owner_key": "6NxQZaTaVSuPuzrHbw1dtMuuyYUtS8NH9npsvifzoEhW",
-      "balance": 505562,
+      "balance": 545248,
       "membership_expire_on": 1714419968,
       "next_cert_issuable_on": 1668144803,
       "certs_received": {
@@ -56935,7 +58168,7 @@
     "EdithChevreuil": {
       "index": 8227,
       "owner_key": "6P3sdcauEuQm4mBGCoCzgiLpNAWNGLgoX7EKN5ZWPRxQ",
-      "balance": 333181,
+      "balance": 362867,
       "membership_expire_on": 1711908154,
       "next_cert_issuable_on": 1686233329,
       "certs_received": {
@@ -56966,13 +58199,14 @@
     "MartiGraef": {
       "index": 9151,
       "owner_key": "6PMzW1tjcNZnTxZZXLtL6B3FhsQb6qHfTUJ3eUsLsZZy",
-      "balance": 269972,
+      "balance": 148658,
       "membership_expire_on": 1715038170,
       "next_cert_issuable_on": 1687013646,
       "certs_received": {
         "DanWF": 1723072120,
         "FenderChristophe": 1724880305,
         "ENO": 1722319702,
+        "Djan": 1758667909,
         "lilarose": 1750406305,
         "Schnick": 1736277303,
         "seb2nor12": 1740121628,
@@ -56987,8 +58221,8 @@
     "SwannWeb": {
       "index": 11283,
       "owner_key": "6PWdEkHRSomYZsMwVCbUbXiUzwad75N2skQDnQmZs7wp",
-      "balance": 237624,
-      "membership_expire_on": 1701112452,
+      "balance": 277310,
+      "membership_expire_on": 1728038707,
       "next_cert_issuable_on": 1674293048,
       "certs_received": {
         "IsaForest": 1732682097,
@@ -57007,7 +58241,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1638975845,
       "certs_received": {
-        "tiphaine": 1693623354,
         "neo9": 1698966146,
         "SophieR03": 1703570066,
         "Mama63isa": 1708575206
@@ -57016,16 +58249,19 @@
     "Mathdom": {
       "index": 13020,
       "owner_key": "6Pe6UWTwZenxCNoAn4Dv3SxuXc7GdcnSKDwNvCPqNvfT",
-      "balance": 79892,
+      "balance": 120578,
       "membership_expire_on": 1719270484,
-      "next_cert_issuable_on": 1693150201,
+      "next_cert_issuable_on": 1696247729,
       "certs_received": {
         "Flore45": 1750743618,
         "Holistique": 1750737417,
+        "TiboDom": 1756619763,
         "PatrickREVIF": 1755550730,
+        "theotop": 1759441552,
         "Seve": 1751094552,
         "Floreale": 1750563208,
         "Xavier91": 1750572240,
+        "Cat45190": 1759118452,
         "Urantia": 1750838134,
         "Carole45": 1750802397,
         "NadiaNadodu": 1752995988
@@ -57034,16 +58270,15 @@
     "monique79": {
       "index": 5566,
       "owner_key": "6PgUERBf6fgGw6XcPtLYpVM5Jxtpj3kw1SbKXMzMTpzb",
-      "balance": 656145,
+      "balance": 707831,
       "membership_expire_on": 1713312094,
-      "next_cert_issuable_on": 1691147551,
+      "next_cert_issuable_on": 1695382790,
       "certs_received": {
         "Kevinbdn": 1755026709,
         "Samay": 1749010347,
         "Dom79": 1748675801,
         "fredo79": 1748669327,
         "SYBON": 1748658213,
-        "Titem": 1693536736,
         "Mozart85": 1732055475,
         "Micheleverseau": 1748757950
       }
@@ -57059,7 +58294,7 @@
     "EstelAlmaLibre": {
       "index": 9120,
       "owner_key": "6PjG8J9d1UtUjoBQSrQ8we5U5hKdrm6kGPvXTjDDcqrw",
-      "balance": 256515,
+      "balance": 296201,
       "membership_expire_on": 1721936263,
       "next_cert_issuable_on": 1668771301,
       "certs_received": {
@@ -57076,7 +58311,7 @@
     "Juarlo": {
       "index": 11289,
       "owner_key": "6PmtWibaQjsq8WS3FwdRuD432eWwFHajLLDcVKaiZhAx",
-      "balance": 242624,
+      "balance": 282310,
       "membership_expire_on": 1705521813,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -57098,9 +58333,9 @@
     "Moudom": {
       "index": 7101,
       "owner_key": "6Q2XLpPqFH3LibhVE8QrqY1cx1ZWgJgCpSKXAnZTw3L9",
-      "balance": 398559,
+      "balance": 438745,
       "membership_expire_on": 1703536251,
-      "next_cert_issuable_on": 1693201920,
+      "next_cert_issuable_on": 1695175643,
       "certs_received": {
         "Alfybe": 1708833675,
         "Eutoniste": 1737160287,
@@ -57119,7 +58354,7 @@
     "Annina": {
       "index": 5287,
       "owner_key": "6QER5uokjo3hjUb7jJCtkPuMGEVb77YeMiWugvZjBhNY",
-      "balance": 682338,
+      "balance": 722024,
       "membership_expire_on": 1708179377,
       "next_cert_issuable_on": 1685156009,
       "certs_received": {
@@ -57147,7 +58382,7 @@
     "Renfers": {
       "index": 8368,
       "owner_key": "6QdBWZzhkfJuVn8mczaW9RQ9ukgn4oXdbG2USzQWVDkx",
-      "balance": 384807,
+      "balance": 424493,
       "membership_expire_on": 1711835146,
       "next_cert_issuable_on": 1686537209,
       "certs_received": {
@@ -57189,7 +58424,7 @@
     "AdrienB": {
       "index": 11133,
       "owner_key": "6R4BAnzMnJMHiroxND85tKLPQ5oRLCAo4CAtBbi2fSp5",
-      "balance": 274635,
+      "balance": 314321,
       "membership_expire_on": 1704553520,
       "next_cert_issuable_on": 1689003847,
       "certs_received": {
@@ -57207,7 +58442,7 @@
     "Ormica": {
       "index": 7123,
       "owner_key": "6R73EayeYXozHhkifF5FJPwkuRF84TdDhkdyR4iy634d",
-      "balance": 342845,
+      "balance": 344531,
       "membership_expire_on": 1705046212,
       "next_cert_issuable_on": 1682350461,
       "certs_received": {
@@ -57240,7 +58475,7 @@
     "ChantalA": {
       "index": 10394,
       "owner_key": "6R8bmwrbftJrBL2NFo368A7Pt2Y9fwNpCjFfMTzTp5UA",
-      "balance": 640700,
+      "balance": 680386,
       "membership_expire_on": 1699290711,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -57254,7 +58489,7 @@
     "Pllumes": {
       "index": 8760,
       "owner_key": "6R9S6QydDE8JCqA1tRHA9PWzDDzAaFH8b45QArBwNYo6",
-      "balance": 445959,
+      "balance": 485645,
       "membership_expire_on": 1715473716,
       "next_cert_issuable_on": 1685318050,
       "certs_received": {
@@ -57280,7 +58515,7 @@
     "Jeanpierre44": {
       "index": 11105,
       "owner_key": "6RNELcQ6MF5vZhNBcheS1XNxeDBnbpbJKF1jWFpx8cAZ",
-      "balance": 284958,
+      "balance": 324644,
       "membership_expire_on": 1701658530,
       "next_cert_issuable_on": 1676109903,
       "certs_received": {
@@ -57295,7 +58530,7 @@
     "Toutane": {
       "index": 10344,
       "owner_key": "6RPa6mGZGePUf3zmsCfFAEJtYML14NSUdfKDXK4faNeT",
-      "balance": 319636,
+      "balance": 359322,
       "membership_expire_on": 1699051558,
       "next_cert_issuable_on": 1671513697,
       "certs_received": {
@@ -57309,7 +58544,7 @@
     "Jucapo": {
       "index": 5216,
       "owner_key": "6RaM2uUC7ZEi1WhpXF1bdnkswswuRY8JyAhoXn1c8Hf8",
-      "balance": 463874,
+      "balance": 503560,
       "membership_expire_on": 1711981049,
       "next_cert_issuable_on": 1685069949,
       "certs_received": {
@@ -57330,25 +58565,24 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "AudreyHesseling": 1696194499,
-        "AlexDurain": 1695795423,
         "ElisaDunNotreMonde": 1696988096,
-        "LelievreJulia": 1697439722,
-        "Cat11": 1695795423,
-        "domimeert": 1695874811
+        "LelievreJulia": 1697439722
       }
     },
     "Inanna": {
       "index": 12859,
       "owner_key": "6Rniu1g745tpmQk3NQNUfnkFkVnTyfkkfeVsAdK2weFj",
-      "balance": 104876,
+      "balance": 175562,
       "membership_expire_on": 1718041122,
-      "next_cert_issuable_on": 1690647947,
+      "next_cert_issuable_on": 1696692522,
       "certs_received": {
         "StephanieLumiere": 1751945734,
         "Elinette": 1749599383,
+        "RudyMathey": 1758916111,
         "morimontj": 1749600413,
+        "Fabrice_T": 1757224730,
         "Barbatruc": 1749599383,
+        "Loris_T": 1757741266,
         "Katecat": 1749599383,
         "SteffiH": 1752646339,
         "MPaule": 1749599383
@@ -57357,20 +58591,22 @@
     "Laurent42": {
       "index": 9926,
       "owner_key": "6RrcKvoeWuGJbdF7d2VyrAr3yXLb5ceZ8GG443fSf2pS",
-      "balance": 272070,
-      "membership_expire_on": 1696991546,
-      "next_cert_issuable_on": 1691985959,
+      "balance": 364356,
+      "membership_expire_on": 1724380566,
+      "next_cert_issuable_on": 1692894966,
       "certs_received": {
         "Amarante": 1756537583,
         "VictoireJune": 1729570627,
         "VirginMarcCptMembre": 1730656466,
         "Eveilducoeur": 1728893881,
+        "JanineBoitel": 1758668325,
         "merenoel": 1728857605,
         "ILLIMITEE": 1748383094,
         "Syls": 1737610826,
         "DCat": 1736919128,
         "CatherineCPo": 1728691628,
         "Flandelila": 1728856292,
+        "Angele73": 1758670771,
         "CarolAmethyste": 1728897872,
         "Bzh38": 1728682408,
         "iserunelosangE": 1755649214,
@@ -57388,7 +58624,7 @@
     "Fulguramus": {
       "index": 11118,
       "owner_key": "6Rsumge4UtvxWpJugbFyCE5E2vLoS8A2jGLxwEnCAsrr",
-      "balance": 295909,
+      "balance": 335596,
       "membership_expire_on": 1704367034,
       "next_cert_issuable_on": 1683852019,
       "certs_received": {
@@ -57415,10 +58651,11 @@
     "ZimG": {
       "index": 13310,
       "owner_key": "6RuRmtYMAi86jkvyQvNNVE9p8fpFnb7boZMPugywDVfx",
-      "balance": 35836,
+      "balance": 75522,
       "membership_expire_on": 1720439699,
       "next_cert_issuable_on": 1693043048,
       "certs_received": {
+        "Tot16": 1757112442,
         "DaniailesA": 1753742438,
         "Chaton": 1753576997,
         "JeanneFlowJ": 1751997726,
@@ -57432,8 +58669,8 @@
     "Celine974": {
       "index": 6175,
       "owner_key": "6RuUqgbb9FFHknZ3cM77UXtXfc8BDM236eQaZ2cGYe6Y",
-      "balance": 115419,
-      "membership_expire_on": 1699402792,
+      "balance": 130105,
+      "membership_expire_on": 1727857778,
       "next_cert_issuable_on": 1688951345,
       "certs_received": {
         "Boris974": 1710873606,
@@ -57451,14 +58688,14 @@
         "Gislaine974": 1700411359,
         "MyrtilleMyriam": 1720547329,
         "Aeden974": 1722020274,
-        "pampermacole": 1700505220,
+        "pampermacole": 1758035979,
         "marcos974": 1700510343
       }
     },
     "SorayaMaia": {
       "index": 12197,
       "owner_key": "6Rv7PuLEhgmnjU4KLzdAKoW5E7sZmMTRttyQ2hiQSC6z",
-      "balance": 246776,
+      "balance": 286462,
       "membership_expire_on": 1711764531,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -57473,12 +58710,12 @@
     "Lilou": {
       "index": 774,
       "owner_key": "6S3jWcmaZrenQxjQZpVTUjan1RqKGpfDamcU99ByWchH",
-      "balance": 1958973,
+      "balance": 1998659,
       "membership_expire_on": 1713369862,
       "next_cert_issuable_on": 1681885034,
       "certs_received": {
         "jfa": 1706305175,
-        "Gerg": 1698257152,
+        "Gerg": 1757630821,
         "hv23": 1706305863,
         "Guenoel": 1696816674,
         "LeonardG": 1696816674,
@@ -57490,12 +58727,11 @@
       "owner_key": "6SDXEFLgjyxXapHnirbaLodMdhZ4N8FQRxRDGV7D4USW",
       "balance": 847078,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1633190742,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Jean-Marie": 1697390890,
         "Fredhaliotis": 1699385188,
         "Pascale72": 1701536197,
-        "guillaumed": 1695625910,
         "Yemo": 1705255945,
         "AmeliepE": 1719628974,
         "ecano": 1719720274,
@@ -57506,7 +58742,7 @@
     "Hub": {
       "index": 8778,
       "owner_key": "6SGAwKfyM1xGP5zgTED522No7cotarNYy9UikamsXAqM",
-      "balance": 444400,
+      "balance": 484086,
       "membership_expire_on": 1720035677,
       "next_cert_issuable_on": 1688604165,
       "certs_received": {
@@ -57524,14 +58760,16 @@
     "Krompo": {
       "index": 12239,
       "owner_key": "6SQt12xGxg4dvyc7PRvDnsT5oDt2YSwCTatjBKhup7X1",
-      "balance": 158164,
+      "balance": 197850,
       "membership_expire_on": 1711375884,
-      "next_cert_issuable_on": 1691878684,
+      "next_cert_issuable_on": 1696217429,
       "certs_received": {
+        "nicolasd": 1757064717,
         "pastachutta1964": 1743024127,
         "DomMembre": 1742950041,
         "DomVe": 1742939907,
         "Barbabulle73": 1742933484,
+        "KIAWE": 1756943043,
         "Hagakure88": 1742933788
       }
     },
@@ -57557,7 +58795,7 @@
     "BRI": {
       "index": 10245,
       "owner_key": "6SSK5rRyjCk4L1ouTR9Fn9aMjRvqZcRkeHsWJFK3R8yZ",
-      "balance": 319931,
+      "balance": 359617,
       "membership_expire_on": 1699291407,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -57590,11 +58828,10 @@
     "ChristianM": {
       "index": 5400,
       "owner_key": "6SbzaCRS5SUFQAck3XFD9NoQkYEFbktJzkTLLhzpiFaN",
-      "balance": 825513,
+      "balance": 865199,
       "membership_expire_on": 1713897521,
-      "next_cert_issuable_on": 1682411921,
+      "next_cert_issuable_on": 1694658992,
       "certs_received": {
-        "Clochette": 1693957424,
         "AMAA": 1722927797,
         "MarieBouny": 1732405709,
         "Salya": 1718098512,
@@ -57608,9 +58845,9 @@
     "Goldy": {
       "index": 4386,
       "owner_key": "6Sj95r11rtytEjAC7YGgp4JEMP5Y3tPTrQxaDRYLSb4T",
-      "balance": 472256,
+      "balance": 511942,
       "membership_expire_on": 1720211872,
-      "next_cert_issuable_on": 1667639918,
+      "next_cert_issuable_on": 1695130306,
       "certs_received": {
         "Maaude09": 1734319583,
         "bellis": 1732295752,
@@ -57623,10 +58860,11 @@
     "Warrior": {
       "index": 11160,
       "owner_key": "6SjFfnR3rJaSx25jcu9m3vjeJ1oCSX98oJCvxoGYnpTE",
-      "balance": 268883,
+      "balance": 287069,
       "membership_expire_on": 1702844557,
       "next_cert_issuable_on": 1684076045,
       "certs_received": {
+        "Rebel": 1759706327,
         "PhilAngel": 1736911728,
         "FabienneM": 1734802584,
         "AlphaCentauri": 1735981424,
@@ -57646,7 +58884,7 @@
     "Marie2023": {
       "index": 12209,
       "owner_key": "6SrYrXMkxPSZ1SsRXx42SYvcCHvi4QoYTXAh1Co8Gviy",
-      "balance": 232200,
+      "balance": 271886,
       "membership_expire_on": 1711802405,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -57692,7 +58930,7 @@
     "StephaneROBIN": {
       "index": 7598,
       "owner_key": "6T6wsDoQxLyQu6KfDDrAdj8jmgFvtQbFNQ21ygqtUJgg",
-      "balance": 569753,
+      "balance": 620439,
       "membership_expire_on": 1706019903,
       "next_cert_issuable_on": 1692801473,
       "certs_received": {
@@ -57714,16 +58952,16 @@
     "yasminaB": {
       "index": 884,
       "owner_key": "6TAzLWuNcSqgNDNpAutrKpPXcGJwy1ZEMeVvZSZNs2e3",
-      "balance": 1736757,
-      "membership_expire_on": 1701567723,
-      "next_cert_issuable_on": 1691549410,
+      "balance": 1611543,
+      "membership_expire_on": 1727992717,
+      "next_cert_issuable_on": 1695126387,
       "certs_received": {
         "Elorac": 1732681335,
         "CaroJans": 1713992004,
         "Sanashitaka": 1750654551,
         "Dom": 1751512727,
+        "MaugeyRegis": 1758528751,
         "MarieAmelie": 1730970210,
-        "DanielVienne": 1696619193,
         "Giny": 1718583820,
         "jeanferreira": 1749102612,
         "Juju21": 1753309544,
@@ -57750,19 +58988,26 @@
       "balance": 403588,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1635492074,
+      "certs_received": {}
+    },
+    "Bateau18300": {
+      "index": 13688,
+      "owner_key": "6TM8QQe3yXBAC8GD31j2BUYYruiyqYqdQpUwFe7goGRv",
+      "balance": 19624,
+      "membership_expire_on": 1724446402,
+      "next_cert_issuable_on": 0,
       "certs_received": {
-        "Helenep": 1693779087,
-        "kosnik": 1693599956,
-        "LeoLeo": 1694554119,
-        "Piratatacle": 1693599354,
-        "Piraculteur": 1693598762,
-        "Albin": 1693599658
+        "LaGoudale": 1758148525,
+        "Ananas21": 1758133599,
+        "Elbabecoba": 1758485325,
+        "Escoufle": 1758770748,
+        "Danie": 1758488440
       }
     },
     "LilouPtrs": {
       "index": 11148,
       "owner_key": "6TRtZz2ZQbkyg3oQ5tszPiK4hVcBMoK72BSGx4zDFnk1",
-      "balance": 302391,
+      "balance": 342077,
       "membership_expire_on": 1704711802,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -57779,10 +59024,7 @@
       "balance": 713334,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "AurelienBois": 1695168499,
-        "Matthias": 1693954616
-      }
+      "certs_received": {}
     },
     "LaureThuet": {
       "index": 4720,
@@ -57795,9 +59037,9 @@
     "PaulDominicus": {
       "index": 12130,
       "owner_key": "6TVyPTtyy3ph5ewyAcCKrijPy4nnoUkSEeQtLtucX8v7",
-      "balance": 156744,
+      "balance": 182930,
       "membership_expire_on": 1711325581,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695962464,
       "certs_received": {
         "Paradine": 1743011422,
         "AlexiaT": 1742950851,
@@ -57823,9 +59065,9 @@
     "MartinsE": {
       "index": 6400,
       "owner_key": "6Teearx7qrFz21L4R7RpSXtzKVk7STdGbGNCeZWrhcvP",
-      "balance": 589873,
-      "membership_expire_on": 1697574390,
-      "next_cert_issuable_on": 1684052640,
+      "balance": 629559,
+      "membership_expire_on": 1725455847,
+      "next_cert_issuable_on": 1694178587,
       "certs_received": {
         "anniedubayle": 1730175730,
         "jeje43": 1725777769,
@@ -57889,7 +59131,7 @@
     "Colombine75": {
       "index": 12348,
       "owner_key": "6TjaUdZkosmakQVXz9czuB981FQAXv4kNAN8GbpWKuMN",
-      "balance": 147084,
+      "balance": 186770,
       "membership_expire_on": 1712777131,
       "next_cert_issuable_on": 1682073736,
       "certs_received": {
@@ -57911,7 +59153,7 @@
     "GUL40_J21": {
       "index": 7454,
       "owner_key": "6Tp6BWtgxWqqAVSCJRR4Lu3k393sLF8HrcynFAQ6Cj9d",
-      "balance": 540228,
+      "balance": 579914,
       "membership_expire_on": 1706414131,
       "next_cert_issuable_on": 1672564141,
       "certs_received": {
@@ -57937,14 +59179,12 @@
     "MARTIGOUGOUGNETTE": {
       "index": 2425,
       "owner_key": "6TxkPT7KW3xz8vGVVKXHN5FPAt9pTxdCkBDyCpekymGv",
-      "balance": 1066385,
-      "membership_expire_on": 1701121457,
+      "balance": 1056071,
+      "membership_expire_on": 1727599920,
       "next_cert_issuable_on": 1682852562,
       "certs_received": {
         "DidierDavid": 1711159616,
         "MGweb": 1721879385,
-        "ClaudeM": 1694200048,
-        "ADodson": 1696377838,
         "Paola": 1710899028,
         "BRIGITTE2019": 1706076334,
         "Eauvive": 1741968054,
@@ -57971,13 +59211,14 @@
     "JCNAVARLAZ": {
       "index": 10939,
       "owner_key": "6U2T5hKftFyFEDPH6mTAgvCrYtJUSDFCaxBXMsFWWooY",
-      "balance": 4948853,
+      "balance": 4980539,
       "membership_expire_on": 1703084119,
       "next_cert_issuable_on": 1681618135,
       "certs_received": {
         "Estitz": 1734719681,
         "JaviEsko": 1744661584,
         "TxeRoki": 1734642290,
+        "jilguero": 1757803309,
         "Lolito": 1734643982,
         "Munillerro": 1744705273,
         "MAULOVI": 1734713268,
@@ -57989,7 +59230,7 @@
     "Topbricolo": {
       "index": 1682,
       "owner_key": "6U5mTGVx1V2eteVWC31UeMkiWLqYM9mvWdi4h39X4qFt",
-      "balance": 1569455,
+      "balance": 1609141,
       "membership_expire_on": 1722882743,
       "next_cert_issuable_on": 1666851873,
       "certs_received": {
@@ -58003,7 +59244,7 @@
     "leo6567": {
       "index": 12646,
       "owner_key": "6UBzZ7wDXAfzsahYVaNjga2jYXs4RV2y1u4kLLcb5uMs",
-      "balance": 112412,
+      "balance": 152098,
       "membership_expire_on": 1715615093,
       "next_cert_issuable_on": 1685239318,
       "certs_received": {
@@ -58028,7 +59269,7 @@
     "lilasvincent": {
       "index": 5885,
       "owner_key": "6UK8A2vFeNheM8UqdHnQiocQkaq4ANGmqgMb9uYwau6J",
-      "balance": 641316,
+      "balance": 681002,
       "membership_expire_on": 1721012507,
       "next_cert_issuable_on": 1689526907,
       "certs_received": {
@@ -58059,11 +59300,12 @@
     "Dom67": {
       "index": 12866,
       "owner_key": "6UT62vjyipJXnhjNpTqmKbV7p4Yi33NaAnz2QCwsVe9j",
-      "balance": 49508,
+      "balance": 148695,
       "membership_expire_on": 1717010875,
-      "next_cert_issuable_on": 1691819921,
+      "next_cert_issuable_on": 1696469604,
       "certs_received": {
         "FenderChristophe": 1756604956,
+        "pastachutta1964": 1758164265,
         "FabienneM": 1756244092,
         "DomMembre": 1748670797,
         "DomVe": 1748669327,
@@ -58075,16 +59317,23 @@
         "ChloeS": 1748713934,
         "Barbabulle73": 1749615125,
         "Schnick": 1754964157,
+        "Rserge": 1756835396,
+        "Katecat": 1757362749,
+        "thierryR51": 1758573581,
         "hazed": 1755304333,
+        "FEUERFRAU": 1756847923,
         "KIAWE": 1749172300,
         "Hagakure88": 1749616337,
-        "Antares13": 1748669327
+        "Rosiro": 1756762171,
+        "Nadia": 1756748998,
+        "Antares13": 1748669327,
+        "Puravida": 1758760908
       }
     },
     "ThomasRossi": {
       "index": 3590,
       "owner_key": "6Ud61EdF269YCz9NYke2yb1sinA4A4pepnPu6ivoFoQC",
-      "balance": 1254507,
+      "balance": 1294193,
       "membership_expire_on": 1707829904,
       "next_cert_issuable_on": 1676344304,
       "certs_received": {
@@ -58100,7 +59349,7 @@
     "chabada07": {
       "index": 10162,
       "owner_key": "6UdEjEU83SQWRWzrZPzFRahpNsSTs3netZmUnHuFqBR4",
-      "balance": 254210,
+      "balance": 294896,
       "membership_expire_on": 1698806128,
       "next_cert_issuable_on": 1682223264,
       "certs_received": {
@@ -58119,18 +59368,20 @@
         "martine26": 1753080343,
         "Jean-Claude-04": 1740287982,
         "Damery": 1742795878,
-        "LODS": 1730487141
+        "LODS": 1730487141,
+        "OLDBLACK84": 1758782314
       }
     },
     "DJP05": {
       "index": 10500,
       "owner_key": "6UmHNZo67omMfucM97LjCoYoB6p9jQpGFoxpjnDeYBx2",
-      "balance": 432087,
-      "membership_expire_on": 1698582290,
-      "next_cert_issuable_on": 0,
+      "balance": 631773,
+      "membership_expire_on": 1726596413,
+      "next_cert_issuable_on": 1696248679,
       "certs_received": {
         "Sofiachante": 1731459271,
         "Aveline": 1730997089,
+        "Lozang": 1759287548,
         "marieange": 1731691591,
         "Melusine": 1730319987,
         "sylvainT": 1731817476,
@@ -58140,7 +59391,7 @@
     "Pocahontas": {
       "index": 9037,
       "owner_key": "6UpgSkgKAqJ868VHnzbvTXCLn3KgeLvajqRzfqZYN3BK",
-      "balance": 450784,
+      "balance": 478670,
       "membership_expire_on": 1721910301,
       "next_cert_issuable_on": 1690424701,
       "certs_received": {
@@ -58169,7 +59420,7 @@
     "CathyDebronde": {
       "index": 5444,
       "owner_key": "6UsTstKhamfYc5MF7MYesFLsixG92rshoftAEUQch7bw",
-      "balance": 747881,
+      "balance": 779567,
       "membership_expire_on": 1715776207,
       "next_cert_issuable_on": 1684291048,
       "certs_received": {
@@ -58184,14 +59435,13 @@
     "AmeSurTerre": {
       "index": 5649,
       "owner_key": "6Uy6PxpSKWdkPTAn6N83ckZtt97Z5Zc1TCUKSfsdmZEG",
-      "balance": 719705,
+      "balance": 759391,
       "membership_expire_on": 1712693302,
       "next_cert_issuable_on": 1681289699,
       "certs_received": {
         "Flototype": 1743959172,
         "GastonL": 1697270080,
         "Ashawik": 1700243090,
-        "Yukulele": 1694667996,
         "Babaroun": 1701893799,
         "Naho": 1725296399,
         "AnneD": 1700336264,
@@ -58206,7 +59456,7 @@
     "Yelha": {
       "index": 9270,
       "owner_key": "6Uz2vFJeEvrQdueYMkiV64E5oEsCRBPfgfp74rNM7Lid",
-      "balance": 393299,
+      "balance": 392799,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1687248387,
       "certs_received": {
@@ -58221,7 +59471,7 @@
     "Ricpray": {
       "index": 11809,
       "owner_key": "6UzDss8CXYwVuX4sWyD9zQem1nQXtEjEAQsLXcXZTVuJ",
-      "balance": 223923,
+      "balance": 263609,
       "membership_expire_on": 1708016091,
       "next_cert_issuable_on": 1680482636,
       "certs_received": {
@@ -58236,9 +59486,9 @@
     "Agidoo": {
       "index": 12156,
       "owner_key": "6V4PubtA4YXNbfGFmKat4XP4iMWPqXpsmAYWv7dTPWxa",
-      "balance": 168108,
+      "balance": 257794,
       "membership_expire_on": 1710944938,
-      "next_cert_issuable_on": 1686556183,
+      "next_cert_issuable_on": 1692878819,
       "certs_received": {
         "CaroleBroutin": 1742493500,
         "Helene-petiteriviere": 1743004820,
@@ -58258,7 +59508,7 @@
     "raphaeltissot26": {
       "index": 10060,
       "owner_key": "6Vc7N9mHe4RPyWPLwrEC2qHSiqy1T9euPZP637APRmuZ",
-      "balance": 337616,
+      "balance": 377302,
       "membership_expire_on": 1697928589,
       "next_cert_issuable_on": 1670167917,
       "certs_received": {
@@ -58272,7 +59522,7 @@
     "Permaor": {
       "index": 6286,
       "owner_key": "6Vdq12CZQahjpLKHvyJsQP2aPh8SSL5TcmTxra46vxVN",
-      "balance": 493009,
+      "balance": 532695,
       "membership_expire_on": 1697823395,
       "next_cert_issuable_on": 1670550812,
       "certs_received": {
@@ -58303,7 +59553,7 @@
     "KaptainMarleau": {
       "index": 5511,
       "owner_key": "6Vsj3Pno3w2mVEAtpzyCSGdCW2Pt4uXHvSTbjQ3Y7G5Y",
-      "balance": 522754,
+      "balance": 562440,
       "membership_expire_on": 1697036952,
       "next_cert_issuable_on": 1686745565,
       "certs_received": {
@@ -58317,7 +59567,7 @@
     "Carolina73": {
       "index": 7205,
       "owner_key": "6VvizubSPR9SYiEVTPWNKQcVimxmV6G8qbHkDhreTjsD",
-      "balance": 546693,
+      "balance": 586379,
       "membership_expire_on": 1705934830,
       "next_cert_issuable_on": 1691464591,
       "certs_received": {
@@ -58345,7 +59595,7 @@
     "Debreb80": {
       "index": 9232,
       "owner_key": "6W1Ar6k4ws6kkAmW7QqfvpyX8brirAUPVvHhd3W1hJ3d",
-      "balance": 388680,
+      "balance": 428366,
       "membership_expire_on": 1724424426,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -58359,7 +59609,7 @@
     "Chris50": {
       "index": 11993,
       "owner_key": "6W825YErDKpmFPxvfQJkjEJRFL88ArnnbFhcehHPvPRH",
-      "balance": 143497,
+      "balance": 183183,
       "membership_expire_on": 1709688044,
       "next_cert_issuable_on": 1687787629,
       "certs_received": {
@@ -58377,12 +59627,7 @@
       "balance": 734821,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1641223930,
-      "certs_received": {
-        "LaurenceDavid": 1693541280,
-        "RaphaelleEva": 1693954903,
-        "AurelienBois": 1693963261,
-        "annefreda": 1693957696
-      }
+      "certs_received": {}
     },
     "lliges4u": {
       "index": 2765,
@@ -58395,7 +59640,7 @@
     "Quentinterriers": {
       "index": 7995,
       "owner_key": "6WGUmfdAHV46QZrMWCo2EZpfGcpf1YeKNnhV8CeRJomn",
-      "balance": 282628,
+      "balance": 322314,
       "membership_expire_on": 1708786045,
       "next_cert_issuable_on": 1682167663,
       "certs_received": {
@@ -58424,7 +59669,7 @@
     "Ayiti": {
       "index": 8155,
       "owner_key": "6WLW37oZAvWh7GSH6Xp6pXGcGCcT7NzpEmLPT7tMxAie",
-      "balance": 503455,
+      "balance": 543141,
       "membership_expire_on": 1713992419,
       "next_cert_issuable_on": 1690363786,
       "certs_received": {
@@ -58461,7 +59706,7 @@
     "SaverioStragapede": {
       "index": 4543,
       "owner_key": "6WXmw3MiHDofapDCoEAsPpqVa62bxCKmRBH7Pd188cco",
-      "balance": 979417,
+      "balance": 1019103,
       "membership_expire_on": 1702864394,
       "next_cert_issuable_on": 1673073030,
       "certs_received": {
@@ -58487,7 +59732,7 @@
     "Kali": {
       "index": 2385,
       "owner_key": "6WfwvSgnEyzzNjEPKQBMKKcsuBFnexaer7PUd46xfMnW",
-      "balance": 981739,
+      "balance": 1021425,
       "membership_expire_on": 1710985866,
       "next_cert_issuable_on": 1683273765,
       "certs_received": {
@@ -58495,6 +59740,7 @@
         "Hellorico": 1746743986,
         "Flor4": 1712119200,
         "Pandore": 1746314437,
+        "Caladestel": 1758587691,
         "LaurenceIG": 1755430893,
         "Sottay": 1745647669,
         "ylan": 1748237436,
@@ -58507,9 +59753,9 @@
     "Domusol": {
       "index": 12085,
       "owner_key": "6WhjLcYuvQuFKAmDfRwLMnZhWTyTHwGqpvPSJRQ3CNca",
-      "balance": 197219,
+      "balance": 220905,
       "membership_expire_on": 1711059529,
-      "next_cert_issuable_on": 1688402282,
+      "next_cert_issuable_on": 1696141567,
       "certs_received": {
         "SophieDeprez": 1749433061,
         "Monalibra": 1747882469,
@@ -58526,7 +59772,7 @@
     "pierrem07": {
       "index": 8869,
       "owner_key": "6WiCRVdgFwGRT5FZzrh6M3PoVQ6c4seGFgRfbYKxTN7U",
-      "balance": 403904,
+      "balance": 443590,
       "membership_expire_on": 1721424692,
       "next_cert_issuable_on": 1678896446,
       "certs_received": {
@@ -58543,7 +59789,7 @@
     "LouisePenaud": {
       "index": 12561,
       "owner_key": "6WohHUKiQurmwxvydC5jjDjqBmNkHxeTfuV7NnwcsfYQ",
-      "balance": 136956,
+      "balance": 176642,
       "membership_expire_on": 1714429551,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -58557,7 +59803,7 @@
     "isadesbois974": {
       "index": 5324,
       "owner_key": "6Wt1fxry7ccaNFoApMbd4u77VJqnXjyNqe9yxcGaYEMk",
-      "balance": 924938,
+      "balance": 964624,
       "membership_expire_on": 1717713252,
       "next_cert_issuable_on": 1657712238,
       "certs_received": {
@@ -58582,7 +59828,7 @@
     "Ditch": {
       "index": 10868,
       "owner_key": "6WtiHasFWQw3uk5WN3fjZ5E3W79Q1caCno5wDEpCBkEy",
-      "balance": 275748,
+      "balance": 315434,
       "membership_expire_on": 1702428433,
       "next_cert_issuable_on": 1671289372,
       "certs_received": {
@@ -58600,7 +59846,7 @@
     "SylvainHovasse": {
       "index": 11002,
       "owner_key": "6WxNatALSZahs8LYnAbdvMfp7PgFHn2XNeXxHzhyYPrd",
-      "balance": 265258,
+      "balance": 304944,
       "membership_expire_on": 1703537250,
       "next_cert_issuable_on": 1692496767,
       "certs_received": {
@@ -58617,15 +59863,12 @@
     "razabar": {
       "index": 5832,
       "owner_key": "6Wy1mgwfwp8wLzKTWh2KWBPMdi2jntSXv2VSd9Uv9rG5",
-      "balance": 26700,
-      "membership_expire_on": 1695482569,
+      "balance": 51294,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Yipyip": 1755581641,
-        "STELLA": 1695795706,
-        "amaterra": 1696488114,
-        "Spartacus": 1756075025,
-        "Mama63isa": 1695608687
+        "Spartacus": 1756075025
       }
     },
     "JulieSan": {
@@ -58642,17 +59885,19 @@
     "lolicirera": {
       "index": 10539,
       "owner_key": "6XCgYpfFFzDTumS75qrTKdanbbWTqp3yiJpL1FgmYBVE",
-      "balance": 49958,
-      "membership_expire_on": 1700588796,
-      "next_cert_issuable_on": 1690106352,
+      "balance": 410644,
+      "membership_expire_on": 1727138096,
+      "next_cert_issuable_on": 1696151294,
       "certs_received": {
         "Aguas": 1739228329,
         "LaMatriarcaToro": 1732585821,
         "agustinton": 1732566231,
+        "THORGAL1968": 1759194494,
         "Colheres": 1732663590,
         "EstherVM": 1732585821,
         "Guiri": 1748825887,
         "MaEstherG1": 1732585821,
+        "ManuelVillalejos": 1757124784,
         "Juanmatierraplana": 1753433037,
         "moincagranada": 1732586034,
         "GojiBerry": 1749176638,
@@ -58665,9 +59910,9 @@
     "Rach": {
       "index": 8660,
       "owner_key": "6XD1LtavCGE4JES6Z117N6HVLYLgZu923yXjWHe6p46t",
-      "balance": 82017,
+      "balance": 87045,
       "membership_expire_on": 1713617222,
-      "next_cert_issuable_on": 1689338215,
+      "next_cert_issuable_on": 1696212329,
       "certs_received": {
         "Rebirth35": 1735945962,
         "Beasejour": 1726144215,
@@ -58683,6 +59928,7 @@
         "Cywil": 1718310518,
         "Kaya971Wolf": 1737076790,
         "MissSophie": 1718324215,
+        "DjaneDiveraine": 1758802439,
         "CarolAmethyste": 1736131751,
         "sens": 1718307897,
         "psycotox80": 1718306231
@@ -58691,7 +59937,7 @@
     "Aliko": {
       "index": 3116,
       "owner_key": "6XEjnnP3bKBM29Nm9dkUPRmL89dV7xHTsozdwdJaBb8u",
-      "balance": 369685,
+      "balance": 409371,
       "membership_expire_on": 1710696378,
       "next_cert_issuable_on": 1676030327,
       "certs_received": {
@@ -58723,14 +59969,13 @@
       "certs_received": {
         "Pol": 1703101015,
         "NirmalaMary": 1702887151,
-        "DanieleBachere": 1714677785,
-        "ChristelleHerbagemembre": 1695962578
+        "DanieleBachere": 1714677785
       }
     },
     "CarolineJ": {
       "index": 8420,
       "owner_key": "6XVMbWSSVhdNYQwPuQfhYZ8MjievaAj48PNrX4Gdkemf",
-      "balance": 498283,
+      "balance": 537969,
       "membership_expire_on": 1716660679,
       "next_cert_issuable_on": 1685176777,
       "certs_received": {
@@ -58754,7 +59999,7 @@
     "Shambo26": {
       "index": 10732,
       "owner_key": "6XZeTds1wqbsYV6m9iVX4dhTuzNFwmdMsWs732bdCMq5",
-      "balance": 319320,
+      "balance": 359006,
       "membership_expire_on": 1701657504,
       "next_cert_issuable_on": 1678510441,
       "certs_received": {
@@ -58776,7 +60021,7 @@
     "Jaya": {
       "index": 13125,
       "owner_key": "6XgX72jzsaUGAsai4CbRLdyou7cUEx3cXhsJZzsc3AJj",
-      "balance": 56604,
+      "balance": 96290,
       "membership_expire_on": 1718223471,
       "next_cert_issuable_on": 1689692790,
       "certs_received": {
@@ -58803,7 +60048,7 @@
     "Serge05": {
       "index": 11801,
       "owner_key": "6XsPPtmWXh4W3LxRia5vSt21QkgXHUETdEra1FJKAW3P",
-      "balance": 196323,
+      "balance": 236009,
       "membership_expire_on": 1708971414,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -58822,8 +60067,7 @@
       "next_cert_issuable_on": 1654946797,
       "certs_received": {
         "laurienza": 1707379427,
-        "ChristineOliveira": 1712884294,
-        "Zoriko-J": 1694922884
+        "ChristineOliveira": 1712884294
       }
     },
     "OlgaR": {
@@ -58851,9 +60095,9 @@
     "Odilepicpic": {
       "index": 8528,
       "owner_key": "6Y3Vu2RceVnUgnJsNjU3bXbUjyqDtxdhLL6CB97PxVae",
-      "balance": 625366,
+      "balance": 698052,
       "membership_expire_on": 1713665425,
-      "next_cert_issuable_on": 1676636683,
+      "next_cert_issuable_on": 1696668526,
       "certs_received": {
         "VeroDeJetsDoux": 1720585562,
         "Renfers": 1718477343,
@@ -58869,7 +60113,7 @@
     "Falkena": {
       "index": 6472,
       "owner_key": "6Y3oY8gfoJJjvFxgdTtgBuYmpHAzv8tcz8M2QhzYSRaj",
-      "balance": 649717,
+      "balance": 689403,
       "membership_expire_on": 1702348631,
       "next_cert_issuable_on": 1676893243,
       "certs_received": {
@@ -58885,7 +60129,7 @@
     "Lonel": {
       "index": 2700,
       "owner_key": "6Y9SzPwFWnU5vTok8ZmgWv1pqK9ZjTKUCCQZwm313KvH",
-      "balance": 1771127,
+      "balance": 1810813,
       "membership_expire_on": 1712490294,
       "next_cert_issuable_on": 1673927501,
       "certs_received": {
@@ -58899,7 +60143,7 @@
     "CricriNM": {
       "index": 7328,
       "owner_key": "6YAdZppSSA5U7HiE6uwcGG8uZRKQaVhFHHqiQvX6TFbu",
-      "balance": 544087,
+      "balance": 572473,
       "membership_expire_on": 1710892581,
       "next_cert_issuable_on": 1680681491,
       "certs_received": {
@@ -58915,9 +60159,9 @@
     "Marylune": {
       "index": 13366,
       "owner_key": "6YGrA24JczLWJmQ7pnwkuxxHXfu6kNoCaMRjsTw4dcCp",
-      "balance": 50856,
+      "balance": 155542,
       "membership_expire_on": 1723208615,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695635090,
       "certs_received": {
         "Crystal": 1755148464,
         "catrelax11": 1754854633,
@@ -58955,7 +60199,7 @@
     "krodibert": {
       "index": 10313,
       "owner_key": "6YMxwc2z1YCt6L2CbvqHehum66yqu41NdLBnjrF7vTFU",
-      "balance": 315695,
+      "balance": 355381,
       "membership_expire_on": 1696870072,
       "next_cert_issuable_on": 1675074116,
       "certs_received": {
@@ -58969,9 +60213,9 @@
     "Estherm": {
       "index": 7398,
       "owner_key": "6YwJR2uw6TYo9kAHSay52xBn1pkkqed44MY44h4A79Jh",
-      "balance": 163358,
+      "balance": 181894,
       "membership_expire_on": 1705432014,
-      "next_cert_issuable_on": 1693468043,
+      "next_cert_issuable_on": 1694590122,
       "certs_received": {
         "Cordeliaze": 1710874640,
         "MaudD": 1714024964,
@@ -58989,6 +60233,7 @@
         "aitorjs": 1718449740,
         "Monicakoala": 1719614360,
         "Heimdall": 1730401167,
+        "Pit": 1756613113,
         "jilguero": 1756275488,
         "Moren": 1711139369,
         "GUL40_M4r": 1718275240,
@@ -59012,8 +60257,8 @@
     "ChloeWeber": {
       "index": 956,
       "owner_key": "6YxySDjzqF2EFCD9HDu7XQAay6vCPNeAE2PrwUJ7Dp12",
-      "balance": 1659688,
-      "membership_expire_on": 1700507428,
+      "balance": 1699374,
+      "membership_expire_on": 1728038707,
       "next_cert_issuable_on": 1674011558,
       "certs_received": {
         "IsaForest": 1732493150,
@@ -59029,7 +60274,7 @@
     "Milou": {
       "index": 12357,
       "owner_key": "6YzWK6UTDifm4SRa6HBmZQp7MeqdJdPSLEBcM31fJt55",
-      "balance": 169316,
+      "balance": 245002,
       "membership_expire_on": 1709749010,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -59043,7 +60288,7 @@
     "4rion": {
       "index": 2478,
       "owner_key": "6YzdZudkEP7R2zdQbL6FjbpGkP8Rjz9cYyGj2qb9sWdH",
-      "balance": 1771268,
+      "balance": 1810954,
       "membership_expire_on": 1701777560,
       "next_cert_issuable_on": 1671761631,
       "certs_received": {
@@ -59059,7 +60304,7 @@
     "Tchenka": {
       "index": 11588,
       "owner_key": "6Z7FWMLefhBUwAXCSjjqk5X5cVpCyjShK4Eq8YBWs1Hx",
-      "balance": 209508,
+      "balance": 249194,
       "membership_expire_on": 1702931278,
       "next_cert_issuable_on": 1683102204,
       "certs_received": {
@@ -59087,7 +60332,7 @@
     "ZAZU59": {
       "index": 13040,
       "owner_key": "6ZGDbg5UrKiZv5JjyUEeFKo8ik9HckxLMqeVQopULLBc",
-      "balance": 65148,
+      "balance": 44834,
       "membership_expire_on": 1719688295,
       "next_cert_issuable_on": 1688352475,
       "certs_received": {
@@ -59101,7 +60346,7 @@
     "ELECTRON": {
       "index": 1554,
       "owner_key": "6ZJmyYAMmgP3fAWReB1W7rHeeeTwgVmhUuYDu5bsdQRp",
-      "balance": 1397033,
+      "balance": 1436719,
       "membership_expire_on": 1703288637,
       "next_cert_issuable_on": 1685254941,
       "certs_received": {
@@ -59115,7 +60360,7 @@
     "NESPOULOUSNathalie": {
       "index": 8605,
       "owner_key": "6ZKgRXxL3DBcWmA7GxpYrDMEUG15BSeWG2BQ9BKvgLKx",
-      "balance": 580920,
+      "balance": 625106,
       "membership_expire_on": 1716473769,
       "next_cert_issuable_on": 1685348152,
       "certs_received": {
@@ -59131,9 +60376,9 @@
     "Nilia": {
       "index": 11666,
       "owner_key": "6ZMQsKEejUxGkNTWyuTZK87cGGFWCYjncYy4u26ef4bZ",
-      "balance": 218813,
+      "balance": 261499,
       "membership_expire_on": 1705006516,
-      "next_cert_issuable_on": 1693316985,
+      "next_cert_issuable_on": 1693997238,
       "certs_received": {
         "FatimaDonoso": 1754803182,
         "RitApolinario": 1751479441,
@@ -59142,15 +60387,21 @@
         "Judit137": 1739861493,
         "AureaLopes": 1749685992,
         "SunderSimranSingh": 1739859665,
+        "Yana": 1758307775,
         "InesHappyFamily": 1743268723,
         "EleonoraS": 1739859065,
         "NevFreeman": 1739861493,
+        "otto": 1758307301,
         "MiguelHappyFamily": 1749685992,
         "RafaMalheiro": 1752097440,
+        "Rafael": 1758307775,
         "Arina": 1750412036,
+        "SofiaDJ": 1758745071,
+        "SaoSampaio": 1758449680,
         "Rahhui": 1751619118,
         "JorgeDraven": 1750241199,
         "DavidJorge": 1750545514,
+        "PenaBranca": 1758307301,
         "ElisabeteMartins": 1752095584,
         "Kian": 1742428460
       }
@@ -59158,11 +60409,12 @@
     "touria": {
       "index": 1274,
       "owner_key": "6Zajb1e1uwadPNXa2gEwFLMuWp7koMBDkcTAD5TK6uqd",
-      "balance": 894969,
+      "balance": 934655,
       "membership_expire_on": 1716823960,
       "next_cert_issuable_on": 1693377819,
       "certs_received": {
         "ChristianSteCroix": 1719347975,
+        "fabiolino": 1757188703,
         "diletta": 1754771164,
         "dagasaga": 1752955294,
         "Irpar": 1712082936,
@@ -59174,8 +60426,8 @@
     "K11": {
       "index": 9567,
       "owner_key": "6ZjJBmifbCdw45RzTT6JKtgto7APU1zpMa6TvHQ5LnrP",
-      "balance": 368932,
-      "membership_expire_on": 1693827900,
+      "balance": 373204,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Toutoune73": 1726205713,
@@ -59203,8 +60455,8 @@
     "DamienMaupou": {
       "index": 9845,
       "owner_key": "6ZvrwjFafyQDZdAoTuFFqhMijBGBivCUt95EicounsJZ",
-      "balance": 357760,
-      "membership_expire_on": 1695758437,
+      "balance": 385588,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666758541,
       "certs_received": {
         "JC-MUNIER": 1728330740,
@@ -59229,7 +60481,7 @@
     "Daansko": {
       "index": 1256,
       "owner_key": "6ZwFik73AhKS4T6ubpTQuqWkPQ2MbbjVAHGZ4zbSrT9m",
-      "balance": 2015632,
+      "balance": 2055318,
       "membership_expire_on": 1713574968,
       "next_cert_issuable_on": 1682090033,
       "certs_received": {
@@ -59238,7 +60490,6 @@
         "Cat": 1718586636,
         "PascalGuillemain": 1718034487,
         "DanieleSenegasTrobadorenca": 1719618607,
-        "Oce": 1695070255,
         "mollenthiel": 1706303021
       }
     },
@@ -59261,10 +60512,24 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "demieuxenmieux": {
+      "index": 13472,
+      "owner_key": "6a3JA9uwxyocMNBcEERs6k6LknEr2Z1bFxWmufPCyNuB",
+      "balance": 99186,
+      "membership_expire_on": 1724645374,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Yanoudesiles": 1756421019,
+        "ThomasFilsduVent": 1756290784,
+        "CaroleM971": 1756292891,
+        "Daibijoss": 1756284330,
+        "Brig": 1756615226
+      }
+    },
     "enez": {
       "index": 3565,
       "owner_key": "6aHDVML3c7pvQ5KU6SsnNKiwxH7n2GYnCqhdDHMwDMwZ",
-      "balance": 1243426,
+      "balance": 1283112,
       "membership_expire_on": 1712237071,
       "next_cert_issuable_on": 1664786298,
       "certs_received": {
@@ -59278,7 +60543,7 @@
     "Carfa": {
       "index": 10742,
       "owner_key": "6aMJcyiqncYK87qy1faRxEy7sAkYf2fM1XNncVomCoPH",
-      "balance": 285220,
+      "balance": 324906,
       "membership_expire_on": 1701960205,
       "next_cert_issuable_on": 1681736240,
       "certs_received": {
@@ -59295,7 +60560,7 @@
     "Cathdanse": {
       "index": 8014,
       "owner_key": "6aRWHSESgsy8Y9ckTU4wsavG8cPn8JoB71S6hi5sEWh",
-      "balance": 550049,
+      "balance": 589735,
       "membership_expire_on": 1716562069,
       "next_cert_issuable_on": 1662736389,
       "certs_received": {
@@ -59303,6 +60568,7 @@
         "Eric": 1714518966,
         "Ded": 1714535643,
         "SicouJess": 1714507755,
+        "CecileM": 1758831743,
         "Micka": 1714532083,
         "Dala": 1714508796
       }
@@ -59326,7 +60592,7 @@
     "MarlenedeManas": {
       "index": 10723,
       "owner_key": "6afugLsPLfew2effMdVdrzPKTuD8iVYx6YGvMuKUe5Ch",
-      "balance": 300279,
+      "balance": 339965,
       "membership_expire_on": 1701349725,
       "next_cert_issuable_on": 1677207217,
       "certs_received": {
@@ -59351,7 +60617,7 @@
     "NICKY": {
       "index": 10511,
       "owner_key": "6aj9eiDgxewFZnX2Kz5pJ3zdQ9rw9R3hDGRiThL9TQNP",
-      "balance": 252622,
+      "balance": 288308,
       "membership_expire_on": 1700351222,
       "next_cert_issuable_on": 1679041132,
       "certs_received": {
@@ -59378,9 +60644,9 @@
     "ibisio": {
       "index": 12864,
       "owner_key": "6au3S6MK31YbVrPKyuEGomCG33fSSeSx1uk36C7trDiS",
-      "balance": 103708,
+      "balance": 135394,
       "membership_expire_on": 1718046407,
-      "next_cert_issuable_on": 1692852549,
+      "next_cert_issuable_on": 1696377607,
       "certs_received": {
         "Gscarabbe": 1750903242,
         "Flore45": 1754284798,
@@ -59398,12 +60664,13 @@
     "Clairette31": {
       "index": 1315,
       "owner_key": "6avh1ySEw45NChhT6AzBBLhqQKXcbL7ehuWFFPNacx4i",
-      "balance": 1580823,
+      "balance": 1620509,
       "membership_expire_on": 1707095729,
       "next_cert_issuable_on": 1692589213,
       "certs_received": {
         "dianto": 1715803068,
         "Vivakvo": 1709261644,
+        "Emilie850": 1756874561,
         "Elsaz": 1729709826,
         "Kativanna": 1715899436,
         "yannlefranco": 1709874106,
@@ -59416,9 +60683,9 @@
     "MaraVilla": {
       "index": 8351,
       "owner_key": "6awZBj7dkBsKUy42FZ5gMyvBvJ1PDysnWLks3UhwwYHw",
-      "balance": 116485,
+      "balance": 98671,
       "membership_expire_on": 1712006184,
-      "next_cert_issuable_on": 1693133548,
+      "next_cert_issuable_on": 1694605517,
       "certs_received": {
         "UFO": 1735802380,
         "Manu_El": 1717522592,
@@ -59483,15 +60750,16 @@
     "Javier_Ormus": {
       "index": 12643,
       "owner_key": "6b7woaZ8aLHmQe12k4Kr6XWdnDGWTp88L5otT5GYSsj2",
-      "balance": 1136112,
+      "balance": 1377798,
       "membership_expire_on": 1715277732,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695645002,
       "certs_received": {
         "YUAWIMA": 1746857454,
         "Vikolander": 1746857091,
         "Teka": 1746857454,
         "MaitePG76": 1746860086,
         "BeatricePieper": 1746848470,
+        "Marianfs": 1758683243,
         "Libertad": 1746861540
       }
     },
@@ -59506,7 +60774,7 @@
     "toutenstock": {
       "index": 2820,
       "owner_key": "6bFPdaePSc7mk2Ujj2K6AQ4at2JeTGWZZjmBe1eZSEXf",
-      "balance": 840192,
+      "balance": 879878,
       "membership_expire_on": 1697491506,
       "next_cert_issuable_on": 1666704898,
       "certs_received": {
@@ -59518,16 +60786,15 @@
         "NatTher": 1697571205,
         "armamat": 1715893057,
         "Did-yeah": 1721808849,
-        "Damery": 1695376322,
-        "Sandy": 1701658643
+        "Sandy": 1758131565
       }
     },
     "laurencef": {
       "index": 13062,
       "owner_key": "6bRAenjMj3qWXur61f536NP1HuiqNtvkmiUnuGgCV4Gx",
-      "balance": 64164,
+      "balance": 53850,
       "membership_expire_on": 1714829857,
-      "next_cert_issuable_on": 1693307176,
+      "next_cert_issuable_on": 1696309100,
       "certs_received": {
         "StephanieLumiere": 1751396617,
         "RosyRio": 1751423188,
@@ -59558,9 +60825,9 @@
     "Chris7": {
       "index": 6823,
       "owner_key": "6bUM2HgKtpGeFi5ftW1hYygGDPMm89JufEzPHnxPC8BH",
-      "balance": 969433,
+      "balance": 1009119,
       "membership_expire_on": 1702080765,
-      "next_cert_issuable_on": 1647949940,
+      "next_cert_issuable_on": 1694069242,
       "certs_received": {
         "absalon2": 1706738964,
         "EmmanuelPrenant": 1706749996,
@@ -59594,7 +60861,7 @@
     "DadaPlanetaLibre": {
       "index": 10582,
       "owner_key": "6bsQNFg9ErrgfgxxbVvBK8PEftrdAaVQHvQNbmK4G8Ym",
-      "balance": 143701,
+      "balance": 173387,
       "membership_expire_on": 1700671078,
       "next_cert_issuable_on": 1685072878,
       "certs_received": {
@@ -59645,9 +60912,9 @@
     "aujardindalexandra": {
       "index": 11453,
       "owner_key": "6c2Nuc7ek1LyNR6xGzPWWik1BASxD2fYcwi2Z2wJxMHj",
-      "balance": 189306,
+      "balance": 175592,
       "membership_expire_on": 1705353110,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693661278,
       "certs_received": {
         "Sunflower": 1738554958,
         "ChristianDelaunay": 1737076790,
@@ -59688,7 +60955,7 @@
     "JOJO7NARUTO": {
       "index": 2762,
       "owner_key": "6cQXAzmiE6G6tSorai9EuZvq4LfreYTmoGvwYTU7Uqvd",
-      "balance": 546627,
+      "balance": 0,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {}
@@ -59696,7 +60963,7 @@
     "Steph50": {
       "index": 5202,
       "owner_key": "6cU7Jjh7oZHfkbncJVJoia2aJtfDNWKxjg7CZzJrZmN",
-      "balance": 702238,
+      "balance": 741924,
       "membership_expire_on": 1708876114,
       "next_cert_issuable_on": 1679883063,
       "certs_received": {
@@ -59712,23 +60979,22 @@
     "MayaRT": {
       "index": 5872,
       "owner_key": "6cYyaFJUpDmxJJh3389WXq7KreYSvrcDRNtpTC5PHF6R",
-      "balance": 617935,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1687495353,
+      "balance": 576417,
+      "membership_expire_on": 1725327782,
+      "next_cert_issuable_on": 1695352690,
       "certs_received": {
         "tyjak": 1697172537,
+        "Evelyne87": 1759507115,
         "LionLDouNIo": 1724817594,
         "DimitriTuffreau": 1697061460,
-        "Soyouz": 1696276490,
         "Jihi": 1747361318,
+        "brigitamanou": 1759035690,
         "Mariemayaluna": 1699091266,
-        "Tiptaptop": 1696366315,
+        "Beacouleurs": 1759032046,
         "Cecilelaurent": 1696999056,
         "Emeline": 1747940794,
-        "labomarjo": 1696284951,
-        "Leticia": 1696287569,
-        "LydiaRoche": 1696182798,
-        "SanjaAnanda": 1696389314
+        "Zou": 1758869680,
+        "LydiaRoche": 1758782574
       }
     },
     "Snow": {
@@ -59742,7 +61008,7 @@
     "Lenie": {
       "index": 8439,
       "owner_key": "6cd3JiJsbQSzMg2nt4xFwN8RdtbnwBAJK2zc1piQuwux",
-      "balance": 472192,
+      "balance": 511878,
       "membership_expire_on": 1718222587,
       "next_cert_issuable_on": 1690113276,
       "certs_received": {
@@ -59773,9 +61039,9 @@
     "Mam": {
       "index": 12587,
       "owner_key": "6ckNHXxe6mJ93q3jvXLpMPNc2gy3Jk2SRHCWPyTp7jTB",
-      "balance": 124879,
+      "balance": 164565,
       "membership_expire_on": 1710456265,
-      "next_cert_issuable_on": 1687162045,
+      "next_cert_issuable_on": 1696136691,
       "certs_received": {
         "JanineBoitel": 1745548452,
         "Ninou01": 1745560077,
@@ -59790,7 +61056,7 @@
     "Naniestelar": {
       "index": 12969,
       "owner_key": "6ckwPzipm6YZ1EZfpQRkMoM3eBJcw3A6MrBGMpYNDTwr",
-      "balance": 67084,
+      "balance": 85670,
       "membership_expire_on": 1718922370,
       "next_cert_issuable_on": 1692782302,
       "certs_received": {
@@ -59806,7 +61072,7 @@
     "tiphsab": {
       "index": 10928,
       "owner_key": "6cm4LYM3YEshF1wjXeQMnYnr8ceBSNp7HV8X4PmsYfaz",
-      "balance": 270853,
+      "balance": 310541,
       "membership_expire_on": 1703025435,
       "next_cert_issuable_on": 1691382000,
       "certs_received": {
@@ -59824,7 +61090,7 @@
     "ArmandeHumbert": {
       "index": 6995,
       "owner_key": "6cn4kfS6eeNWDxJWawi3uRgeksuQbye5uFGjotGkEx1e",
-      "balance": 360372,
+      "balance": 365058,
       "membership_expire_on": 1702257071,
       "next_cert_issuable_on": 1689935192,
       "certs_received": {
@@ -59872,7 +61138,7 @@
     "Sofia-Finland": {
       "index": 8878,
       "owner_key": "6d4dkNcmx4FHcABuG2eEmXJKTMFmaUdN5qkhHSL115HK",
-      "balance": 288077,
+      "balance": 342763,
       "membership_expire_on": 1720132253,
       "next_cert_issuable_on": 1681454732,
       "certs_received": {
@@ -59893,7 +61159,7 @@
     "Pandore": {
       "index": 11060,
       "owner_key": "6dFxZcJfb3tqqnsxoUJ6pQNBb3syXJF26KB5FEGSFd4x",
-      "balance": 267863,
+      "balance": 310549,
       "membership_expire_on": 1701824560,
       "next_cert_issuable_on": 1685964738,
       "certs_received": {
@@ -59920,7 +61186,7 @@
     "CarlitaFish": {
       "index": 11606,
       "owner_key": "6dQEWpx9zek9nxZGdvjz1vbjZQJgEmpnFg4FcaQVyBsT",
-      "balance": 231908,
+      "balance": 271594,
       "membership_expire_on": 1705868981,
       "next_cert_issuable_on": 1687682633,
       "certs_received": {
@@ -59934,9 +61200,9 @@
     "NadineRzd": {
       "index": 7723,
       "owner_key": "6dU97NPDaRV8itSpCv2tRBYfSbe96Wm58xiCRQrUci4u",
-      "balance": 508786,
+      "balance": 545322,
       "membership_expire_on": 1706980048,
-      "next_cert_issuable_on": 1690111562,
+      "next_cert_issuable_on": 1695377752,
       "certs_received": {
         "Yukimarou": 1712959607,
         "ThierryLacaze": 1712937261,
@@ -59951,8 +61217,8 @@
     "MayaDN": {
       "index": 10102,
       "owner_key": "6dXxQ3oLeLXJcoesLQD2wpHCfxbWsZBYQmuxNs2fCA9E",
-      "balance": 355280,
-      "membership_expire_on": 1698002293,
+      "balance": 394966,
+      "membership_expire_on": 1727731516,
       "next_cert_issuable_on": 1690512639,
       "certs_received": {
         "Flocon": 1729555028,
@@ -59968,7 +61234,7 @@
     "Cdrix": {
       "index": 5554,
       "owner_key": "6darfpy9EKJCTG6dcrHoTCbss37CYDCwov9TnmGCrLGw",
-      "balance": 3047121,
+      "balance": 3086807,
       "membership_expire_on": 1718114852,
       "next_cert_issuable_on": 1692109234,
       "certs_received": {
@@ -59983,10 +61249,8 @@
         "Duke": 1704530492,
         "NolanRoni": 1716872195,
         "Juneve": 1754696299,
-        "LISAZAZA": 1694332534,
         "Elisa": 1732512780,
-        "MaGaliPette": 1741163659,
-        "tatinetteb": 1695615500
+        "MaGaliPette": 1741163659
       }
     },
     "toinou": {
@@ -60015,14 +61279,16 @@
     "JOANETA": {
       "index": 5358,
       "owner_key": "6dq7dCiKaSBXT5uyFUEccE7gewVWYL55xt99cioxPqkr",
-      "balance": 202701,
+      "balance": 242387,
       "membership_expire_on": 1712496856,
-      "next_cert_issuable_on": 1692007970,
+      "next_cert_issuable_on": 1693559457,
       "certs_received": {
         "Xisca": 1719821674,
         "Sergio": 1710149302,
         "catalinons": 1713628075,
         "Francina": 1719817817,
+        "Silvia": 1756439030,
+        "Andre": 1756678761,
         "tuttle": 1755302558,
         "Ralf": 1754937345,
         "Thais": 1751781289
@@ -60047,7 +61313,7 @@
     "BeaSauvage": {
       "index": 10674,
       "owner_key": "6e5PFhGdZ6qFUSTjQsuiA3dM7gtBsWuNZqu7rAiTixSa",
-      "balance": 287397,
+      "balance": 327083,
       "membership_expire_on": 1700782692,
       "next_cert_issuable_on": 1683938743,
       "certs_received": {
@@ -60061,7 +61327,7 @@
     "Fokchaton": {
       "index": 6947,
       "owner_key": "6e5zeU7PsmQpfdRqUdMZRZPAvdq4jYnpARRNxdR7yAot",
-      "balance": 552644,
+      "balance": 592330,
       "membership_expire_on": 1724262760,
       "next_cert_issuable_on": 1673501980,
       "certs_received": {
@@ -60082,7 +61348,7 @@
     "OTH15": {
       "index": 12511,
       "owner_key": "6e9pEK11zHBYdLnRcSJKy5CYnLCbjH7k9VywbfkHWu3y",
-      "balance": 145228,
+      "balance": 184914,
       "membership_expire_on": 1714321048,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -60097,7 +61363,7 @@
     "CelineThiebaut": {
       "index": 3849,
       "owner_key": "6eMatMa9jrvpjuQdxCMqnU3aJJQjSYm2cLgRNLinGPuM",
-      "balance": 805783,
+      "balance": 845469,
       "membership_expire_on": 1707748376,
       "next_cert_issuable_on": 1690202519,
       "certs_received": {
@@ -60128,7 +61394,7 @@
     "MaryChriss": {
       "index": 12127,
       "owner_key": "6eQAVYY1tYSJCHc1aWequngiXV8etFfBGzirn7m9Bmff",
-      "balance": 168744,
+      "balance": 208430,
       "membership_expire_on": 1710431490,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -60142,8 +61408,8 @@
     "MargaC": {
       "index": 10571,
       "owner_key": "6eTPmn2dLQ92xRbNR3ty5pvz8dtuQeP6qvwEeL38nhyS",
-      "balance": 63791,
-      "membership_expire_on": 1699299826,
+      "balance": 95477,
+      "membership_expire_on": 1727737665,
       "next_cert_issuable_on": 1681554340,
       "certs_received": {
         "arbocenc": 1732351551,
@@ -60163,13 +61429,9 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1634139698,
       "certs_received": {
-        "Jerboa": 1696406604,
-        "philippe": 1696141066,
         "Clarinette": 1699074886,
         "Christos_Styliaras": 1697750887,
-        "janhsh": 1695877524,
-        "Coucoudidier": 1696814243,
-        "sebchar": 1696403921
+        "Coucoudidier": 1696814243
       }
     },
     "jeangwenno": {
@@ -60183,9 +61445,9 @@
     "ladegane": {
       "index": 12968,
       "owner_key": "6eYjm7evpa3YZcUjy8wT22UfwGcb98mro5UDtHHmhwsH",
-      "balance": 66724,
+      "balance": 93910,
       "membership_expire_on": 1716937177,
-      "next_cert_issuable_on": 1692158655,
+      "next_cert_issuable_on": 1693710500,
       "certs_received": {
         "lucba": 1749921605,
         "Noisette": 1749663164,
@@ -60198,7 +61460,7 @@
     "VictoriaBoffres": {
       "index": 11562,
       "owner_key": "6eZppsB5wDKoCpfbEPwn7kSJnmLzH6FBCpxn68Qcoyu2",
-      "balance": 219326,
+      "balance": 259012,
       "membership_expire_on": 1706014333,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -60231,8 +61493,8 @@
     "AnneG": {
       "index": 5899,
       "owner_key": "6ebpttkRDbEV5iJtfceoPJPm2R3C4P2zjchYwMskNpoS",
-      "balance": 377404,
-      "membership_expire_on": 0,
+      "balance": 363872,
+      "membership_expire_on": 1727729729,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Dom": 1698116951,
@@ -60240,13 +61502,14 @@
         "KatyKat": 1698208287,
         "Gaelducausse": 1698248005,
         "PascaleM": 1698121058,
-        "lumi": 1698166230
+        "lumi": 1698166230,
+        "Karinedu21": 1759639469
       }
     },
     "RodrigoTapia": {
       "index": 8724,
       "owner_key": "6eeNPBPrHxbib7hMzCY5KCASujjYHLnh477bCjebSmwZ",
-      "balance": 449012,
+      "balance": 488698,
       "membership_expire_on": 1715721939,
       "next_cert_issuable_on": 1685452272,
       "certs_received": {
@@ -60284,7 +61547,7 @@
     "Rocaline": {
       "index": 8450,
       "owner_key": "6etQGAPUSxvw1HKdrF8TkipTtK8u4cwenzeCt2a1cTxm",
-      "balance": 439542,
+      "balance": 479228,
       "membership_expire_on": 1713185104,
       "next_cert_issuable_on": 1663213838,
       "certs_received": {
@@ -60302,8 +61565,8 @@
     "Chouquette": {
       "index": 9675,
       "owner_key": "6ew9aGsUZDZupsUnz33xqTu8QDD5zwh5tTc21sXuwTnb",
-      "balance": 983968,
-      "membership_expire_on": 1695665045,
+      "balance": 1023654,
+      "membership_expire_on": 1725363164,
       "next_cert_issuable_on": 1688879545,
       "certs_received": {
         "Malene": 1733210859,
@@ -60319,7 +61582,7 @@
     "NatUnivers": {
       "index": 6889,
       "owner_key": "6ex5kA2XAdXnxKkfPWaE47cYrmZ2dwQvmajtDoejZ758",
-      "balance": 985854,
+      "balance": 1025540,
       "membership_expire_on": 1711144345,
       "next_cert_issuable_on": 1679665258,
       "certs_received": {
@@ -60338,7 +61601,7 @@
     "JulieS": {
       "index": 12124,
       "owner_key": "6exah2J7BCWGdLgvovxW5VkDcg9mJG8UAA8XyaqPLZKd",
-      "balance": 378844,
+      "balance": 362030,
       "membership_expire_on": 1711133772,
       "next_cert_issuable_on": 1689944461,
       "certs_received": {
@@ -60362,7 +61625,7 @@
     "MAximeGhesquiere": {
       "index": 82,
       "owner_key": "6fFt4zdvtNyVcfJn7Y41mKLmMDizyK3nVeNW3qdDXzpc",
-      "balance": 955700,
+      "balance": 900000,
       "membership_expire_on": 1719810098,
       "next_cert_issuable_on": 1667906181,
       "certs_received": {
@@ -60377,9 +61640,9 @@
     "begobienestar": {
       "index": 10683,
       "owner_key": "6fH4ok1um5DBucQH4RdUrdQSTn9PAsDbhREW6dwXjBKu",
-      "balance": 131997,
+      "balance": 116783,
       "membership_expire_on": 1701381915,
-      "next_cert_issuable_on": 1688984955,
+      "next_cert_issuable_on": 1694570595,
       "certs_received": {
         "xandraAritzkuren": 1733034045,
         "MaiteTudela": 1732994382,
@@ -60389,6 +61652,21 @@
         "Munillerro": 1732940624
       }
     },
+    "RoseG": {
+      "index": 13729,
+      "owner_key": "6fLArs6rdYsxfz1ywzA3799RaGTxAmiYs9e3ARrU1U5C",
+      "balance": 5390,
+      "membership_expire_on": 1726510369,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Georges_M_mbr": 1758069221,
+        "jef": 1758078847,
+        "NeyKrom": 1758068393,
+        "Angeline-83": 1759390060,
+        "LionMackry": 1758068799,
+        "Sandrine-": 1758069623
+      }
+    },
     "Robertmomo": {
       "index": 4139,
       "owner_key": "6fNDXB2NQdfLNVZVzbUTmXFhcLAdxDkFTBPoW1UurMck",
@@ -60402,16 +61680,15 @@
       "owner_key": "6fV1gkCxZLZyRBZPboVtZUkh4rBByEMLMUA3a5qSqA9T",
       "balance": 691212,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631810061,
+      "next_cert_issuable_on": 0,
       "certs_received": {
-        "CharleneEdet": 1717659319,
-        "Dolphins": 1694880243
+        "CharleneEdet": 1717659319
       }
     },
     "Tibo0720": {
       "index": 13245,
       "owner_key": "6fW1tqaoq3QkWNUcfiR61oZzaf4CRES9c7RQ8Y4waH3B",
-      "balance": 50448,
+      "balance": 90134,
       "membership_expire_on": 1721331745,
       "next_cert_issuable_on": 1691546628,
       "certs_received": {
@@ -60427,8 +61704,8 @@
     "Stefano71": {
       "index": 9741,
       "owner_key": "6fX39FWwSfHswRHnEUT8Gz1f1784mge944ypSYQikL7M",
-      "balance": 323673,
-      "membership_expire_on": 1696108871,
+      "balance": 302359,
+      "membership_expire_on": 1725883409,
       "next_cert_issuable_on": 1679805331,
       "certs_received": {
         "Oree": 1727737762,
@@ -60443,12 +61720,12 @@
     "Plantalarose": {
       "index": 1759,
       "owner_key": "6fZEgvAnWHwPzh1hb9fHcWinEzdrzDTKv6sMrzmbijcy",
-      "balance": 1407874,
+      "balance": 1447560,
       "membership_expire_on": 1705958492,
       "next_cert_issuable_on": 1688035380,
       "certs_received": {
         "Fiorenza11": 1701811557,
-        "Crystal": 1698364765,
+        "Crystal": 1757667890,
         "Milan": 1700081079,
         "OrianeKatyDanse": 1709615412,
         "Nati": 1732573182,
@@ -60459,10 +61736,11 @@
         "Ccecile": 1711228874,
         "Etoiledunord": 1740548117,
         "dongo0011": 1698087124,
+        "Marieclaude": 1759810724,
         "PierreAubert": 1710114626,
         "zadkiel": 1700458695,
         "EveB": 1709328608,
-        "EvaSorel": 1694069759,
+        "EvaSorel": 1756768209,
         "DELPHBG": 1736993577,
         "AurelienBois": 1698696387,
         "JulieZ": 1742340274,
@@ -60474,8 +61752,8 @@
     "rafa": {
       "index": 9782,
       "owner_key": "6fZKk7yvCr3r6Y12FsZMhFyQ8cDBrGCVScrXRGwKrEYi",
-      "balance": 352996,
-      "membership_expire_on": 1696285454,
+      "balance": 387292,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681738205,
       "certs_received": {
         "FafannyTalbot": 1727933647,
@@ -60493,7 +61771,7 @@
     "Lunamiranda": {
       "index": 10755,
       "owner_key": "6fZNGrK29Nqgj3jW2Y4yjvmEkcvFMP4vTn1tn3e5J4Uu",
-      "balance": 219461,
+      "balance": 259148,
       "membership_expire_on": 1701878069,
       "next_cert_issuable_on": 1681875427,
       "certs_received": {
@@ -60512,28 +61790,33 @@
     "SamuelPabloAlmonacid": {
       "index": 9527,
       "owner_key": "6fcPNJdDntaeEMwjR9syPAuBbHbNB8HPkJC451GwZv8v",
-      "balance": 192096,
+      "balance": 184396,
       "membership_expire_on": 1720951904,
-      "next_cert_issuable_on": 1693309292,
+      "next_cert_issuable_on": 1695946941,
       "certs_received": {
         "Fan971": 1740183797,
         "Gloria974": 1750352720,
         "MrHernando": 1753683424,
         "djam": 1747905845,
+        "Sorgentini": 1758337513,
         "LauraPDF": 1752989386,
         "Fulguramus": 1738831253,
         "Caribe": 1737476727,
+        "Effelmandy": 1756502200,
         "JerryBB": 1740550095,
         "choupi": 1729300396,
         "Wotan": 1726037412,
         "Elariel": 1748686034,
         "Betty": 1754563647,
         "FredTahiti": 1740642041,
+        "LucasSebastianPerez": 1756269638,
         "HectorTotor": 1744149797,
         "Monik9366": 1738838390,
         "Walkiria": 1735147789,
         "Bee": 1735601837,
         "Liebamiranda": 1737430432,
+        "Kiara974": 1757172612,
+        "Math": 1758439816,
         "SyoulAnuanua": 1726025172,
         "lovol": 1748388710,
         "MariMardisfrutona": 1737036939,
@@ -60541,6 +61824,7 @@
         "Inma11": 1726107334,
         "FredericAmany974": 1726025172,
         "Mariedelourdes": 1728636626,
+        "AlanAriel": 1759291559,
         "BruBraveLez": 1742619629,
         "CedricSQ": 1741763668,
         "mancity08": 1726326854,
@@ -60566,7 +61850,7 @@
     "veronine": {
       "index": 5291,
       "owner_key": "6fjfb3v768gsx87tEmrveekpwtQefu4wFKRtdhoXJ2xn",
-      "balance": 759508,
+      "balance": 799194,
       "membership_expire_on": 1721669757,
       "next_cert_issuable_on": 1690188265,
       "certs_received": {
@@ -60593,28 +61877,26 @@
     "NnattNature": {
       "index": 5704,
       "owner_key": "6fz1tL6YPNJ1kf4hDz7sscJm9HQWMEBt3tpk2pViVLeK",
-      "balance": 397623,
+      "balance": 438309,
       "membership_expire_on": 1716664497,
-      "next_cert_issuable_on": 1688929885,
+      "next_cert_issuable_on": 1696684288,
       "certs_received": {
         "Zoul": 1710565426,
         "mimone974": 1725646278,
         "Michel97414": 1751994835,
-        "KarineGerinard974": 1695071426,
         "harry974": 1731103113,
         "Vanessa974": 1746987781,
         "BrunoB974": 1713670623,
         "Framboiz": 1726845836,
         "Cathylou97480": 1746382777,
-        "LenaSuryMangas": 1694982385,
-        "BabethMangas": 1694982385,
+        "BabethMangas": 1757096742,
         "MicheleTampon974": 1715405676,
         "Marico974": 1729611231,
-        "Tonychevalier974": 1695098523,
         "Celine974": 1700945903,
         "Aliko": 1710965648,
         "Cindy974": 1699932037,
         "bardone01": 1721069398,
+        "gabyjoce974": 1757230301,
         "Brunov974": 1709295119,
         "Shanti": 1740532584,
         "KC974": 1718819177,
@@ -60633,9 +61915,9 @@
         "Lea974": 1753109511,
         "Gislaine974": 1713242106,
         "Aeden974": 1722020516,
-        "Savigabrielle974": 1695421191,
+        "Savigabrielle974": 1759727488,
         "Marcus_974": 1730208568,
-        "pampermacole": 1695328738,
+        "pampermacole": 1757344313,
         "FredericAmany974": 1740689868,
         "Ginee974": 1730571154,
         "Doina974": 1721881005,
@@ -60645,7 +61927,7 @@
     "PascalFon": {
       "index": 13107,
       "owner_key": "6g19WZ4xBoyATJ3HQbs66C1tmhawG3dnGN6e95N4Gvde",
-      "balance": 66740,
+      "balance": 106426,
       "membership_expire_on": 1719839017,
       "next_cert_issuable_on": 1691747407,
       "certs_received": {
@@ -60661,7 +61943,7 @@
       "owner_key": "6g44WY3x3JpYZ3NmS7DH7UhjaJ1Lh57MMbncztz7bkMx",
       "balance": 740612,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631770738,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "AmeSurTerre": 1696982899,
         "martineagatha": 1748476602,
@@ -60671,7 +61953,7 @@
     "Badiane": {
       "index": 4887,
       "owner_key": "6gB7DsQRkELkbnreoDXgwEQvPGcFX672LagHUdzwTBTE",
-      "balance": 717177,
+      "balance": 756863,
       "membership_expire_on": 1703419195,
       "next_cert_issuable_on": 1682645370,
       "certs_received": {
@@ -60740,7 +62022,7 @@
     "origens": {
       "index": 10043,
       "owner_key": "6gPGAbfqLsbW2dwhXkPoScJvuX1hjPuT4dGuREX3XfJz",
-      "balance": 347979,
+      "balance": 812925,
       "membership_expire_on": 1697823395,
       "next_cert_issuable_on": 1687343811,
       "certs_received": {
@@ -60759,7 +62041,7 @@
     "jmamorteg": {
       "index": 10106,
       "owner_key": "6gTyp7bwLfX7YqWi5zE5sTtjw6L8iWghDw8vtMxCPueb",
-      "balance": 80959,
+      "balance": 93945,
       "membership_expire_on": 1725012551,
       "next_cert_issuable_on": 1689728624,
       "certs_received": {
@@ -60786,7 +62068,7 @@
     "Mickey": {
       "index": 8486,
       "owner_key": "6gX68wsN9jdUbSiQfBx3FcYHLXX9aJ35oRuQCnsZ5onR",
-      "balance": 494811,
+      "balance": 534497,
       "membership_expire_on": 1718155163,
       "next_cert_issuable_on": 1671638930,
       "certs_received": {
@@ -60801,9 +62083,9 @@
     "JulieBeauvois": {
       "index": 12671,
       "owner_key": "6gbz4xNgPzp4gUSzCETwZua2rxUd5gvSJrHt18JDuPN5",
-      "balance": 541276,
+      "balance": 573962,
       "membership_expire_on": 1712256390,
-      "next_cert_issuable_on": 1693491315,
+      "next_cert_issuable_on": 1695301778,
       "certs_received": {
         "Natalia": 1744997527,
         "CaroleBroutin": 1745203438,
@@ -60829,7 +62111,7 @@
     "Bhavya": {
       "index": 4190,
       "owner_key": "6gi2ExBoiQS5yHSd4qQngbuyUn7iCHKZpjJpx2oKUVgw",
-      "balance": 1165232,
+      "balance": 1204918,
       "membership_expire_on": 1708085747,
       "next_cert_issuable_on": 1680873879,
       "certs_received": {
@@ -60845,7 +62127,7 @@
     "Nadi778899": {
       "index": 12663,
       "owner_key": "6goVoYhKMVcYSxoiWFmaTHqcvGfWSNVtghPHXUGUixk8",
-      "balance": 129276,
+      "balance": 168962,
       "membership_expire_on": 1715462798,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -60859,7 +62141,7 @@
     "Majdouline": {
       "index": 11863,
       "owner_key": "6gp6qsQrj97FcRWwGTgRvjAzqWXoY9DKnM5YtRDyQFrT",
-      "balance": 191028,
+      "balance": 230714,
       "membership_expire_on": 1709154612,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -60874,17 +62156,19 @@
     "feesfleurs": {
       "index": 7647,
       "owner_key": "6grJJchUqTXvxNNJU3cuJTCyyLEte1hfb8EtUsA1FMLs",
-      "balance": 60820,
+      "balance": 12226,
       "membership_expire_on": 1707865322,
-      "next_cert_issuable_on": 1680435761,
+      "next_cert_issuable_on": 1696562732,
       "certs_received": {
         "Litlefarfadet": 1712867999,
+        "ASHNUBAN": 1759650244,
         "Mesange": 1732327269,
         "Vimpy": 1733368023,
         "freddonnay": 1712866890,
         "SabineAmen": 1712798675,
         "Philaloe": 1740716307,
         "Daniele8": 1741119375,
+        "Hugwilder": 1759605932,
         "Coolga5575": 1712799752,
         "Gclaire": 1712867999
       }
@@ -60892,9 +62176,9 @@
     "jerometiny": {
       "index": 12975,
       "owner_key": "6gxspNmTACPbfWG5b49vNHwuZwr9NY87ULwkBgKzMggF",
-      "balance": 90197,
+      "balance": 159883,
       "membership_expire_on": 1718724227,
-      "next_cert_issuable_on": 1691802269,
+      "next_cert_issuable_on": 1695529568,
       "certs_received": {
         "Polo": 1750742006,
         "Francisca": 1750816353,
@@ -60913,9 +62197,9 @@
     "Murmure": {
       "index": 8366,
       "owner_key": "6gyCbnQNwiVhodpYciyBwLcT8KVpeuXRiCjRN34AgcQc",
-      "balance": 691487,
+      "balance": 601173,
       "membership_expire_on": 1712923910,
-      "next_cert_issuable_on": 1666841583,
+      "next_cert_issuable_on": 1695346828,
       "certs_received": {
         "Bambou": 1717546112,
         "toutenstock": 1717520225,
@@ -60937,25 +62221,19 @@
     "neo9": {
       "index": 5630,
       "owner_key": "6hBbznwXmiJ1dKJ6JzShc8qWUUvD1XNoscbmx2ALkbup",
-      "balance": 746220,
-      "membership_expire_on": 1697934367,
+      "balance": 754764,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1680579664,
       "certs_received": {
-        "tiphaine": 1693964276,
-        "STELLA": 1694134087,
         "EmiRobin": 1710873346,
         "Mententon": 1743620898,
-        "Ectemir": 1694224523,
-        "Cosmic-Clara": 1694216893,
-        "MSarrazin": 1702353374,
-        "VWAUMANS": 1695612405,
-        "Spartacus": 1694119276
+        "MSarrazin": 1702353374
       }
     },
     "JJG48": {
       "index": 11703,
       "owner_key": "6hKEgCF9jyyNMmxNyZvhJWnMw4QXoaNDqeqTBB2VpLZp",
-      "balance": 150636,
+      "balance": 190322,
       "membership_expire_on": 1707957975,
       "next_cert_issuable_on": 1693052315,
       "certs_received": {
@@ -60970,7 +62248,7 @@
     "p3co": {
       "index": 11384,
       "owner_key": "6hV2HXy3mrooDRJPq19H3eEQ9fy3apAtazWvNvWWfWKj",
-      "balance": 222624,
+      "balance": 262310,
       "membership_expire_on": 1705091876,
       "next_cert_issuable_on": 1677309393,
       "certs_received": {
@@ -61000,7 +62278,7 @@
     "TEVAS": {
       "index": 12944,
       "owner_key": "6hbotAj3E6dnwUhh17hFanbv9EZZKuKWbYu2LEvcinuz",
-      "balance": 76896,
+      "balance": 116582,
       "membership_expire_on": 1713706024,
       "next_cert_issuable_on": 1689437498,
       "certs_received": {
@@ -61022,7 +62300,7 @@
     "MIZO": {
       "index": 3004,
       "owner_key": "6hebskXSBK1CsQN5wuxbTdwZvs4npTTAkV2wyMGB6qnd",
-      "balance": 496338,
+      "balance": 536024,
       "membership_expire_on": 1705414411,
       "next_cert_issuable_on": 1691636073,
       "certs_received": {
@@ -61040,7 +62318,7 @@
     "ISAM71": {
       "index": 7002,
       "owner_key": "6hhpXcDgo2fuycFQNWz5RRY8YNZMkBDPY164UrsMJbbg",
-      "balance": 590465,
+      "balance": 630151,
       "membership_expire_on": 1706977793,
       "next_cert_issuable_on": 1664590785,
       "certs_received": {
@@ -61086,9 +62364,9 @@
     "lucba": {
       "index": 12340,
       "owner_key": "6hnMbRao8LiEveTKe8NUNTJYN2NkJ9BAZQizHJrMNHeR",
-      "balance": 69452,
+      "balance": 99638,
       "membership_expire_on": 1712060568,
-      "next_cert_issuable_on": 1690871437,
+      "next_cert_issuable_on": 1696243270,
       "certs_received": {
         "Math007": 1744346340,
         "Unity": 1744345368,
@@ -61100,7 +62378,7 @@
     "Le0": {
       "index": 12231,
       "owner_key": "6hrZPbrFKt7UFVtK8E7TDN1fC3KUtKisQGRTQaR93hBr",
-      "balance": 187532,
+      "balance": 227218,
       "membership_expire_on": 1711848640,
       "next_cert_issuable_on": 1688997004,
       "certs_received": {
@@ -61128,7 +62406,6 @@
       "certs_received": {
         "FLORESTRELA": 1741591483,
         "Gregory": 1746077501,
-        "DavidGrolleau": 1694895376,
         "Bastien-29": 1743956089,
         "jeremiemaes": 1740078422,
         "sylviepl": 1747507946,
@@ -61155,8 +62432,8 @@
     "Cha": {
       "index": 3347,
       "owner_key": "6i3vf6RRjtCW6VoQNFngm2TzwuPsTSrSpJwPBCddDoLD",
-      "balance": 764794,
-      "membership_expire_on": 1693703042,
+      "balance": 766930,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678947563,
       "certs_received": {
         "ChristineHT": 1698041799,
@@ -61169,7 +62446,6 @@
         "alyx": 1701316364,
         "Laula": 1698265748,
         "GerardSiegle": 1700213113,
-        "LaureFemmeVanne": 1696233084,
         "SaverioStragapede": 1736115893,
         "fluidlog": 1698523635,
         "BertrandBigot": 1735378757,
@@ -61198,7 +62474,7 @@
     "Dens": {
       "index": 7472,
       "owner_key": "6iFkuJvwpccu9ugtfAdnK8XZZDLxSbvFZbrCkC1e6Fw8",
-      "balance": 595204,
+      "balance": 634890,
       "membership_expire_on": 1704723788,
       "next_cert_issuable_on": 1674702680,
       "certs_received": {
@@ -61215,26 +62491,21 @@
     "alizarina": {
       "index": 5791,
       "owner_key": "6iKL5HudruoN7A1a3JajB1TCN3Qz2d6U6K3ZwKAKVTmL",
-      "balance": 780869,
+      "balance": 820555,
       "membership_expire_on": 1720983727,
       "next_cert_issuable_on": 1689498127,
       "certs_received": {
         "CatherinePerma": 1752777759,
         "Kevinbdn": 1722050011,
         "seb": 1697566295,
-        "Ingriddevendee": 1695886218,
         "fredo79": 1697071124,
-        "Titem": 1695934978,
-        "Sylmon": 1695928815,
-        "Uranie": 1696487879,
-        "CaroleMondon": 1730784466,
-        "Cindy": 1695929352
+        "CaroleMondon": 1730784466
       }
     },
     "KoalaJoyeux": {
       "index": 7413,
       "owner_key": "6iMJ8tKibPSbx8Y8FNBttU7jkxmmN5E7k4cVyS4QW3Fa",
-      "balance": 313997,
+      "balance": 353683,
       "membership_expire_on": 1723245582,
       "next_cert_issuable_on": 1648635363,
       "certs_received": {
@@ -61250,23 +62521,18 @@
     "ThomasDesaunay": {
       "index": 5756,
       "owner_key": "6iNkVJMBeCDgV9Z463n57MMUNmpLD7zg6ApbxkEUbhyS",
-      "balance": 741463,
-      "membership_expire_on": 1694614378,
+      "balance": 754279,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1672809802,
       "certs_received": {
-        "OlDog": 1694676374,
-        "sisyphe": 1694556605,
         "Kumbaya": 1717560651,
-        "krischamp": 1694673021,
-        "toutoune2189": 1694557548,
-        "Nounoursgt8946": 1694556936,
         "brunos": 1736455798
       }
     },
     "Luxdemessis": {
       "index": 7287,
       "owner_key": "6iPzmAzWoRDApfbLd3HwqhMsqEKk5PaN9Kn6SMC8nfPR",
-      "balance": 483700,
+      "balance": 523386,
       "membership_expire_on": 1709245677,
       "next_cert_issuable_on": 1686680116,
       "certs_received": {
@@ -61304,7 +62570,7 @@
     "tridimi-44": {
       "index": 7589,
       "owner_key": "6if5xQ3KyWFFXX7ykrHERaMzoP2sfSjrwedxY2Ggs7s",
-      "balance": 712245,
+      "balance": 751931,
       "membership_expire_on": 1707669992,
       "next_cert_issuable_on": 1678966810,
       "certs_received": {
@@ -61331,7 +62597,7 @@
     "LucAndre": {
       "index": 10121,
       "owner_key": "6ikMSFi9BJaV6pdbnBqsvvYJmvsp8F6KXU2P7DF5B8An",
-      "balance": 305521,
+      "balance": 335207,
       "membership_expire_on": 1723594834,
       "next_cert_issuable_on": 1693495025,
       "certs_received": {
@@ -61349,15 +62615,13 @@
     "Cindy974": {
       "index": 3763,
       "owner_key": "6imkM7EWtrv627uY4e8kH8n8i7WWbqacPBFK2X11mLMR",
-      "balance": 508747,
-      "membership_expire_on": 1701111199,
-      "next_cert_issuable_on": 1684114128,
+      "balance": 548433,
+      "membership_expire_on": 1728076835,
+      "next_cert_issuable_on": 1696591603,
       "certs_received": {
         "mimone974": 1717546457,
         "Vanessa974": 1697928328,
         "Chris08": 1702771602,
-        "Loise": 1695215674,
-        "Laetitia97421": 1693972732,
         "Fanny": 1711943575,
         "BabethMangas": 1727323855,
         "Celine974": 1700946353,
@@ -61370,14 +62634,11 @@
         "Sanni974": 1702438336,
         "BAMBAM": 1749610126,
         "Florence97410": 1747442518,
-        "Evan97421": 1696674721,
         "Nafissa974": 1707254072,
-        "Jnoel": 1696197385,
         "Sandro974": 1726497605,
         "NOE974": 1720921183,
         "Jaher974": 1710085521,
         "Myriam97410": 1745980379,
-        "Alicia97421": 1696675949,
         "Lea974": 1725461646,
         "Cathy974": 1735863485,
         "Jackyboisset": 1729582486,
@@ -61391,7 +62652,7 @@
     "jugezu": {
       "index": 7557,
       "owner_key": "6isHEuBumEqtp5hmxkJ9fjXvX4urAdTz8UABrxKhSFyS",
-      "balance": 383819,
+      "balance": 383820,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1661148573,
       "certs_received": {
@@ -61406,7 +62667,7 @@
     "zabou73": {
       "index": 6675,
       "owner_key": "6iwTphXLtBdcv2B38MZUXmxxeLYNPn2BoXynvaQ2LETH",
-      "balance": 601716,
+      "balance": 641402,
       "membership_expire_on": 1704472398,
       "next_cert_issuable_on": 1690812515,
       "certs_received": {
@@ -61426,7 +62687,7 @@
     "mably": {
       "index": 470,
       "owner_key": "6jEGFaSgGoYiwqKAWqnqQ57ZZiBLkrrmVAHspxK6cCcV",
-      "balance": 1549077,
+      "balance": 1588763,
       "membership_expire_on": 1722090514,
       "next_cert_issuable_on": 1679711036,
       "certs_received": {
@@ -61441,11 +62702,11 @@
     "CamilleLemasson": {
       "index": 676,
       "owner_key": "6jGRy3vU3e6LD9iEu2SYadrdpYfcmHD8DUQbtm4eJRLj",
-      "balance": 3144924,
+      "balance": 3184610,
       "membership_expire_on": 1700098771,
       "next_cert_issuable_on": 1690629459,
       "certs_received": {
-        "Mariegateau": 1699761556,
+        "Mariegateau": 1758659001,
         "JeromeGolliet": 1721711134,
         "BenoitLavenier": 1722708368,
         "Geotrouvtout": 1724574744,
@@ -61458,7 +62719,7 @@
     "Lolothekey": {
       "index": 12560,
       "owner_key": "6jMyHs34agaFseqqDSkmWvVxTE3Aiz1eNaM6CHJi5cRB",
-      "balance": 134956,
+      "balance": 174642,
       "membership_expire_on": 1714861052,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -61476,7 +62737,7 @@
     "Madmad54": {
       "index": 6776,
       "owner_key": "6jXgxb7D8V68vsG2Jg3R3my4mnVPzZhr9dFaJW764Y9i",
-      "balance": 415399,
+      "balance": 456085,
       "membership_expire_on": 1711041813,
       "next_cert_issuable_on": 1653566874,
       "certs_received": {
@@ -61500,7 +62761,7 @@
     "Faridfreedom": {
       "index": 10228,
       "owner_key": "6jd6MwCTH8JqRpncaJuTPQp3417fkppwBUXCcxJ8A7Qt",
-      "balance": 435990,
+      "balance": 475676,
       "membership_expire_on": 1697654128,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -61524,7 +62785,7 @@
     "harrisdodge": {
       "index": 7615,
       "owner_key": "6juADeaexxpbkxGWpfi3mTtJQCpyrrjhpewyPJWxb4qL",
-      "balance": 539143,
+      "balance": 578829,
       "membership_expire_on": 1707173168,
       "next_cert_issuable_on": 1652246631,
       "certs_received": {
@@ -61538,7 +62799,7 @@
     "gelauni": {
       "index": 8325,
       "owner_key": "6k1BGjYtW2MEDtCyjQZLL2onsM2d3gXohSHakJNh8qiX",
-      "balance": 499758,
+      "balance": 539444,
       "membership_expire_on": 1716722517,
       "next_cert_issuable_on": 1672158713,
       "certs_received": {
@@ -61555,7 +62816,7 @@
     "Begotxu": {
       "index": 11770,
       "owner_key": "6k1qNnfnyMANYaQUcMD3xXmxGdwQdemrGKGz7zjBUiJj",
-      "balance": 79042,
+      "balance": 57028,
       "membership_expire_on": 1708706004,
       "next_cert_issuable_on": 1683156626,
       "certs_received": {
@@ -61570,7 +62831,7 @@
     "Adriel": {
       "index": 6952,
       "owner_key": "6k2vQUpi8goTuiXqXYz2qm86B42fRBeAGEcot6ap5EcX",
-      "balance": 422426,
+      "balance": 402112,
       "membership_expire_on": 1716916672,
       "next_cert_issuable_on": 1660386846,
       "certs_received": {
@@ -61584,9 +62845,9 @@
     "FleurdeLupin": {
       "index": 5058,
       "owner_key": "6k4YtN4ujHZf6DytcnH2hX3sR9eZGodwbEY8gCwyKEfL",
-      "balance": 402756,
+      "balance": 362442,
       "membership_expire_on": 1709692810,
-      "next_cert_issuable_on": 1681621618,
+      "next_cert_issuable_on": 1695206782,
       "certs_received": {
         "Maelstrom": 1744559251,
         "Maaude09": 1747300903,
@@ -61609,7 +62870,7 @@
     "Chantalou": {
       "index": 8500,
       "owner_key": "6k7qD64vLquPFuQzywuv4iKaL8AxamAiGEXos5WGp2BK",
-      "balance": 456628,
+      "balance": 496314,
       "membership_expire_on": 1713479617,
       "next_cert_issuable_on": 1673665291,
       "certs_received": {
@@ -61623,9 +62884,9 @@
     "dblg06": {
       "index": 12979,
       "owner_key": "6kBS18vWHiDGuXpADeXRkHJi36khYDmGwcuX3F1hfkFt",
-      "balance": 72624,
+      "balance": 112310,
       "membership_expire_on": 1718719897,
-      "next_cert_issuable_on": 1688390317,
+      "next_cert_issuable_on": 1695536793,
       "certs_received": {
         "Laeti": 1751309364,
         "Paslake": 1750790273,
@@ -61642,7 +62903,7 @@
     "patbal": {
       "index": 1852,
       "owner_key": "6kBfPjNtx6oLh9ivo2gjQ6YK9Yt3hzCk96vpQi2MD8Hw",
-      "balance": 443339,
+      "balance": 461465,
       "membership_expire_on": 1717257041,
       "next_cert_issuable_on": 1685772042,
       "certs_received": {
@@ -61654,7 +62915,7 @@
         "yannlefranco": 1739257816,
         "Jade971": 1738388360,
         "bricodeur": 1729531950,
-        "NathalieSF971": 1696317976,
+        "NathalieSF971": 1757892497,
         "Estellea": 1704787952,
         "Lolobuss": 1706226344,
         "mikdos31": 1719734517,
@@ -61666,16 +62927,15 @@
         "sarauniya": 1731719235,
         "vene": 1711499193,
         "Sailorcherry": 1733199261,
-        "Glass": 1694678419,
         "psycotox80": 1746121881
       }
     },
     "Pizzawallas": {
       "index": 4878,
       "owner_key": "6kFHjQApDZ6Xfxua4g3TH5RvjoRuJFQVoq5HB7ha28Qp",
-      "balance": 537958,
+      "balance": 378734,
       "membership_expire_on": 1703086382,
-      "next_cert_issuable_on": 1693463577,
+      "next_cert_issuable_on": 1696420539,
       "certs_received": {
         "ItiMahana": 1699046426,
         "Chantal": 1698627837,
@@ -61694,6 +62954,7 @@
         "Anamaya": 1706247509,
         "Cath38": 1754463113,
         "lulubelle": 1745651753,
+        "Meiluce": 1758062799,
         "Venceremos": 1720927944,
         "Aneuf": 1749347892,
         "Cordia": 1716312211,
@@ -61708,6 +62969,7 @@
         "LAUMBLEU": 1713502481,
         "AurelienS": 1730997089,
         "lamouette": 1744102988,
+        "VivienProuvot": 1758183233,
         "Mariezen": 1714714116,
         "MALINCA": 1741934102,
         "JeanTibou": 1756511010,
@@ -61742,7 +63004,7 @@
       "owner_key": "6kPsxDZaKZBQ9vyhre9cjWWUKpTVVDEjv8LtVJX7EePS",
       "balance": 389399,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631947143,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Lucas_Desroches": 1697079437
       }
@@ -61762,15 +63024,14 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1642400597,
       "certs_received": {
-        "JulieM": 1705443797,
-        "LNlumi": 1695605427
+        "JulieM": 1705443797
       }
     },
     "franck04": {
       "index": 8504,
       "owner_key": "6kVHfJya4PfJxCs5NscDazkSV2mFsPyRAiCUhEB6NL8P",
-      "balance": 371485,
-      "membership_expire_on": 0,
+      "balance": 400491,
+      "membership_expire_on": 1725913163,
       "next_cert_issuable_on": 1670842343,
       "certs_received": {
         "Azucena": 1738386625,
@@ -61786,7 +63047,7 @@
     "Artemisia": {
       "index": 10505,
       "owner_key": "6kVMwPjF48N5K7yjXDLsz2VA5iTb3KUDK1EVQjJqaeqc",
-      "balance": 287846,
+      "balance": 327532,
       "membership_expire_on": 1700256328,
       "next_cert_issuable_on": 1670989480,
       "certs_received": {
@@ -61802,9 +63063,9 @@
     "Crystale": {
       "index": 9547,
       "owner_key": "6kefpU6moXevShft2oJZG8RaszC7d4qettjoX3jq6ND9",
-      "balance": 202034,
+      "balance": 237720,
       "membership_expire_on": 1721563972,
-      "next_cert_issuable_on": 1691659925,
+      "next_cert_issuable_on": 1696406266,
       "certs_received": {
         "DameBene": 1726454290,
         "LaMagicienne": 1752358360,
@@ -61812,6 +63073,7 @@
         "ChristineB": 1726247498,
         "Plagneaux258": 1726247498,
         "BeneVM": 1753161458,
+        "Domi-Merlinou": 1758262047,
         "Mireilleplantessauvages": 1745787009,
         "Ninon914": 1726177931
       }
@@ -61819,8 +63081,8 @@
     "SaraH": {
       "index": 10389,
       "owner_key": "6kn5ojrYcvrkZN1gAb2EaEFDkHcdxkkvUuggHNS1Awav",
-      "balance": 306400,
-      "membership_expire_on": 1695125603,
+      "balance": 326692,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "MarieL81": 1731175769,
@@ -61833,7 +63095,7 @@
     "Kali974": {
       "index": 3885,
       "owner_key": "6knJyQ8rvdaQdGbCitF9VEery4LSq6QYB1c3jkDKd6BV",
-      "balance": 504973,
+      "balance": 544659,
       "membership_expire_on": 1718115157,
       "next_cert_issuable_on": 1686629557,
       "certs_received": {
@@ -61872,7 +63134,7 @@
     "Suzan": {
       "index": 6996,
       "owner_key": "6m1VE3xECLhRQqaaatKA4KvvPdfrzDjL3yAUbNfsXvgd",
-      "balance": 541207,
+      "balance": 580893,
       "membership_expire_on": 1701304738,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -61886,7 +63148,7 @@
     "Helichryse": {
       "index": 9840,
       "owner_key": "6m3yMPSgbHePhjshpQiU7aA9UJgArFBJU324AiU3WjXF",
-      "balance": 362386,
+      "balance": 402072,
       "membership_expire_on": 1722729789,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -61900,7 +63162,7 @@
     "Neptune1306": {
       "index": 3744,
       "owner_key": "6m67RJGEAh8fKx76HCXf7QSi369UaK4ZFxc7Ls4cVsQ3",
-      "balance": 1296137,
+      "balance": 1335833,
       "membership_expire_on": 1697360856,
       "next_cert_issuable_on": 1650434586,
       "certs_received": {
@@ -61915,17 +63177,15 @@
     "Soyouz": {
       "index": 5038,
       "owner_key": "6m8DJYgrokLrHiJm1didLCtCHSm1DZ1tfEr7zrre7SgV",
-      "balance": 787797,
+      "balance": 827483,
       "membership_expire_on": 1715176514,
       "next_cert_issuable_on": 1684643795,
       "certs_received": {
-        "Milan": 1696118053,
         "Hades": 1698470883,
         "Majoli34": 1727650961,
         "herbacha": 1748800189,
         "SabineIsambert": 1698600680,
         "Cecilelaurent": 1696999056,
-        "Leticia": 1696116942,
         "FREZA": 1719455127,
         "Parhit": 1707083649
       }
@@ -61933,7 +63193,7 @@
     "Aricat": {
       "index": 7592,
       "owner_key": "6mCjTMHJVqNe2y9qrp1Xq832xP2nCxTgrsi1Ta8JGPGQ",
-      "balance": 410796,
+      "balance": 450482,
       "membership_expire_on": 1707209850,
       "next_cert_issuable_on": 1681798251,
       "certs_received": {
@@ -61958,7 +63218,7 @@
     "Emeraude": {
       "index": 10844,
       "owner_key": "6mF4UqTx1iVXauaMs1qCnVimhDYrFc4J7iCWnmLZcdEr",
-      "balance": 246807,
+      "balance": 286493,
       "membership_expire_on": 1697397619,
       "next_cert_issuable_on": 1693027479,
       "certs_received": {
@@ -61973,10 +63233,11 @@
     "Mystic": {
       "index": 13436,
       "owner_key": "6mLhjsh6NEZVJoNAKvt8rWMP4eG3vW75b1JZqDhoA3m4",
-      "balance": 7476,
+      "balance": 226094,
       "membership_expire_on": 1720560465,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695996242,
       "certs_received": {
+        "abdenour": 1759808764,
         "Pacha": 1755557504,
         "Mikhaella3448": 1755758898,
         "Eauvive": 1755591425,
@@ -61987,8 +63248,8 @@
     "CristinaGo": {
       "index": 10506,
       "owner_key": "6mYtCKTpysfjfmXLtiJQ2A8Am2V4mhVvgNLe5o6Pkx75",
-      "balance": 465144,
-      "membership_expire_on": 1700449646,
+      "balance": 527280,
+      "membership_expire_on": 1727134986,
       "next_cert_issuable_on": 1677678287,
       "certs_received": {
         "AnabelArmendariz": 1732420669,
@@ -62003,7 +63264,7 @@
     "CharlotteF": {
       "index": 11811,
       "owner_key": "6maHToAoHNcFC9A7qFbnmGar7H47u8MFswirLaeZ48Sw",
-      "balance": 277764,
+      "balance": 317450,
       "membership_expire_on": 1708541414,
       "next_cert_issuable_on": 1690203948,
       "certs_received": {
@@ -62027,7 +63288,7 @@
     "ironhic": {
       "index": 4681,
       "owner_key": "6miQZz8PdQA9LPM2ZWWVL14ZSau4xgne1puighEoqqNP",
-      "balance": 1016041,
+      "balance": 1055727,
       "membership_expire_on": 1698678177,
       "next_cert_issuable_on": 1687006203,
       "certs_received": {
@@ -62050,7 +63311,7 @@
     "ThaoT": {
       "index": 6562,
       "owner_key": "6mtvp36RfsHjTpkg6rDTYbHmNKqV1xMafmbWxG7p5kHb",
-      "balance": 567313,
+      "balance": 606999,
       "membership_expire_on": 1697135528,
       "next_cert_issuable_on": 1662648219,
       "certs_received": {
@@ -62070,8 +63331,8 @@
     "yoelijomivida": {
       "index": 10185,
       "owner_key": "6mvr762iBjigi7wDeEdMG8SFN6c6BcmaH52xxSr55Szy",
-      "balance": 41957,
-      "membership_expire_on": 1698679317,
+      "balance": 30443,
+      "membership_expire_on": 1725410292,
       "next_cert_issuable_on": 1693328421,
       "certs_received": {
         "Aguas": 1736721295,
@@ -62096,7 +63357,7 @@
     "Michelangela": {
       "index": 3424,
       "owner_key": "6n48oSJtBtnRvcM6U5XfCxwWTXDyRHdEQAinkDzkAqax",
-      "balance": 1265440,
+      "balance": 1305126,
       "membership_expire_on": 1705073739,
       "next_cert_issuable_on": 1693302127,
       "certs_received": {
@@ -62110,6 +63371,21 @@
         "arbogast": 1709603919
       }
     },
+    "vaninagallo": {
+      "index": 13497,
+      "owner_key": "6nAhFz2mp74q7sUaoCw3fukXfiHeUjWQZEuk7ZKRPfHR",
+      "balance": 46924,
+      "membership_expire_on": 1725139412,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "PhilippeLafontaine": 1757317638,
+        "Augusta24": 1756702102,
+        "ChrisMagi": 1756953418,
+        "Daniele8": 1756701853,
+        "SteffiH": 1756701853,
+        "VaivaG": 1756701853
+      }
+    },
     "KaeK22": {
       "index": 4800,
       "owner_key": "6nBCwL6ShhSWbhWBSLJG7NRyxisJDED7Po3xzHPxw7f4",
@@ -62129,7 +63405,7 @@
     "Christelle": {
       "index": 2472,
       "owner_key": "6nGfin2mq7P4bSVHqVPvS9VFcatW9eWfodm7oXrsc3uK",
-      "balance": 1461008,
+      "balance": 1500694,
       "membership_expire_on": 1698871901,
       "next_cert_issuable_on": 1682179018,
       "certs_received": {
@@ -62141,8 +63417,7 @@
         "lamouette": 1717536654,
         "LuckyKat": 1698208766,
         "LenaB": 1749534384,
-        "zenbio": 1714339247,
-        "Chrysalide": 1695858257
+        "zenbio": 1714339247
       }
     },
     "nell": {
@@ -62152,17 +63427,15 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1655170273,
       "certs_received": {
-        "Aude49": 1694346407,
         "VirginieGautier": 1714347767,
         "Christal": 1718301815,
-        "PatrickGilles": 1696095808,
         "DaroussinB": 1724389847
       }
     },
     "Domi418": {
       "index": 12436,
       "owner_key": "6nQfDrAAwEZMRZqBTGsqtWnfpTX3bzNNo19KYsMHfZRN",
-      "balance": 139562,
+      "balance": 179248,
       "membership_expire_on": 1710867614,
       "next_cert_issuable_on": 1692034763,
       "certs_received": {
@@ -62189,15 +63462,12 @@
       "balance": 354696,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "kosnik": 1694660980,
-        "Piratatacle": 1696197075
-      }
+      "certs_received": {}
     },
     "OlivierMereveille": {
       "index": 6527,
       "owner_key": "6nfBuCvVr5vS7qAVLFYuqVbsXjLpoB2MMkadhEx7rgoA",
-      "balance": 670795,
+      "balance": 710481,
       "membership_expire_on": 1705544798,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -62229,9 +63499,9 @@
     "Syltraci": {
       "index": 1992,
       "owner_key": "6noDCEWYVAKQU7pRPferzg2fW1ZHcSNTMc6scGHaNNgJ",
-      "balance": 756644,
+      "balance": 796330,
       "membership_expire_on": 1723832670,
-      "next_cert_issuable_on": 1692347070,
+      "next_cert_issuable_on": 1696736922,
       "certs_received": {
         "enrichill": 1703395605,
         "Yacamoneye": 1726552615,
@@ -62248,7 +63518,7 @@
     "Marieno": {
       "index": 11929,
       "owner_key": "6nt45zXriP3ZmfTeotB96xZiDGQAXPvSCeD68SrESGNw",
-      "balance": 179833,
+      "balance": 219519,
       "membership_expire_on": 1710080680,
       "next_cert_issuable_on": 1683296092,
       "certs_received": {
@@ -62263,13 +63533,11 @@
     "Sunrise": {
       "index": 5575,
       "owner_key": "6o1FS4jpYpYrAB2oGomedxrPLu42YMuHWN7gGmMV3Vc7",
-      "balance": 547232,
+      "balance": 586918,
       "membership_expire_on": 1720471790,
-      "next_cert_issuable_on": 1683268450,
+      "next_cert_issuable_on": 1693316695,
       "certs_received": {
         "KreenBulle51": 1699143511,
-        "DelphineDietsch": 1693619990,
-        "IsabelleGlorian": 1693524383,
         "MagouneMagalieBA": 1710994385,
         "Nathawie": 1744580767,
         "Harmonie_MJB": 1743552311,
@@ -62277,11 +63545,9 @@
         "Sylvania51": 1711503271,
         "Audr3y": 1728284692,
         "TITALIViv": 1721071978,
-        "letoilebleue": 1694497412,
         "LaureJacob51": 1722355916,
         "OValReiki": 1725401996,
         "Keramina51": 1729918583,
-        "PasMoi": 1693529352,
         "Martienne": 1724903011
       }
     },
@@ -62328,7 +63594,7 @@
     "Marica": {
       "index": 989,
       "owner_key": "6oBQof1Hy53JqT1E1yTZYTuN24N85HVJu4QZYyp1T7hj",
-      "balance": 689224,
+      "balance": 0,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {}
@@ -62363,20 +63629,17 @@
       "certs_received": {
         "Sanpapillon": 1738347883,
         "Guiaime": 1718913064,
-        "Diego528": 1696371536,
         "Helene-petiteriviere": 1718818294,
         "loveinagain81": 1706157394,
         "Mikhaella3448": 1723340212,
         "Eauvive": 1718821895,
-        "zaza": 1696371536,
-        "PascalGuillemain": 1735270164,
-        "mat14": 1696370629
+        "PascalGuillemain": 1735270164
       }
     },
     "lumiere": {
       "index": 6378,
       "owner_key": "6oaRfan5KAUcu86LM7YyQC76mTELAy8oXVYDPTb6Pmsm",
-      "balance": 454323,
+      "balance": 494009,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -62392,9 +63655,9 @@
     "MarieAmelie": {
       "index": 10239,
       "owner_key": "6oe3GukwPbTbCpCwy4vnqryTcM2mzgcY3TfHAtB76ThH",
-      "balance": 274990,
-      "membership_expire_on": 1698603614,
-      "next_cert_issuable_on": 1687773153,
+      "balance": 305476,
+      "membership_expire_on": 1726418894,
+      "next_cert_issuable_on": 1696251023,
       "certs_received": {
         "AHL": 1730611687,
         "Elorac": 1730661982,
@@ -62409,7 +63672,7 @@
     "Rouge-gorge": {
       "index": 11902,
       "owner_key": "6okVRHFVdPvmWvB2vP7kZc5HLt8Zg9UzxxzaMQLakWaj",
-      "balance": 124249,
+      "balance": 146170,
       "membership_expire_on": 1707744803,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -62436,7 +63699,7 @@
     "Rulikauri": {
       "index": 12716,
       "owner_key": "6otPtvNmxEQ4BtYMbsUtNy9u1LmobmCyGmt1KQNf2b4C",
-      "balance": 240368,
+      "balance": 220054,
       "membership_expire_on": 1716305188,
       "next_cert_issuable_on": 1687417155,
       "certs_received": {
@@ -62453,9 +63716,9 @@
     "MelodieDK": {
       "index": 11286,
       "owner_key": "6ovEDDfiGW24VyXghcGRTXjWfVQ8uKpMxTjMXFS2YhHG",
-      "balance": 247624,
+      "balance": 287310,
       "membership_expire_on": 1704885659,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694051385,
       "certs_received": {
         "SachaCirque": 1736446339,
         "Nalya": 1736446339,
@@ -62494,14 +63757,12 @@
       "balance": 804428,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Mahe": 1695937734
-      }
+      "certs_received": {}
     },
     "Maxdaix": {
       "index": 12454,
       "owner_key": "6pH8Lmm1GvDAdRVZuZnpU78CVThTV11UsN9HwcgsV6br",
-      "balance": 140636,
+      "balance": 180322,
       "membership_expire_on": 1711148137,
       "next_cert_issuable_on": 1683030527,
       "certs_received": {
@@ -62516,7 +63777,7 @@
     "Cheyanne": {
       "index": 11605,
       "owner_key": "6pK6NPxVjK98BpqgNvPVx6wvLSCSFS245NRV3KhqHe8h",
-      "balance": 214708,
+      "balance": 254394,
       "membership_expire_on": 1705765422,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -62539,7 +63800,7 @@
     "ladive": {
       "index": 11936,
       "owner_key": "6po5sJPpFLFV2QrzyJJ5xTp9bsmbhzzPnPNhBW8u9DnQ",
-      "balance": 184674,
+      "balance": 174360,
       "membership_expire_on": 1709768828,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -62553,15 +63814,12 @@
     "Louna": {
       "index": 4416,
       "owner_key": "6ptBzbnPCWhzh5gb3jhLqRkWHTitd9hpdGnE2sp7nGFb",
-      "balance": 155428,
+      "balance": 195114,
       "membership_expire_on": 1700957351,
       "next_cert_issuable_on": 1669547614,
       "certs_received": {
-        "Crystal": 1693974126,
-        "suffixe": 1695401251,
         "ManuBR15": 1733193447,
         "aajaadee": 1724042416,
-        "benenuxe": 1695350384,
         "CatherineCPo": 1731005450,
         "GeraldineGarrigues": 1709001107,
         "Luna": 1730437781
@@ -62570,9 +63828,9 @@
     "catalinons": {
       "index": 7488,
       "owner_key": "6puAb3ZFTX8Mi4tZmAz4braQ1LAAx2H6Qhc7BZiBzSBB",
-      "balance": 92439,
+      "balance": 136573,
       "membership_expire_on": 1705685803,
-      "next_cert_issuable_on": 1693150424,
+      "next_cert_issuable_on": 1695360323,
       "certs_received": {
         "Jens777": 1748287915,
         "Truca": 1711758632,
@@ -62624,7 +63882,7 @@
     "CocoBaud": {
       "index": 7916,
       "owner_key": "6px93317fCMyGPrQit4ycpn7HTcpKbJ3VieWKL6KtzEt",
-      "balance": 516597,
+      "balance": 556283,
       "membership_expire_on": 1713179411,
       "next_cert_issuable_on": 1651677491,
       "certs_received": {
@@ -62639,9 +63897,9 @@
     "merenoel": {
       "index": 1717,
       "owner_key": "6q2dd23Hhz6mrqJPxikTPpHuua6JETkwnF4CCkTmfCGH",
-      "balance": 607814,
+      "balance": 647500,
       "membership_expire_on": 1712346733,
-      "next_cert_issuable_on": 1689815295,
+      "next_cert_issuable_on": 1696213947,
       "certs_received": {
         "Eveilducoeur": 1724377279,
         "JusteAlex": 1727319190,
@@ -62696,9 +63954,9 @@
     "etco": {
       "index": 12061,
       "owner_key": "6qehsVYRriHZt3u9QTuifYzjWmLXEobCJ2skjwJxMQzs",
-      "balance": 228543,
+      "balance": 268229,
       "membership_expire_on": 1710626314,
-      "next_cert_issuable_on": 1683121321,
+      "next_cert_issuable_on": 1694946224,
       "certs_received": {
         "SOPHRO": 1742447366,
         "Nanou59": 1743529963,
@@ -62712,9 +63970,9 @@
     "bardone01": {
       "index": 8139,
       "owner_key": "6qj9hzB1NgFAqofaFzJW2emdZ2hvoEzBJQyq8bSs1oe9",
-      "balance": 294813,
+      "balance": 274399,
       "membership_expire_on": 1712568839,
-      "next_cert_issuable_on": 1686961679,
+      "next_cert_issuable_on": 1695177497,
       "certs_received": {
         "Indiana": 1748651166,
         "mimone974": 1716959520,
@@ -62748,7 +64006,7 @@
     "pierrelrt": {
       "index": 10671,
       "owner_key": "6qoSXRc7BoAQjv6EBwVR21ThrqTfy9dSCio5gakpjkqL",
-      "balance": 287397,
+      "balance": 327083,
       "membership_expire_on": 1698934840,
       "next_cert_issuable_on": 1676322248,
       "certs_received": {
@@ -62764,7 +64022,7 @@
     "Eldeline": {
       "index": 10234,
       "owner_key": "6qq5CJ4ee6hSRFp6uCSHn5WMMgULAWHxsVzkDFv4TB7",
-      "balance": 322990,
+      "balance": 362676,
       "membership_expire_on": 1699145707,
       "next_cert_issuable_on": 1671178057,
       "certs_received": {
@@ -62778,7 +64036,7 @@
     "Kundeba": {
       "index": 12155,
       "owner_key": "6qsfCJNALf1asFVmZFqqBZ9XY2d52X32w91tU1ha71Gp",
-      "balance": 161608,
+      "balance": 201294,
       "membership_expire_on": 1709067613,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -62792,7 +64050,7 @@
     "Grandmerekal": {
       "index": 10292,
       "owner_key": "6qxbzkJz86iFLVzdP8sJCQUAUhHJNQkVkjMVyVZznwSq",
-      "balance": 165754,
+      "balance": 155440,
       "membership_expire_on": 1699095773,
       "next_cert_issuable_on": 1689660387,
       "certs_received": {
@@ -62808,7 +64066,7 @@
     "feedesiles": {
       "index": 12783,
       "owner_key": "6qzJTUfUKALSaXU2YoykZrmKUUgH3i8xmg8SJjzF6AQK",
-      "balance": 329068,
+      "balance": 368754,
       "membership_expire_on": 1716447116,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -62822,7 +64080,7 @@
     "IsaAmba": {
       "index": 11748,
       "owner_key": "6r24qPvjsECQ34iqUBiyP2PeqbmJtktcpwaJzh5RQPCM",
-      "balance": 272559,
+      "balance": 346645,
       "membership_expire_on": 1708257008,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -62862,7 +64120,7 @@
     "Sevedejasmyn": {
       "index": 6302,
       "owner_key": "6r9t83ZCwG61iVHsuGvCrL9UFAnp4VEyWzMHXyfZ9xqQ",
-      "balance": 418963,
+      "balance": 428649,
       "membership_expire_on": 1723581773,
       "next_cert_issuable_on": 1692096173,
       "certs_received": {
@@ -62885,7 +64143,7 @@
     "Marcoucho": {
       "index": 9308,
       "owner_key": "6rEb343rstc6xKmu1VTSaW4bjHb6ZciiAoDNqPjcc48B",
-      "balance": 544156,
+      "balance": 583842,
       "membership_expire_on": 1720832013,
       "next_cert_issuable_on": 1677552149,
       "certs_received": {
@@ -62905,7 +64163,7 @@
     "LoicRollangMaire": {
       "index": 8426,
       "owner_key": "6rKkDRGeyfDYXdJ2TYKzV7u7GNB6QQarkjsA1EBf6wH9",
-      "balance": 495811,
+      "balance": 535497,
       "membership_expire_on": 1713411539,
       "next_cert_issuable_on": 1655209554,
       "certs_received": {
@@ -62927,7 +64185,7 @@
     "Dorian": {
       "index": 10690,
       "owner_key": "6rLAYZjvNrZjPJTYtm7ck8UpEeT55ARvu2Su43G1uYcq",
-      "balance": 283438,
+      "balance": 323124,
       "membership_expire_on": 1701716340,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -62941,7 +64199,7 @@
     "Anne-marie": {
       "index": 11074,
       "owner_key": "6rPxRQWygBDdbeVuiwqnXX4cT9G34oGzVzW38T2ncVPX",
-      "balance": 262404,
+      "balance": 302090,
       "membership_expire_on": 1699892893,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -62972,10 +64230,11 @@
     "Bobby1961": {
       "index": 12011,
       "owner_key": "6rXYCWFNUfhm8eG42yo79e8ZxNneKygdroNrGuHFiX4",
-      "balance": 188379,
+      "balance": 228065,
       "membership_expire_on": 1709646941,
-      "next_cert_issuable_on": 1690947990,
+      "next_cert_issuable_on": 1693620462,
       "certs_received": {
+        "Zap": 1756665859,
         "Francois-Rose": 1740711591,
         "HeleneSoleil": 1742157608,
         "Poesy": 1754847978,
@@ -62987,7 +64246,7 @@
     "Sohan": {
       "index": 8853,
       "owner_key": "6rZtfNgviTtXLke2Qxp4J5AgW3o1N6cTsnkkE6JqxurE",
-      "balance": 493419,
+      "balance": 502105,
       "membership_expire_on": 1714833751,
       "next_cert_issuable_on": 1692432467,
       "certs_received": {
@@ -63013,7 +64272,7 @@
     "iveliss72": {
       "index": 106,
       "owner_key": "6rhGeDLkED3d13vrGGcXUqymFtgQgdBDyk5pUbe6icbh",
-      "balance": 148995,
+      "balance": 188681,
       "membership_expire_on": 1714693432,
       "next_cert_issuable_on": 1685774576,
       "certs_received": {
@@ -63029,12 +64288,14 @@
     "Baba": {
       "index": 10491,
       "owner_key": "6rmMMPtuufD2bcoWkvpqhwjdruHdVkmDdXNZFhKMD1m6",
-      "balance": 418146,
-      "membership_expire_on": 1700236755,
-      "next_cert_issuable_on": 1686447918,
+      "balance": 371832,
+      "membership_expire_on": 1727648606,
+      "next_cert_issuable_on": 1695615801,
       "certs_received": {
         "Malu": 1732385344,
         "Wynfyd": 1731904800,
+        "Montesclaros": 1757145245,
+        "migueleon": 1759218277,
         "BeatricePieper": 1732338338,
         "Didy": 1731794355,
         "emboscada": 1731904800,
@@ -63064,7 +64325,7 @@
     "Lidiadantes": {
       "index": 12306,
       "owner_key": "6rwHNR7v1euw1DKqVY6H9d5LJqJ2EvEdpn7FG2hFe6qK",
-      "balance": 157724,
+      "balance": 172410,
       "membership_expire_on": 1712002117,
       "next_cert_issuable_on": 1683125727,
       "certs_received": {
@@ -63079,9 +64340,9 @@
     "Tell": {
       "index": 7210,
       "owner_key": "6rxe9D558x5v1hSyuqkZZPL4eP7SJRWF2V82aydDgxC5",
-      "balance": 1778133,
+      "balance": 1787019,
       "membership_expire_on": 1704743174,
-      "next_cert_issuable_on": 1691507464,
+      "next_cert_issuable_on": 1696417581,
       "certs_received": {
         "Chantal": 1745605055,
         "Malene": 1729725391,
@@ -63114,7 +64375,7 @@
     "LouisanneRun": {
       "index": 2767,
       "owner_key": "6rxu1vCKsX16gSkQJPWMRofxBJeRFbGNkBJ7QJkR8zSg",
-      "balance": 1259385,
+      "balance": 1299071,
       "membership_expire_on": 1709331472,
       "next_cert_issuable_on": 1643296767,
       "certs_received": {
@@ -63124,14 +64385,13 @@
         "Kiki": 1706140127,
         "Vievillejp": 1705609273,
         "lilithdu34": 1705774840,
-        "FloP": 1706345611,
-        "Damery": 1695674215
+        "FloP": 1706345611
       }
     },
     "jbar": {
       "index": 4581,
       "owner_key": "6s2QVMbgLgJumK4gLDAT58seaRWgTAk5r6HEtMBBPN8q",
-      "balance": 891108,
+      "balance": 911570,
       "membership_expire_on": 1700598044,
       "next_cert_issuable_on": 1692264020,
       "certs_received": {
@@ -63150,7 +64410,7 @@
     "Sophie01": {
       "index": 10446,
       "owner_key": "6s2ZTQBey3gdEaNdyqEfK4MPwh5boF12sGchjSfxRSdt",
-      "balance": 269938,
+      "balance": 309624,
       "membership_expire_on": 1700513351,
       "next_cert_issuable_on": 1688994212,
       "certs_received": {
@@ -63169,7 +64429,7 @@
     "Coexiste": {
       "index": 11567,
       "owner_key": "6s6xCLnkevUDKXDvegQF9RHaGM5Hk2QHVEK5egovwJLH",
-      "balance": 223620,
+      "balance": 263306,
       "membership_expire_on": 1707257944,
       "next_cert_issuable_on": 1689603139,
       "certs_received": {
@@ -63183,9 +64443,9 @@
     "Kryszu": {
       "index": 9269,
       "owner_key": "6sAZbaKPFPSqu3JhBFRUxD8WVDzdfRej4r8rnoLZno7D",
-      "balance": 310711,
+      "balance": 288397,
       "membership_expire_on": 1719243909,
-      "next_cert_issuable_on": 1691753583,
+      "next_cert_issuable_on": 1696222083,
       "certs_received": {
         "WintgensJoseph": 1753155038,
         "Alfybe": 1723790009,
@@ -63193,6 +64453,7 @@
         "MarieMas": 1747479493,
         "Audeko": 1723794702,
         "Gillette": 1739162306,
+        "CAILLOU": 1757535281,
         "Seanasaurus": 1731450493,
         "Vimpy": 1736658816,
         "ChristineDHONDT": 1741222918,
@@ -63204,6 +64465,7 @@
         "Tranquillou": 1741206564,
         "Basilous15": 1739162306,
         "Ninie": 1723825902,
+        "Petfa": 1756568002,
         "Kriss480": 1746908045,
         "VaivaG": 1735847557,
         "LUCKY": 1723778885
@@ -63212,7 +64474,7 @@
     "GuillemTechene": {
       "index": 7421,
       "owner_key": "6sBz6bdUZs7wYzCX8kwXvGyptNWvgLX3mV8AEGeURPfj",
-      "balance": 494056,
+      "balance": 533742,
       "membership_expire_on": 1702081101,
       "next_cert_issuable_on": 1656486245,
       "certs_received": {
@@ -63235,7 +64497,7 @@
     "Marie81": {
       "index": 12098,
       "owner_key": "6sDmk91WNgwETzC5SS4SsbEzipSzhwKJQdh8QnMtw9w8",
-      "balance": 648816,
+      "balance": 688502,
       "membership_expire_on": 1707252809,
       "next_cert_issuable_on": 1690846452,
       "certs_received": {
@@ -63254,7 +64516,7 @@
       "index": 6330,
       "owner_key": "6sFJ5XbLzGJJARuLGZ3mwYQa2fpbieXvR53tPW1qEqec",
       "balance": 665447,
-      "membership_expire_on": 1693519659,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1662047997,
       "certs_received": {
         "Dorian2009": 1698437415,
@@ -63267,7 +64529,7 @@
     "Carmens": {
       "index": 12377,
       "owner_key": "6sFnL4PFBNWsyJP9o8ediFtuDhB2aQTCxhhLULxGEeCx",
-      "balance": 155180,
+      "balance": 191866,
       "membership_expire_on": 1711054937,
       "next_cert_issuable_on": 1684371456,
       "certs_received": {
@@ -63282,7 +64544,7 @@
     "christineballu": {
       "index": 11596,
       "owner_key": "6sQD5PEFJYMrLyo1LuMwzwbkx5WymDARGKa8X2F6mjFD",
-      "balance": 194308,
+      "balance": 233994,
       "membership_expire_on": 1706912881,
       "next_cert_issuable_on": 1680581838,
       "certs_received": {
@@ -63296,12 +64558,13 @@
     "lydiemdb": {
       "index": 10024,
       "owner_key": "6sST6fuaJWiuiS5A9vktBQJzwnfmNbxyahPE8KB2wHeZ",
-      "balance": 865349,
+      "balance": 857035,
       "membership_expire_on": 1723391281,
-      "next_cert_issuable_on": 1692894966,
+      "next_cert_issuable_on": 1696246468,
       "certs_received": {
         "Clau": 1728951985,
         "DanielPGT": 1745264151,
+        "MorganeV": 1759283429,
         "Moulinettedumoulin": 1744954841,
         "Fabi26": 1747162000,
         "Hebou": 1730997089,
@@ -63323,9 +64586,9 @@
     "Jobenz": {
       "index": 13214,
       "owner_key": "6sTp5pTpePpoSCHCzcHx3svAULFgEp6tiZDAmm4qtgSA",
-      "balance": 174488,
+      "balance": 214174,
       "membership_expire_on": 1720812502,
-      "next_cert_issuable_on": 1693131592,
+      "next_cert_issuable_on": 1694512141,
       "certs_received": {
         "Jeratik": 1752379211,
         "Josy": 1753133598,
@@ -63337,7 +64600,7 @@
     "Mariekali": {
       "index": 5542,
       "owner_key": "6sTxj8oS5rNmPhRYYrgYr6P5t2dD4aaaT6Bh1kzH57N8",
-      "balance": 560498,
+      "balance": 600184,
       "membership_expire_on": 1722359059,
       "next_cert_issuable_on": 1677504917,
       "certs_received": {
@@ -63348,6 +64611,26 @@
         "Barbapapa": 1731001879
       }
     },
+    "LutziaZ": {
+      "index": 13479,
+      "owner_key": "6sbYtMtDmskdCbGQPKoKcvRC8X5D47GPpywf2Ss5b8WD",
+      "balance": 78550,
+      "membership_expire_on": 1724859824,
+      "next_cert_issuable_on": 1696350250,
+      "certs_received": {
+        "Gscarabbe": 1756512721,
+        "Flore45": 1756850207,
+        "CelineVivante": 1756927822,
+        "TiboDom": 1756437689,
+        "ALLine": 1756417665,
+        "SylvieM35": 1756774995,
+        "LionelB35": 1758083446,
+        "Maia": 1759038313,
+        "GMokeur": 1756507749,
+        "Marino45": 1756610788,
+        "NadiaNadodu": 1756451311
+      }
+    },
     "Papapantoufles": {
       "index": 3402,
       "owner_key": "6scioo6ba23Dqd5uSANs3vhCbqL4mzrWpDSQcfXGnwFD",
@@ -63361,7 +64644,7 @@
     "Groovygipsy": {
       "index": 7512,
       "owner_key": "6segPn95kzqmQiyDacmb61756s5uFiThY43f8A8u7bwL",
-      "balance": 536840,
+      "balance": 576526,
       "membership_expire_on": 1713182037,
       "next_cert_issuable_on": 1649394528,
       "certs_received": {
@@ -63377,7 +64660,7 @@
     "Aneyusta": {
       "index": 10316,
       "owner_key": "6sgvnBok5vxEUUDdvyccgTKkjULBb5Lt6c2AkXGnnA5e",
-      "balance": 84794,
+      "balance": 76080,
       "membership_expire_on": 1699439287,
       "next_cert_issuable_on": 1692860445,
       "certs_received": {
@@ -63415,8 +64698,8 @@
     "PierreMery79": {
       "index": 6069,
       "owner_key": "6sxtVa8hZTDfLSSnvF3rmmurYFQV6c7iT55bKukyeUMc",
-      "balance": 567539,
-      "membership_expire_on": 1696041608,
+      "balance": 598601,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675702186,
       "certs_received": {
         "LydieParthenay": 1713620993,
@@ -63453,9 +64736,9 @@
     "Osmoze": {
       "index": 6410,
       "owner_key": "6tNwHu3RaJ91xdhiBteuytp2qCZcDWV9C8MdEgvcXm3H",
-      "balance": 351280,
+      "balance": 323966,
       "membership_expire_on": 1723545861,
-      "next_cert_issuable_on": 1692265833,
+      "next_cert_issuable_on": 1696673281,
       "certs_received": {
         "Beatricebia": 1737353284,
         "DominiqueCuvelier": 1702106362,
@@ -63487,7 +64770,7 @@
     "Alexia007": {
       "index": 815,
       "owner_key": "6tWaBSESRmtoC8HjoQh3Mz7GV1aFCXUq4hf7Xwmbkoso",
-      "balance": 1924518,
+      "balance": 1964204,
       "membership_expire_on": 1706559076,
       "next_cert_issuable_on": 1688819778,
       "certs_received": {
@@ -63512,7 +64795,6 @@
         "GaelleHerbert": 1705012766,
         "Nhelou22": 1712337607,
         "toffee": 1704492433,
-        "julthor": 1696719361,
         "Somano": 1710996291
       }
     },
@@ -63545,13 +64827,11 @@
     "will46": {
       "index": 4112,
       "owner_key": "6tctjsLt7KxDM8piqeaftr4PVTrHPZevLmBBAtw7CHTY",
-      "balance": 1057799,
+      "balance": 1097485,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
-        "Adri46": 1694051130,
         "dineflore": 1744869694,
-        "Jcteulier": 1693687599,
         "malou": 1744869694,
         "azylis": 1744869694,
         "Vony": 1715980232,
@@ -63572,7 +64852,7 @@
     "CORBIERESchristine": {
       "index": 4017,
       "owner_key": "6tqLV1vQtQCmzw856hz77FaP39DQoHEMhAzZJRWsswF",
-      "balance": 776982,
+      "balance": 775368,
       "membership_expire_on": 1718381618,
       "next_cert_issuable_on": 1682856701,
       "certs_received": {
@@ -63605,7 +64885,7 @@
     "lindsaymalytai": {
       "index": 9367,
       "owner_key": "6tuFGzVgsnADoo5RjpW4KBWzvFeijdrgAZCkksueJKtd",
-      "balance": 322901,
+      "balance": 362587,
       "membership_expire_on": 1722607321,
       "next_cert_issuable_on": 1691915966,
       "certs_received": {
@@ -63630,7 +64910,7 @@
     "Sekhmet83": {
       "index": 13116,
       "owner_key": "6txR3CUuLqBEeGZHu32vGEnQ4QGQPahVSaH6ApR3pHbt",
-      "balance": 1026172,
+      "balance": 1050858,
       "membership_expire_on": 1719767426,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -63644,24 +64924,26 @@
     "AnneLaroche": {
       "index": 13318,
       "owner_key": "6u47fXnVk5WSEEpRUGC4WfJFbDJ4WALneEJtBC9RAH7v",
-      "balance": 67768,
+      "balance": 117454,
       "membership_expire_on": 1722263815,
-      "next_cert_issuable_on": 1692356123,
+      "next_cert_issuable_on": 1696243484,
       "certs_received": {
         "Katou": 1754415906,
         "hibiscus11": 1754185309,
         "nashira": 1754413332,
         "Andrelie": 1754170456,
         "danielbo": 1754196372,
-        "DanJoue": 1754542043
+        "LouisCarvalho": 1757742454,
+        "DanJoue": 1754542043,
+        "domimeert": 1757543754
       }
     },
     "GabyClaudia": {
       "index": 13121,
       "owner_key": "6u8Y9jtLs8uEVuMUxo76ZuYFhTte8M8Uz5pPK3TkWALU",
-      "balance": 156044,
+      "balance": 205392,
       "membership_expire_on": 1720020738,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694662375,
       "certs_received": {
         "AfricadeHarmonia": 1751820928,
         "Damadespadas": 1751936645,
@@ -63707,8 +64989,8 @@
     "CaptainVic": {
       "index": 9963,
       "owner_key": "6uH4UVpJK9Q57TJ649LZs68a1fxJvcCmNJur5Gjya3PC",
-      "balance": 354388,
-      "membership_expire_on": 1697467905,
+      "balance": 394074,
+      "membership_expire_on": 1725296120,
       "next_cert_issuable_on": 1683187805,
       "certs_received": {
         "CeHunin": 1729036305,
@@ -63723,9 +65005,9 @@
     "Floclochette": {
       "index": 10271,
       "owner_key": "6uHteVwifzfk8HbkPGntBEMpidmqYBQdHYb3r77q4cAy",
-      "balance": 301480,
-      "membership_expire_on": 1699051558,
-      "next_cert_issuable_on": 1693128918,
+      "balance": 254300,
+      "membership_expire_on": 1726836534,
+      "next_cert_issuable_on": 1696036167,
       "certs_received": {
         "Ninamaste": 1741330487,
         "Bil26": 1753934945,
@@ -63748,23 +65030,18 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1683710169,
       "certs_received": {
-        "Alinerv": 1695166197,
-        "Georges_M_mbr": 1695155374,
         "jef": 1746753671,
         "HerveSimonnet": 1698083307,
         "Flandelila": 1713744568,
-        "BRIGITTE2019": 1695180766,
-        "Sylvie83": 1733976829,
-        "NicolasBriet": 1695175218,
-        "Ethersource83": 1695452940
+        "Sylvie83": 1733976829
       }
     },
     "Vida": {
       "index": 11960,
       "owner_key": "6uJLHka7251czp4C1pXRwFsrnGcQPVbLmHe8hMdd1ozb",
-      "balance": 205195,
+      "balance": 224881,
       "membership_expire_on": 1707949120,
-      "next_cert_issuable_on": 1678765343,
+      "next_cert_issuable_on": 1695806754,
       "certs_received": {
         "Tchenka": 1741764877,
         "HelenaMatos": 1741661173,
@@ -63776,7 +65053,7 @@
     "Miou26": {
       "index": 10822,
       "owner_key": "6uRHGFKxtuLSXPjyvNjhVtv5yvHZjq75tnLAUEhtreAB",
-      "balance": 236325,
+      "balance": 276011,
       "membership_expire_on": 1701288900,
       "next_cert_issuable_on": 1677244577,
       "certs_received": {
@@ -63794,17 +65071,12 @@
       "balance": 1330925,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1668751401,
-      "certs_received": {
-        "Alinerv": 1695233618,
-        "NeyKrom": 1695329611,
-        "FVK": 1695447653,
-        "Bea": 1695449324
-      }
+      "certs_received": {}
     },
     "PointVirgule": {
       "index": 12497,
       "owner_key": "6umtwocbTrChqztcV5qmLGcZUJ6cNmiSJt1SGK64LMS6",
-      "balance": 180069,
+      "balance": 219755,
       "membership_expire_on": 1711977295,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -63818,7 +65090,7 @@
     "PatriciaGirard": {
       "index": 3355,
       "owner_key": "6unkx2nKCnd6sNn73rEGT4KHXJGcfnhdZXgA25JkWo1D",
-      "balance": 1589692,
+      "balance": 1629378,
       "membership_expire_on": 1701699745,
       "next_cert_issuable_on": 1677318235,
       "certs_received": {
@@ -63848,7 +65120,7 @@
     "TatTvamAsi": {
       "index": 12408,
       "owner_key": "6uve8FZLNDbRvtCtgsnQY83C6mZgbvAhdQt2aE2xhLYp",
-      "balance": 140976,
+      "balance": 180662,
       "membership_expire_on": 1708999535,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -63862,7 +65134,7 @@
     "Biba07": {
       "index": 6161,
       "owner_key": "6uvy6Rc2o3zPo6W7kbNQX4bW6t5e3599basmQzqgUFZ5",
-      "balance": 687639,
+      "balance": 727325,
       "membership_expire_on": 1698108603,
       "next_cert_issuable_on": 1683118514,
       "certs_received": {
@@ -63885,7 +65157,7 @@
     "Didthekid": {
       "index": 12818,
       "owner_key": "6uzq3f3UFH8M8GV8oWwPgoYZ6TPDMyPoigAx1CQSnjRK",
-      "balance": 98916,
+      "balance": 138602,
       "membership_expire_on": 1713306856,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -63914,7 +65186,7 @@
     "Babsi": {
       "index": 10516,
       "owner_key": "6v4qwENprE5GTdQHgquezMXDygQ1hUZpyX53NUCtgjd3",
-      "balance": 297987,
+      "balance": 337673,
       "membership_expire_on": 1700349771,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -63932,19 +65204,14 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1662423865,
       "certs_received": {
-        "Milan": 1696117672,
-        "Jeey": 1696131152,
-        "Soyouz": 1696116942,
-        "Happyculteur": 1697247414,
-        "Leticia": 1696116612,
-        "SanjaAnanda": 1696117672
+        "Happyculteur": 1697247414
       }
     },
     "ANO33776633": {
       "index": 9871,
       "owner_key": "6vJ7r4YyDbZ88FtJZhwq6MYPmRyMdtmGR3E5jsh86nse",
-      "balance": 342142,
-      "membership_expire_on": 1696357035,
+      "balance": 377516,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1671712801,
       "certs_received": {
         "FafannyTalbot": 1728572280,
@@ -63958,7 +65225,7 @@
     "Bidulette": {
       "index": 3738,
       "owner_key": "6vKXU1z5EXeb67H32y8sZAA4W73G5SXALAs8zEk8FKtz",
-      "balance": 594931,
+      "balance": 634617,
       "membership_expire_on": 1710783835,
       "next_cert_issuable_on": 1691830800,
       "certs_received": {
@@ -63974,7 +65241,7 @@
     "ArmandHovasse": {
       "index": 10027,
       "owner_key": "6vKr6pAtuMsDLMjPBLUbpGeqXGcEM6n3JfmcD2rTKu58",
-      "balance": 333993,
+      "balance": 373679,
       "membership_expire_on": 1723980241,
       "next_cert_issuable_on": 1692494974,
       "certs_received": {
@@ -64001,9 +65268,9 @@
     "mimimonique": {
       "index": 10078,
       "owner_key": "6vYXeR6MWyWTgjV2WbjiGCfchawGne5JRCPGf16hZNHk",
-      "balance": 287757,
+      "balance": 327443,
       "membership_expire_on": 1698083392,
-      "next_cert_issuable_on": 1687155438,
+      "next_cert_issuable_on": 1692885679,
       "certs_received": {
         "marcile": 1750838134,
         "TwentySeligUriel": 1729786015,
@@ -64019,9 +65286,9 @@
     "Valerie25": {
       "index": 12613,
       "owner_key": "6vZJLt6BbxrM66iRrEb4UGCNRPPbLiCQwc7LJ7aGszSE",
-      "balance": 159808,
+      "balance": 250094,
       "membership_expire_on": 1715290281,
-      "next_cert_issuable_on": 1692684825,
+      "next_cert_issuable_on": 1694496106,
       "certs_received": {
         "DomRomy20": 1746851750,
         "Hippolytethomas": 1753159880,
@@ -64043,24 +65310,26 @@
     "OlivK": {
       "index": 13223,
       "owner_key": "6vaCLcMDtqZE4buDouEsRuvGtuHbKbJSrFHvmcw9Km7u",
-      "balance": 42652,
+      "balance": 62338,
       "membership_expire_on": 1721593705,
-      "next_cert_issuable_on": 1692688643,
+      "next_cert_issuable_on": 1694034047,
       "certs_received": {
         "SununLiberty": 1753206439,
+        "cmms29": 1756764244,
         "ArthuK": 1753151305,
         "Mat971": 1753151305,
         "Kitou971": 1753226477,
         "Solight777": 1753151305,
+        "Esklaine": 1756764480,
         "CeWell": 1753313907
       }
     },
     "CedricC": {
       "index": 13056,
       "owner_key": "6vqXqWzHEGpuZawyuUnGKiDBnkkdNBKo5tDBvkSKJj3E",
-      "balance": 341630,
+      "balance": 381316,
       "membership_expire_on": 1717431057,
-      "next_cert_issuable_on": 1691451593,
+      "next_cert_issuable_on": 1694859156,
       "certs_received": {
         "Pascale72": 1752022213,
         "Chanchan": 1751405766,
@@ -64091,12 +65360,13 @@
     "Salsa33150": {
       "index": 12251,
       "owner_key": "6vyWrRhr632osgGVsbfgqVs1PQD8z5GxcqczEJjmGWRB",
-      "balance": 202028,
+      "balance": 176898,
       "membership_expire_on": 1708858894,
-      "next_cert_issuable_on": 1693443698,
+      "next_cert_issuable_on": 1696607297,
       "certs_received": {
         "CorinneE": 1742007069,
         "Artdevivre": 1756356960,
+        "LaFouif": 1757800032,
         "Dieudo": 1741385409,
         "xomer": 1750988306,
         "YvesMarieValladon": 1743201594,
@@ -64138,7 +65408,7 @@
     "CristinaBarba": {
       "index": 11450,
       "owner_key": "6w7gXhGU7AnzgPjRKH9TrpYQrSMi19E3yh4MtusJcjyc",
-      "balance": 134773,
+      "balance": 144959,
       "membership_expire_on": 1705868981,
       "next_cert_issuable_on": 1680063362,
       "certs_received": {
@@ -64156,16 +65426,14 @@
     "Puppi": {
       "index": 3041,
       "owner_key": "6wCMHNpA8XzN4kLMPuUFN8WaB9q4hbqE3RSvJGuCfGKC",
-      "balance": 1017743,
+      "balance": 928523,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1682604469,
       "certs_received": {
         "Sand": 1713166434,
         "TataYoyo": 1697657164,
-        "Jjacq07": 1699310075,
-        "Aibai": 1696292006,
-        "ZZR": 1697657465,
-        "HerrW": 1696441606
+        "Jjacq07": 1759463933,
+        "ZZR": 1697657465
       }
     },
     "Abdellah": {
@@ -64179,7 +65447,7 @@
     "HariomTS": {
       "index": 9659,
       "owner_key": "6wQFvF5MHevLLKHTgPfgwf6Wcpt6zfCmXgrY9xE5t8Pi",
-      "balance": 332278,
+      "balance": 371964,
       "membership_expire_on": 1721647145,
       "next_cert_issuable_on": 1691299634,
       "certs_received": {
@@ -64201,9 +65469,9 @@
     "TxeRoki": {
       "index": 9510,
       "owner_key": "6wQwmhVq9e4WxmnXpf2P3CReMTiGsgectNMxD2gVoGGN",
-      "balance": 140838,
+      "balance": 167924,
       "membership_expire_on": 1724591822,
-      "next_cert_issuable_on": 1687688825,
+      "next_cert_issuable_on": 1696139647,
       "certs_received": {
         "InmaRegina": 1726107798,
         "luciagares": 1739853872,
@@ -64238,8 +65506,8 @@
     "GrafoxArtist": {
       "index": 9695,
       "owner_key": "6wezfTb8sLwv3V8YKcwsw8vQLNRpMFm3hmBvVPuuWXg1",
-      "balance": 295798,
-      "membership_expire_on": 1695820480,
+      "balance": 324704,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683524149,
       "certs_received": {
         "ClaireBrune": 1727659155,
@@ -64254,7 +65522,7 @@
     "Agatheyu": {
       "index": 11482,
       "owner_key": "6wiQ21bxu5Z7iWzkWGejpXhfcoQEyCsyLdpev6QAMhB3",
-      "balance": 260080,
+      "balance": 299766,
       "membership_expire_on": 1707068622,
       "next_cert_issuable_on": 1678686998,
       "certs_received": {
@@ -64290,7 +65558,7 @@
     "harkaitz": {
       "index": 12602,
       "owner_key": "6woiAKSr7MThQQS4R23PS73ZZkRjAnf9tLJuz65jsejR",
-      "balance": 152384,
+      "balance": 143070,
       "membership_expire_on": 1715081185,
       "next_cert_issuable_on": 1685350125,
       "certs_received": {
@@ -64304,11 +65572,11 @@
     "fluidlog": {
       "index": 38,
       "owner_key": "6wuMCx2xbPn4iMJM2mGanGr7myUhYg319jJ4gkMNHkD",
-      "balance": 1541529,
+      "balance": 1582215,
       "membership_expire_on": 1699585681,
       "next_cert_issuable_on": 1684893513,
       "certs_received": {
-        "Jean-Marie": 1699830781,
+        "Jean-Marie": 1759257147,
         "1000i100": 1729864346,
         "JulienM": 1704615270,
         "paidge": 1732682097,
@@ -64326,7 +65594,6 @@
         "FanfanJub": 1720675991,
         "DelphineLefevre": 1735369572,
         "Dolphins": 1748986308,
-        "jeromejub": 1694570325,
         "ecano": 1714591003,
         "NadiaPaillard": 1722219437,
         "Beluganne": 1709284785,
@@ -64337,17 +65604,18 @@
     "EmiRobin": {
       "index": 6408,
       "owner_key": "6wvzFJ4CeL36DCs6ANsauecifFBJLiukRofctEhhCwNb",
-      "balance": 435804,
-      "membership_expire_on": 0,
+      "balance": 429428,
+      "membership_expire_on": 1727557344,
       "next_cert_issuable_on": 1653826548,
       "certs_received": {
         "Mavag": 1714625206,
         "neo9": 1702432055,
         "MARY30": 1707855290,
         "Joailes38": 1702435484,
+        "LibertyFran": 1759180257,
         "fanfan77": 1702422912,
         "MSarrazin": 1702006834,
-        "VWAUMANS": 1698292351,
+        "VWAUMANS": 1759170486,
         "JBM": 1698606665
       }
     },
@@ -64364,7 +65632,7 @@
     "Diebou": {
       "index": 10033,
       "owner_key": "6x1fGCSa6tNsTF6eXE3BEEm1jb8tKPaq1sehZsH6qNYh",
-      "balance": 226015,
+      "balance": 255701,
       "membership_expire_on": 1697723513,
       "next_cert_issuable_on": 1679451223,
       "certs_received": {
@@ -64383,15 +65651,19 @@
     "gimo": {
       "index": 7060,
       "owner_key": "6xDKgyGysp5ZremrnvKpjauMmExTTEeHEc37sndV8Fx4",
-      "balance": 775255,
+      "balance": 805441,
       "membership_expire_on": 1702379411,
-      "next_cert_issuable_on": 1687236923,
+      "next_cert_issuable_on": 1695765430,
       "certs_received": {
         "PatrickEtreSouverain": 1750723604,
+        "Monette": 1757640632,
         "WhiteWolf": 1708333141,
         "Adriel": 1708371471,
         "JadeWolf": 1708232796,
+        "Gigimit57": 1758736998,
         "Dzsaga": 1708321827,
+        "mylenealexandre": 1757465951,
+        "Patrice": 1757464873,
         "CharlesD": 1707647241
       }
     },
@@ -64413,7 +65685,7 @@
     "SophieMichaud": {
       "index": 8216,
       "owner_key": "6xPPj5UUhjPmfsXLhUBfPFGFtYJw11yPrLKh3pNh2RZ1",
-      "balance": 507548,
+      "balance": 537234,
       "membership_expire_on": 1712185496,
       "next_cert_issuable_on": 1672135423,
       "certs_received": {
@@ -64427,13 +65699,14 @@
     "DanielVienne": {
       "index": 513,
       "owner_key": "6xR76SvEvyBwLsyEyXKAczs9tSYks2scJtxo9aERs3mU",
-      "balance": 887386,
-      "membership_expire_on": 1708481155,
-      "next_cert_issuable_on": 1688645288,
+      "balance": 905072,
+      "membership_expire_on": 1728233317,
+      "next_cert_issuable_on": 1696771871,
       "certs_received": {
         "Zap": 1741591483,
         "FLORESTRELA": 1705011119,
         "paidge": 1732682097,
+        "Calendula": 1759194494,
         "Sophie_Jiyu": 1708743999,
         "Chabe13": 1750475272,
         "gerardchavanon": 1700639492,
@@ -64443,7 +65716,7 @@
         "sweety": 1748414022,
         "Juju21": 1703116561,
         "Aneuf": 1753471068,
-        "KatyKat": 1695424462,
+        "VictorDavid108": 1756248162,
         "ennasipho": 1748376335,
         "PhilippeGuillemant": 1730270965,
         "solennevm": 1740034003,
@@ -64452,7 +65725,6 @@
         "lumi": 1718589511,
         "Faridalwest": 1753128302,
         "Bzh38": 1720164157,
-        "jytou": 1695449844,
         "Puravida": 1752693333,
         "Annabelle": 1730841577,
         "FredB": 1753609061
@@ -64461,7 +65733,7 @@
     "Antu1": {
       "index": 13227,
       "owner_key": "6xRzYgA4raCL8hrmDfiD8bqTsKQnmZM7AQcQ7PpzEJDo",
-      "balance": 128746,
+      "balance": 168432,
       "membership_expire_on": 1721500452,
       "next_cert_issuable_on": 1691764168,
       "certs_received": {
@@ -64475,7 +65747,7 @@
     "Maya40": {
       "index": 13163,
       "owner_key": "6xSp1bLuwUf9JiPTCX2srBW891sVFSTw35SqpNsgvdqW",
-      "balance": 150628,
+      "balance": 190314,
       "membership_expire_on": 1717946638,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -64490,9 +65762,9 @@
     "Meg": {
       "index": 9615,
       "owner_key": "6xZZcjN5xacHNYPFuhKSb615ZszMjExbpJahwCjhWmnk",
-      "balance": 88050,
+      "balance": 64536,
       "membership_expire_on": 1722264236,
-      "next_cert_issuable_on": 1693169833,
+      "next_cert_issuable_on": 1695995860,
       "certs_received": {
         "Vichara": 1744690853,
         "Artesanatacto": 1740564286,
@@ -64502,6 +65774,7 @@
         "SantiTrinquete": 1750318332,
         "latxurry": 1738447417,
         "Oceano": 1726941515,
+        "Elenarepostera": 1757614652,
         "jilguero": 1752719074,
         "Didiridi": 1749571102,
         "AlGabal": 1741312150,
@@ -64509,11 +65782,13 @@
         "LooseGoose": 1751974600,
         "MaiteBel": 1755300488,
         "JUAN51": 1726924398,
+        "Teka": 1756955952,
         "Mariarima": 1742909059,
         "Haritza": 1750205245,
         "Orakulo": 1756418367,
         "Maritxu": 1754787340,
         "Dayana": 1727397227,
+        "VibrandoEsencia": 1757580229,
         "MaiteLeke": 1726944437,
         "Mikelegi": 1732771039,
         "BruBraveLez": 1755324657
@@ -64522,8 +65797,8 @@
     "Lotus75": {
       "index": 6109,
       "owner_key": "6xcS8E1tkpZrY677FjRRXAioFfP8QC35biitQ5cifLPZ",
-      "balance": 496255,
-      "membership_expire_on": 1693649165,
+      "balance": 497323,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1671680834,
       "certs_received": {
         "Chantal": 1700300775,
@@ -64547,9 +65822,9 @@
     "Pascaloo35": {
       "index": 819,
       "owner_key": "6xmV6mS2sE7PUoPMYvMbZW9CjG8qgYxRaQNa6LRqH9te",
-      "balance": 2047186,
+      "balance": 2085406,
       "membership_expire_on": 1721598557,
-      "next_cert_issuable_on": 1690203948,
+      "next_cert_issuable_on": 1696164138,
       "certs_received": {
         "Rebirth35": 1728321763,
         "GenevLeb": 1741316812,
@@ -64557,6 +65832,8 @@
         "FrancoisRocher": 1728468329,
         "VirginieDeleu": 1700595375,
         "Espritangel": 1729727305,
+        "Pashi": 1759207338,
+        "Alem": 1758136090,
         "Julien_Jardin": 1729061457,
         "LeoBoudet": 1723350118,
         "Fred2Rennes": 1734205882
@@ -64573,8 +65850,8 @@
     "Caribe": {
       "index": 7218,
       "owner_key": "6xtCSce944HZSJpjCfmyUGueV9f1GQAg7mt6npL9axG2",
-      "balance": 537186,
-      "membership_expire_on": 1701469860,
+      "balance": 559872,
+      "membership_expire_on": 1727855522,
       "next_cert_issuable_on": 1688392386,
       "certs_received": {
         "EnriKon": 1709348502,
@@ -64600,8 +65877,8 @@
     "Nathanael974": {
       "index": 10766,
       "owner_key": "6xwHkqDWZfkwws5HUhkCdpXNKRyC73x44jPAS7gB2SqB",
-      "balance": 812201,
-      "membership_expire_on": 1698603363,
+      "balance": 776887,
+      "membership_expire_on": 1725551805,
       "next_cert_issuable_on": 1692329996,
       "certs_received": {
         "yekapharoah": 1733189983,
@@ -64615,7 +65892,7 @@
     "IsabelleSAV": {
       "index": 9601,
       "owner_key": "6xybjfrCrx8DtbE4YSSBHh16JeWC5FwmyLpfLc2UtHo7",
-      "balance": 319222,
+      "balance": 358908,
       "membership_expire_on": 1721857467,
       "next_cert_issuable_on": 1687253231,
       "certs_received": {
@@ -64629,7 +65906,7 @@
     "OlivierLa": {
       "index": 521,
       "owner_key": "6y4wYUkYcrkMTsyTserLFMZLA9EJaEcxCMET84vHBA3D",
-      "balance": 2141394,
+      "balance": 2181080,
       "membership_expire_on": 1712253101,
       "next_cert_issuable_on": 1692669966,
       "certs_received": {
@@ -64649,6 +65926,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "millepraline": {
+      "index": 13751,
+      "owner_key": "6yGRxPT9VRqy8SSZCnuUHRqVf8aoUEpg2Dw8dLeHxwi5",
+      "balance": 54178,
+      "membership_expire_on": 1725486560,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Unity": 1759468005,
+        "Jamorie": 1757044160,
+        "colinuxCanut2": 1758305046,
+        "Audette": 1759333542,
+        "Kouleurs": 1759602510
+      }
+    },
     "JohannB": {
       "index": 2112,
       "owner_key": "6yGvJRGnWHqaMqhr3g94NnGLnjsukExR2Rxdm2WyMKaD",
@@ -64660,8 +65951,8 @@
     "VanePaz": {
       "index": 6453,
       "owner_key": "6yKi3JrJzB79cqzNrrwLfWQZWriM7v1TqJZwiWAE6Gku",
-      "balance": 253971,
-      "membership_expire_on": 1698779525,
+      "balance": 277487,
+      "membership_expire_on": 1727190219,
       "next_cert_issuable_on": 1684856028,
       "certs_received": {
         "Towanda": 1718221485,
@@ -64684,9 +65975,9 @@
     "Marino": {
       "index": 9333,
       "owner_key": "6yNoqsHi4uokRRjZTmF9swosmbRnrybgyETaovSLC2wv",
-      "balance": 206654,
+      "balance": 228040,
       "membership_expire_on": 1721959118,
-      "next_cert_issuable_on": 1684071200,
+      "next_cert_issuable_on": 1694009554,
       "certs_received": {
         "Carine888": 1743284643,
         "Tipheret": 1733875728,
@@ -64708,8 +65999,8 @@
     "NathBro": {
       "index": 11062,
       "owner_key": "6yVjfvTFKYk3avobUwEoYZ1JcJgSNGi9ky91nt1tx44C",
-      "balance": 150989,
-      "membership_expire_on": 1701468319,
+      "balance": 174675,
+      "membership_expire_on": 1727952943,
       "next_cert_issuable_on": 1679553332,
       "certs_received": {
         "Lys2703": 1734231174,
@@ -64725,9 +66016,9 @@
     "EstherEstrella": {
       "index": 9703,
       "owner_key": "6yZGofm77BbUfcppu8JyoSq1izBpNTenA9et99JvvNaX",
-      "balance": 107009,
+      "balance": 146695,
       "membership_expire_on": 1721051941,
-      "next_cert_issuable_on": 1684650581,
+      "next_cert_issuable_on": 1695290348,
       "certs_received": {
         "Manu_El": 1726179063,
         "celoman": 1726177385,
@@ -64744,7 +66035,7 @@
     "chrisdubier": {
       "index": 9863,
       "owner_key": "6ya8N2te2Kxy5h2fXwXFEsKWgrMqtEBNCHbFiWEegFuW",
-      "balance": 351101,
+      "balance": 390787,
       "membership_expire_on": 1725010017,
       "next_cert_issuable_on": 1675839310,
       "certs_received": {
@@ -64769,7 +66060,7 @@
     "SantoS": {
       "index": 6261,
       "owner_key": "6yf3unRCjX4DbRdFJQh6hT1g6EepJ479VEzF5RZDpJjF",
-      "balance": 673345,
+      "balance": 713031,
       "membership_expire_on": 1704927907,
       "next_cert_issuable_on": 1644586257,
       "certs_received": {
@@ -64781,7 +66072,7 @@
         "GeraldineGarrigues": 1701152735,
         "Dewi": 1701498492,
         "HelenDuceau": 1710896439,
-        "Llorens": 1701453942
+        "Llorens": 1758650519
       }
     },
     "EricBeaute": {
@@ -64795,7 +66086,7 @@
     "OphelieBuisan": {
       "index": 3815,
       "owner_key": "6ytXrC3jZgthdLsiJZUu6QL8qxEPjKRdGX2J7FXfEMMk",
-      "balance": 792855,
+      "balance": 832541,
       "membership_expire_on": 1711674049,
       "next_cert_issuable_on": 1662175166,
       "certs_received": {
@@ -64828,7 +66119,7 @@
     "Isali": {
       "index": 11546,
       "owner_key": "6zKPhkHZTM3zEGdfauPzf22U7jHy3cqus9pzYYmzx2Wz",
-      "balance": 256985,
+      "balance": 225311,
       "membership_expire_on": 1706362449,
       "next_cert_issuable_on": 1688171510,
       "certs_received": {
@@ -64847,7 +66138,7 @@
     "MarieClaireM": {
       "index": 7461,
       "owner_key": "6zLSSnEB4jpmiSvPucVoBmjr6EJLFiM1Z6pW4FNmpe2D",
-      "balance": 426023,
+      "balance": 465709,
       "membership_expire_on": 1720129716,
       "next_cert_issuable_on": 1658418681,
       "certs_received": {
@@ -64872,7 +66163,7 @@
     "Moulinettedumoulin": {
       "index": 11437,
       "owner_key": "6zXyXHBJ6UcajXZPLVELRrTZdsbhrQUH4cyZHxhp1Ypq",
-      "balance": 474529,
+      "balance": 530715,
       "membership_expire_on": 1706655642,
       "next_cert_issuable_on": 1690538036,
       "certs_received": {
@@ -64888,7 +66179,7 @@
     "GenDes": {
       "index": 12360,
       "owner_key": "6zZHdbH8g449DkrE6YQSqHVqP3QWjqaFTtx1tw79VtgC",
-      "balance": 174916,
+      "balance": 180602,
       "membership_expire_on": 1712951764,
       "next_cert_issuable_on": 1691654372,
       "certs_received": {
@@ -64899,11 +66190,26 @@
         "Mireilleplantessauvages": 1744820938
       }
     },
+    "RudyMathey": {
+      "index": 13621,
+      "owner_key": "6zZWM1nANCiLt7f3bPAW46WVM5Z5mEg7Vtr7gkaZ4P9X",
+      "balance": 42248,
+      "membership_expire_on": 1725915155,
+      "next_cert_issuable_on": 1696692522,
+      "certs_received": {
+        "StephanieLumiere": 1758139354,
+        "Inanna": 1757790446,
+        "Fabrice_T": 1757797132,
+        "Barbatruc": 1758424779,
+        "Loris_T": 1758690139,
+        "Daniele8": 1757791129
+      }
+    },
     "OstaraChristophe": {
       "index": 10385,
       "owner_key": "6zdcSGRY4KivcMSoSkPpe9v6yNiVPTee7dDj5gGUoXGA",
-      "balance": 411506,
-      "membership_expire_on": 1699810321,
+      "balance": 287910,
+      "membership_expire_on": 1727273250,
       "next_cert_issuable_on": 1678148148,
       "certs_received": {
         "ScarlettGabrielle_8": 1731368479,
@@ -64918,9 +66224,9 @@
     "Sanka": {
       "index": 11174,
       "owner_key": "6zgZmsDtXA2aXpdQDowMuqu2aMpPghqZB1iW2dAahWxE",
-      "balance": 258214,
+      "balance": 287900,
       "membership_expire_on": 1704885950,
-      "next_cert_issuable_on": 1673494594,
+      "next_cert_issuable_on": 1693901295,
       "certs_received": {
         "SachaCirque": 1736446339,
         "Nalya": 1736446339,
@@ -64944,7 +66250,7 @@
     "Jerryz": {
       "index": 8880,
       "owner_key": "6zo7sCWd3ceKyzGYuDe6Qz8mgZ8GZW3cQrvefcigPa2S",
-      "balance": 559666,
+      "balance": 537352,
       "membership_expire_on": 1714763371,
       "next_cert_issuable_on": 1692889070,
       "certs_received": {
@@ -64960,6 +66266,7 @@
         "JJP": 1746903455,
         "Valmo": 1732666636,
         "nirma": 1719880534,
+        "ECRIVAINE": 1756074558,
         "LudusArenaConcept": 1749592379,
         "SoulClayIbiza": 1742600873,
         "DavidMontpellier": 1743807301,
@@ -64992,7 +66299,7 @@
     "BoBauMat": {
       "index": 11168,
       "owner_key": "6zywCUertwCMESYnA57YWYjD6WJbn4m4s4DZamopKKEf",
-      "balance": 249273,
+      "balance": 288959,
       "membership_expire_on": 1704295841,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -65016,7 +66323,7 @@
     "zebulon": {
       "index": 10720,
       "owner_key": "715M85KscAkYycXZwtUzapKRs75E5z7oZh9RvhV58LKd",
-      "balance": 139279,
+      "balance": 178965,
       "membership_expire_on": 1701714851,
       "next_cert_issuable_on": 1671115092,
       "certs_received": {
@@ -65031,18 +66338,15 @@
     "Regis": {
       "index": 806,
       "owner_key": "71BherhBxbTKFECuV8wRAujVcfv6W3bxPuSu6zse9bB4",
-      "balance": 1619860,
+      "balance": 1659546,
       "membership_expire_on": 1700666771,
       "next_cert_issuable_on": 1688211350,
       "certs_received": {
         "Noelia": 1745389115,
         "MacaMartin": 1736208503,
         "KimDS": 1725845270,
-        "Jcteulier": 1693891891,
         "Jade971": 1727291181,
-        "Belka": 1695517490,
         "Gelen": 1706900271,
-        "Nadette": 1695356170,
         "Mart": 1699315732,
         "LuzYVida": 1714336734,
         "Permaterravie": 1736214551,
@@ -65052,7 +66356,7 @@
     "Gerard_IV": {
       "index": 5046,
       "owner_key": "71CBdJoe1REm1Ht8hF6UNLFjxGjgGb7w3x2Pfn5ANW4y",
-      "balance": 380755,
+      "balance": 420441,
       "membership_expire_on": 1709089943,
       "next_cert_issuable_on": 1646203478,
       "certs_received": {
@@ -65070,8 +66374,8 @@
     "Catanyon": {
       "index": 9896,
       "owner_key": "71CHFw1QZK6g92ZjnjdvWbzo1HxobgqKm8WzNx6WEXhV",
-      "balance": 316109,
-      "membership_expire_on": 1695780024,
+      "balance": 355795,
+      "membership_expire_on": 1725978791,
       "next_cert_issuable_on": 1686540424,
       "certs_received": {
         "SylvieBoitard": 1729325134,
@@ -65086,9 +66390,9 @@
     "Mariacrea": {
       "index": 12709,
       "owner_key": "71Cssz1p3d1x7VoyU9DL6kuHXhihqaRhvZ4QW85ERDhs",
-      "balance": 26504,
+      "balance": 39690,
       "membership_expire_on": 1716130819,
-      "next_cert_issuable_on": 1692669966,
+      "next_cert_issuable_on": 1696300191,
       "certs_received": {
         "Wynfyd": 1749800033,
         "unica": 1749529475,
@@ -65107,9 +66411,9 @@
     "Diabolo": {
       "index": 12888,
       "owner_key": "71CtdsR6mSvb4pY9Ser5TRdi945EX1xVrE6njy9FS8tu",
-      "balance": 95104,
+      "balance": 134790,
       "membership_expire_on": 1717880645,
-      "next_cert_issuable_on": 1689674484,
+      "next_cert_issuable_on": 1693995956,
       "certs_received": {
         "Hernest": 1749950898,
         "FRANLA": 1749780187,
@@ -65122,7 +66426,7 @@
     "Libellule321": {
       "index": 12546,
       "owner_key": "71HGajH43aDQ1G16wR16EGCmFWJBPJY97Af5Ne8Pj2za",
-      "balance": 136124,
+      "balance": 175810,
       "membership_expire_on": 1714749091,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -65145,7 +66449,7 @@
     "isamaya": {
       "index": 11382,
       "owner_key": "71SojGXmrrSFeTnSXpJAXvng7LKpqLxJwncsYLL1SDQz",
-      "balance": 226152,
+      "balance": 265838,
       "membership_expire_on": 1706324755,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
@@ -65161,9 +66465,9 @@
     "Effelmandy": {
       "index": 13455,
       "owner_key": "71ZWAHnP6vanKLuRLix1Aoh3MyFgp2GrMrnf9QkvkSwg",
-      "balance": 16004,
+      "balance": 55690,
       "membership_expire_on": 1724536930,
-      "next_cert_issuable_on": 1693458668,
+      "next_cert_issuable_on": 1693562491,
       "certs_received": {
         "Holistique": 1756249788,
         "Charbel45": 1756353892,
@@ -65178,8 +66482,8 @@
     "Anandaa": {
       "index": 6239,
       "owner_key": "71aidjW46Jn5AqSoVHtW6xxo48AvYh9sKr4vnbknpWBE",
-      "balance": 458167,
-      "membership_expire_on": 1695569727,
+      "balance": 483839,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1671871064,
       "certs_received": {
         "Andrelebourhis": 1718604240,
@@ -65212,7 +66516,7 @@
     "Giunior": {
       "index": 7342,
       "owner_key": "71jZu8cm61DyboynBiAzxC9AWrg6sdfjsmb1UBpdnsSr",
-      "balance": 303651,
+      "balance": 343337,
       "membership_expire_on": 1710058221,
       "next_cert_issuable_on": 1649165568,
       "certs_received": {
@@ -65242,7 +66546,7 @@
     "LOWTECHLIEGE": {
       "index": 12225,
       "owner_key": "71t4svnbidpqk48DWfMg6cTX6EaaLGzTp6Rhn7W2xm4s",
-      "balance": 159232,
+      "balance": 198918,
       "membership_expire_on": 1712053820,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -65258,7 +66562,7 @@
     "Pat26": {
       "index": 10386,
       "owner_key": "71x6pYkY3CHtkEoFoYMnTtU1cNbqYpZXLkEZRNCBR69W",
-      "balance": 323459,
+      "balance": 369913,
       "membership_expire_on": 1699996332,
       "next_cert_issuable_on": 1683371394,
       "certs_received": {
@@ -65296,7 +66600,7 @@
     "Christelle09": {
       "index": 7455,
       "owner_key": "72GBxyNPbSd859uFmawxpzUygo4X5jCCU1rzzTJtJ3gS",
-      "balance": 535655,
+      "balance": 575341,
       "membership_expire_on": 1710519747,
       "next_cert_issuable_on": 1652774274,
       "certs_received": {
@@ -65333,7 +66637,7 @@
     "Astor": {
       "index": 7104,
       "owner_key": "72Jem4PmHPJ472gDVH2jNJMf4cXxfktZuKFEkR8eNvsE",
-      "balance": 558517,
+      "balance": 598203,
       "membership_expire_on": 1710249301,
       "next_cert_issuable_on": 1680568220,
       "certs_received": {
@@ -65352,7 +66656,7 @@
     "Isiris84": {
       "index": 6326,
       "owner_key": "72ToEaY7eKf35d5NLxB5Wn9d6pqoLWpZVgQGxEf6zzak",
-      "balance": 606421,
+      "balance": 646107,
       "membership_expire_on": 1706368353,
       "next_cert_issuable_on": 1668612674,
       "certs_received": {
@@ -65380,7 +66684,7 @@
     "Bogart": {
       "index": 6586,
       "owner_key": "72VfbbNgMtJP84SXt8pcvsZVsdRHLxSpU2Sn8SuTA1An",
-      "balance": 249499,
+      "balance": 289185,
       "membership_expire_on": 1699100032,
       "next_cert_issuable_on": 1667459485,
       "certs_received": {
@@ -65404,11 +66708,10 @@
     "Anamaya": {
       "index": 5435,
       "owner_key": "72Xz6fvQ5w1SkhSKCemQZtd32AK2862PoV1QXCz9WAEc",
-      "balance": 696453,
+      "balance": 736139,
       "membership_expire_on": 1714868329,
-      "next_cert_issuable_on": 1693187713,
+      "next_cert_issuable_on": 1696416309,
       "certs_received": {
-        "Chantal": 1696384661,
         "Flocon": 1756279947,
         "Riri": 1755535359,
         "rockwater": 1751477309,
@@ -65430,9 +66733,9 @@
         "Cathykty": 1706418300,
         "Flandelila": 1719979542,
         "Jaco": 1709184250,
-        "JeanTibou": 1696366315,
+        "JeanTibou": 1758210046,
         "melusine": 1699146991,
-        "Coco46": 1697953097,
+        "Coco46": 1759114435,
         "Anne-Pierre": 1754863401,
         "lagoet73": 1704329474,
         "MullerC": 1714517922,
@@ -65446,7 +66749,7 @@
     "Safiana": {
       "index": 11789,
       "owner_key": "72ZuT5DLH72X9o76UsoDdxXsCs4RjuiPy7StSWBKuQEo",
-      "balance": 227182,
+      "balance": 266868,
       "membership_expire_on": 1708731970,
       "next_cert_issuable_on": 1679813235,
       "certs_received": {
@@ -65460,7 +66763,7 @@
     "Elyse33": {
       "index": 10850,
       "owner_key": "72aTFhjdwGuaAMTAwbQvMnsDEuNrtTMSpH9dLWJZox7L",
-      "balance": 277048,
+      "balance": 316734,
       "membership_expire_on": 1699223456,
       "next_cert_issuable_on": 1683888316,
       "certs_received": {
@@ -65480,9 +66783,9 @@
     "ElaineDana": {
       "index": 7672,
       "owner_key": "72dXkAuxt1w4sNgK4aLdcHVSF1F9JkWwVnpkQbfx6Mdd",
-      "balance": 551732,
+      "balance": 618718,
       "membership_expire_on": 1708294538,
-      "next_cert_issuable_on": 1693038910,
+      "next_cert_issuable_on": 1696163764,
       "certs_received": {
         "kapis": 1755593122,
         "Beatricebia": 1712618899,
@@ -65509,7 +66812,7 @@
     "SylvieMG": {
       "index": 11910,
       "owner_key": "72kV4W4ZhvDwYzXZ6yR41CTxdGF3aydBtoopcw1FPLU4",
-      "balance": 237851,
+      "balance": 277537,
       "membership_expire_on": 1709391920,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -65551,7 +66854,7 @@
     "Sonia_MB": {
       "index": 10412,
       "owner_key": "72wfkLw8QzcVsTwK1tXhA9AWzRLGGhg23ZJqiBCMLKW6",
-      "balance": 71764,
+      "balance": 91450,
       "membership_expire_on": 1699041756,
       "next_cert_issuable_on": 1682947108,
       "certs_received": {
@@ -65568,17 +66871,15 @@
     "Gaia5": {
       "index": 2264,
       "owner_key": "72wmvNZ6htoc1qGYri7vnoN9twG14nPd5j9617gsAuEh",
-      "balance": 468924,
+      "balance": 508610,
       "membership_expire_on": 1706032377,
       "next_cert_issuable_on": 1682598779,
       "certs_received": {
         "Chris08": 1717164538,
         "Zoe73": 1745649653,
         "Phil7": 1744949879,
-        "LILOU974": 1695359167,
         "Brunov974": 1716987982,
         "pbienfait": 1745649324,
-        "NOE974": 1695359485,
         "Lililanguage": 1733704681
       }
     },
@@ -65601,14 +66902,15 @@
     "Madreselva": {
       "index": 8429,
       "owner_key": "73VKf5s9cSVRpsiMD9S56T8T6VFokB3ovkGJpsvv5KUq",
-      "balance": 275944,
+      "balance": 225930,
       "membership_expire_on": 1712064047,
-      "next_cert_issuable_on": 1691856459,
+      "next_cert_issuable_on": 1695108756,
       "certs_received": {
         "Eleonora": 1721166857,
         "Aguas": 1753568995,
         "Simplementemaria": 1716830835,
         "Josepeuta": 1716830297,
+        "realbrucest": 1755562251,
         "JuanAlHamam": 1717662487,
         "luismo": 1717278228,
         "LysVida": 1727398472,
@@ -65616,6 +66918,7 @@
         "ISAelle": 1721168578,
         "MaEstherG1": 1753741396,
         "SharonPeregrina": 1724979593,
+        "Juanmatierraplana": 1757960514,
         "BeatricePieper": 1717012603,
         "Didy": 1727455807,
         "MACANATURE": 1756158588,
@@ -65627,7 +66930,7 @@
     "loukaM": {
       "index": 7907,
       "owner_key": "73XMUoWJZ727FbGGYffXw6iBzGShyHCEYRVNgNihQSPD",
-      "balance": 515021,
+      "balance": 554707,
       "membership_expire_on": 1709084441,
       "next_cert_issuable_on": 1666099411,
       "certs_received": {
@@ -65643,7 +66946,7 @@
     "RosaVanille420": {
       "index": 8068,
       "owner_key": "73gNJ2yvwEaLFHo3tJKvLshU3rxtHpbsGdYgZGakAoQ",
-      "balance": 426365,
+      "balance": 466051,
       "membership_expire_on": 1715874231,
       "next_cert_issuable_on": 1684564468,
       "certs_received": {
@@ -65658,8 +66961,8 @@
     "FORET": {
       "index": 6633,
       "owner_key": "73gU8ifHQTtdQQUSZpMtyPxLjkjjJ5wrTNtNSKTV1HLs",
-      "balance": 687122,
-      "membership_expire_on": 1696271571,
+      "balance": 723574,
+      "membership_expire_on": 1728076142,
       "next_cert_issuable_on": 1684749043,
       "certs_received": {
         "Martine51": 1704938867,
@@ -65676,7 +66979,7 @@
     "lodojuc": {
       "index": 12046,
       "owner_key": "73kmHMWVM2zyLNjHNKREmwzvEt3ikpxSJ3PSj1aqcUTM",
-      "balance": 170853,
+      "balance": 203339,
       "membership_expire_on": 1710523683,
       "next_cert_issuable_on": 1680081595,
       "certs_received": {
@@ -65713,9 +67016,9 @@
     "casadesam": {
       "index": 4959,
       "owner_key": "73wc4EGqUCVKHSgoahQXSELaVVx52CVTp35GENnT72mE",
-      "balance": 813749,
+      "balance": 853435,
       "membership_expire_on": 1716942480,
-      "next_cert_issuable_on": 1692962169,
+      "next_cert_issuable_on": 1694180155,
       "certs_received": {
         "lims": 1743643798,
         "Selrahc": 1699825816,
@@ -65723,13 +67026,14 @@
         "NoraMaela": 1710094958,
         "Patappui": 1749164555,
         "CTL": 1756343185,
+        "Stelzchantal": 1758151306,
         "iafu": 1743643798
       }
     },
     "ManouV": {
       "index": 8032,
       "owner_key": "744woGwq52nvtrxzks11S7XQDcRY984XvvvZtzJcC7Yr",
-      "balance": 533162,
+      "balance": 572848,
       "membership_expire_on": 1715271622,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -65751,7 +67055,7 @@
     "franmi": {
       "index": 10351,
       "owner_key": "74DpqD2fzjaL6JBkydmViWUJtuaSD1dvfDps3x4tieq2",
-      "balance": 304336,
+      "balance": 344022,
       "membership_expire_on": 1699709701,
       "next_cert_issuable_on": 1677376677,
       "certs_received": {
@@ -65778,7 +67082,7 @@
     "Gentil09": {
       "index": 5824,
       "owner_key": "74LMi5WRBCmyX5m8oWLHGCp17iJjSos2L1Yg76YoEAU3",
-      "balance": 97841,
+      "balance": 137527,
       "membership_expire_on": 1719882650,
       "next_cert_issuable_on": 1683534344,
       "certs_received": {
@@ -65797,7 +67101,7 @@
     "lechantdelaterre": {
       "index": 11361,
       "owner_key": "74N87QGYgZFve8soDdGEndCqjusVcVD2TFmfSVPoe8Db",
-      "balance": 471264,
+      "balance": 521950,
       "membership_expire_on": 1704310390,
       "next_cert_issuable_on": 1681278888,
       "certs_received": {
@@ -65821,7 +67125,7 @@
     "Makarius": {
       "index": 6920,
       "owner_key": "74a5AFt3yS52higjF9GvTYyTFyFR13RDQsi3BvB1eshB",
-      "balance": 605843,
+      "balance": 645529,
       "membership_expire_on": 1704426159,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -65849,7 +67153,7 @@
     "JClaudeFerrandi": {
       "index": 12867,
       "owner_key": "74nQe5DVMLs2qRfMxhY6FVyuhZLvbaXba2Lh5vsjPczU",
-      "balance": 237440,
+      "balance": 257126,
       "membership_expire_on": 1717629352,
       "next_cert_issuable_on": 1691245474,
       "certs_received": {
@@ -65864,8 +67168,8 @@
     "AudreyM": {
       "index": 10384,
       "owner_key": "74zziDHKn2Pyv754tv151RSFqzAAt188MjKYEuzw51cY",
-      "balance": 299559,
-      "membership_expire_on": 1695002291,
+      "balance": 317715,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Patmoy": 1731759450,
@@ -65878,40 +67182,34 @@
     "thieARD07": {
       "index": 5796,
       "owner_key": "754mCfsB1s9Yg7AX8Pj9ostF7jwHa5RdW7QeCF2Qx2MA",
-      "balance": 678535,
+      "balance": 718221,
       "membership_expire_on": 1721182138,
       "next_cert_issuable_on": 1660907306,
       "certs_received": {
-        "tiphaine": 1695772101,
-        "arfocine": 1695975848,
-        "Laurentld": 1695975848,
         "CelineThiebaut": 1706256119,
         "Anamaya": 1702657014,
         "evelyne2b": 1724960122,
-        "Reumy": 1695959763,
         "Salome": 1697347258,
         "phil3455": 1702659635,
         "AWINGA": 1752711161,
-        "Omasaya": 1750822626,
-        "Spartacus": 1696210286
+        "Omasaya": 1750822626
       }
     },
     "LiliMag": {
       "index": 5900,
       "owner_key": "75Jr8eEes1Bj43qxDENvU5sbAdR76uGr6sPCXbZJjicU",
-      "balance": 596155,
-      "membership_expire_on": 0,
+      "balance": 635841,
+      "membership_expire_on": 1725100038,
       "next_cert_issuable_on": 1677057342,
       "certs_received": {
-        "fournaise1": 1694568822,
+        "fournaise1": 1756619033,
         "Martine51": 1708556227,
-        "Eric": 1694559284,
         "CHLOE51": 1744339297,
         "EveC": 1697816796,
-        "sisyphe": 1694557548,
-        "ortie": 1694557548,
-        "krischamp": 1697862230,
-        "toutoune2189": 1694559284,
+        "ecureuildu10": 1756614758,
+        "krischamp": 1756615451,
+        "toutoune2189": 1756618832,
+        "Nounoursgt8946": 1756619033,
         "Nyttliv": 1739766198,
         "Atua": 1697781550
       }
@@ -65919,18 +67217,21 @@
     "Krystel": {
       "index": 2475,
       "owner_key": "75LEohKtv3h1p5FWdKiG1cF6pgknC8g3PpNress9kcEB",
-      "balance": 259267,
-      "membership_expire_on": 0,
+      "balance": 262501,
+      "membership_expire_on": 1727491302,
       "next_cert_issuable_on": 1635489389,
       "certs_received": {
-        "yosoycomoeloso": 1694924059,
-        "Marinalouette": 1694235072
+        "EveMahe": 1759540362,
+        "phil3455": 1759087430,
+        "PatriciaNoisette74": 1759102366,
+        "Perlette": 1759435820,
+        "Jacques74": 1759503843
       }
     },
     "Mariko": {
       "index": 4339,
       "owner_key": "75NtBgBqVzNnA311t1JsgP4J4rKz3J4QnnSsGR1Zy3yS",
-      "balance": 332526,
+      "balance": 372212,
       "membership_expire_on": 1704576654,
       "next_cert_issuable_on": 1690288905,
       "certs_received": {
@@ -65952,17 +67253,30 @@
     "Cecile": {
       "index": 2102,
       "owner_key": "75Yqxqn5D1fEaQtmK1KFLJiPwUZRS2Uvq4jHdTat5JKR",
-      "balance": 1254977,
-      "membership_expire_on": 1718850959,
+      "balance": 1361385,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1667307206,
       "certs_received": {
-        "AudreyHesseling": 1694065134,
         "Anne": 1754103032,
         "Gabriel": 1750614361,
         "Liam": 1750612075,
         "FREZA": 1754714512
       }
     },
+    "Ozia": {
+      "index": 13577,
+      "owner_key": "75aoHBBo1exF4ajdWNRx4Rtups4YKL6goVYNo3VFejAf",
+      "balance": 30166,
+      "membership_expire_on": 1725229329,
+      "next_cert_issuable_on": 1696070992,
+      "certs_received": {
+        "Gazaile": 1757615677,
+        "LaFeeClochette": 1757809089,
+        "St123": 1756947672,
+        "Picsou": 1757883602,
+        "Picatch": 1757016565
+      }
+    },
     "Axelb57": {
       "index": 7832,
       "owner_key": "75m7e3vYAW1TGr8wiVYzhNoZ3Yxn7J4K4NJWDZJ35Q3v",
@@ -65991,7 +67305,7 @@
     "aina": {
       "index": 11516,
       "owner_key": "75t3UuemCfag2bxvmbYMnhsYMnB8Wrxq25dB4nRpX3PN",
-      "balance": 337503,
+      "balance": 377189,
       "membership_expire_on": 1706298776,
       "next_cert_issuable_on": 1676196607,
       "certs_received": {
@@ -66002,6 +67316,22 @@
         "CARLO": 1738036156
       }
     },
+    "Sissi": {
+      "index": 13517,
+      "owner_key": "75t8SGZn9BDmbB2R3cbUYR8N75sPPTSmmJog2VGAm46C",
+      "balance": 171199,
+      "membership_expire_on": 1722355321,
+      "next_cert_issuable_on": 1694188243,
+      "certs_received": {
+        "FenderChristophe": 1757108841,
+        "Dracaufeu1990": 1756771806,
+        "Schnick": 1754963868,
+        "hazed": 1755302218,
+        "hypericum": 1756580114,
+        "BertrandCGO": 1754967081,
+        "LudovicMJC": 1755057160
+      }
+    },
     "yosoycomoeloso": {
       "index": 5025,
       "owner_key": "75uZudNXjnR6XdaeYN2m3PwJZ8nco7B9tgxwTUM5irEe",
@@ -66009,8 +67339,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1681458745,
       "certs_received": {
-        "Maelstrom": 1741115284,
-        "gerard94": 1695119760
+        "Maelstrom": 1741115284
       }
     },
     "Denisterre": {
@@ -66032,9 +67361,9 @@
     "Claire666": {
       "index": 3097,
       "owner_key": "761wHWRX2vZSLMkVs1bzrREjKzm9xKANBthseGRguBrZ",
-      "balance": 1344313,
+      "balance": 1380999,
       "membership_expire_on": 1711927227,
-      "next_cert_issuable_on": 1691225637,
+      "next_cert_issuable_on": 1695703571,
       "certs_received": {
         "Geronimo12": 1710117903,
         "Gaelle81": 1717347521,
@@ -66051,6 +67380,7 @@
         "Larz": 1717006083,
         "armoni": 1754607384,
         "DameYouli": 1744603655,
+        "Lilou12": 1758257427,
         "lecoyote": 1721017403,
         "Sylv12": 1747726298,
         "Matt11": 1719420499,
@@ -66072,7 +67402,7 @@
     "Patry": {
       "index": 8863,
       "owner_key": "76E2ZsUjxbMrqbYzvnECBzCJsXCEZT41CZeGeRokGEWU",
-      "balance": 211561,
+      "balance": 251247,
       "membership_expire_on": 1715130769,
       "next_cert_issuable_on": 1675770264,
       "certs_received": {
@@ -66092,7 +67422,7 @@
     "ValerieOrvain": {
       "index": 2891,
       "owner_key": "76H8GaoJTnJjJu8tPoA6dksgsRwBE5rrrjskkdwrn4cq",
-      "balance": 892642,
+      "balance": 932328,
       "membership_expire_on": 1717021118,
       "next_cert_issuable_on": 1684307900,
       "certs_received": {
@@ -66126,9 +67456,9 @@
     "Noisette": {
       "index": 12780,
       "owner_key": "76Tmq8zgME2PVyjWy8W6fjdpWtCurwKPnFTXLofuag6A",
-      "balance": 73756,
+      "balance": 113442,
       "membership_expire_on": 1716985165,
-      "next_cert_issuable_on": 1691027459,
+      "next_cert_issuable_on": 1692424337,
       "certs_received": {
         "Math007": 1748577006,
         "lucba": 1748563922,
@@ -66140,9 +67470,9 @@
     "AlphaCentauri": {
       "index": 8029,
       "owner_key": "76UT9gtgnHPDAT6hUXgmLoDDg2eTdhAL7bdj8kdWugaC",
-      "balance": 627430,
+      "balance": 578217,
       "membership_expire_on": 1710097371,
-      "next_cert_issuable_on": 1692015049,
+      "next_cert_issuable_on": 1696079744,
       "certs_received": {
         "RomainKornig": 1715275941,
         "Solesan": 1735466535,
@@ -66157,6 +67487,7 @@
         "misterkay": 1724916126,
         "lamouette": 1715275941,
         "Jujupapa": 1715398850,
+        "Mazurka": 1758728257,
         "ROVER5537": 1722021550,
         "Rezette": 1715408354,
         "B-4": 1733971316,
@@ -66171,7 +67502,7 @@
     "TeisaTriskelion": {
       "index": 7757,
       "owner_key": "76YsngimzAp8HxnhvHYmQ1fzwTCW9JDPDUU1eLswx3SB",
-      "balance": 372262,
+      "balance": 411948,
       "membership_expire_on": 1712696527,
       "next_cert_issuable_on": 1668696963,
       "certs_received": {
@@ -66189,7 +67520,7 @@
     "nat-uro86": {
       "index": 12132,
       "owner_key": "76czPPEN3P4yyQTG8woxxs7u5DJqnaH2Fj3jUJtrdDCo",
-      "balance": 49244,
+      "balance": 88930,
       "membership_expire_on": 1710851056,
       "next_cert_issuable_on": 1685597199,
       "certs_received": {
@@ -66214,7 +67545,7 @@
     "Assoben": {
       "index": 3219,
       "owner_key": "76iPZmdGjvYb7g1BvDD6xnf9pfwJWDfiX8fBG9bgECFr",
-      "balance": 1340393,
+      "balance": 1380079,
       "membership_expire_on": 1702854018,
       "next_cert_issuable_on": 1666871583,
       "certs_received": {
@@ -66222,6 +67553,7 @@
         "Pensey20": 1749797809,
         "Philippe26": 1702752643,
         "arfocine": 1732927202,
+        "Senou86": 1758859219,
         "Salome": 1731971767,
         "Deo2004": 1749797460,
         "Vinanssey15": 1731383405
@@ -66230,11 +67562,11 @@
     "Danielagn": {
       "index": 6414,
       "owner_key": "76iZiEaA4G4vobAz3FAZEBUTW8S9JT9hN3VHgHn9dUGV",
-      "balance": 84847,
-      "membership_expire_on": 1696815875,
+      "balance": 124433,
+      "membership_expire_on": 1726930840,
       "next_cert_issuable_on": 1682220951,
       "certs_received": {
-        "arbocenc": 1701245667,
+        "arbocenc": 1758983862,
         "sheveck": 1701473857,
         "lanuria": 1719906591,
         "xavidp": 1701419084,
@@ -66249,8 +67581,8 @@
     "Ralph": {
       "index": 9855,
       "owner_key": "76m8FXsAV4f8KAxd6rYJQwsaYQHrSeo2N2g8WD1mQf8t",
-      "balance": 346701,
-      "membership_expire_on": 1695244333,
+      "balance": 368061,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Camillefairy": 1727216240,
@@ -66265,7 +67597,7 @@
     "Marie-NoelleV81": {
       "index": 12522,
       "owner_key": "76sWjCfLa3ZeqyjkBeBKpEGD2uHGbY9QuSb8A8XBLvPe",
-      "balance": 169905,
+      "balance": 209591,
       "membership_expire_on": 1710178563,
       "next_cert_issuable_on": 1685777555,
       "certs_received": {
@@ -66281,7 +67613,7 @@
     "Aurine": {
       "index": 11109,
       "owner_key": "775VUz2G1a5y2WvifDvVnWSJQJMnw8Erqbx2JEkAfmW4",
-      "balance": 214068,
+      "balance": 253754,
       "membership_expire_on": 1701825021,
       "next_cert_issuable_on": 1691723688,
       "certs_received": {
@@ -66316,13 +67648,14 @@
     "CareIn": {
       "index": 12993,
       "owner_key": "77r8KzqpeDChX9kr7DMqCLZ188hitYtFBHb54iFV7L9a",
-      "balance": 117093,
+      "balance": 6779,
       "membership_expire_on": 1717935639,
-      "next_cert_issuable_on": 1688929885,
+      "next_cert_issuable_on": 1693703990,
       "certs_received": {
         "Chris08": 1750872402,
         "Phil7": 1750873368,
         "GuillaumeD": 1749700809,
+        "Marcus_974": 1756833907,
         "Caroshakti": 1749578048,
         "FrancoiseRangla974": 1750902248
       }
@@ -66346,7 +67679,7 @@
     "BillotIsabelle": {
       "index": 7850,
       "owner_key": "77t4vr7A9dfoLiSif6yxJzEjk5RCPtDYzJvz1kTNZwx6",
-      "balance": 520276,
+      "balance": 559962,
       "membership_expire_on": 1713206432,
       "next_cert_issuable_on": 1677586173,
       "certs_received": {
@@ -66363,9 +67696,9 @@
     "Sandra": {
       "index": 12385,
       "owner_key": "77vKVXKVd7H6L8iPpmiH72oE3W2CodX7WoViSvgqo39W",
-      "balance": 8596,
+      "balance": 15792,
       "membership_expire_on": 1713224521,
-      "next_cert_issuable_on": 1691579810,
+      "next_cert_issuable_on": 1694098266,
       "certs_received": {
         "FabienneM": 1744815835,
         "Nouchka1": 1744819569,
@@ -66377,7 +67710,7 @@
     "ninja": {
       "index": 9848,
       "owner_key": "788XmNuJ2ZPsfhEB5yDwWC2vJnHxv4xNFmvQBP5CEDeg",
-      "balance": 286760,
+      "balance": 313446,
       "membership_expire_on": 1722719752,
       "next_cert_issuable_on": 1692334063,
       "certs_received": {
@@ -66394,7 +67727,7 @@
     "MonChant": {
       "index": 9465,
       "owner_key": "78BSPSzUC95NVyo9CHeRVmPUShE2gWa3ek1zZ2nXG4MN",
-      "balance": 223973,
+      "balance": 263659,
       "membership_expire_on": 1720735066,
       "next_cert_issuable_on": 1665499864,
       "certs_received": {
@@ -66413,10 +67746,26 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "ChristianeClavelier": {
+      "index": 13539,
+      "owner_key": "78CL2o85c44SA9V8iHDxamk3oNzjBum3gpdP5fZhMpvW",
+      "balance": 42714,
+      "membership_expire_on": 1724764178,
+      "next_cert_issuable_on": 1696641804,
+      "certs_received": {
+        "JanineBoitel": 1757521763,
+        "Marianb": 1757780797,
+        "Aliyoyo": 1757385100,
+        "Angele73": 1756710620,
+        "AnneBoisjoli": 1757305520,
+        "YannYoga": 1757299930,
+        "Annie": 1757304151
+      }
+    },
     "lena17": {
       "index": 7058,
       "owner_key": "78LcpvePhrvtoEUYXE3bowkEnaF1ZBpMnkA376np6tcJ",
-      "balance": 479658,
+      "balance": 519344,
       "membership_expire_on": 1716937390,
       "next_cert_issuable_on": 1660749044,
       "certs_received": {
@@ -66449,7 +67798,7 @@
     "fatimaespoir": {
       "index": 1334,
       "owner_key": "78WBHigncLzdpDdQozLtmo9wWop9ARDZL2dsFsRFnueY",
-      "balance": 267477,
+      "balance": 307164,
       "membership_expire_on": 1713015503,
       "next_cert_issuable_on": 1676632054,
       "certs_received": {
@@ -66465,9 +67814,9 @@
     "virelangue": {
       "index": 8409,
       "owner_key": "78XHyUQza9S2MwNQmGMpZE2398mTd4zsMoGVeodKyNWh",
-      "balance": 487034,
+      "balance": 523520,
       "membership_expire_on": 1713912017,
-      "next_cert_issuable_on": 1682426417,
+      "next_cert_issuable_on": 1694236161,
       "certs_received": {
         "jeje43": 1722284820,
         "Mariefleur": 1722045917,
@@ -66505,7 +67854,7 @@
     "ZETTE": {
       "index": 6041,
       "owner_key": "78ffMtNHUQAdG3iV1a2xbsqxwvAKWRYajaXNdzcaAUmN",
-      "balance": 307462,
+      "balance": 347148,
       "membership_expire_on": 1722541576,
       "next_cert_issuable_on": 1668914319,
       "certs_received": {
@@ -66521,17 +67870,19 @@
     "Corine": {
       "index": 6762,
       "owner_key": "78iKYpug8JXRCwaeE7GK9gZLB8BqJkdCKMh1FJugBT5x",
-      "balance": 824040,
+      "balance": 1227518,
       "membership_expire_on": 1702728544,
-      "next_cert_issuable_on": 1693536507,
+      "next_cert_issuable_on": 1694850078,
       "certs_received": {
         "Cristal38": 1706338222,
         "NAMA-STE": 1706284894,
         "Eve38": 1716001405,
+        "Gabrimiel": 1756576131,
         "EtK": 1735855965,
         "ClauTie26": 1756227565,
         "thierry38": 1706137093,
         "RoryKiwi": 1714229366,
+        "Alisce": 1756933014,
         "Maudinettepouetpouet": 1706234286,
         "Ninon914": 1706234015
       }
@@ -66539,14 +67890,14 @@
     "simonelion": {
       "index": 54,
       "owner_key": "78jhpprYkMNF6i5kQPXfkAVBpd2aqcpieNsXTSW4c21f",
-      "balance": 382072,
+      "balance": 394622,
       "membership_expire_on": 1714055896,
-      "next_cert_issuable_on": 1689338215,
+      "next_cert_issuable_on": 1695876789,
       "certs_received": {
         "StephanieN": 1742178099,
+        "PatrickGendron": 1758831913,
         "FarcyAdeline": 1730409165,
         "EricPetit": 1710312109,
-        "theresecaillere": 1696545551,
         "LuciaKorosiova": 1730457751,
         "GaryGrandin": 1730350187,
         "LENOU61": 1741142090,
@@ -66572,7 +67923,7 @@
     "Christianmarino": {
       "index": 12108,
       "owner_key": "78mfRc9cMKbJEr1Y43xrAessqUQmoq1yHYUtrhziTBW4",
-      "balance": 172880,
+      "balance": 212566,
       "membership_expire_on": 1711217720,
       "next_cert_issuable_on": 1680699275,
       "certs_received": {
@@ -66594,7 +67945,7 @@
     "Clarisse": {
       "index": 7828,
       "owner_key": "78sEBm9ELxqPhULkMxV3M4D3QpUCQWorxD24eco47cV4",
-      "balance": 522878,
+      "balance": 562564,
       "membership_expire_on": 1712492162,
       "next_cert_issuable_on": 1677811005,
       "certs_received": {
@@ -66616,7 +67967,7 @@
     "Catsat": {
       "index": 11214,
       "owner_key": "78yK2yMRyTnbYtKPZ1dQkDWAWwgcsABtU3hGzJKVv28j",
-      "balance": 240037,
+      "balance": 279723,
       "membership_expire_on": 1705000738,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -66632,9 +67983,9 @@
     "AmandineB": {
       "index": 8518,
       "owner_key": "791ykgMJUYoWX5EjQeCyA54HU8WLS8iwSbDkAGVEEm34",
-      "balance": 463406,
+      "balance": 503092,
       "membership_expire_on": 1716154398,
-      "next_cert_issuable_on": 1684668798,
+      "next_cert_issuable_on": 1694662375,
       "certs_received": {
         "CiaoBellaCarina": 1718511601,
         "Cavalier07": 1718520342,
@@ -66663,7 +68014,7 @@
     "Melo": {
       "index": 3438,
       "owner_key": "79FhM3uNYondwiPymJuZVxE8oQc7Qe4TBA6UdWFitZJw",
-      "balance": 824988,
+      "balance": 864674,
       "membership_expire_on": 1708562033,
       "next_cert_issuable_on": 1685581401,
       "certs_received": {
@@ -66689,7 +68040,7 @@
     "CharlesAbecassis": {
       "index": 711,
       "owner_key": "79KKjuRZ4NiVySpxma7RyT4hMeYbFNKZNChPEK9sQEJJ",
-      "balance": 1930149,
+      "balance": 1969835,
       "membership_expire_on": 1699737036,
       "next_cert_issuable_on": 1668302108,
       "certs_received": {
@@ -66698,18 +68049,14 @@
         "Pascal": 1703651084,
         "LocoFCS": 1697188592,
         "GerardSiegle": 1700213525,
-        "DominiqueHebert": 1696632105,
         "chcesetti": 1751845215,
-        "adepetigny": 1696907411,
-        "JulienLecaille": 1696531825,
-        "NicolasBriet": 1696575676,
-        "Sebeq33": 1696536586
+        "adepetigny": 1696907411
       }
     },
     "Kativanna": {
       "index": 997,
       "owner_key": "79QRFgattgstc6dfnEcC4u9ZDmLJA3mqh3RGkBZ2V79n",
-      "balance": 1620130,
+      "balance": 1649816,
       "membership_expire_on": 1702230907,
       "next_cert_issuable_on": 1677833913,
       "certs_received": {
@@ -66717,14 +68064,14 @@
         "Clairette31": 1709831131,
         "Nini12": 1720978908,
         "Toma": 1710835312,
-        "CatherineMaire": 1697833296,
+        "CatherineMaire": 1758420415,
         "Beluganne": 1753180474
       }
     },
     "Magenta": {
       "index": 8731,
       "owner_key": "79TF9BBQCFs61QTm7hLaQSJLVVpFn7xLeMNEZUNXNukX",
-      "balance": 142801,
+      "balance": 182487,
       "membership_expire_on": 1720954185,
       "next_cert_issuable_on": 1669996373,
       "certs_received": {
@@ -66742,14 +68089,15 @@
     "MariPotter": {
       "index": 22,
       "owner_key": "79XB4UPxMJsURb2PbiKQDAEUH6fV557ZuS6Nin2pp7ji",
-      "balance": 648390,
+      "balance": 569660,
       "membership_expire_on": 1718198129,
-      "next_cert_issuable_on": 1691855256,
+      "next_cert_issuable_on": 1695039960,
       "certs_received": {
         "GenevLeb": 1741317132,
         "PhilippeGua53": 1709961829,
         "DBuxerolle": 1747190788,
         "MHaM": 1745648670,
+        "LAURENCEBZ": 1759271767,
         "VirginieGautier": 1714347767,
         "EricPetit": 1739472083,
         "paidge": 1718014680,
@@ -66760,7 +68108,7 @@
         "MarieLaureGruauGeslot": 1702520875,
         "Cilla": 1740533545,
         "gerardchavanon": 1739854948,
-        "TheodoreMACRAIGNE": 1697155010,
+        "TheodoreMACRAIGNE": 1758817638,
         "MichelLeMer": 1726384405,
         "SaverioStragapede": 1736110403,
         "Cha": 1719503386,
@@ -66770,6 +68118,8 @@
         "AnneAmbles": 1716588578,
         "Lydiabloch": 1747725624,
         "RoselyneBinesse": 1700467799,
+        "BielinskiGabrielle": 1758587691,
+        "fabiennegodfraind": 1758492194,
         "RIALLANDSANDRINE": 1710477898,
         "Chrissbrl": 1743186433,
         "MartineBlinGarry": 1701380722,
@@ -66790,7 +68140,6 @@
         "MicheleChaplain": 1753247904,
         "Beluganne": 1703007683,
         "Freco": 1698172021,
-        "katou": 1696365842,
         "FernDeFougeres": 1742169547,
         "BernadetteLerat": 1701169846
       }
@@ -66798,7 +68147,7 @@
     "Urritza": {
       "index": 12290,
       "owner_key": "79aFKy7xx2SFC9YUpB8gwnjYHQwgbfhvb1rSFAMfpYRS",
-      "balance": 451512,
+      "balance": 491198,
       "membership_expire_on": 1712624845,
       "next_cert_issuable_on": 1685544484,
       "certs_received": {
@@ -66816,7 +68165,7 @@
     "Yron": {
       "index": 11720,
       "owner_key": "79coYiSa2zjBUXyW9ZCy6pVdi33Fkfd1hjwn1zbw8i9Q",
-      "balance": 199741,
+      "balance": 221427,
       "membership_expire_on": 1708382708,
       "next_cert_issuable_on": 1679977509,
       "certs_received": {
@@ -66841,7 +68190,7 @@
     "Sylharmonie": {
       "index": 6704,
       "owner_key": "79gLTdbs6PCBaQVbarqfYgNW2UP2rjjtMs2tyKHLG8kF",
-      "balance": 148409,
+      "balance": 115995,
       "membership_expire_on": 1721127090,
       "next_cert_issuable_on": 1692672939,
       "certs_received": {
@@ -66867,6 +68216,7 @@
         "Totoro": 1705454455,
         "Eric-Frodon86": 1740528748,
         "Eleonore": 1719438021,
+        "MikaNanda": 1756617877,
         "kikilulu": 1711182334,
         "Bikoucel86": 1755727520,
         "Emilioleheros": 1722036977,
@@ -66886,9 +68236,9 @@
     "GuillaumeL88": {
       "index": 10047,
       "owner_key": "79sv6hDMJHLZPixXSC3k2pg9QWVHrkasmnyw7bEomQq6",
-      "balance": 294470,
+      "balance": 334156,
       "membership_expire_on": 1697928025,
-      "next_cert_issuable_on": 1686561195,
+      "next_cert_issuable_on": 1693576307,
       "certs_received": {
         "valdedrome26": 1729611231,
         "Florencefleur": 1734220108,
@@ -66896,14 +68246,15 @@
         "Evelpidesa": 1729621290,
         "Did-yeah": 1733461581,
         "OrAnge": 1729584491,
-        "FredericStephan": 1729614516
+        "FredericStephan": 1729614516,
+        "nicolascartiaux": 1759463209
       }
     },
     "JacoVdh": {
       "index": 9849,
       "owner_key": "79unsdJxqUK5vwpLGS9vGH5ntiStU9sVH11Ssp1ZSLSq",
-      "balance": 350501,
-      "membership_expire_on": 1696505647,
+      "balance": 388031,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678424802,
       "certs_received": {
         "Acd64": 1729439100,
@@ -66919,7 +68270,7 @@
     "NikiFe": {
       "index": 9017,
       "owner_key": "79zfmNX8dERECVqoKJX4BpZH92s2MpNvzDBkpmTXUSVm",
-      "balance": 335042,
+      "balance": 374728,
       "membership_expire_on": 1724343596,
       "next_cert_issuable_on": 1664886953,
       "certs_received": {
@@ -66942,7 +68293,7 @@
     "gerard6907": {
       "index": 8305,
       "owner_key": "7AM4TJNVXuzfKZ221isPpHd6139WaASNK7veaNk1hwGg",
-      "balance": 338430,
+      "balance": 378116,
       "membership_expire_on": 1724450716,
       "next_cert_issuable_on": 1662547647,
       "certs_received": {
@@ -66957,7 +68308,7 @@
     "Maxoud": {
       "index": 338,
       "owner_key": "7AQzQb475tEzCkSLKD4HffeQbckizJWFvubhYA2rfwgt",
-      "balance": 639288,
+      "balance": 678974,
       "membership_expire_on": 1719348320,
       "next_cert_issuable_on": 1691677235,
       "certs_received": {
@@ -66973,7 +68324,7 @@
     "Lolotte": {
       "index": 12572,
       "owner_key": "7ARf1FuMQLSoRFu4m9ZATY82WzcHyQzitof6GVY5TFCo",
-      "balance": 124488,
+      "balance": 164174,
       "membership_expire_on": 1714856994,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -66997,24 +68348,19 @@
     "Lavoixdesquatrevents": {
       "index": 5732,
       "owner_key": "7AV5jSzomKgFW3EWDBBYeasuLB4Uycvz94EWxC9wzx9M",
-      "balance": 1877483,
+      "balance": 1941863,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1663137856,
       "certs_received": {
         "SandrineMala": 1717148357,
         "Bcabon": 1753994809,
-        "Aude49": 1694816226,
         "PhilippeGua53": 1748847655,
         "YvesGouverneur": 1741113244,
         "Shankarina": 1717621363,
         "FrancoisRocher": 1710100290,
         "AnneAmbles": 1700249978,
         "Marcolariegeois": 1714871533,
-        "PatrickGilles": 1695091448,
         "Shims35": 1704056720,
-        "sylviepl": 1695057929,
-        "AbelGilles": 1694814971,
-        "Beluganne": 1694834909,
         "FernDeFougeres": 1720666985
       }
     },
@@ -67035,7 +68381,7 @@
     "ThomasTango": {
       "index": 7038,
       "owner_key": "7AYG4rKGNc6iGNgh3WRcfmFqvQmZzveAfHFuxkpJgVHS",
-      "balance": 653339,
+      "balance": 693025,
       "membership_expire_on": 1703020069,
       "next_cert_issuable_on": 1688379394,
       "certs_received": {
@@ -67055,7 +68401,7 @@
     "Aurelie_Leonardi": {
       "index": 9409,
       "owner_key": "7Ac6dVKZNZkom3Ne2ur2dJ1Wm46PnkJMcCoGXbYgmy43",
-      "balance": 650584,
+      "balance": 690270,
       "membership_expire_on": 1721929048,
       "next_cert_issuable_on": 1687066396,
       "certs_received": {
@@ -67090,13 +68436,14 @@
     "fredux": {
       "index": 1261,
       "owner_key": "7AfAbd6igxBM11P1RtMCLtQiAhEAXzofx5h24NK2LMfh",
-      "balance": 1368339,
+      "balance": 1373429,
       "membership_expire_on": 1702123718,
       "next_cert_issuable_on": 1670638596,
       "certs_received": {
         "takleung": 1723859792,
         "tierce": 1704704763,
         "Dionysos": 1699008206,
+        "GeneBe": 1758692214,
         "Eve": 1702067925,
         "AnemoneSyl": 1722433875,
         "Olm-e": 1706995333
@@ -67113,9 +68460,9 @@
     "Pepper": {
       "index": 4224,
       "owner_key": "7AhwSt2RMQrGNiu2qNDfK4GxA74cYTCfFjgXwVfkhXvb",
-      "balance": 943748,
+      "balance": 983434,
       "membership_expire_on": 1721839765,
-      "next_cert_issuable_on": 1665210689,
+      "next_cert_issuable_on": 1696674619,
       "certs_received": {
         "FLORESTRELA": 1727819292,
         "CECILE29": 1703790590,
@@ -67131,15 +68478,13 @@
       "owner_key": "7Anvd9HdobNE5AKaLN4UfmpYBdR6E2WBrPt2vs5XPYi9",
       "balance": 434740,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1630464564,
-      "certs_received": {
-        "Llorens": 1693944203
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "Syl971": {
       "index": 12063,
       "owner_key": "7AtmBgtQgiRQjvxUaL3PbKAfrRqvBFMeifUDiCYYKJG9",
-      "balance": 188743,
+      "balance": 228429,
       "membership_expire_on": 1710380579,
       "next_cert_issuable_on": 1688319701,
       "certs_received": {
@@ -67153,16 +68498,18 @@
     "TristanG1": {
       "index": 3070,
       "owner_key": "7Ay2uSL1zbtVBTxQMu27qMi6JWvWqFjfcCQMVKCVC7as",
-      "balance": 134276,
+      "balance": 166962,
       "membership_expire_on": 1713102748,
-      "next_cert_issuable_on": 1693365642,
+      "next_cert_issuable_on": 1696400374,
       "certs_received": {
         "Renzo": 1747233158,
         "Vee": 1707513493,
         "HelloSunshine": 1718487053,
         "ClaireAzur": 1737851420,
         "rosette24": 1756272780,
+        "LaGoudale": 1758739751,
         "valdedrome26": 1708115958,
+        "Ananas21": 1759173377,
         "Gib26": 1718943796,
         "EdithChevreuil": 1726558960,
         "MarlenedeManas": 1740250417,
@@ -67171,6 +68518,7 @@
         "Asfalis": 1752886084,
         "Aneuf": 1715012890,
         "Ganou": 1752898494,
+        "Christine1892": 1758068799,
         "LeonV": 1713774198,
         "LaMarie12": 1714701350,
         "AnnParisot": 1755928879,
@@ -67191,16 +68539,14 @@
         "will46": 1697492779,
         "dineflore": 1697492429,
         "malou": 1697492779,
-        "FredTahiti": 1694066817,
         "azylis": 1697492779,
-        "loulou46": 1697492779,
-        "SyoulAnuanua": 1694066817
+        "loulou46": 1697492779
       }
     },
     "LoicVH": {
       "index": 4699,
       "owner_key": "7BBup5xBfzf2JYAAJL8tiFFHki2Aw9Cmo31R3Nz1yhQn",
-      "balance": 958591,
+      "balance": 998277,
       "membership_expire_on": 1706997652,
       "next_cert_issuable_on": 1675512052,
       "certs_received": {
@@ -67223,7 +68569,7 @@
     "Noa": {
       "index": 6955,
       "owner_key": "7BLfVPrhEkckKP4EmEWR381rrkLJy2Q84kKSiGfGygoc",
-      "balance": 546675,
+      "balance": 586361,
       "membership_expire_on": 1707054061,
       "next_cert_issuable_on": 1671349003,
       "certs_received": {
@@ -67271,7 +68617,7 @@
     "GiuliKai": {
       "index": 10860,
       "owner_key": "7Bjr6kwtyyxkvbxGhHLeJATGEnZmKiYBfHQLdwCeFhYk",
-      "balance": 239248,
+      "balance": 278934,
       "membership_expire_on": 1699311630,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -67285,7 +68631,7 @@
     "LilyroseMarcherat": {
       "index": 4332,
       "owner_key": "7BkqGMka2EYsqGy3hgXfiSaJCcjr1jSpvpvzgBQ4WAqF",
-      "balance": 1035738,
+      "balance": 1075424,
       "membership_expire_on": 1697826761,
       "next_cert_issuable_on": 1679100537,
       "certs_received": {
@@ -67301,14 +68647,14 @@
     "Helene-petiteriviere": {
       "index": 5864,
       "owner_key": "7BnrRBSNRHHtvr7ZsxKY7XQMyQafvxRQbjRh4xox2ymZ",
-      "balance": 1675836,
+      "balance": 1729422,
       "membership_expire_on": 1715339472,
-      "next_cert_issuable_on": 1692372535,
+      "next_cert_issuable_on": 1696652188,
       "certs_received": {
         "nashira": 1712159204,
         "Laurence": 1697609764,
         "licorne": 1727235716,
-        "CaroleBroutin": 1696212298,
+        "CaroleBroutin": 1759363800,
         "Lisa34": 1726290932,
         "DidierDavid": 1709844781,
         "neige": 1732917372,
@@ -67340,7 +68686,6 @@
         "geneclo34": 1722446851,
         "SOLEIA": 1732682871,
         "DidierRosier": 1716440116,
-        "ADodson": 1696377838,
         "Iguana": 1740003192,
         "Trayx": 1719264530,
         "Paola": 1718847750,
@@ -67353,12 +68698,12 @@
         "Dodjay": 1697590282,
         "tradit": 1745774061,
         "jon": 1724102698,
-        "samdoui": 1696638679,
         "Philae": 1733964869,
         "PascalGuillemain": 1755051762,
         "deuxmains": 1710297182,
         "Olivier34500": 1706218775,
         "Christophe-C": 1702619191,
+        "Joy34": 1756108650,
         "schmollita": 1751237137,
         "mat14": 1718747839,
         "Palo": 1747789594,
@@ -67376,7 +68721,7 @@
       "index": 9461,
       "owner_key": "7Bpeq3nYe6MD2FiRqvFkP4xt9KaZFejFjkCTRhsU5WY2",
       "balance": 384342,
-      "membership_expire_on": 1693532629,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1664812671,
       "certs_received": {
         "christiane6907": 1725590847,
@@ -67393,18 +68738,17 @@
       "owner_key": "7BqFCTEgacqu6jXDWoj2nCCZaSu8SLkj4D72r4ezTsrD",
       "balance": 0,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632736725,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "lune": {
       "index": 4411,
       "owner_key": "7ByZg5kWhMpLGsjAXWzfkALuqEpm6odwGSnsB9GRzmyo",
-      "balance": 657812,
+      "balance": 697498,
       "membership_expire_on": 1704665160,
       "next_cert_issuable_on": 1686151590,
       "certs_received": {
         "maorelie": 1728869855,
-        "JBL": 1694406109,
         "KumaNinja": 1728869855,
         "Hikari": 1728870610,
         "Isalanzarote": 1728675491,
@@ -67422,19 +68766,16 @@
     "Cath38": {
       "index": 5761,
       "owner_key": "7C2Z8LEyWV5XbYnFf2GCZup9gqt6xtHdQug3EVWGc4x6",
-      "balance": 428949,
+      "balance": 413525,
       "membership_expire_on": 1717445819,
-      "next_cert_issuable_on": 1691816647,
+      "next_cert_issuable_on": 1696498174,
       "certs_received": {
-        "ElieLombard": 1695754207,
         "NaneDeProvence": 1750801013,
-        "AtmaRajpreet": 1695928815,
         "haddock": 1730850217,
         "Maminou13": 1739777101,
         "Pizzawallas": 1754452606,
         "mlmlulu73": 1755015127,
         "Papillote": 1739777327,
-        "AtmaRajprem": 1695922230,
         "SteffiH": 1743181105,
         "Sylvain": 1721168328,
         "Isalanzarote": 1736929534
@@ -67443,7 +68784,7 @@
     "DominiqueHebert": {
       "index": 736,
       "owner_key": "7C32hVetfxoGRyvqDP7ypCkdvE5zsWeBeUS76sVfCB6y",
-      "balance": 1308853,
+      "balance": 1348539,
       "membership_expire_on": 1704126549,
       "next_cert_issuable_on": 1680701794,
       "certs_received": {
@@ -67464,7 +68805,7 @@
     "Delcast": {
       "index": 6371,
       "owner_key": "7C3Y1F9mW7Xw1Jv4qKog6LWT65BRi2FeUr76r1yL3k54",
-      "balance": 661279,
+      "balance": 700965,
       "membership_expire_on": 1697404420,
       "next_cert_issuable_on": 1665918820,
       "certs_received": {
@@ -67487,8 +68828,8 @@
     "RuVen": {
       "index": 10306,
       "owner_key": "7C3ux3onFEBaSHFcBBYz9pbHtDJcZfP3LxK2FiA2jw8o",
-      "balance": 319451,
-      "membership_expire_on": 1699804177,
+      "balance": 359137,
+      "membership_expire_on": 1727638369,
       "next_cert_issuable_on": 1680398142,
       "certs_received": {
         "Pazuca": 1731363467,
@@ -67503,7 +68844,7 @@
     "Lieslibre": {
       "index": 12448,
       "owner_key": "7C5yhiptianxzoWQduPLaXoKEFK4CSsHDkrKrEbd5cxC",
-      "balance": 166904,
+      "balance": 206590,
       "membership_expire_on": 1713995009,
       "next_cert_issuable_on": 1687853388,
       "certs_received": {
@@ -67518,16 +68859,13 @@
     "LI21": {
       "index": 5746,
       "owner_key": "7C7pUniVf8rYmif6kXX66vtHNzpXw4TXzWTyQ8xvpQdj",
-      "balance": 96746,
+      "balance": 73132,
       "membership_expire_on": 1716771634,
       "next_cert_issuable_on": 1681173793,
       "certs_received": {
-        "kapis": 1694682710,
         "Cordeliaze": 1755281840,
-        "mluque71": 1694814279,
         "MaudD": 1726290932,
         "GUL40_Fr1": 1719690839,
-        "carmela": 1694683896,
         "Vichara": 1717626669,
         "regy": 1755937910,
         "Wynfyd": 1735354517,
@@ -67535,10 +68873,8 @@
         "GUL40_L21": 1714518966,
         "Lupunita": 1720856218,
         "lanawin": 1698634994,
-        "LaCasaGran": 1694370836,
-        "sheveck": 1694684203,
+        "sheveck": 1757795292,
         "Estitz": 1716627705,
-        "timetale": 1694726080,
         "Josepeuta": 1712739135,
         "Estherm": 1719648117,
         "Oceano": 1717378882,
@@ -67546,8 +68882,6 @@
         "aitorjs": 1717976915,
         "Monicakoala": 1715611928,
         "Moren": 1712621871,
-        "xavidp": 1694708149,
-        "Dixebral": 1694678419,
         "Poto": 1715071660,
         "maga65": 1703194373,
         "MARAL": 1706319148,
@@ -67563,9 +68897,7 @@
         "tereseta": 1721189550,
         "Koldo": 1698184759,
         "AneSolEguzki": 1728107162,
-        "SurfinMaya": 1694738602,
         "Isalanzarote": 1722090414,
-        "urkobein": 1694851611,
         "Marijose": 1730140934,
         "Pedroxistau": 1709158074,
         "fania": 1697523556
@@ -67582,9 +68914,9 @@
     "maximeparisot07": {
       "index": 12972,
       "owner_key": "7CBE3QiAh9xehkUUkNhCS2ApAFhJxjk7FSPDRTQqNebB",
-      "balance": 58274,
+      "balance": 68110,
       "membership_expire_on": 1719183371,
-      "next_cert_issuable_on": 1690087570,
+      "next_cert_issuable_on": 1695183543,
       "certs_received": {
         "YannickRoussel": 1750631759,
         "FIFIMERCIER": 1754564158,
@@ -67600,13 +68932,15 @@
     "YagoMago": {
       "index": 10786,
       "owner_key": "7CBoqvQNU1rTNknDAkynsY6wKQwLdf7SFA1mNq5mKiT",
-      "balance": 142219,
-      "membership_expire_on": 1701645486,
-      "next_cert_issuable_on": 1689075953,
+      "balance": 117445,
+      "membership_expire_on": 1728260651,
+      "next_cert_issuable_on": 1696092557,
       "certs_received": {
+        "Joseluisrenacer": 1759325544,
         "MaiteTudela": 1733812221,
         "SantiTrinquete": 1733776181,
         "begobienestar": 1733811058,
+        "Meg": 1757700413,
         "Elenarepostera": 1733771666,
         "jilguero": 1736662803,
         "Abejitajaimita": 1746761540,
@@ -67624,7 +68958,7 @@
     "stephaniechaillan": {
       "index": 6862,
       "owner_key": "7CEBxcVfEKruFEy1p3y9kmMjwAtMcoJF83AtFwh6VNHm",
-      "balance": 598718,
+      "balance": 638404,
       "membership_expire_on": 1706448170,
       "next_cert_issuable_on": 1652084071,
       "certs_received": {
@@ -67662,7 +68996,7 @@
     "SamSan": {
       "index": 9041,
       "owner_key": "7CVFExyt7XDkwwbVuvYBMwqNhdWrkAGTd79dRu1bA4z7",
-      "balance": 423584,
+      "balance": 463270,
       "membership_expire_on": 1719756641,
       "next_cert_issuable_on": 1689294030,
       "certs_received": {
@@ -67676,7 +69010,7 @@
     "MATRIX67": {
       "index": 7574,
       "owner_key": "7CY7QL1oAr7D9Xj1Vb5FSbce9mc1Q4wFtviJXA5BsK2t",
-      "balance": 517417,
+      "balance": 557103,
       "membership_expire_on": 1709582860,
       "next_cert_issuable_on": 1679641627,
       "certs_received": {
@@ -67695,7 +69029,7 @@
     "Claudirland": {
       "index": 6653,
       "owner_key": "7CYRaJwwU2iM7LvqA5C9cxMFHCWCLbECYyFpSdRrgNZm",
-      "balance": 551113,
+      "balance": 587799,
       "membership_expire_on": 1704243408,
       "next_cert_issuable_on": 1688652745,
       "certs_received": {
@@ -67709,15 +69043,16 @@
         "Olacelou": 1705489365,
         "FatimaMIEL51": 1703307006,
         "hypericum": 1704852550,
-        "margarethfgtleb": 1705471111
+        "margarethfgtleb": 1705471111,
+        "Martienne": 1756794314
       }
     },
     "Ingriddevendee": {
       "index": 4387,
       "owner_key": "7CYubdUUXVBE9fLdxcCzE78pcKemDSjPnrZUeLhuL1Ep",
-      "balance": 386675,
+      "balance": 1082690,
       "membership_expire_on": 1715106039,
-      "next_cert_issuable_on": 1690352404,
+      "next_cert_issuable_on": 1695077299,
       "certs_received": {
         "seb": 1697479309,
         "GUL40_Fr1": 1713745716,
@@ -67735,16 +69070,17 @@
         "PascaleRoncoroni": 1716263092,
         "Fred": 1754254992,
         "MessagereDeLumiere": 1719004504,
-        "DjaneDiveraine": 1698308366,
+        "DjaneDiveraine": 1758241847,
         "ThibaudLibre": 1716270144,
         "Maaltir": 1735444421,
         "SyoulAnuanua": 1735511965,
         "MatthieuLatapy": 1739994089,
         "juwolf": 1731361438,
+        "CoralieM": 1757960514,
         "Milinette16": 1701470071,
         "Domyrhapsody": 1722027612,
         "MicheleChaplain": 1741891995,
-        "CelineDeNosCampagnes": 1698184194,
+        "CelineDeNosCampagnes": 1759337053,
         "Aramis": 1729554331,
         "Yvv": 1727764871
       }
@@ -67760,7 +69096,7 @@
     "FloGm": {
       "index": 6176,
       "owner_key": "7Cd4bhr1yFdmn1Vq2ofzmjJqBcmAB2ucWQ5XTbMEHSCr",
-      "balance": 679319,
+      "balance": 719005,
       "membership_expire_on": 1698433268,
       "next_cert_issuable_on": 1666947668,
       "certs_received": {
@@ -67787,11 +69123,11 @@
     "XianeC": {
       "index": 3218,
       "owner_key": "7CkDcPMoijwCyXZTUG6i8PJz6XDnpy7dp1HjQEjWQDbn",
-      "balance": 62160,
+      "balance": 101846,
       "membership_expire_on": 1720895606,
       "next_cert_issuable_on": 1689903957,
       "certs_received": {
-        "SophSav": 1697874605,
+        "SophSav": 1757627140,
         "Nicolas": 1699250112,
         "Maryc": 1727405950,
         "FlorenceG": 1725517632,
@@ -67817,7 +69153,7 @@
     "Melodie": {
       "index": 13132,
       "owner_key": "7CwMF6nMhWu2rkekWNPtVEkYnjaoEUUP4qJ6eGM77Naw",
-      "balance": 56788,
+      "balance": 96474,
       "membership_expire_on": 1718805410,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -67831,7 +69167,7 @@
     "Momosapiens": {
       "index": 10075,
       "owner_key": "7CyGM4k77dwRD6NVUJNoDNXic63StivgmKWDRJetNoay",
-      "balance": 147757,
+      "balance": 187443,
       "membership_expire_on": 1724455458,
       "next_cert_issuable_on": 1692969858,
       "certs_received": {
@@ -67851,14 +69187,14 @@
     "ANTISPASMODIC": {
       "index": 5377,
       "owner_key": "7CyXTmGwtnRezCYUmaX5LvT8nPJdxxqh5o38xCvMdHpk",
-      "balance": 455737,
+      "balance": 495423,
       "membership_expire_on": 1709664040,
       "next_cert_issuable_on": 1678804022,
       "certs_received": {
         "Bioguigui": 1741990368,
         "IsaM": 1705870145,
-        "veronaturo73": 1693687599,
         "Tell": 1713927706,
+        "Bap": 1758359954,
         "LibertyFran": 1707878539,
         "Ninou01": 1700017787,
         "Barbapapa": 1731001879
@@ -67867,7 +69203,7 @@
     "Carmenfromtheworld": {
       "index": 6916,
       "owner_key": "7CyYMAHMoWTeyNVVFHfVrWrErhWLBvf5jMf1e48GspQM",
-      "balance": 594489,
+      "balance": 634175,
       "membership_expire_on": 1706791999,
       "next_cert_issuable_on": 1662629919,
       "certs_received": {
@@ -67891,7 +69227,7 @@
     "Tango1": {
       "index": 12477,
       "owner_key": "7CzXNigJAQ7FRcK4sYsJH6pEXGtSicBmjgtXUX3uwbDE",
-      "balance": 140300,
+      "balance": 179986,
       "membership_expire_on": 1711920987,
       "next_cert_issuable_on": 1691585747,
       "certs_received": {
@@ -67907,7 +69243,7 @@
     "Cissou": {
       "index": 10248,
       "owner_key": "7D4VcgUgmMMXs56rGSq56CMPMrAYANYYbhceizYuomhK",
-      "balance": 367008,
+      "balance": 406694,
       "membership_expire_on": 1698963737,
       "next_cert_issuable_on": 1689506478,
       "certs_received": {
@@ -67924,7 +69260,7 @@
     "Bobbie": {
       "index": 7368,
       "owner_key": "7D88EWMsmohSahw4duAqbcBKntmU3QryiG2DusTHTPoK",
-      "balance": 338963,
+      "balance": 371649,
       "membership_expire_on": 1709119934,
       "next_cert_issuable_on": 1689861459,
       "certs_received": {
@@ -67936,6 +69272,7 @@
         "Tifenn": 1710359727,
         "Laurette21": 1729751331,
         "AgneSb": 1733980079,
+        "RadissonMarie": 1757727753,
         "maBeltjens": 1739872903,
         "MutatisMutandis": 1709415181
       }
@@ -67943,8 +69280,8 @@
     "Valerie84": {
       "index": 10073,
       "owner_key": "7D8beuZCMuxQVrvXp1YNyYN1QYqcuPk24HbW1jkiCkXs",
-      "balance": 340816,
-      "membership_expire_on": 1696284012,
+      "balance": 375112,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1684591511,
       "certs_received": {
         "chris07": 1729797314,
@@ -67961,9 +69298,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Chantal": 1695529935,
-        "Riri": 1695411206,
-        "Ju73": 1695354228,
         "Pizzawallas": 1698142627,
         "Anamaya": 1697344049
       }
@@ -67971,9 +69305,9 @@
     "EscuelaTephira": {
       "index": 13309,
       "owner_key": "7DAXAEHgyrRe183UTFL4yG1purwkypbd9R1wKR2Rqt92",
-      "balance": 128936,
+      "balance": 138822,
       "membership_expire_on": 1722698560,
-      "next_cert_issuable_on": 1693135585,
+      "next_cert_issuable_on": 1694053917,
       "certs_received": {
         "IldaraMaioralta": 1754262800,
         "PetraFrollais": 1754268247,
@@ -67998,7 +69332,7 @@
     "Carodelabegude": {
       "index": 3794,
       "owner_key": "7DFxmCyBdhJdGX6E3B4hAwW3XHbod4NbfTUXkuPbKLrB",
-      "balance": 1134167,
+      "balance": 1173853,
       "membership_expire_on": 1719751091,
       "next_cert_issuable_on": 1689070199,
       "certs_received": {
@@ -68030,7 +69364,7 @@
     "ludopradel": {
       "index": 3874,
       "owner_key": "7DQYrsXqyVY7padLGqDU6p4fybRRW1Z9Hmv5G3B8RLaC",
-      "balance": 1006366,
+      "balance": 1046052,
       "membership_expire_on": 1719327165,
       "next_cert_issuable_on": 1675245911,
       "certs_received": {
@@ -68044,7 +69378,7 @@
     "Eugenie73": {
       "index": 13142,
       "owner_key": "7DTRdNcepzTBRqkFTJTj36824AJc3iy3zG6yVro52Vxc",
-      "balance": 54468,
+      "balance": 94154,
       "membership_expire_on": 1720714507,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -68058,13 +69392,14 @@
     "Gregneo": {
       "index": 8490,
       "owner_key": "7DUrtQd4vP49Qz8QNngXbnFUcJvoawGvearPqmHidXfn",
-      "balance": 456381,
+      "balance": 496067,
       "membership_expire_on": 1720655538,
       "next_cert_issuable_on": 1673963111,
       "certs_received": {
         "Napo": 1715929436,
         "RenaudSchira": 1717288479,
         "Zabou": 1715933461,
+        "CelineRenou": 1755558623,
         "marmotte32": 1715932696,
         "Christine31": 1717538420
       }
@@ -68087,8 +69422,8 @@
     "Lys": {
       "index": 367,
       "owner_key": "7DZti7AcsmVjhnUrFhhX44fGnPyC1FZeB6LqaQ9YfX6J",
-      "balance": 1767027,
-      "membership_expire_on": 1696727319,
+      "balance": 1806713,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1639845002,
       "certs_received": {
         "Philo": 1702454284,
@@ -68157,15 +69492,16 @@
     "Nandoporto": {
       "index": 13079,
       "owner_key": "7Dye5q7sDurq6tAQv1EpuUWo5fAX5L3CfzyKn47kN5dY",
-      "balance": 60244,
+      "balance": 99930,
       "membership_expire_on": 1719841894,
-      "next_cert_issuable_on": 1690163977,
+      "next_cert_issuable_on": 1694308078,
       "certs_received": {
         "RitApolinario": 1751479097,
         "devihope": 1751400240,
         "anapatapouf": 1751452016,
         "FerSar": 1751429179,
         "StefaniaCamilla": 1751429179,
+        "JorgeDraven": 1754701030,
         "jsoutelinho": 1751423188,
         "ElisabeteMartins": 1755749244
       }
@@ -68173,7 +69509,7 @@
     "junejeanne": {
       "index": 12634,
       "owner_key": "7E2ySwk5gsRnCeEjuYweYNJR41M4fBqEhEeGXSHWVUqx",
-      "balance": 257280,
+      "balance": 296966,
       "membership_expire_on": 1715548165,
       "next_cert_issuable_on": 1685848558,
       "certs_received": {
@@ -68219,16 +69555,18 @@
     "Tchid": {
       "index": 8645,
       "owner_key": "7ERL9RoJRZh3VpMrT7YotLcnb55W38xhUrUGqRa1Gyke",
-      "balance": 368667,
+      "balance": 206853,
       "membership_expire_on": 1713785972,
-      "next_cert_issuable_on": 1676184392,
+      "next_cert_issuable_on": 1696218291,
       "certs_received": {
         "RomainKornig": 1718746482,
         "Harmonie13": 1718918376,
         "Armelle": 1726642579,
+        "colinuxCanut2": 1759287548,
         "Elyzia84": 1729047919,
         "Lisa84": 1722729137,
         "Rejouine": 1737572290,
+        "salamandre": 1759261931,
         "Ivoire84": 1719083567,
         "vallouli": 1738913189,
         "SofianneErler": 1718777016,
@@ -68243,11 +69581,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Isabeau": {
+      "index": 13485,
+      "owner_key": "7ETB9SCNp6RPqLkcX1PeSUrzYhfjVpSa8yvSq2AbKP4F",
+      "balance": 107550,
+      "membership_expire_on": 1724633534,
+      "next_cert_issuable_on": 1694361697,
+      "certs_received": {
+        "PierreHarrewyn": 1756541829,
+        "Camizot": 1756541511,
+        "Helo-ise": 1756289436,
+        "Mer-lin": 1756289161,
+        "Fanchon": 1756496059
+      }
+    },
     "Adamekaudrey": {
       "index": 10201,
       "owner_key": "7ETESiteYjtLdJgk1C2k6cr3BAdkhmkyuUs1ecKCishc",
-      "balance": 323108,
-      "membership_expire_on": 1699208368,
+      "balance": 343794,
+      "membership_expire_on": 1727730161,
       "next_cert_issuable_on": 1680781487,
       "certs_received": {
         "Vanille": 1730776035,
@@ -68270,7 +69622,7 @@
     "Artix": {
       "index": 4530,
       "owner_key": "7EaTohCdcPSvtGAXjTZ8JLJ1Tpb9mqf56rmHRC99F7Lf",
-      "balance": 790761,
+      "balance": 830447,
       "membership_expire_on": 1700778888,
       "next_cert_issuable_on": 1681139568,
       "certs_received": {
@@ -68289,7 +69641,7 @@
     "VAOULEVENT": {
       "index": 981,
       "owner_key": "7EddjLc9KaZetGfts98U42djPMcZVsEvdoakygWhbnNF",
-      "balance": 1839429,
+      "balance": 1879115,
       "membership_expire_on": 1701385812,
       "next_cert_issuable_on": 1653395708,
       "certs_received": {
@@ -68313,23 +69665,19 @@
     "JeanclaudeSocasau": {
       "index": 5738,
       "owner_key": "7EjzzVM1Kx3nXcWMifN5qDQzNHqvnue2PuwupYPEwNAB",
-      "balance": 713771,
-      "membership_expire_on": 1723312702,
+      "balance": 731927,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1691995086,
       "certs_received": {
-        "GeraldineLeprivier": 1694997330,
-        "AlbinS": 1693502506,
         "ChatelainJimmy": 1746579525,
-        "PhilippeRomanin": 1694997330,
         "AnnemarieLavie": 1754874000,
-        "PierreSocasau": 1693620556,
         "ahmed": 1699318407
       }
     },
     "Domira": {
       "index": 13145,
       "owner_key": "7EoPb4fU9rqHN7aSKqCPFcZZS3YKBh9o8uTtjdJkmYUh",
-      "balance": 59808,
+      "balance": 99494,
       "membership_expire_on": 1720103999,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -68343,7 +69691,7 @@
     "LucasSQ": {
       "index": 12258,
       "owner_key": "7Eu5NuY6LfZwojakpdcRAVJ6hpTqT3okdwqZTGdRrWL5",
-      "balance": 105408,
+      "balance": 130094,
       "membership_expire_on": 1712273007,
       "next_cert_issuable_on": 1683265037,
       "certs_received": {
@@ -68358,7 +69706,7 @@
     "stephanechevreau": {
       "index": 3471,
       "owner_key": "7F5VevepcTeogPNvsdxmQqDUmjgHRkanrm7zUqmsNBag",
-      "balance": 1061551,
+      "balance": 1101237,
       "membership_expire_on": 1712095905,
       "next_cert_issuable_on": 1688216100,
       "certs_received": {
@@ -68376,18 +69724,18 @@
     "vit": {
       "index": 58,
       "owner_key": "7F6oyFQywURCACWZZGtG97Girh9EL1kg2WBwftEZxDoJ",
-      "balance": 2415340,
+      "balance": 2501106,
       "membership_expire_on": 1722092484,
       "next_cert_issuable_on": 1692505694,
       "certs_received": {
         "BenoitLavenier": 1717168264,
         "Bsamuel": 1735134186,
+        "HugoTrentesaux": 1758491723,
         "cuckooland": 1724701220,
         "mimi": 1716664942,
         "Kali": 1712453751,
         "Maaude09": 1729450403,
         "Paola": 1754859847,
-        "TimeoDG": 1693875787,
         "Attilax": 1707634835,
         "MatthieuLatapy": 1755184720,
         "moul": 1734486667,
@@ -68397,22 +69745,23 @@
     "Asiri": {
       "index": 10260,
       "owner_key": "7F7cfjZ6YJwtbgZEShtYpFe5M2S7wD3CX6GMUTxXymsm",
-      "balance": 688349,
-      "membership_expire_on": 1698686465,
-      "next_cert_issuable_on": 1688808175,
+      "balance": 751935,
+      "membership_expire_on": 1725240232,
+      "next_cert_issuable_on": 1693419789,
       "certs_received": {
         "MaryMarie": 1730247560,
         "Soum86": 1730415494,
         "bricodeur": 1730261226,
         "AnneSo": 1751877313,
         "NathalieSF971": 1730456539,
+        "DidiX": 1758431035,
         "Corinnedeshaies": 1730282502
       }
     },
     "ChatelainAndrea": {
       "index": 5402,
       "owner_key": "7F8xokpXGaRTkdsVy6bAHEmScEBr5Zu9Rjkj57XUoo7P",
-      "balance": 735045,
+      "balance": 774731,
       "membership_expire_on": 1715019616,
       "next_cert_issuable_on": 1683535987,
       "certs_received": {
@@ -68452,9 +69801,9 @@
     "Artdevivre": {
       "index": 7620,
       "owner_key": "7FP1jFkzRddPZiK4eRpGueRMbMj6uNy4Xqfr2eB4bzhD",
-      "balance": 896654,
+      "balance": 794440,
       "membership_expire_on": 1708003267,
-      "next_cert_issuable_on": 1693313760,
+      "next_cert_issuable_on": 1696079003,
       "certs_received": {
         "Crystal": 1720908222,
         "BlandineGABE": 1744869694,
@@ -68500,7 +69849,7 @@
     "philippedubezu": {
       "index": 12349,
       "owner_key": "7FQYV92Zvasp2wjgrwfrR9pfQ5gBhYjkPTsZvwreRT36",
-      "balance": 122884,
+      "balance": 162570,
       "membership_expire_on": 1712663245,
       "next_cert_issuable_on": 1688375306,
       "certs_received": {
@@ -68527,7 +69876,7 @@
     "MartaNinYa": {
       "index": 8951,
       "owner_key": "7FdZ2uLFLUfpiHB68Rxkzx2myqyN9uLGF4NHbn92t7Rz",
-      "balance": 120957,
+      "balance": 106843,
       "membership_expire_on": 1715970133,
       "next_cert_issuable_on": 1675384516,
       "certs_received": {
@@ -68537,6 +69886,7 @@
         "Rousdeg": 1725161551,
         "Oceano": 1720728645,
         "Toniojacobo": 1724701098,
+        "migueleon": 1758669388,
         "AnnaLys": 1735708374,
         "AlineLecoeur": 1740461332,
         "Maritxu": 1720846711,
@@ -68546,10 +69896,25 @@
         "BruBraveLez": 1741240971
       }
     },
+    "DataBarbe": {
+      "index": 13704,
+      "owner_key": "7FfDUBNVsfRZtjeycowcEVvhzNfWyBBuYeuyF6m7N4cV",
+      "balance": 66068,
+      "membership_expire_on": 1727039752,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Helenep": 1759118452,
+        "Rysmadu24": 1759270821,
+        "Gwn": 1759257147,
+        "Papy89": 1759122687,
+        "Pirataquante": 1758695696,
+        "Piraculteur": 1758694748
+      }
+    },
     "Egide": {
       "index": 9419,
       "owner_key": "7FiPy3Jx5ePYTmVkrqFJUaxBhvK4Ho2dV1Nb52fxMRTg",
-      "balance": 267646,
+      "balance": 301832,
       "membership_expire_on": 1719504693,
       "next_cert_issuable_on": 1687798563,
       "certs_received": {
@@ -68600,7 +69965,7 @@
     "Imppao": {
       "index": 6503,
       "owner_key": "7FpTe9KGp4XW5wvSoL1Chey5qM5ERHkHkqjxo12C8b5J",
-      "balance": 716531,
+      "balance": 1066297,
       "membership_expire_on": 1724715484,
       "next_cert_issuable_on": 1688020362,
       "certs_received": {
@@ -68657,13 +70022,13 @@
       "owner_key": "7GHoHDt31Px7AE4BnhJHkecpXzuxAc599aN46witG5gM",
       "balance": 10000,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632981484,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "Kakaouette11": {
       "index": 8046,
       "owner_key": "7GKiVmmD6KH2byts3djkB2NtV3LufnvcWs1gtYrkvKoZ",
-      "balance": 511325,
+      "balance": 551011,
       "membership_expire_on": 1711832278,
       "next_cert_issuable_on": 1658319359,
       "certs_received": {
@@ -68686,8 +70051,8 @@
     "Nielda141": {
       "index": 6171,
       "owner_key": "7GSTVvTYSQ8YczMfo7wpBdP3RtxSBZoEc7LVYgTG4oPM",
-      "balance": 682119,
-      "membership_expire_on": 1696460834,
+      "balance": 720727,
+      "membership_expire_on": 1728069202,
       "next_cert_issuable_on": 1664975584,
       "certs_received": {
         "JeanLucCrcfx": 1698113489,
@@ -68714,9 +70079,9 @@
     "Patinette": {
       "index": 12861,
       "owner_key": "7GXjHyCequdqxXA3ACUtfDHiT5b5EJHjvMMaHfmcDvEu",
-      "balance": 81508,
+      "balance": 121194,
       "membership_expire_on": 1717545301,
-      "next_cert_issuable_on": 1689815295,
+      "next_cert_issuable_on": 1692264242,
       "certs_received": {
         "Math007": 1749401580,
         "lucba": 1749402150,
@@ -68728,7 +70093,7 @@
     "Chrisnature": {
       "index": 6292,
       "owner_key": "7GYGuxkPdBkT2wzigYgoZk2pz5KvsFzeDGkGFUhhYSqv",
-      "balance": 667598,
+      "balance": 707284,
       "membership_expire_on": 1704250990,
       "next_cert_issuable_on": 1640619557,
       "certs_received": {
@@ -68742,9 +70107,9 @@
     "MarieMas": {
       "index": 12499,
       "owner_key": "7GeqJAduttXYHysrzbyXKuwBgq9d7zZcrJxb89hFnuVh",
-      "balance": 142036,
+      "balance": 123222,
       "membership_expire_on": 1714434313,
-      "next_cert_issuable_on": 1693323017,
+      "next_cert_issuable_on": 1696164138,
       "certs_received": {
         "RosyRio": 1745995833,
         "PhilippeLafontaine": 1748760673,
@@ -68753,11 +70118,13 @@
         "Kryszu": 1746907671,
         "DetiegeChloe": 1745992892,
         "morimontj": 1746066469,
+        "SoleneJoannes": 1759039442,
         "Micha99": 1749075239,
         "Barbatruc": 1748101829,
         "Tavartalvert": 1747515832,
         "MEME3": 1751823947,
         "Katecat": 1747551093,
+        "cricri": 1758351419,
         "MARIE-PIERRE": 1749883487,
         "Daniele8": 1745995182,
         "SteffiH": 1746042409,
@@ -68770,9 +70137,9 @@
     "Lulanature": {
       "index": 10178,
       "owner_key": "7GjPCgySCVTaa5sLJzs9Dascymc5CvUQ4aUAP7WJQxnD",
-      "balance": 333326,
-      "membership_expire_on": 1698607281,
-      "next_cert_issuable_on": 0,
+      "balance": 378512,
+      "membership_expire_on": 1725900432,
+      "next_cert_issuable_on": 1694414832,
       "certs_received": {
         "Etipol61": 1730543865,
         "GypsiCla": 1730572513,
@@ -68809,7 +70176,7 @@
     "jeanmartin": {
       "index": 5003,
       "owner_key": "7GtRbPSmRLmuMPNsikrth15qS8nGg4NMAk4UqonpJpra",
-      "balance": 806610,
+      "balance": 846296,
       "membership_expire_on": 1718198129,
       "next_cert_issuable_on": 1653062275,
       "certs_received": {
@@ -68824,12 +70191,13 @@
     "MacaMartin": {
       "index": 4514,
       "owner_key": "7Gtu1rzY2zfNYzEZBuMKWLY3rLDU9qbU6CiWEgMuEGhP",
-      "balance": 583235,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1673165561,
+      "balance": 542013,
+      "membership_expire_on": 1725585714,
+      "next_cert_issuable_on": 1696773474,
       "certs_received": {
         "terooteresa": 1715307714,
         "Catwoman": 1727831724,
+        "Omereya": 1757813351,
         "BeatricePieper": 1697331184,
         "Inma11": 1729748545,
         "C13Salegria": 1712782795
@@ -68838,7 +70206,7 @@
     "Nicomaraich": {
       "index": 10920,
       "owner_key": "7GwefZqip36aK98Vij5Wg32rD6zXeSBDdy7sVbzUU8av",
-      "balance": 273512,
+      "balance": 313198,
       "membership_expire_on": 1702496034,
       "next_cert_issuable_on": 1691501949,
       "certs_received": {
@@ -68859,8 +70227,8 @@
     "franceline": {
       "index": 3298,
       "owner_key": "7Gwy7kHa1TTn1JBURWBjEtECwQHYwnNugPvtfNPmGZ3d",
-      "balance": 1429715,
-      "membership_expire_on": 1695843536,
+      "balance": 1458621,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1639391941,
       "certs_received": {
         "BrigitteW": 1700619178,
@@ -68873,7 +70241,7 @@
     "Petitamour": {
       "index": 13464,
       "owner_key": "7GzuRv9wWruT6hCDhmtVmtTaXQUaMr2U64JzMzfhRour",
-      "balance": 12136,
+      "balance": 61822,
       "membership_expire_on": 1724516202,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -68884,6 +70252,20 @@
         "Tango8943": 1756358473
       }
     },
+    "LaureHuber": {
+      "index": 13490,
+      "owner_key": "7H9bvrFgGEgz69Jz2A5zVS3wFffCvgkrdp7dESUd4hGC",
+      "balance": 47382,
+      "membership_expire_on": 1724174006,
+      "next_cert_issuable_on": 1695134809,
+      "certs_received": {
+        "Dracaufeu1990": 1756772574,
+        "Als_67": 1756010072,
+        "seb2nor12": 1755752686,
+        "BertrandCGO": 1756835648,
+        "OURSBLANC": 1755938166
+      }
+    },
     "cricribond": {
       "index": 3616,
       "owner_key": "7HB88gYNESFjpvh37s2PCbsanRnFQGWWFrK6EPZjgVF",
@@ -68897,7 +70279,7 @@
     "Orage43": {
       "index": 11030,
       "owner_key": "7HK9MceW4KvyDG2Maiu5NuzxFM3bikN64fKf7iKm8Uvg",
-      "balance": 207581,
+      "balance": 239267,
       "membership_expire_on": 1702905768,
       "next_cert_issuable_on": 1692001023,
       "certs_received": {
@@ -68911,7 +70293,8 @@
         "Clairecala": 1734643429,
         "Nataliedanseencouple": 1751489964,
         "Flandelila": 1735281618,
-        "AnneSoleneCM": 1735537109
+        "AnneSoleneCM": 1735537109,
+        "JeanneR": 1756667887
       }
     },
     "SimonLavenier": {
@@ -68925,26 +70308,25 @@
     "SoNyA": {
       "index": 5598,
       "owner_key": "7HUtRMV3XzrLkkemhFqR4v1S6dGMkJhBmEwKssR8EFhR",
-      "balance": 250653,
+      "balance": 35939,
       "membership_expire_on": 1716029202,
-      "next_cert_issuable_on": 1667108089,
+      "next_cert_issuable_on": 1695894195,
       "certs_received": {
         "Marikler": 1755230806,
-        "IngridCourreges": 1696421398,
         "Tchois": 1755393457,
         "Mika83": 1747094457,
         "Orange83440": 1729804515,
-        "LISAZAZA": 1694340431,
         "Passy": 1703822300,
-        "Damery": 1755224214
+        "Damery": 1755224214,
+        "Sailorcherry": 1756883580
       }
     },
     "Poesy": {
       "index": 1263,
       "owner_key": "7HYjV3xSL2qTcFrpcK55qFkDX9ps8SnHqahV4i5etgj3",
-      "balance": 757775,
+      "balance": 889961,
       "membership_expire_on": 1706186711,
-      "next_cert_issuable_on": 1691804778,
+      "next_cert_issuable_on": 1696318387,
       "certs_received": {
         "Zap": 1722531237,
         "Dams": 1738189581,
@@ -68966,11 +70348,13 @@
         "LaPetiteMaisonDansLaPrairie": 1734407282,
         "jeanferreira": 1734298954,
         "manguitou": 1744434949,
+        "LnLsf": 1759466003,
         "Asthenie": 1746492108,
         "TataCC": 1742115763,
         "phil3455": 1745084720,
         "Siddh": 1746493905,
         "Natheidi": 1738371151,
+        "Maaude09": 1758832637,
         "CorinneBaro": 1740005774,
         "Camizot": 1737155996,
         "Loup": 1743998887,
@@ -68979,6 +70363,7 @@
         "ElisabethMoreil": 1732749178,
         "Gnome": 1740891914,
         "hocine": 1713863100,
+        "Ninoushka": 1755938166,
         "Fanchon": 1736028513,
         "PremDas": 1751600992,
         "Maud": 1738003440,
@@ -68994,7 +70379,7 @@
     "Jejelapraline": {
       "index": 8247,
       "owner_key": "7HZTAJP8H8xtJNUyRgdutugytKZefB6BLYJMANk5pguE",
-      "balance": 594346,
+      "balance": 634032,
       "membership_expire_on": 1715001335,
       "next_cert_issuable_on": 1674220118,
       "certs_received": {
@@ -69024,7 +70409,7 @@
     "BertramP": {
       "index": 10672,
       "owner_key": "7Hk5dTiGE6VBxCG5ovqS1g566zGGUAAiPcFonFwxCPqL",
-      "balance": 282052,
+      "balance": 321738,
       "membership_expire_on": 1701128459,
       "next_cert_issuable_on": 1677839218,
       "certs_received": {
@@ -69042,7 +70427,7 @@
       "owner_key": "7HrvFf9jgKC1Ke8UqDvtRciNWzu9DCYBZ39R3vdBT3Lz",
       "balance": 711402,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632737432,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Champa108": 1704569256
       }
@@ -69064,7 +70449,7 @@
     "Nicomahe": {
       "index": 12401,
       "owner_key": "7J2jYxHzMYAhDtUeEU3LhHaJihR49Ejcro1r5jLJUNmg",
-      "balance": 363288,
+      "balance": 402974,
       "membership_expire_on": 1711834610,
       "next_cert_issuable_on": 1682662527,
       "certs_received": {
@@ -69109,7 +70494,7 @@
     "Tibz": {
       "index": 1090,
       "owner_key": "7JSbz8gfM7246kPsz1nPXMspYsVrwiDchKpWtSFcK9CK",
-      "balance": 1893531,
+      "balance": 1933217,
       "membership_expire_on": 1710970287,
       "next_cert_issuable_on": 1665195556,
       "certs_received": {
@@ -69123,7 +70508,7 @@
     "Philippe": {
       "index": 4918,
       "owner_key": "7JpThMSyGsutem4iQ37SMCvXXaxsHWDGu34qCipwMCaH",
-      "balance": 175431,
+      "balance": 215117,
       "membership_expire_on": 1709486802,
       "next_cert_issuable_on": 1663177965,
       "certs_received": {
@@ -69142,7 +70527,6 @@
         "Flozinho": 1702613870,
         "Solight777": 1700986201,
         "ninie-1974": 1717833364,
-        "Ivann971": 1695228728,
         "Mariedelourdes": 1713743828,
         "Corinnedeshaies": 1700039884,
         "KarineBAILLIEU": 1720185771
@@ -69151,8 +70535,8 @@
     "Amelia34": {
       "index": 3237,
       "owner_key": "7JvGor6ZEfGyTkqJuEye5FNyGx9ndXT46E43W2JF7ka4",
-      "balance": 927423,
-      "membership_expire_on": 1693835360,
+      "balance": 946787,
+      "membership_expire_on": 1727088848,
       "next_cert_issuable_on": 1662350375,
       "certs_received": {
         "Majoli34": 1706312599,
@@ -69175,9 +70559,9 @@
     "YugavanOrloff": {
       "index": 6411,
       "owner_key": "7Jy8VGW7BUta8RFSHp9o6FZ6oBp5gFXXJQjCoRyxDuBB",
-      "balance": 622687,
-      "membership_expire_on": 1699048086,
-      "next_cert_issuable_on": 1687247597,
+      "balance": 634873,
+      "membership_expire_on": 1725880531,
+      "next_cert_issuable_on": 1694757299,
       "certs_received": {
         "Temarante": 1734146482,
         "NAGIOWOTALA": 1709577331,
@@ -69190,17 +70574,33 @@
         "GeraldineGarrigues": 1708334451,
         "animos_fortis": 1721593007,
         "Lando": 1733542490,
+        "Kifgrave": 1759615057,
         "MinaManar": 1702596183,
         "Joa-KimTiago": 1702600160,
         "iafu": 1702697518
       }
     },
+    "Ortie": {
+      "index": 13692,
+      "owner_key": "7JzQNn2zwc1hYn9ohmuL8ZYhfWKUyGL86Ajdh58ConCJ",
+      "balance": 38624,
+      "membership_expire_on": 1727276001,
+      "next_cert_issuable_on": 1696168854,
+      "certs_received": {
+        "PierreHarrewyn": 1758834476,
+        "Camizot": 1758834248,
+        "Helo-ise": 1758834248,
+        "Mer-lin": 1758834016,
+        "Fanchon": 1758833807,
+        "Belle": 1759209556
+      }
+    },
     "Rom1": {
       "index": 8458,
       "owner_key": "7K37iiUMefFUM9k9zsP8ycD8w5Acz5Gm1NEtXmCD1Tcz",
-      "balance": 1358860,
+      "balance": 1426118,
       "membership_expire_on": 1712313372,
-      "next_cert_issuable_on": 1692370766,
+      "next_cert_issuable_on": 1694062064,
       "certs_received": {
         "MariadeJesus": 1738291342,
         "FabFabounette": 1738477332,
@@ -69236,7 +70636,7 @@
     "HairbyElias": {
       "index": 12433,
       "owner_key": "7KBdAqY7JcS1Npqctorkv4D5y5NuidhWyKYUC41sDVqB",
-      "balance": 137772,
+      "balance": 177458,
       "membership_expire_on": 1713808674,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -69250,7 +70650,7 @@
     "Rousdeg": {
       "index": 8688,
       "owner_key": "7KL3oD3MXF1mkNhWq3gP4v4kzRGS8cu1CB2Qe2q2z8za",
-      "balance": 267940,
+      "balance": 270326,
       "membership_expire_on": 1714611068,
       "next_cert_issuable_on": 1681303495,
       "certs_received": {
@@ -69277,7 +70677,7 @@
     "henrilarvaron": {
       "index": 226,
       "owner_key": "7KM6D13yYuT1RH6qq74dTrnf562G834TSYKC9Emj1eNA",
-      "balance": 1603052,
+      "balance": 1642738,
       "membership_expire_on": 1719015361,
       "next_cert_issuable_on": 1672400234,
       "certs_received": {
@@ -69302,7 +70702,7 @@
       "owner_key": "7KSABnUFAgBstdBEdnHiHMRf66G5ecG4UPvbZCPDJWrW",
       "balance": 371261,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1630822102,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Parhit": 1706151641
       }
@@ -69321,7 +70721,7 @@
     "leinad": {
       "index": 12430,
       "owner_key": "7KiZkTKy8KGrexQeWcZB6rTMSRuGg2B4Z2DoWPtt7SKc",
-      "balance": 217140,
+      "balance": 256826,
       "membership_expire_on": 1713292560,
       "next_cert_issuable_on": 1683907972,
       "certs_received": {
@@ -69337,7 +70737,7 @@
     "Tuki": {
       "index": 9094,
       "owner_key": "7Ksr4Kp5ZyHZx16T3yAVkve1x4j5LeRoBJE5V6oLCGc9",
-      "balance": 434778,
+      "balance": 474464,
       "membership_expire_on": 1718031429,
       "next_cert_issuable_on": 1686549554,
       "certs_received": {
@@ -69362,7 +70762,7 @@
     "AlexisLebrun": {
       "index": 7153,
       "owner_key": "7LA7AbgeahR5sVcJD3ra92W8WZKrzJJERj7NtUDpLhNM",
-      "balance": 395395,
+      "balance": 405081,
       "membership_expire_on": 1709150180,
       "next_cert_issuable_on": 1667991120,
       "certs_received": {
@@ -69384,7 +70784,7 @@
     "Mic": {
       "index": 531,
       "owner_key": "7LGaeBMqzS5oD5X8eZQXq9S9YrC4sEorr5wwmWgQtiFm",
-      "balance": 2293350,
+      "balance": 2320220,
       "membership_expire_on": 1723229964,
       "next_cert_issuable_on": 1692009362,
       "certs_received": {
@@ -69422,7 +70822,7 @@
     "Hamady48": {
       "index": 10445,
       "owner_key": "7LPuDoGEh26Mm9ZpbMMh82B8AEn4UFWNhv21artHdk3y",
-      "balance": 365334,
+      "balance": 405020,
       "membership_expire_on": 1700407319,
       "next_cert_issuable_on": 1683984086,
       "certs_received": {
@@ -69452,7 +70852,7 @@
     "Elouan": {
       "index": 12453,
       "owner_key": "7LcRXfSMESgs8wZDxTaGX4MkEpGSQJhTSQ2GEeouRkLA",
-      "balance": 140636,
+      "balance": 180322,
       "membership_expire_on": 1710367952,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -69488,7 +70888,7 @@
     "lelfedesboa": {
       "index": 8752,
       "owner_key": "7Lnfq7NfNKuCuFpZcZuDvm6bRKwox44r4SKWkJWPaBCW",
-      "balance": 445892,
+      "balance": 483278,
       "membership_expire_on": 1715015335,
       "next_cert_issuable_on": 1687966000,
       "certs_received": {
@@ -69511,7 +70911,7 @@
     "AnnaElle": {
       "index": 13242,
       "owner_key": "7LsCPtX6Si3CqGeiKqqP4ozPbDzhxhtZu5K6dTai8xk6",
-      "balance": 38448,
+      "balance": 78134,
       "membership_expire_on": 1721266406,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -69525,7 +70925,7 @@
     "LentilleCorail": {
       "index": 10315,
       "owner_key": "7LueCQ5jwsEiSqNdU2GFNsbFJb3MgPWhgTy4ivYipHkF",
-      "balance": 291695,
+      "balance": 331381,
       "membership_expire_on": 1698171099,
       "next_cert_issuable_on": 1692807033,
       "certs_received": {
@@ -69536,6 +70936,7 @@
         "lumi": 1753335089,
         "ElisabethNyons": 1731021425,
         "MelliaGaia": 1731058526,
+        "clodclef": 1758820839,
         "Jean-Claude-04": 1731043161,
         "Damery": 1753581236,
         "ChristineWilloth26": 1751733375,
@@ -69545,7 +70946,7 @@
     "Alex26": {
       "index": 11454,
       "owner_key": "7LxnXDn5fD1pgfe7vWHt8bY6fo6X3BMu8Y9aWYmwm3bc",
-      "balance": 228098,
+      "balance": 267784,
       "membership_expire_on": 1706910407,
       "next_cert_issuable_on": 1675555286,
       "certs_received": {
@@ -69577,7 +70978,7 @@
     "BrigitteBreizh": {
       "index": 5234,
       "owner_key": "7M6Z7cfAwFGoU2nmduAJUMrxVgu6AP2Ezb6NtUNwmJTA",
-      "balance": 780641,
+      "balance": 810327,
       "membership_expire_on": 1706845401,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -69592,7 +70993,7 @@
     "Coidzikow": {
       "index": 3372,
       "owner_key": "7M8xa5pcYEvrzWYNTNsXeYQgQeV5WH1DFrkyJiQN4UBz",
-      "balance": 654458,
+      "balance": 694144,
       "membership_expire_on": 1708217466,
       "next_cert_issuable_on": 1693033243,
       "certs_received": {
@@ -69603,15 +71004,13 @@
         "RitaWilson": 1698794529,
         "vallouli": 1739602439,
         "Claudarc": 1752992454,
-        "Marike11": 1752990080,
-        "stephanoel": 1695862252,
-        "SanjaAnanda": 1695871094
+        "Marike11": 1752990080
       }
     },
     "WOODManuPOTTER": {
       "index": 3655,
       "owner_key": "7MBxDRQ2nFrtHwZTJTS4P8PKirCVMxLvL5xyiixYHL3g",
-      "balance": 1219099,
+      "balance": 1258785,
       "membership_expire_on": 1699568542,
       "next_cert_issuable_on": 1656914303,
       "certs_received": {
@@ -69633,7 +71032,7 @@
     "Martine86": {
       "index": 12673,
       "owner_key": "7MMeAkNfogc2fAix2UNMh84toqDsrhd4yTbjhC9Wa9jd",
-      "balance": 259808,
+      "balance": 299494,
       "membership_expire_on": 1715627453,
       "next_cert_issuable_on": 1688230951,
       "certs_received": {
@@ -69649,7 +71048,7 @@
     "Nico61": {
       "index": 11439,
       "owner_key": "7MQCgNJu7A5A7reVZ2s666Cj5KfDrcqpwuGCQpw5aGgG",
-      "balance": 233218,
+      "balance": 273004,
       "membership_expire_on": 1706475882,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -69667,9 +71066,9 @@
     "fredo79": {
       "index": 2088,
       "owner_key": "7MX9hZjxY3wbtNHmsndtaGFEkaDX3aLoQko3j8qkfEwD",
-      "balance": 541129,
+      "balance": 548815,
       "membership_expire_on": 1705361863,
-      "next_cert_issuable_on": 1691450835,
+      "next_cert_issuable_on": 1696212736,
       "certs_received": {
         "CatherinePerma": 1729964790,
         "Kevinbdn": 1755026709,
@@ -69692,6 +71091,7 @@
         "FannyLequerrec": 1723184945,
         "Loulou82": 1733244320,
         "SamsFactory": 1722887090,
+        "MikaNanda": 1756942453,
         "kikilulu": 1711182334,
         "Ninette89": 1753678662,
         "FabienMem": 1738618762,
@@ -69705,9 +71105,9 @@
     "Yannick51200": {
       "index": 5997,
       "owner_key": "7McCxPc28si8hEjAf3V7HAfEASc2htVCknAe1MyMN4wP",
-      "balance": 626777,
+      "balance": 666463,
       "membership_expire_on": 1722585586,
-      "next_cert_issuable_on": 1689341768,
+      "next_cert_issuable_on": 1694222279,
       "certs_received": {
         "MarineDR": 1698958335,
         "DelphineDietsch": 1698896491,
@@ -69734,7 +71134,7 @@
     "fabuline": {
       "index": 6553,
       "owner_key": "7MergCraomaHpVkFBctEZdk2nvxGxDNwQx7N3MwVNz31",
-      "balance": 502920,
+      "balance": 542606,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -69757,7 +71157,7 @@
     "LaPulse": {
       "index": 10275,
       "owner_key": "7N17Q2v53bebhRPyoW79X6MZAQBZnCNPG8c17hkcuHDJ",
-      "balance": 314931,
+      "balance": 354617,
       "membership_expire_on": 1699629576,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -69772,7 +71172,7 @@
     "JacobReina": {
       "index": 5819,
       "owner_key": "7N5Bphqy8DhW6eenKaX9rRZeuCFrddZZuyT7z9dsZGHW",
-      "balance": 712133,
+      "balance": 751819,
       "membership_expire_on": 1697850896,
       "next_cert_issuable_on": 1647494120,
       "certs_received": {
@@ -69787,7 +71187,7 @@
     "veropuebla": {
       "index": 10964,
       "owner_key": "7NKXkj3gnAtp93MKRKAbEdU4QsXxJgCYnetstVV9Ksge",
-      "balance": 89294,
+      "balance": 147480,
       "membership_expire_on": 1703043768,
       "next_cert_issuable_on": 1679416495,
       "certs_received": {
@@ -69810,10 +71210,12 @@
     "Charisma": {
       "index": 13159,
       "owner_key": "7NV2TjH4xNocUMavBCaDjkaXpamQ7Gw6Tj9vFve77AQX",
-      "balance": 137039,
+      "balance": 180225,
       "membership_expire_on": 1720903737,
-      "next_cert_issuable_on": 1690628749,
+      "next_cert_issuable_on": 1694859500,
       "certs_received": {
+        "DominiqueCuvelier": 1757458668,
+        "FabienneM": 1758049104,
         "Fox": 1752462320,
         "Chabe13": 1752462641,
         "Kryszu": 1752462641,
@@ -69834,7 +71236,7 @@
     "Cuicui86": {
       "index": 9592,
       "owner_key": "7NaBVBH3PqpyQq3amvHueGWYjo4Y4zLBVfrsBeJxgsVG",
-      "balance": 206771,
+      "balance": 246457,
       "membership_expire_on": 1721765110,
       "next_cert_issuable_on": 1690279510,
       "certs_received": {
@@ -69855,9 +71257,9 @@
     "EcoMary": {
       "index": 10489,
       "owner_key": "7NatGA2GGxNpsm4ZLcJiLWCNUJizWUg9VMa7dHMcggJr",
-      "balance": 182627,
-      "membership_expire_on": 1700433611,
-      "next_cert_issuable_on": 1688689730,
+      "balance": 198713,
+      "membership_expire_on": 1727129061,
+      "next_cert_issuable_on": 1695871137,
       "certs_received": {
         "Senda": 1746511647,
         "ClaudiaR": 1743786902,
@@ -69874,6 +71276,7 @@
         "Atman": 1732124000,
         "VeroniqueV": 1738564656,
         "Idurre": 1738530123,
+        "Ekane": 1756712260,
         "SurfinMaya": 1732132034,
         "Energiadelcorazon": 1732129377,
         "Isalanzarote": 1737891253
@@ -69882,7 +71285,7 @@
     "Scilla": {
       "index": 11799,
       "owner_key": "7NcBYpFTir2k7v85nghoVxDsh5MSRsuZGgPnsPtj91Y7",
-      "balance": 286914,
+      "balance": 326600,
       "membership_expire_on": 1707694557,
       "next_cert_issuable_on": 1680861133,
       "certs_received": {
@@ -69899,7 +71302,7 @@
     "Galaxia144": {
       "index": 10167,
       "owner_key": "7NmLLmAXxHXEbmxDvvULAk3WckzWjw5FZJdFgfTRjZ9K",
-      "balance": 236285,
+      "balance": 251671,
       "membership_expire_on": 1698953883,
       "next_cert_issuable_on": 1682787519,
       "certs_received": {
@@ -69916,23 +71319,26 @@
     "Dorf67": {
       "index": 13208,
       "owner_key": "7NsAQULBZSL8jZgd9pPLepVKw3gaLgS7TQPEo73GS55D",
-      "balance": 92888,
+      "balance": 111874,
       "membership_expire_on": 1717938709,
-      "next_cert_issuable_on": 1692280585,
+      "next_cert_issuable_on": 1695438378,
       "certs_received": {
         "ENO": 1753113446,
+        "feedbefore": 1758046932,
         "Kheoppe": 1749534749,
+        "hazed": 1757980309,
         "Manebaz": 1752090069,
         "Hera": 1752790705,
-        "SylvieSpielmann": 1749878630
+        "SylvieSpielmann": 1749878630,
+        "OURSBLANC": 1759811167
       }
     },
     "pr05p3r": {
       "index": 5879,
       "owner_key": "7NuKffwB93YE7Kh8Vig7X668nsXe8y4Z9G7ybZt4GgLn",
-      "balance": 641083,
-      "membership_expire_on": 1701895587,
-      "next_cert_issuable_on": 1680692966,
+      "balance": 660769,
+      "membership_expire_on": 1725658482,
+      "next_cert_issuable_on": 1696752809,
       "certs_received": {
         "melia": 1697032650,
         "petiteberger": 1696907010,
@@ -69953,7 +71359,7 @@
     "GaellePriser": {
       "index": 4510,
       "owner_key": "7P1JgxQY9abaFfj7WAeQMp9KjLXbXUavZgncaW6kAVEx",
-      "balance": 662801,
+      "balance": 702487,
       "membership_expire_on": 1700269648,
       "next_cert_issuable_on": 1678799970,
       "certs_received": {
@@ -69971,9 +71377,9 @@
     "Senou86": {
       "index": 3692,
       "owner_key": "7P1p5CRtFrxqqTAnNki28MzkekeMwt2p2yo9w3S2weoY",
-      "balance": 995240,
+      "balance": 1034926,
       "membership_expire_on": 1718239686,
-      "next_cert_issuable_on": 1668924623,
+      "next_cert_issuable_on": 1695816019,
       "certs_received": {
         "Pensey20": 1717127273,
         "Philippe26": 1718396105,
@@ -69986,7 +71392,7 @@
     "mag": {
       "index": 10477,
       "owner_key": "7P3uQJNyDrxK8mCHGU2UnnGqDwRB6gGdAFTNYtmHPwxn",
-      "balance": 308105,
+      "balance": 347791,
       "membership_expire_on": 1699297120,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -70033,7 +71439,7 @@
     "Newo": {
       "index": 11805,
       "owner_key": "7PPvkhDTUCjq1JAbMh5WamuWwLPSb4794xrxFtsP9N4M",
-      "balance": 197523,
+      "balance": 237209,
       "membership_expire_on": 1709074981,
       "next_cert_issuable_on": 1691069524,
       "certs_received": {
@@ -70048,6 +71454,7 @@
         "MiguelHappyFamily": 1749685663,
         "SofiaDJ": 1755930799,
         "pedroponte": 1745516861,
+        "Rahhui": 1758398858,
         "CrackMalheiro05": 1741037252,
         "JoaoLestro": 1747625027,
         "Kian": 1740645825
@@ -70056,8 +71463,8 @@
     "DurandSylvie": {
       "index": 9617,
       "owner_key": "7PVY7QDDM8oTngfKgoajXqfS8nbtWpwoqWkfFc2zb881",
-      "balance": 314825,
-      "membership_expire_on": 1694803044,
+      "balance": 330845,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1674624836,
       "certs_received": {
         "Aude49": 1726809833,
@@ -70073,7 +71480,7 @@
     "latxurry": {
       "index": 11034,
       "owner_key": "7PYnjvJhCTB6DPsVGRzgMwwHaQgaGRCRbc9fp3UaDWn7",
-      "balance": 56288,
+      "balance": 16170,
       "membership_expire_on": 1703811072,
       "next_cert_issuable_on": 1680317930,
       "certs_received": {
@@ -70117,7 +71524,7 @@
     "Nadege51": {
       "index": 6757,
       "owner_key": "7Pqnk4w6fTjHgpbKgP1a7jPycGAwMyxCcBcvvTBBjC2C",
-      "balance": 357986,
+      "balance": 398672,
       "membership_expire_on": 1700525323,
       "next_cert_issuable_on": 1688652745,
       "certs_received": {
@@ -70186,8 +71593,8 @@
     "HolaSoyAlma": {
       "index": 9677,
       "owner_key": "7QHacpWfiH6e2ELiULrSYsEEZupSC1gntTibrzJSST7k",
-      "balance": 408268,
-      "membership_expire_on": 1694707112,
+      "balance": 436156,
+      "membership_expire_on": 1727196504,
       "next_cert_issuable_on": 1669188825,
       "certs_received": {
         "EnriKon": 1727376787,
@@ -70213,7 +71620,7 @@
     "Yol81": {
       "index": 9627,
       "owner_key": "7QMSCZbCZKFEQBjuaXpJgX8eqFCqrfMHwLfvL4pfR7cL",
-      "balance": 495938,
+      "balance": 510624,
       "membership_expire_on": 1723904749,
       "next_cert_issuable_on": 1666449395,
       "certs_received": {
@@ -70235,19 +71642,18 @@
     "gabyjoce974": {
       "index": 3578,
       "owner_key": "7QQCrQTfDJdUxmm2ZabG2skJtFKqFTb69ThQtYyNMJgH",
-      "balance": 749699,
+      "balance": 689385,
       "membership_expire_on": 1701120118,
-      "next_cert_issuable_on": 1688951635,
+      "next_cert_issuable_on": 1694187101,
       "certs_received": {
         "Boris974": 1702492087,
         "harry974": 1719508150,
         "Vanessa974": 1697928328,
         "Phil7": 1745643569,
         "LenaSuryMangas": 1715103554,
-        "Laetitia97421": 1696676289,
         "Fanny": 1711943811,
         "BabethMangas": 1712621624,
-        "luciano974": 1695748342,
+        "NnattNature": 1756758918,
         "Cindy974": 1721520596,
         "Grandmerekal": 1752703587,
         "LILOU974": 1720920613,
@@ -70278,7 +71684,7 @@
     "SylC185-2": {
       "index": 9973,
       "owner_key": "7QXHSFYBTv9wUfc1hmP115AGMuAA4QgHARdU6yxbDnZr",
-      "balance": 336229,
+      "balance": 425915,
       "membership_expire_on": 1706286018,
       "next_cert_issuable_on": 1679924865,
       "certs_received": {
@@ -70311,8 +71717,8 @@
     "guymatt": {
       "index": 9506,
       "owner_key": "7QYA7AuyXwbfFWCGhoHN8kUUAVLjndBbDXguERMqjZzu",
-      "balance": 376170,
-      "membership_expire_on": 0,
+      "balance": 411448,
+      "membership_expire_on": 1725622123,
       "next_cert_issuable_on": 1666186577,
       "certs_received": {
         "FraBro": 1725855034,
@@ -70329,7 +71735,7 @@
     "amipierre": {
       "index": 8042,
       "owner_key": "7Qdr4QhchkxPx8otfoa5UJAu97NEK3oLM7E3bxFjeC9v",
-      "balance": 867550,
+      "balance": 907236,
       "membership_expire_on": 1717529785,
       "next_cert_issuable_on": 1662606589,
       "certs_received": {
@@ -70347,7 +71753,7 @@
     "farahmiftah": {
       "index": 4417,
       "owner_key": "7QfESk6re4s4Z4urKrJYaXhLDpAtzawbc6iu4zEAXKr2",
-      "balance": 897724,
+      "balance": 937410,
       "membership_expire_on": 1702816328,
       "next_cert_issuable_on": 1675136998,
       "certs_received": {
@@ -70362,7 +71768,7 @@
     "BeaSarria": {
       "index": 11304,
       "owner_key": "7QfLfds8jki6MkfbLqroMmk6zZ1Htrf1dHh2j6aEaUsm",
-      "balance": 375833,
+      "balance": 395519,
       "membership_expire_on": 1705354791,
       "next_cert_issuable_on": 1691221216,
       "certs_received": {
@@ -70372,6 +71778,7 @@
         "RAMA62": 1737455058,
         "Rene13": 1752360974,
         "cascabel": 1747071194,
+        "EscuelaTephira": 1756178785,
         "Pollito": 1745905575,
         "AmarPrakash": 1753077952,
         "Ailime": 1737180137,
@@ -70408,18 +71815,20 @@
     "lurdespinho": {
       "index": 11709,
       "owner_key": "7QgsZs4YrpJ91MKvzQGwj5dezttVAm7Y15s5ZiYpg9hX",
-      "balance": 198978,
+      "balance": 238664,
       "membership_expire_on": 1708480446,
-      "next_cert_issuable_on": 1693143768,
+      "next_cert_issuable_on": 1696331677,
       "certs_received": {
         "Ferpires": 1747027850,
         "DoisLobos": 1744223661,
         "RitApolinario": 1751479790,
         "Kristo": 1740122781,
+        "Luis_Varela": 1759386034,
         "Judit137": 1754966262,
         "anapatapouf": 1740124703,
         "PatriciaDoVale": 1747204362,
         "jvinagre": 1747614427,
+        "artenomar": 1756360185,
         "Maksim": 1750412036,
         "otto": 1746932201,
         "RafaMalheiro": 1747354430,
@@ -70430,7 +71839,8 @@
         "JorgeDraven": 1750241199,
         "RosaAlvesPinho": 1749800033,
         "ElisabeteMartins": 1744690853,
-        "Kian": 1741851441
+        "Kian": 1741851441,
+        "ManuelSoares": 1757202104
       }
     },
     "Bernd": {
@@ -70439,14 +71849,7 @@
       "balance": 369218,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Ghadjo": 1696020465,
-        "Neptune1306": 1694883099,
-        "Vievillejp": 1694883099,
-        "loulouchantes": 1694883099,
-        "Domimido": 1695349853,
-        "SalleeJo": 1694883461
-      }
+      "certs_received": {}
     },
     "Joe": {
       "index": 3147,
@@ -70476,9 +71879,9 @@
     "Yvelineplantes": {
       "index": 12710,
       "owner_key": "7RGusCDMLY74JJGMLPMCpifEWgTpCDm9YcNrRBQGnH6g",
-      "balance": 162760,
+      "balance": 207446,
       "membership_expire_on": 1715450813,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695959998,
       "certs_received": {
         "Katou": 1747165954,
         "nathanaelf": 1747335000,
@@ -70510,9 +71913,9 @@
     "Yvespierre": {
       "index": 13193,
       "owner_key": "7RVigDiu7Un9qPUFkDdQq7vJG7aQciwDHDTMcJsBdgCA",
-      "balance": 189724,
+      "balance": 232710,
       "membership_expire_on": 1721348704,
-      "next_cert_issuable_on": 1689947237,
+      "next_cert_issuable_on": 1693837326,
       "certs_received": {
         "Etipol61": 1752908854,
         "Do11": 1752907333,
@@ -70525,9 +71928,9 @@
     "yanis07": {
       "index": 5396,
       "owner_key": "7RdPgu1PujspTEBAkU2rQEwd8EpTKxxaZDN15fmcKGo6",
-      "balance": 800677,
+      "balance": 840363,
       "membership_expire_on": 1708966879,
-      "next_cert_issuable_on": 1690078697,
+      "next_cert_issuable_on": 1695792270,
       "certs_received": {
         "NicolasPepin": 1747585952,
         "jaya": 1748912212,
@@ -70538,6 +71941,7 @@
         "Tof26": 1747586802,
         "Krikiribes": 1744395024,
         "Orquiepanda": 1725929517,
+        "Margaux776901": 1758846227,
         "CYRIAK07": 1744512067,
         "CecileFenyohazi07": 1744608893,
         "Tounette07": 1706999048
@@ -70546,9 +71950,9 @@
     "stella": {
       "index": 7588,
       "owner_key": "7Rh6vRFrsocfiG2B4YUQBvnxeYU2J6TQTosCMjYJT8rG",
-      "balance": 587296,
+      "balance": 626982,
       "membership_expire_on": 1706410542,
-      "next_cert_issuable_on": 1687844493,
+      "next_cert_issuable_on": 1696498365,
       "certs_received": {
         "ISABELLEDR": 1712788357,
         "Danysa": 1712092438,
@@ -70563,18 +71967,15 @@
     "Laureline": {
       "index": 2862,
       "owner_key": "7RnshUbsHpCmscsRT63T9H7czAAdtxHbRzpFMxj2iFni",
-      "balance": 683562,
+      "balance": 723248,
       "membership_expire_on": 1712263141,
       "next_cert_issuable_on": 1686441699,
       "certs_received": {
-        "Lonel": 1695422329,
         "Christian30": 1701148772,
         "Maelline": 1714160223,
-        "Aneuf": 1694740535,
         "MoulinMuriel": 1727811111,
         "ChristopheRobine": 1717724588,
         "Alicia05": 1750030194,
-        "Maddy": 1695406533,
         "Gilrib": 1746408727
       }
     },
@@ -70589,12 +71990,13 @@
     "Shelley": {
       "index": 13328,
       "owner_key": "7RvNJSPkzj4YYvxtUjbgpas7JbmBbUj4ZoymK5hQpxXa",
-      "balance": 126632,
+      "balance": 435018,
       "membership_expire_on": 1722361898,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Ladjack": 1753917233,
         "Lucyinthesky": 1754285571,
+        "Bricalie": 1757747150,
         "Florane": 1754336265,
         "Valoo": 1754029155,
         "CILCEE": 1753916659
@@ -70612,6 +72014,20 @@
         "Logan": 1739938469
       }
     },
+    "SittingSimon": {
+      "index": 13706,
+      "owner_key": "7S6aqqWJsg6X1PNBvi4YuLTQ1JEWmtnCi2NKzBkSni6i",
+      "balance": 36468,
+      "membership_expire_on": 1725909158,
+      "next_cert_issuable_on": 1696570108,
+      "certs_received": {
+        "Carma2310": 1757719216,
+        "Vivakvo": 1758231575,
+        "Sandcreart": 1757482997,
+        "Naty31": 1758866560,
+        "MarieFrance31": 1757801397
+      }
+    },
     "Eloj": {
       "index": 805,
       "owner_key": "7SFLBqjSTMHnpJzQk35ahPaS3b7uXMxPS8m596vKZztU",
@@ -70639,9 +72055,9 @@
     "Anna84": {
       "index": 12649,
       "owner_key": "7SMPdQjbK8yMNe6Q4bkwhpu26p47GNnRjRDoWzd2uXyh",
-      "balance": 118412,
+      "balance": 92598,
       "membership_expire_on": 1714760278,
-      "next_cert_issuable_on": 1691740790,
+      "next_cert_issuable_on": 1696731757,
       "certs_received": {
         "Unity": 1746462257,
         "Nubuk": 1746462721,
@@ -70661,11 +72077,11 @@
     "SolangeAIME": {
       "index": 945,
       "owner_key": "7SX45B6WJ2ceUCcZQUR6rd5Z3o4FizACbA2eGK6pPVYQ",
-      "balance": 458815,
+      "balance": 498501,
       "membership_expire_on": 1724319346,
-      "next_cert_issuable_on": 1683681146,
+      "next_cert_issuable_on": 1693901295,
       "certs_received": {
-        "Vivakvo": 1697238336,
+        "Vivakvo": 1757558075,
         "MARTIGOUGOUGNETTE": 1710966210,
         "Toma": 1710835312,
         "Henri31": 1735676015,
@@ -70675,7 +72091,6 @@
         "marienarjoux": 1709921889,
         "PascalGuillemain": 1704659194,
         "LICORNECORNE": 1735675606,
-        "SuzyFrutti": 1694364036,
         "Elleiramt10": 1738726188,
         "Fabricealexandre": 1745217245,
         "RosalieBAYLE": 1735674370
@@ -70702,7 +72117,7 @@
     "bou2fil": {
       "index": 32,
       "owner_key": "7Smuv1qQV1rQAPrxjfeEnrwhnCePuHm5twkeJm4nEyJX",
-      "balance": 1150309,
+      "balance": 1189995,
       "membership_expire_on": 1713963845,
       "next_cert_issuable_on": 1689634278,
       "certs_received": {
@@ -70719,7 +72134,7 @@
     "Choco": {
       "index": 1678,
       "owner_key": "7SrcsgCQ4pgmSbQRTTuvr4HxQXEsDsw5CUnXEjE2kZCZ",
-      "balance": 176048,
+      "balance": 320734,
       "membership_expire_on": 1717535950,
       "next_cert_issuable_on": 1692099480,
       "certs_received": {
@@ -70750,24 +72165,18 @@
     "CharlineNature": {
       "index": 5776,
       "owner_key": "7SsnB9VohieYu9XiDYWaP2ZVUG4gq1TtigmGTWk4tN1V",
-      "balance": 494084,
+      "balance": 533770,
       "membership_expire_on": 1718724227,
       "next_cert_issuable_on": 1687238627,
       "certs_received": {
         "MarineDR": 1733855201,
         "Martine51": 1700252922,
-        "IsabelleGlorian": 1695822279,
         "Ded": 1717299511,
-        "Shadow": 1696624409,
-        "Pascaleg": 1696209606,
-        "Erikem": 1695793814,
-        "CClement": 1696208682,
         "Benbeck": 1743701135,
         "AngeEden": 1725598919,
         "Sylvania51": 1711503271,
         "Audr3y": 1729624898,
         "Syldess": 1739776873,
-        "hypericum": 1695798219,
         "OValReiki": 1724593913,
         "Martienne": 1724622716
       }
@@ -70783,7 +72192,7 @@
     "bienetreettao": {
       "index": 4142,
       "owner_key": "7Su3UBD1o2SEnsN4AgQUEYwvbdg9yrZqwLeex6msVTSu",
-      "balance": 1785664,
+      "balance": 1825350,
       "membership_expire_on": 1720567439,
       "next_cert_issuable_on": 1689083477,
       "certs_received": {
@@ -70792,13 +72201,14 @@
         "Joailes38": 1720825614,
         "Lucas_Desroches": 1724096306,
         "thierry38": 1720817204,
-        "Coco46": 1724023104
+        "Coco46": 1724023104,
+        "Susheela": 1757157959
       }
     },
     "pepelepue17": {
       "index": 3430,
       "owner_key": "7SvL6MQq47gaFeVDGeDtut69fubzAcF9jUkikWLbmfa2",
-      "balance": 626422,
+      "balance": 666108,
       "membership_expire_on": 1716122314,
       "next_cert_issuable_on": 1669138685,
       "certs_received": {
@@ -70822,7 +72232,7 @@
     "GUL40_L15": {
       "index": 8896,
       "owner_key": "7T8EbK7zVunctNyFrRAfL6Tbhx2YgrWujwaKwnJy35rF",
-      "balance": 425598,
+      "balance": 465284,
       "membership_expire_on": 1716414380,
       "next_cert_issuable_on": 1672565394,
       "certs_received": {
@@ -70839,9 +72249,9 @@
     "Reumy": {
       "index": 717,
       "owner_key": "7TCAWZ79HozNojF9oc9V3P1C3fqgZbN91xxy4recMUkU",
-      "balance": 1495027,
+      "balance": 1535969,
       "membership_expire_on": 1710806465,
-      "next_cert_issuable_on": 1692808260,
+      "next_cert_issuable_on": 1696239943,
       "certs_received": {
         "Vee": 1698692318,
         "Ninamaste": 1742593234,
@@ -70872,15 +72282,28 @@
         "Cathy26": 1734388988,
         "gedeon26": 1718180368,
         "Spartacus": 1756075025,
-        "OLDBLACK84": 1696056051,
         "Sev07": 1707028340,
         "Yvv": 1726922277
       }
     },
+    "Odile001": {
+      "index": 13660,
+      "owner_key": "7TEFL9QvLZgoTVkkdZfAiLKqDLVT3wYJSNBdNwk1D7uS",
+      "balance": 13936,
+      "membership_expire_on": 1722275187,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "VeroDeJetsDoux": 1758777458,
+        "TonyCoco": 1758749295,
+        "Margaux776901": 1758749594,
+        "VeroniqueD": 1758776391,
+        "NicolasBriet": 1758746264
+      }
+    },
     "Neo26": {
       "index": 6819,
       "owner_key": "7TLzjm7nYBv9MbmuuD2UJX3ZS4vzkPnhEvxA3jDUzcvX",
-      "balance": 578545,
+      "balance": 618231,
       "membership_expire_on": 1706838829,
       "next_cert_issuable_on": 1683203755,
       "certs_received": {
@@ -70896,7 +72319,7 @@
     "LeoD": {
       "index": 10323,
       "owner_key": "7TN3JgQRSbGT4Xo7rnZXiC849orQVxa8PJCL2Aioj5jq",
-      "balance": 290036,
+      "balance": 329722,
       "membership_expire_on": 1699305759,
       "next_cert_issuable_on": 1671368418,
       "certs_received": {
@@ -70912,7 +72335,7 @@
     "Iperloop": {
       "index": 11053,
       "owner_key": "7TNdBkEY5vyAS6MnKdj8bvxiY6qkbvveAM12UYEQ8asU",
-      "balance": 247863,
+      "balance": 287549,
       "membership_expire_on": 1702651314,
       "next_cert_issuable_on": 1687401295,
       "certs_received": {
@@ -70931,7 +72354,7 @@
     "LILOU974": {
       "index": 3805,
       "owner_key": "7TRTRviiNLfuXgNcjeEZkeykyXkVqjjCwrA5ERnzr7qV",
-      "balance": 409955,
+      "balance": 449641,
       "membership_expire_on": 1708440141,
       "next_cert_issuable_on": 1682220951,
       "certs_received": {
@@ -70943,10 +72366,8 @@
         "gabyjoce974": 1717543681,
         "Brunov974": 1726066794,
         "frantzsury": 1709060823,
-        "Evan97421": 1695705313,
         "NOE974": 1722694694,
         "Myriam97410": 1746539614,
-        "Alicia97421": 1695705313,
         "Aeden974": 1722020274,
         "pampermacole": 1716005696,
         "mancity08": 1723324618
@@ -70955,8 +72376,8 @@
     "FSuarez108": {
       "index": 9682,
       "owner_key": "7TTH3KofmehAqnsFa12xuoxNkmuemCw2BEeESLQJdA5q",
-      "balance": 117934,
-      "membership_expire_on": 1694572047,
+      "balance": 92376,
+      "membership_expire_on": 1726790795,
       "next_cert_issuable_on": 1686831892,
       "certs_received": {
         "salmaluna": 1726463404,
@@ -70967,6 +72388,7 @@
         "OsKarTel": 1731472420,
         "PerePinyolTortosa": 1728933793,
         "Faquantharmonie": 1730660398,
+        "Nieves": 1756618435,
         "quiquecaballero": 1731924149,
         "Ardan1977": 1731490464,
         "sonialarraz": 1727393177,
@@ -70985,27 +72407,22 @@
     "Pascaleg": {
       "index": 5730,
       "owner_key": "7TfGrWzwqsrS5tqDko2MSErQea7vLx8GvybpJUfiJhEY",
-      "balance": 202043,
+      "balance": 229729,
       "membership_expire_on": 1716670521,
       "next_cert_issuable_on": 1686999506,
       "certs_received": {
         "KreenBulle51": 1699143511,
         "LauraPlisson": 1712035708,
-        "DelphineDietsch": 1695355856,
-        "Martine51": 1695449586,
         "etsaman": 1735003871,
         "LauQui": 1717051456,
         "MarieLeg": 1737177979,
         "RosadoraLafee": 1701063482,
         "romaincas": 1705028166,
         "Emmanuailes": 1742880372,
-        "Olacelou": 1695863247,
         "Luna": 1722036977,
-        "thierryR51": 1695366065,
         "Duke": 1707796491,
         "Marieboucle": 1732586974,
         "SKOSA": 1755064154,
-        "FatimaMIEL51": 1695777748,
         "Fab34980": 1742880372,
         "Marielac": 1730921145,
         "MarieMouna": 1741487890,
@@ -71015,13 +72432,12 @@
     "Mareeloo": {
       "index": 2026,
       "owner_key": "7Tn5yqmsyjeNBBnKCtMJXeA4wBr2FsNHfS4EEGNHzUqd",
-      "balance": 1269700,
+      "balance": 1309386,
       "membership_expire_on": 1724520641,
       "next_cert_issuable_on": 1664375554,
       "certs_received": {
         "sro": 1717054071,
         "Jeangraine": 1720668249,
-        "LaureFemmeVanne": 1696233513,
         "Yemo": 1705255945,
         "oudinus": 1708798999,
         "NadiaPaillard": 1722219437,
@@ -71039,7 +72455,7 @@
     "MARY30": {
       "index": 2693,
       "owner_key": "7Tx7qHspqwJ8VqEuqzgR3p3D5fJyFGMJTM62QfDcFkBb",
-      "balance": 661339,
+      "balance": 721025,
       "membership_expire_on": 1719942565,
       "next_cert_issuable_on": 1682334604,
       "certs_received": {
@@ -71055,7 +72471,6 @@
         "Tanda": 1712613588,
         "Coco46": 1717986198,
         "Unika": 1713504708,
-        "GaspardForissier": 1695184692,
         "donald1972": 1745092522,
         "MSarrazin": 1707855290,
         "TheliauMercier": 1745617883
@@ -71084,7 +72499,7 @@
     "AlainLeThomas": {
       "index": 11097,
       "owner_key": "7U84DuaDmdvi5g38KS4BKYrey2QsN42LPpusvbBM4qxd",
-      "balance": 425264,
+      "balance": 64950,
       "membership_expire_on": 1702240770,
       "next_cert_issuable_on": 1673230545,
       "certs_received": {
@@ -71106,7 +72521,7 @@
     "Baloo": {
       "index": 11072,
       "owner_key": "7UCRVzEL2E4AxWoZV8nuTMbuya9M1Wb4wd8dPumaVVJq",
-      "balance": 259863,
+      "balance": 299549,
       "membership_expire_on": 1702741727,
       "next_cert_issuable_on": 1681734216,
       "certs_received": {
@@ -71131,9 +72546,9 @@
     "Davida": {
       "index": 8693,
       "owner_key": "7UEKY7qK2wPt6Yn57NqjLBtH5U7imAzrEVhAum8q2nNj",
-      "balance": 282379,
+      "balance": 322065,
       "membership_expire_on": 1713657890,
-      "next_cert_issuable_on": 1685759726,
+      "next_cert_issuable_on": 1693732071,
       "certs_received": {
         "Manu_El": 1739680257,
         "ErickG_G": 1718917371,
@@ -71167,7 +72582,7 @@
     "xMike": {
       "index": 6475,
       "owner_key": "7UPnfc8KtQfFVUjyWJiGh9E6K1hQ3adDMtNkWqVhEMZz",
-      "balance": 517442,
+      "balance": 557128,
       "membership_expire_on": 1710204924,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -71181,9 +72596,9 @@
     "oliviersimonon": {
       "index": 12211,
       "owner_key": "7UUM2Ldx8aHXXD7p6JABXVPQhpuV4DNkMn8FtovPVGJH",
-      "balance": 223832,
+      "balance": 239018,
       "membership_expire_on": 1710591473,
-      "next_cert_issuable_on": 1691281419,
+      "next_cert_issuable_on": 1696079744,
       "certs_received": {
         "Nouchka1": 1743440756,
         "AlphaCentauri": 1750229999,
@@ -71213,7 +72628,7 @@
     "baladane": {
       "index": 11333,
       "owner_key": "7Uf9gLv7hReq4eLheUn3jxhqZE7bihcDLJHh5Wpi7WuJ",
-      "balance": 233888,
+      "balance": 273574,
       "membership_expire_on": 1706048629,
       "next_cert_issuable_on": 1674787274,
       "certs_received": {
@@ -71246,21 +72661,31 @@
     "Augusta24": {
       "index": 13228,
       "owner_key": "7V7UrET2UdAxjjRLv56yWaG8dzgoBcvrSnjySJfxyRNy",
-      "balance": 70052,
+      "balance": 151238,
       "membership_expire_on": 1721659552,
-      "next_cert_issuable_on": 1693276190,
+      "next_cert_issuable_on": 1696638592,
       "certs_received": {
         "RosyRio": 1753259803,
         "Rebel": 1754537477,
+        "Framboisefraise": 1757457725,
+        "rockwater": 1757439010,
         "Tembo": 1754333125,
         "Ashawik": 1753226477,
         "AgnesJs": 1754368119,
         "laurencef": 1753294999,
+        "Artdevivre": 1757448026,
         "Sylvieb": 1754445145,
         "ChrisMagi": 1754798888,
         "Daniele8": 1753260303,
         "SteffiH": 1753225768,
+        "Nadia": 1757756984,
         "SiLi": 1754902980,
+        "Petfa": 1757555341,
+        "Mmemonica": 1758609663,
+        "Ton20": 1756664223,
+        "Myriam1912": 1757439010,
+        "NoucheMairy": 1757454296,
+        "Isabiloba": 1757457142,
         "LUCKY": 1753222464
       }
     },
@@ -71275,9 +72700,9 @@
     "GENEV": {
       "index": 3975,
       "owner_key": "7VW4wngSkNJVxuL9XgntF3E4qcyo6rVkyn63WaFeC3SS",
-      "balance": 180878,
+      "balance": 30564,
       "membership_expire_on": 1713830135,
-      "next_cert_issuable_on": 1682344535,
+      "next_cert_issuable_on": 1695996242,
       "certs_received": {
         "Tahiti": 1728268207,
         "GuyPeq11": 1730243552,
@@ -71294,7 +72719,7 @@
     "Nubuk": {
       "index": 12386,
       "owner_key": "7VbA4iswTEHADASjprKizeomE3C7AEP215goZHTtLNXV",
-      "balance": 143112,
+      "balance": 182798,
       "membership_expire_on": 1712782643,
       "next_cert_issuable_on": 1683588247,
       "certs_received": {
@@ -71308,7 +72733,7 @@
     "JeanLucAime": {
       "index": 6146,
       "owner_key": "7VcUFZU3o5NhbSi9LKcSauH14s745h8mvsdJULHb9PyL",
-      "balance": 566978,
+      "balance": 606664,
       "membership_expire_on": 1712784959,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -71323,7 +72748,7 @@
     "Nini12": {
       "index": 8432,
       "owner_key": "7VdScoxWnuxibYKiRQGyCiHgfNLakRUhWJuzQYJksv4M",
-      "balance": 488562,
+      "balance": 474348,
       "membership_expire_on": 1713311748,
       "next_cert_issuable_on": 1689288712,
       "certs_received": {
@@ -71346,8 +72771,8 @@
     "Micheline": {
       "index": 9861,
       "owner_key": "7Vh5kL5jZkLUWR2q4hWJhVBiWYqBg8x8uahAhPoFWAZ3",
-      "balance": 293583,
-      "membership_expire_on": 1695133326,
+      "balance": 267269,
+      "membership_expire_on": 1725367190,
       "next_cert_issuable_on": 1679054779,
       "certs_received": {
         "Oree": 1728500099,
@@ -71360,7 +72785,7 @@
     "Magnolia25": {
       "index": 7920,
       "owner_key": "7VoU9HdiidBPbiPWVf1b7WjqM1v2wb3eU8THM1rCNdXY",
-      "balance": 415170,
+      "balance": 454856,
       "membership_expire_on": 1712322982,
       "next_cert_issuable_on": 1680837382,
       "certs_received": {
@@ -71375,7 +72800,7 @@
     "CharlieCO": {
       "index": 12092,
       "owner_key": "7VpKCZ36EdFqbPFwYFWUzoBoTaTFaRonuJmuvtAP2DTr",
-      "balance": 171948,
+      "balance": 211634,
       "membership_expire_on": 1711106400,
       "next_cert_issuable_on": 1683515308,
       "certs_received": {
@@ -71391,7 +72816,7 @@
     "LEO06": {
       "index": 4721,
       "owner_key": "7VtyJNw4FNrEpDoWjkW9TjfMzJy2g98Dgv95kQjyJx3o",
-      "balance": 920663,
+      "balance": 960349,
       "membership_expire_on": 1708562033,
       "next_cert_issuable_on": 1685581401,
       "certs_received": {
@@ -71409,10 +72834,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Recycleur53": 1698806630,
-        "PatrickGilles": 1695091791,
-        "AbelGilles": 1695092132,
-        "DominiqueRoudiere": 1695093537
+        "Recycleur53": 1698806630
       }
     },
     "Wywern": {
@@ -71426,9 +72848,9 @@
     "ClarySM": {
       "index": 9807,
       "owner_key": "7WG11A82NahPqPaXWwfpSGtezFrCnv5TDAFKo8trakc8",
-      "balance": 322378,
+      "balance": 348564,
       "membership_expire_on": 1722991911,
-      "next_cert_issuable_on": 1687969849,
+      "next_cert_issuable_on": 1694662675,
       "certs_received": {
         "OctavioAG": 1740463443,
         "Taknara": 1736948100,
@@ -71477,9 +72899,9 @@
     "Annick84": {
       "index": 11200,
       "owner_key": "7WcMjQH4h3bbHB6B3uvXDPhkJqvZQoJCoTAbJUbA2UC7",
-      "balance": 146296,
+      "balance": 185982,
       "membership_expire_on": 1705098555,
-      "next_cert_issuable_on": 1692178053,
+      "next_cert_issuable_on": 1696748820,
       "certs_received": {
         "Feerique": 1751854290,
         "Pat26": 1736669110,
@@ -71511,7 +72933,7 @@
     "Trevaly": {
       "index": 11017,
       "owner_key": "7Wh96VNqNEbwzhWWTp5U7i6JVPzaDQ723syzH7qcUVCF",
-      "balance": 289276,
+      "balance": 328962,
       "membership_expire_on": 1703651752,
       "next_cert_issuable_on": 1679063285,
       "certs_received": {
@@ -71527,7 +72949,7 @@
     "YvesGouverneur": {
       "index": 7449,
       "owner_key": "7Wn3FdrBWiJZYNHbtrVNuuWDt8zkk3vCug4hGcTEbMB8",
-      "balance": 368757,
+      "balance": 408443,
       "membership_expire_on": 1702999490,
       "next_cert_issuable_on": 1678070044,
       "certs_received": {
@@ -71549,7 +72971,7 @@
     "Salim": {
       "index": 9394,
       "owner_key": "7WnxYcrD3QhLR4VXjcGBdycb9bf768te2g7QdJLyxuvD",
-      "balance": 322948,
+      "balance": 362634,
       "membership_expire_on": 1719752118,
       "next_cert_issuable_on": 1662950955,
       "certs_received": {
@@ -71579,7 +73001,7 @@
     "CaroleVezelay": {
       "index": 10987,
       "owner_key": "7WthmxyY936jYoioqBMBb9paoJ8sLq154K9PjMPa68MJ",
-      "balance": 136417,
+      "balance": 176103,
       "membership_expire_on": 1702474779,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -71599,15 +73021,14 @@
       "next_cert_issuable_on": 1662967456,
       "certs_received": {
         "EveRen": 1713575755,
-        "GeneVieve": 1695278068,
         "JGlExplorateur": 1705877333
       }
     },
     "HugoTrib": {
       "index": 9870,
       "owner_key": "7WxDKsCTBa2FDPCeLYdYkgo9Gdmdv6tf75nbiY1dnFBE",
-      "balance": 346742,
-      "membership_expire_on": 1696537646,
+      "balance": 384272,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1667825260,
       "certs_received": {
         "gabindom": 1725120790,
@@ -71624,9 +73045,9 @@
     "Jag": {
       "index": 11899,
       "owner_key": "7X7Lcgo7vFmzx3sZy98tQ8zwyZ9XxTvVXeAhKHwdB7KH",
-      "balance": 170410,
+      "balance": 210096,
       "membership_expire_on": 1706910725,
-      "next_cert_issuable_on": 1679906589,
+      "next_cert_issuable_on": 1695215574,
       "certs_received": {
         "Isabeille": 1738644144,
         "GaelC": 1741320962,
@@ -71646,8 +73067,8 @@
     "ChristineC-22": {
       "index": 9780,
       "owner_key": "7XYvfGhKywnca5N83S2v3SJB6euKpMpMM6RHQUZb4JsG",
-      "balance": 358055,
-      "membership_expire_on": 1696411439,
+      "balance": 393429,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1676769295,
       "certs_received": {
         "MicheleC": 1727986556,
@@ -71660,7 +73081,7 @@
     "TerreSacree": {
       "index": 10273,
       "owner_key": "7XaYcMZjsQBVSgtXDZUhqhX4isscEB3vEkqqM7vE7rSq",
-      "balance": 315872,
+      "balance": 355558,
       "membership_expire_on": 1699307649,
       "next_cert_issuable_on": 1692885348,
       "certs_received": {
@@ -71685,7 +73106,7 @@
     "Sekoya": {
       "index": 4589,
       "owner_key": "7XcXB9UTHFeLok7mkNwcQrCnEhYDrWSpRjkv2EbDsK39",
-      "balance": 740700,
+      "balance": 780386,
       "membership_expire_on": 1700104788,
       "next_cert_issuable_on": 1670172651,
       "certs_received": {
@@ -71702,7 +73123,7 @@
         "Nono13": 1740167089,
         "filosteo": 1708949315,
         "Evelyne": 1728693611,
-        "hypericum": 1697486692,
+        "hypericum": 1759432732,
         "MissChaChaCha": 1712864780,
         "sens": 1710279811
       }
@@ -71753,7 +73174,7 @@
     "adeline": {
       "index": 6144,
       "owner_key": "7Y5fFWNLdmSBfrznnnF1xuM3pfFQNVBrvZ4q1LU28Z84",
-      "balance": 510374,
+      "balance": 550060,
       "membership_expire_on": 1701126829,
       "next_cert_issuable_on": 1686987762,
       "certs_received": {
@@ -71772,7 +73193,7 @@
     "Chucho": {
       "index": 12603,
       "owner_key": "7YD3GHKKkNiFpYGJuvTa82Uvh8xsKKrGtZEEtKw1zAt6",
-      "balance": 123584,
+      "balance": 143270,
       "membership_expire_on": 1714839667,
       "next_cert_issuable_on": 1686402382,
       "certs_received": {
@@ -71789,7 +73210,7 @@
     "amandinehinnekens": {
       "index": 6325,
       "owner_key": "7YS9oWb5eM6T6Y1TFanqQHwZbk2z92Zu2D63MoBP6LVT",
-      "balance": 553497,
+      "balance": 595183,
       "membership_expire_on": 1698615906,
       "next_cert_issuable_on": 1674304571,
       "certs_received": {
@@ -71840,7 +73261,7 @@
     "MarcAusten": {
       "index": 11405,
       "owner_key": "7YUhHuGE4kVV9HBm2jFu6tHm5CtHTuqvbFQXMewdwiw4",
-      "balance": 221593,
+      "balance": 261279,
       "membership_expire_on": 1706400055,
       "next_cert_issuable_on": 1682562239,
       "certs_received": {
@@ -71856,8 +73277,8 @@
     "Elio": {
       "index": 10036,
       "owner_key": "7YbJc6C7TYz1FiwGRmEwN76Y9JLY1PUZYtk7CzkRzsHX",
-      "balance": 333034,
-      "membership_expire_on": 1697727626,
+      "balance": 372720,
+      "membership_expire_on": 1725362917,
       "next_cert_issuable_on": 1686119657,
       "certs_received": {
         "Maryc": 1729380032,
@@ -71874,7 +73295,7 @@
     "MariellePropiac": {
       "index": 11858,
       "owner_key": "7YduJqQeaM9T4JhyMcNTqVo45kdi2Q2i8RTX2DeybiJU",
-      "balance": 192087,
+      "balance": 231773,
       "membership_expire_on": 1707342258,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -71888,7 +73309,7 @@
     "Nathaliefa": {
       "index": 9577,
       "owner_key": "7YjDwspmEXHeuKGQ288Ycm3QjrxBDUfPxwemnaF3LRfB",
-      "balance": 420081,
+      "balance": 459767,
       "membership_expire_on": 1720522391,
       "next_cert_issuable_on": 1668945967,
       "certs_received": {
@@ -71911,7 +73332,7 @@
     "Frankie": {
       "index": 7062,
       "owner_key": "7YrDkoiviu2YZ6hCZX97neY3vyBt2VknCvFQK44eWdFz",
-      "balance": 530255,
+      "balance": 569941,
       "membership_expire_on": 1702084266,
       "next_cert_issuable_on": 1680666100,
       "certs_received": {
@@ -71938,7 +73359,7 @@
     "Marie09": {
       "index": 10550,
       "owner_key": "7YraEcEbBisAXRQ5aWCK65py8jj6FwtcpQUHk3X7kbGa",
-      "balance": 352810,
+      "balance": 392496,
       "membership_expire_on": 1698355376,
       "next_cert_issuable_on": 1673257574,
       "certs_received": {
@@ -71953,7 +73374,7 @@
     "Cobart31": {
       "index": 1059,
       "owner_key": "7YschDTUmy13KZQzrDzNkvDE43RzK6JtUqPvSuiqoqZi",
-      "balance": 1355628,
+      "balance": 1395314,
       "membership_expire_on": 1700338255,
       "next_cert_issuable_on": 1655897879,
       "certs_received": {
@@ -71982,9 +73403,9 @@
     "Juttasmile": {
       "index": 11536,
       "owner_key": "7Z6EzZG3NbKUSvrSjb8sLtvmF8AAZcUT3utR5XavDdv5",
-      "balance": 180344,
+      "balance": 216030,
       "membership_expire_on": 1704847917,
-      "next_cert_issuable_on": 1692458519,
+      "next_cert_issuable_on": 1694849297,
       "certs_received": {
         "Icaunaise": 1737787181,
         "Chene": 1737787376,
@@ -71997,8 +73418,8 @@
     "Bruni": {
       "index": 6066,
       "owner_key": "7Z9qmDGHSQ1GkSPYGkb7vnMFXi8xKvv3jaWjLu69WD9u",
-      "balance": 694265,
-      "membership_expire_on": 1694901913,
+      "balance": 723211,
+      "membership_expire_on": 1727344618,
       "next_cert_issuable_on": 1664171845,
       "certs_received": {
         "DonQuiche": 1726473582,
@@ -72019,7 +73440,7 @@
     "Memogreg": {
       "index": 8715,
       "owner_key": "7ZMZ8KZADvX3GrPMecdARHXHQG2sKbHwvGKxy3hkQP7F",
-      "balance": 465221,
+      "balance": 504907,
       "membership_expire_on": 1716336615,
       "next_cert_issuable_on": 1687416075,
       "certs_received": {
@@ -72031,13 +73452,14 @@
         "Pepita": 1749770777,
         "Gud": 1718745495,
         "Nhelou22": 1718748625,
-        "bert": 1749600413
+        "bert": 1749600413,
+        "Pipootz": 1755372959
       }
     },
     "JoelleGllrd": {
       "index": 8796,
       "owner_key": "7ZR9b6zoELMg9xU3EkhVGgeihfJPpK4Zhp8PnkQA3WVj",
-      "balance": 366606,
+      "balance": 406292,
       "membership_expire_on": 1713795764,
       "next_cert_issuable_on": 1683375875,
       "certs_received": {
@@ -72052,7 +73474,7 @@
     "Cyprien": {
       "index": 10648,
       "owner_key": "7ZTJqcJ3M8hytTkcVDQQAT61WWSdEM97kQHdUmjw8BSU",
-      "balance": 297556,
+      "balance": 367242,
       "membership_expire_on": 1699957784,
       "next_cert_issuable_on": 1682685365,
       "certs_received": {
@@ -72064,6 +73486,20 @@
         "Fred04": 1744869348
       }
     },
+    "FlodesHalles": {
+      "index": 13747,
+      "owner_key": "7ZVXXtJKANqiYd1B1sYWCUvo8nJh6cKLdAMCE1BnHWQJ",
+      "balance": 5256,
+      "membership_expire_on": 1727906708,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "JanineBoitel": 1759650024,
+        "ChristianeClavelier": 1759685004,
+        "ChristianMichelChampon": 1759709058,
+        "CatherineCPo": 1759696986,
+        "AnneBoisjoli": 1759688343
+      }
+    },
     "Annelise25350": {
       "index": 2393,
       "owner_key": "7ZYi85PWcZPYPobmnBuTnuRzsAF1vGrDaddJjNpNt223",
@@ -72083,7 +73519,7 @@
     "Etiennekairet": {
       "index": 13184,
       "owner_key": "7ZgwCSKfnmiiyTRsmDNpjVZFD1yBrCL9QUuQwuHHCDCN",
-      "balance": 49060,
+      "balance": 88746,
       "membership_expire_on": 1720659561,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -72114,7 +73550,7 @@
     "ImbertPaul13": {
       "index": 2892,
       "owner_key": "7ZqGMNtGF4tSUse338FdYnNmmj7BxkoLQH31i7D5mz92",
-      "balance": 896502,
+      "balance": 936188,
       "membership_expire_on": 1717930195,
       "next_cert_issuable_on": 1675394003,
       "certs_received": {
@@ -72124,10 +73560,7 @@
         "ChristopheRobine": 1697316800,
         "Sophie_L": 1749610126,
         "lamouette": 1696873780,
-        "LenaB": 1695957124,
-        "ChristineOliveira": 1712884294,
-        "Disine": 1693520852,
-        "FredB": 1695574799
+        "ChristineOliveira": 1712884294
       }
     },
     "DeDeZ": {
@@ -72163,7 +73596,7 @@
     "Sahayim": {
       "index": 8183,
       "owner_key": "7a5Rc3J9StdLgoDsMEyGsciiMgQi5fjZAv9J9GyrmX65",
-      "balance": 515552,
+      "balance": 555238,
       "membership_expire_on": 1708302960,
       "next_cert_issuable_on": 1673324114,
       "certs_received": {
@@ -72188,7 +73621,7 @@
     "lul": {
       "index": 12828,
       "owner_key": "7a9ouVe2RT9WgvyMCW7mxHGaot6HkXQXiP18JoFapwEe",
-      "balance": 96648,
+      "balance": 136334,
       "membership_expire_on": 1714003174,
       "next_cert_issuable_on": 1687881226,
       "certs_received": {
@@ -72202,7 +73635,7 @@
     "Lora": {
       "index": 11639,
       "owner_key": "7aDEo75Sg5iWnPMqmykZxk8R8Rh6L9YWrEPd6EbYpE9M",
-      "balance": 208831,
+      "balance": 248517,
       "membership_expire_on": 1708108332,
       "next_cert_issuable_on": 1679314848,
       "certs_received": {
@@ -72226,9 +73659,9 @@
     "Samsan": {
       "index": 11158,
       "owner_key": "7aGeh3LdbAehgQrZCYnsBvgoggRP5zJExmrnrCj27Z9M",
-      "balance": 175773,
+      "balance": 213459,
       "membership_expire_on": 1703888512,
-      "next_cert_issuable_on": 1692281904,
+      "next_cert_issuable_on": 1696768978,
       "certs_received": {
         "koalarp": 1736318046,
         "Virginie": 1736298700,
@@ -72257,7 +73690,7 @@
     "Holger13": {
       "index": 12264,
       "owner_key": "7avJYQEMRGyxPpzaZH3XJPZtJYVYfVSRUSogRcgaLBRL",
-      "balance": 169596,
+      "balance": 209282,
       "membership_expire_on": 1712092339,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -72274,9 +73707,9 @@
     "MagaliRegent": {
       "index": 9219,
       "owner_key": "7avWWoWzoE1Y6ZFF13bPvsZ3tb671WSBTdY9srYHcrtu",
-      "balance": 90215,
+      "balance": 128901,
       "membership_expire_on": 1719765308,
-      "next_cert_issuable_on": 1692861862,
+      "next_cert_issuable_on": 1695292755,
       "certs_received": {
         "rafa": 1739574701,
         "AlphaCentauri": 1723761533,
@@ -72290,7 +73723,7 @@
     "Romane81": {
       "index": 13199,
       "owner_key": "7aygwztrqRTRRCZPjGJdDPBvDMocntQW15VSNwjjNLPC",
-      "balance": 44856,
+      "balance": 84542,
       "membership_expire_on": 1717030084,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -72304,7 +73737,7 @@
     "LucetteTerriers": {
       "index": 7238,
       "owner_key": "7azZ4C7zdg1cTWQ95vnt2CzhQnaNygtNfY3Kv4XqHdRL",
-      "balance": 419074,
+      "balance": 458760,
       "membership_expire_on": 1705359360,
       "next_cert_issuable_on": 1682665177,
       "certs_received": {
@@ -72326,7 +73759,7 @@
     "Oceano": {
       "index": 6148,
       "owner_key": "7b6JByc8HSKtZxbKape5ZSkXRwNy6ZKApisryevmrZMe",
-      "balance": 670219,
+      "balance": 718611,
       "membership_expire_on": 1721004386,
       "next_cert_issuable_on": 1691389175,
       "certs_received": {
@@ -72415,7 +73848,7 @@
     "Recycleur53": {
       "index": 2646,
       "owner_key": "7bBR5QzuLD3YgeDHd4Ke3xiPSZnap28M2X85FvheNNJC",
-      "balance": 2208248,
+      "balance": 2547934,
       "membership_expire_on": 1714758661,
       "next_cert_issuable_on": 1683273536,
       "certs_received": {
@@ -72428,7 +73861,8 @@
         "PascaleRoncoroni": 1755122852,
         "Karica": 1735006343,
         "Cath44": 1734927686,
-        "DaroussinB": 1719444116
+        "DaroussinB": 1719444116,
+        "DominiqueRoudiere": 1756946620
       }
     },
     "Nelkhael": {
@@ -72437,20 +73871,14 @@
       "balance": 734831,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1657158955,
-      "certs_received": {
-        "elisalibre": 1694981050,
-        "Mateo": 1694594521,
-        "Yello": 1694673657,
-        "Llorens": 1694283827,
-        "Kaluna": 1693532417
-      }
+      "certs_received": {}
     },
     "Ingrid": {
       "index": 13289,
       "owner_key": "7bdxEEp1K2JEN4UBpTLDvDC78tyLfitXobCX5zfBud9W",
-      "balance": 45628,
+      "balance": 85315,
       "membership_expire_on": 1717517639,
-      "next_cert_issuable_on": 1693561756,
+      "next_cert_issuable_on": 1695261846,
       "certs_received": {
         "Jens777": 1749376548,
         "Kaikus": 1749349438,
@@ -72475,9 +73903,9 @@
     "ManuGi": {
       "index": 11559,
       "owner_key": "7bmwxTBxMBkx5kswHyFJVVpZgEC88T62Cq5LNEaktZce",
-      "balance": 81393,
+      "balance": 108559,
       "membership_expire_on": 1707264714,
-      "next_cert_issuable_on": 1692076392,
+      "next_cert_issuable_on": 1695627227,
       "certs_received": {
         "Aguas": 1738831453,
         "Simplementemaria": 1738876443,
@@ -72485,17 +73913,22 @@
         "Beasegovia": 1746814173,
         "Madreselva": 1738828219,
         "Okcfecadiz": 1738907901,
+        "Mariaje": 1758672399,
         "GeraldineGarrigues": 1741456494,
+        "Juanmatierraplana": 1757304667,
         "Ahimsa73": 1743980070,
-        "mellamanhernan": 1742361080
+        "Keiro": 1757064470,
+        "MACANATURE": 1757317411,
+        "mellamanhernan": 1742361080,
+        "MERYFITT": 1755938166
       }
     },
     "Bricedonnadieu26": {
       "index": 3604,
       "owner_key": "7bqpBuugXQmKUZedQFuCDBVsVTLQvmA9keVDShrUaXD7",
-      "balance": 787207,
+      "balance": 826893,
       "membership_expire_on": 1705519190,
-      "next_cert_issuable_on": 1688434109,
+      "next_cert_issuable_on": 1695866901,
       "certs_received": {
         "Katiecat": 1741206862,
         "RobertW34": 1751442878,
@@ -72514,7 +73947,7 @@
     "Cadetdamour": {
       "index": 3484,
       "owner_key": "7bzejTXVGMXPHYEjC8YifRG5ZCAWuQXykoUteLqAH1ox",
-      "balance": 408653,
+      "balance": 448339,
       "membership_expire_on": 1703979509,
       "next_cert_issuable_on": 1685368742,
       "certs_received": {
@@ -72540,7 +73973,7 @@
     "charlot1963": {
       "index": 3894,
       "owner_key": "7cApr4efr88GfpA7Ztnbk3cu1CyPKSNW7tgrp2UHLXYz",
-      "balance": 992175,
+      "balance": 1031861,
       "membership_expire_on": 1716924466,
       "next_cert_issuable_on": 1685438866,
       "certs_received": {
@@ -72561,14 +73994,12 @@
       "balance": 223483,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "HgO": 1694204851
-      }
+      "certs_received": {}
     },
     "katialabomatik": {
       "index": 8286,
       "owner_key": "7cXvgYdZ8PsXPRz2zw6c9NNzTVS2oSz7JZkwF7xnPKes",
-      "balance": 440852,
+      "balance": 480538,
       "membership_expire_on": 1714172073,
       "next_cert_issuable_on": 1688823457,
       "certs_received": {
@@ -72622,9 +74053,9 @@
     "ASHNUBAN": {
       "index": 12047,
       "owner_key": "7cc8oKc5DLD1JTNkXkrA58Yygh39mC3qGLPC5zwkQF59",
-      "balance": 97702,
+      "balance": 124398,
       "membership_expire_on": 1710701773,
-      "next_cert_issuable_on": 1693112971,
+      "next_cert_issuable_on": 1696607044,
       "certs_received": {
         "FRANZ": 1742429718,
         "Lora": 1742358048,
@@ -72686,7 +74117,7 @@
     "katerinagrecque": {
       "index": 12406,
       "owner_key": "7d2nU9NTamY3VfbYgK86BgBeZDNx8L3tPNz8t3FLxn3N",
-      "balance": 101966,
+      "balance": 141652,
       "membership_expire_on": 1711801267,
       "next_cert_issuable_on": 1688395759,
       "certs_received": {
@@ -72697,10 +74128,24 @@
         "Pulcinella81170": 1744483232
       }
     },
+    "FabienneH": {
+      "index": 13505,
+      "owner_key": "7d32NaZZB3QB4RgbmoLmavwN6uHvmL92HxqEBmNgjFx3",
+      "balance": 94366,
+      "membership_expire_on": 1725195727,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Unity": 1756771806,
+        "ladegane": 1756753700,
+        "lucba": 1756770634,
+        "Anna84": 1756753700,
+        "lapivoine": 1757042735
+      }
+    },
     "Bifab": {
       "index": 12374,
       "owner_key": "7dJTKfnipWUx8L4kVyMbEK1V7N2MABicwrbMa4gnhzFA",
-      "balance": 145548,
+      "balance": 185234,
       "membership_expire_on": 1712873264,
       "next_cert_issuable_on": 1683121578,
       "certs_received": {
@@ -72715,7 +74160,7 @@
     "AngelMacksimilia": {
       "index": 12200,
       "owner_key": "7dLwwJsX5LqrCpxEpGwgCAg1Mgihak3bapsKrxL7VWBp",
-      "balance": 308135,
+      "balance": 459921,
       "membership_expire_on": 1711933689,
       "next_cert_issuable_on": 1686933363,
       "certs_received": {
@@ -72724,6 +74169,8 @@
         "Belobal": 1743492789,
         "EstefaniaLopez": 1743563077,
         "Isabella": 1752818272,
+        "Elenarepostera": 1756452174,
+        "jilguero": 1758729420,
         "llanero": 1743660260,
         "Alberto": 1743524046,
         "LaChenille": 1748454612,
@@ -72733,7 +74180,7 @@
     "mayushi": {
       "index": 9933,
       "owner_key": "7dMpPfpo4X9kP7VNJ636XYN9NaNGhreV7BFjNXAHd286",
-      "balance": 300247,
+      "balance": 339933,
       "membership_expire_on": 1696935801,
       "next_cert_issuable_on": 1680794178,
       "certs_received": {
@@ -72757,7 +74204,7 @@
     "CHRISTINED": {
       "index": 11479,
       "owner_key": "7dQNppxpzPCyv2kXAisuZXiEAhbR6dQ3qtNM67tjfVFu",
-      "balance": 220680,
+      "balance": 260366,
       "membership_expire_on": 1706998505,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -72771,8 +74218,8 @@
     "IsabelleMaigret": {
       "index": 4255,
       "owner_key": "7dT1gBLPjxFpyLcREoJ9BGZQBmcSn5ZtCCACMpz9psiC",
-      "balance": 990465,
-      "membership_expire_on": 1696036047,
+      "balance": 1021527,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678973101,
       "certs_received": {
         "verolodeve": 1698350048,
@@ -72787,9 +74234,9 @@
     "jorgeocanacastro": {
       "index": 5263,
       "owner_key": "7dX43jDhnArjphffL6YqComauu9RXVpwgk4beKbkCxFH",
-      "balance": 563755,
+      "balance": 603441,
       "membership_expire_on": 1711290288,
-      "next_cert_issuable_on": 1680794178,
+      "next_cert_issuable_on": 1695373217,
       "certs_received": {
         "GuillemDVL": 1733331709,
         "PedroCabra": 1708641226,
@@ -72801,9 +74248,9 @@
     "VBVF": {
       "index": 9750,
       "owner_key": "7daE3JxkRvzLmPtAygoiwCNe7YHhC5vpaWK5ekvpJ26D",
-      "balance": 87816,
-      "membership_expire_on": 1695999017,
-      "next_cert_issuable_on": 1685459445,
+      "balance": 92502,
+      "membership_expire_on": 1725370953,
+      "next_cert_issuable_on": 1696080252,
       "certs_received": {
         "NathNath": 1745900121,
         "ANTIGONE3669": 1727755139,
@@ -72814,6 +74261,7 @@
         "Luna": 1748507013,
         "Shaypalgv": 1728061124,
         "Fee2rien": 1727583231,
+        "Clo": 1759123700,
         "Cassie": 1750358823,
         "Ninette89": 1742417707,
         "Mia": 1739537351,
@@ -72823,12 +74271,13 @@
     "LaPetiteMaisonDansLaPrairie": {
       "index": 10857,
       "owner_key": "7dfAY1DZhzwcCF36umpoa1H7Q1S1dP7D24jaF2Bjj5Uc",
-      "balance": 271348,
-      "membership_expire_on": 1697592563,
-      "next_cert_issuable_on": 1680064465,
+      "balance": 320534,
+      "membership_expire_on": 1726324666,
+      "next_cert_issuable_on": 1695797990,
       "certs_received": {
         "Zap": 1733870386,
         "Evelyne87": 1743132778,
+        "LionLDouNIo": 1758084394,
         "DimitriTuffreau": 1733870651,
         "Poesy": 1733870651,
         "Loup": 1733870651,
@@ -72849,10 +74298,11 @@
     "BrigitteB": {
       "index": 7073,
       "owner_key": "7dmoqpFpNqFctrETq22vS6ASetWbiG4ttdvKxj4THQ5o",
-      "balance": 520584,
+      "balance": 546270,
       "membership_expire_on": 1707617188,
-      "next_cert_issuable_on": 1692883627,
+      "next_cert_issuable_on": 1696592364,
       "certs_received": {
+        "SophieDeprez": 1756742916,
         "Clemence": 1708645984,
         "Falkena": 1708735003,
         "MarieMas": 1755036777,
@@ -72862,15 +74312,16 @@
         "Basilous15": 1708670403,
         "Petfa": 1720150000,
         "Elle": 1709795551,
+        "chicaleylou": 1757718094,
         "Gclaire": 1708644721
       }
     },
     "Etoiledunord": {
       "index": 8355,
       "owner_key": "7dqjDbvwzC2sapzfB7jEzsW5MGiMMnX9fBAtKtepxvst",
-      "balance": 329038,
+      "balance": 353724,
       "membership_expire_on": 1712232583,
-      "next_cert_issuable_on": 1693239064,
+      "next_cert_issuable_on": 1696165292,
       "certs_received": {
         "Bich": 1717218358,
         "Crystal": 1717297281,
@@ -72882,6 +74333,7 @@
         "7Oak": 1749985357,
         "SylvieT": 1730652960,
         "EvaSorel": 1717303124,
+        "JunOr11": 1759035690,
         "AnnieP38": 1717297281,
         "annefreda": 1729555028
       }
@@ -72889,7 +74341,7 @@
     "84000": {
       "index": 12786,
       "owner_key": "7ds7iRhMhndQkg35NeDLagfJsh5RcMWxSwVTY3Hyovir",
-      "balance": 87688,
+      "balance": 127374,
       "membership_expire_on": 1717195038,
       "next_cert_issuable_on": 1692697142,
       "certs_received": {
@@ -72919,15 +74371,7 @@
       "balance": 359070,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "olione": 1696466120,
-        "Fabi26": 1695948317,
-        "Andre208": 1695957124,
-        "Calakendi": 1695925621,
-        "Dionysos": 1696478972,
-        "GeneVieve": 1695967909,
-        "Patoun": 1695960480
-      }
+      "certs_received": {}
     },
     "Erikem": {
       "index": 5077,
@@ -72942,7 +74386,7 @@
     "papillon84": {
       "index": 1820,
       "owner_key": "7e2tBmgYR82Qo1c9gwgFzymrSewXxUsssauEdG29XBy4",
-      "balance": 593584,
+      "balance": 531884,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1641449233,
       "certs_received": {
@@ -72976,16 +74420,12 @@
       "certs_received": {
         "Mmu34": 1736541502,
         "Majoli34": 1737138136,
-        "Sophie_Jiyu": 1695584430,
-        "droopy": 1694812027,
         "Helene-petiteriviere": 1733954675,
         "loveinagain81": 1697590282,
         "SOLEIA": 1732682871,
         "Cat": 1733964057,
         "Samlepirate": 1710876376,
-        "Petitcolin": 1696018776,
         "toutestjoli34": 1699569458,
-        "Eauvive": 1694812739,
         "Elpheblanche": 1697573687,
         "PascalGuillemain": 1708362131
       }
@@ -72996,14 +74436,7 @@
       "balance": 745179,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1644216154,
-      "certs_received": {
-        "jeje43": 1695966129,
-        "Sand": 1696022848,
-        "Jjacq07": 1695955086,
-        "Canguy43": 1695971102,
-        "Jean-Pierre07": 1696021194,
-        "Flandelila": 1695351568
-      }
+      "certs_received": {}
     },
     "Philippe21": {
       "index": 4958,
@@ -73016,7 +74449,7 @@
     "RolandRol": {
       "index": 7682,
       "owner_key": "7eZj28DedgkJAoJkj91cBffsFJyN3T3Bs8BWGgpM3BSs",
-      "balance": 631965,
+      "balance": 655651,
       "membership_expire_on": 1707923592,
       "next_cert_issuable_on": 1651590057,
       "certs_received": {
@@ -73033,7 +74466,7 @@
     "MarieLeg": {
       "index": 10514,
       "owner_key": "7exTQfkaBP6RCCrsHjAJEAZjRu9SqUFYhfYvpiTdsSk4",
-      "balance": 540621,
+      "balance": 580307,
       "membership_expire_on": 1700485331,
       "next_cert_issuable_on": 1687870064,
       "certs_received": {
@@ -73063,7 +74496,7 @@
     "JuanraChocolate": {
       "index": 10787,
       "owner_key": "7f4GKj7E6F58GcMsTY528RCWMJbxEc4hZVYojGLeXCKA",
-      "balance": 191843,
+      "balance": 231529,
       "membership_expire_on": 1702093687,
       "next_cert_issuable_on": 1682856484,
       "certs_received": {
@@ -73083,9 +74516,9 @@
     "Brunov974": {
       "index": 3191,
       "owner_key": "7f8Mg4AaDX2JX9c9C3PHjvQkq4Xr6tBhmg1WRQUR9J95",
-      "balance": 1066296,
+      "balance": 1105982,
       "membership_expire_on": 1715985648,
-      "next_cert_issuable_on": 1692782795,
+      "next_cert_issuable_on": 1695890564,
       "certs_received": {
         "mimone974": 1717546112,
         "harry974": 1708131428,
@@ -73097,7 +74530,6 @@
         "BabethMangas": 1709430518,
         "MicheleTampon974": 1715406453,
         "ClaireM97410": 1740591661,
-        "luciano974": 1695748342,
         "Tonychevalier974": 1740684231,
         "Celine974": 1707852914,
         "isadesbois974": 1720755438,
@@ -73149,8 +74581,7 @@
       "certs_received": {
         "JoelleTAILLANDIER": 1718775786,
         "RoselyneBinesse": 1754897344,
-        "SylvaineAlnot": 1716501342,
-        "GeraldineGarrigues": 1694455541
+        "SylvaineAlnot": 1716501342
       }
     },
     "Stefan": {
@@ -73164,8 +74595,8 @@
     "MarinaNavarro": {
       "index": 10357,
       "owner_key": "7fDZmyrcj7RtSyrazAAMzueXPhQ7nCq6w7hVCdgumHEB",
-      "balance": 84372,
-      "membership_expire_on": 1699966713,
+      "balance": 16958,
+      "membership_expire_on": 1726572850,
       "next_cert_issuable_on": 1681953624,
       "certs_received": {
         "Eveilducoeur": 1731577753,
@@ -73196,7 +74627,7 @@
     "Pompon": {
       "index": 12686,
       "owner_key": "7fQS5w2fJxKYsprJnvXorWwbp39incKrv5YkD35Ue2Ln",
-      "balance": 112140,
+      "balance": 151826,
       "membership_expire_on": 1714240064,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -73214,7 +74645,7 @@
     "Coeur83": {
       "index": 3979,
       "owner_key": "7fXYRhozYnPBzL78hkBJ4R8YX9GhweDR7aReqx2kkiwY",
-      "balance": 1001085,
+      "balance": 1040771,
       "membership_expire_on": 1701370807,
       "next_cert_issuable_on": 1648191713,
       "certs_received": {
@@ -73251,7 +74682,7 @@
     "LoreleiGAUTHIER": {
       "index": 7565,
       "owner_key": "7g96FaeuKDCTnYwu8qSpQ3fvc6W1EVvVZTR6StZbFcVu",
-      "balance": 521482,
+      "balance": 561168,
       "membership_expire_on": 1707056435,
       "next_cert_issuable_on": 1675571063,
       "certs_received": {
@@ -73297,28 +74728,21 @@
     "JuanCapitan": {
       "index": 5688,
       "owner_key": "7gUYHM4sZRkDWwaMYiNL5b25jDvirJNoo9ovYPe1v3ew",
-      "balance": 205874,
+      "balance": 213874,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1669173758,
       "certs_received": {
-        "kapis": 1695174884,
         "mati": 1713813605,
         "salmaluna": 1728320143,
         "celoman": 1696749959,
         "Inma_HD_Bere": 1712189975,
         "luismo": 1703567863,
         "RachelGreen": 1713118096,
-        "xavidp": 1694480540,
-        "Dixebral": 1694481282,
-        "Brahmaya": 1695002589,
         "PeterGreen": 1706067937,
         "Carolinda": 1734341641,
         "Wellno1": 1710299348,
         "llanero": 1727902150,
-        "tereseta": 1695184947,
         "Koldo": 1701272829,
-        "urkobein": 1694628250,
-        "MartaCuinaViva": 1695845305,
         "BruBraveLez": 1720051664,
         "SyBr": 1712820130
       }
@@ -73326,9 +74750,9 @@
     "ThomasFilsduVent": {
       "index": 10988,
       "owner_key": "7gWtbzyC7RF1UccD2CRVgPmPcFdpvqskqrtHeksuhh8b",
-      "balance": 401117,
+      "balance": 437203,
       "membership_expire_on": 1703291358,
-      "next_cert_issuable_on": 1688910645,
+      "next_cert_issuable_on": 1694760109,
       "certs_received": {
         "SalinJL": 1734955117,
         "Thesa": 1741150514,
@@ -73350,7 +74774,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1639649118,
       "certs_received": {
-        "Alinerv": 1695233618,
         "Magvr": 1698194006
       }
     },
@@ -73365,8 +74788,8 @@
     "MarieK89": {
       "index": 6241,
       "owner_key": "7gxSaxqtwb27LuPPCFnGxcaHTxzxHy3WonEtPjr2vMi3",
-      "balance": 718525,
-      "membership_expire_on": 1693744467,
+      "balance": 721729,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1663674439,
       "certs_received": {
         "Nagual": 1698435991,
@@ -73383,7 +74806,7 @@
     "Gaby341": {
       "index": 8408,
       "owner_key": "7gzjgkV3LaZkrHeyxTGnWwbiS47R8rTdD5X1yB4kirjo",
-      "balance": 1158859,
+      "balance": 1198545,
       "membership_expire_on": 1718017520,
       "next_cert_issuable_on": 1655897453,
       "certs_received": {
@@ -73401,8 +74824,8 @@
     "Jackiestl13": {
       "index": 8404,
       "owner_key": "7h28w8iKk1kfRj7tQmjgZeV4Kzs12s2LST5J1HYD7amk",
-      "balance": 384286,
-      "membership_expire_on": 0,
+      "balance": 297952,
+      "membership_expire_on": 1726342114,
       "next_cert_issuable_on": 1660666127,
       "certs_received": {
         "Glycine13": 1717699231,
@@ -73415,7 +74838,7 @@
     "Jesslibre": {
       "index": 12117,
       "owner_key": "7h3ndhrMkGzqFXx4qTVGyGACQbSvAuHadMzruTtfQvkz",
-      "balance": 181414,
+      "balance": 170100,
       "membership_expire_on": 1711254529,
       "next_cert_issuable_on": 1682927404,
       "certs_received": {
@@ -73430,7 +74853,7 @@
     "Violette32": {
       "index": 7234,
       "owner_key": "7h4TP33yjG6RRDFg9AoiwW3oQMvR4Nod2TY1vpTeASpm",
-      "balance": 461609,
+      "balance": 501295,
       "membership_expire_on": 1706045956,
       "next_cert_issuable_on": 1691641392,
       "certs_received": {
@@ -73438,6 +74861,7 @@
         "Beatricebia": 1707341869,
         "M-France": 1750831177,
         "JulieS": 1750799124,
+        "Osmoze": 1758354891,
         "Cinsia": 1707361132,
         "Andre208": 1709785844,
         "Val1695": 1707183168,
@@ -73449,7 +74873,7 @@
     "Nelly86": {
       "index": 9835,
       "owner_key": "7h5e87kR6qjHn8qRkCR3GimGSCZpVbLUSpFVzVN1ZUwA",
-      "balance": 403549,
+      "balance": 437735,
       "membership_expire_on": 1722095119,
       "next_cert_issuable_on": 1692674179,
       "certs_received": {
@@ -73466,13 +74890,14 @@
         "Eleonore": 1727295331,
         "Maia": 1748389229,
         "kikilulu": 1744762310,
+        "Bikoucel86": 1758070426,
         "EliseNantes": 1740696402
       }
     },
     "AndemA": {
       "index": 7900,
       "owner_key": "7h77kXWAsHh2iuskYWxc9gyZFfrUE4uUzPEep8rJT9ub",
-      "balance": 317800,
+      "balance": 357486,
       "membership_expire_on": 1714865288,
       "next_cert_issuable_on": 1666315328,
       "certs_received": {
@@ -73501,7 +74926,7 @@
     "Phil29": {
       "index": 6268,
       "owner_key": "7hErcFqCXjkLdPUoohuvUH4Jd7vgc3A3i7SgbPubSxNU",
-      "balance": 995699,
+      "balance": 1035385,
       "membership_expire_on": 1700852751,
       "next_cert_issuable_on": 1659932830,
       "certs_received": {
@@ -73518,12 +74943,28 @@
         "SophieMD": 1714416030
       }
     },
+    "IziaGB": {
+      "index": 13564,
+      "owner_key": "7hL6CF8JcuX4PWPF6keUtXwB5BiVzC28yKcL84CzSQMB",
+      "balance": 26770,
+      "membership_expire_on": 1724777043,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "SophieRita": 1757462765,
+        "SylvieMaillot": 1757355740,
+        "CamilleGB": 1757384230,
+        "Cyrian": 1759518422,
+        "Nyriel": 1757384513,
+        "CedricG": 1757382656,
+        "Bella35": 1757383433
+      }
+    },
     "miguelon": {
       "index": 8295,
       "owner_key": "7hQSSopGFqzMuNv7im23CjcL1wcCUEfbD9YAencfKDRo",
-      "balance": 235452,
+      "balance": 221738,
       "membership_expire_on": 1708129386,
-      "next_cert_issuable_on": 1667834668,
+      "next_cert_issuable_on": 1694223621,
       "certs_received": {
         "mluque71": 1716842678,
         "VirginiaDuran": 1712471160,
@@ -73540,7 +74981,7 @@
     "PepaCal": {
       "index": 11460,
       "owner_key": "7hU7eoBCwo2hK2XG8aXooKTsLqWYbr3Bmds5KTseexnM",
-      "balance": 103598,
+      "balance": 143284,
       "membership_expire_on": 1706821438,
       "next_cert_issuable_on": 1679192560,
       "certs_received": {
@@ -73561,7 +75002,7 @@
     "frantzsury": {
       "index": 2815,
       "owner_key": "7hacGYfQ6FUvAdnbUjWV9E8HxrcMFBJY7tsZeXsmv8T8",
-      "balance": 342384,
+      "balance": 382070,
       "membership_expire_on": 1718891187,
       "next_cert_issuable_on": 1688460515,
       "certs_received": {
@@ -73590,7 +75031,7 @@
     "lauremilanaturo": {
       "index": 10872,
       "owner_key": "7hdNdgJscNRmmcdXNoxypB86VeuFRQV88AucsZA2ZTz6",
-      "balance": 274689,
+      "balance": 314375,
       "membership_expire_on": 1702298863,
       "next_cert_issuable_on": 1690185413,
       "certs_received": {
@@ -73613,7 +75054,7 @@
     "DesillesMarie": {
       "index": 11882,
       "owner_key": "7hqSf8W33hTyH9TrHvhCvGjvyo1SXCoyNDeSvdwnz6a4",
-      "balance": 194969,
+      "balance": 234655,
       "membership_expire_on": 1708279764,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -73627,7 +75068,7 @@
     "Shapenoupet": {
       "index": 12657,
       "owner_key": "7huAgtme3yJiWpGfkHBZgp125qEM29e5hdm2ejDgb3iM",
-      "balance": 115344,
+      "balance": 155030,
       "membership_expire_on": 1713307868,
       "next_cert_issuable_on": 1688141227,
       "certs_received": {
@@ -73657,7 +75098,7 @@
     "hopefullyfree": {
       "index": 11555,
       "owner_key": "7i1y8JSuUPa6EMYACobvzPDGjXdMpJuJy1r3K53ebozc",
-      "balance": 209385,
+      "balance": 249071,
       "membership_expire_on": 1707602669,
       "next_cert_issuable_on": 1691544961,
       "certs_received": {
@@ -73676,17 +75117,14 @@
     "Jihi": {
       "index": 5147,
       "owner_key": "7i7TTgeGB9XWkHmzw9up3NFMQ485wjegPrbPBwLver5S",
-      "balance": 839657,
+      "balance": 879343,
       "membership_expire_on": 1715172920,
       "next_cert_issuable_on": 1684643795,
       "certs_received": {
-        "Milan": 1696118053,
         "Hades": 1698470883,
         "Majoli34": 1727884450,
-        "DimitriTuffreau": 1695972054,
         "herbacha": 1748800189,
         "Cecilelaurent": 1696999056,
-        "Leticia": 1696116942,
         "FREZA": 1719455370,
         "LydiaRoche": 1747445527,
         "Ddeellpphhiinnee": 1715843139
@@ -73695,7 +75133,7 @@
     "Tissilia": {
       "index": 3125,
       "owner_key": "7iAJLJwkx1nfz2qREUbMsQeuBuZw5kLnniBkzT6thsbA",
-      "balance": 758422,
+      "balance": 746836,
       "membership_expire_on": 1715710479,
       "next_cert_issuable_on": 1684049549,
       "certs_received": {
@@ -73707,7 +75145,6 @@
         "Cathou": 1749514813,
         "AliceCtln": 1701726785,
         "Nicolas_Boyer": 1747854661,
-        "LNlumi": 1695605427,
         "SyoulAnuanua": 1746053534,
         "ZizouTP": 1749513760,
         "Guillermo": 1733626370,
@@ -73719,7 +75156,7 @@
     "Virginia": {
       "index": 2431,
       "owner_key": "7iB8vFm55ib1wMMrZkYqp3cryuskMdXbi3UbFTcCFdUQ",
-      "balance": 749809,
+      "balance": 696409,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1684493683,
       "certs_received": {
@@ -73739,7 +75176,7 @@
     "PabloLykos": {
       "index": 9082,
       "owner_key": "7iFcB586JBFLsbYZfzAUFw2mRX1WUv3wnE17cqLQ92gf",
-      "balance": 211313,
+      "balance": 220999,
       "membership_expire_on": 1723488897,
       "next_cert_issuable_on": 1692355163,
       "certs_received": {
@@ -73761,7 +75198,7 @@
     "MurielChapatte": {
       "index": 8045,
       "owner_key": "7iNagyjeuf6AMzKqJgzFrn4k4u9tTvtrfmZaSpfCwDQ6",
-      "balance": 521511,
+      "balance": 561197,
       "membership_expire_on": 1710936823,
       "next_cert_issuable_on": 1679451223,
       "certs_received": {
@@ -73778,13 +75215,13 @@
       "owner_key": "7iPhV7R68HDG69yXTzJAaQPHiJoM85fygPqBXVAA1w1M",
       "balance": 586359,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631683842,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "JeePofMars": {
       "index": 3941,
       "owner_key": "7iZvnquBQ1m2R6EYYwVWMHDUNVHSe7HyjSmCS9XAgWDV",
-      "balance": 556593,
+      "balance": 666083,
       "membership_expire_on": 1710203016,
       "next_cert_issuable_on": 1692804084,
       "certs_received": {
@@ -73801,8 +75238,9 @@
         "Druilhe13117": 1750821282,
         "Solian": 1741830925,
         "BarbicheHetre": 1698447673,
+        "GeraldineGarrigues": 1757774964,
         "Paola": 1754723308,
-        "CharlesD": 1694023912,
+        "CharlesD": 1757457142,
         "Totoro": 1738899121,
         "Sandelrio": 1746670733,
         "Mido": 1754351154,
@@ -73814,7 +75252,7 @@
     "gaaltic": {
       "index": 2572,
       "owner_key": "7ibw2rHUh9z5xWtan4DeFhaCdGrLoG2AxTPw63T4JcuA",
-      "balance": 1665906,
+      "balance": 1705592,
       "membership_expire_on": 1711119721,
       "next_cert_issuable_on": 1684892043,
       "certs_received": {
@@ -73834,7 +75272,7 @@
     "Ghis26": {
       "index": 3660,
       "owner_key": "7icbSjbsbCr5UYNwfAuHXLHd3EgL6Dt2k6211Zf6FQWX",
-      "balance": 950951,
+      "balance": 972137,
       "membership_expire_on": 1701047413,
       "next_cert_issuable_on": 1687610871,
       "certs_received": {
@@ -73850,7 +75288,7 @@
     "LionelDrain": {
       "index": 6034,
       "owner_key": "7iqFrjoERGXXJEQxaNAUYuasGxRPLafEtoz5B2kba5Mg",
-      "balance": 380930,
+      "balance": 420616,
       "membership_expire_on": 1697889494,
       "next_cert_issuable_on": 1658655601,
       "certs_received": {
@@ -73888,7 +75326,7 @@
     "Chibouk": {
       "index": 7212,
       "owner_key": "7iwrPbKVLVjj5ZyEiAqpxf2H1DhurJmYoCyowdGSaGhX",
-      "balance": 477902,
+      "balance": 517588,
       "membership_expire_on": 1712757198,
       "next_cert_issuable_on": 1681516781,
       "certs_received": {
@@ -73930,7 +75368,7 @@
     "MAPile": {
       "index": 12714,
       "owner_key": "7j4B3wJQ9eJsHpey1gyH7AWrABjVX2Coc2yicX8WziqD",
-      "balance": 108936,
+      "balance": 148622,
       "membership_expire_on": 1712924168,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -73946,7 +75384,7 @@
       "owner_key": "7j4XyePT94kyK9UhAkRBoBgLsMvUzFcDkMoeN8hyVfuF",
       "balance": 686596,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1633081359,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Chiara07": 1721788733
       }
@@ -73962,7 +75400,7 @@
     "Bluewhirl": {
       "index": 13313,
       "owner_key": "7jBqCSE2dnfjZWDqxvqbeeNgEZfXoV8967E6cVoWKKNY",
-      "balance": 28836,
+      "balance": 68522,
       "membership_expire_on": 1721598876,
       "next_cert_issuable_on": 1692512492,
       "certs_received": {
@@ -74005,7 +75443,7 @@
     "StephBaj": {
       "index": 11999,
       "owner_key": "7jHgGJEu8RimK65fdzu8MDaQZN7oFFFt6XozFasRN6Lc",
-      "balance": 180438,
+      "balance": 220124,
       "membership_expire_on": 1710193080,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -74020,9 +75458,9 @@
     "Perrine971": {
       "index": 3876,
       "owner_key": "7jHkYzxQadnvKGkNC2xDBxvtRQRYHWnxntzL5wu72SgL",
-      "balance": 147439,
+      "balance": 170375,
       "membership_expire_on": 1711302377,
-      "next_cert_issuable_on": 1689665597,
+      "next_cert_issuable_on": 1696303518,
       "certs_received": {
         "Sev": 1722494624,
         "etnebab": 1734216602,
@@ -74062,7 +75500,7 @@
     "Jojo83": {
       "index": 8134,
       "owner_key": "7jQGz1CYsEYMzs2k3yZPoP9ZatknKTnMoNrWxTR4faiE",
-      "balance": 398973,
+      "balance": 438659,
       "membership_expire_on": 1708277748,
       "next_cert_issuable_on": 1692786497,
       "certs_received": {
@@ -74080,9 +75518,9 @@
     "Sebastien": {
       "index": 8907,
       "owner_key": "7jUZBtD7KzerKXFjHc1ymhvPGmcwPbTDCUmD2JEoL7cq",
-      "balance": 436296,
+      "balance": 475982,
       "membership_expire_on": 1719054475,
-      "next_cert_issuable_on": 1680769943,
+      "next_cert_issuable_on": 1695125031,
       "certs_received": {
         "JoelleGllrd": 1720761337,
         "marcplan": 1720751880,
@@ -74094,7 +75532,7 @@
     "MailysGAUTHIER": {
       "index": 7695,
       "owner_key": "7jUb6n9wjDxoE4GcdjEUmHFhk6vGX1XLnLehC7vcFHWe",
-      "balance": 507482,
+      "balance": 547168,
       "membership_expire_on": 1707055961,
       "next_cert_issuable_on": 1675349921,
       "certs_received": {
@@ -74116,12 +75554,13 @@
     "Giny": {
       "index": 6610,
       "owner_key": "7jc7qhWM3NYnjLh8AiGQoyXxqFNXkXe4W7mz4d5xKrAB",
-      "balance": 943878,
-      "membership_expire_on": 1701046333,
-      "next_cert_issuable_on": 1688286231,
+      "balance": 1003264,
+      "membership_expire_on": 1727469771,
+      "next_cert_issuable_on": 1696136343,
       "certs_received": {
         "Elorac": 1722809474,
         "EmaPom": 1712452871,
+        "Papou": 1759190084,
         "CaroJans": 1718165134,
         "ThierryGillet": 1703272364,
         "yasminaB": 1718519989,
@@ -74133,13 +75572,14 @@
         "s00999": 1704165392,
         "GaelleGillet": 1704870439,
         "Cathy26": 1736765389,
-        "gigi73": 1754120614
+        "gigi73": 1754120614,
+        "Diato": 1759444844
       }
     },
     "CarolineCalendula": {
       "index": 10981,
       "owner_key": "7jd2kPzngNv59jXwntVYDf5tjbjX4ZceC6hPUa4ZmkMH",
-      "balance": 388276,
+      "balance": 427962,
       "membership_expire_on": 1703024222,
       "next_cert_issuable_on": 1673947666,
       "certs_received": {
@@ -74154,7 +75594,7 @@
     "GUL40_K1r": {
       "index": 6656,
       "owner_key": "7jm5PDoZJkDBJhNuJtsRo3j5XDqoXmpP16n9izrR5HbT",
-      "balance": 1478956,
+      "balance": 1518642,
       "membership_expire_on": 1703087003,
       "next_cert_issuable_on": 1685557650,
       "certs_received": {
@@ -74198,7 +75638,7 @@
     "ChristineRaphael": {
       "index": 12911,
       "owner_key": "7jodnqHrgCbow1N7KDgdEZTj7UN2Kk7JCCqpX76NTG1T",
-      "balance": 175188,
+      "balance": 214874,
       "membership_expire_on": 1715890964,
       "next_cert_issuable_on": 1689397580,
       "certs_received": {
@@ -74223,7 +75663,7 @@
     "valeriedieulefit": {
       "index": 3801,
       "owner_key": "7jvqJJCX5Guj9mvAffQcYbYEyqgHahHoGbwp3xxgxm7W",
-      "balance": 929473,
+      "balance": 969159,
       "membership_expire_on": 1721686612,
       "next_cert_issuable_on": 1690877117,
       "certs_received": {
@@ -74249,9 +75689,9 @@
     "Franzbar": {
       "index": 13102,
       "owner_key": "7kMD2fyNWyR7xfQjqm1pqQAfC3V5VqPR1LXQrz7YGK67",
-      "balance": 79992,
+      "balance": 119678,
       "membership_expire_on": 1720023244,
-      "next_cert_issuable_on": 1692840547,
+      "next_cert_issuable_on": 1694152424,
       "certs_received": {
         "OlivierHovasse": 1751840091,
         "ibisio": 1751836262,
@@ -74287,7 +75727,7 @@
     "Odilory": {
       "index": 6801,
       "owner_key": "7kQsudfeBBTijLoBA35m9tFj3GhAX4jUPMk64FsBSrWZ",
-      "balance": 594305,
+      "balance": 633991,
       "membership_expire_on": 1703276990,
       "next_cert_issuable_on": 1688270250,
       "certs_received": {
@@ -74306,7 +75746,7 @@
     "trippinmoth": {
       "index": 11817,
       "owner_key": "7kRJMLQTjuu6CyCbQ8fJHohnyjx6NyWutZauQVJosxtz",
-      "balance": 156390,
+      "balance": 196076,
       "membership_expire_on": 1708802833,
       "next_cert_issuable_on": 1687949433,
       "certs_received": {
@@ -74329,7 +75769,7 @@
     "Basileddt": {
       "index": 7006,
       "owner_key": "7kVrkDndWDhPbtqThx2udskUcCWKrhfUH78TciB64BYs",
-      "balance": 232636,
+      "balance": 182622,
       "membership_expire_on": 1703703917,
       "next_cert_issuable_on": 1680342506,
       "certs_received": {
@@ -74345,7 +75785,7 @@
     "Yukulele": {
       "index": 859,
       "owner_key": "7kffJFRK6sSNsHSVtJ4R9GvrEDRjdz83W9wxSDZxCb4g",
-      "balance": 1606383,
+      "balance": 1646069,
       "membership_expire_on": 1711040584,
       "next_cert_issuable_on": 1681049140,
       "certs_received": {
@@ -74362,7 +75802,7 @@
     "Marthoune": {
       "index": 7426,
       "owner_key": "7kjJvTEAGtn7d9hucPHhdQwbr3EPA4rQX1ETFBWN6MHK",
-      "balance": 513908,
+      "balance": 553694,
       "membership_expire_on": 1708910574,
       "next_cert_issuable_on": 1651633797,
       "certs_received": {
@@ -74376,7 +75816,7 @@
     "Legerminal": {
       "index": 4347,
       "owner_key": "7kkHS4C127FaiTMDCi5KmYownDgLKmd3TLF2jTXq8ioo",
-      "balance": 1285947,
+      "balance": 1325633,
       "membership_expire_on": 1724793129,
       "next_cert_issuable_on": 1650463517,
       "certs_received": {
@@ -74384,14 +75824,13 @@
         "ZazieND": 1728119249,
         "armoni": 1707428452,
         "PiNguyen": 1728121779,
-        "AurelieDouay": 1728118937,
-        "Misspio": 1694838518
+        "AurelieDouay": 1728118937
       }
     },
     "Annekepoes": {
       "index": 13113,
       "owner_key": "7koGPGCsJhicTtvyPAtRvA3w8oTkDuv8CWghwPCTfujB",
-      "balance": 60412,
+      "balance": 100098,
       "membership_expire_on": 1720141777,
       "next_cert_issuable_on": 1690165836,
       "certs_received": {
@@ -74413,7 +75852,7 @@
     "nomadedigitale": {
       "index": 10231,
       "owner_key": "7mGxP7mrvgen6VL2MqWz11cfxA51N8hJUVeE1aeHLZK6",
-      "balance": 316190,
+      "balance": 355876,
       "membership_expire_on": 1698879040,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -74427,7 +75866,7 @@
     "IsabelleJ": {
       "index": 12248,
       "owner_key": "7mKk3NbXtrazrY8PjYKf9AYWkbbGHPSuxUBAj5eqPgqB",
-      "balance": 161064,
+      "balance": 200750,
       "membership_expire_on": 1712092339,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -74451,9 +75890,9 @@
     "CatPMt": {
       "index": 13356,
       "owner_key": "7mVQv9gvKk8R3J2EedFdizjVvQeJDoBNXM5fuDZtnoRW",
-      "balance": 43676,
+      "balance": 106062,
       "membership_expire_on": 1723229058,
-      "next_cert_issuable_on": 1693186288,
+      "next_cert_issuable_on": 1696132187,
       "certs_received": {
         "VeroDeJetsDoux": 1754939495,
         "Olivier3574": 1754930032,
@@ -74473,7 +75912,7 @@
     "Padma": {
       "index": 13181,
       "owner_key": "7mXFpcxKY69ydhf2ewy2GN5qZ7867JZs1AkoRrdDguEB",
-      "balance": 77060,
+      "balance": 116746,
       "membership_expire_on": 1721044778,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -74487,13 +75926,14 @@
     "REME": {
       "index": 9393,
       "owner_key": "7mXYCKqcbwkvwSrXb1DdNGjvdk14pd9Gp24BQnyoqEaa",
-      "balance": 194551,
+      "balance": 247337,
       "membership_expire_on": 1719628677,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Lurtxu": 1724960700,
         "Jai": 1724953942,
         "Celina": 1724369339,
+        "Abejitajaimita": 1757482997,
         "llanero": 1724831174,
         "SurfinMaya": 1724917444,
         "urkobein": 1724350735
@@ -74502,16 +75942,21 @@
     "Elody": {
       "index": 6457,
       "owner_key": "7mg1ihqz1T7jTvcUBjn7s71yxJ41VaSAjpDVM2t54THk",
-      "balance": 562801,
-      "membership_expire_on": 1695730387,
-      "next_cert_issuable_on": 1682149704,
+      "balance": 590331,
+      "membership_expire_on": 1727477734,
+      "next_cert_issuable_on": 1696216348,
       "certs_received": {
         "looie": 1698469323,
+        "JonathanT": 1759443905,
         "Sabine38": 1726290932,
         "Mavag": 1706770015,
+        "Tell": 1759122687,
         "EmiRobin": 1703222045,
         "Joailes38": 1702007440,
         "Papouscal": 1734773914,
+        "ClaireM": 1759161302,
+        "Ravintsara": 1759122687,
+        "voironnaise": 1759298078,
         "VWAUMANS": 1755656001,
         "JBM": 1703224620
       }
@@ -74519,20 +75964,16 @@
     "Chiara07": {
       "index": 5866,
       "owner_key": "7mic3aahnxB9zU3EmGwWfbE8oy8gnz2mCmH26fzZbfCf",
-      "balance": 382089,
+      "balance": 453775,
       "membership_expire_on": 1717515401,
-      "next_cert_issuable_on": 1691296202,
+      "next_cert_issuable_on": 1696583122,
       "certs_received": {
         "MilaChavez": 1713727091,
         "AnneB": 1751222938,
         "Altheaagathe": 1725332273,
         "Tchois": 1730759867,
-        "JESS": 1696124158,
-        "Reumy": 1695198666,
-        "JEREM": 1696124559,
         "Bibi06": 1716528006,
         "LilianeLilou": 1744501945,
-        "guillaumedangin": 1695276997,
         "Bob64": 1719653488,
         "BernardDuponchelle": 1742054144,
         "BorisPuyet": 1750932068
@@ -74541,9 +75982,9 @@
     "CathounetteMu": {
       "index": 7652,
       "owner_key": "7miwJcomE2GpGXanc5pPnj2TE51CFh1rSZJGc7cQ83jJ",
-      "balance": 305921,
+      "balance": 345607,
       "membership_expire_on": 1707407534,
-      "next_cert_issuable_on": 1680948678,
+      "next_cert_issuable_on": 1695110521,
       "certs_received": {
         "StephaneMongeois": 1734198537,
         "dch38": 1712621624,
@@ -74552,6 +75993,7 @@
         "Celine388": 1739749519,
         "izofrog38": 1712551198,
         "izotoad38": 1712454014,
+        "SoniaJimenezCook": 1758157723,
         "ConchaElvira": 1728088493,
         "ARISTOTELES": 1728405040,
         "lunadou": 1732944838,
@@ -74561,7 +76003,7 @@
     "RaulAG": {
       "index": 12375,
       "owner_key": "7mmhU4XF2Errx1Y1Eot7BMbDeB81jBAnbV7m7e4UmFMH",
-      "balance": 180248,
+      "balance": 159935,
       "membership_expire_on": 1713220605,
       "next_cert_issuable_on": 1687175819,
       "certs_received": {
@@ -74586,7 +76028,7 @@
     "Zephir69": {
       "index": 7511,
       "owner_key": "7mqT6PLFwVhcUYmWrzoitrPWckuwoAbNtZNrYcByPeWM",
-      "balance": 616322,
+      "balance": 656008,
       "membership_expire_on": 1706886332,
       "next_cert_issuable_on": 1676886331,
       "certs_received": {
@@ -74606,7 +76048,7 @@
     "BenoitTech": {
       "index": 8476,
       "owner_key": "7mwyGvw9NWkFMd1kkKqVnTn1w8XUFpKom2ntsgSXuUvm",
-      "balance": 428159,
+      "balance": 467845,
       "membership_expire_on": 1718248082,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -74626,9 +76068,9 @@
     "luismo": {
       "index": 6473,
       "owner_key": "7n1a2CKK8VThgP7weutv1Bb8Gx5zdZwf8S43ihG5nxq2",
-      "balance": 188904,
+      "balance": 227714,
       "membership_expire_on": 1720828332,
-      "next_cert_issuable_on": 1690796268,
+      "next_cert_issuable_on": 1695790197,
       "certs_received": {
         "kapis": 1719802628,
         "ArtesaniaAna": 1726821457,
@@ -74639,13 +76081,16 @@
         "carmela": 1702701547,
         "JACA": 1718069501,
         "Justis": 1702756562,
+        "Gerardo": 1758579993,
         "VeroDeJetsDoux": 1725512176,
         "sparkle765": 1724011982,
+        "Miguelprinter": 1757289644,
         "Josepeuta": 1704137478,
         "MeliCP": 1731895257,
         "Cdrix": 1702946243,
         "jmamorteg": 1752771824,
         "p3co": 1738765267,
+        "Madreselva": 1758151956,
         "JuanCapitan": 1702507513,
         "Melanina": 1722651879,
         "Pit": 1747355576,
@@ -74659,6 +76104,7 @@
         "Micha": 1740264912,
         "Koldo": 1721330686,
         "MaAn_MeVi": 1735771293,
+        "noemi": 1758763579,
         "Seminare0612": 1737724087,
         "SurfinMaya": 1702751282,
         "Runa_81": 1753242270,
@@ -74669,7 +76115,7 @@
     "Capucine888": {
       "index": 12135,
       "owner_key": "7n44ERtxpVnkqQ1jNCdwQMRvZXcNLzR1CYEU3vvk1a3p",
-      "balance": 165844,
+      "balance": 205530,
       "membership_expire_on": 1710776351,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -74684,11 +76130,12 @@
     "noktiluka": {
       "index": 11098,
       "owner_key": "7n51XWBxTaTec7Kcveo7fUGVw6ZH4Ts7Dh6gX8DYG4Rh",
-      "balance": 175827,
+      "balance": 187413,
       "membership_expire_on": 1704163431,
       "next_cert_issuable_on": 1685536580,
       "certs_received": {
         "xandraAritzkuren": 1735893082,
+        "jilguero": 1758208445,
         "kalendula": 1748716237,
         "MARAL": 1735765583,
         "Kris_Izaratia": 1735768348,
@@ -74699,7 +76146,7 @@
     "JeannedArc": {
       "index": 11206,
       "owner_key": "7n6r4SiZWm1P9qpVamYopDxpRSpkWYhqWyqFBLE58AKt",
-      "balance": 247796,
+      "balance": 287482,
       "membership_expire_on": 1705024026,
       "next_cert_issuable_on": 1685846862,
       "certs_received": {
@@ -74715,7 +76162,7 @@
     "BabouB62": {
       "index": 12392,
       "owner_key": "7nDqx4qc5iTk4hQnsj8ucpSeeHJEYfHTVqPd6mPE4Vg6",
-      "balance": 172744,
+      "balance": 212430,
       "membership_expire_on": 1712869444,
       "next_cert_issuable_on": 1687695388,
       "certs_received": {
@@ -74731,7 +76178,7 @@
     "Didierlife84": {
       "index": 3303,
       "owner_key": "7nYejBtACbCNwj9s1SnxcsMfSSHjtELdDTEmWdb53XZ4",
-      "balance": 312258,
+      "balance": 250444,
       "membership_expire_on": 1713562932,
       "next_cert_issuable_on": 1679318611,
       "certs_received": {
@@ -74744,7 +76191,7 @@
         "Feerique": 1704786247,
         "Lisa84": 1722729524,
         "Jenn84": 1706346954,
-        "lamouette": 1696225771,
+        "lamouette": 1759359715,
         "Dlies": 1714623023,
         "lapivoine": 1705727013,
         "Vicky": 1697433114,
@@ -74775,7 +76222,7 @@
     "Cospiel": {
       "index": 8437,
       "owner_key": "7oKwdmyFkQD2Eygx1N1DLJ1Mw6r35ys6BFWzHFwcsqLE",
-      "balance": 426132,
+      "balance": 465818,
       "membership_expire_on": 1711106942,
       "next_cert_issuable_on": 1681556296,
       "certs_received": {
@@ -74800,9 +76247,9 @@
     "RosadoraLafee": {
       "index": 1842,
       "owner_key": "7oLKw8bs7wd5HsnseaGiXWPUSUr1kvW3qyJw5DFMAbJK",
-      "balance": 429185,
+      "balance": 493871,
       "membership_expire_on": 1715274979,
-      "next_cert_issuable_on": 1686407090,
+      "next_cert_issuable_on": 1695377043,
       "certs_received": {
         "Eveilducoeur": 1729664279,
         "Selena": 1727200334,
@@ -74810,7 +76257,6 @@
         "CRey": 1698550885,
         "Audette": 1728497543,
         "Pascaleg": 1700799084,
-        "Didierlife84": 1696493548,
         "lulubelle": 1750041059,
         "Melusoize": 1742937736,
         "MichelS": 1705711756,
@@ -74829,20 +76275,21 @@
         "CovaDidier": 1697532184,
         "Fred04": 1726510553,
         "Sophiefiso": 1726362064,
-        "Lara": 1696278829,
         "Rajesh": 1743871904
       }
     },
     "Beatrice": {
       "index": 4623,
       "owner_key": "7oMCUfmbMsjWbBDqedz6z8Fnn9zTkQdgoYvmHGrTeSpD",
-      "balance": 268196,
-      "membership_expire_on": 1700701325,
-      "next_cert_issuable_on": 1688379598,
+      "balance": 198882,
+      "membership_expire_on": 1727624785,
+      "next_cert_issuable_on": 1693625200,
       "certs_received": {
         "PhilippeLafontaine": 1719652512,
+        "Guigui17": 1756668400,
         "SophieMichaud": 1716625436,
         "Valerieptjn17": 1718506637,
+        "Pope": 1759543934,
         "sandrine": 1752911482,
         "Plumedange": 1741051364,
         "BisQI": 1712621624,
@@ -74884,6 +76331,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "CorinA": {
+      "index": 13608,
+      "owner_key": "7oSPtT4sP2GVwpTud8eDRPQuWT68bPckDEdHR4X6TTUz",
+      "balance": 20394,
+      "membership_expire_on": 1726588890,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "absalon2": 1758238433,
+        "JMF": 1758264039,
+        "CatherineMontpellier": 1758223797,
+        "Annery": 1758164487,
+        "MFF": 1758263394
+      }
+    },
     "iandury3": {
       "index": 2662,
       "owner_key": "7odEFdBogHvwgKLdyWM5r2UEkwATYNHTtzwiSFbrMntZ",
@@ -74895,7 +76356,7 @@
     "Eguzki": {
       "index": 12028,
       "owner_key": "7ofRM9fnQCsT5ZasFb1SzkDVzXhM74Cpw4dd6LpFyfBR",
-      "balance": 113261,
+      "balance": 123947,
       "membership_expire_on": 1710516935,
       "next_cert_issuable_on": 1680924324,
       "certs_received": {
@@ -74906,10 +76367,24 @@
         "ABuenVivir": 1742277142
       }
     },
+    "Pascalou": {
+      "index": 13702,
+      "owner_key": "7ojEAVDw4Nd7ZS3CL28QbxVjkDtTNEMqv4Rh3PDuYUih",
+      "balance": 19586,
+      "membership_expire_on": 1727478423,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Artdevivre": 1759122203,
+        "Annae": 1759257147,
+        "DidierHarmonie": 1759096470,
+        "gilkidom": 1759200395,
+        "stephaniemartens": 1759177045
+      }
+    },
     "Soa": {
       "index": 11917,
       "owner_key": "7ombskqsDh61QvmiQ4zRcUSvqpcFjV6f3aujwAKCTmdt",
-      "balance": 186792,
+      "balance": 226478,
       "membership_expire_on": 1709561775,
       "next_cert_issuable_on": 1683433537,
       "certs_received": {
@@ -74923,7 +76398,7 @@
     "Tchunga": {
       "index": 7999,
       "owner_key": "7opcPXZLnr8uxvomQRRvPDp4wykzcPN4LrAmy6VHDyij",
-      "balance": 482664,
+      "balance": 472350,
       "membership_expire_on": 1709308736,
       "next_cert_issuable_on": 1676715505,
       "certs_received": {
@@ -74942,8 +76417,8 @@
     "Quantumsinergy": {
       "index": 10242,
       "owner_key": "7ozjbGeAppvMQQdwtb3KPj3q1zYzTqcJBLm8gDotYeJx",
-      "balance": 2316256,
-      "membership_expire_on": 1698459895,
+      "balance": 2355942,
+      "membership_expire_on": 1728278632,
       "next_cert_issuable_on": 1676307675,
       "certs_received": {
         "Justis": 1730512218,
@@ -74959,7 +76434,7 @@
     "nando": {
       "index": 12737,
       "owner_key": "7ozkJHsmf2SVikoa6zjLzkLvPyS66rkeLVf6uGXgJVht",
-      "balance": 114432,
+      "balance": 154118,
       "membership_expire_on": 1715973630,
       "next_cert_issuable_on": 1688459061,
       "certs_received": {
@@ -74976,7 +76451,7 @@
     "lulubelle": {
       "index": 7820,
       "owner_key": "7p1pNAq3LyTWq6rY7F1S6KwDpBPStZwn2LRBeYFUQp4a",
-      "balance": 677068,
+      "balance": 608754,
       "membership_expire_on": 1709217400,
       "next_cert_issuable_on": 1692116794,
       "certs_received": {
@@ -75012,7 +76487,7 @@
     "AnaisMS": {
       "index": 7585,
       "owner_key": "7pFsFLfGYizW8A6mcKGZBitSqqhXJ4ELe9e2JjxjqLeb",
-      "balance": 431896,
+      "balance": 471582,
       "membership_expire_on": 1709156568,
       "next_cert_issuable_on": 1673588139,
       "certs_received": {
@@ -75035,9 +76510,9 @@
     "Cleannes": {
       "index": 10250,
       "owner_key": "7pVCzmnemkL9r5w4wUwymC5DmFFa2azcBUYpbQFJJTQD",
-      "balance": 394584,
+      "balance": 434270,
       "membership_expire_on": 1698867441,
-      "next_cert_issuable_on": 1683626501,
+      "next_cert_issuable_on": 1693993253,
       "certs_received": {
         "HectorTotor": 1730427725,
         "Vivie82": 1730425744,
@@ -75066,7 +76541,7 @@
     "NaoKD": {
       "index": 7078,
       "owner_key": "7pvJZEWacB246A5xtVFReyk6kpatNTrZdYJcibv1ELn9",
-      "balance": 517068,
+      "balance": 556754,
       "membership_expire_on": 1716078530,
       "next_cert_issuable_on": 1684630531,
       "certs_received": {
@@ -75083,7 +76558,7 @@
     "heomonde": {
       "index": 9233,
       "owner_key": "7pwdmaxcSn6jSXsazeAhPi7J47YXQbXXqP2dZNe2x3zb",
-      "balance": 392564,
+      "balance": 432250,
       "membership_expire_on": 1719834955,
       "next_cert_issuable_on": 1678282685,
       "certs_received": {
@@ -75101,8 +76576,8 @@
     "OsKarTel": {
       "index": 10086,
       "owner_key": "7pwuggHaoCdDqcWUbQZo77zMD2QGLTC36aUYHXWQbpZR",
-      "balance": 225193,
-      "membership_expire_on": 1695040356,
+      "balance": 258431,
+      "membership_expire_on": 1727133539,
       "next_cert_issuable_on": 1685026874,
       "certs_received": {
         "Silvi": 1748081223,
@@ -75134,7 +76609,7 @@
     "thierryguerin": {
       "index": 6521,
       "owner_key": "7pyGea7NcVjS7t7HgrU5Qpiap6wnogu5Gb6CuxMQBRiw",
-      "balance": 646149,
+      "balance": 685835,
       "membership_expire_on": 1699103205,
       "next_cert_issuable_on": 1676463520,
       "certs_received": {
@@ -75154,7 +76629,7 @@
     "Juliettecauwe": {
       "index": 12003,
       "owner_key": "7pz1aB3XxjWWV5dauEBdUKB4541wjrEAfZpn7jaogaqo",
-      "balance": 179379,
+      "balance": 219065,
       "membership_expire_on": 1709246527,
       "next_cert_issuable_on": 1680433341,
       "certs_received": {
@@ -75168,7 +76643,7 @@
     "CrapaudCurieux": {
       "index": 994,
       "owner_key": "7q7GTQ6e5dwGJ7MNLragizkcAxmYp7ru566bPvmk2TnE",
-      "balance": 2088471,
+      "balance": 2158157,
       "membership_expire_on": 1723627537,
       "next_cert_issuable_on": 1665551352,
       "certs_received": {
@@ -75197,12 +76672,13 @@
     "Shankarina": {
       "index": 7668,
       "owner_key": "7q9LpJif17N5et8QKzfsSKv2CswKd9PyTrUnGsJPDVxU",
-      "balance": 216149,
+      "balance": 400835,
       "membership_expire_on": 1707783383,
-      "next_cert_issuable_on": 1692105950,
+      "next_cert_issuable_on": 1696653099,
       "certs_received": {
         "SandrineMala": 1714807183,
         "Coco83": 1741329241,
+        "RuthGuerrero": 1759481366,
         "Kristo": 1739581541,
         "THORGAL1968": 1754870302,
         "GabrielCohergne": 1712258585,
@@ -75220,12 +76696,14 @@
         "Oceanemagic": 1751665402,
         "Easy": 1735183616,
         "Maheshvarideviji": 1743633445,
+        "Performance": 1759708141,
         "Yohan": 1734079094,
         "GillesdeGaia": 1749923778,
         "RitaRosa": 1717030679,
         "Faquantharmonie": 1753995922,
         "PascaledeGaia": 1749923440,
         "OlivierditTiti": 1722818878,
+        "MarioM": 1759824122,
         "Marcolariegeois": 1717315308,
         "criscoutinho": 1738184465,
         "FlorenceFlore": 1722625116,
@@ -75258,7 +76736,7 @@
     "TramB": {
       "index": 7705,
       "owner_key": "7qB3PQeiA2BSKhMgV7MGfuFBBWSs2GXh8KoTuh34yGWw",
-      "balance": 528701,
+      "balance": 568387,
       "membership_expire_on": 1712946044,
       "next_cert_issuable_on": 1657534782,
       "certs_received": {
@@ -75273,9 +76751,9 @@
     "Lozang": {
       "index": 6150,
       "owner_key": "7qE3HcNLCsGS3NhY4YFYhQahn96EVpA56oSSbHeTBmVA",
-      "balance": 623607,
-      "membership_expire_on": 1700775668,
-      "next_cert_issuable_on": 1687151855,
+      "balance": 653293,
+      "membership_expire_on": 1727729729,
+      "next_cert_issuable_on": 1696244348,
       "certs_received": {
         "Come": 1697153979,
         "SabineD": 1697332550,
@@ -75283,6 +76761,7 @@
         "YvelineMNC": 1705272194,
         "Sofiachante": 1697483277,
         "Aveline": 1700289195,
+        "DJP05": 1759291879,
         "CocoBaud": 1714720691,
         "Tanguera": 1734674113,
         "chrisbaud": 1714342657,
@@ -75290,7 +76769,7 @@
         "PERSIFLEUR": 1699677569,
         "ChoraMadera": 1697483526,
         "DjedjePit": 1711734033,
-        "Niederhauser": 1697039131
+        "Niederhauser": 1759291559
       }
     },
     "Orailia19": {
@@ -75320,7 +76799,7 @@
     "Rafidy": {
       "index": 6489,
       "owner_key": "7qSv6xWZXXAy2cz2EPMJGpoFiNCtMV65zAqxUezsbUSN",
-      "balance": 650575,
+      "balance": 690261,
       "membership_expire_on": 1700448036,
       "next_cert_issuable_on": 1672763407,
       "certs_received": {
@@ -75334,7 +76813,7 @@
     "MarieF68": {
       "index": 13303,
       "owner_key": "7qZCXCNkjGSP4LPcyphRwSRAMEdrNyp4kjrSxoatGM3w",
-      "balance": 31972,
+      "balance": 71658,
       "membership_expire_on": 1722457806,
       "next_cert_issuable_on": 1692892648,
       "certs_received": {
@@ -75349,8 +76828,8 @@
     "Saroune": {
       "index": 9810,
       "owner_key": "7qZw88N14mbEtRQxnKX7zGLeqyPTHBe2P7yCp4ere6P3",
-      "balance": 465437,
-      "membership_expire_on": 1695556652,
+      "balance": 505123,
+      "membership_expire_on": 1726060422,
       "next_cert_issuable_on": 1675654681,
       "certs_received": {
         "LazareT": 1727842690,
@@ -75364,7 +76843,7 @@
     "Stroumphette": {
       "index": 12557,
       "owner_key": "7qa4y5RGkTr62F92M96yxXY5ymk69za4GYXbcA56EBBd",
-      "balance": 128856,
+      "balance": 168542,
       "membership_expire_on": 1714930914,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -75386,13 +76865,14 @@
     "LaFeeClochette": {
       "index": 12668,
       "owner_key": "7qdbwMcBvRMq9pF3gZLqxwu7uYoCdE5tGWU1H1qAYJx6",
-      "balance": 50576,
+      "balance": 43262,
       "membership_expire_on": 1715553941,
-      "next_cert_issuable_on": 1690709818,
+      "next_cert_issuable_on": 1696507117,
       "certs_received": {
         "ChristelR": 1747457446,
         "sro": 1747121803,
         "Couleurs": 1747421492,
+        "Ozia": 1758143182,
         "EtK": 1754627324,
         "VeroniqueMaessen": 1754085865,
         "isajouetbelle": 1747166695,
@@ -75406,7 +76886,7 @@
     "Eriel": {
       "index": 9257,
       "owner_key": "7qhhui92wUZrkjccuEZd7sTrb5wTL11qqRR5Je7NkVd3",
-      "balance": 350510,
+      "balance": 390196,
       "membership_expire_on": 1724777962,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -75420,7 +76900,7 @@
     "Asfalis": {
       "index": 13186,
       "owner_key": "7qhnGYLWfVVGpztdxN4mo768BT93YbpBV6rvsw2822bf",
-      "balance": 96892,
+      "balance": 136578,
       "membership_expire_on": 1721160723,
       "next_cert_issuable_on": 1689842884,
       "certs_received": {
@@ -75436,7 +76916,7 @@
     "Tulipe07": {
       "index": 10345,
       "owner_key": "7qi1VaNtec6hNm2d8C38YwWVRvGQj2djFtqAdVwFQ115",
-      "balance": 288495,
+      "balance": 292081,
       "membership_expire_on": 1699708628,
       "next_cert_issuable_on": 1676370217,
       "certs_received": {
@@ -75473,7 +76953,7 @@
     "ioio": {
       "index": 12513,
       "owner_key": "7r6nudGmw2ybtgm2hMBmhU9Qe6KNm9rgZAyFTdzVxyuF",
-      "balance": 102528,
+      "balance": 142214,
       "membership_expire_on": 1712949546,
       "next_cert_issuable_on": 1686468296,
       "certs_received": {
@@ -75489,7 +76969,7 @@
     "Lyl83": {
       "index": 4393,
       "owner_key": "7rArnUNXEdq1Re9m4sdhpabg6XNSGCKj6VgQK3FMb9iF",
-      "balance": 270230,
+      "balance": 309916,
       "membership_expire_on": 1700505215,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -75511,14 +76991,14 @@
     "janhsh": {
       "index": 772,
       "owner_key": "7rHgWH83skjWyNEZYc28iXVNjtLUUhaEUo1TndbxYSvG",
-      "balance": 1663673,
+      "balance": 1703359,
       "membership_expire_on": 1720417000,
       "next_cert_issuable_on": 1693290448,
       "certs_received": {
         "Christos_Styliaras": 1756252145,
         "Geohuit": 1696923598,
+        "Smarxzie": 1757702685,
         "SabrinaFrance": 1704929331,
-        "philippo": 1696387050,
         "gcabay": 1707976855,
         "CheyrelsRegine": 1702190340,
         "Sailorcherry": 1700293467,
@@ -75542,9 +77022,9 @@
     "ThierryLacaze": {
       "index": 5897,
       "owner_key": "7rVrzeuuy4HAkhqnfgyAPYMutyyQAiFbtBvRC3PNK3Mc",
-      "balance": 792099,
+      "balance": 817885,
       "membership_expire_on": 1722542968,
-      "next_cert_issuable_on": 1693407173,
+      "next_cert_issuable_on": 1694505302,
       "certs_received": {
         "jeje43": 1736920462,
         "Mollie": 1731526262,
@@ -75595,7 +77075,7 @@
     "Amelie": {
       "index": 10788,
       "owner_key": "7rZJzro1ojTURsWy7QT8xTS9rHWZNTTFGMUbkxNjfhN9",
-      "balance": 318343,
+      "balance": 358029,
       "membership_expire_on": 1701956235,
       "next_cert_issuable_on": 1681387907,
       "certs_received": {
@@ -75632,10 +77112,11 @@
     "Tchoupi": {
       "index": 8102,
       "owner_key": "7rcjcXfTTrcNsAvw8hE1kbJCFqn6nwKKakdSQvVFpJp9",
-      "balance": 380432,
+      "balance": 369118,
       "membership_expire_on": 1710688101,
-      "next_cert_issuable_on": 1692050216,
+      "next_cert_issuable_on": 1695642819,
       "certs_received": {
+        "kapis": 1759092564,
         "Etipol61": 1715837072,
         "BOUbou007": 1715836451,
         "Nekane": 1721067385,
@@ -75660,6 +77141,7 @@
         "minas": 1721066134,
         "Mido": 1732846500,
         "GeneBe": 1747174198,
+        "Mireilleplantessauvages": 1758772239,
         "fania": 1723542069
       }
     },
@@ -75687,21 +77169,18 @@
     "OlivierMaurice": {
       "index": 2799,
       "owner_key": "7rrVWxe6U5yxF3JEU3GjyDXcfBMSoSAFgGso9tCBST5F",
-      "balance": 60587,
+      "balance": 20273,
       "membership_expire_on": 1710323625,
-      "next_cert_issuable_on": 1691576665,
+      "next_cert_issuable_on": 1695445885,
       "certs_received": {
         "Vivakvo": 1715135561,
         "MarliMarl": 1730997089,
-        "philippo": 1694153429,
-        "Belka": 1694207241,
         "FilouLibre59": 1716106946,
         "BenNature": 1706706849,
         "CatherineMaire": 1736114516,
         "AnneMarieRuiz": 1750189093,
-        "Glass": 1696403205,
-        "zabel": 1701225549,
-        "Profil": 1696313454
+        "Glass": 1757648199,
+        "zabel": 1701225549
       }
     },
     "dalila": {
@@ -75723,8 +77202,8 @@
     "spherien": {
       "index": 2321,
       "owner_key": "7s7YymwFKxiv642A5upqDv39eNmhUhrumdHkccWndTQG",
-      "balance": 1558641,
-      "membership_expire_on": 1696458827,
+      "balance": 1598327,
+      "membership_expire_on": 1725538756,
       "next_cert_issuable_on": 1677734998,
       "certs_received": {
         "Jefferson": 1739996005,
@@ -75741,7 +77220,7 @@
     "Ouimaisnon": {
       "index": 8585,
       "owner_key": "7s7tTG7TXScn9oiGGWsbfUVpiU3Es1dzgpfX5FNUfjeC",
-      "balance": 388942,
+      "balance": 428628,
       "membership_expire_on": 1721678075,
       "next_cert_issuable_on": 1679990155,
       "certs_received": {
@@ -75758,7 +77237,7 @@
     "Viola": {
       "index": 13126,
       "owner_key": "7sAYbf1ZeSC3vcKszn6Xa6iC7TjeCuSAMsnsPxnaw8vE",
-      "balance": 56964,
+      "balance": 96650,
       "membership_expire_on": 1717707024,
       "next_cert_issuable_on": 1689057003,
       "certs_received": {
@@ -75772,7 +77251,7 @@
     "BlackHorse": {
       "index": 8101,
       "owner_key": "7sB1sqETwfknZHnvPjVjAB4GkMYzjsGS5JZyUEHk3TdQ",
-      "balance": 281863,
+      "balance": 321549,
       "membership_expire_on": 1719839968,
       "next_cert_issuable_on": 1675303297,
       "certs_received": {
@@ -75799,7 +77278,7 @@
     "C13BrianaKala": {
       "index": 6256,
       "owner_key": "7sEbwQqwX3AYKv7KPah1PjCacSpeBFrwZb4JcwRgErBn",
-      "balance": 683731,
+      "balance": 723417,
       "membership_expire_on": 1700254626,
       "next_cert_issuable_on": 1651595087,
       "certs_received": {
@@ -75815,7 +77294,7 @@
     "Roselyne": {
       "index": 7521,
       "owner_key": "7sLeYc4vk7YZa3q8eTnGYTDrNoBxwX2qg1jEZuUwE6tB",
-      "balance": 549551,
+      "balance": 589237,
       "membership_expire_on": 1705481747,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -75829,7 +77308,7 @@
     "Mohinii": {
       "index": 9262,
       "owner_key": "7sLjCBbC41y3uoZzJmvcHXSimNTMwyPecMDqnL2JR9WX",
-      "balance": 122011,
+      "balance": 101697,
       "membership_expire_on": 1718672868,
       "next_cert_issuable_on": 1684499608,
       "certs_received": {
@@ -75854,7 +77333,7 @@
     "Epinard76": {
       "index": 10068,
       "owner_key": "7sMmtoiroSzbNXSY6tzV8tUdVyPNitxLyU417i9fyDhk",
-      "balance": 363016,
+      "balance": 402702,
       "membership_expire_on": 1722120735,
       "next_cert_issuable_on": 1690857591,
       "certs_received": {
@@ -75882,7 +77361,7 @@
     "JanJan21": {
       "index": 11749,
       "owner_key": "7sP8KoJQVRTYBz8JTvxaYbix18BVygqQpWwMuFDFxWby",
-      "balance": 265059,
+      "balance": 304745,
       "membership_expire_on": 1708461757,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -75920,17 +77399,29 @@
     "Steph41": {
       "index": 12829,
       "owner_key": "7smT4ATuie2Xh8irzrastYCdAtitdJN57CWL2N1o7wBu",
-      "balance": 91848,
+      "balance": 131534,
       "membership_expire_on": 1716467715,
-      "next_cert_issuable_on": 1690798097,
+      "next_cert_issuable_on": 1694747590,
       "certs_received": {
         "Rebel": 1749018551,
+        "Papou": 1757892902,
+        "DomMembre": 1758164973,
         "DomVe": 1748037798,
+        "Myosotis": 1757126461,
+        "Sisi": 1759817204,
         "ChloeS": 1748713934,
+        "Gioelina": 1759138894,
+        "cpriou11": 1757546712,
         "GeraldS": 1748041206,
+        "TheoVS": 1757839836,
+        "Mohanad": 1758347938,
         "Nyriel": 1748038439,
+        "Nadia": 1759134482,
         "Antares13": 1748037798,
-        "Puravida": 1748066879
+        "Puravida": 1748066879,
+        "LolotteCL": 1758405413,
+        "AlexCl": 1758778479,
+        "Phenix": 1759138237
       }
     },
     "bibi09": {
@@ -75958,7 +77449,7 @@
     "Pouette18": {
       "index": 12784,
       "owner_key": "7srY6U58DRDW9cFnyqtKQsz3JNBDz8Zt8xqyENrwupnW",
-      "balance": 124572,
+      "balance": 214258,
       "membership_expire_on": 1717033915,
       "next_cert_issuable_on": 1688748048,
       "certs_received": {
@@ -75973,8 +77464,8 @@
     "FreakyFox": {
       "index": 9775,
       "owner_key": "7stW83hciFdgWR4Xf3NQopSRGq8uVXUvr2rrFnsbuY7N",
-      "balance": 356055,
-      "membership_expire_on": 1694985678,
+      "balance": 374211,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673878582,
       "certs_received": {
         "Letiars": 1727637069,
@@ -75999,6 +77490,20 @@
         "AgneSb": 1725095146
       }
     },
+    "cyriana2006": {
+      "index": 13579,
+      "owner_key": "7svbRmJMvgfcVWiM3MmRdZH6Y2N4cfV7tB8Yf3L9ypZN",
+      "balance": 25666,
+      "membership_expire_on": 1724279654,
+      "next_cert_issuable_on": 1694923295,
+      "certs_received": {
+        "ColetteNavaux": 1756088257,
+        "Gioelina": 1757925620,
+        "Bebeth": 1756238824,
+        "louirit": 1756088257,
+        "Phenix": 1757925620
+      }
+    },
     "Ealhad": {
       "index": 203,
       "owner_key": "7svi9k5mC17CTaKkb7Mm3J72wnx8iR7V7W9CWDAVQHKt",
@@ -76010,7 +77515,7 @@
     "MaelysV": {
       "index": 3573,
       "owner_key": "7t5VkJwqLhGGMQUst79fXd3poFXs6Bymcn9eQ9eG3Jvw",
-      "balance": 766035,
+      "balance": 805721,
       "membership_expire_on": 1701218379,
       "next_cert_issuable_on": 1690040322,
       "certs_received": {
@@ -76031,7 +77536,7 @@
     "Madamelaverte": {
       "index": 9025,
       "owner_key": "7t8ig42qUwE6Fx7cy3LpYX4iFZhFqQRJWLGL4ur56g9w",
-      "balance": 411802,
+      "balance": 451488,
       "membership_expire_on": 1718893012,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -76045,9 +77550,9 @@
     "CelineKa": {
       "index": 13324,
       "owner_key": "7t8oapRoKyQqbpPeUrLHqysqmsvNdx3FbWFSHMp3pNfd",
-      "balance": 45700,
+      "balance": 95386,
       "membership_expire_on": 1722697941,
-      "next_cert_issuable_on": 1692351147,
+      "next_cert_issuable_on": 1695124748,
       "certs_received": {
         "JeePofMars": 1754085201,
         "David13500": 1754055455,
@@ -76068,7 +77573,7 @@
     "EquusMordicus": {
       "index": 11108,
       "owner_key": "7tE2szqpKEWuDDLpLG3qhqY4nsYZPgbRfPVzfJGkhrW",
-      "balance": 255568,
+      "balance": 295254,
       "membership_expire_on": 1703198401,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -76082,8 +77587,8 @@
     "viyda": {
       "index": 10458,
       "owner_key": "7tH5qeBxsS15UMAf8Jh3FsGmpPkUJqBUBLwDgXyK3UTo",
-      "balance": 483060,
-      "membership_expire_on": 1699439287,
+      "balance": 448546,
+      "membership_expire_on": 1725816807,
       "next_cert_issuable_on": 1676999098,
       "certs_received": {
         "xandraAritzkuren": 1732095162,
@@ -76140,9 +77645,9 @@
     "vibes": {
       "index": 5985,
       "owner_key": "7tgRKmiDMB7Q9Nts8Cxcas4tvMSP8vPR4pNdzxUwzhnV",
-      "balance": 762258,
+      "balance": 897905,
       "membership_expire_on": 1722182789,
-      "next_cert_issuable_on": 1693184365,
+      "next_cert_issuable_on": 1696340084,
       "certs_received": {
         "MicheleSauterey": 1755315755,
         "thibat": 1738807085,
@@ -76166,14 +77671,14 @@
     "Babaroun": {
       "index": 6059,
       "owner_key": "7tiMUZ3YuttUQwHEj25Sf7QZrgHZWfMPyQt2g9dmAGM7",
-      "balance": 633681,
-      "membership_expire_on": 1697744128,
-      "next_cert_issuable_on": 1684248585,
+      "balance": 673367,
+      "membership_expire_on": 1725552376,
+      "next_cert_issuable_on": 1694655746,
       "certs_received": {
         "Midorela": 1724222998,
         "Boussaakat-hich": 1699823560,
         "Ruby": 1699823560,
-        "Ashawik": 1699747334,
+        "Ashawik": 1756402460,
         "ChristopheD": 1718917858,
         "nuvolari": 1699857520,
         "AmeSurTerre": 1700358332,
@@ -76186,7 +77691,7 @@
     "Puku": {
       "index": 10134,
       "owner_key": "7tkMR5ePxAhwyv2EaRekAaEUwRXQdMeo9Z3hSjC7YobD",
-      "balance": 102453,
+      "balance": 174282,
       "membership_expire_on": 1696991857,
       "next_cert_issuable_on": 1674641147,
       "certs_received": {
@@ -76201,7 +77706,7 @@
     "Pac": {
       "index": 1825,
       "owner_key": "7tkuL87FWdfSWDHDao197TG4yQNCe4kXHPEvdL4qjYV3",
-      "balance": 1339813,
+      "balance": 1379499,
       "membership_expire_on": 1696946533,
       "next_cert_issuable_on": 1688044309,
       "certs_received": {
@@ -76230,9 +77735,9 @@
     "OdalOnTheRoad": {
       "index": 7778,
       "owner_key": "7tmXAELFPigK5v1eRGrn37D9yyGv83MfCPMwReAvKEPW",
-      "balance": 497670,
+      "balance": 537356,
       "membership_expire_on": 1708024352,
-      "next_cert_issuable_on": 1691544729,
+      "next_cert_issuable_on": 1693546888,
       "certs_received": {
         "ChristianDelaunay": 1713210616,
         "Clementdaussin": 1713650408,
@@ -76244,7 +77749,7 @@
     "VidyaB77": {
       "index": 11010,
       "owner_key": "7tp5uQUN5eHQtg6wM8q4GHhXQwdy5JyJQmwRkKEvoK1y",
-      "balance": 257150,
+      "balance": 296836,
       "membership_expire_on": 1703278925,
       "next_cert_issuable_on": 1680009923,
       "certs_received": {
@@ -76269,10 +77774,11 @@
     "AurelienCollombet": {
       "index": 8162,
       "owner_key": "7u7bKxp1CYmCZCcUsczTuQccbTodzpyb8pSdU3Ac54vi",
-      "balance": 352184,
+      "balance": 346870,
       "membership_expire_on": 1724634068,
       "next_cert_issuable_on": 0,
       "certs_received": {
+        "HelloSunshine": 1756682398,
         "Callepsa": 1716148371,
         "Nellio": 1716148371,
         "NaoKD": 1716241061,
@@ -76283,7 +77789,7 @@
     "RachelGreen": {
       "index": 7314,
       "owner_key": "7u9a31LDu3RD1ZPH1shXwCcxQYFN7BR2P63gU9qK57U6",
-      "balance": 63494,
+      "balance": 62331,
       "membership_expire_on": 1705278168,
       "next_cert_issuable_on": 1672237709,
       "certs_received": {
@@ -76337,7 +77843,7 @@
     "DeniseGhiti": {
       "index": 3367,
       "owner_key": "7uByJr2KtSX3A48eLAPY9fwfTih1MxQaQEGT26kseCJg",
-      "balance": 1189303,
+      "balance": 1228989,
       "membership_expire_on": 1708529634,
       "next_cert_issuable_on": 1651906451,
       "certs_received": {
@@ -76360,7 +77866,7 @@
     "Tiffani": {
       "index": 13466,
       "owner_key": "7uMt5MXHC1DjTGPFEsTYQVhmUUZUMnZtVenCY6MPH7kV",
-      "balance": 54068,
+      "balance": 93754,
       "membership_expire_on": 1724814579,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -76374,7 +77880,7 @@
     "Billitis": {
       "index": 3864,
       "owner_key": "7uPZH7UrRA96A3zE6JmmDBxGA8aQWgXzw1GFf5d3wqsN",
-      "balance": 951527,
+      "balance": 991213,
       "membership_expire_on": 1711832278,
       "next_cert_issuable_on": 1661652277,
       "certs_received": {
@@ -76382,14 +77888,13 @@
         "NineNova": 1714772011,
         "echo": 1744239179,
         "Roxane": 1730997089,
-        "Cywil": 1719425103,
-        "Marline": 1696103604
+        "Cywil": 1719425103
       }
     },
     "Lenny": {
       "index": 7321,
       "owner_key": "7uR8d13GjgU6peghsVSLpV1xuiCFiBBeC1RAXmkM5aop",
-      "balance": 560154,
+      "balance": 599840,
       "membership_expire_on": 1709176192,
       "next_cert_issuable_on": 1670328372,
       "certs_received": {
@@ -76412,7 +77917,7 @@
     "BertrandBigot": {
       "index": 4649,
       "owner_key": "7ucwahTVCtGw3Tmpmcyzsh1BXqgNCfEZ9YhptVnJANc3",
-      "balance": 784996,
+      "balance": 824682,
       "membership_expire_on": 1713706024,
       "next_cert_issuable_on": 1682220424,
       "certs_received": {
@@ -76426,8 +77931,8 @@
     "LeBouffon": {
       "index": 9736,
       "owner_key": "7ugLsncbP7TwUC6b47KQg4zAvRzACmnk1a52W7YxRa1A",
-      "balance": 351032,
-      "membership_expire_on": 1695161644,
+      "balance": 371324,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1677936513,
       "certs_received": {
         "Niranjana": 1727477246,
@@ -76443,22 +77948,22 @@
     "dongo0011": {
       "index": 3029,
       "owner_key": "7umEvHgdxG3ZAaEkvqjYeb3GJt3trx99LVhLiFy22BGb",
-      "balance": 1251128,
+      "balance": 1230814,
       "membership_expire_on": 1717329902,
       "next_cert_issuable_on": 1659781707,
       "certs_received": {
         "absalon2": 1748965432,
         "Sev": 1698472102,
+        "Florencefleur": 1757606001,
         "ClaudeM": 1698789509,
         "LenaB": 1699764440,
-        "Damery": 1694562879,
         "Sandy": 1749315932
       }
     },
     "Mandy": {
       "index": 154,
       "owner_key": "7uooKJd4J1F3RxcffzKN2s8DnVQf7sJZpL4LFv7GBNYL",
-      "balance": 951323,
+      "balance": 991009,
       "membership_expire_on": 1696877844,
       "next_cert_issuable_on": 1673858090,
       "certs_received": {
@@ -76472,13 +77977,11 @@
     "dineflore": {
       "index": 4151,
       "owner_key": "7uoyuNNodfn9yQQdR6sZZAmwK7P31vWAJxeuUPWFNSfU",
-      "balance": 1043205,
+      "balance": 1082891,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
-        "Adri46": 1693875530,
         "will46": 1744869694,
-        "Jcteulier": 1693687599,
         "malou": 1744869694,
         "HectorTotor": 1718579726,
         "azylis": 1744869694,
@@ -76496,32 +77999,33 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1684490275,
       "certs_received": {
-        "Alcidejet": 1695600357,
         "Pascal": 1703652187,
-        "chcesetti": 1749353674,
-        "TaaniTheophile": 1695839142,
-        "FredB": 1695574436
+        "chcesetti": 1749353674
       }
     },
     "Mame": {
       "index": 5944,
       "owner_key": "7utyjCcSctnYVNU79JGhW3JbFagXsqG3CBB8cqeLd541",
-      "balance": 529386,
+      "balance": 569072,
       "membership_expire_on": 1699535587,
       "next_cert_issuable_on": 1689401405,
       "certs_received": {
         "Yipyip": 1700813244,
         "lunerousse": 1697088202,
         "tiphaine": 1696976103,
-        "MoniQ": 1697002817,
-        "Lili21": 1697008347,
-        "Spartacus": 1696976103
+        "Mayo": 1759467713,
+        "MoniQ": 1759461422,
+        "Lili21": 1759205608,
+        "Steeve": 1759468005,
+        "Poutchy": 1759544731,
+        "Spartacus": 1756856213,
+        "Wipsita": 1759471050
       }
     },
     "ILLIMITEE": {
       "index": 10704,
       "owner_key": "7uwAidg1JvKespV5PErFyzrndBGwbsEVquRhZVehKSWx",
-      "balance": 276138,
+      "balance": 315824,
       "membership_expire_on": 1699220165,
       "next_cert_issuable_on": 1688133551,
       "certs_received": {
@@ -76541,7 +78045,7 @@
     "Rydi": {
       "index": 13446,
       "owner_key": "7uy5bHR5W8gkFQbukmYSDH6U66n6ewzqcgidQ2nH92Wk",
-      "balance": 11350,
+      "balance": 56536,
       "membership_expire_on": 1721598876,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -76563,7 +78067,7 @@
     "NathalieBolly": {
       "index": 6474,
       "owner_key": "7v68f4k3HtLZDoWuhGjusNsEaxe76MSeRchUGprqhJXf",
-      "balance": 650817,
+      "balance": 690503,
       "membership_expire_on": 1723158713,
       "next_cert_issuable_on": 1644832795,
       "certs_received": {
@@ -76587,14 +78091,17 @@
     "JeanLucCrcfx": {
       "index": 1321,
       "owner_key": "7vKPbtUgYsimD8rWbXA1jawhn62AQDJARibuZ86tG6gJ",
-      "balance": 522500,
+      "balance": 562186,
       "membership_expire_on": 1705945982,
-      "next_cert_issuable_on": 1690284277,
+      "next_cert_issuable_on": 1696742322,
       "certs_received": {
         "MilaChavez": 1734471695,
         "Nielda141": 1703200318,
         "Summerinfinity": 1735195061,
+        "rjblein": 1759258129,
         "Lorraine83": 1736309969,
+        "ElisabethNyons": 1759291244,
+        "martine26": 1759258129,
         "thomasensp": 1699577090
       }
     },
@@ -76609,8 +78116,8 @@
     "Margot91": {
       "index": 4400,
       "owner_key": "7vNQbwqFmeR4JnmydYgtCDqf5uviqmXLLrdAYLAGE17d",
-      "balance": 951252,
-      "membership_expire_on": 1696162895,
+      "balance": 984470,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678268950,
       "certs_received": {
         "SebastienChristelle": 1728785185,
@@ -76633,7 +78140,7 @@
     "jeanferreira": {
       "index": 44,
       "owner_key": "7vU9BMDhN6fBuRa2iK3JRbC6pqQKb4qDMGsFcQuT5cz",
-      "balance": 2024808,
+      "balance": 2064494,
       "membership_expire_on": 1710541174,
       "next_cert_issuable_on": 1688781145,
       "certs_received": {
@@ -76663,7 +78170,7 @@
     "Florent32": {
       "index": 12260,
       "owner_key": "7vWB4eTXdV5688ekNg5135guHo595Ee6mVujMapgH3F8",
-      "balance": 156996,
+      "balance": 196682,
       "membership_expire_on": 1711391113,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -76680,7 +78187,7 @@
     "LesJardinsdeMalia": {
       "index": 7837,
       "owner_key": "7vaj7wJ56m6EJaupiAinEGGceSmEVDKqiXCdNx7ZGh2Y",
-      "balance": 352653,
+      "balance": 243339,
       "membership_expire_on": 1711283219,
       "next_cert_issuable_on": 1671464151,
       "certs_received": {
@@ -76698,7 +78205,7 @@
     "GabrielSteinier": {
       "index": 13404,
       "owner_key": "7vrX5Z7tBfta58r1YXaG1uoAJTTjNseajhnMsmLAU3G6",
-      "balance": 14903,
+      "balance": 54589,
       "membership_expire_on": 1719759014,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -76715,7 +78222,7 @@
     "Carinelechelle": {
       "index": 13111,
       "owner_key": "7vrcYjNGT7dg5egBuQFFSiDcWZyPiWMQ1qu5eWGQcF7g",
-      "balance": 78008,
+      "balance": 117694,
       "membership_expire_on": 1720287142,
       "next_cert_issuable_on": 1692280585,
       "certs_received": {
@@ -76729,8 +78236,8 @@
     "KimDS": {
       "index": 3453,
       "owner_key": "7vtP69y4CLQfE2sTbA2y2fL8HECMujieeqtcvnNanscF",
-      "balance": 474834,
-      "membership_expire_on": 1694287670,
+      "balance": 464180,
+      "membership_expire_on": 1726323297,
       "next_cert_issuable_on": 1684824041,
       "certs_received": {
         "kapis": 1738040158,
@@ -76748,12 +78255,12 @@
     "KevinRF": {
       "index": 6420,
       "owner_key": "7vvUrTrEoABBVK3qMUqSoytiRhBgCSh2iDuC7sZF2MAt",
-      "balance": 792722,
+      "balance": 832408,
       "membership_expire_on": 1699467201,
       "next_cert_issuable_on": 1668348713,
       "certs_received": {
         "Nathawie": 1708144409,
-        "Helenep": 1702774840,
+        "Helenep": 1759118452,
         "JerryBB": 1702408654,
         "darben87": 1702415252,
         "Debu24590": 1702409270,
@@ -76799,7 +78306,7 @@
     "cerise07": {
       "index": 12807,
       "owner_key": "7wDc6hNAq5DmEQVHSJx1j2WzJVYJQiqmTbLxy4xPXQaQ",
-      "balance": 842884,
+      "balance": 882570,
       "membership_expire_on": 1717013958,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -76813,7 +78320,7 @@
     "Anime": {
       "index": 12556,
       "owner_key": "7wDrakEWXGpQbnmr9VCi9EbPPNyR4TRqHtuDRF7xQgxe",
-      "balance": 124956,
+      "balance": 164642,
       "membership_expire_on": 1714240064,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -76838,7 +78345,7 @@
     "F0xl1n": {
       "index": 7339,
       "owner_key": "7wHqHDZGRzEMxoJFgNtagZPo2ZpEXcb5cBPkx4TG729E",
-      "balance": 252598,
+      "balance": 292284,
       "membership_expire_on": 1709590968,
       "next_cert_issuable_on": 1681530446,
       "certs_received": {
@@ -76870,9 +78377,9 @@
     "Celine": {
       "index": 3826,
       "owner_key": "7wNDPNadqSZA7YnUxxHsLZVqAsraJQt1m2mpFKh56ZCn",
-      "balance": 839805,
+      "balance": 884882,
       "membership_expire_on": 1705239923,
-      "next_cert_issuable_on": 1654505523,
+      "next_cert_issuable_on": 1695126387,
       "certs_received": {
         "Re-belle": 1714934829,
         "McBidouille": 1714440688,
@@ -76893,7 +78400,7 @@
     "Melanie30": {
       "index": 6928,
       "owner_key": "7wR5wSHVopQBNnt5adCP54xoDuFx3fcDYYjUGtMxqUpD",
-      "balance": 485801,
+      "balance": 525487,
       "membership_expire_on": 1705529098,
       "next_cert_issuable_on": 1678451430,
       "certs_received": {
@@ -76912,7 +78419,7 @@
     "Chelsea": {
       "index": 10504,
       "owner_key": "7wdbSFvJAYWevPF4JtQigVZnsQUJK5iAZLVpDEdzX7mh",
-      "balance": 151646,
+      "balance": 191332,
       "membership_expire_on": 1699888984,
       "next_cert_issuable_on": 1682846045,
       "certs_received": {
@@ -76947,7 +78454,7 @@
     "Frederck": {
       "index": 8201,
       "owner_key": "7wuJfXANhNm5icrbxfPcEQzGf5EuHDmgJqAXouDrCU4R",
-      "balance": 357309,
+      "balance": 396995,
       "membership_expire_on": 1712446655,
       "next_cert_issuable_on": 1683380133,
       "certs_received": {
@@ -76963,7 +78470,7 @@
     "PaulineDebeure": {
       "index": 13401,
       "owner_key": "7x2QAZ498mzVg8zaBcTxri6nNz7fD34WPUHFpwRYqtoC",
-      "balance": 12816,
+      "balance": 52502,
       "membership_expire_on": 1723983473,
       "next_cert_issuable_on": 1693021438,
       "certs_received": {
@@ -76978,7 +78485,7 @@
     "louchat": {
       "index": 6798,
       "owner_key": "7x2geX47gvgyR3Ey4qHhoGVsobW8Ts6MVBdG1puEcVHn",
-      "balance": 413371,
+      "balance": 453057,
       "membership_expire_on": 1708621343,
       "next_cert_issuable_on": 1679999884,
       "certs_received": {
@@ -77023,7 +78530,7 @@
     "Ge31": {
       "index": 6490,
       "owner_key": "7x9WaK4GyPYTjr3uLMjZoYY5NFqCvb4MW7f6F86zJcqZ",
-      "balance": 1030471,
+      "balance": 1070157,
       "membership_expire_on": 1700483452,
       "next_cert_issuable_on": 1652105395,
       "certs_received": {
@@ -77056,7 +78563,7 @@
     "LilaBen": {
       "index": 10818,
       "owner_key": "7xKtZdu9coy4tCmuxrJqhevNdWzs41vkRbBwyEPTaXhw",
-      "balance": 278925,
+      "balance": 318611,
       "membership_expire_on": 1699191745,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -77071,8 +78578,8 @@
     "batata": {
       "index": 2024,
       "owner_key": "7xLP5V7r1JcDBUxmZ4rM4YgaHgWwxbpN3u4NuzfHXfwS",
-      "balance": 1760972,
-      "membership_expire_on": 1695240538,
+      "balance": 1796346,
+      "membership_expire_on": 1727144730,
       "next_cert_issuable_on": 1670341947,
       "certs_received": {
         "DanWF": 1707270739,
@@ -77089,7 +78596,7 @@
     "Bloodtears": {
       "index": 11047,
       "owner_key": "7xQjtWiZuLrTtGnHAhuRRJxwTxqoHHsCZqnJ6LkyYtLB",
-      "balance": 29372,
+      "balance": 19058,
       "membership_expire_on": 1701372039,
       "next_cert_issuable_on": 1677524627,
       "certs_received": {
@@ -77106,9 +78613,9 @@
     "Nelmotard58": {
       "index": 11458,
       "owner_key": "7xWRPGUZqLTUbHC9p8Qan3JiQYjx5VVZaiDt1U9Suskc",
-      "balance": 141198,
+      "balance": 180884,
       "membership_expire_on": 1705430682,
-      "next_cert_issuable_on": 1693206885,
+      "next_cert_issuable_on": 1694604999,
       "certs_received": {
         "Holistique": 1738565376,
         "Charbel45": 1750395499,
@@ -77148,13 +78655,17 @@
     "Kaena70": {
       "index": 6591,
       "owner_key": "7xaVjuMuPVWMadew9CJbMFWXyrki8jPxgNmEpA24Gzem",
-      "balance": 266281,
-      "membership_expire_on": 1699406944,
-      "next_cert_issuable_on": 1687600211,
+      "balance": 256567,
+      "membership_expire_on": 1727129280,
+      "next_cert_issuable_on": 1695703064,
       "certs_received": {
         "Annelatarzane": 1742605064,
+        "Natalya71": 1759304835,
+        "MaiseD": 1758853222,
+        "Ajna21": 1758691139,
         "Ofildevie": 1749517528,
         "Georges": 1702719248,
+        "Sandrabacq": 1758853222,
         "Klerkival": 1703834233,
         "LeoLiens": 1702715723,
         "MuseaudeLievre": 1703026199,
@@ -77164,7 +78675,7 @@
     "Catwoman": {
       "index": 8342,
       "owner_key": "7xsad81EadeUEhHv1JTCBRPfVrQqdU7iTsk2WQHgkgQo",
-      "balance": 371359,
+      "balance": 421045,
       "membership_expire_on": 1714871094,
       "next_cert_issuable_on": 1665382984,
       "certs_received": {
@@ -77196,7 +78707,7 @@
     "Miccharpent": {
       "index": 10817,
       "owner_key": "7y8vPmheAWAevBKygPK4BuYYGiwwn3ugKV9N5hauLHxW",
-      "balance": 293925,
+      "balance": 333611,
       "membership_expire_on": 1702042533,
       "next_cert_issuable_on": 1671276383,
       "certs_received": {
@@ -77210,8 +78721,8 @@
     "BobMarchand": {
       "index": 4397,
       "owner_key": "7yGSMEDcGQ6mzEJEQdWgvzwqXzPNHDoESz89XHq8S1bE",
-      "balance": 462025,
-      "membership_expire_on": 1696002750,
+      "balance": 518477,
+      "membership_expire_on": 1727808770,
       "next_cert_issuable_on": 1689227182,
       "certs_received": {
         "JF13": 1707245930,
@@ -77219,7 +78730,6 @@
         "Mollie": 1735273753,
         "MAGSENS": 1712212692,
         "NathalieCatelin": 1747802893,
-        "IngridCourreges": 1696421398,
         "Nickita13": 1726279325,
         "gimo": 1736288728,
         "Christine13": 1732652787,
@@ -77235,7 +78745,6 @@
         "AgnesMareau": 1721092355,
         "CTL": 1721583303,
         "DannyDadoune": 1701676679,
-        "CharlesD": 1694023147,
         "ArnaudLuc": 1701132237,
         "Shirlaip": 1705120259,
         "Karukera": 1720246208,
@@ -77247,7 +78756,7 @@
     "romaincas": {
       "index": 6168,
       "owner_key": "7yJyRx37oj8fQwJAZRLBcGYv787PSM8QiNY4ddmTqrcx",
-      "balance": 531692,
+      "balance": 571378,
       "membership_expire_on": 1704556916,
       "next_cert_issuable_on": 1658027987,
       "certs_received": {
@@ -77317,8 +78826,8 @@
     "MICOTON": {
       "index": 9705,
       "owner_key": "7yaqLVwQVDivdYUR8ksBHKTWBswvCTrBV7LRG3Lbsyet",
-      "balance": 358350,
-      "membership_expire_on": 1695827954,
+      "balance": 387256,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666785873,
       "certs_received": {
         "Kimoto": 1727394478,
@@ -77368,8 +78877,8 @@
     "SaRa": {
       "index": 6719,
       "owner_key": "7zBWnmTutruKPjsobyeki69SYsW9HouK1hHH6Qdz4Ab2",
-      "balance": 418399,
-      "membership_expire_on": 1700235535,
+      "balance": 458085,
+      "membership_expire_on": 1728077577,
       "next_cert_issuable_on": 1681714804,
       "certs_received": {
         "anniedubayle": 1732167051,
@@ -77402,7 +78911,7 @@
     "Mathlot": {
       "index": 10652,
       "owner_key": "7zBd7k5TyyJewApPSCM7mFSAhi4v2ZQFbpPiLAx7D5dv",
-      "balance": 278362,
+      "balance": 318048,
       "membership_expire_on": 1701464356,
       "next_cert_issuable_on": 1677993680,
       "certs_received": {
@@ -77425,7 +78934,7 @@
     "Thierryaixois": {
       "index": 7292,
       "owner_key": "7zHU2fMnNGQ4ZWExn62q2g9YDDBbdwV1vWYBFh81CXGH",
-      "balance": 560415,
+      "balance": 600101,
       "membership_expire_on": 1706900650,
       "next_cert_issuable_on": 1675415050,
       "certs_received": {
@@ -77441,7 +78950,7 @@
     "Ariane73": {
       "index": 10821,
       "owner_key": "7zLXBbeGkwZQTEs9UtdmiyGvGYXNiqigGwKSb9LUwPm8",
-      "balance": 278925,
+      "balance": 318611,
       "membership_expire_on": 1702402543,
       "next_cert_issuable_on": 1673168797,
       "certs_received": {
@@ -77455,9 +78964,9 @@
     "FrancoisRocher": {
       "index": 6321,
       "owner_key": "7zP9B4UwKnEWtahTQzeRcFha4kSyKLZ7VsVXN9Cx92ea",
-      "balance": 797461,
+      "balance": 837147,
       "membership_expire_on": 1724517897,
-      "next_cert_issuable_on": 1675948191,
+      "next_cert_issuable_on": 1693978506,
       "certs_received": {
         "Rebirth35": 1723261201,
         "yosoco": 1742062965,
@@ -77480,8 +78989,8 @@
     "Alundra": {
       "index": 6064,
       "owner_key": "7zTYQTi48rSnsRusKeD9DxggGGT3V7SnXpwGeU8CXPF9",
-      "balance": 679831,
-      "membership_expire_on": 1697917400,
+      "balance": 719517,
+      "membership_expire_on": 1726520894,
       "next_cert_issuable_on": 1690858119,
       "certs_received": {
         "Mandine1": 1711656573,
@@ -77504,7 +79013,7 @@
     "Rosemarielle": {
       "index": 2096,
       "owner_key": "7zXZNojuBvr3kZfXEbfwNTPcAsbHMcLVfqncCtHbG9NX",
-      "balance": 1131717,
+      "balance": 1171403,
       "membership_expire_on": 1708720720,
       "next_cert_issuable_on": 1669686408,
       "certs_received": {
@@ -77519,7 +79028,7 @@
     "AnneLP": {
       "index": 7586,
       "owner_key": "7zbcX7UUF9Y3WhQf3hyDSegeo3TAtmgdJEjE18FnbwZ2",
-      "balance": 550228,
+      "balance": 589914,
       "membership_expire_on": 1711814599,
       "next_cert_issuable_on": 1658938124,
       "certs_received": {
@@ -77549,13 +79058,14 @@
     "Smarxzie": {
       "index": 9832,
       "owner_key": "7zs1EkF6UkaWG3SKuAecj3w2oA1Jwfttn5d7rKnZ1qDs",
-      "balance": 301906,
+      "balance": 451193,
       "membership_expire_on": 1723338073,
-      "next_cert_issuable_on": 1693464549,
+      "next_cert_issuable_on": 1694659485,
       "certs_received": {
         "Sunshining": 1750226176,
         "ColetteNavaux": 1727832791,
         "Chabe13": 1728183421,
+        "Christos_Styliaras": 1756252145,
         "janhsh": 1756333648,
         "Missouri": 1750145210,
         "Sisi": 1728080676,
@@ -77572,7 +79082,7 @@
     "Yamina": {
       "index": 5279,
       "owner_key": "815fRnRYLZTCWc2oNej6DYLGjsmcE5B32exgcce9wECs",
-      "balance": 605671,
+      "balance": 643557,
       "membership_expire_on": 1718042132,
       "next_cert_issuable_on": 1674117318,
       "certs_received": {
@@ -77595,13 +79105,14 @@
     "Ramounichoux": {
       "index": 12751,
       "owner_key": "8166thTgdpvGA4D7uBbWc92DWRcXrZSBvRabHwtiYi5b",
-      "balance": 173528,
+      "balance": 108214,
       "membership_expire_on": 1716218578,
-      "next_cert_issuable_on": 1689560624,
+      "next_cert_issuable_on": 1696052364,
       "certs_received": {
         "Cristol-Iquid": 1747776871,
         "Matymama": 1747789959,
         "Marieclaude": 1747776871,
+        "IsabellePriou": 1757196215,
         "LaurenceDavid": 1748542552,
         "GeraldineGarrigues": 1748100929,
         "HelenDuceau": 1748317940,
@@ -77619,9 +79130,9 @@
     "Caladestel": {
       "index": 13146,
       "owner_key": "8181vgyxUmdAm1NXiWZXiFz6LmLPh7SiNQunt9b4hRsC",
-      "balance": 77000,
+      "balance": 67686,
       "membership_expire_on": 1718580852,
-      "next_cert_issuable_on": 1689759318,
+      "next_cert_issuable_on": 1695559575,
       "certs_received": {
         "Lotus1304": 1751510714,
         "ChristelR": 1750194794,
@@ -77658,9 +79169,9 @@
     "VASCO": {
       "index": 12174,
       "owner_key": "81K9jAkKXY5QYCZf18h8v5c1wocgGXd4BNiAZXS1wcMX",
-      "balance": 164472,
+      "balance": 204158,
       "membership_expire_on": 1711150381,
-      "next_cert_issuable_on": 1682040910,
+      "next_cert_issuable_on": 1695829663,
       "certs_received": {
         "Olivier3574": 1743266416,
         "VeroniqueD": 1743266416,
@@ -77672,7 +79183,7 @@
     "franecohorta": {
       "index": 12974,
       "owner_key": "81RsZFPW2j1UKkfNy3SUY3wDMSTSqtM8ojXddB3raSuN",
-      "balance": 370510,
+      "balance": 493196,
       "membership_expire_on": 1718150055,
       "next_cert_issuable_on": 1688698418,
       "certs_received": {
@@ -77705,15 +79216,12 @@
       "balance": 776977,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1636272314,
-      "certs_received": {
-        "Teresapp": 1694032857,
-        "Regis": 1693783021
-      }
+      "certs_received": {}
     },
     "GiseleB": {
       "index": 10946,
       "owner_key": "81khBPgN56WAQQitJsiJRJeRHW36HxkszWGSiiNrFR6V",
-      "balance": 273394,
+      "balance": 313080,
       "membership_expire_on": 1703027675,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -77753,7 +79261,7 @@
     "Xav12": {
       "index": 9169,
       "owner_key": "81vhhR13A3uxhBcnM3H7CzERZxXnRUtKbpwV6Du9xNJx",
-      "balance": 405921,
+      "balance": 445607,
       "membership_expire_on": 1720519375,
       "next_cert_issuable_on": 1678163083,
       "certs_received": {
@@ -77783,7 +79291,7 @@
     "Kerman": {
       "index": 9300,
       "owner_key": "82MxakkD4mA5Kp8FBvMhWCb7dRWi9YQUUd1sLoRkS3xL",
-      "balance": 342898,
+      "balance": 374584,
       "membership_expire_on": 1724864653,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -77797,8 +79305,8 @@
     "Mententon": {
       "index": 23,
       "owner_key": "82NdD9eEbXSjRJXeJdqf56xkpu6taTfTeEqtAtmtbyXY",
-      "balance": 1968383,
-      "membership_expire_on": 1700026962,
+      "balance": 2008069,
+      "membership_expire_on": 1726417304,
       "next_cert_issuable_on": 1683727947,
       "certs_received": {
         "CaizohanFerreira": 1704937456,
@@ -77812,23 +79320,22 @@
     "Jeanrachid": {
       "index": 5727,
       "owner_key": "82Z9YdegGfvgypb4pyBR3UnUbrhFmB7kwvcYUAEgM4VR",
-      "balance": 702492,
-      "membership_expire_on": 1698615906,
+      "balance": 635788,
+      "membership_expire_on": 1727390517,
       "next_cert_issuable_on": 1657469163,
       "certs_received": {
-        "GEKA": 1695793607,
-        "JRP": 1695777465,
+        "ElieLombard": 1759337394,
         "Bzh38": 1733332005,
-        "MarineJ": 1695769054,
-        "Hdsaf": 1695775662,
-        "Cigalou": 1695796637
+        "MarineJ": 1757870336,
+        "Hdsaf": 1758954446,
+        "Cigalou": 1756958893
       }
     },
     "Vince974": {
       "index": 10839,
       "owner_key": "82ZnvXb51sx7UTBuX9QewKiPyqK8EeTjU3F8zhPDiy5h",
-      "balance": 519266,
-      "membership_expire_on": 1701243135,
+      "balance": 593952,
+      "membership_expire_on": 1727767944,
       "next_cert_issuable_on": 1675810220,
       "certs_received": {
         "Zoul": 1751498720,
@@ -77853,7 +79360,7 @@
     "IzarDevora": {
       "index": 12551,
       "owner_key": "82gz7QeXRC1MLam9aWyRhdzkNkmX9tUHWTRHQqkXvm4V",
-      "balance": 139724,
+      "balance": 179410,
       "membership_expire_on": 1714689355,
       "next_cert_issuable_on": 1686405258,
       "certs_received": {
@@ -77870,7 +79377,7 @@
     "Chilate": {
       "index": 5305,
       "owner_key": "82ij3MNViHak67p3NPsJotndqp13qCi5N873ru6vRt5x",
-      "balance": 798583,
+      "balance": 838269,
       "membership_expire_on": 1708657276,
       "next_cert_issuable_on": 1687348113,
       "certs_received": {
@@ -77886,13 +79393,14 @@
         "C13Confianza": 1746668446,
         "Lud": 1725648389,
         "Viceversa": 1697874307,
-        "C13Salegria": 1712782461
+        "C13Salegria": 1712782461,
+        "Glass": 1757648199
       }
     },
     "ElioIG": {
       "index": 2868,
       "owner_key": "82mDhnhVnXCEfeLYPfuuuGJGWVKSPQ12v7FK5LCURfhd",
-      "balance": 1423207,
+      "balance": 1462893,
       "membership_expire_on": 1697924120,
       "next_cert_issuable_on": 1688653600,
       "certs_received": {
@@ -77907,7 +79415,6 @@
         "thalie": 1698359745,
         "CVM": 1750876631,
         "Figolu": 1751177990,
-        "Pommedapi": 1696578820,
         "NEMBC": 1750876631,
         "zabel": 1701224975
       }
@@ -77915,9 +79422,9 @@
     "aitorjs": {
       "index": 8421,
       "owner_key": "82qLK4DCKqQjH4wE6hZdoNdf6MyocoRz6ywQ74spHn7F",
-      "balance": 400491,
+      "balance": 440177,
       "membership_expire_on": 1713045205,
-      "next_cert_issuable_on": 1689914317,
+      "next_cert_issuable_on": 1692804475,
       "certs_received": {
         "Enara": 1726974669,
         "Cordeliaze": 1717470356,
@@ -77930,6 +79437,7 @@
         "EstefaniaLopez": 1728512106,
         "Estibalitz": 1726560154,
         "Poto": 1717492629,
+        "Kima": 1759212054,
         "Wellno1": 1726105839,
         "Roberto_Oraa_79_DDYG": 1728109517,
         "Noxtan": 1722447768
@@ -77938,7 +79446,7 @@
     "Mao": {
       "index": 8623,
       "owner_key": "82xdhiEGDHh6A4eyFtjmx2pEcmWFDTuntSSxdVXR9Epg",
-      "balance": 494919,
+      "balance": 534605,
       "membership_expire_on": 1718411078,
       "next_cert_issuable_on": 1688963278,
       "certs_received": {
@@ -77975,10 +79483,12 @@
     "Agartha": {
       "index": 13397,
       "owner_key": "83CamppeGcu2mfAbk2vCsguyv8VEWsbYPRY9q3GtLbPf",
-      "balance": 37316,
+      "balance": 62502,
       "membership_expire_on": 1723546320,
-      "next_cert_issuable_on": 1692806678,
+      "next_cert_issuable_on": 1696136691,
       "certs_received": {
+        "Sienna": 1758230109,
+        "CoraRose": 1758689801,
         "M-France": 1755139071,
         "NoraMaela": 1755129007,
         "CatherineMonastirieff": 1755151452,
@@ -77989,7 +79499,7 @@
     "PedroCabra": {
       "index": 6989,
       "owner_key": "83DdmbCsY5zywLSqLXTCZ2U4oe5QcoY42iLrwqUsgy7x",
-      "balance": 370522,
+      "balance": 97218,
       "membership_expire_on": 1710860107,
       "next_cert_issuable_on": 1649146775,
       "certs_received": {
@@ -78011,7 +79521,7 @@
     "Julco": {
       "index": 12642,
       "owner_key": "83M43zmXtuKznnQBcb4ksVbXfjNu8oezFkhuWUijKP76",
-      "balance": 135412,
+      "balance": 175098,
       "membership_expire_on": 1715024213,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -78058,7 +79568,7 @@
     "Laly": {
       "index": 13002,
       "owner_key": "83mPfyC4DV3XWFFHiY6UbdedkdDkt3xN7Um51LHPtWo8",
-      "balance": 78488,
+      "balance": 118174,
       "membership_expire_on": 1719236346,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -78072,8 +79582,8 @@
     "Eutoniste": {
       "index": 9430,
       "owner_key": "83nXYdMbHDm6Jzi1kM2PEVxXtuRLTYcz3i7cCkVoB1fh",
-      "balance": 376095,
-      "membership_expire_on": 1693842512,
+      "balance": 380367,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1674117087,
       "certs_received": {
         "Moudom": 1725495089,
@@ -78095,7 +79605,7 @@
     "Inut": {
       "index": 12000,
       "owner_key": "83yRD3BDfHGu1r99uujAMpxmr9RvWrD5quLmxzYB2WpN",
-      "balance": 524836,
+      "balance": 564522,
       "membership_expire_on": 1709144392,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -78117,7 +79627,7 @@
     "susanahiperborea": {
       "index": 11258,
       "owner_key": "84Bd5z7TtbhnNNivXNnWW7Vv5LF6tVzyvaZ8tWRSYdCE",
-      "balance": 106901,
+      "balance": 91587,
       "membership_expire_on": 1705355257,
       "next_cert_issuable_on": 1679322556,
       "certs_received": {
@@ -78142,7 +79652,7 @@
       "owner_key": "84HitvnDm11vuWKVX73UTYA7ZH93A7yq8JSLc4XwL27f",
       "balance": 1342073,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632816090,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "dgi": 1697905896
       }
@@ -78163,7 +79673,7 @@
     "coccinelle07": {
       "index": 7467,
       "owner_key": "84KttLmkmPePviGW7CKV7BUyhTrj2aZs9WqLwdZfmpV6",
-      "balance": 353935,
+      "balance": 393621,
       "membership_expire_on": 1707272848,
       "next_cert_issuable_on": 1672328311,
       "certs_received": {
@@ -78177,9 +79687,9 @@
     "Cantarelus": {
       "index": 10600,
       "owner_key": "84MdshpTmoP1diH6GjhcJ97jxFNGhf5Z8RxMmwRgLCaT",
-      "balance": 456592,
-      "membership_expire_on": 1701278135,
-      "next_cert_issuable_on": 1683535341,
+      "balance": 505178,
+      "membership_expire_on": 1727722111,
+      "next_cert_issuable_on": 1696236511,
       "certs_received": {
         "AlvaroFernandez": 1732839111,
         "Chus": 1732918155,
@@ -78192,7 +79702,7 @@
     "NevFreeman": {
       "index": 11514,
       "owner_key": "84QRSoFs24JseEUuuK2RkMmQuABeqfZTgqdqEyQMmKsd",
-      "balance": 339221,
+      "balance": 378907,
       "membership_expire_on": 1703979254,
       "next_cert_issuable_on": 1690458424,
       "certs_received": {
@@ -78224,7 +79734,7 @@
     "Katya": {
       "index": 12895,
       "owner_key": "84UN5HL14eQYfjbp7zAXJyGsUNZTemwFwXXr8cVSyAbE",
-      "balance": 85636,
+      "balance": 123122,
       "membership_expire_on": 1718141266,
       "next_cert_issuable_on": 1687516119,
       "certs_received": {
@@ -78242,10 +79752,8 @@
       "owner_key": "84Ue4FEMwwQmXMuEWv8cxsMcqCs9wYdt1zUTYEowh4sS",
       "balance": 384856,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1630765224,
-      "certs_received": {
-        "LeoLeo": 1694554119
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "Misskitine": {
       "index": 2130,
@@ -78266,12 +79774,13 @@
     "AnnieFortin": {
       "index": 6255,
       "owner_key": "84bzZnHt74Vdk871mayyUoZsRQ6dyvP954NUJ3CyNByH",
-      "balance": 575061,
+      "balance": 609247,
       "membership_expire_on": 1723064247,
-      "next_cert_issuable_on": 1690687087,
+      "next_cert_issuable_on": 1695224149,
       "certs_received": {
         "Niranjana": 1754109763,
         "HelloSunshine": 1701119840,
+        "EdouardDURAND": 1759468291,
         "gege110560": 1743948568,
         "MaelysV": 1701497730,
         "Aneuf": 1701125641,
@@ -78294,12 +79803,12 @@
     "pi_ramide": {
       "index": 6056,
       "owner_key": "84ggLsb6RKomhrahoBTfVhJUvxDZMvHb2GeaPcYNosXP",
-      "balance": 377009,
-      "membership_expire_on": 1694710968,
+      "balance": 391961,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1682517948,
       "certs_received": {
         "CELIOCTAVE": 1699329595,
-        "LauQui": 1699144166,
+        "LauQui": 1756274412,
         "vibes": 1699321117,
         "YIKING": 1699320753,
         "Brigitte": 1698366458,
@@ -78312,8 +79821,8 @@
     "Katalinko": {
       "index": 9477,
       "owner_key": "84ghPLzFD8Gw2CS8DXZXmFDVBAALTr49yV5vE9HMpDf5",
-      "balance": 396691,
-      "membership_expire_on": 1694356657,
+      "balance": 407371,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1672383490,
       "certs_received": {
         "dnoelle": 1725914579,
@@ -78329,8 +79838,8 @@
     "Yann73210": {
       "index": 9686,
       "owner_key": "84jSYxSn7WwAfZab2Rb5Zqy3LzEC9nPf8zTDu4CPTryL",
-      "balance": 370409,
-      "membership_expire_on": 1695744208,
+      "balance": 398237,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673425533,
       "certs_received": {
         "Armelle": 1751702859,
@@ -78344,7 +79853,7 @@
     "Surmulot": {
       "index": 10877,
       "owner_key": "84k4BJJJCXkE4T2df7uJYRg1F4xNAasAjhZsv3NuHKEQ",
-      "balance": 256689,
+      "balance": 296375,
       "membership_expire_on": 1701057437,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -78358,7 +79867,7 @@
     "AnaLil": {
       "index": 2337,
       "owner_key": "84nMW4K6FzLnZvXqKQVJzPayXykwjZ126dqqTmkvW9Jo",
-      "balance": 600399,
+      "balance": 640085,
       "membership_expire_on": 1699099141,
       "next_cert_issuable_on": 1685410536,
       "certs_received": {
@@ -78366,13 +79875,14 @@
         "paidge": 1698517350,
         "Scott76": 1698517817,
         "Haze": 1709108289,
+        "Remi": 1758586740,
         "MatisChancellier": 1698517817
       }
     },
     "petiteberger": {
       "index": 81,
       "owner_key": "84rJgNDwWCxETARsfE1gJVvTK8xz2V1Mvntnj9Ubfcqr",
-      "balance": 1986224,
+      "balance": 2025910,
       "membership_expire_on": 1704914674,
       "next_cert_issuable_on": 1681697238,
       "certs_received": {
@@ -78389,7 +79899,7 @@
     "laurienza": {
       "index": 6547,
       "owner_key": "85ABUvS6YBbGTyFNjsQpAhiBuUP22NfeupPhDMTHCwNn",
-      "balance": 357747,
+      "balance": 392433,
       "membership_expire_on": 1724100827,
       "next_cert_issuable_on": 1681652985,
       "certs_received": {
@@ -78465,26 +79975,20 @@
     "Hassina": {
       "index": 5737,
       "owner_key": "85Wo2CQMmdBYD9ydHaPQ8WVZWBSTJKbZgXs3csbAppFS",
-      "balance": 961341,
+      "balance": 996027,
       "membership_expire_on": 1716986237,
-      "next_cert_issuable_on": 1659969281,
+      "next_cert_issuable_on": 1696553107,
       "certs_received": {
-        "CatherineMontpellier": 1696007979,
         "Sophie_Jiyu": 1708744435,
         "BrigitteW": 1700981867,
-        "droopy": 1694721077,
         "Helene-petiteriviere": 1702533633,
         "Amelia34": 1702457495,
         "Rosemarielle": 1702183493,
         "loveinagain81": 1706137631,
         "Cat": 1719536579,
-        "ADodson": 1694912375,
         "Jeffrenchpilot": 1699401318,
         "Florane": 1747218102,
-        "BRIGITTE2019": 1694372966,
         "Eauvive": 1701806244,
-        "samdoui": 1696370019,
-        "PascalGuillemain": 1695184947,
         "Olivier34500": 1698463890,
         "Christophe-C": 1704763387,
         "schmollita": 1699562058,
@@ -78502,7 +80006,7 @@
     "jeanclauderateau": {
       "index": 7033,
       "owner_key": "85ZLn9YwnvhLTEiEg7y4wUU61VXYmABhwMKFc6ryqUXQ",
-      "balance": 2401095,
+      "balance": 2484381,
       "membership_expire_on": 1702590291,
       "next_cert_issuable_on": 1686047179,
       "certs_received": {
@@ -78525,9 +80029,9 @@
     "Goizargi": {
       "index": 12409,
       "owner_key": "85ZVEwXubefrXEv6rL9AaqYEs7zjarkf5ro9ZitoJskd",
-      "balance": 93494,
+      "balance": 86880,
       "membership_expire_on": 1713367454,
-      "next_cert_issuable_on": 1686896247,
+      "next_cert_issuable_on": 1696139647,
       "certs_received": {
         "Maika": 1753986690,
         "Kris_Izaratia": 1744994050,
@@ -78555,9 +80059,9 @@
     "JeanMarcBuge": {
       "index": 1087,
       "owner_key": "85f3YbzTLAnV6vauKuKcEFmfUVt6SqjTQM6ZuK6u9o7M",
-      "balance": 828688,
+      "balance": 927374,
       "membership_expire_on": 1717543286,
-      "next_cert_issuable_on": 1691633297,
+      "next_cert_issuable_on": 1695993809,
       "certs_received": {
         "Crystal": 1744101965,
         "CaroleBroutin": 1751820391,
@@ -78566,7 +80070,6 @@
         "Celang": 1738457011,
         "LoicRollangMaire": 1718252754,
         "SantoS": 1701591531,
-        "ASHTARA": 1694805720,
         "Vallya": 1746066469,
         "Hedy": 1744164483,
         "Omkara": 1699045334,
@@ -78575,14 +80078,14 @@
         "franktransition34": 1722011343,
         "SergeUme": 1733367061,
         "annefreda": 1702577002,
-        "CatherineMaire": 1696919880,
+        "CatherineMaire": 1758420243,
         "magicplanet88": 1741022074
       }
     },
     "Michailes": {
       "index": 11045,
       "owner_key": "85hKFaNPAGYhoLfj8jjnxi5L4qvDAkGReSHo4ZKMF1QW",
-      "balance": 368722,
+      "balance": 408408,
       "membership_expire_on": 1701012294,
       "next_cert_issuable_on": 1689809550,
       "certs_received": {
@@ -78601,9 +80104,9 @@
     "ChamAnne": {
       "index": 10356,
       "owner_key": "85jpvNfUsrqEhzzxSrLUcUndyceumbmxx5zCA5UfRdjR",
-      "balance": 333897,
+      "balance": 353583,
       "membership_expire_on": 1699724399,
-      "next_cert_issuable_on": 1681037818,
+      "next_cert_issuable_on": 1693798610,
       "certs_received": {
         "SOPHRO": 1744144878,
         "DelphineG": 1731577753,
@@ -78616,13 +80119,14 @@
     "Ajna21": {
       "index": 7333,
       "owner_key": "85oR6htNcoxQXnQDjJZN9hGmudPi4tpvKjQ611KpW7vR",
-      "balance": 392473,
+      "balance": 388159,
       "membership_expire_on": 1705839866,
-      "next_cert_issuable_on": 1667804624,
+      "next_cert_issuable_on": 1695788882,
       "certs_received": {
         "Abrialys": 1734329828,
         "Myhia": 1710381147,
         "SylvainC": 1738613031,
+        "Ofildevie": 1758849303,
         "Sosso86": 1730189226,
         "ALPIGirou": 1745019225,
         "Sandrabacq": 1721102252,
@@ -78637,8 +80141,8 @@
     "Edualc22": {
       "index": 9887,
       "owner_key": "85oXs4JR2kSsi9858MBciDkWU3duwqpv6a7oJtS1Fu35",
-      "balance": 361250,
-      "membership_expire_on": 1695896490,
+      "balance": 400936,
+      "membership_expire_on": 1725857459,
       "next_cert_issuable_on": 1672515632,
       "certs_received": {
         "Aryana": 1728096592,
@@ -78692,7 +80196,7 @@
     "Toma": {
       "index": 5035,
       "owner_key": "86APaE4DwH9zpWpykyp8kSNmfCXYfLhDDnUPANH2VG1q",
-      "balance": 779635,
+      "balance": 819321,
       "membership_expire_on": 1707951731,
       "next_cert_issuable_on": 1669981865,
       "certs_received": {
@@ -78722,6 +80226,21 @@
         "Domyrhapsody": 1724039179
       }
     },
+    "Sandrinew": {
+      "index": 13638,
+      "owner_key": "86MQvniA4prUnttzr5vbM1LPoKiMCNzNcRiVPdhmAP6",
+      "balance": 18332,
+      "membership_expire_on": 1726698169,
+      "next_cert_issuable_on": 1696728075,
+      "certs_received": {
+        "SophieDeprez": 1758556967,
+        "ElaineDana": 1758503128,
+        "Fanchon": 1758320773,
+        "MikaPac": 1758595445,
+        "Colvert": 1758486730,
+        "isabelleirigoin": 1758303263
+      }
+    },
     "Alicia_Cuisin": {
       "index": 1365,
       "owner_key": "86hpLrGdZHuxEdTyPFpCb2AH2D1xLcbeR9D8e2soYhAE",
@@ -78751,14 +80270,13 @@
     "Anthoxanthum67": {
       "index": 4548,
       "owner_key": "86tgCqMoK7qghaqpurvKNnVNq8PJmKK4X1jHECu4nZst",
-      "balance": 196287,
-      "membership_expire_on": 1699050800,
-      "next_cert_issuable_on": 1690113276,
+      "balance": 235473,
+      "membership_expire_on": 1726797291,
+      "next_cert_issuable_on": 1691683075,
       "certs_received": {
         "DanWF": 1707270739,
         "KreenBulle51": 1699143511,
         "FenderChristophe": 1739238527,
-        "Sunrise": 1693980055,
         "Nadege51": 1725326422,
         "ENO": 1705273993,
         "AurElieSkuld": 1745295669,
@@ -78777,9 +80295,9 @@
     "GuybrushThreepwood": {
       "index": 12050,
       "owner_key": "86xLzdG4A9QyZGat479w3qugJ2bx61Dsjgdgc9PPkM4e",
-      "balance": 179202,
+      "balance": 128888,
       "membership_expire_on": 1710698411,
-      "next_cert_issuable_on": 1692671957,
+      "next_cert_issuable_on": 1696214929,
       "certs_received": {
         "GybelsJosee": 1742279199,
         "Audeko": 1742705469,
@@ -78802,16 +80320,17 @@
     "SylvieMaillot": {
       "index": 13268,
       "owner_key": "86zUKaCfiV2xiEw8DCVjDKuQsrKS6pdruo3oMGna16iu",
-      "balance": 50244,
+      "balance": 89930,
       "membership_expire_on": 1722204545,
-      "next_cert_issuable_on": 1693376066,
+      "next_cert_issuable_on": 1694312540,
       "certs_received": {
         "absalon2": 1753807774,
         "MaryMarie": 1753763027,
         "CatherineMontpellier": 1753807774,
         "VivianeThierron": 1753762736,
         "ChristineMontpellier": 1753791510,
-        "ValeryGond": 1753763832
+        "ValeryGond": 1753763832,
+        "Antares13": 1757755983
       }
     },
     "Enthea": {
@@ -78825,7 +80344,7 @@
     "Marcochapo": {
       "index": 13402,
       "owner_key": "87174PqX5cdHXL3pN73kPQ7LXQkAapW5RCXJ1NBtjjP8",
-      "balance": 12816,
+      "balance": 52502,
       "membership_expire_on": 1721671304,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -78839,7 +80358,7 @@
     "Amos": {
       "index": 9759,
       "owner_key": "87BFiwhfsNobRteRKMR6dd9ukSaZJsX6idAsfhcaENS2",
-      "balance": 274514,
+      "balance": 314200,
       "membership_expire_on": 1723858135,
       "next_cert_issuable_on": 1670224902,
       "certs_received": {
@@ -78857,14 +80376,15 @@
     "JerryBB": {
       "index": 4110,
       "owner_key": "87D8KuyfX5Gop1ro7gXCzJfWY7Q7dvnPiQmVB4RdrhM9",
-      "balance": 305217,
+      "balance": 336535,
       "membership_expire_on": 1709084441,
-      "next_cert_issuable_on": 1693494383,
+      "next_cert_issuable_on": 1695547068,
       "certs_received": {
         "Eiutim": 1698304429,
         "Claudius12": 1754252697,
         "ClaireMonde": 1698300395,
         "CorinneE": 1738116466,
+        "BorisBernard": 1759016487,
         "Junouille": 1726692832,
         "SevChereau": 1717687810,
         "djam": 1744869694,
@@ -78874,7 +80394,7 @@
         "Helenep": 1732689878,
         "SamuelPabloAlmonacid": 1740633320,
         "CORBIERESchristine": 1726448484,
-        "CitizenFour": 1695966579,
+        "Gwn": 1757813351,
         "Plumedange": 1730319131,
         "FredTahiti": 1726696423,
         "Franck": 1709339940,
@@ -78900,7 +80420,7 @@
     "Raphaelle": {
       "index": 7604,
       "owner_key": "87DdrARkX2aP9ioNu9CAKTU7NvR7BkpSBSSVZpTnNMoW",
-      "balance": 544094,
+      "balance": 582280,
       "membership_expire_on": 1705182225,
       "next_cert_issuable_on": 1654017005,
       "certs_received": {
@@ -78925,7 +80445,7 @@
     "Malau": {
       "index": 11874,
       "owner_key": "87J7w5EnoUtK1eqxHZQuQsZ8YEyTzh3RBFhqc9uU6DdM",
-      "balance": 201028,
+      "balance": 240714,
       "membership_expire_on": 1708889082,
       "next_cert_issuable_on": 1678893218,
       "certs_received": {
@@ -78939,7 +80459,7 @@
     "Maxbio": {
       "index": 13238,
       "owner_key": "87JsBd77SsyjAu5LGfSnSemtDpxZyjpPUgWJ3dMHJcNm",
-      "balance": 111516,
+      "balance": 151202,
       "membership_expire_on": 1719592319,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -78954,7 +80474,7 @@
     "Diminux": {
       "index": 3446,
       "owner_key": "87PiN9xk9t8e3paWPtaDADQwUihjCnudhsuKhgstrrTM",
-      "balance": 1256609,
+      "balance": 1296295,
       "membership_expire_on": 1706736216,
       "next_cert_issuable_on": 1648038157,
       "certs_received": {
@@ -78970,7 +80490,7 @@
     "NinaB": {
       "index": 8691,
       "owner_key": "87QDRnNkjg1F8H13fhkxgGEV7iyn5yY9fUBCdTqnLE72",
-      "balance": 19224,
+      "balance": 16893,
       "membership_expire_on": 1723471904,
       "next_cert_issuable_on": 1684245114,
       "certs_received": {
@@ -79040,9 +80560,9 @@
     "Annery": {
       "index": 7361,
       "owner_key": "87gAocmzcWaBh5pUgFyRNKpzcHaGsag8w2zMshLNLaSk",
-      "balance": 946843,
+      "balance": 1086529,
       "membership_expire_on": 1705941260,
-      "next_cert_issuable_on": 1668589202,
+      "next_cert_issuable_on": 1695121287,
       "certs_received": {
         "JMF": 1710696128,
         "Marikler": 1743979305,
@@ -79050,6 +80570,7 @@
         "Chris7": 1710993140,
         "Val34": 1731693559,
         "AurelieBab": 1731635120,
+        "LaSoyeFee": 1758176809,
         "Anoutsa": 1710697407,
         "Florane": 1710784768,
         "EmmaSol": 1725231753,
@@ -79062,15 +80583,15 @@
       "owner_key": "882LMruckmjijNZpRvV7DGXnZRGEPqpyuk4U3F2yMhgs",
       "balance": 384103,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632709840,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "GhislaineChartier": {
       "index": 12863,
       "owner_key": "883imKTRULX1qNxucB8rTMGN5ev7eMzEAG4QAjxtybNn",
-      "balance": 97508,
+      "balance": 137194,
       "membership_expire_on": 1717861554,
-      "next_cert_issuable_on": 1692407900,
+      "next_cert_issuable_on": 1692894966,
       "certs_received": {
         "CValentine": 1755470740,
         "IsabellePriou": 1749419530,
@@ -79099,7 +80620,7 @@
     "EliseL": {
       "index": 3470,
       "owner_key": "88QARrKGaSA8Ax4RFbS91DNS5Qtyg2m86SC22iT3ncg9",
-      "balance": 1056852,
+      "balance": 1096538,
       "membership_expire_on": 1699574564,
       "next_cert_issuable_on": 1655561040,
       "certs_received": {
@@ -79135,7 +80656,7 @@
     "BernardBougon": {
       "index": 11486,
       "owner_key": "88Zma9os6v3bpPxWv8rRFpjGyupPsRRn367qCmaVQJu",
-      "balance": 225739,
+      "balance": 235425,
       "membership_expire_on": 1706324159,
       "next_cert_issuable_on": 1678243597,
       "certs_received": {
@@ -79159,7 +80680,7 @@
     "LeoB": {
       "index": 9495,
       "owner_key": "88kdv6hRohBF8mFv5C9mKWdGsnPJCaA8ezMJPvNzDixG",
-      "balance": 376289,
+      "balance": 415975,
       "membership_expire_on": 1721738539,
       "next_cert_issuable_on": 1664540952,
       "certs_received": {
@@ -79175,7 +80696,7 @@
     "Nawa": {
       "index": 12521,
       "owner_key": "88nhmd4NE9HFhuFyDyqrpYjLc1QaatVZEfeDHdccNFBy",
-      "balance": 130228,
+      "balance": 169914,
       "membership_expire_on": 1713831238,
       "next_cert_issuable_on": 1683205502,
       "certs_received": {
@@ -79205,8 +80726,8 @@
     "Corverd": {
       "index": 4608,
       "owner_key": "892MngXw6RcTnRkNtzJpNTqU7skdeZkNVhcvGsk8m47w",
-      "balance": 210314,
-      "membership_expire_on": 1698537704,
+      "balance": 250000,
+      "membership_expire_on": 1725199915,
       "next_cert_issuable_on": 1680689429,
       "certs_received": {
         "SaraRo": 1729025161,
@@ -79226,9 +80747,9 @@
     "Soum86": {
       "index": 7245,
       "owner_key": "897CNnZB5hb6Tbyt3FUJi5HyFcHSyFgnsJW2Mt4E5sdk",
-      "balance": 424125,
+      "balance": 439811,
       "membership_expire_on": 1708321303,
-      "next_cert_issuable_on": 1676835703,
+      "next_cert_issuable_on": 1693756320,
       "certs_received": {
         "JessyRipert": 1709612482,
         "Fan971": 1709529654,
@@ -79245,9 +80766,9 @@
     "Fleurt11": {
       "index": 2371,
       "owner_key": "89DDuzavPeCQyL15UJvRCBEb1923iwyWhGLvUYq4rXH9",
-      "balance": 1930280,
+      "balance": 1969966,
       "membership_expire_on": 1701046052,
-      "next_cert_issuable_on": 1682911092,
+      "next_cert_issuable_on": 1694493558,
       "certs_received": {
         "nashira": 1735421002,
         "AlexDurain": 1738730768,
@@ -79259,7 +80780,7 @@
     "Vallet50": {
       "index": 9535,
       "owner_key": "89Gs5SrWrvSDfKQr9EY6eYBoAjZWDgbYrEi9KDaEizrW",
-      "balance": 300285,
+      "balance": 319971,
       "membership_expire_on": 1721221764,
       "next_cert_issuable_on": 1663641371,
       "certs_received": {
@@ -79273,7 +80794,7 @@
     "Stellianne": {
       "index": 7746,
       "owner_key": "89RWEjg8dmR5SaxmW1FjVj35YKXwffp6NSETuZECghRU",
-      "balance": 413184,
+      "balance": 452870,
       "membership_expire_on": 1710452410,
       "next_cert_issuable_on": 1678966810,
       "certs_received": {
@@ -79290,7 +80811,7 @@
     "CarlosDreamer": {
       "index": 1775,
       "owner_key": "89RyLEc1ULqS1PsPgEMoaUpRf6iYXDQU2ArSvqfKZS6v",
-      "balance": 1169704,
+      "balance": 1209390,
       "membership_expire_on": 1723472591,
       "next_cert_issuable_on": 1670111559,
       "certs_received": {
@@ -79305,14 +80826,17 @@
     "Bibi06": {
       "index": 6269,
       "owner_key": "89T2dagcvU4FmQr5BF5zVNUmSjaazrTHYX9oUxvfCCMr",
-      "balance": 311416,
+      "balance": 336102,
       "membership_expire_on": 1720693985,
-      "next_cert_issuable_on": 1662280459,
+      "next_cert_issuable_on": 1696305335,
       "certs_received": {
         "Tchois": 1701316364,
-        "Chiara07": 1701245143,
+        "Chiara07": 1757828868,
         "guillaumedangin": 1701407140,
+        "Centifolia": 1759632683,
+        "Mika83": 1759346227,
         "pfouque": 1701316977,
+        "Monhommelibre": 1758298316,
         "Dez": 1717063740,
         "ClaireSMV": 1701577134
       }
@@ -79320,16 +80844,18 @@
     "EstefaniaLopez": {
       "index": 8941,
       "owner_key": "89VHJTrANiZCHkciKkS9VFq8Ja7bCC8ydj97BkrjiLVA",
-      "balance": 174241,
+      "balance": 97128,
       "membership_expire_on": 1713082160,
-      "next_cert_issuable_on": 1692459660,
+      "next_cert_issuable_on": 1694696231,
       "certs_received": {
         "Urbez": 1727502061,
         "RomainKornig": 1720902600,
+        "Joseluisrenacer": 1759287761,
         "Alfybe": 1721011299,
         "carmenchu_almacristal": 1741388814,
         "Yesyes": 1720919719,
         "AlvaroFernandez": 1727656466,
+        "MonyKan": 1757180634,
         "Fleur-du-renouveau": 1721166100,
         "Estitz": 1729195130,
         "Anam": 1753511815,
@@ -79373,10 +80899,11 @@
     "Marieclaude": {
       "index": 10472,
       "owner_key": "89kSBh7QJsMvsFQtCUBwYZsDcnirfvAAXNh7mu88C9mK",
-      "balance": 420333,
-      "membership_expire_on": 1700578215,
-      "next_cert_issuable_on": 1692250526,
+      "balance": 341019,
+      "membership_expire_on": 1726960679,
+      "next_cert_issuable_on": 1696767524,
       "certs_received": {
+        "Bich": 1758663214,
         "Cristol-Iquid": 1748101829,
         "Matymama": 1732140894,
         "ChristineRaphael": 1752440780,
@@ -79400,7 +80927,7 @@
     "ElisaSalsa47": {
       "index": 8673,
       "owner_key": "89msE1jPRDSrFZFmA9XPgATzZmS9yKyBWzjK94eoxDkb",
-      "balance": 419481,
+      "balance": 459167,
       "membership_expire_on": 1714482144,
       "next_cert_issuable_on": 1678521357,
       "certs_received": {
@@ -79440,7 +80967,7 @@
     "MurielW": {
       "index": 8006,
       "owner_key": "89xmbPgxiZn2XuqCWTAf25GrfbCtbiKcPksyY56omnry",
-      "balance": 345912,
+      "balance": 385598,
       "membership_expire_on": 1710173426,
       "next_cert_issuable_on": 1678777259,
       "certs_received": {
@@ -79459,7 +80986,7 @@
     "Priss": {
       "index": 6834,
       "owner_key": "8A1vt3WFS3SBnb8npToiFWEDBd5oQGDkJ7wQToREfKj2",
-      "balance": 609179,
+      "balance": 648865,
       "membership_expire_on": 1702074501,
       "next_cert_issuable_on": 1645788710,
       "certs_received": {
@@ -79486,12 +81013,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "IsaForest": 1696134115,
-        "Kali": 1700597981,
-        "Soyouz": 1696115642,
-        "Jihi": 1696115966,
-        "labomarjo": 1696116289,
-        "LydiaRoche": 1696115966
+        "Kali": 1700597981
       }
     },
     "HelenArt": {
@@ -79512,7 +81034,7 @@
     "Gaby": {
       "index": 7686,
       "owner_key": "8APQEFvDSuhH9bkYzm6t2gNRsui9LoN42M5XrqcvVo1t",
-      "balance": 449139,
+      "balance": 488825,
       "membership_expire_on": 1710289411,
       "next_cert_issuable_on": 1669265781,
       "certs_received": {
@@ -79526,7 +81048,7 @@
     "MilaMahy": {
       "index": 3362,
       "owner_key": "8AQaFxiSB5n3okRwZvqnqNap6VX5m7SQFz2ux3jwvH8S",
-      "balance": 720126,
+      "balance": 759812,
       "membership_expire_on": 1710006957,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
@@ -79549,14 +81071,15 @@
     "catmac": {
       "index": 13259,
       "owner_key": "8AUYg4p1w8zyPjKgTFpfV4J4xgTThg1yjFJFkjGKjEse",
-      "balance": 33012,
+      "balance": 95226,
       "membership_expire_on": 1722109654,
-      "next_cert_issuable_on": 1692504543,
+      "next_cert_issuable_on": 1696333822,
       "certs_received": {
         "HelloSunshine": 1753570552,
         "Takakra": 1753297823,
         "MyleneBN": 1753155038,
         "Walter2000": 1753294999,
+        "JeffApa2A": 1756764711,
         "Thiery": 1753301368,
         "armunia": 1753515547
       }
@@ -79580,9 +81103,9 @@
     "Jusepe": {
       "index": 12354,
       "owner_key": "8Ajwu8aPwCLToQojmpFsHZs4RFyiaAQcXDyBA9zmB8s3",
-      "balance": 192316,
+      "balance": 34502,
       "membership_expire_on": 1712417612,
-      "next_cert_issuable_on": 1693228650,
+      "next_cert_issuable_on": 1696654787,
       "certs_received": {
         "BorisBernard": 1744008537,
         "Gregory": 1743981411,
@@ -79620,7 +81143,7 @@
     "Buloglatinami": {
       "index": 6263,
       "owner_key": "8AvkxKXUa1FETDSbvdzoSwww7dtUqwLBG61LSkAHrTBX",
-      "balance": 610260,
+      "balance": 649946,
       "membership_expire_on": 1705939340,
       "next_cert_issuable_on": 1658201674,
       "certs_received": {
@@ -79650,7 +81173,7 @@
     "Sasha": {
       "index": 8057,
       "owner_key": "8B8h15iMAMxAje8V6dpastCQgBrxfXfZjoJ72isYLnf1",
-      "balance": 52490,
+      "balance": 217176,
       "membership_expire_on": 1709141500,
       "next_cert_issuable_on": 1679553619,
       "certs_received": {
@@ -79708,7 +81231,7 @@
     "Patxijavier": {
       "index": 13304,
       "owner_key": "8BaEbJZW1Cp9qTpbc5W11vmiFKUxqVjXWinCpKfq8A29",
-      "balance": 44004,
+      "balance": 83690,
       "membership_expire_on": 1722202643,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -79722,29 +81245,24 @@
     "ASHTARA": {
       "index": 5646,
       "owner_key": "8Bb4ZyFnbsNqX79rswGMtHaXFBRaQiysmZKfvZQyZqMM",
-      "balance": 141751,
+      "balance": 70837,
       "membership_expire_on": 1715944224,
-      "next_cert_issuable_on": 1693138383,
+      "next_cert_issuable_on": 1694753932,
       "certs_received": {
         "Crystal": 1753914915,
-        "Milan": 1694573054,
         "JoelleTAILLANDIER": 1718775786,
         "catrelax11": 1753373494,
         "Hunzatonic": 1747421492,
-        "EleonoreBois": 1694031850,
+        "JeandelAude": 1756492730,
         "Coidzikow": 1752990791,
-        "JeanMarcBuge": 1694192402,
         "marika8": 1702583718,
         "zadkiel": 1699553260,
         "Irenili": 1698999500,
-        "LaurenceDavid": 1694231598,
-        "AurelienBois": 1694031850,
         "Do11": 1738278442,
         "Roland": 1746216032,
-        "Leticia": 1694573054,
         "Renefaby": 1716872717,
         "annefreda": 1754265735,
-        "BrigitteBaron": 1693951527,
+        "BrigitteBaron": 1755754637,
         "Orenda8": 1751175951
       }
     },
@@ -79755,7 +81273,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1639729440,
       "certs_received": {
-        "LaureFemmeVanne": 1696233513,
         "Cha": 1710144867,
         "Marie-Lise": 1697268043
       }
@@ -79763,7 +81280,7 @@
     "Brillebelle": {
       "index": 8577,
       "owner_key": "8Bm2H5RsSn21tXJPzjF3WtD33fuUPCSSv5XqjRj1BMFj",
-      "balance": 407422,
+      "balance": 447108,
       "membership_expire_on": 1714990207,
       "next_cert_issuable_on": 1690522838,
       "certs_received": {
@@ -79779,7 +81296,7 @@
     "Alis0r": {
       "index": 9221,
       "owner_key": "8BmTvjDUJpY5N5vWLyh1cXvX7H6XLZg3WXxLuyQmNSW5",
-      "balance": 213442,
+      "balance": 253128,
       "membership_expire_on": 1722371105,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -79793,7 +81310,7 @@
     "NoraRihani": {
       "index": 6818,
       "owner_key": "8Bs8WShc9Ufhb23a5bMm4YB23ikjj1XY6eZvS7HVRMRt",
-      "balance": 484634,
+      "balance": 524320,
       "membership_expire_on": 1708210625,
       "next_cert_issuable_on": 1654267580,
       "certs_received": {
@@ -79807,7 +81324,7 @@
     "Catherine73800": {
       "index": 7747,
       "owner_key": "8Bu8kvxivRmsTSZvbJLckUbPZbsb7EQMxD1KD6QbAv3C",
-      "balance": 389616,
+      "balance": 429302,
       "membership_expire_on": 1708469278,
       "next_cert_issuable_on": 1682553646,
       "certs_received": {
@@ -79835,8 +81352,8 @@
     "NDEPLOT": {
       "index": 6744,
       "owner_key": "8C2VCbYDzHZaxccLCu8hwt6Xntki4v6pbUZxtGydNxXB",
-      "balance": 476150,
-      "membership_expire_on": 1696183868,
+      "balance": 509368,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1686325401,
       "certs_received": {
         "absalon2": 1705077758,
@@ -79849,6 +81366,7 @@
         "montgo34": 1720077673,
         "Val34": 1732227866,
         "LudusArenaConcept": 1743320503,
+        "Lauriecordova": 1758327427,
         "geneclo34": 1708562082,
         "Anoutsa": 1729102586,
         "Beacouleurs": 1727753300,
@@ -79878,18 +81396,19 @@
     "ChristineBouton": {
       "index": 5913,
       "owner_key": "8C6ZVxTghgo7kbm51CkoETyKZjXELux8iim9eUuf2Q3k",
-      "balance": 390748,
+      "balance": 420822,
       "membership_expire_on": 1722429305,
       "next_cert_issuable_on": 1679561864,
       "certs_received": {
         "SylvieBeaumontPerron": 1700291410,
         "GuyPerron": 1700724349,
-        "StephanieN": 1698216662,
+        "StephanieN": 1759092334,
         "EricPetit": 1754073709,
         "MurielW": 1715897860,
         "Chantalbaril": 1714496590,
         "isabelledesrame": 1697953775,
         "SophieCheuvry": 1744311790,
+        "JosianeSochon": 1758685810,
         "Chrisjublan": 1697952760,
         "delaunayjeannette": 1730853300,
         "Sebontheroad": 1745864373,
@@ -79898,7 +81417,7 @@
         "FranckDuhamel": 1716066458,
         "astrid": 1698214818,
         "RichardGhislaine": 1706168831,
-        "YanickChareille": 1697703746,
+        "YanickChareille": 1757117680,
         "Gentcat": 1743288954,
         "MicheleChaplain": 1753247904,
         "EdithSineux": 1697672290,
@@ -79908,7 +81427,7 @@
     "oeildeLynx": {
       "index": 7503,
       "owner_key": "8CLLuYuexGJKzLSZxDWYPpi6PV9kfGHBgvAvy87B7G3c",
-      "balance": 175765,
+      "balance": 215451,
       "membership_expire_on": 1707436143,
       "next_cert_issuable_on": 1675950543,
       "certs_received": {
@@ -79939,7 +81458,7 @@
     "ValerieR": {
       "index": 11245,
       "owner_key": "8CQGjBA8MGV5BtdDSgSRDrvhVx8vVQWTYSYqs5i5EvYj",
-      "balance": 371860,
+      "balance": 411546,
       "membership_expire_on": 1704596566,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -79954,7 +81473,7 @@
     "Syildiz61": {
       "index": 12333,
       "owner_key": "8CRVTYz9y3PvSq7fTBWhmu9oxCfshPguk3AUpj2SJdB3",
-      "balance": 149520,
+      "balance": 189206,
       "membership_expire_on": 1712220752,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -79968,7 +81487,7 @@
     "francopi": {
       "index": 10115,
       "owner_key": "8CRZL3pjcWfQDdx2o73NgsCVmSvAgHY93bS7h18vX5xy",
-      "balance": 316980,
+      "balance": 356666,
       "membership_expire_on": 1698546751,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -79982,7 +81501,7 @@
     "Djni": {
       "index": 12966,
       "owner_key": "8CSoraZLi2hzngHnyFMdqd7hj22DiYudNL42mBirEa4m",
-      "balance": 205792,
+      "balance": 245478,
       "membership_expire_on": 1717721289,
       "next_cert_issuable_on": 1688972322,
       "certs_received": {
@@ -79996,7 +81515,7 @@
     "Nath07": {
       "index": 12383,
       "owner_key": "8CUPmK7cgMjpK3inypwZua4GgiWjvKiDz4UsJ9fKns9m",
-      "balance": 143112,
+      "balance": 182798,
       "membership_expire_on": 1711382937,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -80011,9 +81530,9 @@
     "EmmaD": {
       "index": 10085,
       "owner_key": "8CZvdNNg4uzJZePJ6kw1tErN1vKi9hNd4K5SvAqNugkQ",
-      "balance": 559898,
+      "balance": 735694,
       "membership_expire_on": 1724416725,
-      "next_cert_issuable_on": 1692626490,
+      "next_cert_issuable_on": 1695004239,
       "certs_received": {
         "Niranjana": 1729906724,
         "Aure": 1729662282,
@@ -80029,14 +81548,13 @@
     "RenaudSchira": {
       "index": 230,
       "owner_key": "8Cajry2gGzXazsyySdKv6SAHBZV4xAfPAVZBRKHz7rnz",
-      "balance": 1796335,
+      "balance": 1836021,
       "membership_expire_on": 1717689264,
       "next_cert_issuable_on": 1665457470,
       "certs_received": {
         "Napo": 1717539158,
         "Gregneo": 1719626531,
         "torotoro": 1702152956,
-        "ChristopheRobine": 1695880276,
         "Redgg": 1753461378,
         "Felipe": 1702186475,
         "BorisPuyet": 1709354372,
@@ -80054,8 +81572,8 @@
     "CHRISMI": {
       "index": 6764,
       "owner_key": "8CqQNhCYUtTB4F31gPK7qs6sCspBWwtHCdVQhuhPMjDV",
-      "balance": 615431,
-      "membership_expire_on": 1695664642,
+      "balance": 642181,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1664179445,
       "certs_received": {
         "Cavalier07": 1705953491,
@@ -80068,7 +81586,7 @@
     "yanis": {
       "index": 1197,
       "owner_key": "8CqovLjJG4mYRWRxTTsNaTMz6r9MM1C4Ha6j4bHCDHCa",
-      "balance": 751962,
+      "balance": 791648,
       "membership_expire_on": 1720972090,
       "next_cert_issuable_on": 1659767530,
       "certs_received": {
@@ -80090,7 +81608,7 @@
     "Atianax": {
       "index": 7074,
       "owner_key": "8Cz8zCnsztRLE4nGAbKnhvjKCKawbVtxM3AwtQTkqd6X",
-      "balance": 516553,
+      "balance": 504239,
       "membership_expire_on": 1703784896,
       "next_cert_issuable_on": 1683691823,
       "certs_received": {
@@ -80110,7 +81628,7 @@
     "Antunesmi": {
       "index": 9991,
       "owner_key": "8DAsjPYtC3LVumP77snc2dqFGWpoG7hcXRBPk5bxe1NL",
-      "balance": 152480,
+      "balance": 221666,
       "membership_expire_on": 1724157557,
       "next_cert_issuable_on": 1691245474,
       "certs_received": {
@@ -80122,6 +81640,7 @@
         "Sisi": 1729241550,
         "Mcb": 1750050418,
         "Tranquillou": 1729199844,
+        "GeneBe": 1759164770,
         "Ciel": 1729207010
       }
     },
@@ -80153,7 +81672,7 @@
     "Clement66": {
       "index": 12104,
       "owner_key": "8Dg3EtYUDLvytqBYdcHos8onQT1R12cmEnYUMowkXXou",
-      "balance": 90880,
+      "balance": 130566,
       "membership_expire_on": 1709468408,
       "next_cert_issuable_on": 1687245537,
       "certs_received": {
@@ -80190,10 +81709,24 @@
         "Anne-Pierre": 1707327048
       }
     },
+    "AlexK": {
+      "index": 13511,
+      "owner_key": "8DxKhMPLjAtNphurj1iLFrd1PWVznT5fKVWLSfEEoqQE",
+      "balance": 34346,
+      "membership_expire_on": 1725519269,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "OlivK": 1757077247,
+        "ArthuK": 1757077247,
+        "Mat971": 1757077247,
+        "Kitou971": 1757107151,
+        "Solight777": 1757077247
+      }
+    },
     "labradorite": {
       "index": 13071,
       "owner_key": "8DxWemqFqZbG9B7TNFbZH7HzHkS4a7nHvyLtsSPyMqRd",
-      "balance": 47012,
+      "balance": 86698,
       "membership_expire_on": 1719527008,
       "next_cert_issuable_on": 1692173144,
       "certs_received": {
@@ -80212,7 +81745,7 @@
     "Pini": {
       "index": 12949,
       "owner_key": "8Dy5S4KwQ5SWXucEoRw41aRzBxxzXQk3EAYy9CFxSWA2",
-      "balance": 470944,
+      "balance": 540750,
       "membership_expire_on": 1718753428,
       "next_cert_issuable_on": 1692897426,
       "certs_received": {
@@ -80240,7 +81773,7 @@
     "Zoroastre": {
       "index": 5169,
       "owner_key": "8DzwaWVoiNJ9RS4AnwUh6iP8doXgVJ48Bs5zsG8TBg6g",
-      "balance": 460246,
+      "balance": 499932,
       "membership_expire_on": 1705892441,
       "next_cert_issuable_on": 1680389683,
       "certs_received": {
@@ -80254,7 +81787,7 @@
     "Jgf81": {
       "index": 10965,
       "owner_key": "8E7uvdHw1txsoasXjcQDq58PxQt2gW9sEd4gCo9GwFDP",
-      "balance": 395295,
+      "balance": 434981,
       "membership_expire_on": 1699728099,
       "next_cert_issuable_on": 1685770578,
       "certs_received": {
@@ -80268,7 +81801,7 @@
     "LysVida": {
       "index": 9681,
       "owner_key": "8EKoVt5aU9R95ERhYopzoGFZ839f3tThJKrJu7D15Apz",
-      "balance": 138638,
+      "balance": 175924,
       "membership_expire_on": 1721433191,
       "next_cert_issuable_on": 1690696200,
       "certs_received": {
@@ -80291,6 +81824,27 @@
         "ABuenVivir": 1731990359
       }
     },
+    "Xaby60": {
+      "index": 13514,
+      "owner_key": "8EMamiTs3z18jbg1h2LyR28W39NERkuvkwdFaDfkWGDx",
+      "balance": 35711,
+      "membership_expire_on": 1725218596,
+      "next_cert_issuable_on": 1696734178,
+      "certs_received": {
+        "Chantal": 1759027654,
+        "Riri": 1759777121,
+        "ChristelR": 1756790323,
+        "OlivierHovasse": 1757775928,
+        "libellulecreative": 1757100969,
+        "sro": 1756966045,
+        "EtK": 1758951652,
+        "orion": 1757113595,
+        "Ely81": 1757009843,
+        "Guillermo89": 1757100969,
+        "SergeUme": 1757644538,
+        "Hannah": 1756789908
+      }
+    },
     "Sebastien_Ho": {
       "index": 4798,
       "owner_key": "8EQPtTBgrCvMGJHYXVf8YaaVkpsE1TPiWSjTXsYXiAq2",
@@ -80302,7 +81856,7 @@
     "aurore90": {
       "index": 10149,
       "owner_key": "8EWBtfvquNxFGLz21Dd2dYskVecnuoUhfwYx6sbqm3Pc",
-      "balance": 323803,
+      "balance": 363489,
       "membership_expire_on": 1698708054,
       "next_cert_issuable_on": 1686577301,
       "certs_received": {
@@ -80317,7 +81871,7 @@
     "GaiaG": {
       "index": 12153,
       "owner_key": "8EXmXpeK2y5hU88oPBiAaaCp6hTucrEczxiQQLe4VY7X",
-      "balance": 212582,
+      "balance": 252268,
       "membership_expire_on": 1711145439,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -80361,8 +81915,8 @@
     "CharlotteVer": {
       "index": 9895,
       "owner_key": "8EeDdMZ36fEyFjxwBjddFTFz2XzUJE4RE8i4CvyEb7FY",
-      "balance": 344524,
-      "membership_expire_on": 1695638903,
+      "balance": 370196,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1665888004,
       "certs_received": {
         "EmaPom": 1727937932,
@@ -80383,9 +81937,9 @@
     "AnianaYpunto": {
       "index": 9129,
       "owner_key": "8ErWiYbYMu2Lwk9XA9Wvi8n4txVpghuUjUh9opvruHCZ",
-      "balance": 236154,
+      "balance": 322908,
       "membership_expire_on": 1718546471,
-      "next_cert_issuable_on": 1691426609,
+      "next_cert_issuable_on": 1694590122,
       "certs_received": {
         "Silvibenedet": 1743411104,
         "InmaRegina": 1722886714,
@@ -80421,7 +81975,7 @@
     "Rafoufou": {
       "index": 1007,
       "owner_key": "8EtECvs55ecutyU2rp8Tn4PJdEP3wmnM4SfHHSxJorEG",
-      "balance": 603159,
+      "balance": 642845,
       "membership_expire_on": 1704126549,
       "next_cert_issuable_on": 1658055980,
       "certs_received": {
@@ -80433,6 +81987,23 @@
         "ofontes": 1712623347
       }
     },
+    "Antoine45": {
+      "index": 13535,
+      "owner_key": "8EwXVKFzYTYDFt4dqN74RwSLM7JDs8De4ghcotrxV45n",
+      "balance": 16826,
+      "membership_expire_on": 1725221283,
+      "next_cert_issuable_on": 1696462500,
+      "certs_received": {
+        "XeniaLR": 1759124223,
+        "CelineVivante": 1756848222,
+        "Mathdom": 1757037157,
+        "LutziaZ": 1757225901,
+        "PatrickREVIF": 1758154299,
+        "Seve": 1758433202,
+        "ALLine": 1757183459,
+        "NadiaNadodu": 1757047727
+      }
+    },
     "MyriamRamdane": {
       "index": 3506,
       "owner_key": "8EypRWL3QDxGy5b6MSf5RgsLV3HMQJxjTUhaJ2H6Lmei",
@@ -80460,9 +82031,9 @@
     "NathydeSainteVerge": {
       "index": 11769,
       "owner_key": "8FCB2ZFdspRqgWfzbGEWQULvBqYSZB7XuM34XMYooehk",
-      "balance": 373145,
+      "balance": 383431,
       "membership_expire_on": 1708470829,
-      "next_cert_issuable_on": 1692713973,
+      "next_cert_issuable_on": 1694753932,
       "certs_received": {
         "CatherinePerma": 1740376800,
         "Rebirth35": 1740522215,
@@ -80481,13 +82052,14 @@
     "AntoineSablayrolles": {
       "index": 12035,
       "owner_key": "8FLfjP8Q8W7tAqatz43ycp4KnTLb2tqVtCixxNGuom9P",
-      "balance": 479466,
+      "balance": 652353,
       "membership_expire_on": 1706307647,
-      "next_cert_issuable_on": 1693030602,
+      "next_cert_issuable_on": 1694904453,
       "certs_received": {
         "Natalya71": 1741511063,
         "SvetRuskof": 1741428405,
         "CHRISTIANE": 1740972530,
+        "LauQui": 1757896606,
         "Sohan": 1741913747,
         "Philibert": 1741720763,
         "Profil": 1741982700
@@ -80496,9 +82068,9 @@
     "DetiegeChloe": {
       "index": 9183,
       "owner_key": "8FNoYjhkP3S1RPGadQFrKBTRSWfogyfF9Dq32TkAXhEt",
-      "balance": 385319,
+      "balance": 462505,
       "membership_expire_on": 1722688190,
-      "next_cert_issuable_on": 1683897010,
+      "next_cert_issuable_on": 1696762322,
       "certs_received": {
         "rockwater": 1723484184,
         "Shivanishivani": 1723486029,
@@ -80512,7 +82084,7 @@
     "Paolagrazia": {
       "index": 8457,
       "owner_key": "8FX8vYamFA5YXRVadDNE64V94ceY8Gyr1w1qJx193rQD",
-      "balance": 341230,
+      "balance": 380916,
       "membership_expire_on": 1717636027,
       "next_cert_issuable_on": 1668499136,
       "certs_received": {
@@ -80529,35 +82101,30 @@
     "izofrog38": {
       "index": 5797,
       "owner_key": "8FazePGZi1BAxAFxwS9H4hSVjUadscSZTwRh71faNhY6",
-      "balance": 355777,
+      "balance": 235463,
       "membership_expire_on": 1721304840,
       "next_cert_issuable_on": 1686576353,
       "certs_received": {
         "YannF": 1748668800,
         "belledemai": 1699580889,
-        "ElieLombard": 1695753912,
-        "sanddebeloest38": 1695602289,
         "Celine388": 1740989665,
         "Mamietarteopommes": 1724179463,
         "AnaisMS": 1722488802,
-        "izotoad38": 1695542017,
         "FannyF": 1748753045,
         "TataCC": 1727450799,
-        "esteban": 1695601043,
         "TristTDW": 1733980079,
         "ChristianMichelChampon": 1742779866,
         "Cathykty": 1703651920,
         "tigredefeu": 1740734725,
         "jeanine65": 1750741672,
         "Houriadeparissud": 1736822767,
-        "LaurentM": 1695753040,
         "sofinity": 1745699905
       }
     },
     "Jean-Michel_Filing": {
       "index": 5248,
       "owner_key": "8FgDf1V2mEsyp8NzV6jJCHtnzezWJskx7pqoknPUPQPS",
-      "balance": 604517,
+      "balance": 644203,
       "membership_expire_on": 1713706551,
       "next_cert_issuable_on": 1682220951,
       "certs_received": {
@@ -80567,7 +82134,6 @@
         "yvesmignotte": 1700619178,
         "Imppao": 1710590977,
         "Crismos": 1737261828,
-        "samyourte": 1696737224,
         "YOSOYLUZ": 1738054715,
         "LiliRose": 1720038971,
         "Totoro": 1710796291,
@@ -80580,15 +82146,13 @@
     "Coco-B": {
       "index": 4218,
       "owner_key": "8Fh74i9q15UcRCRwT8T3StXtvp8Cck3Jbkvh6eu8ickb",
-      "balance": 258321,
+      "balance": 268007,
       "membership_expire_on": 1714314865,
-      "next_cert_issuable_on": 1690270707,
+      "next_cert_issuable_on": 1693917296,
       "certs_received": {
         "Tot16": 1753226716,
         "DaniailesA": 1715153947,
         "Chaton": 1744240969,
-        "JohannFox": 1695941557,
-        "HeleneSoleil": 1693772135,
         "KitKat": 1739599119,
         "Abondance": 1723513330,
         "Plumedange": 1744329711,
@@ -80599,7 +82163,6 @@
         "lamouette": 1732742753,
         "Omshanti": 1753334796,
         "Amankosmos": 1717661415,
-        "SamsFactory": 1695801937,
         "hypericum": 1740742482,
         "Piraculteur": 1723691332,
         "Milinette16": 1702956387
@@ -80616,7 +82179,7 @@
     "AdrienMostacci": {
       "index": 10612,
       "owner_key": "8FoJNuJUbYsVUj8Ppr7npryqVb4b4kHGKvXvcmztaPh9",
-      "balance": 293633,
+      "balance": 333319,
       "membership_expire_on": 1701188311,
       "next_cert_issuable_on": 1671185959,
       "certs_received": {
@@ -80638,7 +82201,7 @@
     "Gigi1953": {
       "index": 11955,
       "owner_key": "8Fqz4dmMjLeJq4c2AXgLvaHnM6czHGfcNZwApV9WcPV7",
-      "balance": 273365,
+      "balance": 314051,
       "membership_expire_on": 1710164974,
       "next_cert_issuable_on": 1687769333,
       "certs_received": {
@@ -80656,9 +82219,9 @@
     "Myosotis": {
       "index": 9361,
       "owner_key": "8FtMNHaL9q6VzGMHEuGgZH4rtKQ4MzetrKmzuAFfe6Tn",
-      "balance": 383952,
+      "balance": 423638,
       "membership_expire_on": 1723990143,
-      "next_cert_issuable_on": 1693281062,
+      "next_cert_issuable_on": 1694862298,
       "certs_received": {
         "MAGSENS": 1724785871,
         "NaneDeProvence": 1724587766,
@@ -80675,7 +82238,7 @@
     "didi34": {
       "index": 4261,
       "owner_key": "8Fvw5aeMZcRGqrb13JzvXNavHQHcdHBNptE8GqZwmhKA",
-      "balance": 936218,
+      "balance": 975904,
       "membership_expire_on": 1699123107,
       "next_cert_issuable_on": 1636700840,
       "certs_received": {
@@ -80690,9 +82253,9 @@
     "MikaYeel": {
       "index": 6267,
       "owner_key": "8G6CsQhdwvejKbPrtyse7uF1qPF7rqNtQZ8tZGFFyxSa",
-      "balance": 4201181,
+      "balance": 4132167,
       "membership_expire_on": 1724068283,
-      "next_cert_issuable_on": 1692736691,
+      "next_cert_issuable_on": 1693901295,
       "certs_received": {
         "Eiutim": 1708469642,
         "ManelG": 1722668662,
@@ -80725,6 +82288,7 @@
         "PorteduCiel": 1738207896,
         "Josephine": 1707878539,
         "VincentB": 1701227547,
+        "Enric": 1758578222,
         "Voyageur32": 1731728112,
         "FilouLibre59": 1740086315,
         "TerrasFranck": 1701418702,
@@ -80764,8 +82328,8 @@
     "lilivoutenay": {
       "index": 10408,
       "owner_key": "8GEJGjdDvLpTiHMGjJ7MjiRVKHAKscNud3FFtMKX1xdz",
-      "balance": 307341,
-      "membership_expire_on": 1696343672,
+      "balance": 342715,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Moujik": 1731739098,
@@ -80775,18 +82339,31 @@
         "RadissonMarie": 1731693559
       }
     },
+    "janssenselisabeth": {
+      "index": 13552,
+      "owner_key": "8GGgWpLVQRpqKRtd6gRQhbY9PEXRdqMrgRtD2ytbapwy",
+      "balance": 29038,
+      "membership_expire_on": 1725883789,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "FRANLA": 1757474052,
+        "WANMAR": 1757474273,
+        "Nathjeanson": 1757454296,
+        "JulieEvrats": 1757599698,
+        "SELHENIA": 1757540010
+      }
+    },
     "GillesLangellotti": {
       "index": 638,
       "owner_key": "8GLjJWrNKU5sqrDtCh15FbNYCQg4evHMtUj9bcDFQNpq",
-      "balance": 1344512,
-      "membership_expire_on": 1693653545,
+      "balance": 1383130,
+      "membership_expire_on": 1725330382,
       "next_cert_issuable_on": 1680835014,
       "certs_received": {
         "Schinzy": 1715755297,
         "ISABELLEDR": 1704687427,
         "Gaelle81": 1742696958,
         "Vivakvo": 1754292483,
-        "Pac": 1695767789,
         "Pieter-LucvanNikkel": 1737477653,
         "She8": 1745027002,
         "Marionrosa": 1713116117,
@@ -80804,7 +82381,7 @@
     "Melanina": {
       "index": 8316,
       "owner_key": "8Gao73krhpQfGVGxT1NEntGYP9iR9NKBabPXq3nZs8h3",
-      "balance": 413373,
+      "balance": 433059,
       "membership_expire_on": 1717416485,
       "next_cert_issuable_on": 1687014920,
       "certs_received": {
@@ -80831,7 +82408,7 @@
     "sandpic08": {
       "index": 7027,
       "owner_key": "8GhybDknbHQNQxM418KWJrHuzzTRyvmzgDZhZiebWCNa",
-      "balance": 418287,
+      "balance": 457473,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1683595585,
       "certs_received": {
@@ -80849,7 +82426,7 @@
     "MrMrtn": {
       "index": 8471,
       "owner_key": "8GjLfqQBCpVqxpaKu8trxPqfRiRGg8n6seC8evDhKEU9",
-      "balance": 1016732,
+      "balance": 1056418,
       "membership_expire_on": 1709342156,
       "next_cert_issuable_on": 1679666756,
       "certs_received": {
@@ -80866,7 +82443,7 @@
     "JOUFFE66": {
       "index": 10398,
       "owner_key": "8GmZmU5yzPJcsBju6XHxMxVtGErbo9dbjWCHNAnNbxFZ",
-      "balance": 305400,
+      "balance": 345086,
       "membership_expire_on": 1699798611,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -80877,10 +82454,24 @@
         "Luviam": 1731546099
       }
     },
+    "Pippilotta": {
+      "index": 13718,
+      "owner_key": "8GmbZBzKXVucaPz94UeF3sHfgV2L1qipPXpULgWybkSB",
+      "balance": 44900,
+      "membership_expire_on": 1727397348,
+      "next_cert_issuable_on": 1696341298,
+      "certs_received": {
+        "Ghostdog": 1759289668,
+        "Anma": 1759193991,
+        "FEUERFRAU": 1759203096,
+        "Micha": 1759192952,
+        "Geli": 1759365738
+      }
+    },
     "JunePhil": {
       "index": 10565,
       "owner_key": "8GnGFpY9F5GZnnQWbbxfGskrH4Uo5JLX53um4bfAwe6u",
-      "balance": 287251,
+      "balance": 319437,
       "membership_expire_on": 1700166009,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -80897,7 +82488,7 @@
     "Lacabane": {
       "index": 12438,
       "owner_key": "8GqXi3RnNnGRBTmeu5FtbtPkYu5K68kGtaBKitayf55u",
-      "balance": 354172,
+      "balance": 393858,
       "membership_expire_on": 1713802704,
       "next_cert_issuable_on": 1688992498,
       "certs_received": {
@@ -80913,7 +82504,7 @@
     "JJP": {
       "index": 7809,
       "owner_key": "8Guf5YvD8e4zdpfnWWmx4X3CUSJg5uYd7zxitdJSGoia",
-      "balance": 432429,
+      "balance": 472115,
       "membership_expire_on": 1712053820,
       "next_cert_issuable_on": 1683860255,
       "certs_received": {
@@ -80935,7 +82526,7 @@
     "NicolasBoiteau": {
       "index": 7958,
       "owner_key": "8GypFWjzMq5Vg81FtkvfkbWiNXeX6ke9P4gMyWeRpdgq",
-      "balance": 526162,
+      "balance": 565848,
       "membership_expire_on": 1711761567,
       "next_cert_issuable_on": 1652279032,
       "certs_received": {
@@ -80949,7 +82540,7 @@
     "LisieFt": {
       "index": 12105,
       "owner_key": "8GzwWSvmf2uaeBiithPkF3UpA6bGvmg6t1jAQZNxhWQB",
-      "balance": 172880,
+      "balance": 212566,
       "membership_expire_on": 1709835329,
       "next_cert_issuable_on": 1686659775,
       "certs_received": {
@@ -80968,7 +82559,7 @@
     "LaurenceIG": {
       "index": 2844,
       "owner_key": "8H1B6XK9fbHSDVQCyhbAUxViZqwcSrCSfD4HnH8TjKtV",
-      "balance": 1370714,
+      "balance": 1410400,
       "membership_expire_on": 1697924120,
       "next_cert_issuable_on": 1692387693,
       "certs_received": {
@@ -80992,7 +82583,7 @@
     "poselongueP": {
       "index": 6780,
       "owner_key": "8H3RPTkcoUQafEUZn62fXcJLgZ6WyowLttSvgM8PBzNv",
-      "balance": 298489,
+      "balance": 338175,
       "membership_expire_on": 1700822037,
       "next_cert_issuable_on": 1670333043,
       "certs_received": {
@@ -81012,7 +82603,7 @@
     "LightWorker": {
       "index": 12806,
       "owner_key": "8H4R8N46wQgGLz96bQuYmrTp9NBMNEj3r3fdcst2HyGz",
-      "balance": 97484,
+      "balance": 132770,
       "membership_expire_on": 1717204394,
       "next_cert_issuable_on": 1690817288,
       "certs_received": {
@@ -81027,7 +82618,7 @@
     "JadeWolf": {
       "index": 5392,
       "owner_key": "8H53CEU3ateFaxvz4ucpp4oAd4JpjCFwKb4PELNNTkn5",
-      "balance": 566505,
+      "balance": 606191,
       "membership_expire_on": 1718059277,
       "next_cert_issuable_on": 1691477294,
       "certs_received": {
@@ -81058,43 +82649,46 @@
     "FaridaB": {
       "index": 3721,
       "owner_key": "8HNeWPGmzEk5zVwfd17Q88Wp3CNK9JnAj3wnZu1tvRhj",
-      "balance": 927243,
-      "membership_expire_on": 1708891299,
+      "balance": 942195,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1651202972,
       "certs_received": {
         "FloLap": 1706407238,
-        "Delfe": 1694729452,
         "Anitaantigone": 1714289635,
-        "ClaireSMV": 1695001098,
         "S-H": 1697020183
       }
     },
     "IbonNakin": {
       "index": 11919,
       "owner_key": "8HPc6FefhzrihNZAA9vNQKRKKHETjD1HSeN6M872cf9E",
-      "balance": 170006,
+      "balance": 51252,
       "membership_expire_on": 1709665863,
-      "next_cert_issuable_on": 1692428666,
+      "next_cert_issuable_on": 1695774063,
       "certs_received": {
         "Silvi": 1752249745,
+        "MonyKan": 1758952348,
         "Meg": 1747981109,
         "JuanraChocolate": 1741507494,
         "Maika": 1742882440,
+        "Sonya": 1758258091,
         "MAIKA": 1741511315,
+        "LeireArias": 1758338595,
         "pilarart": 1752779629,
         "Jontxu67": 1741506321,
         "Aneferse": 1741511315,
+        "Jhonnier": 1757575008,
         "Kikeloyola": 1741558577,
         "LuFortes": 1741539754,
         "Jana": 1741655591,
         "HARRI7": 1749005347,
-        "EduZapping": 1741511063
+        "EduZapping": 1741511063,
+        "lachispis": 1759079717
       }
     },
     "Dogoni": {
       "index": 144,
       "owner_key": "8HSMXyyWLqFoy5hmGg6UBRTPxqSQ2bd26SACpEj5zcQy",
-      "balance": 1959647,
+      "balance": 1999333,
       "membership_expire_on": 1700935550,
       "next_cert_issuable_on": 1688348649,
       "certs_received": {
@@ -81135,7 +82729,7 @@
     "Coolbla1245": {
       "index": 13406,
       "owner_key": "8HcYhRwBzGDQ4vYLNMX19u7MX2xKRauyyUfnL7y7zAEb",
-      "balance": 18616,
+      "balance": 56802,
       "membership_expire_on": 1723638023,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -81149,7 +82743,7 @@
     "Chani": {
       "index": 7309,
       "owner_key": "8Hdk3QHxAsaFHPyBhjnvD7a4B7z6GqS2TKhZDQkHKUFT",
-      "balance": 294568,
+      "balance": 334254,
       "membership_expire_on": 1713706551,
       "next_cert_issuable_on": 1665922345,
       "certs_received": {
@@ -81165,7 +82759,7 @@
     "domire": {
       "index": 7185,
       "owner_key": "8Hdmuasa41tNQnUEG8i49U9cQQBbh2Tc2ciLVNRjnRSo",
-      "balance": 554835,
+      "balance": 595521,
       "membership_expire_on": 1704236650,
       "next_cert_issuable_on": 1692876465,
       "certs_received": {
@@ -81176,6 +82770,7 @@
         "JeanD07": 1756070107,
         "Matthias": 1709171486,
         "Djelan007": 1708598415,
+        "Francoise00007": 1757956973,
         "Didine": 1708898329,
         "gigi07": 1705728665
       }
@@ -81183,7 +82778,7 @@
     "Lyne": {
       "index": 13158,
       "owner_key": "8HgnmXaYBnQEf1coZnFH9wxztYrSmRiksSR1RBxjTGbv",
-      "balance": 61264,
+      "balance": 100950,
       "membership_expire_on": 1719843463,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -81197,11 +82792,12 @@
     "Soleillevant": {
       "index": 13347,
       "owner_key": "8HiQXYsJYevC77cpN1bbMKLp7EAt1NofkEexWeoeh4FR",
-      "balance": 494108,
+      "balance": 538794,
       "membership_expire_on": 1723116771,
       "next_cert_issuable_on": 1693236747,
       "certs_received": {
         "SandyMenegazzi": 1754717152,
+        "Anamaya": 1756760479,
         "VeroniqueMaessen": 1754689579,
         "AileeSavannah": 1754790296,
         "MaryseD": 1754717728,
@@ -81211,9 +82807,9 @@
     "Naty": {
       "index": 9020,
       "owner_key": "8HwKDdwhBQsw9skysgucPp3jJMoRsaX81v41JCuijEbY",
-      "balance": 397386,
+      "balance": 437072,
       "membership_expire_on": 1715618498,
-      "next_cert_issuable_on": 1689727299,
+      "next_cert_issuable_on": 1695130860,
       "certs_received": {
         "Jsln6289": 1720756377,
         "Nagual": 1721421551,
@@ -81240,14 +82836,15 @@
     "Isabella": {
       "index": 9596,
       "owner_key": "8JBM2M9QV6SjFEp3Uh2HRmVpnRDc3dMntwQcjstBZNuX",
-      "balance": 823448,
+      "balance": 821434,
       "membership_expire_on": 1722195418,
-      "next_cert_issuable_on": 1692538207,
+      "next_cert_issuable_on": 1694405730,
       "certs_received": {
         "ArtesaniaAna": 1739609693,
         "SophSav": 1726292837,
         "xandraAritzkuren": 1742461617,
         "Nicolas": 1726381067,
+        "MaudD": 1757443608,
         "Urbez": 1726158007,
         "faraona": 1755028822,
         "AngieantesGeles": 1727776661,
@@ -81265,6 +82862,7 @@
         "Mariarima": 1755590134,
         "KepaBai": 1732383792,
         "DanielaEG": 1736664599,
+        "albalibre": 1757519917,
         "AinaraNutri": 1730609868,
         "Alberto": 1726784602,
         "VibrandoEsencia": 1740029335,
@@ -81275,7 +82873,7 @@
     "MarieNoelleLeduc": {
       "index": 11256,
       "owner_key": "8JC94o8YPFn9poauzdVctTLyiCYbE9TG4gAjsLoA2ZAA",
-      "balance": 260801,
+      "balance": 300487,
       "membership_expire_on": 1705343119,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -81291,7 +82889,7 @@
     "Maika": {
       "index": 9880,
       "owner_key": "8JCfzsJbTnqTkZojDSkqU7bmexRct2nR8NEDRvEx9cum",
-      "balance": 437815,
+      "balance": 479501,
       "membership_expire_on": 1723422270,
       "next_cert_issuable_on": 1692809123,
       "certs_received": {
@@ -81337,7 +82935,7 @@
     "JoannaD": {
       "index": 8949,
       "owner_key": "8JWT5rfjGMGtpjPZDgMfjgTYkdNqyD23yiJHiXTJ4dLZ",
-      "balance": 405247,
+      "balance": 444933,
       "membership_expire_on": 1719593443,
       "next_cert_issuable_on": 1667562486,
       "certs_received": {
@@ -81351,7 +82949,7 @@
     "Charlottelecerf": {
       "index": 12391,
       "owner_key": "8JYRSPkHG9NqD11zvdrPUFJSaCWACyeNhNzjYVnZFmvv",
-      "balance": 141044,
+      "balance": 176730,
       "membership_expire_on": 1713544160,
       "next_cert_issuable_on": 1684176405,
       "certs_received": {
@@ -81362,12 +82960,30 @@
         "Keramina51": 1745106786
       }
     },
+    "brigitamanou": {
+      "index": 13641,
+      "owner_key": "8JsZrsazQ5nbpxAEKq8T3bpG2KmMjrw9ZcYJtU5Gh5Sc",
+      "balance": 25702,
+      "membership_expire_on": 1726503111,
+      "next_cert_issuable_on": 1695992490,
+      "certs_received": {
+        "Zap": 1758528211,
+        "FannyBee": 1758061560,
+        "Evelyne87": 1758923658,
+        "DimitriTuffreau": 1758079196,
+        "MayaRT": 1758395890,
+        "LaPetiteMaisonDansLaPrairie": 1758841190,
+        "Beacouleurs": 1758951652,
+        "Zou": 1758861713,
+        "LydiaRoche": 1758324040
+      }
+    },
     "Monicakoala": {
       "index": 7675,
       "owner_key": "8JuCa6wxiG6ENL8w5EdWquZsgbVpN2AAM2d7PwApsKin",
-      "balance": 360073,
+      "balance": 374459,
       "membership_expire_on": 1707667692,
-      "next_cert_issuable_on": 1676396939,
+      "next_cert_issuable_on": 1695556020,
       "certs_received": {
         "xandraAritzkuren": 1720229153,
         "Cordeliaze": 1712618321,
@@ -81399,7 +83015,7 @@
     "Skyves18": {
       "index": 11646,
       "owner_key": "8K9QP5hMWk7rx9BHS1R7beE141GGFSv9GMXF28uq9xWh",
-      "balance": 175472,
+      "balance": 221158,
       "membership_expire_on": 1707342483,
       "next_cert_issuable_on": 1682308117,
       "certs_received": {
@@ -81415,9 +83031,9 @@
     "Mobilhomme": {
       "index": 5961,
       "owner_key": "8KAPENHtAesxvmNk1qNHDZrgcr9Ytc9Uf72DHCSJnprR",
-      "balance": 536690,
-      "membership_expire_on": 1699222903,
-      "next_cert_issuable_on": 1662958188,
+      "balance": 576376,
+      "membership_expire_on": 1727653171,
+      "next_cert_issuable_on": 1696167571,
       "certs_received": {
         "CatherinePerma": 1698830625,
         "Uriane13": 1744485211,
@@ -81431,7 +83047,7 @@
     "karin": {
       "index": 4910,
       "owner_key": "8KBKufFZ3cm4DubmTe111sQJddTeevayxxEbBsLVrjN1",
-      "balance": 393567,
+      "balance": 343553,
       "membership_expire_on": 1714738787,
       "next_cert_issuable_on": 1678515726,
       "certs_received": {
@@ -81446,7 +83062,7 @@
     "JohnBzz": {
       "index": 9113,
       "owner_key": "8KFQKsLZdkgpxNoQXbakLH7M4nCkGQCydrXSTYJ2ogk9",
-      "balance": 388559,
+      "balance": 428245,
       "membership_expire_on": 1724804325,
       "next_cert_issuable_on": 1669002982,
       "certs_received": {
@@ -81461,11 +83077,12 @@
     "FRANLA": {
       "index": 10362,
       "owner_key": "8KHmzH5mmZM483yasqNj6DazUzmbiknTdARgKuEvFDi6",
-      "balance": 244083,
-      "membership_expire_on": 1699649413,
-      "next_cert_issuable_on": 1687844735,
+      "balance": 275870,
+      "membership_expire_on": 1726092856,
+      "next_cert_issuable_on": 1696502057,
       "certs_received": {
         "CeHunin": 1731266228,
+        "Naho": 1759606709,
         "WilTher": 1731644379,
         "filou": 1745130261,
         "ELISKA": 1731629291,
@@ -81504,7 +83121,7 @@
     "Cassiano": {
       "index": 9883,
       "owner_key": "8KdeUUgmQST9donj3x9t7nzDXBB3dGaQ7VH2UpCHFuCz",
-      "balance": 354583,
+      "balance": 394269,
       "membership_expire_on": 1722799261,
       "next_cert_issuable_on": 1668095505,
       "certs_received": {
@@ -81521,13 +83138,14 @@
     "Adelinej": {
       "index": 11008,
       "owner_key": "8Ke9uxdQw8hL8cVxNfY1w8a1tGQoNL725H5Pcu35oob5",
-      "balance": 262599,
+      "balance": 304285,
       "membership_expire_on": 1703208935,
       "next_cert_issuable_on": 1687767470,
       "certs_received": {
         "Wiwi": 1734919853,
         "Jeanmichel": 1734803525,
         "DelphineA": 1734825160,
+        "FRENOTSYLVIE": 1757986313,
         "ThierryK": 1734812669,
         "Anelyse": 1735171964
       }
@@ -81537,19 +83155,13 @@
       "owner_key": "8Kok6Uxce2ASAR9xXgGNTUtVpcbjxbZcyYw5F2TgTcMC",
       "balance": 374033,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632923379,
-      "certs_received": {
-        "kosnik": 1694152840,
-        "JerryBB": 1694398488,
-        "Pirataquante": 1694319489,
-        "Piraculteur": 1694066817,
-        "Albin": 1694067323
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "MarieCZ": {
       "index": 12370,
       "owner_key": "8KwJNR6XtwXsKjgavUu4rpvNfpTCLPcqetmEuBQa64hC",
-      "balance": 152248,
+      "balance": 191934,
       "membership_expire_on": 1712696225,
       "next_cert_issuable_on": 1683714340,
       "certs_received": {
@@ -81566,7 +83178,7 @@
     "orociclo": {
       "index": 7712,
       "owner_key": "8L34NZcsGTMZhzSjG5jRFc1ZmE8eEdDCACSswqDYE4E",
-      "balance": 502169,
+      "balance": 541855,
       "membership_expire_on": 1717584506,
       "next_cert_issuable_on": 1668861600,
       "certs_received": {
@@ -81584,7 +83196,7 @@
     "CedricBorn": {
       "index": 12376,
       "owner_key": "8L5eKPxivfybVV3rtCwxHFKQGbGtstuQ3quYtbxJAtYc",
-      "balance": 145248,
+      "balance": 184934,
       "membership_expire_on": 1713218549,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -81608,13 +83220,14 @@
     "LouisCarvalho": {
       "index": 13442,
       "owner_key": "8L6U6VmcgTv8mqEpyZ9XG5r5XVoPdyMuvbAQiZHrqkZy",
-      "balance": 6408,
+      "balance": 56094,
       "membership_expire_on": 1723720193,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696243693,
       "certs_received": {
         "Katou": 1755801649,
         "hibiscus11": 1755908703,
         "nashira": 1755804683,
+        "Claudebramy": 1759674278,
         "Andrelie": 1755800289,
         "AnneLaroche": 1755278432
       }
@@ -81622,7 +83235,7 @@
     "sylvine": {
       "index": 7331,
       "owner_key": "8L7CZvJUvWASNjccGd7ios9RTUzAL2ohurBhQ1Z2wcUj",
-      "balance": 337946,
+      "balance": 164632,
       "membership_expire_on": 1705253676,
       "next_cert_issuable_on": 1674563326,
       "certs_received": {
@@ -81639,7 +83252,7 @@
     "Xav888": {
       "index": 13308,
       "owner_key": "8L7yeXTdYmXUXvzNZZ5GJMvqi3bz1EFGcCgrKAunAwrk",
-      "balance": 59336,
+      "balance": 99022,
       "membership_expire_on": 1722522457,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -81653,8 +83266,8 @@
     "Joyce": {
       "index": 9873,
       "owner_key": "8LDZtDPxSXfYuftn6EWUqjECQALYKPXNVPQFpLmhi6KV",
-      "balance": 345542,
-      "membership_expire_on": 1694971066,
+      "balance": 370166,
+      "membership_expire_on": 1727714167,
       "next_cert_issuable_on": 1679555885,
       "certs_received": {
         "sanddebeloest38": 1727258570,
@@ -81682,7 +83295,7 @@
     "PatxiTT": {
       "index": 11312,
       "owner_key": "8LPPfQvbQoMMBMtz2ukZhUWLijq8YbTrCn4QZzy1SVjy",
-      "balance": 380042,
+      "balance": 378268,
       "membership_expire_on": 1705615838,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -81697,19 +83310,22 @@
     "Elenarepostera": {
       "index": 10283,
       "owner_key": "8LSHTPqyEwQhvuXMAwc1SA9LjAyXU1swNHxrwpvi924E",
-      "balance": 312114,
-      "membership_expire_on": 1699617347,
-      "next_cert_issuable_on": 1693131592,
+      "balance": 366700,
+      "membership_expire_on": 1726017408,
+      "next_cert_issuable_on": 1694571452,
       "certs_received": {
         "Alfonso": 1731214433,
         "SantiTrinquete": 1731216382,
         "Belobal": 1731733732,
+        "MaraVilla": 1756176748,
         "begobienestar": 1738145507,
+        "Meg": 1757578034,
         "YagoMago": 1735604001,
         "EstefaniaLopez": 1731217222,
         "SoniaJimenezCook": 1733046728,
         "jilguero": 1738753421,
         "Abejitajaimita": 1746762354,
+        "Didiridi": 1756496059,
         "Leia": 1731214229,
         "Franviriato": 1747156141,
         "mariabiodanza": 1736207422,
@@ -81725,12 +83341,14 @@
     "PierreHarrewyn": {
       "index": 12186,
       "owner_key": "8LUycaytYud3sKDWRxLvAivWyGjGAT2v2xSQke9RD7fR",
-      "balance": 163404,
+      "balance": 203090,
       "membership_expire_on": 1709951831,
-      "next_cert_issuable_on": 1692925124,
+      "next_cert_issuable_on": 1695791276,
       "certs_received": {
         "Flohubert": 1745789617,
         "Bernardfrennet": 1754251128,
+        "Isabeau": 1757404897,
+        "Ortie": 1759212054,
         "Juliettecauwe": 1743476541,
         "Camizot": 1742528818,
         "Gerrit": 1742694116,
@@ -81740,6 +83358,20 @@
         "Helver": 1743295839
       }
     },
+    "SylvainGo": {
+      "index": 13653,
+      "owner_key": "8LVrxRsnv1p2YsmYpHHB7CNcSgzDFo2CyiWRQVeta27S",
+      "balance": 19504,
+      "membership_expire_on": 1727049924,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Anneke": 1758737290,
+        "Piet": 1758658796,
+        "Vince": 1758610196,
+        "Vigo": 1758608603,
+        "Verozen": 1758645859
+      }
+    },
     "Pam": {
       "index": 427,
       "owner_key": "8MANakZaZKfW1iHBoFGdRNUZDk3QiEUYTkSFYcVJqjDt",
@@ -81751,7 +83383,7 @@
     "hommepoirier": {
       "index": 5424,
       "owner_key": "8MHPMx2cv2nws7BD6fRR8JZV9CsQzLP8aH5hLfUoVMNU",
-      "balance": 658017,
+      "balance": 697703,
       "membership_expire_on": 1717724982,
       "next_cert_issuable_on": 1658600030,
       "certs_received": {
@@ -81774,7 +83406,7 @@
     "gwen": {
       "index": 6284,
       "owner_key": "8MWErK9d6amfQV2e5j12Mxo37UFDPP1BVu9MuVxRvHdx",
-      "balance": 669598,
+      "balance": 709284,
       "membership_expire_on": 1701313143,
       "next_cert_issuable_on": 1639677741,
       "certs_received": {
@@ -81790,7 +83422,7 @@
     "Alvaro": {
       "index": 12492,
       "owner_key": "8MauAyhSqhiSrh4teuKTfQcPEyMj1a7pS3Lcwsdbssd2",
-      "balance": 136764,
+      "balance": 176450,
       "membership_expire_on": 1713892160,
       "next_cert_issuable_on": 1689516605,
       "certs_received": {
@@ -81828,7 +83460,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1635346928,
       "certs_received": {
-        "LaureFemmeVanne": 1696233735,
         "Titi": 1737967324,
         "Cha": 1714838954,
         "Yemo": 1716417616
@@ -81837,7 +83468,7 @@
     "PAT27": {
       "index": 11553,
       "owner_key": "8Mg5k33Jpf5w4XLRwQqjjJykv2EyVkV6HmwfXCyMbMHB",
-      "balance": 59885,
+      "balance": 17571,
       "membership_expire_on": 1707178759,
       "next_cert_issuable_on": 1684212654,
       "certs_received": {
@@ -81894,21 +83525,21 @@
     "Lieudiere": {
       "index": 3088,
       "owner_key": "8N5pp6hkGQzBYyaGRDg73nEBrgbAtCURa3KbTVTw3jbv",
-      "balance": 1289593,
+      "balance": 1329279,
       "membership_expire_on": 1700777158,
       "next_cert_issuable_on": 1639507307,
       "certs_received": {
         "EricPetit": 1699500001,
         "yvesfalck": 1697653057,
-        "fabiennegodfraind": 1700030988,
+        "fabiennegodfraind": 1758492194,
         "PascaleRoncoroni": 1699499755,
-        "aubrunjeanclaude": 1697315890
+        "aubrunjeanclaude": 1759294909
       }
     },
     "Lolo": {
       "index": 10816,
       "owner_key": "8N7oRF37HE1vZ31utrgJJAWtLSHe4i6FEM5rK2Lzx2Ju",
-      "balance": 260425,
+      "balance": 300111,
       "membership_expire_on": 1701991138,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -81926,8 +83557,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1641105546,
       "certs_received": {
-        "Yello": 1698823274,
-        "Peps": 1694423877
+        "Yello": 1698823274
       }
     },
     "Laele11": {
@@ -81948,7 +83578,7 @@
     "Michel73": {
       "index": 7383,
       "owner_key": "8NAR8Z7ykuKikq9uH9ZzoUET6ZGDMWr1ZoAFPE4ZWa1h",
-      "balance": 54468,
+      "balance": 94154,
       "membership_expire_on": 1709831822,
       "next_cert_issuable_on": 1689229201,
       "certs_received": {
@@ -81978,9 +83608,9 @@
     "Aquaneo": {
       "index": 13443,
       "owner_key": "8NFhXaY7eKrpJzCe7UTxaygMRP4ZGLGAXMtyBXZzFj8p",
-      "balance": 7308,
+      "balance": 47094,
       "membership_expire_on": 1720533819,
-      "next_cert_issuable_on": 1693554806,
+      "next_cert_issuable_on": 1695355331,
       "certs_received": {
         "StefIndigo": 1752993452,
         "Polou": 1752123162,
@@ -82000,7 +83630,7 @@
     "Katimini": {
       "index": 12542,
       "owner_key": "8NUTKbov2fiVZjooAaJYqsGcaWmGxQxWDsne7zsDiU6o",
-      "balance": 149392,
+      "balance": 189078,
       "membership_expire_on": 1714265930,
       "next_cert_issuable_on": 1687323171,
       "certs_received": {
@@ -82014,8 +83644,8 @@
     "Alain1134": {
       "index": 6333,
       "owner_key": "8NWSySq56dYkoLAkJnRKTGJnxqMKEfXGnFgwHdhyK85h",
-      "balance": 743947,
-      "membership_expire_on": 1695535560,
+      "balance": 768541,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1664052981,
       "certs_received": {
         "absalon2": 1703384148,
@@ -82033,7 +83663,7 @@
     "Croccantina": {
       "index": 9727,
       "owner_key": "8NcydRxmsDSwBNRcDN18LfSKEHgkZWf3xvCMSUmHvsRP",
-      "balance": 354691,
+      "balance": 394377,
       "membership_expire_on": 1721935004,
       "next_cert_issuable_on": 1686305597,
       "certs_received": {
@@ -82064,11 +83694,15 @@
     "AnneMC": {
       "index": 8725,
       "owner_key": "8NfSppdZwQpBZ9w8ZdKpoQ7TPwj8xnsDwMX9YS6s8oqk",
-      "balance": 392861,
+      "balance": 446047,
       "membership_expire_on": 1711110155,
-      "next_cert_issuable_on": 1686707525,
+      "next_cert_issuable_on": 1696162191,
       "certs_received": {
+        "CeHunin": 1759204284,
+        "SophieDeprez": 1759512804,
         "Mamycrocodile": 1722399407,
+        "Domusol": 1759184767,
+        "ElaineDana": 1759206964,
         "Cel_cms": 1724026091,
         "MIA": 1719710061,
         "PatMal": 1719781348,
@@ -82086,7 +83720,7 @@
     "garfield": {
       "index": 8700,
       "owner_key": "8NjMXTZoxEEwLFYmr4KbAz6RxLwsurywnnc4J1wDMAoQ",
-      "balance": 387063,
+      "balance": 426749,
       "membership_expire_on": 1715421066,
       "next_cert_issuable_on": 1685338360,
       "certs_received": {
@@ -82122,7 +83756,7 @@
     "Elodie": {
       "index": 10372,
       "owner_key": "8Nr5jBTdcUipK3M13NZtDsVVq7rpnmZjCdtasyomGuUt",
-      "balance": 307518,
+      "balance": 347204,
       "membership_expire_on": 1699708628,
       "next_cert_issuable_on": 1676810672,
       "certs_received": {
@@ -82146,7 +83780,7 @@
     "MadoDefontaine": {
       "index": 1353,
       "owner_key": "8NtHNXVFQmahLLLHnL8FBnreMyC3gNe4BoWeRuLkyHcK",
-      "balance": 1557773,
+      "balance": 1597459,
       "membership_expire_on": 1718146979,
       "next_cert_issuable_on": 1665582115,
       "certs_received": {
@@ -82161,7 +83795,7 @@
     "JeanDavidHovasse": {
       "index": 9460,
       "owner_key": "8P1rtGS93Uu8yTwBNa1LPpZLc776ZkdUssTuyzN16zzt",
-      "balance": 389442,
+      "balance": 429128,
       "membership_expire_on": 1719671805,
       "next_cert_issuable_on": 1692584988,
       "certs_received": {
@@ -82217,7 +83851,7 @@
     "Claudine34": {
       "index": 12039,
       "owner_key": "8PFD6mBqut9PxkjmRk111oXMGjf7aBiuvcMTxWK92Vf1",
-      "balance": 177261,
+      "balance": 216947,
       "membership_expire_on": 1710381734,
       "next_cert_issuable_on": 1682601360,
       "certs_received": {
@@ -82236,8 +83870,8 @@
     "Dinahlonge71": {
       "index": 9613,
       "owner_key": "8PGBa9Ymok7Y6ERgZrwuVC2E7Ge7HcHG4CjsywimNeKH",
-      "balance": 322408,
-      "membership_expire_on": 1695257541,
+      "balance": 343768,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681255426,
       "certs_received": {
         "SOPHRO": 1726849634,
@@ -82251,7 +83885,7 @@
     "numahell": {
       "index": 1169,
       "owner_key": "8PbMcVzWiic1QgHcSUzaCjgT2jWPZxBYD4jevLPWXTDz",
-      "balance": 1539464,
+      "balance": 1579150,
       "membership_expire_on": 1712192045,
       "next_cert_issuable_on": 1680706445,
       "certs_received": {
@@ -82269,7 +83903,7 @@
     "titi150469": {
       "index": 9080,
       "owner_key": "8PgiA9WdCQwGj5jAycV4eYoBHavAf6pBs5hTUSQUSdck",
-      "balance": 402274,
+      "balance": 441960,
       "membership_expire_on": 1723067929,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -82285,7 +83919,7 @@
     "Phil1853": {
       "index": 12920,
       "owner_key": "8Pi1vYH2TMeTj44MzWXmnUAgy12bKtoFXxEfP3CMjPE2",
-      "balance": 79032,
+      "balance": 118718,
       "membership_expire_on": 1718554877,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -82313,7 +83947,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "LaureFemmeVanne": 1696233513,
         "KarimCorrandDubreil": 1730662717,
         "AnneAmbles": 1732696561,
         "JeremyBemon": 1732700049,
@@ -82324,9 +83957,9 @@
     "Jjackie": {
       "index": 12319,
       "owner_key": "8Q1n98D7kEQJNYihNwNRsBA2oioBYFV4EZjg5bineUh",
-      "balance": 178856,
+      "balance": 208542,
       "membership_expire_on": 1712753538,
-      "next_cert_issuable_on": 1690599081,
+      "next_cert_issuable_on": 1695377391,
       "certs_received": {
         "Claudirland": 1744397540,
         "Yannick51200": 1744361813,
@@ -82340,7 +83973,7 @@
     "Cabane": {
       "index": 11500,
       "owner_key": "8Q2PpKxF8ZDgWtQKuzeiC88jwJ8KcUQiv2XBJpdX41rT",
-      "balance": 227798,
+      "balance": 267484,
       "membership_expire_on": 1707183080,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -82356,7 +83989,7 @@
     "martine12": {
       "index": 5004,
       "owner_key": "8Q32kPFF9f9kQXjLXacogfPDx1fuoLsQhG6MZP3QortN",
-      "balance": 568339,
+      "balance": 608025,
       "membership_expire_on": 1714241721,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -82370,10 +84003,25 @@
         "JimVry": 1747091309
       }
     },
+    "LauraAra": {
+      "index": 13541,
+      "owner_key": "8Q33gvbZcUBUHQWJSemQn33dyM7YnNnXNuSUAjgtCxZk",
+      "balance": 45685,
+      "membership_expire_on": 1724902581,
+      "next_cert_issuable_on": 1696231660,
+      "certs_received": {
+        "RuthGuerrero": 1757406289,
+        "Polaris": 1757154376,
+        "Ade": 1757502724,
+        "MarioM": 1757405886,
+        "MonicaMu": 1757137305,
+        "Caropin": 1757060186
+      }
+    },
     "Thorvald": {
       "index": 8913,
       "owner_key": "8QAXnJpa2Xur7VoVtWTZh5KBcXYVifFU6yXhHYh47VWJ",
-      "balance": 391225,
+      "balance": 430911,
       "membership_expire_on": 1716241216,
       "next_cert_issuable_on": 1688459061,
       "certs_received": {
@@ -82390,7 +84038,7 @@
     "Christelle1901": {
       "index": 12696,
       "owner_key": "8QAbmzYv7SKXcrzkf5FMxsghiHArnR41xRQZ2iEh8p13",
-      "balance": 179272,
+      "balance": 208958,
       "membership_expire_on": 1714765420,
       "next_cert_issuable_on": 1691398192,
       "certs_received": {
@@ -82406,7 +84054,7 @@
     "Gillesara": {
       "index": 11455,
       "owner_key": "8QQumLktu2G4vrkwj33oj8azxrdW9UrQr8Tz1XQtWhRY",
-      "balance": 222798,
+      "balance": 262484,
       "membership_expire_on": 1706913518,
       "next_cert_issuable_on": 1676429378,
       "certs_received": {
@@ -82435,7 +84083,7 @@
     "NAMA-STE": {
       "index": 6606,
       "owner_key": "8Qbm7qbW7KvMdjupj92VpGF3pMpELMxfyHGERiYdkf2c",
-      "balance": 567745,
+      "balance": 607431,
       "membership_expire_on": 1701380860,
       "next_cert_issuable_on": 1693541412,
       "certs_received": {
@@ -82472,7 +84120,7 @@
     "Joss-59": {
       "index": 13449,
       "owner_key": "8QkzqSP4uVnwBgbnBxnwcDzBX4qyJT2qq3bbHgiNZcNk",
-      "balance": 15340,
+      "balance": 40026,
       "membership_expire_on": 1724178309,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -82486,7 +84134,7 @@
     "VeniZezette": {
       "index": 11650,
       "owner_key": "8Qmv8tyVTDWdNYx5PhDaT7rTEAAibzh4TgsGWWngi1hC",
-      "balance": 153972,
+      "balance": 193658,
       "membership_expire_on": 1706461298,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -82501,12 +84149,12 @@
     "Monique2605": {
       "index": 5667,
       "owner_key": "8QqxkUY39XomxqFtNgniJwfmLtWbsTwfKQuqA35FsY5j",
-      "balance": 677137,
-      "membership_expire_on": 1696647702,
+      "balance": 27938,
+      "membership_expire_on": 1726017408,
       "next_cert_issuable_on": 1679228923,
       "certs_received": {
         "GuyPeq11": 1738007658,
-        "GENEV": 1694972958,
+        "DanJoue": 1757575699,
         "mardi11": 1738094508,
         "valoche": 1750390490,
         "Cazouline": 1753578032
@@ -82515,9 +84163,9 @@
     "Malaga": {
       "index": 12224,
       "owner_key": "8QszUBrVDcsoMTeWwqGvnR3Cx5qLEBa7tLSSvPWJogf6",
-      "balance": 161032,
+      "balance": 167718,
       "membership_expire_on": 1711625693,
-      "next_cert_issuable_on": 1690871187,
+      "next_cert_issuable_on": 1696742322,
       "certs_received": {
         "Math007": 1743742475,
         "Samuel77": 1743741407,
@@ -82532,7 +84180,7 @@
     "Nieta": {
       "index": 11778,
       "owner_key": "8QvBKJ6kqLFxv1f1nSWmGiyKtGhCptaF4tesJxtoDLjr",
-      "balance": 367841,
+      "balance": 607527,
       "membership_expire_on": 1708896857,
       "next_cert_issuable_on": 1681052405,
       "certs_received": {
@@ -82564,23 +84212,25 @@
     "Lise": {
       "index": 1023,
       "owner_key": "8RC48pj7v1ExnXbcvTbbXE5MzQeHSioRTSesScQzSYFU",
-      "balance": 1122220,
-      "membership_expire_on": 1708693966,
+      "balance": 1130804,
+      "membership_expire_on": 1727910405,
       "next_cert_issuable_on": 1687877150,
       "certs_received": {
         "Maryline": 1733905953,
-        "SabrinaS": 1693865302,
+        "Essitam": 1757662064,
+        "MrViguier": 1757662441,
         "Mariemayaluna": 1727476161,
         "SilvereLevy": 1742255772,
-        "Verlaine": 1742081283
+        "Verlaine": 1742081283,
+        "CVM": 1757058440
       }
     },
     "Naho": {
       "index": 8385,
       "owner_key": "8RMrqhxu1jovMjV6UPJm7t1Sa9SNzgbQQFZPcJUxGd9C",
-      "balance": 154385,
+      "balance": 148381,
       "membership_expire_on": 1711967767,
-      "next_cert_issuable_on": 1691476738,
+      "next_cert_issuable_on": 1696563509,
       "certs_received": {
         "Man": 1750810987,
         "NBes2022": 1751939247,
@@ -82589,11 +84239,13 @@
         "MartinsE": 1728613819,
         "AmeSurTerre": 1717312740,
         "Tchoupi": 1745365887,
+        "FRANLA": 1759545257,
         "Annae": 1754485176,
         "evitam": 1752029088,
         "BenMaro": 1745900121,
         "NirmalaMary": 1717273667,
         "Denis": 1752856995,
+        "Filou": 1759553015,
         "Candy2000": 1753791510,
         "Cleo59": 1752201831,
         "ROVER5537": 1725724666,
@@ -82605,6 +84257,7 @@
         "PascalGuillemain": 1730745579,
         "Kalia": 1741251139,
         "annefreda": 1727899160,
+        "Mmemonica": 1758172164,
         "RomG": 1744044979,
         "NoucheMairy": 1717662487,
         "CedricSQ": 1739615394
@@ -82613,7 +84266,7 @@
     "AntoinePonton": {
       "index": 8973,
       "owner_key": "8RNF9zrA7r67rF5nKNDbP2cbcFrEcm4n9HeYzpJB292i",
-      "balance": 542008,
+      "balance": 581694,
       "membership_expire_on": 1717203584,
       "next_cert_issuable_on": 1664244922,
       "certs_received": {
@@ -82652,8 +84305,8 @@
     "ZestDher": {
       "index": 10449,
       "owner_key": "8RcgAmFkw6rKHnYPvawK5ixvRT6b9tgXEohVKXhvkh2S",
-      "balance": 120318,
-      "membership_expire_on": 1698086573,
+      "balance": 74040,
+      "membership_expire_on": 1727102085,
       "next_cert_issuable_on": 1675181582,
       "certs_received": {
         "lelfettedesboa": 1732082923,
@@ -82667,7 +84320,7 @@
     "ManuBR15": {
       "index": 9800,
       "owner_key": "8Rd1B8dvWb4Mjaamd6a74PNSny7fsTCXbhTbocAU1qvH",
-      "balance": 320720,
+      "balance": 420406,
       "membership_expire_on": 1722788896,
       "next_cert_issuable_on": 1679641870,
       "certs_received": {
@@ -82689,7 +84342,7 @@
     "SylvieDelage": {
       "index": 7334,
       "owner_key": "8Rdznry8SRqx9UDGufAhjMQ2HS2Q4eYZ2bqYPv3P5WJs",
-      "balance": 699595,
+      "balance": 739281,
       "membership_expire_on": 1709234798,
       "next_cert_issuable_on": 1679363452,
       "certs_received": {
@@ -82715,7 +84368,7 @@
     "Loic": {
       "index": 860,
       "owner_key": "8RkLLzJ6k7PrHNtGjim7P5FbxKpmK9F8HdmZwgHVfy35",
-      "balance": 1908970,
+      "balance": 1948656,
       "membership_expire_on": 1711124766,
       "next_cert_issuable_on": 1681020781,
       "certs_received": {
@@ -82731,8 +84384,8 @@
     "Perlerose": {
       "index": 9580,
       "owner_key": "8RmiSi9a1rkjvkpaxpVDFUo1mAfNtKY1RVWNZYM9TmqP",
-      "balance": 393881,
-      "membership_expire_on": 1694471140,
+      "balance": 405629,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1671708942,
       "certs_received": {
         "NathalieCatelin": 1726720463,
@@ -82748,7 +84401,7 @@
     "GKadoudal": {
       "index": 10919,
       "owner_key": "8Rq5KQTm9xWvzd7T75ADqgALShKqbEPVBuu9o2mzo4oq",
-      "balance": 271512,
+      "balance": 311198,
       "membership_expire_on": 1702569340,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -82797,7 +84450,7 @@
     "Joe71": {
       "index": 8103,
       "owner_key": "8RtYVPJp9o9qVGsEJjSTecSKpi96vZRxbwPaCEDhZk5T",
-      "balance": 304361,
+      "balance": 344047,
       "membership_expire_on": 1714757991,
       "next_cert_issuable_on": 1677417059,
       "certs_received": {
@@ -82822,7 +84475,7 @@
     "Philippe38": {
       "index": 9576,
       "owner_key": "8RvNZ5Ab9jEAXUM2eH1PDx4aL4u3AKDKdfJ9iyqH1Qjh",
-      "balance": 334881,
+      "balance": 374567,
       "membership_expire_on": 1721182138,
       "next_cert_issuable_on": 1684472284,
       "certs_received": {
@@ -82839,8 +84492,8 @@
     "Noradesbois": {
       "index": 9740,
       "owner_key": "8S4xmZQwH8UWAYBhTA1DgDPeCWqaLFZSZSehseVfiPe3",
-      "balance": 355173,
-      "membership_expire_on": 1694900393,
+      "balance": 372261,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "ManUtopiK": 1726457993,
@@ -82853,10 +84506,11 @@
     "JeanClaudePaulRobert": {
       "index": 1963,
       "owner_key": "8S9LHBNrvBLE8tC8XbJRrqe4exqkbAwPuDQZTgxSaKxf",
-      "balance": 1545747,
+      "balance": 1585433,
       "membership_expire_on": 1706931282,
       "next_cert_issuable_on": 1676163700,
       "certs_received": {
+        "LilianBonnardon": 1759122687,
         "chris07": 1738839463,
         "arfocine": 1738401818,
         "Laurentld": 1738402225,
@@ -82870,7 +84524,7 @@
     "Marylene": {
       "index": 12981,
       "owner_key": "8SAxYoSLXEt4sR6edCCR7oGUaWGEq84Bgtjfn3nNQKQg",
-      "balance": 39856,
+      "balance": 79542,
       "membership_expire_on": 1718497963,
       "next_cert_issuable_on": 1688777728,
       "certs_received": {
@@ -82884,7 +84538,7 @@
     "Milo": {
       "index": 6707,
       "owner_key": "8SFDistNV13boZBHEVsNi19fj96CtyprLrtYP8821q57",
-      "balance": 497977,
+      "balance": 537663,
       "membership_expire_on": 1704765658,
       "next_cert_issuable_on": 1673948086,
       "certs_received": {
@@ -82902,8 +84556,8 @@
     "MerlinMahy": {
       "index": 3728,
       "owner_key": "8SFRWNwQ6sWvf5bjyPKkr91Z6fHHmKRNccUAar1N7zYp",
-      "balance": 993859,
-      "membership_expire_on": 1696626450,
+      "balance": 1033545,
+      "membership_expire_on": 1728218173,
       "next_cert_issuable_on": 1681287253,
       "certs_received": {
         "Midorela": 1752014858,
@@ -82919,9 +84573,9 @@
     "yannlefranco": {
       "index": 59,
       "owner_key": "8SJZia3RJ36hp3wXy8AJXJj8z7yeLHCVaTtv2xSi2MBj",
-      "balance": 602842,
+      "balance": 448372,
       "membership_expire_on": 1710131257,
-      "next_cert_issuable_on": 1692374801,
+      "next_cert_issuable_on": 1696000436,
       "certs_received": {
         "AgatheO": 1713299969,
         "LazareT": 1738808883,
@@ -82985,9 +84639,9 @@
     "MoniQ": {
       "index": 1567,
       "owner_key": "8SbnQYBLoSYdAXtJnVbbjLygPWR3vbFJYCY4PiEdxenY",
-      "balance": 635849,
+      "balance": 660535,
       "membership_expire_on": 1707341766,
-      "next_cert_issuable_on": 1686506064,
+      "next_cert_issuable_on": 1696418222,
       "certs_received": {
         "Mayhypocampe": 1741423767,
         "Andrelie": 1733110037,
@@ -83000,7 +84654,6 @@
         "flo": 1731219090,
         "Energie": 1738956930,
         "Jarrive": 1734639710,
-        "rosedelumiere": 1693771650,
         "Poutchy": 1716510316,
         "MarcArdeneus": 1733269035,
         "Spartacus": 1752223079,
@@ -83010,9 +84663,9 @@
     "Denismaurel": {
       "index": 3095,
       "owner_key": "8SixHYfcrNsU4zKaauHk8D8MTTM7hYoWxT5BjHEXgyKg",
-      "balance": 1248849,
-      "membership_expire_on": 1698278390,
-      "next_cert_issuable_on": 1666792790,
+      "balance": 1288535,
+      "membership_expire_on": 1726757425,
+      "next_cert_issuable_on": 1695271825,
       "certs_received": {
         "Sev": 1730697220,
         "Manu_Auger": 1701568168,
@@ -83023,10 +84676,24 @@
         "Sandy": 1732299278
       }
     },
+    "lboverie": {
+      "index": 13503,
+      "owner_key": "8Sn3dfQku1BRxVhPaBDvjsc2rbrQypjxbj3dsbV1SYjN",
+      "balance": 34246,
+      "membership_expire_on": 1725392047,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "reG1nald": 1756949647,
+        "CitizenP": 1756969072,
+        "jon": 1756999881,
+        "GeneBe": 1756967892,
+        "AnemoneSyl": 1757039561
+      }
+    },
     "Jeromechevre": {
       "index": 11775,
       "owner_key": "8SwCuQ3oyv7KpxfSgEDoGLSvVFXXSPY2kZHKaYCAb1fJ",
-      "balance": 175841,
+      "balance": 215527,
       "membership_expire_on": 1706023610,
       "next_cert_issuable_on": 1681778046,
       "certs_received": {
@@ -83041,7 +84708,7 @@
     "PhilippeMarin": {
       "index": 6592,
       "owner_key": "8SzvgvUWGi62okExUnkD1LTYEJJUuLgAnBqN1rxHQCVE",
-      "balance": 521832,
+      "balance": 536050,
       "membership_expire_on": 1702385675,
       "next_cert_issuable_on": 1688690175,
       "certs_received": {
@@ -83070,7 +84737,6 @@
       "certs_received": {
         "DonQuiche": 1711674740,
         "domdenantes": 1702078173,
-        "Droudrou": 1695185789,
         "IreneRollMet": 1705710852,
         "Yvestommy": 1708319147
       }
@@ -83078,7 +84744,7 @@
     "Emi94": {
       "index": 12647,
       "owner_key": "8TEBf4pQX2okXA7WKrmFPdaeZN6hczNn4Vnb6kK6xUT4",
-      "balance": 117412,
+      "balance": 157098,
       "membership_expire_on": 1715301183,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -83118,7 +84784,7 @@
     "Mariaseelcambio": {
       "index": 10247,
       "owner_key": "8TfRNqtu5k1sfRfvC1LYxzjd3andGybTKkp318yDdY8n",
-      "balance": 92131,
+      "balance": 73817,
       "membership_expire_on": 1699390751,
       "next_cert_issuable_on": 1689644561,
       "certs_received": {
@@ -83146,7 +84812,7 @@
     "GOBERTpascal": {
       "index": 12875,
       "owner_key": "8TodQB7iJAucVTqtA2povRDtKHKPji2C4rpvEqFoRske",
-      "balance": 89360,
+      "balance": 129046,
       "membership_expire_on": 1718034339,
       "next_cert_issuable_on": 1687150589,
       "certs_received": {
@@ -83243,12 +84909,11 @@
     "izotoad38": {
       "index": 5643,
       "owner_key": "8UDgkfdXasYjookjLhGZDXTnLchwSH9k69GEjDFxAPWV",
-      "balance": 690377,
+      "balance": 897563,
       "membership_expire_on": 1716890380,
-      "next_cert_issuable_on": 1686573677,
+      "next_cert_issuable_on": 1696216348,
       "certs_received": {
         "YannF": 1748668552,
-        "looie": 1694374453,
         "JohanMAS": 1740957701,
         "Bioguigui": 1737908969,
         "Eveilducoeur": 1748674325,
@@ -83256,7 +84921,6 @@
         "Carole26": 1709444077,
         "JusteAlex": 1722469473,
         "EricSIMON": 1703297466,
-        "sanddebeloest38": 1694056116,
         "Celine388": 1740432661,
         "Mamietarteopommes": 1723426734,
         "Tell": 1746086965,
@@ -83265,7 +84929,7 @@
         "izofrog38": 1703392451,
         "FannyF": 1748753045,
         "TataCC": 1728144566,
-        "Bap": 1694329752,
+        "Bap": 1759103222,
         "phil3455": 1709324756,
         "TristTDW": 1732685709,
         "thierry38": 1698287832,
@@ -83324,7 +84988,7 @@
     "Leprofdebatterie": {
       "index": 7072,
       "owner_key": "8UjxM3aua93pp463EabUw6kw6BndmHVt78eazN2hxtgz",
-      "balance": 562859,
+      "balance": 602545,
       "membership_expire_on": 1706154025,
       "next_cert_issuable_on": 1674668425,
       "certs_received": {
@@ -83339,7 +85003,7 @@
     "IsabelleMD": {
       "index": 7453,
       "owner_key": "8UkmbgPG2x4Zgpd9B5Bz5d7hZbpuTomhWkoKqNLmLSii",
-      "balance": 403806,
+      "balance": 443492,
       "membership_expire_on": 1709747052,
       "next_cert_issuable_on": 1684336672,
       "certs_received": {
@@ -83357,7 +85021,7 @@
     "Johana73": {
       "index": 8089,
       "owner_key": "8UpujoLAXqV6voVCUBYh8M5n7urfKcTy9MuRsyJD9heu",
-      "balance": 414867,
+      "balance": 454553,
       "membership_expire_on": 1722181800,
       "next_cert_issuable_on": 1690966252,
       "certs_received": {
@@ -83373,7 +85037,7 @@
     "MarieL": {
       "index": 8754,
       "owner_key": "8Uzve9bXUV5pyB1U5zWX4Wk2XPc4yEi1Gd1zWj71hoHj",
-      "balance": 394159,
+      "balance": 433845,
       "membership_expire_on": 1720353926,
       "next_cert_issuable_on": 1674960631,
       "certs_received": {
@@ -83393,7 +85057,7 @@
     "Christine13": {
       "index": 6068,
       "owner_key": "8V9WJZVzN2oXRasZReRzdJA2qbv8rNGXESR8vTAP9cLG",
-      "balance": 295911,
+      "balance": 335597,
       "membership_expire_on": 1719590452,
       "next_cert_issuable_on": 1691211792,
       "certs_received": {
@@ -83427,11 +85091,12 @@
     "PerePinyolTortosa": {
       "index": 9765,
       "owner_key": "8VDcDjdzEdQZA1uGnSrTedQCtMiL9gcabJnCWdJFjjpm",
-      "balance": 189927,
+      "balance": 90573,
       "membership_expire_on": 1722383488,
       "next_cert_issuable_on": 1690906385,
       "certs_received": {
         "Manu_El": 1745954539,
+        "valeria": 1756652115,
         "Jeff7791": 1727290938,
         "Kouleurs": 1738112501,
         "MaraVilla": 1745956664,
@@ -83456,8 +85121,8 @@
     "SandyAndree": {
       "index": 6206,
       "owner_key": "8VEC9H6fqZwg4FuhcKxBvGhaniYf6WQ3F7XXYjLPkT5V",
-      "balance": 560993,
-      "membership_expire_on": 1694169587,
+      "balance": 568569,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1669360737,
       "certs_received": {
         "Wilouchou": 1753566673,
@@ -83492,7 +85157,7 @@
     "emiliebtn": {
       "index": 10620,
       "owner_key": "8VVRZ93jW6xEYie3sWTxvfHDLsajgMAY5M6GGwU4BRhh",
-      "balance": 228574,
+      "balance": 268260,
       "membership_expire_on": 1697581901,
       "next_cert_issuable_on": 1672726354,
       "certs_received": {
@@ -83506,7 +85171,7 @@
     "Francou": {
       "index": 8206,
       "owner_key": "8Vb7ZrWndE7ZcQu1fCZU8JdZa6Zs25yxYAnURopFimyM",
-      "balance": 552007,
+      "balance": 591693,
       "membership_expire_on": 1720293775,
       "next_cert_issuable_on": 1657439712,
       "certs_received": {
@@ -83537,9 +85202,9 @@
     "joserodcpta": {
       "index": 11609,
       "owner_key": "8W4axb8QFX9mdwjc92uvrsyXJAhcFagkUNC9KXH7wEDw",
-      "balance": 100208,
+      "balance": 62894,
       "membership_expire_on": 1707594112,
-      "next_cert_issuable_on": 1685117898,
+      "next_cert_issuable_on": 1696776373,
       "certs_received": {
         "ClaKi66": 1739207983,
         "Quantumsinergy": 1739350875,
@@ -83554,7 +85219,7 @@
     "joslin_mllt": {
       "index": 10632,
       "owner_key": "8W4u5H1x2zBHF2raoNLpSn9AD8hm9GKYaYHQjJAiuqJ6",
-      "balance": 299615,
+      "balance": 339301,
       "membership_expire_on": 1699315765,
       "next_cert_issuable_on": 1677927397,
       "certs_received": {
@@ -83571,8 +85236,8 @@
     "FrancoisFairon": {
       "index": 9388,
       "owner_key": "8W5EZj1PYMF5gpHfHT8YzcXXsrRNA6dPBCHsLsy4TWLz",
-      "balance": 378799,
-      "membership_expire_on": 1693585707,
+      "balance": 379867,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1676778158,
       "certs_received": {
         "Etipol61": 1725209053,
@@ -83585,8 +85250,8 @@
     "KarineForest": {
       "index": 993,
       "owner_key": "8WBmmN3wPn8GC513PCigtFQ5xA55D3fyNNKGD9wsYVkR",
-      "balance": 1484960,
-      "membership_expire_on": 1700507166,
+      "balance": 1448046,
+      "membership_expire_on": 1728038370,
       "next_cert_issuable_on": 1671443467,
       "certs_received": {
         "IsaForest": 1732493150,
@@ -83603,7 +85268,7 @@
     "EmmanuelZetace": {
       "index": 7359,
       "owner_key": "8WCDPkMySJEURBMYjH3dYA41F5sa1NCyAV3ZA4m33kyJ",
-      "balance": 961832,
+      "balance": 935218,
       "membership_expire_on": 1705000738,
       "next_cert_issuable_on": 1689916673,
       "certs_received": {
@@ -83612,6 +85277,7 @@
         "mati": 1712732050,
         "salmaluna": 1728889824,
         "carmela": 1735574100,
+        "valeria": 1757697974,
         "Semilla": 1715269341,
         "MaraVilla": 1722409422,
         "JuanCapitan": 1710122115,
@@ -83621,6 +85287,7 @@
         "Susilla": 1716268525,
         "Albertocc": 1710537089,
         "AmoryGratitud": 1710478947,
+        "Nieves": 1759451205,
         "Ciclica": 1718411332,
         "Wellno1": 1710301336,
         "MAIANA": 1731655874,
@@ -83642,7 +85309,7 @@
     "SilviaM": {
       "index": 9260,
       "owner_key": "8WJj7enNDp6oZoaxcJiv215QJM56cL2U7dDvzHryYPya",
-      "balance": 354508,
+      "balance": 354008,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1683081522,
       "certs_received": {
@@ -83662,7 +85329,7 @@
     "alikea": {
       "index": 2329,
       "owner_key": "8WSAZrBdRaWph9gdigNwUvRQbSkCujY7yYqZMkFRm3Bo",
-      "balance": 552251,
+      "balance": 591937,
       "membership_expire_on": 1699546734,
       "next_cert_issuable_on": 1681359572,
       "certs_received": {
@@ -83682,7 +85349,7 @@
     "Joailes38": {
       "index": 4563,
       "owner_key": "8WkgvL74a8or3WrDGNVsbeyUfUPe61KPNq96gt1ZEwLE",
-      "balance": 713726,
+      "balance": 753412,
       "membership_expire_on": 1696811080,
       "next_cert_issuable_on": 1662474432,
       "certs_received": {
@@ -83690,7 +85357,6 @@
         "agustinton": 1725324824,
         "THORGAL1968": 1731551190,
         "JusteAlex": 1722976455,
-        "kosnik": 1693849417,
         "zabou73": 1706673366,
         "EmiRobin": 1711431932,
         "bienetreettao": 1720903185,
@@ -83700,7 +85366,6 @@
         "Zenobie": 1710383142,
         "Unika": 1716567483,
         "Craps73": 1707882841,
-        "Piraculteur": 1693784686,
         "Anthony": 1736801788,
         "Cigalou": 1710138488
       }
@@ -83708,7 +85373,7 @@
     "Klo": {
       "index": 13358,
       "owner_key": "8WmBxEDyvJAPExzdnuXhSgSPmrUp5kF7B5md2L422egW",
-      "balance": 21392,
+      "balance": 61078,
       "membership_expire_on": 1719329591,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -83725,22 +85390,20 @@
     "Fabi26": {
       "index": 5726,
       "owner_key": "8WvfBk7jJnXyhNRktqtnDXozgu7eZSSaiX5CiN5TBqbG",
-      "balance": 845687,
+      "balance": 791373,
       "membership_expire_on": 1714736177,
       "next_cert_issuable_on": 1689330658,
       "certs_received": {
+        "olione": 1757457725,
         "Amiel": 1732600606,
         "PierreTransformant": 1716915685,
         "Solesan": 1734846970,
         "lydiemdb": 1745803917,
         "veronicmartignac": 1738364204,
         "Etresouverain": 1743267396,
-        "Andre208": 1693939860,
-        "PatHamster": 1694236428,
+        "Andre208": 1758384613,
         "fanfan": 1721788131,
-        "HAMSTERDAME": 1694235206,
         "RoryKiwi": 1742057945,
-        "Calakendi": 1693936324,
         "Insa": 1705559873,
         "Pilar": 1698197257,
         "MarieG46": 1738173202,
@@ -83757,13 +85420,15 @@
     "Olivier3574": {
       "index": 11975,
       "owner_key": "8Wz7Fgqe5x7g4fnrarbFF6f8Qig1e1WvhieBWgEcdnZB",
-      "balance": 206274,
+      "balance": 245960,
       "membership_expire_on": 1710201556,
-      "next_cert_issuable_on": 1693199474,
+      "next_cert_issuable_on": 1696164138,
       "certs_received": {
         "Gossein": 1741771753,
         "Giviero": 1741767166,
         "CaroKro": 1741820245,
+        "CatPMt": 1757362749,
+        "Pashi": 1759207338,
         "CarolAmethyste": 1741821259,
         "lamettrie": 1756002113,
         "JambaudValerie": 1753988898,
@@ -83774,7 +85439,7 @@
     "JordiT": {
       "index": 11306,
       "owner_key": "8WzMqPApGu8t7QpgZEZwJ5HXWyucvrSpcNxKnyThGzM4",
-      "balance": 236565,
+      "balance": 276251,
       "membership_expire_on": 1704494116,
       "next_cert_issuable_on": 1675266486,
       "certs_received": {
@@ -83802,14 +85467,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1646832556,
       "certs_received": {
-        "Martine51": 1701331302,
-        "Sunrise": 1693980055
+        "Martine51": 1701331302
       }
     },
     "cocoloco": {
       "index": 4754,
       "owner_key": "8X9xrKFR1hEXjbR4yLJhLGa5WsQZidE7zHDZzZz19uMy",
-      "balance": 927989,
+      "balance": 967675,
       "membership_expire_on": 1702152128,
       "next_cert_issuable_on": 1682073466,
       "certs_received": {
@@ -83836,7 +85500,7 @@
     "Lapetite": {
       "index": 7940,
       "owner_key": "8XEuciTnziUE5XPgX5Vekf9NuCaDSqVsAmLpnNbFuqWo",
-      "balance": 512389,
+      "balance": 552075,
       "membership_expire_on": 1710524396,
       "next_cert_issuable_on": 1679038796,
       "certs_received": {
@@ -83848,12 +85512,27 @@
         "Elleone": 1731311933
       }
     },
+    "River369": {
+      "index": 13701,
+      "owner_key": "8XFsm5tNFLXkq6zKRCUrztvtECvKCxds97xAFBjNeZK7",
+      "balance": 16846,
+      "membership_expire_on": 1724158290,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "ClaudeFresonnet": 1755824238,
+        "Henk-Quillan": 1758568628,
+        "JeandelAude": 1757195907,
+        "EvaSorel": 1757280168,
+        "RitaWilson": 1757196215,
+        "KarineKala": 1755854656
+      }
+    },
     "Rysmadu24": {
       "index": 8453,
       "owner_key": "8XYZeqQPUbNHmSCEh1GyF813CMvXc9D9uK9ZpeLwjyky",
-      "balance": 434454,
+      "balance": 474140,
       "membership_expire_on": 1715741130,
-      "next_cert_issuable_on": 1655341201,
+      "next_cert_issuable_on": 1696227621,
       "certs_received": {
         "Nathawie": 1718338421,
         "Helenep": 1715952342,
@@ -83871,14 +85550,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1638858610,
       "certs_received": {
-        "AudreyHesseling": 1694066279,
         "AnneLadragonitta": 1698255610
       }
     },
     "OlgaPont": {
       "index": 9466,
       "owner_key": "8Xgsw7ABeKuyv59FfHM5AX3eDmmKBCfysu9X8DDdfjbp",
-      "balance": 192915,
+      "balance": 125501,
       "membership_expire_on": 1724666914,
       "next_cert_issuable_on": 1693275369,
       "certs_received": {
@@ -83918,7 +85596,7 @@
     "eduardofreeman": {
       "index": 7098,
       "owner_key": "8Xs37NyYc1deCQmQCKSt7ZU5GzJmpMSTScnFm6y2gEdm",
-      "balance": 516371,
+      "balance": 556057,
       "membership_expire_on": 1704460288,
       "next_cert_issuable_on": 1663673831,
       "certs_received": {
@@ -83937,7 +85615,7 @@
     "ValdeChaumes": {
       "index": 7220,
       "owner_key": "8XuURd6RbxVVoaX9ikJtJuGkfsTBC5dun7xgvANcMDRZ",
-      "balance": 540001,
+      "balance": 579687,
       "membership_expire_on": 1709655237,
       "next_cert_issuable_on": 1663379570,
       "certs_received": {
@@ -83952,9 +85630,9 @@
     "SoniaJimenezCook": {
       "index": 7898,
       "owner_key": "8XvYZqKWCVGobeWnpUSNCkXL2SXHxZcekR9FDTq4Vh6r",
-      "balance": 250077,
+      "balance": 65483,
       "membership_expire_on": 1707699963,
-      "next_cert_issuable_on": 1684630245,
+      "next_cert_issuable_on": 1695114523,
       "certs_received": {
         "Queta": 1742598429,
         "SaraRo": 1725438797,
@@ -83962,12 +85640,16 @@
         "hibiscus11": 1740027809,
         "arbocenc": 1712898684,
         "marisol": 1714111359,
+        "fabiolino": 1757555967,
         "Cristol-Iquid": 1733866900,
         "ShivaG": 1721122281,
         "ELEOTIE": 1729992303,
         "SantiTrinquete": 1734252370,
+        "diletta": 1757802816,
         "HolaSoyAlma": 1727378378,
+        "CathounetteMu": 1758153721,
         "Sasha": 1719531079,
+        "Matteo": 1757489727,
         "Anne-Laure": 1747536883,
         "davidbp845": 1739326975,
         "kike": 1736400900,
@@ -83996,24 +85678,25 @@
     "Nagoa": {
       "index": 12651,
       "owner_key": "8YAV8UzYN7iA57SRqaxHuXsMUX4zoqFknZfY4wAtaSGH",
-      "balance": 113116,
+      "balance": 152802,
       "membership_expire_on": 1711499111,
-      "next_cert_issuable_on": 1687651923,
+      "next_cert_issuable_on": 1696389038,
       "certs_received": {
         "Perlanne": 1744827482,
         "Ninamaste": 1747256412,
         "Francou42": 1745003660,
         "Symahe5": 1744931293,
         "gervez": 1747636130,
+        "JEF33": 1759362005,
         "BenoitC54": 1744869694
       }
     },
     "SYBON": {
       "index": 8330,
       "owner_key": "8YDTqvY728XZFpjjD9HjewjYRidyuDfKEojT6u1oFTTZ",
-      "balance": 192352,
+      "balance": 232038,
       "membership_expire_on": 1712007252,
-      "next_cert_issuable_on": 1690636406,
+      "next_cert_issuable_on": 1695382489,
       "certs_received": {
         "Carabistouille": 1753679606,
         "PhilippeLafontaine": 1738718809,
@@ -84045,7 +85728,7 @@
     "Immae": {
       "index": 8191,
       "owner_key": "8YJ5aBV8NVnhawt8RTsENhxfb27PQd84NtgJK2sYuqDp",
-      "balance": 749064,
+      "balance": 864010,
       "membership_expire_on": 1713706551,
       "next_cert_issuable_on": 1657730594,
       "certs_received": {
@@ -84061,14 +85744,15 @@
     "Sonya": {
       "index": 11015,
       "owner_key": "8YP66jFgKU2ToHVu8ttFswWrneRVxkdg7FAzdeGqJ3TA",
-      "balance": 83506,
+      "balance": 123592,
       "membership_expire_on": 1703104025,
-      "next_cert_issuable_on": 1686019250,
+      "next_cert_issuable_on": 1696297844,
       "certs_received": {
         "CrisBB": 1734760591,
         "Naturkike": 1753461641,
         "Txotxe": 1744357253,
         "OsKarTel": 1745624296,
+        "IbonNakin": 1758817263,
         "MAIKA": 1734758428,
         "Leia": 1735091332,
         "edubotaoo": 1734822166,
@@ -84080,6 +85764,7 @@
         "emboscada": 1739986254,
         "OrganikSolution": 1748377866,
         "Goiztizar": 1734842160,
+        "josecristobalsaludholistica": 1758908298,
         "EduZapping": 1734758838,
         "BruBraveLez": 1734819960,
         "AndresXaudi": 1751220572,
@@ -84089,17 +85774,20 @@
     "virginiaoreoro": {
       "index": 12475,
       "owner_key": "8YSikNtn3CT2yGQ8v8tN8W2ri9KLSfgiEj8wfX8t9Com",
-      "balance": 35280,
+      "balance": 235466,
       "membership_expire_on": 1714236076,
-      "next_cert_issuable_on": 1690640224,
+      "next_cert_issuable_on": 1695964185,
       "certs_received": {
         "Aguas": 1754339688,
+        "Damaso": 1758673121,
         "Simplementemaria": 1745649982,
         "Josepeuta": 1745647669,
         "Beasegovia": 1745571829,
         "Madreselva": 1745777775,
+        "Mariaje": 1759258129,
         "Ahimsa73": 1746600012,
         "Keiro": 1745889245,
+        "MACANATURE": 1758094978,
         "mellamanhernan": 1745653209,
         "fania": 1746354324
       }
@@ -84112,6 +85800,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Cocole": {
+      "index": 13474,
+      "owner_key": "8YaC4aTNRgwstsPxRrxWMDy6m6Ksy4nT9xwVuyb8mdmx",
+      "balance": 48826,
+      "membership_expire_on": 1724618473,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "OlivK": 1756633438,
+        "ArthuK": 1756633438,
+        "Salome971": 1756622504,
+        "Mat971": 1756633438,
+        "Solight777": 1756633707
+      }
+    },
     "Olivoud": {
       "index": 8280,
       "owner_key": "8YaYESvwgqQy1nm2aNyQFcpKkuXvoGrLGLFoxAYkGKjn",
@@ -84129,8 +85831,8 @@
     "Ilka": {
       "index": 9935,
       "owner_key": "8YiyxuVEna5ezuQjpZ2JEubzsMk3sJLfLawEYxRqmD3M",
-      "balance": 131708,
-      "membership_expire_on": 1696897631,
+      "balance": 171394,
+      "membership_expire_on": 1725811110,
       "next_cert_issuable_on": 1682701273,
       "certs_received": {
         "ReservaOriental": 1728965194,
@@ -84148,8 +85850,8 @@
     "Tropaletta": {
       "index": 9766,
       "owner_key": "8YkdFrzxix5UYKZWDuujzpmNpsPDi1kwYWvSybwzWoxY",
-      "balance": 359055,
-      "membership_expire_on": 1695835999,
+      "balance": 387961,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1690252094,
       "certs_received": {
         "MartP18": 1727486724,
@@ -84193,7 +85895,7 @@
     "MariaAragones": {
       "index": 12921,
       "owner_key": "8ZJ95xQhamvro7mRnjSFGUrTyQsC3krFZbwMqeXUwQGX",
-      "balance": 162564,
+      "balance": 193250,
       "membership_expire_on": 1718217595,
       "next_cert_issuable_on": 1692100649,
       "certs_received": {
@@ -84207,7 +85909,7 @@
     "KitKat": {
       "index": 9843,
       "owner_key": "8ZUuM48djTPaYxX9vmGQQAwixA9bTgYvLv2jUcErgEe5",
-      "balance": 310260,
+      "balance": 349946,
       "membership_expire_on": 1721756613,
       "next_cert_issuable_on": 1690271013,
       "certs_received": {
@@ -84225,7 +85927,7 @@
     "raquelarest": {
       "index": 10174,
       "owner_key": "8ZYGsXQmawnPwkymrztF2yHyxHfZDB61chFCPro54bHE",
-      "balance": 180193,
+      "balance": 209199,
       "membership_expire_on": 1725044695,
       "next_cert_issuable_on": 1688631497,
       "certs_received": {
@@ -84241,8 +85943,8 @@
     "Co-la-Vie": {
       "index": 10806,
       "owner_key": "8Zai89GynxXTmAvzLCbyD3jyLgReKgxvK72D17VHjgtq",
-      "balance": 180880,
-      "membership_expire_on": 1700063868,
+      "balance": 220566,
+      "membership_expire_on": 1727714167,
       "next_cert_issuable_on": 1688572024,
       "certs_received": {
         "pacifikveronique": 1733854581,
@@ -84253,6 +85955,22 @@
         "Val83": 1733528732
       }
     },
+    "julianm": {
+      "index": 13475,
+      "owner_key": "8Ze5DTLoE2GY7UsLB2YvpMFGHrLRc1qDVuDTb2hQhgya",
+      "balance": 41586,
+      "membership_expire_on": 1724285489,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Mianne": 1755885546,
+        "jipihem": 1756411273,
+        "bettyfree": 1756411273,
+        "Merlinor": 1756418367,
+        "BeaC": 1756272780,
+        "Birby7188": 1755848951,
+        "Cobra1974": 1756337057
+      }
+    },
     "Tsulgya": {
       "index": 3413,
       "owner_key": "8ZoTj8Kgc1pjjoXXzmz1KA1wLzVXTwhZnGBKbVxDPXyb",
@@ -84267,10 +85985,25 @@
         "Niederhauser": 1698281224
       }
     },
+    "Fennec": {
+      "index": 13616,
+      "owner_key": "8ZsoqixkK71iJgNtAQfSScDjU33v4driLkyNVV3oCktw",
+      "balance": 28663,
+      "membership_expire_on": 1726682235,
+      "next_cert_issuable_on": 1696079003,
+      "certs_received": {
+        "ChristineRenier": 1758267070,
+        "Gillette": 1758326334,
+        "Quetzal": 1758391373,
+        "ChantAloha": 1759605535,
+        "Basilous15": 1758326569,
+        "chicaleylou": 1758402027
+      }
+    },
     "Lassoupalortie": {
       "index": 4829,
       "owner_key": "8ZwBzu5G5CwmnXhVg8fXxM5EBfNB41drDAG3tz4h6fWv",
-      "balance": 495610,
+      "balance": 535296,
       "membership_expire_on": 1706911315,
       "next_cert_issuable_on": 1675426012,
       "certs_received": {
@@ -84324,7 +86057,7 @@
     "Mag9": {
       "index": 10235,
       "owner_key": "8aHd8hAuQYvT75XPZNedqgVD1eocd7qp2JLm35m7SaFC",
-      "balance": 329990,
+      "balance": 349676,
       "membership_expire_on": 1724366650,
       "next_cert_issuable_on": 1687693827,
       "certs_received": {
@@ -84358,7 +86091,7 @@
     "Heimdall": {
       "index": 7374,
       "owner_key": "8aRGE8joPC8Zy7apUbjWeBFP7Gjzp14oBzhofJajLMYd",
-      "balance": 557946,
+      "balance": 597632,
       "membership_expire_on": 1708730977,
       "next_cert_issuable_on": 1686585659,
       "certs_received": {
@@ -84380,7 +86113,7 @@
     "AlfredoRG": {
       "index": 7816,
       "owner_key": "8aiWgLaxCBApvySVLtPXyGKyz7WPxBqLJFety7kPntwA",
-      "balance": 234650,
+      "balance": 155866,
       "membership_expire_on": 1708906562,
       "next_cert_issuable_on": 1693108596,
       "certs_received": {
@@ -84427,10 +86160,24 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Mayazoy": {
+      "index": 13602,
+      "owner_key": "8b4r5fK1KRMcZ6T3mtX9A8JuCefWVvPjUDadBcwdHhk9",
+      "balance": 21462,
+      "membership_expire_on": 1725281948,
+      "next_cert_issuable_on": 1695354979,
+      "certs_received": {
+        "Sienna": 1757819197,
+        "Clairdelune": 1756841810,
+        "PapillonIsis": 1757988156,
+        "Emily": 1756841336,
+        "AnemoneSyl": 1758050810
+      }
+    },
     "julienf971": {
       "index": 12616,
       "owner_key": "8b7NU52AdeEYQdGeR5MtJHGsRHJrjxeX1WP3Ne6zcfJg",
-      "balance": 122548,
+      "balance": 162234,
       "membership_expire_on": 1713833256,
       "next_cert_issuable_on": 1685454493,
       "certs_received": {
@@ -84463,7 +86210,7 @@
     "AlainChatsweb": {
       "index": 8766,
       "owner_key": "8bUeHe8xmPQVUcuLvG5ddAA8rvEp1XBHRdk6eYZYB8HG",
-      "balance": 419359,
+      "balance": 459045,
       "membership_expire_on": 1717372573,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -84480,7 +86227,7 @@
       "owner_key": "8bUePTJZCvxCqimoGVTTGqxj1bBu54FKxqHwrfq3GM9f",
       "balance": 1093624,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632578752,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "ClaudeM": 1697841032
       }
@@ -84488,18 +86235,32 @@
     "CedricPujolas": {
       "index": 3704,
       "owner_key": "8bX9SBkkfUkz21ziUvjzxXHrQhGCBf8oXmQCGbYB9J1M",
-      "balance": 732294,
+      "balance": 731294,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Damery": 1715498192
       }
     },
+    "Sylvatica": {
+      "index": 13495,
+      "owner_key": "8biCc3bcHL7N8djqXpEGNLGJPTLLrWzt5u1KVX5DYDZc",
+      "balance": 55424,
+      "membership_expire_on": 1725043639,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "InesMarin73": 1756941818,
+        "Athena73": 1756941080,
+        "MorganV74": 1756941818,
+        "manonf": 1756745676,
+        "AimeeD73": 1756941588
+      }
+    },
     "dom34": {
       "index": 4656,
       "owner_key": "8bnapzvoJTEhNhgzfAXbnaW8Hg9X2U9RjAApd5mhRRh4",
-      "balance": 644937,
-      "membership_expire_on": 1699971419,
+      "balance": 684623,
+      "membership_expire_on": 1727580410,
       "next_cert_issuable_on": 1679317431,
       "certs_received": {
         "Marine_": 1714021877,
@@ -84545,7 +86306,7 @@
     "MioPalmon988": {
       "index": 7150,
       "owner_key": "8btME2xfagWk44TkJyYM98H76jPN25XsoXNBBkjzzMWS",
-      "balance": 471584,
+      "balance": 488770,
       "membership_expire_on": 1704133868,
       "next_cert_issuable_on": 1679361339,
       "certs_received": {
@@ -84578,7 +86339,7 @@
     "Gaelle1012": {
       "index": 11569,
       "owner_key": "8c63KNWExH6DZTkeBVUZ5PT7DYDYRixd7d3SUdaySVdd",
-      "balance": 433326,
+      "balance": 473012,
       "membership_expire_on": 1705773580,
       "next_cert_issuable_on": 1684497816,
       "certs_received": {
@@ -84593,15 +86354,18 @@
     "ChrisAndre": {
       "index": 8150,
       "owner_key": "8c6Yjrb2FodLxGJ2tcMSvnPxE6gewLf9QYHWSpwsjs8M",
-      "balance": 439303,
+      "balance": 480989,
       "membership_expire_on": 1710625903,
-      "next_cert_issuable_on": 1688896389,
+      "next_cert_issuable_on": 1695549614,
       "certs_received": {
         "LittleJess": 1721953504,
         "Niranjana": 1753156476,
         "Elimarine": 1715908588,
         "Etoiledesneiges": 1715997994,
         "Pat26": 1732041734,
+        "Bricedonnadieu26": 1758910101,
+        "MoraneDicato26": 1759093423,
+        "MIZOU26": 1758681955,
         "IsabelleEscudero": 1716235176,
         "ChaGaia5926": 1724941157,
         "christinejeannin26": 1753040817,
@@ -84613,12 +86377,11 @@
     "Kaileanah": {
       "index": 2507,
       "owner_key": "8cAFH3JP1GE8UsBtqQcauBAzp7oxwj256nhLM8epyjrL",
-      "balance": 357167,
-      "membership_expire_on": 1709347868,
+      "balance": 366779,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1677960177,
       "certs_received": {
         "celineR": 1752828260,
-        "DanceX47": 1694326465,
         "Marilina": 1712304837,
         "EtK": 1710216875,
         "FredB": 1746160142
@@ -84638,7 +86401,7 @@
     "MarieB": {
       "index": 6098,
       "owner_key": "8cNgHvHPpxU3Ubc388DZxVxGiXiuZytQVLYNTU6zDm75",
-      "balance": 715875,
+      "balance": 755561,
       "membership_expire_on": 1698876903,
       "next_cert_issuable_on": 1655521831,
       "certs_received": {
@@ -84653,7 +86416,7 @@
     "TrinityMorpheus": {
       "index": 12358,
       "owner_key": "8cQRmGdxTv8uJsUVXdnwhWi2htzcPnFPbxq9pPQLnSyD",
-      "balance": 146316,
+      "balance": 186002,
       "membership_expire_on": 1709731496,
       "next_cert_issuable_on": 1686742975,
       "certs_received": {
@@ -84668,7 +86431,7 @@
     "Francou42": {
       "index": 8121,
       "owner_key": "8cUgA49osC6RxRVyp6Smx6pddXBAGpKxBiK6BcAefKYe",
-      "balance": 592609,
+      "balance": 632295,
       "membership_expire_on": 1711491618,
       "next_cert_issuable_on": 1689772626,
       "certs_received": {
@@ -84689,7 +86452,7 @@
     "JulienBolly": {
       "index": 6595,
       "owner_key": "8cWgouDUsRsg4MfjiseJAJcPFN5Q4g9zAcfoqkTvtcwc",
-      "balance": 634187,
+      "balance": 673873,
       "membership_expire_on": 1701019974,
       "next_cert_issuable_on": 1643544286,
       "certs_received": {
@@ -84754,21 +86517,12 @@
       "balance": 344339,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1634997753,
-      "certs_received": {
-        "Aude49": 1694081479,
-        "Princesse": 1696634939,
-        "AlainLebrun": 1696384918,
-        "Recycleur53": 1694153429,
-        "Floalchimistefee": 1694403639,
-        "Nomadanne": 1696635735,
-        "Miryanon": 1696465261,
-        "AbelGilles": 1695092132
-      }
+      "certs_received": {}
     },
     "Pollito": {
       "index": 12147,
       "owner_key": "8cmHiqwXxshRthYQj8Dd42HYLgSUeeSSheT534tnpjya",
-      "balance": 383608,
+      "balance": 407794,
       "membership_expire_on": 1711377061,
       "next_cert_issuable_on": 1684937364,
       "certs_received": {
@@ -84809,9 +86563,9 @@
     "Pit": {
       "index": 9165,
       "owner_key": "8d6VC1it7wphY4VtYd2wKQAZhv7DQhsqd7Pkzt8Cw6mS",
-      "balance": 270803,
+      "balance": 209789,
       "membership_expire_on": 1717090530,
-      "next_cert_issuable_on": 1690700814,
+      "next_cert_issuable_on": 1696765869,
       "certs_received": {
         "xandraAritzkuren": 1744928601,
         "Cordeliaze": 1726793812,
@@ -84820,6 +86574,7 @@
         "agustinton": 1728024957,
         "ClaKi66": 1728103064,
         "ROCIO": 1735091332,
+        "Gerardo": 1758065800,
         "Aatma": 1727465254,
         "corinne13me": 1730868208,
         "Josepeuta": 1751141137,
@@ -84852,8 +86607,8 @@
     "armiele": {
       "index": 4126,
       "owner_key": "8d7F8fVJ5CMEuDTS5U5UTSy2AVpz2EdVJfhCLdK8grQk",
-      "balance": 1242777,
-      "membership_expire_on": 1697399932,
+      "balance": 1335463,
+      "membership_expire_on": 1727613691,
       "next_cert_issuable_on": 1685284867,
       "certs_received": {
         "VeroDeJetsDoux": 1730824914,
@@ -84883,17 +86638,19 @@
     "Thor": {
       "index": 12431,
       "owner_key": "8dAcD13GK8JbjoJyqMxuW6v6rjiVU9TD1CLoTN42HHrw",
-      "balance": 111432,
+      "balance": 27070,
       "membership_expire_on": 1708988616,
-      "next_cert_issuable_on": 1691161436,
+      "next_cert_issuable_on": 1695771443,
       "certs_received": {
         "Jens777": 1748796610,
+        "Matthias2405": 1757372710,
         "majo": 1744906823,
         "heinz": 1753051504,
         "catalinons": 1744742704,
         "Ingrid": 1756604956,
         "Felicia": 1744919326,
         "Sigrid61": 1755583790,
+        "Heike07": 1758858959,
         "MariantoniaHuguet": 1744869348,
         "tuttle": 1752889586,
         "Ralf": 1744920711
@@ -84902,7 +86659,7 @@
     "choupi": {
       "index": 7524,
       "owner_key": "8dNRzLreD27pTAGs7PoZUU1PH1JMZ7km2TtHgRMBhrH8",
-      "balance": 397537,
+      "balance": 447223,
       "membership_expire_on": 1709784553,
       "next_cert_issuable_on": 1680709766,
       "certs_received": {
@@ -84937,7 +86694,7 @@
     "Moune": {
       "index": 8367,
       "owner_key": "8dVTwh8GYED4MgGribh6TqBPAYQTHUhHo8zmt1DVpjG",
-      "balance": 457726,
+      "balance": 497412,
       "membership_expire_on": 1710197265,
       "next_cert_issuable_on": 1692978966,
       "certs_received": {
@@ -84956,9 +86713,9 @@
     "Matteo": {
       "index": 6623,
       "owner_key": "8dWtSkUTJ17xb8X1TDLU8LWQK47SGUettLuS9Te5bcjg",
-      "balance": 449161,
+      "balance": 349347,
       "membership_expire_on": 1724241663,
-      "next_cert_issuable_on": 1670080791,
+      "next_cert_issuable_on": 1694446527,
       "certs_received": {
         "Rachele": 1725499721,
         "Cordeliaze": 1741846597,
@@ -84999,9 +86756,9 @@
     "Zephy": {
       "index": 5573,
       "owner_key": "8dfWA5QndR2KNzNPCV7n8Nm7CdK9PfRqAktv1rgaYHfb",
-      "balance": 539662,
+      "balance": 604448,
       "membership_expire_on": 1718049411,
-      "next_cert_issuable_on": 1690553223,
+      "next_cert_issuable_on": 1694701071,
       "certs_received": {
         "Katiecat": 1755369495,
         "Ninamaste": 1744344458,
@@ -85057,7 +86814,7 @@
     "MarielEnchanteuse": {
       "index": 7294,
       "owner_key": "8dqZCGhJ2hL6V15oNUCvyNiSm2sZKHfu9hwhEzehQ72M",
-      "balance": 773584,
+      "balance": 806270,
       "membership_expire_on": 1706105108,
       "next_cert_issuable_on": 1655790080,
       "certs_received": {
@@ -85074,7 +86831,7 @@
     "ElodieMay": {
       "index": 13023,
       "owner_key": "8dtnCUJ4ReHPi9AKr3Y8FdcjQJX4CFZyvsEuiSevCX5N",
-      "balance": 52784,
+      "balance": 92470,
       "membership_expire_on": 1718394279,
       "next_cert_issuable_on": 1689324715,
       "certs_received": {
@@ -85090,9 +86847,9 @@
     "Violetta": {
       "index": 12567,
       "owner_key": "8dzpwR8e9ax6DQeLbFiqrhKMs1x4MaHv88Aj5ry1QBkp",
-      "balance": 123888,
+      "balance": 163574,
       "membership_expire_on": 1714078757,
-      "next_cert_issuable_on": 1692359289,
+      "next_cert_issuable_on": 1693321283,
       "certs_received": {
         "koalarp": 1746160142,
         "Virginie": 1746082860,
@@ -85105,8 +86862,8 @@
     "Annaig": {
       "index": 9511,
       "owner_key": "8e15Fp4s9tEobwEz6APdNBos51imqFBqFLFcwyKEtkA3",
-      "balance": 420338,
-      "membership_expire_on": 1693603951,
+      "balance": 421406,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1663940389,
       "certs_received": {
         "JoHana": 1726165776,
@@ -85124,7 +86881,7 @@
     "7Oak": {
       "index": 4707,
       "owner_key": "8e5Lb432CYKpXy7qbJiGj6m64FBqCUX65kYfuCXarUvT",
-      "balance": 841340,
+      "balance": 881026,
       "membership_expire_on": 1717124995,
       "next_cert_issuable_on": 1686942157,
       "certs_received": {
@@ -85140,9 +86897,9 @@
     "Wotan": {
       "index": 6975,
       "owner_key": "8e8YBvRv93EM3Gq8ZMVXH9LNggcZ1YrBjLuk6g3kCqSb",
-      "balance": 372782,
+      "balance": 413368,
       "membership_expire_on": 1704270326,
-      "next_cert_issuable_on": 1692401844,
+      "next_cert_issuable_on": 1695605179,
       "certs_received": {
         "EnriKon": 1707976855,
         "Josemi108": 1707957030,
@@ -85158,6 +86915,7 @@
         "Belka": 1707952198,
         "C13KETSALI": 1708056843,
         "AstrologoDespierto": 1721077007,
+        "LucasSebastianPerez": 1755477793,
         "Monik9366": 1742566392,
         "Cyndra974": 1729775127,
         "SIUX": 1725617060,
@@ -85165,6 +86923,7 @@
         "Ura": 1707988698,
         "C13Juanp": 1714113226,
         "Vitelio": 1708038464,
+        "AlanAriel": 1759028191,
         "Glass": 1708068769,
         "C13IAMisidoro": 1712774613
       }
@@ -85182,8 +86941,8 @@
     "Stellina": {
       "index": 8943,
       "owner_key": "8eUprWJXW4cAZuekKdXGpq7a9nwbBmacB41sXS4oEzrL",
-      "balance": 400044,
-      "membership_expire_on": 1718221656,
+      "balance": 434730,
+      "membership_expire_on": 1727563245,
       "next_cert_issuable_on": 1669472372,
       "certs_received": {
         "Miguelilpoeta": 1721422728,
@@ -85206,9 +86965,9 @@
     "Marie2puivert": {
       "index": 12623,
       "owner_key": "8eh6Y6S96NjZbkguXwMB5avieeJiwXgn3Rjxjgi97msu",
-      "balance": 180248,
+      "balance": 209934,
       "membership_expire_on": 1715292723,
-      "next_cert_issuable_on": 1693221225,
+      "next_cert_issuable_on": 1694559593,
       "certs_received": {
         "IsabellePriou": 1747017120,
         "Elianeferrier": 1746921634,
@@ -85222,7 +86981,7 @@
     "Gigi31": {
       "index": 5280,
       "owner_key": "8ewhWZkhAEXWLhKa16wFiFw78bhQF8VvrWeiC3tewEVj",
-      "balance": 667744,
+      "balance": 662744,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1667820462,
       "certs_received": {}
@@ -85256,9 +87015,9 @@
     "Pope": {
       "index": 11475,
       "owner_key": "8fBjoNYRDeGMTsXS7yypM13UEK4A9oGKQAPAK7QNpHsg",
-      "balance": 232680,
+      "balance": 331366,
       "membership_expire_on": 1706744897,
-      "next_cert_issuable_on": 1692975566,
+      "next_cert_issuable_on": 1696500734,
       "certs_received": {
         "MarieDel": 1738698786,
         "Philp": 1738382899,
@@ -85270,7 +87029,7 @@
     "PierretteVendredi": {
       "index": 9216,
       "owner_key": "8fCHDNatfJnto3ro5VUaWCXEFhRoktvEvitsR7S3gEf8",
-      "balance": 378666,
+      "balance": 418352,
       "membership_expire_on": 1716894690,
       "next_cert_issuable_on": 1681021757,
       "certs_received": {
@@ -85307,7 +87066,7 @@
     "EwenR46": {
       "index": 11812,
       "owner_key": "8fFU3dKpq3rEDpuYhq1zsdEQTGbs1HNVjF2m5LivstXX",
-      "balance": 193764,
+      "balance": 220950,
       "membership_expire_on": 1709157245,
       "next_cert_issuable_on": 1681443462,
       "certs_received": {
@@ -85353,7 +87112,7 @@
     "NeannePHI": {
       "index": 11052,
       "owner_key": "8fPLDpHcojZNM55PZTrwYYaa8T2GLuVKfRUTMWx6Lhcb",
-      "balance": 777267,
+      "balance": 816953,
       "membership_expire_on": 1702826096,
       "next_cert_issuable_on": 1676356916,
       "certs_received": {
@@ -85368,7 +87127,7 @@
     "BAMBAM": {
       "index": 12689,
       "owner_key": "8fVvzW21Ee97T4pHJDKkjZZNdaoazPvMGJjqNsEhAGDP",
-      "balance": 152840,
+      "balance": 192526,
       "membership_expire_on": 1715598541,
       "next_cert_issuable_on": 1686642792,
       "certs_received": {
@@ -85386,9 +87145,9 @@
     "JP-Rod": {
       "index": 4359,
       "owner_key": "8fYS16KxGNaMyr6ZQXY9zVZpPKeSL1JeJ2REsXFrCo75",
-      "balance": 703663,
+      "balance": 687017,
       "membership_expire_on": 1720196609,
-      "next_cert_issuable_on": 1692305202,
+      "next_cert_issuable_on": 1696746918,
       "certs_received": {
         "caelyROBLEDO": 1734749721,
         "Thierrygwada": 1705953491,
@@ -85406,7 +87165,7 @@
         "Carolinek": 1735757126,
         "sens": 1714644834,
         "lcdan": 1711854839,
-        "Corinnedeshaies": 1702593109,
+        "Corinnedeshaies": 1759079036,
         "Maurice971": 1711787275,
         "Romane": 1697698390
       }
@@ -85414,9 +87173,9 @@
     "sus35": {
       "index": 7844,
       "owner_key": "8fbMqu1kYtWCQFgK9YgMv58dCo96YRMVrTbcjArxVDh",
-      "balance": 135464,
+      "balance": 169650,
       "membership_expire_on": 1709770562,
-      "next_cert_issuable_on": 1687702318,
+      "next_cert_issuable_on": 1695260604,
       "certs_received": {
         "SaraRo": 1713994444,
         "Branca": 1748573849,
@@ -85446,7 +87205,7 @@
     "Chuckvl": {
       "index": 13307,
       "owner_key": "8feP7hSiNLW3EZuoTcybXPQwyijSpQLKRUmZpw59qK48",
-      "balance": 32624,
+      "balance": 72310,
       "membership_expire_on": 1722705200,
       "next_cert_issuable_on": 1691397143,
       "certs_received": {
@@ -85460,7 +87219,7 @@
     "Lylnuur": {
       "index": 8248,
       "owner_key": "8fgFFn8ZRSNRJtQAjtndMCvoTQdaDYfEPmQ5LWqEpAG5",
-      "balance": 473746,
+      "balance": 513432,
       "membership_expire_on": 1711792488,
       "next_cert_issuable_on": 1681738205,
       "certs_received": {
@@ -85490,7 +87249,7 @@
     "SamuelDOlivier": {
       "index": 4457,
       "owner_key": "8fhfoDFHatTkcrWg7fToWiHsZgXMPshoMk1z3zo7ZP8u",
-      "balance": 830331,
+      "balance": 870017,
       "membership_expire_on": 1700783181,
       "next_cert_issuable_on": 1672392578,
       "certs_received": {
@@ -85506,7 +87265,7 @@
     "Tonylloca": {
       "index": 12837,
       "owner_key": "8fucHZr7fgYLFT48AHnN6xuYYPkA7HJwqy92vYj9ySM8",
-      "balance": 45412,
+      "balance": 85098,
       "membership_expire_on": 1717634549,
       "next_cert_issuable_on": 1686892373,
       "certs_received": {
@@ -85521,7 +87280,7 @@
     "VeroAF26": {
       "index": 10293,
       "owner_key": "8fwcRgbu6nGhxBHHP8YpRkH8rjPiUfG3HkgervF6aG48",
-      "balance": 309354,
+      "balance": 349040,
       "membership_expire_on": 1699733528,
       "next_cert_issuable_on": 1670640023,
       "certs_received": {
@@ -85535,7 +87294,7 @@
     "Mia81": {
       "index": 6654,
       "owner_key": "8fxTQM3AY6GXDc8PRG5dMnXMi6TgWMmkxvQtE8FwJBQ2",
-      "balance": 786097,
+      "balance": 825783,
       "membership_expire_on": 1703025046,
       "next_cert_issuable_on": 1677676532,
       "certs_received": {
@@ -85559,7 +87318,7 @@
     "PoissonClown": {
       "index": 8641,
       "owner_key": "8g4WFdAJ2cR5gy7dBUEerSmXgeaimdEjYDSeEMdf4DPz",
-      "balance": 474714,
+      "balance": 514400,
       "membership_expire_on": 1714397198,
       "next_cert_issuable_on": 1688001583,
       "certs_received": {
@@ -85580,7 +87339,7 @@
     "Nico_sur_Mars": {
       "index": 6685,
       "owner_key": "8g6asoDT9mKwWpEV4d61Y7eQvLPAVo5ATMTnm3hCyQEk",
-      "balance": 623767,
+      "balance": 663453,
       "membership_expire_on": 1704278396,
       "next_cert_issuable_on": 1658243597,
       "certs_received": {
@@ -85602,7 +87361,7 @@
     "belledecadix": {
       "index": 6914,
       "owner_key": "8gGiCQ2tVHon3Ay9LogRokbVUZNwc4zMdBzrVVsoSmxi",
-      "balance": 137249,
+      "balance": 176935,
       "membership_expire_on": 1700915064,
       "next_cert_issuable_on": 1687590125,
       "certs_received": {
@@ -85631,7 +87390,7 @@
     "Wizen": {
       "index": 3391,
       "owner_key": "8gH7PZqhuJs8Ygx7u2wTuwtV6SuvUx7Pu3ZGvcD6RAQU",
-      "balance": 748115,
+      "balance": 788801,
       "membership_expire_on": 1705770028,
       "next_cert_issuable_on": 1689828079,
       "certs_received": {
@@ -85642,6 +87401,21 @@
         "Ely81": 1737328671
       }
     },
+    "Sandrinejessica": {
+      "index": 13672,
+      "owner_key": "8gXd4um9xwk9Tiobbx4nAb1kuTfSXCP5TtyZj1eBDF3p",
+      "balance": 17170,
+      "membership_expire_on": 1727304435,
+      "next_cert_issuable_on": 1696387100,
+      "certs_received": {
+        "TiboDom": 1758932303,
+        "ibisio": 1758864732,
+        "PatrickREVIF": 1758876275,
+        "Aldebaran": 1758905151,
+        "Ulysse7489": 1758865398,
+        "Delfine": 1759454953
+      }
+    },
     "Dylan": {
       "index": 3348,
       "owner_key": "8gaVHTdzEGRaRncEJKKZS3Gfak71sdEKGXpp1Lhbzz69",
@@ -85653,7 +87427,7 @@
     "BrocoliSauvage": {
       "index": 10752,
       "owner_key": "8gefFbjiyYtDPW6cVAUGV8s1BYTetAedz9kSY115fTWk",
-      "balance": 268461,
+      "balance": 303147,
       "membership_expire_on": 1700508832,
       "next_cert_issuable_on": 1676817360,
       "certs_received": {
@@ -85671,11 +87445,12 @@
     "CatherineMonastirieff": {
       "index": 6279,
       "owner_key": "8gfp6YNsoHS5XrUWcKbQTkDHfUnR67fHE4eeFT7wmU24",
-      "balance": 737657,
+      "balance": 857343,
       "membership_expire_on": 1723585378,
       "next_cert_issuable_on": 1692108252,
       "certs_received": {
         "M-France": 1746251431,
+        "tangosol": 1759274860,
         "Berniebx": 1744869348,
         "ChristopheCompere": 1701483295,
         "NoraMaela": 1701388666,
@@ -85691,7 +87466,7 @@
     "Swaruu": {
       "index": 7871,
       "owner_key": "8gnv5TmWdNvXQL43kew8fSLns4sWZhjkLt2Lo4hLeVTa",
-      "balance": 412723,
+      "balance": 452409,
       "membership_expire_on": 1705008373,
       "next_cert_issuable_on": 1681312833,
       "certs_received": {
@@ -85731,7 +87506,7 @@
     "HeidiFARFALE": {
       "index": 10220,
       "owner_key": "8gsT1frYuUZ35Fh6jgmadBPW4w81FZG1yxT752dpy7Zu",
-      "balance": 441656,
+      "balance": 481342,
       "membership_expire_on": 1698887298,
       "next_cert_issuable_on": 1688643702,
       "certs_received": {
@@ -85776,7 +87551,7 @@
     "Charline": {
       "index": 10238,
       "owner_key": "8gwqniEtfQDcwaFzpQBrxvwXDfvXkf8hGifGYH8Gvahv",
-      "balance": 315990,
+      "balance": 355676,
       "membership_expire_on": 1698710010,
       "next_cert_issuable_on": 1676519460,
       "certs_received": {
@@ -85795,7 +87570,7 @@
     "Petitarbre": {
       "index": 10064,
       "owner_key": "8gz5yE19TZYKM75gJ2DdWahiAVmnorNurfzswLvAgzvn",
-      "balance": 328816,
+      "balance": 368502,
       "membership_expire_on": 1697999489,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -85809,26 +87584,32 @@
     "jilguero": {
       "index": 11076,
       "owner_key": "8h3QYURSJbU9UrdZTi367JjS75nrK95oKeepi5RYiesx",
-      "balance": 239905,
+      "balance": 222591,
       "membership_expire_on": 1703685090,
-      "next_cert_issuable_on": 1693232288,
+      "next_cert_issuable_on": 1695686610,
       "certs_received": {
+        "MaudD": 1756876094,
         "Unomasuno": 1736214818,
         "SantiTrinquete": 1735272797,
         "JCNAVARLAZ": 1744656390,
+        "Estherm": 1756789510,
         "Meg": 1753813827,
         "YagoMago": 1735272797,
+        "Monicakoala": 1758599220,
         "Elenarepostera": 1738295727,
         "Swaruu": 1736565973,
         "Abejitajaimita": 1746761953,
         "Didiridi": 1756304775,
         "Franviriato": 1747156141,
+        "Mariaje": 1758074245,
         "Maiaviolin": 1735699173,
         "Munillerro": 1735273933,
         "YUKO": 1735274642,
         "esterdg": 1744252635,
         "ABLITERO": 1735278405,
+        "Alberto": 1758691139,
         "OM-Ostepatia-eta-Masajea": 1750547525,
+        "Peter": 1759303786,
         "Martuki": 1741368940,
         "Kol": 1735273753
       }
@@ -85844,9 +87625,9 @@
     "Shinix63": {
       "index": 10135,
       "owner_key": "8h6h3ejzjicyTNepuVxriRkk67rSXKB2SEVWkfTSTAEQ",
-      "balance": 91430,
+      "balance": 84616,
       "membership_expire_on": 1724949416,
-      "next_cert_issuable_on": 1689425344,
+      "next_cert_issuable_on": 1696771871,
       "certs_received": {
         "CeHunin": 1729027084,
         "SophieDeprez": 1754353596,
@@ -85854,6 +87635,7 @@
         "Fanfan13": 1744869694,
         "Mahj": 1730244065,
         "Yogini": 1728935444,
+        "lebonange": 1757455712,
         "MikaPac": 1748851256,
         "MinaManar": 1729032566,
         "SELHENIA": 1749944350,
@@ -85865,7 +87647,7 @@
     "Sophas": {
       "index": 5071,
       "owner_key": "8h7MPXETiQvcjiKHRA1f16Q9HoZfFVAXy9v2sqrv4biA",
-      "balance": 833689,
+      "balance": 873375,
       "membership_expire_on": 1709088225,
       "next_cert_issuable_on": 1685633787,
       "certs_received": {
@@ -85882,7 +87664,7 @@
     "Athina": {
       "index": 12850,
       "owner_key": "8h88JE3Puns5Tk5vWZTHmdmFtF6VhFGh97h4P88vHjcT",
-      "balance": 147644,
+      "balance": 187330,
       "membership_expire_on": 1717900233,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -85896,9 +87678,9 @@
     "LilianeLilou": {
       "index": 11841,
       "owner_key": "8h8pjLTQtVFsR3wRABLNE56pT6XqzuPdyz9ptuyKtcTw",
-      "balance": 513522,
+      "balance": 679208,
       "membership_expire_on": 1708902925,
-      "next_cert_issuable_on": 1691747096,
+      "next_cert_issuable_on": 1696402317,
       "certs_received": {
         "ScarlettGabrielle_8": 1741282179,
         "Luciole": 1740508214,
@@ -85916,15 +87698,17 @@
     "EvaLM": {
       "index": 6121,
       "owner_key": "8h9gc6v6divvMBKn4SZEcozYYwv1bdGpc8MFMLfNHJCq",
-      "balance": 590102,
-      "membership_expire_on": 1694224514,
+      "balance": 554788,
+      "membership_expire_on": 1725469929,
       "next_cert_issuable_on": 1667953687,
       "certs_received": {
         "Eleonora": 1716606434,
         "nashira": 1698600226,
         "Nanoo": 1717390585,
         "Yoham24": 1697051319,
+        "diletta": 1757190488,
         "SolangeAIME": 1715752244,
+        "MikaYeel": 1756944495,
         "Cassiano": 1731138705,
         "SylvieSylvie": 1728231625,
         "Mhjo": 1715191279,
@@ -85944,7 +87728,7 @@
     "Asunartesana": {
       "index": 9331,
       "owner_key": "8hBvADM95wQCae6exCMTnkYW6VgESKeiqWcdJ8hygeM6",
-      "balance": 212737,
+      "balance": 252423,
       "membership_expire_on": 1720887771,
       "next_cert_issuable_on": 1682932374,
       "certs_received": {
@@ -85967,7 +87751,7 @@
     "Symahe5": {
       "index": 7967,
       "owner_key": "8hDqQToST2BFmEmu6uSBHfQx921UrrvQpvWrMZujV1SJ",
-      "balance": 1012308,
+      "balance": 1060384,
       "membership_expire_on": 1713371725,
       "next_cert_issuable_on": 1681888093,
       "certs_received": {
@@ -85983,7 +87767,7 @@
     "BsWodan": {
       "index": 8319,
       "owner_key": "8hFWuYUyWRtZtRsUS2jWgxPZaz8kYpu8CEK4SZbc82xu",
-      "balance": 484991,
+      "balance": 524677,
       "membership_expire_on": 1712342980,
       "next_cert_issuable_on": 1674300902,
       "certs_received": {
@@ -85999,7 +87783,7 @@
     "Neil": {
       "index": 2970,
       "owner_key": "8hTx1F7tBtbxEeCigjtdms7Rz8gYh8v6BHCJBnf8cVFV",
-      "balance": 715612,
+      "balance": 716612,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {}
@@ -86007,9 +87791,9 @@
     "Maelly97": {
       "index": 12734,
       "owner_key": "8habuzxTxfNZJ9RkZVUYKwC6Hx4V5RbB5BHjZRWtjUpy",
-      "balance": 105732,
+      "balance": 145418,
       "membership_expire_on": 1715892492,
-      "next_cert_issuable_on": 1693450584,
+      "next_cert_issuable_on": 1695383698,
       "certs_received": {
         "CelineB": 1747882469,
         "mlmlulu73": 1747848263,
@@ -86021,7 +87805,7 @@
     "Crismos": {
       "index": 10912,
       "owner_key": "8hcf5er1zUK7AdS6RfFA5ZGYhN2qmFKWws7vf59J77e2",
-      "balance": 296171,
+      "balance": 335857,
       "membership_expire_on": 1702924914,
       "next_cert_issuable_on": 1674218628,
       "certs_received": {
@@ -86035,7 +87819,7 @@
     "Maya23": {
       "index": 12296,
       "owner_key": "8hd8LBzbNXpwgZxhzyTN1AUBEs6tnXeppqUjFBjqbBM6",
-      "balance": 126716,
+      "balance": 166402,
       "membership_expire_on": 1712168205,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -86059,7 +87843,7 @@
     "Lesamourai": {
       "index": 10549,
       "owner_key": "8hrvRYASa1FzheWxhie83KvxhEpoB2ehARUt8zxvX3Q7",
-      "balance": 294810,
+      "balance": 334496,
       "membership_expire_on": 1700689337,
       "next_cert_issuable_on": 1671461157,
       "certs_received": {
@@ -86075,9 +87859,9 @@
     "morimontj": {
       "index": 11156,
       "owner_key": "8iJG7Le2d6o2WMZhC1sEbTEfCHpdFRtKbMiVMbW1jgjK",
-      "balance": 819710,
-      "membership_expire_on": 1700583020,
-      "next_cert_issuable_on": 1693210009,
+      "balance": 885636,
+      "membership_expire_on": 1727301107,
+      "next_cert_issuable_on": 1696133845,
       "certs_received": {
         "Carine888": 1742627134,
         "PhilippeLafontaine": 1737410553,
@@ -86088,6 +87872,7 @@
         "Gillette": 1736294941,
         "Mesange": 1736299755,
         "Zouzoute57": 1752679102,
+        "Vinciane": 1758687098,
         "Sottay": 1755105727,
         "Kan13ahau": 1736294941,
         "cricri": 1754800787,
@@ -86107,7 +87892,7 @@
     "AdamCB": {
       "index": 7501,
       "owner_key": "8iXqBXND8KcGq3LZCPJ6pQzVnhBDtaZwejMCygPm9gXd",
-      "balance": 477658,
+      "balance": 517344,
       "membership_expire_on": 1715284437,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -86121,7 +87906,7 @@
     "Salome": {
       "index": 503,
       "owner_key": "8ihje3e3stxnc9QLkfH8ZNg4w82b33XkmHqt7BjanyrL",
-      "balance": 557649,
+      "balance": 597335,
       "membership_expire_on": 1709856681,
       "next_cert_issuable_on": 1693150424,
       "certs_received": {
@@ -86138,7 +87923,7 @@
     "AlbanP": {
       "index": 7307,
       "owner_key": "8ioZBCYvheifjV4Pn7qkrw57vNebvob8JXodJi2VmPDZ",
-      "balance": 459622,
+      "balance": 499308,
       "membership_expire_on": 1718372230,
       "next_cert_issuable_on": 1652875103,
       "certs_received": {
@@ -86150,12 +87935,27 @@
         "Cyrille": 1709228372
       }
     },
+    "Cath-Boute": {
+      "index": 13733,
+      "owner_key": "8j1vKd9WC38dq7gMq2UukpD2uGGLaYxwjQKzgtNscuMY",
+      "balance": 6812,
+      "membership_expire_on": 1727304113,
+      "next_cert_issuable_on": 1696645478,
+      "certs_received": {
+        "CelineVivante": 1759436733,
+        "ibisio": 1759420807,
+        "Antoine45": 1759505700,
+        "Sandrinejessica": 1759430300,
+        "PatrickREVIF": 1759387641,
+        "NadiaNadodu": 1759430053
+      }
+    },
     "Hebou": {
       "index": 9268,
       "owner_key": "8j6iyfCDL6mAePFqgUF1ktrFhQp9ysMnFrfk7yuZtSHn",
-      "balance": 669481,
+      "balance": 828667,
       "membership_expire_on": 1717954244,
-      "next_cert_issuable_on": 1692876465,
+      "next_cert_issuable_on": 1695910769,
       "certs_received": {
         "Jane": 1722895985,
         "lydiemdb": 1731390705,
@@ -86192,11 +87992,11 @@
     "CClement": {
       "index": 4926,
       "owner_key": "8jPyLM4aBXe4UkbNY9wYxfEuJq7FpHdHwmQ9jY8XxCzG",
-      "balance": 257221,
+      "balance": 296907,
       "membership_expire_on": 1703361460,
-      "next_cert_issuable_on": 1687262168,
+      "next_cert_issuable_on": 1696689002,
       "certs_received": {
-        "myt": 1701384714,
+        "myt": 1757830535,
         "fdrubigny": 1743969113,
         "Tchois": 1744694364,
         "Patmos": 1722144874,
@@ -86205,7 +88005,6 @@
         "JP-Rod": 1737406278,
         "Pascale72": 1754998163,
         "liberte55": 1697619665,
-        "thierryR51": 1696217637,
         "Kaya971Wolf": 1732641800,
         "Gerardl": 1701120450,
         "hypericum": 1744018295,
@@ -86220,15 +88019,13 @@
       "balance": 940196,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "psycotox80": 1695747213
-      }
+      "certs_received": {}
     },
     "Olirielle": {
       "index": 10139,
       "owner_key": "8jYXsPcY2F8QKNQHrrPtzK5mhHjerJoRoteCrP9jm3q7",
-      "balance": 273462,
-      "membership_expire_on": 1696423367,
+      "balance": 309914,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681652455,
       "certs_received": {
         "Mairyn31": 1729358528,
@@ -86244,8 +88041,8 @@
     "Siama": {
       "index": 9754,
       "owner_key": "8jfbfMJyECGESGrLVJoMXwW6yVGfD98GgXri6viRkzAA",
-      "balance": 354114,
-      "membership_expire_on": 1694358296,
+      "balance": 364794,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "chris07": 1727834813,
@@ -86258,7 +88055,7 @@
     "NathNath": {
       "index": 10636,
       "owner_key": "8jgi8UEHM3eDpSaPeqsdT2XYjvWHWwDvJEo75tYpuJcT",
-      "balance": 485115,
+      "balance": 524801,
       "membership_expire_on": 1699309463,
       "next_cert_issuable_on": 1682856921,
       "certs_received": {
@@ -86323,7 +88120,7 @@
     "Bettyboop": {
       "index": 10373,
       "owner_key": "8jpG9LaE7KNdkvVsganA5Eu53JxJraVXGxCgdFZaPcfj",
-      "balance": 346459,
+      "balance": 386145,
       "membership_expire_on": 1700099033,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -86337,7 +88134,7 @@
     "Zazie": {
       "index": 12010,
       "owner_key": "8jsSvhwuertSmiNhatHS9vWrez4pmKznfDFBF6GMF1HK",
-      "balance": 178438,
+      "balance": 218124,
       "membership_expire_on": 1710361272,
       "next_cert_issuable_on": 1689253055,
       "certs_received": {
@@ -86352,7 +88149,7 @@
     "Edmonde29480": {
       "index": 7183,
       "owner_key": "8k5rcoLWbsVLCH75v3wDZJGAk8fGaG6qWhtyrnKWj5BQ",
-      "balance": 646935,
+      "balance": 686621,
       "membership_expire_on": 1702607779,
       "next_cert_issuable_on": 1671122610,
       "certs_received": {
@@ -86369,7 +88166,7 @@
     "MayaJ": {
       "index": 6087,
       "owner_key": "8k6FwSMpa9fTEvzAb6VoZqSwphXMbHRRRPgPPJPo8EqB",
-      "balance": 236755,
+      "balance": 276441,
       "membership_expire_on": 1722435098,
       "next_cert_issuable_on": 1676896622,
       "certs_received": {
@@ -86397,7 +88194,7 @@
     "Brigitte07": {
       "index": 7248,
       "owner_key": "8kQ52pziToLExnbGWCt7TAHDcNmNnbRqSK5ZwDHrZpYx",
-      "balance": 550886,
+      "balance": 590572,
       "membership_expire_on": 1708989335,
       "next_cert_issuable_on": 1677503735,
       "certs_received": {
@@ -86414,8 +88211,8 @@
     "Cyrilc89": {
       "index": 9376,
       "owner_key": "8kQVeHBz5He5BhDsimuaHUYHKjLQd6MFw8hfPFkDML6U",
-      "balance": 443578,
-      "membership_expire_on": 0,
+      "balance": 446812,
+      "membership_expire_on": 1728054124,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Jsln6289": 1725047522,
@@ -86433,27 +88230,28 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1637581798,
       "certs_received": {
-        "hibiscus11": 1696449850,
-        "AlexDurain": 1696110504,
-        "Moineau": 1697650273,
-        "Arnaud11": 1696491091,
-        "domimeert": 1696061387
+        "Moineau": 1697650273
       }
     },
     "RaffaeleMarie": {
       "index": 4164,
       "owner_key": "8kTiYFj3ndpDc3EZGRmYqCkJsMBBunfDqJbaMeUoUJ7u",
-      "balance": 520010,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 0,
+      "balance": 527856,
+      "membership_expire_on": 1724805622,
+      "next_cert_issuable_on": 1695557947,
       "certs_received": {
-        "instanton43": 1722025542
+        "CaroleBroutin": 1756344052,
+        "PhilChamp": 1756575223,
+        "Tita": 1756522383,
+        "instanton43": 1722025542,
+        "schmollita": 1757567230,
+        "Hdsaf": 1756772188
       }
     },
     "Guillaumeannie": {
       "index": 11906,
       "owner_key": "8kUPeQRDUFjwU2pCM8AUFJozwNEbjC1iq9wgf3kk7YuW",
-      "balance": 244351,
+      "balance": 391537,
       "membership_expire_on": 1709582111,
       "next_cert_issuable_on": 1690176565,
       "certs_received": {
@@ -86474,7 +88272,7 @@
     "Pinceaux38": {
       "index": 8001,
       "owner_key": "8kW9VU9zJFxd3eNGN3Hnyg6xotorcNEt1pYiCAP6q8m8",
-      "balance": 496664,
+      "balance": 536350,
       "membership_expire_on": 1708810426,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -86488,22 +88286,24 @@
     "Abejitajaimita": {
       "index": 12580,
       "owner_key": "8kWsrrvQGzQ27ao8H8FB1KqgP58i56C6ixCjpYo9Gf42",
-      "balance": 113747,
+      "balance": 175933,
       "membership_expire_on": 1714260286,
-      "next_cert_issuable_on": 1693131906,
+      "next_cert_issuable_on": 1695333072,
       "certs_received": {
         "SantiTrinquete": 1746160756,
         "MaraVilla": 1756176748,
         "YagoMago": 1746160756,
         "Elenarepostera": 1746649664,
         "jilguero": 1745818171,
+        "AliciaConsuelo": 1758252651,
         "Franviriato": 1746161074,
         "YUKO": 1756171057,
         "esterdg": 1745818171,
         "VICTORF": 1756175106,
         "ABLITERO": 1745818171,
         "Alberto": 1747812256,
-        "LaChenille": 1753856705
+        "LaChenille": 1753856705,
+        "GRUKSY": 1758248249
       }
     },
     "DustyFellow": {
@@ -86527,7 +88327,7 @@
     "Emyourock": {
       "index": 13251,
       "owner_key": "8khUsLQu1xFeNw82UTQDom1CreXsbeWbELCgDcu3hfWU",
-      "balance": 41312,
+      "balance": 80998,
       "membership_expire_on": 1721309013,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -86541,7 +88341,7 @@
     "manguitou": {
       "index": 4710,
       "owner_key": "8kie5hbSeboaWMYyEg9zCvwZ4MrSZinuREosUnS4zuyE",
-      "balance": 693691,
+      "balance": 733377,
       "membership_expire_on": 1706994614,
       "next_cert_issuable_on": 1682307484,
       "certs_received": {
@@ -86581,22 +88381,14 @@
       "balance": 687695,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Bcabon": 1696382625,
-        "Aude49": 1696382075,
-        "Princesse": 1696634939,
-        "Recycleur53": 1696382075,
-        "elo53die": 1696382625,
-        "Nomadanne": 1696635352,
-        "AbelGilles": 1696382350
-      }
+      "certs_received": {}
     },
     "Pikofio": {
       "index": 9208,
       "owner_key": "8kzLd513fyot6NW5QqTkdqV9yKL6HTA94dZ8PftKQhfo",
-      "balance": 431998,
+      "balance": 471684,
       "membership_expire_on": 1723742534,
-      "next_cert_issuable_on": 1663809636,
+      "next_cert_issuable_on": 1696079487,
       "certs_received": {
         "Numerosympa": 1723687138,
         "AnneLadragonitta": 1723687999,
@@ -86614,12 +88406,7 @@
       "next_cert_issuable_on": 1650607208,
       "certs_received": {
         "Stephaneon": 1716002467,
-        "ChristianDelaunay": 1696367283,
-        "Scott76": 1696639280,
-        "ZinzinGroues": 1696366315,
-        "DidierPapillon": 1696665633,
-        "ElisaDesFougeres": 1710883399,
-        "katou": 1696369713
+        "ElisaDesFougeres": 1710883399
       }
     },
     "FrancoisMomplay": {
@@ -86628,14 +88415,12 @@
       "balance": 1009846,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Robisar": 1693786164
-      }
+      "certs_received": {}
     },
     "BriceV": {
       "index": 7040,
       "owner_key": "8m7MA4TeFDynJxxyP7UyURGaeBNeMZjvVifduaAXED8c",
-      "balance": 662959,
+      "balance": 691985,
       "membership_expire_on": 1705182225,
       "next_cert_issuable_on": 1675861254,
       "certs_received": {
@@ -86662,9 +88447,9 @@
     "Missouri": {
       "index": 7946,
       "owner_key": "8mHgqu6PDwKok5SXYLWmn6ifbDFru6fmrmSmQJZoNgXY",
-      "balance": 391846,
+      "balance": 431532,
       "membership_expire_on": 1709334314,
-      "next_cert_issuable_on": 1687102010,
+      "next_cert_issuable_on": 1696415437,
       "certs_received": {
         "Niranjana": 1714458411,
         "NancyAlexia": 1746663394,
@@ -86679,14 +88464,29 @@
         "Stelzchantal": 1714519284
       }
     },
+    "Salamandre": {
+      "index": 13496,
+      "owner_key": "8mNmvD8YyNm898FYmj8HVqe2CqGuxkuujtdwBHyKsusv",
+      "balance": 64924,
+      "membership_expire_on": 1725298348,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "RomainKornig": 1756856592,
+        "Kouleurs": 1756923216,
+        "FleurdEtoiles": 1756878789,
+        "Etoilecassiopee": 1756879227,
+        "CovaDidier": 1756947672
+      }
+    },
     "Mesamours84": {
       "index": 8551,
       "owner_key": "8mQCFJ4HBWuGBkwYTnBvchyVyWZPj51b9f8TK34BkacD",
-      "balance": 532024,
+      "balance": 592510,
       "membership_expire_on": 1713114404,
-      "next_cert_issuable_on": 1690092769,
+      "next_cert_issuable_on": 1695227436,
       "certs_received": {
         "Elimarine": 1717989737,
+        "genchat": 1757361263,
         "mamieflo": 1718841150,
         "Violainerod": 1745976174,
         "NadineRzd": 1718604240,
@@ -86695,6 +88495,7 @@
         "Anne-Laure": 1718672141,
         "Michellecuyer26": 1751329130,
         "ChaGaia5926": 1729144743,
+        "MARIEFRANCE": 1759365738,
         "FleurJ": 1746670733,
         "Calou26": 1717979126,
         "FredericStephan": 1718671892
@@ -86703,7 +88504,7 @@
     "Plume_ignis": {
       "index": 13420,
       "owner_key": "8miB6HaMPzWWXNfT1CEk8sRpq2BpFgxTfDWXV1xBMob4",
-      "balance": 34852,
+      "balance": 74538,
       "membership_expire_on": 1720986513,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -86717,7 +88518,7 @@
     "LaeVie": {
       "index": 2415,
       "owner_key": "8mijKeLvVBmj8pseNvQaNBnNuhLQ4AWZt7RrwLkQQHyt",
-      "balance": 176177,
+      "balance": 215863,
       "membership_expire_on": 1712625495,
       "next_cert_issuable_on": 1687243205,
       "certs_received": {
@@ -86737,9 +88538,9 @@
     "IlonadeHaas": {
       "index": 8157,
       "owner_key": "8mrbpHEeLYHYfBq3fG7zhQsUExqn8NieGNSyL1XrS7P8",
-      "balance": 426061,
+      "balance": 465747,
       "membership_expire_on": 1710860646,
-      "next_cert_issuable_on": 1683692157,
+      "next_cert_issuable_on": 1695953666,
       "certs_received": {
         "Alcidejet": 1751264455,
         "Fleur-du-renouveau": 1715911020,
@@ -86764,9 +88565,9 @@
     "AlexanderT": {
       "index": 13070,
       "owner_key": "8mxZPvCYEwA51Zov7ZCCGPGRgPryQa9KiZJtd4tf2kvp",
-      "balance": 110538,
+      "balance": 95806,
       "membership_expire_on": 1719839333,
-      "next_cert_issuable_on": 1692733885,
+      "next_cert_issuable_on": 1694645015,
       "certs_received": {
         "AfricadeHarmonia": 1751413000,
         "Damadespadas": 1751438959,
@@ -86779,7 +88580,7 @@
     "HelenaMatos": {
       "index": 11271,
       "owner_key": "8n7HQ3qk3JsPH6VHqM51tJor1wEzX8cMgrCKsZ9iSq3m",
-      "balance": 281860,
+      "balance": 321546,
       "membership_expire_on": 1704728992,
       "next_cert_issuable_on": 1690007272,
       "certs_received": {
@@ -86788,6 +88589,7 @@
         "MagusAmadeus": 1749252577,
         "Judit137": 1748324919,
         "Perrinha": 1747538010,
+        "Yana": 1759438643,
         "SebLorion": 1736788692,
         "RikaLorion": 1736788417,
         "CharlotteF": 1751160962,
@@ -86795,6 +88597,7 @@
         "Alvaro": 1746315591,
         "otto": 1752438016,
         "Yohan": 1736290151,
+        "Rafael": 1759438643,
         "MarleneRibeiro": 1744014362,
         "criscoutinho": 1737243403,
         "Rahhui": 1744313189,
@@ -86804,6 +88607,7 @@
         "RosaAlvesPinho": 1741890041,
         "Naneff": 1736624510,
         "GillesGaia": 1738106611,
+        "PenaBranca": 1759438316,
         "ElisabeteMartins": 1752094084
       }
     },
@@ -86856,9 +88660,9 @@
     "Didiridi": {
       "index": 9606,
       "owner_key": "8noJ9tppsvTAVmEUQ2jfYFxx8J7nvMmKrjMWUT8VE8k5",
-      "balance": 130677,
+      "balance": 147763,
       "membership_expire_on": 1721056091,
-      "next_cert_issuable_on": 1693261575,
+      "next_cert_issuable_on": 1693452859,
       "certs_received": {
         "Enara": 1726967731,
         "Silvi": 1737937027,
@@ -86868,6 +88672,7 @@
         "Estitz": 1727392546,
         "Trula": 1743960725,
         "Adribirix": 1737700850,
+        "SantiTrinquete": 1759283711,
         "Celina": 1726338049,
         "Feltai": 1746349355,
         "Estherm": 1726088056,
@@ -86892,9 +88697,7 @@
       "balance": 344403,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "EricPetit": 1694734392
-      }
+      "certs_received": {}
     },
     "Turquoise": {
       "index": 2056,
@@ -86915,7 +88718,7 @@
     "kimbo77": {
       "index": 624,
       "owner_key": "8o8CUu2Uh5BcAJeaHtKDuJauJXEhdRypSAiYibhfTeVB",
-      "balance": 1735253,
+      "balance": 1774939,
       "membership_expire_on": 1715825581,
       "next_cert_issuable_on": 1653782653,
       "certs_received": {
@@ -86929,7 +88732,7 @@
     "Soluna": {
       "index": 7536,
       "owner_key": "8o8gkES6GraCmxkWH6T4VjhdEytfgnQPSVjiRUnEvM2G",
-      "balance": 528548,
+      "balance": 568234,
       "membership_expire_on": 1716678345,
       "next_cert_issuable_on": 1673145539,
       "certs_received": {
@@ -86960,10 +88763,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "botera75": {
+      "index": 13565,
+      "owner_key": "8oUmkU8iZSXWVtfXPapwU5pHaMpoTyLmHM8h4XpBM9yq",
+      "balance": 96770,
+      "membership_expire_on": 1725986729,
+      "next_cert_issuable_on": 1696178683,
+      "certs_received": {
+        "carmenchu_almacristal": 1757544912,
+        "AngieantesGeles": 1757555967,
+        "Belobal": 1757549068,
+        "VICTORF": 1759207338,
+        "ABLITERO": 1757661293,
+        "LaChenille": 1757702926
+      }
+    },
     "Benbeck": {
       "index": 11802,
       "owner_key": "8oeVyS3ss9EUmrv229mM5uZCAqDBq71fUu9M8W8W5RmJ",
-      "balance": 386323,
+      "balance": 426009,
       "membership_expire_on": 1708086470,
       "next_cert_issuable_on": 1682122296,
       "certs_received": {
@@ -86978,7 +88796,7 @@
     "ChatChris": {
       "index": 7824,
       "owner_key": "8oitxP2kxSzLkGeSvkuhAMC81wN6PkFPoetXep8cwWLi",
-      "balance": 402195,
+      "balance": 441881,
       "membership_expire_on": 1707617664,
       "next_cert_issuable_on": 1676460371,
       "certs_received": {
@@ -86992,6 +88810,7 @@
         "Fredamour": 1714872987,
         "Petfa": 1713748288,
         "nicgouG": 1713748527,
+        "Puravida": 1756223464,
         "HerbeFolle": 1720151719,
         "Stelzchantal": 1731904502
       }
@@ -86999,7 +88818,7 @@
     "Camilliano": {
       "index": 11913,
       "owner_key": "8onj3W4oH1JDTcPnd7DN9reU4HtnZmExXtahb2MFbw1U",
-      "balance": 156660,
+      "balance": 165858,
       "membership_expire_on": 1705702642,
       "next_cert_issuable_on": 1687307938,
       "certs_received": {
@@ -87013,7 +88832,7 @@
     "louna": {
       "index": 788,
       "owner_key": "8oqmDgsmFyM8SxzMnVjKCjmySMgobVAf1VeFkoJrobEE",
-      "balance": 1335776,
+      "balance": 1375462,
       "membership_expire_on": 1698610106,
       "next_cert_issuable_on": 1689525660,
       "certs_received": {
@@ -87050,7 +88869,7 @@
     "LudivineL": {
       "index": 10126,
       "owner_key": "8oxFk39gogLB6Ka3cSeEBH62osqZgBzaQRPR7RkRMvNA",
-      "balance": 325521,
+      "balance": 365207,
       "membership_expire_on": 1697907338,
       "next_cert_issuable_on": 1672234980,
       "certs_received": {
@@ -87065,7 +88884,7 @@
     "Lucien64": {
       "index": 13454,
       "owner_key": "8p961hRQZtB3GjHsbtG9nTT824kRboZZQ1EL7MotULsz",
-      "balance": 5340,
+      "balance": 35026,
       "membership_expire_on": 1724661114,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -87081,7 +88900,7 @@
     "Strat64": {
       "index": 7284,
       "owner_key": "8pDGJq6btb29EgXh6xam6Kr1jVPAgAoy74y6Xv8wNZm6",
-      "balance": 435553,
+      "balance": 465239,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1669631164,
       "certs_received": {
@@ -87096,11 +88915,10 @@
     "Fleurdusoleil": {
       "index": 3875,
       "owner_key": "8pEp1NYsM9xr2e6jBDh3kwPjoP8egGNCkF99QC1dRDTc",
-      "balance": 837826,
+      "balance": 877512,
       "membership_expire_on": 1710500684,
       "next_cert_issuable_on": 1686473502,
       "certs_received": {
-        "Fleur-du-renouveau": 1695935689,
         "venusienne": 1746200998,
         "IrisBleu": 1714964916,
         "MayaPTT": 1754508091,
@@ -87111,14 +88929,13 @@
         "DavidMRT": 1754509622,
         "JDLepage-Guichard": 1728924620,
         "Klerkival": 1743011886,
-        "Peps": 1751323802,
-        "Misspio": 1694838518
+        "Peps": 1751323802
       }
     },
     "LeonDelhez": {
       "index": 9839,
       "owner_key": "8pM6ssae3aHJEvrbWDP1gCnkwSzZhPLhVBJjQiowRuJY",
-      "balance": 331760,
+      "balance": 371446,
       "membership_expire_on": 1723842699,
       "next_cert_issuable_on": 1680923210,
       "certs_received": {
@@ -87163,7 +88980,7 @@
     "ElenaLoup": {
       "index": 9513,
       "owner_key": "8pTMSCbTq9NUuEB92UmGFcNTgkNTAwCanLAdWcRGrQhs",
-      "balance": 212200,
+      "balance": 251886,
       "membership_expire_on": 1723210422,
       "next_cert_issuable_on": 1680316233,
       "certs_received": {
@@ -87182,7 +88999,7 @@
     "LydieEgelmont": {
       "index": 9987,
       "owner_key": "8pVRpHnT53S3tdxg2pTFzfarNVcFKx2WLAQ3uq5dVudL",
-      "balance": 719369,
+      "balance": 759055,
       "membership_expire_on": 1721186026,
       "next_cert_issuable_on": 1686161331,
       "certs_received": {
@@ -87209,7 +89026,7 @@
     "RoseLafarge": {
       "index": 7573,
       "owner_key": "8papHorMvHV4C4js6KZW431HQqDoLR4sP3ERY6d5uzH1",
-      "balance": 559347,
+      "balance": 596033,
       "membership_expire_on": 1709473781,
       "next_cert_issuable_on": 1656471253,
       "certs_received": {
@@ -87222,6 +89039,20 @@
         "BeatriceSam": 1712431493
       }
     },
+    "Beica10es": {
+      "index": 13524,
+      "owner_key": "8pbotuCTcZPji56sxreWyNAUCBs9M4xx9gosM75d42Td",
+      "balance": 70210,
+      "membership_expire_on": 1725464893,
+      "next_cert_issuable_on": 1696300191,
+      "certs_received": {
+        "Damaso": 1757268521,
+        "Mariaje": 1757269921,
+        "Guiomar": 1757034580,
+        "Alberto": 1757263911,
+        "GRUKSY": 1757227177
+      }
+    },
     "GeraldineRougeGorge": {
       "index": 6307,
       "owner_key": "8pc8MWEdvaD2yo1kjAjiZM5ybW8P93MkkC5xrDrKcnJU",
@@ -87236,10 +89067,24 @@
         "Yvestommy": 1699852179
       }
     },
+    "Annelabelge": {
+      "index": 13675,
+      "owner_key": "8pcVqmAcWPuRfLjbbckfNQ7MsjSRhDPB66rfwm3WRFHN",
+      "balance": 33880,
+      "membership_expire_on": 1724956819,
+      "next_cert_issuable_on": 1696496565,
+      "certs_received": {
+        "BlandineGABE": 1758560854,
+        "MarieBouny": 1757392752,
+        "PierreAubert": 1757393492,
+        "IsabellePriou": 1758611238,
+        "MarieFranceL": 1756515335
+      }
+    },
     "Cati": {
       "index": 8043,
       "owner_key": "8piKYQcPU6YyJeMu7ZMLhSiDJoUEJCU7fS86CnxxTaEc",
-      "balance": 452649,
+      "balance": 492335,
       "membership_expire_on": 1715375312,
       "next_cert_issuable_on": 1656694784,
       "certs_received": {
@@ -87254,7 +89099,7 @@
     "Ayllon": {
       "index": 5468,
       "owner_key": "8pkZwGsnusCaTGZL3QCVYMc3vWmYkpGfZnrJqrEbRYwZ",
-      "balance": 474025,
+      "balance": 513711,
       "membership_expire_on": 1713645551,
       "next_cert_issuable_on": 1689154363,
       "certs_received": {
@@ -87295,9 +89140,9 @@
     "Meritxell81": {
       "index": 7609,
       "owner_key": "8pmLDeREVCfJVNKRVCXm82J99HK52xgqTTk9nDx45Vzq",
-      "balance": 293912,
+      "balance": 333598,
       "membership_expire_on": 1720882599,
-      "next_cert_issuable_on": 1676543838,
+      "next_cert_issuable_on": 1696475974,
       "certs_received": {
         "SevChereau": 1712391033,
         "MarieL81": 1740783894,
@@ -87317,7 +89162,7 @@
     "Sitelle": {
       "index": 12530,
       "owner_key": "8pvbBTf5nVLne4tvrsUP6jwVw62ZsVzzw23Qe3w1YsDT",
-      "balance": 154817,
+      "balance": 214183,
       "membership_expire_on": 1713995009,
       "next_cert_issuable_on": 1688801542,
       "certs_received": {
@@ -87348,10 +89193,24 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "laura": {
+      "index": 13746,
+      "owner_key": "8qN5RCEQDfL14c8q4Zw7GhU9i7vu8MYZTN2uKDC5zwen",
+      "balance": 1078,
+      "membership_expire_on": 1726615389,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Liliporti": 1758178009,
+        "Pacha": 1758178009,
+        "Sophie_Jiyu": 1759685004,
+        "Mystic": 1759039442,
+        "Eauvive": 1758178009
+      }
+    },
     "IsabelleA": {
       "index": 11541,
       "owner_key": "8qenuuUW7SVcr8qB9oVtGr6sMtxtkTc5bcH9Wv3YXyWZ",
-      "balance": 218944,
+      "balance": 258630,
       "membership_expire_on": 1707353500,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -87384,33 +89243,29 @@
     "CookieLilas": {
       "index": 5658,
       "owner_key": "8qtynsoj24SD8ijmduruCtDRjjU5z7P17xBDZm6fuUvc",
-      "balance": 468409,
+      "balance": 480095,
       "membership_expire_on": 1717351192,
       "next_cert_issuable_on": 1688354368,
       "certs_received": {
         "JF13": 1706380607,
         "Karigera": 1700719092,
-        "Laulau": 1694378612,
-        "JeePofMars": 1694231598,
         "Pini": 1753174018,
         "MrMrtn": 1742709456,
         "Thorvald": 1721933544,
-        "Numerosympa": 1699120033,
-        "Glycine13": 1694240085,
+        "Numerosympa": 1756321441,
         "Debora": 1706039983,
         "Pogona": 1706408347,
-        "bike13500": 1694245711,
         "Mariviere": 1699936854,
         "JRDS": 1735323651,
-        "tatinetteb": 1693679668
+        "tatinetteb": 1756719722
       }
     },
     "Sebcbien": {
       "index": 9007,
       "owner_key": "8qvVvZsSrABKSAWMMEF9QdSuuJe8tyfTiCmuMLQ27CGD",
-      "balance": 272637,
+      "balance": 312323,
       "membership_expire_on": 1715623086,
-      "next_cert_issuable_on": 1679994777,
+      "next_cert_issuable_on": 1694428824,
       "certs_received": {
         "Monette": 1738225762,
         "Naelle22": 1721530489,
@@ -87435,11 +89290,12 @@
     "Moren": {
       "index": 7281,
       "owner_key": "8qyjPociFQPyYj6Vt6vzP9fNJSmMskyP9tVXpnw38smz",
-      "balance": 404202,
+      "balance": 376888,
       "membership_expire_on": 1704741306,
       "next_cert_issuable_on": 1681210625,
       "certs_received": {
         "Cordeliaze": 1708070289,
+        "regy": 1756511960,
         "Alfybe": 1744240191,
         "Nekane": 1708038464,
         "Lupunita": 1717014890,
@@ -87459,9 +89315,9 @@
     "veromada": {
       "index": 13075,
       "owner_key": "8r2ceR6vc3JJtBxt87s3ZtPAN78SxLw1w4LXugPymLo7",
-      "balance": 62912,
+      "balance": 100498,
       "membership_expire_on": 1719780247,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695091252,
       "certs_received": {
         "Sylvdesbois": 1751496396,
         "GweDesSables": 1751523845,
@@ -87474,7 +89330,7 @@
     "Angharad": {
       "index": 6980,
       "owner_key": "8r2dTtqUnP49wM9HsWRWFqd2HcCFqY6V44Y5QdD1mVZC",
-      "balance": 402749,
+      "balance": 392835,
       "membership_expire_on": 1702643132,
       "next_cert_issuable_on": 1685259487,
       "certs_received": {
@@ -87529,7 +89385,7 @@
     "jobio": {
       "index": 12913,
       "owner_key": "8rMjTzBvRQoiLAvVRVxiGsjV4Xe8Cmzhw9zTc1t7iNtT",
-      "balance": 349158,
+      "balance": 388844,
       "membership_expire_on": 1718202644,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -87543,9 +89399,9 @@
     "SoleneJoannes": {
       "index": 13185,
       "owner_key": "8rPq6jz3tSTCJkkSmJc38yFcCTrqZ8R8ccNzcg6PiPVi",
-      "balance": 47260,
+      "balance": 81946,
       "membership_expire_on": 1720660849,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695996242,
       "certs_received": {
         "MarcelleA": 1752790705,
         "MarieMas": 1752799259,
@@ -87561,14 +89417,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1644494780,
       "certs_received": {
-        "DanielVienne": 1696448216,
         "chronophonix": 1714725449
       }
     },
     "AroaVivaVoz": {
       "index": 9585,
       "owner_key": "8roej7GTuvv9bDccbUXdgvB75iF58AGpjzgNnvhuTJxt",
-      "balance": 27940,
+      "balance": 42626,
       "membership_expire_on": 1721555846,
       "next_cert_issuable_on": 1692344453,
       "certs_received": {
@@ -87609,7 +89464,7 @@
     "MarieDUHAMEL": {
       "index": 11041,
       "owner_key": "8ru1K2UFNiwkEksCYBUb8yC1CkKVNFaat25UMuApSZqV",
-      "balance": 61217,
+      "balance": 100903,
       "membership_expire_on": 1701910613,
       "next_cert_issuable_on": 1690340460,
       "certs_received": {
@@ -87628,9 +89483,9 @@
     "Annae": {
       "index": 10407,
       "owner_key": "8ryXkxUiGewEHbMdNU3mghSe5A3b7G3xHXLqoYFb1Qyn",
-      "balance": 252484,
-      "membership_expire_on": 1700134217,
-      "next_cert_issuable_on": 1693008180,
+      "balance": 254037,
+      "membership_expire_on": 1726517339,
+      "next_cert_issuable_on": 1696671505,
       "certs_received": {
         "Claudia63": 1736216755,
         "Alfybe": 1744682150,
@@ -87657,14 +89512,15 @@
         "Mireilleplantessauvages": 1748544507,
         "Isalanzarote": 1748804192,
         "loreak": 1744855234,
-        "IsaPetitsBonheurs": 1731730218
+        "IsaPetitsBonheurs": 1731730218,
+        "fania": 1757747150
       }
     },
     "Papayoche": {
       "index": 9733,
       "owner_key": "8s7r9oXw5jXaD6S7cUHjaVnatuogsuf5hX6LGU3GL2kG",
-      "balance": 342781,
-      "membership_expire_on": 1696117478,
+      "balance": 374921,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1665897303,
       "certs_received": {
         "KrineBlt": 1727676260,
@@ -87678,7 +89534,7 @@
     "Bubblemaria": {
       "index": 12769,
       "owner_key": "8sAQUo9Uzq2bgDDXzEyYNjKWTxKJmjWJNdWZX24urm6z",
-      "balance": 46096,
+      "balance": 45782,
       "membership_expire_on": 1716821032,
       "next_cert_issuable_on": 1691667072,
       "certs_received": {
@@ -87708,7 +89564,7 @@
     "Raph": {
       "index": 10758,
       "owner_key": "8sNmhXD7mcuusvyAdPT3QzHuRN8D7HRyTsBiQwtiVwTP",
-      "balance": 356661,
+      "balance": 396347,
       "membership_expire_on": 1701085050,
       "next_cert_issuable_on": 1674439527,
       "certs_received": {
@@ -87725,11 +89581,10 @@
     "NGO": {
       "index": 2359,
       "owner_key": "8sSnTPZWp6jKcSNvKqGNzwg7txaGpjaSDwcXeSxwWYxA",
-      "balance": 1325736,
+      "balance": 1365422,
       "membership_expire_on": 1701733425,
       "next_cert_issuable_on": 1693327045,
       "certs_received": {
-        "Sev": 1694157877,
         "Kamilmilka": 1726529038,
         "MGweb": 1749168365,
         "phil3455": 1745517323,
@@ -87761,7 +89616,7 @@
     "Lisa84": {
       "index": 8948,
       "owner_key": "8skahkJsKGkrFEWWBRqnLCKr53YQoRnAFNgKYFo6Jyh",
-      "balance": 295692,
+      "balance": 335378,
       "membership_expire_on": 1716071550,
       "next_cert_issuable_on": 1680581427,
       "certs_received": {
@@ -87789,7 +89644,7 @@
     "Matos28": {
       "index": 11084,
       "owner_key": "8spqmupBRTawxfXFouDEL3qZ9HVuNMpLrMkM4cjPCoeK",
-      "balance": 256686,
+      "balance": 296372,
       "membership_expire_on": 1703596499,
       "next_cert_issuable_on": 1672879906,
       "certs_received": {
@@ -87804,7 +89659,7 @@
     "Uto": {
       "index": 2570,
       "owner_key": "8sw9BWvJpqfDaPHVRe1hiwDdzBDXkuW8TcnCSB2iWfyu",
-      "balance": 492203,
+      "balance": 531889,
       "membership_expire_on": 1722457456,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -87820,9 +89675,9 @@
     "CarBro": {
       "index": 6008,
       "owner_key": "8szQ6qpwzGMmuV62GXpAWn72Zgh1eDZEdkJXyQMR4Pu3",
-      "balance": 659675,
-      "membership_expire_on": 1693863937,
-      "next_cert_issuable_on": 1685422059,
+      "balance": 697225,
+      "membership_expire_on": 1725582149,
+      "next_cert_issuable_on": 1695041194,
       "certs_received": {
         "ClairePieropan": 1741831239,
         "GastonL": 1699220732,
@@ -87835,7 +89690,7 @@
         "VidyaB77": 1743053123,
         "martineagatha": 1699127924,
         "CatherineMonastirieff": 1729299886,
-        "CapuChoeur": 1699758340,
+        "CapuChoeur": 1758439441,
         "MarcelDoppagne": 1728065835,
         "AmandineDupret": 1699045334,
         "ChristineV": 1699220732,
@@ -87854,13 +89709,12 @@
     "MayaFoucaud": {
       "index": 3631,
       "owner_key": "8t3YqqRtaFBw5uUEGg3FTBGJDtQBnYywVHYEmfGvZDgG",
-      "balance": 770884,
+      "balance": 810570,
       "membership_expire_on": 1708347865,
       "next_cert_issuable_on": 1662886317,
       "certs_received": {
         "Vero": 1754147287,
         "BabethMangas": 1717520616,
-        "luciano974": 1695748342,
         "Brunov974": 1713849988,
         "KC974": 1718819177,
         "auroreg97430": 1735490814,
@@ -87872,8 +89726,8 @@
     "Scott76": {
       "index": 386,
       "owner_key": "8t6Di3pLxxoTEfjXHjF49pNpjSTXuGEQ6BpkT75CkNb2",
-      "balance": 1667182,
-      "membership_expire_on": 1695005812,
+      "balance": 1706868,
+      "membership_expire_on": 1726324438,
       "next_cert_issuable_on": 1689444282,
       "certs_received": {
         "Theo": 1709879299,
@@ -87881,7 +89735,7 @@
         "paidge": 1705051026,
         "gerardchavanon": 1716586147,
         "AnaLil": 1698733328,
-        "DidierPapillon": 1698487263,
+        "DidierPapillon": 1757124784,
         "ctingbull": 1725349007,
         "LilAna": 1698733590,
         "Freco": 1698172021,
@@ -87891,7 +89745,7 @@
     "MorganadeAvalon": {
       "index": 6931,
       "owner_key": "8t95wjFMWbJMfsDKoDTa8ekRV3Yfr2rVZDtEoE7Vj7it",
-      "balance": 97569,
+      "balance": 137255,
       "membership_expire_on": 1703351570,
       "next_cert_issuable_on": 1689179879,
       "certs_received": {
@@ -87925,7 +89779,7 @@
     "Papouscal": {
       "index": 10779,
       "owner_key": "8tAdezCZkJGrFsYALzHzwfhACRPcRA7Gxu9g4w5Ydpzr",
-      "balance": 281043,
+      "balance": 320729,
       "membership_expire_on": 1701519411,
       "next_cert_issuable_on": 1690817544,
       "certs_received": {
@@ -87939,7 +89793,7 @@
     "arthurhash": {
       "index": 12713,
       "owner_key": "8tV437EcSb8qfTd2aAAKqMq7FaVz3aZBDLMLAWRh6jNt",
-      "balance": 45536,
+      "balance": 85222,
       "membership_expire_on": 1713818238,
       "next_cert_issuable_on": 1685677080,
       "certs_received": {
@@ -87962,9 +89816,9 @@
     "PierreAubert": {
       "index": 5109,
       "owner_key": "8tok3HmRvrYeENynYiJCzS23xo7xvRiBkXtMZopChMJw",
-      "balance": 839025,
+      "balance": 878711,
       "membership_expire_on": 1710805397,
-      "next_cert_issuable_on": 1689090277,
+      "next_cert_issuable_on": 1694350292,
       "certs_received": {
         "MarieBouny": 1701120450,
         "Artdevivre": 1745737181,
@@ -87977,7 +89831,7 @@
     "Liloo": {
       "index": 6407,
       "owner_key": "8txu2eHQEmQU93Rx95mpNDGv9SqZ6WpqMSpM2UFCs5W8",
-      "balance": 495714,
+      "balance": 535400,
       "membership_expire_on": 1709062736,
       "next_cert_issuable_on": 1664799854,
       "certs_received": {
@@ -87993,7 +89847,7 @@
     "etoile27": {
       "index": 13345,
       "owner_key": "8tys7c6Etj2SK2SszAEksw4DUz9EUrPXpPd9cGMPrmXG",
-      "balance": 23596,
+      "balance": 63282,
       "membership_expire_on": 1721671013,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -88007,7 +89861,7 @@
     "VivianeThierron": {
       "index": 7812,
       "owner_key": "8u4mXpTLgAZU4Tm6mTEbHrMtHkzyDPoTN1zN1q3NRcHN",
-      "balance": 482629,
+      "balance": 522315,
       "membership_expire_on": 1709254003,
       "next_cert_issuable_on": 1690719536,
       "certs_received": {
@@ -88021,6 +89875,22 @@
         "josemallet": 1712797250
       }
     },
+    "SylG": {
+      "index": 13658,
+      "owner_key": "8u7mm8GsKzYoXoZj6jwBV9r6N1apRgsj6t35FMBGEMHN",
+      "balance": 17936,
+      "membership_expire_on": 1724929298,
+      "next_cert_issuable_on": 1696380807,
+      "certs_received": {
+        "Psy": 1758557434,
+        "RudiB": 1758557196,
+        "Bichounette": 1758768195,
+        "levanne": 1758557196,
+        "CelesteWH": 1758521666,
+        "Nyriel": 1758766852,
+        "Heloim": 1758937706
+      }
+    },
     "ddupont": {
       "index": 6076,
       "owner_key": "8u8Hsh9oeZzXkqVhParR3du29JPthemfGWWULjKtG5k7",
@@ -88038,7 +89908,7 @@
     "Slimounet": {
       "index": 207,
       "owner_key": "8u9xKDJpmUgdkREyuX31qKQYoV9DfUXuq6r7vqwLyEGD",
-      "balance": 1947799,
+      "balance": 1987485,
       "membership_expire_on": 1706715939,
       "next_cert_issuable_on": 1681458745,
       "certs_received": {
@@ -88052,7 +89922,7 @@
     "Andrei": {
       "index": 4571,
       "owner_key": "8u9yXbSTkGbJhvXd8SQVJjc5jW1FubMuXCsawLggN6Ym",
-      "balance": 371592,
+      "balance": 1592,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1634048120,
       "certs_received": {
@@ -88062,8 +89932,8 @@
     "SylvainC": {
       "index": 10164,
       "owner_key": "8uAEEWNqq8zctBzDESE8NS4E4Wr2GmTz7GkQKMgN1WV9",
-      "balance": 330185,
-      "membership_expire_on": 1696514767,
+      "balance": 369871,
+      "membership_expire_on": 1727295298,
       "next_cert_issuable_on": 1675569831,
       "certs_received": {
         "Yol81": 1729492595,
@@ -88078,12 +89948,13 @@
     "Argon": {
       "index": 10503,
       "owner_key": "8uAKKoJdAisZyxp8ePguueierWspqWyzVwKB4TsnhyoB",
-      "balance": 308487,
-      "membership_expire_on": 1699996332,
+      "balance": 370973,
+      "membership_expire_on": 1726421864,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "PatrickFlouriot": 1731559640,
         "Thatoo": 1731557802,
+        "Titouan": 1757979881,
         "Annankha": 1731559983,
         "jfb56410": 1731572787,
         "EricRogerGarcia": 1731616649
@@ -88092,7 +89963,7 @@
     "tessa": {
       "index": 11522,
       "owner_key": "8uEWDJ9m8uMZGPPV6S23UQpgVfuUVS2SHd5cbQeP1BbJ",
-      "balance": 187503,
+      "balance": 227189,
       "membership_expire_on": 1704496861,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -88109,7 +89980,7 @@
     "ChristopheLemaire": {
       "index": 12229,
       "owner_key": "8uKWTbdKwW6mtngvGx2tV1mda2ZchXBbNQoctwwU2moi",
-      "balance": 162532,
+      "balance": 202218,
       "membership_expire_on": 1712062780,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -88131,7 +90002,7 @@
     "marijose": {
       "index": 11187,
       "owner_key": "8uU8XN9KtE9uNPZfdiZM54eTLHAR8LaTBjKWbG4Vv4Tj",
-      "balance": 342555,
+      "balance": 449141,
       "membership_expire_on": 1703027675,
       "next_cert_issuable_on": 1684501759,
       "certs_received": {
@@ -88149,7 +90020,7 @@
     "CarolineFrd": {
       "index": 1125,
       "owner_key": "8uVkoKRsU1m6LtV268yovJ8KKG6ax1yJvezied3ebpbH",
-      "balance": 1246501,
+      "balance": 1286187,
       "membership_expire_on": 1713241936,
       "next_cert_issuable_on": 1690034752,
       "certs_received": {
@@ -88177,7 +90048,7 @@
     "FabriceAutonomie": {
       "index": 10613,
       "owner_key": "8ua9j95cycFeeSe3yNrw2ZHPiyQBBVVzBCnctbLoonkv",
-      "balance": 435633,
+      "balance": 475319,
       "membership_expire_on": 1700754301,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -88190,10 +90061,24 @@
         "Bernadette29": 1732317165
       }
     },
+    "Auroise": {
+      "index": 13611,
+      "owner_key": "8ujC2TqXqyoU9YaW7WNnjTvWgFgj5BXKb6yXDTBKUiSe",
+      "balance": 25227,
+      "membership_expire_on": 1726498548,
+      "next_cert_issuable_on": 1696586038,
+      "certs_received": {
+        "LaFeeClochette": 1758265922,
+        "Caladestel": 1758262047,
+        "chantlavie60": 1758165500,
+        "Pamelaayurveda": 1758090727,
+        "AutomneIndien": 1758059897
+      }
+    },
     "Tonygilcass": {
       "index": 9508,
       "owner_key": "8uoUzfveNBggcthahWGT8v3S3eQbGL3EkBnmt9iESkH6",
-      "balance": 958589,
+      "balance": 998275,
       "membership_expire_on": 1724230217,
       "next_cert_issuable_on": 1678622862,
       "certs_received": {
@@ -88238,7 +90123,7 @@
     "ClaireNangyor": {
       "index": 9222,
       "owner_key": "8uqrLXncNeUuTYdaNGkksK6BR6QJmQQyK8tNDiqsKEUs",
-      "balance": 279159,
+      "balance": 318845,
       "membership_expire_on": 1718046795,
       "next_cert_issuable_on": 1673027235,
       "certs_received": {
@@ -88263,9 +90148,9 @@
     "CarmenYogaMaa": {
       "index": 6406,
       "owner_key": "8uy7pLxjqT3Bp9DodF5U3Znh336pfkzx8mWgswRNg838",
-      "balance": 67753,
+      "balance": 50449,
       "membership_expire_on": 1724721429,
-      "next_cert_issuable_on": 1689768313,
+      "next_cert_issuable_on": 1694678498,
       "certs_received": {
         "RosaliaHall": 1702417209,
         "Noelia": 1702417209,
@@ -88273,10 +90158,12 @@
         "Estherflamenki": 1753930638,
         "Ayllon": 1702417209,
         "airamoy2810": 1702519865,
+        "VictorTorre": 1759608143,
         "NancyOrtiz": 1727893337,
         "Didi": 1755455114,
         "Amaralar": 1728883946,
         "Santi_ajedrez": 1735007973,
+        "Charo": 1759384687,
         "MAC": 1702579624,
         "fania": 1702417209
       }
@@ -88308,11 +90195,12 @@
     "CapuChoeur": {
       "index": 5583,
       "owner_key": "8vH5LLZmKnP7kKi3qzfUh59sG2BTVXwET5kZr6HaTCuR",
-      "balance": 675025,
+      "balance": 605911,
       "membership_expire_on": 1717637445,
-      "next_cert_issuable_on": 1693212432,
+      "next_cert_issuable_on": 1696471626,
       "certs_received": {
         "Nouchka1": 1754622062,
+        "Tournesol": 1757870336,
         "Basile": 1723851254,
         "Gayelle": 1715500715,
         "oliviersimonon": 1754324619,
@@ -88320,26 +90208,27 @@
         "CarBro": 1699842828,
         "AmandineDupret": 1696923598,
         "fanfan": 1754202643,
+        "Nomieh": 1757342093,
         "AnneD": 1700967940,
+        "Meubleu": 1756961748,
         "Pierrotesla": 1714458630,
         "TailleDouce": 1752550100,
         "PeterKD": 1713216307,
-        "Cybelle-Prune": 1752015064
+        "Cybelle-Prune": 1752015064,
+        "ArianeRiveros": 1756943607
       }
     },
     "Jean-ClaudeG": {
       "index": 2877,
       "owner_key": "8vPAa8HT4uiyUJ67zqW92w3tpQXzoDStdqhSyncCPZec",
-      "balance": 1369883,
+      "balance": 1409569,
       "membership_expire_on": 1700581535,
       "next_cert_issuable_on": 1686496471,
       "certs_received": {
         "Shougababylone": 1699473502,
-        "Kali": 1693991051,
         "ElioIG": 1731305148,
         "LaurenceIG": 1731845288,
         "Essitam": 1732095588,
-        "thalie": 1696024985,
         "MIG": 1731553932,
         "CVM": 1697821538,
         "zabel": 1732907725
@@ -88362,8 +90251,8 @@
     "WhiteLily": {
       "index": 10606,
       "owner_key": "8vSrtixiB52mpdKmNyumzbQZQr85HLzpwc7jDpLmQnvp",
-      "balance": 290133,
-      "membership_expire_on": 1701214369,
+      "balance": 275319,
+      "membership_expire_on": 1727621611,
       "next_cert_issuable_on": 1688478430,
       "certs_received": {
         "PascalEnden": 1732846951,
@@ -88388,7 +90277,7 @@
     "SicouJess": {
       "index": 6729,
       "owner_key": "8vdcCUTF6Pwz2Kf15v5HnAYBzLp1PzELHajauCSgEorE",
-      "balance": 435357,
+      "balance": 475043,
       "membership_expire_on": 1698054609,
       "next_cert_issuable_on": 1657352424,
       "certs_received": {
@@ -88407,9 +90296,9 @@
     "Messangebleu77": {
       "index": 11987,
       "owner_key": "8vgpNSYTBGUaGFWD8eTi5Lu2C4jMZ7byykMWQR5SXCbR",
-      "balance": 183997,
+      "balance": 223683,
       "membership_expire_on": 1709920468,
-      "next_cert_issuable_on": 1687932997,
+      "next_cert_issuable_on": 1694086453,
       "certs_received": {
         "Stefpo170": 1741488779,
         "Brigitte77": 1741933711,
@@ -88443,7 +90332,7 @@
     "Pascalounetberger": {
       "index": 6218,
       "owner_key": "8wBxNuVEY3X7HDx6xzFu1ss4KMVxNwfU1Apj3ovqSL6X",
-      "balance": 566909,
+      "balance": 591595,
       "membership_expire_on": 1697456257,
       "next_cert_issuable_on": 1690548131,
       "certs_received": {
@@ -88459,9 +90348,9 @@
     "Edramax": {
       "index": 12826,
       "owner_key": "8wCrFnXuzpzJdsUTEKgcCeRqiFuissNVkibadg3ENC71",
-      "balance": 252748,
+      "balance": 130834,
       "membership_expire_on": 1715043150,
-      "next_cert_issuable_on": 1689647289,
+      "next_cert_issuable_on": 1696066431,
       "certs_received": {
         "ClaudiaR": 1749182027,
         "PascalFon": 1752538312,
@@ -88475,8 +90364,8 @@
     "CarineB": {
       "index": 9469,
       "owner_key": "8wGXwaKac5a4Ey4brqfitw2mBBzdy3X4P3U3C1HP1NMw",
-      "balance": 421372,
-      "membership_expire_on": 1693848713,
+      "balance": 460010,
+      "membership_expire_on": 1725549244,
       "next_cert_issuable_on": 1690208108,
       "certs_received": {
         "Frizouille": 1725847053,
@@ -88492,9 +90381,9 @@
     "Yosoy": {
       "index": 10155,
       "owner_key": "8wNFDDk6sS1oDh9oAbFbn28hUCaafST3Pjqfs1nRQq9c",
-      "balance": 309444,
+      "balance": 349130,
       "membership_expire_on": 1724671888,
-      "next_cert_issuable_on": 1692543248,
+      "next_cert_issuable_on": 1693186288,
       "certs_received": {
         "absalon2": 1729987417,
         "VALRI34": 1732669798,
@@ -88508,7 +90397,7 @@
     "MargalidaJeronia": {
       "index": 11275,
       "owner_key": "8wNg9CJ7fHB9CpVcKAPPonQRuitCPoTJB4gFZPYJMY29",
-      "balance": 30936,
+      "balance": 29203,
       "membership_expire_on": 1705706497,
       "next_cert_issuable_on": 1693131273,
       "certs_received": {
@@ -88516,6 +90405,7 @@
         "Sergio": 1737264097,
         "catalinons": 1737264097,
         "Francina": 1737265186,
+        "MariantoniaHuguet": 1756714528,
         "tuttle": 1737264097,
         "eno": 1737264912
       }
@@ -88523,7 +90413,7 @@
     "Ayamayoumi": {
       "index": 11179,
       "owner_key": "8wPZ8cZZPv61WzrF1BkwA4o2Tmb93covaiBL2tufZYYQ",
-      "balance": 364504,
+      "balance": 404190,
       "membership_expire_on": 1700257474,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -88549,22 +90439,18 @@
       "balance": 376035,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1648520835,
-      "certs_received": {
-        "Chlea2010": 1696686808
-      }
+      "certs_received": {}
     },
     "ElodiePichereau": {
       "index": 2769,
       "owner_key": "8wd1GnzaJHLajAjP2jUaZ1PJgFGFKVvzNY65gXyLuxz4",
-      "balance": 1697658,
-      "membership_expire_on": 1696004186,
+      "balance": 1728720,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1647859514,
       "certs_received": {
-        "Bcabon": 1696618366,
         "VirginieGautier": 1712909169,
         "Gregory": 1698696387,
         "TheodoreMACRAIGNE": 1697155010,
-        "Recycleur53": 1694153429,
         "MelanieCapelli": 1700367583,
         "JeandMeryMAYOPARRA": 1697153979,
         "elo53die": 1713388867,
@@ -88573,7 +90459,6 @@
         "Alain-Plantes": 1701891527,
         "Jean": 1701244606,
         "SteveMacraigne": 1697155353,
-        "AbelGilles": 1694817704,
         "Beluganne": 1709285007,
         "NoellePiquet": 1700097950
       }
@@ -88581,9 +90466,9 @@
     "Omereya": {
       "index": 3564,
       "owner_key": "8weJczNaJEpAUz8rjBR9dGrpzEiFNvuN1KMFx41VE6RA",
-      "balance": 1222067,
+      "balance": 1261753,
       "membership_expire_on": 1707008495,
-      "next_cert_issuable_on": 1679992225,
+      "next_cert_issuable_on": 1694770151,
       "certs_received": {
         "Beasejour": 1728448485,
         "rockwater": 1717367460,
@@ -88625,8 +90510,8 @@
     "ENO": {
       "index": 6544,
       "owner_key": "8wvbEKDpMmKSq1nYzosktubipwk6yC1KiVuGr6sJmUZJ",
-      "balance": 986352,
-      "membership_expire_on": 1698509900,
+      "balance": 1063130,
+      "membership_expire_on": 1725095251,
       "next_cert_issuable_on": 1691750375,
       "certs_received": {
         "nashira": 1704256301,
@@ -88635,6 +90520,7 @@
         "HugoTrentesaux": 1750277161,
         "MartiGraef": 1723172272,
         "helena05": 1724790935,
+        "Dorf67": 1756884355,
         "TheoF": 1712695141,
         "batata": 1703812878,
         "Anthoxanthum67": 1703658946,
@@ -88643,6 +90529,7 @@
         "Sonik": 1714429809,
         "kalimheros": 1714413777,
         "davidbp845": 1750972316,
+        "florian": 1758905151,
         "Als_67": 1741109949,
         "Loris_T": 1729961585,
         "GeraldineGarrigues": 1730684441,
@@ -88667,7 +90554,7 @@
     "Medouna": {
       "index": 9996,
       "owner_key": "8wwqQ9dNtgn3MW3QMbDZdq1dQAqEtfBZkBRHsiZrtqz9",
-      "balance": 321611,
+      "balance": 346297,
       "membership_expire_on": 1724590156,
       "next_cert_issuable_on": 1686354548,
       "certs_received": {
@@ -88683,8 +90570,8 @@
     "Laure-Anne-de-Moirans": {
       "index": 7952,
       "owner_key": "8wz7wmfaKEMnji9Bxr6A88Q6b3ruEcYkToGDoH7gxPMd",
-      "balance": 452426,
-      "membership_expire_on": 0,
+      "balance": 495656,
+      "membership_expire_on": 1726522134,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "LilianBonnardon": 1714785052,
@@ -88705,7 +90592,7 @@
     "Stella103": {
       "index": 12538,
       "owner_key": "8xDGrLQrJp1UfsUW4rL38Ky3vVc16US2y8n6dhYWd82S",
-      "balance": 121392,
+      "balance": 161078,
       "membership_expire_on": 1713829846,
       "next_cert_issuable_on": 1686756833,
       "certs_received": {
@@ -88727,7 +90614,7 @@
     "samsam": {
       "index": 11091,
       "owner_key": "8xQCDLm2NFSqr9u8Jn1SVYrrB95XBQrMnEauc368pScK",
-      "balance": 164182,
+      "balance": 136593,
       "membership_expire_on": 1703525957,
       "next_cert_issuable_on": 1680517181,
       "certs_received": {
@@ -88741,7 +90628,7 @@
     "IrisSoleil": {
       "index": 9716,
       "owner_key": "8xQSMVeNSZySwPRTwYnFjoLHHCBzLrZScyoJ7zUj5Z2G",
-      "balance": 363291,
+      "balance": 400377,
       "membership_expire_on": 1724549735,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -88757,7 +90644,7 @@
     "marie3106": {
       "index": 9319,
       "owner_key": "8xS5MWP8VbgmdFp6XrGkqPQ6xLfdU2LQjyzqgBDu2Y63",
-      "balance": 171656,
+      "balance": 196934,
       "membership_expire_on": 1717463749,
       "next_cert_issuable_on": 1686311859,
       "certs_received": {
@@ -88786,7 +90673,7 @@
     "Caro18": {
       "index": 12365,
       "owner_key": "8xaDdHWLpowevFhiUqJH5MAXnADy4hq5UAWJfNTtWRSB",
-      "balance": 147316,
+      "balance": 187002,
       "membership_expire_on": 1712775299,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -88803,7 +90690,7 @@
     "Toniojacobo": {
       "index": 8756,
       "owner_key": "8xcM4AJkjgk8ePLavyRcQWb5dn6E3STaQX949vVmWUfk",
-      "balance": 460759,
+      "balance": 500445,
       "membership_expire_on": 1714484484,
       "next_cert_issuable_on": 1688603095,
       "certs_received": {
@@ -88837,7 +90724,7 @@
     "Shanti": {
       "index": 8813,
       "owner_key": "8xjL8jCRiphE7ug44ouoac2wj23aPmMED75hNG7tXsTB",
-      "balance": 439976,
+      "balance": 465662,
       "membership_expire_on": 1720415485,
       "next_cert_issuable_on": 1677489384,
       "certs_received": {
@@ -88859,7 +90746,7 @@
     "Jeandularzac": {
       "index": 10761,
       "owner_key": "8xsTsAqUBPLzfqpiBAVMKpw2SUV6eJ2RPcaFMRVBL6Jy",
-      "balance": 297102,
+      "balance": 336788,
       "membership_expire_on": 1701720022,
       "next_cert_issuable_on": 1673177338,
       "certs_received": {
@@ -88876,8 +90763,8 @@
     "Pepita": {
       "index": 10123,
       "owner_key": "8xsaxDxdZUzqTjJt5VA8CYpUubLCYPCyiq2Xp9NnEs1z",
-      "balance": 446369,
-      "membership_expire_on": 1697915555,
+      "balance": 466735,
+      "membership_expire_on": 1727718437,
       "next_cert_issuable_on": 1687695752,
       "certs_received": {
         "celineR": 1749950898,
@@ -88895,7 +90782,7 @@
     "Nueva-Era": {
       "index": 11394,
       "owner_key": "8xx1vf6WxjcvzFnXBR6GuYV3vpeeWkonCM9uxmwJr8Fs",
-      "balance": 22763,
+      "balance": 19086,
       "membership_expire_on": 1705529098,
       "next_cert_issuable_on": 1688615630,
       "certs_received": {
@@ -88912,7 +90799,7 @@
     "LunedeGarance84": {
       "index": 11217,
       "owner_key": "8y14EDDYpR1MTfi4Yf1BmhGfhCTWJqRuCwaoW2BhtPs5",
-      "balance": 316037,
+      "balance": 355723,
       "membership_expire_on": 1705104358,
       "next_cert_issuable_on": 1680231034,
       "certs_received": {
@@ -88927,7 +90814,7 @@
     "Soso72": {
       "index": 10887,
       "owner_key": "8y6M7h9L3SmjQgb5QhwgzWwkveBCsvBnYen3Zkqw8CE9",
-      "balance": 275730,
+      "balance": 315416,
       "membership_expire_on": 1702821515,
       "next_cert_issuable_on": 1684839636,
       "certs_received": {
@@ -88959,8 +90846,8 @@
     "Nadette5557": {
       "index": 10022,
       "owner_key": "8yCY1G7Kw3QpKrrXutjKCMWeVAkPgBLKQAietrMXG5Qn",
-      "balance": 261993,
-      "membership_expire_on": 1697835721,
+      "balance": 248679,
+      "membership_expire_on": 1725362037,
       "next_cert_issuable_on": 1683547828,
       "certs_received": {
         "Didierlife84": 1729396407,
@@ -88974,7 +90861,7 @@
     "amkway": {
       "index": 10374,
       "owner_key": "8yE5ymSevnpjWdDnwEsGNzPBRG7dgQstgAw5nLibmdFa",
-      "balance": 256459,
+      "balance": 296145,
       "membership_expire_on": 1699368260,
       "next_cert_issuable_on": 1674410253,
       "certs_received": {
@@ -89000,12 +90887,13 @@
     "SylvieT": {
       "index": 4735,
       "owner_key": "8yVJiLAZgi3QMFcRzqAvMAxetnFtyFPsYx6qvjanDtnA",
-      "balance": 304668,
-      "membership_expire_on": 1699456221,
-      "next_cert_issuable_on": 1688297991,
+      "balance": 304454,
+      "membership_expire_on": 1725890877,
+      "next_cert_issuable_on": 1696584566,
       "certs_received": {
         "Fiorenza11": 1701811557,
         "Crystal": 1737915882,
+        "BlandineGABE": 1758560854,
         "JoelleTAILLANDIER": 1718774421,
         "AnneChaimbault": 1700723019,
         "catrelax11": 1752249985,
@@ -89015,12 +90903,12 @@
         "Marie09": 1736300774,
         "Etoiledunord": 1730616165,
         "ChristineRaphael": 1751053668,
-        "ASHTARA": 1694819200,
         "PierreAubert": 1701120450,
         "LoisG": 1701405699,
         "Pectine": 1740338381,
         "ManuVille": 1736629606,
         "Lindien": 1729659840,
+        "DBrrull": 1759387641,
         "lucioles": 1705880562,
         "Nyttliv": 1706218052,
         "RitaWilson": 1756492365,
@@ -89032,7 +90920,7 @@
     "c0c0": {
       "index": 10911,
       "owner_key": "8yWg6RhjWRxNxAojDAxNvNjJG5Wg5DWMe6ZeD5TGDXSD",
-      "balance": 276671,
+      "balance": 316357,
       "membership_expire_on": 1701112198,
       "next_cert_issuable_on": 1671529566,
       "certs_received": {
@@ -89046,21 +90934,23 @@
     "MoraneDicato26": {
       "index": 11456,
       "owner_key": "8yWjUEowTbcYJyKueNC4y3KVzgZoKTjfPLN1zJn4mHWD",
-      "balance": 222998,
+      "balance": 260684,
       "membership_expire_on": 1706912881,
-      "next_cert_issuable_on": 1688289934,
+      "next_cert_issuable_on": 1696050223,
       "certs_received": {
         "HelloSunshine": 1738536945,
         "Annick84": 1738488127,
+        "ChrisAndre": 1758592814,
         "Mesamours84": 1738487389,
         "MIZOU26": 1738560264,
+        "Calou26": 1758587691,
         "Tony26": 1738560759
       }
     },
     "Eolia": {
       "index": 11988,
       "owner_key": "8yZvFQi3WSChQ92BsbW7jKotnvbfyPKwwQWbTMAPKhgb",
-      "balance": 252665,
+      "balance": 292351,
       "membership_expire_on": 1710376111,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -89075,7 +90965,7 @@
     "BrigitteC": {
       "index": 8648,
       "owner_key": "8ya9G4o9NgdT65hvWx95eu5JLpouLHJd8AVXaKsMbdJW",
-      "balance": 423267,
+      "balance": 462953,
       "membership_expire_on": 1717507837,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -89091,7 +90981,7 @@
     "Icobonhomme": {
       "index": 7080,
       "owner_key": "8yqq2sYa9Tafa4S3bHs92sVvAwS7NQxyRmv8Sb16w5DQ",
-      "balance": 646599,
+      "balance": 725285,
       "membership_expire_on": 1700655272,
       "next_cert_issuable_on": 1692436326,
       "certs_received": {
@@ -89147,7 +91037,7 @@
     "Katz44": {
       "index": 7739,
       "owner_key": "8yrea4h9TBGyviasiLVNUXr3v41ZZDPfcs94hqJnpRRA",
-      "balance": 521313,
+      "balance": 560999,
       "membership_expire_on": 1710004844,
       "next_cert_issuable_on": 1667526671,
       "certs_received": {
@@ -89185,9 +91075,9 @@
     "AurElieSkuld": {
       "index": 11669,
       "owner_key": "8yyxpAQLyZUZizbDtkYnNUL1hiRKRFAXVp5pSurtr7gh",
-      "balance": 152309,
+      "balance": 154095,
       "membership_expire_on": 1706103508,
-      "next_cert_issuable_on": 1684966341,
+      "next_cert_issuable_on": 1696253245,
       "certs_received": {
         "FenderChristophe": 1739230976,
         "Anthoxanthum67": 1740020245,
@@ -89202,17 +91092,30 @@
         "LudovicMJC": 1739393926
       }
     },
+    "PommeBernard": {
+      "index": 13724,
+      "owner_key": "8z6ApifAU5FdhpKffjaQPL9oaH1Y3Mz47v4Ux6ihMCoG",
+      "balance": 496390,
+      "membership_expire_on": 1727726920,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Vanille": 1759335248,
+        "Anna84": 1759284765,
+        "Malaga": 1759381467,
+        "Pogona": 1759285009,
+        "AmoghaMarie": 1759284765
+      }
+    },
     "samyourte": {
       "index": 2894,
       "owner_key": "8zAoWsEcPpVrXYj6zXrQD7oYkYiWMYcYDQsjKsAGzrsb",
-      "balance": 1397913,
-      "membership_expire_on": 1696106798,
+      "balance": 1460053,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668965257,
       "certs_received": {
-        "Anthonycormier": 1696742963,
+        "Anthonycormier": 1756658848,
         "DonQuiche": 1711677505,
         "Patlutine": 1699817568,
-        "Droudrou": 1696622150,
         "yvesmignotte": 1700619178,
         "BorisPuyet": 1709358668
       }
@@ -89233,10 +91136,24 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Jode57": {
+      "index": 13758,
+      "owner_key": "8zJvnBT7RH2bXjTKid41UGmvx1nxKJAaCch5UX6eSu5d",
+      "balance": 488620,
+      "membership_expire_on": 1728235148,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Gemeff": 1759792748,
+        "jpeupagrando": 1759804066,
+        "Francki": 1759793147,
+        "Peps": 1759792748,
+        "Numerus47": 1759793147
+      }
+    },
     "NathanGuignard": {
       "index": 4780,
       "owner_key": "8zMbP98ZQeeSzTcVX737nGkfoMz5AqSHtX1pzs8vvHSJ",
-      "balance": 940098,
+      "balance": 979784,
       "membership_expire_on": 1711578816,
       "next_cert_issuable_on": 1673851191,
       "certs_received": {
@@ -89250,8 +91167,8 @@
     "AfricaFreak": {
       "index": 10609,
       "owner_key": "8zSwCBj3XxoDNtqP5JfF1cRdBAXdKnaMQw4FgzBYkfkL",
-      "balance": 264962,
-      "membership_expire_on": 1701032782,
+      "balance": 304648,
+      "membership_expire_on": 1727536457,
       "next_cert_issuable_on": 1680513022,
       "certs_received": {
         "Etipol61": 1732832715,
@@ -89267,9 +91184,7 @@
       "balance": 689222,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1634769805,
-      "certs_received": {
-        "Llorens": 1693944203
-      }
+      "certs_received": {}
     },
     "Yoline": {
       "index": 8161,
@@ -89289,9 +91204,9 @@
     "Essitam": {
       "index": 8519,
       "owner_key": "8zZ5cyX6hdrMiwPQYjpM5PQ4HFvPy3JaWgCAKt83cbhc",
-      "balance": 567626,
+      "balance": 607312,
       "membership_expire_on": 1710966537,
-      "next_cert_issuable_on": 1689957877,
+      "next_cert_issuable_on": 1694618864,
       "certs_received": {
         "Soyouz": 1718422434,
         "Choco": 1717172208,
@@ -89301,15 +91216,18 @@
         "Lise": 1750920350,
         "Jean-ClaudeG": 1734340681,
         "Bruno81": 1718098977,
+        "Alex34": 1755123306,
         "MIG": 1718092013,
         "CVM": 1715984035,
-        "Pommedapi": 1719487156
+        "enchemin": 1755122611,
+        "Pommedapi": 1719487156,
+        "Nico34": 1755125854
       }
     },
     "JeanPi4": {
       "index": 12503,
       "owner_key": "8zb1vDcoQaLNeJVnTn2k14GwmKR2worCKsfVZgtD7a7D",
-      "balance": 80396,
+      "balance": 120082,
       "membership_expire_on": 1713841293,
       "next_cert_issuable_on": 1684570598,
       "certs_received": {
@@ -89323,7 +91241,7 @@
     "wilfried": {
       "index": 11970,
       "owner_key": "8zbEX1dSXPsE4tQ49N95Zt9vE4JaPgPfMuZtLpjUsUw8",
-      "balance": 177556,
+      "balance": 217242,
       "membership_expire_on": 1709758892,
       "next_cert_issuable_on": 1679013735,
       "certs_received": {
@@ -89344,18 +91262,18 @@
       "certs_received": {
         "VirginieGautier": 1714347767,
         "Christal": 1718301815,
-        "PatrickGilles": 1696095808,
         "DaroussinB": 1724389847
       }
     },
     "Fabrice_T": {
       "index": 8935,
       "owner_key": "8zeVjy1sj5GArcnMyyDGwJvMnsnqN9SxW4RE8mpc2CK6",
-      "balance": 296933,
+      "balance": 335619,
       "membership_expire_on": 1715813150,
-      "next_cert_issuable_on": 1671353839,
+      "next_cert_issuable_on": 1694753932,
       "certs_received": {
         "FenderChristophe": 1723279413,
+        "Inanna": 1757265804,
         "helena05": 1724790935,
         "ENO": 1720801566,
         "kalimheros": 1721635225,
@@ -89371,7 +91289,7 @@
     "sweety": {
       "index": 9330,
       "owner_key": "8zfQwyVGMsABeabXk2yfdfTv6Ps1aSZ65o5B3MRaguvR",
-      "balance": 243129,
+      "balance": 225129,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1685370822,
       "certs_received": {
@@ -89392,7 +91310,7 @@
     "darben87": {
       "index": 3962,
       "owner_key": "8zzMobt7aSu3DND7cLyrJJ1UeRW7vbntrT7kxKHdpeBW",
-      "balance": 661899,
+      "balance": 701585,
       "membership_expire_on": 1709095514,
       "next_cert_issuable_on": 1677609914,
       "certs_received": {
@@ -89403,7 +91321,6 @@
         "JerryBB": 1727725457,
         "Dekoakonkoz": 1722587282,
         "Lililanguage": 1708708032,
-        "ClementineLaborderie": 1696643347,
         "Fred": 1735358985,
         "Libertant": 1721800796,
         "aya": 1734937629,
@@ -89427,7 +91344,7 @@
     "isa": {
       "index": 12532,
       "owner_key": "91CDszqPFGz3fZfHwkWyPLDYvK2cujruQC9Pn9HgUSpu",
-      "balance": 202792,
+      "balance": 242478,
       "membership_expire_on": 1714340115,
       "next_cert_issuable_on": 1690857083,
       "certs_received": {
@@ -89446,9 +91363,9 @@
     "ChristineRenier": {
       "index": 6581,
       "owner_key": "91HNfhcuDQjc8jYMs4Qnnn7rhSr2hNXAoLh2cqgz5Le8",
-      "balance": 185502,
+      "balance": 217190,
       "membership_expire_on": 1723856366,
-      "next_cert_issuable_on": 1691766486,
+      "next_cert_issuable_on": 1695223870,
       "certs_received": {
         "kapis": 1722370233,
         "jaenyph": 1702435141,
@@ -89467,6 +91384,7 @@
         "MarieBertheRanwet": 1738695035,
         "remol": 1739323656,
         "Vimpy": 1739429197,
+        "Vinciane": 1758092192,
         "MichelCoomans5575": 1702509375,
         "Stefi12": 1727387972,
         "NataSha": 1734395650,
@@ -89490,8 +91408,8 @@
     "malou": {
       "index": 4329,
       "owner_key": "91Hyjg8itWhi7yJ3Jb5qCw9gw2sUfG1BLwXjDKfE6pdt",
-      "balance": 977766,
-      "membership_expire_on": 0,
+      "balance": 1009976,
+      "membership_expire_on": 1725641344,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
         "will46": 1744869694,
@@ -89507,14 +91425,14 @@
     "XavierALBERT": {
       "index": 5816,
       "owner_key": "91KQcg7yo5rK4VTggrqQ6HsSw6ZFfUQCH8CdE2sgX8ve",
-      "balance": 1003502,
+      "balance": 1043188,
       "membership_expire_on": 1698410516,
       "next_cert_issuable_on": 1669858718,
       "certs_received": {
         "Bcabon": 1697235230,
         "EveJOURDIN": 1697235669,
         "MarieLaureGruauGeslot": 1697245015,
-        "AnneAmbles": 1696836436,
+        "AnneAmbles": 1757755638,
         "SergeMascaro": 1697237093,
         "Francisco": 1697074910,
         "Floalchimistefee": 1699489101,
@@ -89524,7 +91442,7 @@
     "CarmeLilum": {
       "index": 8405,
       "owner_key": "91MQzFGx8viMXZB1wQxbmduWeZrmvM4a2fpWCeVq481h",
-      "balance": 359483,
+      "balance": 449669,
       "membership_expire_on": 1711471502,
       "next_cert_issuable_on": 1690248987,
       "certs_received": {
@@ -89563,7 +91481,7 @@
     "ArnaudFleuri": {
       "index": 458,
       "owner_key": "91NrDFF7QZFgow37gp6MBTwmvgueqK2uxerjjkBFvM2J",
-      "balance": 2025105,
+      "balance": 2064791,
       "membership_expire_on": 1705943488,
       "next_cert_issuable_on": 1692617524,
       "certs_received": {
@@ -89590,10 +91508,8 @@
         "MartinFleuri": 1697218166,
         "JoW": 1700000453,
         "AlexisCharrier": 1720150458,
-        "lumiere34": 1696192735,
         "VanessaVigier": 1709744225,
         "louison": 1701053655,
-        "MaxenceFournaux": 1694062907,
         "NolanRoni": 1703027440,
         "Lounasaara": 1709443086,
         "Milinette16": 1704679956
@@ -89612,9 +91528,9 @@
     "Audeko": {
       "index": 9217,
       "owner_key": "91bX25cvv1xrTyh7cyPKCCr1xLnpwUADcyYfGTgQLbvx",
-      "balance": 519666,
+      "balance": 559352,
       "membership_expire_on": 1719453390,
-      "next_cert_issuable_on": 1684868902,
+      "next_cert_issuable_on": 1696389038,
       "certs_received": {
         "Alfybe": 1723412936,
         "Petitarin": 1733635462,
@@ -89634,7 +91550,7 @@
     "Ingriddp": {
       "index": 11747,
       "owner_key": "91kzxRbBZBjxWc9qikHPL9ymMAxPT1WirWSLExS3pvnF",
-      "balance": 201059,
+      "balance": 240745,
       "membership_expire_on": 1708520255,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -89650,7 +91566,7 @@
     "Saporteta": {
       "index": 11023,
       "owner_key": "91nWrfe3jMRgTQxUcb49qFBmRLKxKG3dRVhRsB1VzheN",
-      "balance": 451396,
+      "balance": 500926,
       "membership_expire_on": 1703200410,
       "next_cert_issuable_on": 1690521124,
       "certs_received": {
@@ -89678,7 +91594,7 @@
     "AlGabal": {
       "index": 10103,
       "owner_key": "91tG67cAX3CoYRqxW4XxLsivGdxMjukobWCDMJBNo17e",
-      "balance": 438654,
+      "balance": 478340,
       "membership_expire_on": 1698331975,
       "next_cert_issuable_on": 1689441873,
       "certs_received": {
@@ -89706,8 +91622,8 @@
     "MathildeHourlier": {
       "index": 9669,
       "owner_key": "921RGSQwCn4djqeSy1UCQKtG58Kbkwz7D4qvBgGjyYh6",
-      "balance": 360468,
-      "membership_expire_on": 1695151265,
+      "balance": 400154,
+      "membership_expire_on": 1726756526,
       "next_cert_issuable_on": 1665729224,
       "certs_received": {
         "Marysep": 1726772830,
@@ -89722,7 +91638,7 @@
     "YvanTheaudin": {
       "index": 7506,
       "owner_key": "926ZHysaGqvHVu6Goaku2FKzS7AEb8uDuVnN1zTBGFNU",
-      "balance": 499602,
+      "balance": 506860,
       "membership_expire_on": 1705343119,
       "next_cert_issuable_on": 1673860993,
       "certs_received": {
@@ -89737,7 +91653,7 @@
     "Friedchen": {
       "index": 12987,
       "owner_key": "926uCuvxZbeeMmEznoCGfFYQmnPsdHgjHKNoMYAAVYyW",
-      "balance": 131656,
+      "balance": 171342,
       "membership_expire_on": 1716162439,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -89753,17 +91669,15 @@
     "Maelline": {
       "index": 2836,
       "owner_key": "928haBW2XnqDgAE98TMnLMpV54ksWcip45Rx1kYUt34E",
-      "balance": 914304,
-      "membership_expire_on": 1712262322,
+      "balance": 943210,
+      "membership_expire_on": 1727872700,
       "next_cert_issuable_on": 1686441905,
       "certs_received": {
         "Vee": 1697056000,
-        "Lonel": 1695422329,
         "Laureline": 1713039208,
-        "Aneuf": 1694740535,
+        "Aneuf": 1759432238,
         "MoulinMuriel": 1727811111,
-        "ChristopheRobine": 1709490542,
-        "Maddy": 1695406533
+        "ChristopheRobine": 1709490542
       }
     },
     "LeoLeo": {
@@ -89772,9 +91686,7 @@
       "balance": 699569,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1635479879,
-      "certs_received": {
-        "Caropirate": 1696212746
-      }
+      "certs_received": {}
     },
     "kyroyal": {
       "index": 5607,
@@ -89787,7 +91699,7 @@
     "Flow34": {
       "index": 12854,
       "owner_key": "92J2kuYCrxRAZGNCdbJMHu1YqGoihfwBJFQTTqxY9D2N",
-      "balance": 90926,
+      "balance": 130612,
       "membership_expire_on": 1716988955,
       "next_cert_issuable_on": 1693107928,
       "certs_received": {
@@ -89803,7 +91715,7 @@
     "xaviercc": {
       "index": 540,
       "owner_key": "92UU85KeAXuVjvnfyXWxPkcTSeE68Ftt4D53tJVVNrgN",
-      "balance": 2364409,
+      "balance": 2404095,
       "membership_expire_on": 1709041804,
       "next_cert_issuable_on": 1677556204,
       "certs_received": {
@@ -89850,7 +91762,7 @@
     "Milvus": {
       "index": 4311,
       "owner_key": "92fAo83rRe3X11G4J3P4TXncHtQECPb4XrHs94gQZ3Ku",
-      "balance": 838640,
+      "balance": 878326,
       "membership_expire_on": 1715803303,
       "next_cert_issuable_on": 1666017333,
       "certs_received": {
@@ -89865,21 +91777,13 @@
     "StephaneDunNotreMonde": {
       "index": 5673,
       "owner_key": "92fTVvpcwkSkYuoNpkWPVBPb1bLTKVQZbZrUdnJNMj16",
-      "balance": 494437,
+      "balance": 524123,
       "membership_expire_on": 1722632905,
-      "next_cert_issuable_on": 1691409097,
+      "next_cert_issuable_on": 1694479776,
       "certs_received": {
         "Yannis": 1754790296,
-        "AlexDurain": 1694417583,
-        "LolieRu": 1694117968,
-        "Moineau": 1694058875,
-        "danielbo": 1694290806,
-        "Lill": 1694400258,
         "Monique2605": 1730063821,
         "Margo": 1755218580,
-        "OlivierRed": 1694809451,
-        "YannickGuennou": 1694293893,
-        "domimeert": 1696061387,
         "Coco": 1751489964,
         "NancyTalavera": 1745047383
       }
@@ -89903,15 +91807,16 @@
     "MiguelOssa": {
       "index": 11580,
       "owner_key": "92mvHqBYPySfH6aUvesisw5GgSGkZjQo7a9q8id4EekM",
-      "balance": 72927,
+      "balance": 92201,
       "membership_expire_on": 1707669992,
-      "next_cert_issuable_on": 1688882110,
+      "next_cert_issuable_on": 1694587961,
       "certs_received": {
         "SandrineMala": 1739311700,
         "AfricadeHarmonia": 1739258656,
         "GabrielCohergne": 1739227592,
         "AlexanderT": 1751540612,
         "RainbowQueen": 1739227592,
+        "mariabiodanza": 1757378158,
         "Schar": 1739227840,
         "Anadi": 1739227840,
         "Aurora-SandraMogo": 1748236194
@@ -89947,12 +91852,13 @@
     "RikdeVaison": {
       "index": 6477,
       "owner_key": "92vHzLdGcsznUFZMYS8jCJSu6nfwzPbmFNVNrHt1evwu",
-      "balance": 649817,
+      "balance": 689503,
       "membership_expire_on": 1715503430,
-      "next_cert_issuable_on": 1645933441,
+      "next_cert_issuable_on": 1695433312,
       "certs_received": {
         "angelight": 1703282842,
         "Bettylisameli": 1703205491,
+        "Wendy1964": 1758478132,
         "MAIMEE": 1703225032,
         "MoniqueBlein": 1703278983,
         "AnneT": 1703138011
@@ -89969,9 +91875,9 @@
     "Meiluce": {
       "index": 6616,
       "owner_key": "92yyS2c7oDo97f8cbym9aWxqbpnNhHq8FkceKjWkyDFN",
-      "balance": 595961,
+      "balance": 702947,
       "membership_expire_on": 1701965037,
-      "next_cert_issuable_on": 1679492110,
+      "next_cert_issuable_on": 1696305335,
       "certs_received": {
         "GuyDelarche": 1704857595,
         "RomainKornig": 1715732202,
@@ -89979,6 +91885,7 @@
         "AlainVillain": 1738539429,
         "Feerique": 1719079301,
         "E84": 1730858779,
+        "Pizzawallas": 1758490134,
         "Melusoize": 1718417164,
         "MichelS": 1705029179,
         "lamouette": 1742542159,
@@ -89987,13 +91894,29 @@
         "laviedefiou": 1738784006,
         "zenbio": 1730835267,
         "CovaDidier": 1704644948,
-        "CelYinYang": 1741845436
+        "CelYinYang": 1741845436,
+        "Fabido84": 1759696642
+      }
+    },
+    "LnLsf": {
+      "index": 13730,
+      "owner_key": "932PABQvtxTMRp6gPFkYNV24kEjg9582kazRE8uV1922",
+      "balance": 9390,
+      "membership_expire_on": 1727719186,
+      "next_cert_issuable_on": 1696422803,
+      "certs_received": {
+        "Zap": 1759289116,
+        "Poesy": 1759361587,
+        "Siddh": 1759432484,
+        "Loup": 1759365738,
+        "Ananda": 1759287548,
+        "Mauve": 1759287548
       }
     },
     "ValDT": {
       "index": 8972,
       "owner_key": "938Rv4FKqgmrGCMkcDu13mDpjk2ohtcxoyYyMnw8k25Q",
-      "balance": 286890,
+      "balance": 436576,
       "membership_expire_on": 1714694237,
       "next_cert_issuable_on": 1690202863,
       "certs_received": {
@@ -90022,7 +91945,7 @@
     "G1rgina": {
       "index": 9061,
       "owner_key": "93EUjbs9JACptFs8Pkw58pm2rEhdAfCXaZDUHgxHRsXT",
-      "balance": 30783,
+      "balance": 56169,
       "membership_expire_on": 1716848816,
       "next_cert_issuable_on": 1685293611,
       "certs_received": {
@@ -90044,6 +91967,22 @@
         "Titina": 1727295331
       }
     },
+    "Camilarogelia13": {
+      "index": 13509,
+      "owner_key": "93K9nmoE6mSDuPZrwyBs473TeLjs6pAGQggZwhavag8X",
+      "balance": 95346,
+      "membership_expire_on": 1725406806,
+      "next_cert_issuable_on": 1696481868,
+      "certs_received": {
+        "Sonya": 1756996419,
+        "edubotaoo": 1757538576,
+        "MaiteBel": 1757005266,
+        "Enoc": 1757007475,
+        "josecristobalsaludholistica": 1757008274,
+        "lachispis": 1757126944,
+        "ABuenVivir": 1757091530
+      }
+    },
     "framartin": {
       "index": 639,
       "owner_key": "93NgHU6i49FmfiPyFwZFTrd5G18ca7wRhV3PyXedWsWp",
@@ -90055,15 +91994,14 @@
     "ZazieND": {
       "index": 485,
       "owner_key": "93X5HNBSREg8we1LDnbFBS8PUzmj21TddpVntGUcWiTp",
-      "balance": 899430,
-      "membership_expire_on": 1696561649,
+      "balance": 936960,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1688434625,
       "certs_received": {
         "Chorizo": 1728145803,
         "EtoileND": 1699238565,
         "PiNguyen": 1728118627,
         "MinhT": 1716700982,
-        "rosedelumiere": 1693772135,
         "Romain350": 1728120609,
         "AurelieDouay": 1699221292,
         "CharlesNguyen": 1728120267
@@ -90080,7 +92018,7 @@
     "zoway": {
       "index": 11938,
       "owner_key": "93cHLkihhbpRVLtxiqHQJGj7gHKheRKLRh1yKA8udk1T",
-      "balance": 209674,
+      "balance": 249360,
       "membership_expire_on": 1708655754,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -90113,9 +92051,9 @@
     "CecileM": {
       "index": 7608,
       "owner_key": "93ckRz3AJT4y2W5ij2kFSCZQD5gTCSL97d1cRrAMwFYu",
-      "balance": 531589,
+      "balance": 569275,
       "membership_expire_on": 1712831982,
-      "next_cert_issuable_on": 1666692338,
+      "next_cert_issuable_on": 1695788543,
       "certs_received": {
         "MarineDR": 1711322961,
         "Ded": 1710878819,
@@ -90128,7 +92066,7 @@
     "Benoit13670": {
       "index": 10719,
       "owner_key": "93fjLmaxZ7e2FYPy8Yr6sraAW2CmtfpzLoYY2fCCJZY6",
-      "balance": 227938,
+      "balance": 267624,
       "membership_expire_on": 1701710502,
       "next_cert_issuable_on": 1692364253,
       "certs_received": {
@@ -90151,7 +92089,7 @@
     "Chantalbaril": {
       "index": 7623,
       "owner_key": "93hZgc8qQFSWvw23ES6Vx4ZzeZYFGREwoU2ndtV4tTE",
-      "balance": 364130,
+      "balance": 403816,
       "membership_expire_on": 1707669740,
       "next_cert_issuable_on": 1685451790,
       "certs_received": {
@@ -90183,7 +92121,7 @@
     "HenriGraas": {
       "index": 13192,
       "owner_key": "946xdA8x2Rvhv4kQwyrWMJGXztzvD1AQdfiQ8uVZUoEC",
-      "balance": 76992,
+      "balance": 116678,
       "membership_expire_on": 1720905041,
       "next_cert_issuable_on": 1690023345,
       "certs_received": {
@@ -90200,8 +92138,8 @@
     "Bea34": {
       "index": 9886,
       "owner_key": "9488WSqCcrqVk4cPLfq5NCEw16BpZDYvN9e3Wfr9p69s",
-      "balance": 386201,
-      "membership_expire_on": 1696254445,
+      "balance": 425887,
+      "membership_expire_on": 1725734352,
       "next_cert_issuable_on": 1688205620,
       "certs_received": {
         "IrisBleu": 1727888202,
@@ -90219,7 +92157,7 @@
     "Leelith": {
       "index": 12305,
       "owner_key": "94AbgCTc4ic2FNVzJr9XFB2gtvjBsgULhAZXz8dh9ise",
-      "balance": 152724,
+      "balance": 192410,
       "membership_expire_on": 1711223899,
       "next_cert_issuable_on": 1681258429,
       "certs_received": {
@@ -90241,7 +92179,7 @@
     "Alexis05": {
       "index": 3682,
       "owner_key": "94LH6odYKETJrfwKSK2aJMopo11EntuDc9uuDN5decXN",
-      "balance": 963383,
+      "balance": 1003069,
       "membership_expire_on": 1715470250,
       "next_cert_issuable_on": 1654141976,
       "certs_received": {
@@ -90272,14 +92210,12 @@
     "IsabellePAYET974": {
       "index": 4009,
       "owner_key": "94VsAZBRZ7XwMchUuTqC47t2gCJe4txWdUyhRmfFURqq",
-      "balance": 907467,
+      "balance": 947153,
       "membership_expire_on": 1713877029,
       "next_cert_issuable_on": 1687772285,
       "certs_received": {
         "harry974": 1724191773,
-        "Laetitia97421": 1696674721,
         "Brunov974": 1724094817,
-        "Savigabrielle974": 1693803007,
         "Marcus_974": 1751296650,
         "Jade974oooHarry": 1726415914,
         "pampermacole": 1719010369,
@@ -90289,9 +92225,9 @@
     "Harmony": {
       "index": 11124,
       "owner_key": "94WUhjbqP2BtPk4wJrRMHCvhtyms3dUbP2yp7jxzbu15",
-      "balance": 704199,
+      "balance": 726885,
       "membership_expire_on": 1701929975,
-      "next_cert_issuable_on": 1689612080,
+      "next_cert_issuable_on": 1694360951,
       "certs_received": {
         "Ahtohallan": 1746903455,
         "ValerieArtsetsens": 1752982042,
@@ -90310,7 +92246,7 @@
     "DanielFortin": {
       "index": 11068,
       "owner_key": "94a1qzQmMcLVRJzeyoJxXTkHuKFi8icLXeamLRwSjtAh",
-      "balance": 735920,
+      "balance": 775606,
       "membership_expire_on": 1700743883,
       "next_cert_issuable_on": 1680251017,
       "certs_received": {
@@ -90327,7 +92263,7 @@
     "FannyF": {
       "index": 12619,
       "owner_key": "94eWDcMTiGEeqCJBBCVWtK1DRBbWKrDZSiG7K2fAVkmk",
-      "balance": 118548,
+      "balance": 158234,
       "membership_expire_on": 1713176607,
       "next_cert_issuable_on": 1685709845,
       "certs_received": {
@@ -90357,7 +92293,7 @@
     "Francisca": {
       "index": 11215,
       "owner_key": "94iYumiX9gWvqeFeJBDqLvGj3r3VHtPHxcoSnDZ7xKi5",
-      "balance": 214805,
+      "balance": 254491,
       "membership_expire_on": 1705015912,
       "next_cert_issuable_on": 1687773153,
       "certs_received": {
@@ -90367,6 +92303,7 @@
         "Rosalie": 1736742922,
         "Furiosa": 1736662511,
         "Vigo": 1736742561,
+        "Cleo59": 1757927784,
         "Anolisbaladin": 1736798030
       }
     },
@@ -90381,7 +92318,7 @@
     "BellePavageau": {
       "index": 7116,
       "owner_key": "94kqvdp8drYXdHc3MQmM1WBoFioA35bas4P8LGjM2N9D",
-      "balance": 577087,
+      "balance": 616773,
       "membership_expire_on": 1707875434,
       "next_cert_issuable_on": 1647598703,
       "certs_received": {
@@ -90404,7 +92341,7 @@
     "Trinity": {
       "index": 620,
       "owner_key": "94vursEcYNApzVQTKAhgDvrVKC5yUTPkjzLDV7G78sBm",
-      "balance": 1385248,
+      "balance": 1424934,
       "membership_expire_on": 1710804935,
       "next_cert_issuable_on": 1679382632,
       "certs_received": {
@@ -90420,7 +92357,7 @@
     "jlecorre": {
       "index": 10318,
       "owner_key": "951QNyMrAZy2PLUpDb9rVRGuFcmXfbBBiugQQHayj5TC",
-      "balance": 310995,
+      "balance": 350681,
       "membership_expire_on": 1699810599,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -90434,7 +92371,7 @@
     "NicolasPK": {
       "index": 7860,
       "owner_key": "9586Y3WCwHCd7EgHqHur4um5B3sWXVWuJRSNM2KpA7cd",
-      "balance": 539225,
+      "balance": 578911,
       "membership_expire_on": 1713480355,
       "next_cert_issuable_on": 1681995368,
       "certs_received": {
@@ -90451,8 +92388,8 @@
     "Vievillejp": {
       "index": 2734,
       "owner_key": "95AbvGibWMWjp7n88J4y54ZdAUfsk5qXfPAXuHPoih4K",
-      "balance": 182556,
-      "membership_expire_on": 1695240237,
+      "balance": 203916,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1665918820,
       "certs_received": {
         "RomainKornig": 1708634648,
@@ -90470,10 +92407,25 @@
         "lilithdu34": 1702153683,
         "Mariep": 1733777293,
         "FloP": 1707006077,
-        "Damery": 1696033670,
         "FredB": 1714633504
       }
     },
+    "ChristineCanvel": {
+      "index": 13696,
+      "owner_key": "95J1KkiDhohkwkbiXYGE2PorDczcjKivRcekz86WHgpf",
+      "balance": 64046,
+      "membership_expire_on": 1727546438,
+      "next_cert_issuable_on": 1696319427,
+      "certs_received": {
+        "Andou": 1759184269,
+        "MaureenDoucet": 1759183797,
+        "couillaler": 1759192399,
+        "DanielVienne": 1759184269,
+        "christianforrat": 1759186333,
+        "LaetitiaPavesi": 1759185262,
+        "Osteocellig": 1759261491
+      }
+    },
     "FifiS": {
       "index": 1199,
       "owner_key": "95RovquccFzSmL6hS3SNDKj8SeidQpKWpTmqodYajSdD",
@@ -90485,9 +92437,9 @@
     "Avalon": {
       "index": 9960,
       "owner_key": "95V3srubhEoxkECsgSNmCScY6RBiXDruZaPGdCuuQH2X",
-      "balance": 272422,
+      "balance": 312108,
       "membership_expire_on": 1723589001,
-      "next_cert_issuable_on": 1693279550,
+      "next_cert_issuable_on": 1694783106,
       "certs_received": {
         "Emergencia": 1729890181,
         "TwentySeligUriel": 1728663021,
@@ -90506,7 +92458,7 @@
     "Martial50": {
       "index": 11574,
       "owner_key": "95bdC59qCXZQ8fpDXBQfmts8HzrTprb3BJyR2fhypzu9",
-      "balance": 217244,
+      "balance": 256930,
       "membership_expire_on": 1705537968,
       "next_cert_issuable_on": 1692510375,
       "certs_received": {
@@ -90520,9 +92472,9 @@
     "InesMarin73": {
       "index": 11134,
       "owner_key": "95doydNnExSvKTRvN3CCAg3thpFWQnYaXH39HUpnR8cV",
-      "balance": 194391,
+      "balance": 234077,
       "membership_expire_on": 1704308077,
-      "next_cert_issuable_on": 1688189756,
+      "next_cert_issuable_on": 1693898618,
       "certs_received": {
         "Ariane73": 1736211997,
         "Athena73": 1736210061,
@@ -90542,12 +92494,13 @@
     "Sarah26": {
       "index": 12169,
       "owner_key": "95hEHmL8fTfwj3oA9ywN2vC9rLYp7ndmrToq6U5Ao7on",
-      "balance": 147040,
+      "balance": 232726,
       "membership_expire_on": 1711492867,
       "next_cert_issuable_on": 1680434141,
       "certs_received": {
         "Tico": 1743183004,
         "Kheoppe": 1743204087,
+        "Alisce": 1756933014,
         "Hera": 1743282485,
         "VincentMercier": 1743137032,
         "FranckVal": 1743187002
@@ -90556,7 +92509,7 @@
     "ness": {
       "index": 10863,
       "owner_key": "95rZ6rfugg5XN7zhGhDZGTmot9yCkz9SiEi4rAvwGU7h",
-      "balance": 278889,
+      "balance": 308575,
       "membership_expire_on": 1702498956,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -90628,9 +92581,9 @@
     "Philibert": {
       "index": 1066,
       "owner_key": "96Vch8FMFqbcYsowRt5sV1M9fANCY7r3q4nLwi6ZSsfs",
-      "balance": 903762,
+      "balance": 938448,
       "membership_expire_on": 1710857345,
-      "next_cert_issuable_on": 1688119986,
+      "next_cert_issuable_on": 1696420360,
       "certs_received": {
         "Mel76": 1729295742,
         "Maryc": 1731511900,
@@ -90676,7 +92629,7 @@
     "Magda": {
       "index": 12336,
       "owner_key": "96YuQTwp39DeFqKWDpqFFay9dEC4gbTNQGz9qKCtqsq1",
-      "balance": 189520,
+      "balance": 229206,
       "membership_expire_on": 1709491825,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -90690,7 +92643,7 @@
     "mariannb": {
       "index": 10974,
       "owner_key": "96dBf7RSkWntnJgMKPZqJ8kwx5nfzEgw6r1gctQr7EV9",
-      "balance": 262676,
+      "balance": 302362,
       "membership_expire_on": 1702773951,
       "next_cert_issuable_on": 1679885509,
       "certs_received": {
@@ -90727,7 +92680,7 @@
     "LiliFaty": {
       "index": 13128,
       "owner_key": "96pDLDWQEDyHttNHPWGBSkzAbapxj2urwFmVCUZSf16G",
-      "balance": 65536,
+      "balance": 105222,
       "membership_expire_on": 1719690052,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -90755,7 +92708,6 @@
       "next_cert_issuable_on": 1645283323,
       "certs_received": {
         "Dom": 1708145413,
-        "jeanferreira": 1696142403,
         "Mententon": 1746469233,
         "PascaleM": 1708146458,
         "Michmich": 1697697847
@@ -90780,7 +92732,7 @@
     "Djedouas": {
       "index": 11760,
       "owner_key": "9785qD2Su5x1dfUEFc6Y57DKY4nDB5YV41FWwQNega9S",
-      "balance": 199500,
+      "balance": 239186,
       "membership_expire_on": 1706926862,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -90794,8 +92746,8 @@
     "Tof26": {
       "index": 9563,
       "owner_key": "979aX2mLmPjCaGQfjeyFnMCN6DXESxc6VZPSoRF5iyf4",
-      "balance": 369983,
-      "membership_expire_on": 1694549015,
+      "balance": 382799,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1684543602,
       "certs_received": {
         "chris07": 1726597956,
@@ -90813,15 +92765,15 @@
     "MilieLibre": {
       "index": 832,
       "owner_key": "97Apvkjj5dNiqis1HFT6tpi4srY2XDZAaZA85bGkrSCs",
-      "balance": 1572512,
-      "membership_expire_on": 1700622543,
-      "next_cert_issuable_on": 1669140684,
+      "balance": 1612198,
+      "membership_expire_on": 1727891017,
+      "next_cert_issuable_on": 1696405417,
       "certs_received": {
         "Sophie": 1732244207,
         "lindanas": 1718348085,
         "Reumy": 1708554055,
         "EliseL": 1710188307,
-        "Stephio": 1699506897,
+        "Stephio": 1756511960,
         "Liliwasabi": 1719638786,
         "Eva": 1704582302,
         "Olipez": 1733439249,
@@ -90832,7 +92784,7 @@
     "MurielP": {
       "index": 12590,
       "owner_key": "97ArYENYTXPZkb2ht4WzJwAufGrdNdTPHgAHLrnKLZaL",
-      "balance": 93732,
+      "balance": 133418,
       "membership_expire_on": 1714760055,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -90846,7 +92798,7 @@
     "GUL40_M4r": {
       "index": 7044,
       "owner_key": "97Bh39bPcrjmzqPcWYu1yNxL6kZirP44XiHbRYhZ14ou",
-      "balance": 495820,
+      "balance": 535506,
       "membership_expire_on": 1704046401,
       "next_cert_issuable_on": 1689498399,
       "certs_received": {
@@ -90878,10 +92830,11 @@
     "MariaBEMA": {
       "index": 11364,
       "owner_key": "97CQ7Bt9CeoDUUEgPXVbsxPVabL7Dgr7UV9LNs1WTCSW",
-      "balance": 132471,
+      "balance": 193057,
       "membership_expire_on": 1706319198,
       "next_cert_issuable_on": 1683197118,
       "certs_received": {
+        "AfricadeHarmonia": 1759822782,
         "Alfonso": 1737878677,
         "Begotxu": 1740606143,
         "MAIKA": 1737881453,
@@ -90894,7 +92847,7 @@
     "Mathouflux": {
       "index": 11981,
       "owner_key": "97ENXrdbhmPxxQwGaA6JKCeW5wcfGaYyR6yxtpqURaPU",
-      "balance": 192556,
+      "balance": 232242,
       "membership_expire_on": 1706552001,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -90909,13 +92862,17 @@
     "Sainte-Russie": {
       "index": 4383,
       "owner_key": "97FEWH241ZvJHoqhhyvgntaaCJSMe3n51aGVhJgg9M7Y",
-      "balance": 919176,
+      "balance": 659930,
       "membership_expire_on": 1714409072,
-      "next_cert_issuable_on": 1687858023,
+      "next_cert_issuable_on": 1694838390,
       "certs_received": {
+        "Cygogne22": 1757979881,
+        "Tidus": 1757722769,
+        "MaryK": 1757722769,
+        "etrehumainJordan92i": 1757722769,
         "ironhic": 1750049403,
         "jeanneymar": 1747090868,
-        "Manholy34": 1696624409,
+        "Migus01": 1757899361,
         "yenamarre": 1745973732,
         "YANNIERRE": 1755739199,
         "Roimain": 1739946750,
@@ -90940,7 +92897,7 @@
     "AZUL": {
       "index": 7874,
       "owner_key": "97NFzSPZBWHF3SV3mgn9jrJTifjsNF7DjRrokD1mZtwN",
-      "balance": 519074,
+      "balance": 558760,
       "membership_expire_on": 1713093072,
       "next_cert_issuable_on": 1681607472,
       "certs_received": {
@@ -90963,9 +92920,9 @@
     "Anne-Laure": {
       "index": 5096,
       "owner_key": "97QPYCPk3xdArqBnHMcQDdiN9gvaYJUZh69kB1j9XNw3",
-      "balance": 695929,
+      "balance": 735615,
       "membership_expire_on": 1705107578,
-      "next_cert_issuable_on": 1684493683,
+      "next_cert_issuable_on": 1694660447,
       "certs_received": {
         "nenuphar": 1702258812,
         "SoniaJimenezCook": 1747673445,
@@ -90973,6 +92930,7 @@
         "syl1209": 1701577656,
         "Etoile": 1740420145,
         "phil3455": 1697151886,
+        "PesentiOlivier": 1758148525,
         "Cerisecoeur": 1709619043,
         "DCat": 1735952190,
         "Violette26": 1702841052,
@@ -90996,28 +92954,29 @@
     "Pascale72": {
       "index": 4932,
       "owner_key": "97XkbAwfseD8mFJmHG3FjUzW85v4gscK7b6KAJKtbGqb",
-      "balance": 554911,
+      "balance": 591273,
       "membership_expire_on": 1703841498,
-      "next_cert_issuable_on": 1693038163,
+      "next_cert_issuable_on": 1696250339,
       "certs_received": {
         "Jerome035": 1751610578,
         "Rebirth35": 1750654874,
         "Beasejour": 1698730299,
         "Jean-Marie": 1753901319,
-        "myt": 1700099057,
+        "myt": 1757196215,
         "Eveilducoeur": 1721345102,
         "clemlamalice": 1739780251,
         "mamierabelle": 1701332886,
         "b_presles": 1755536559,
+        "daryl": 1756784999,
         "DanielPGT": 1744271010,
-        "Ashawik": 1701888750,
+        "Ashawik": 1758044602,
         "nuvolari": 1748674032,
         "MyriamGuillot": 1729821560,
         "PatrickCrepin": 1704687427,
         "Inilaya11": 1718861161,
         "Clauclo": 1751401860,
-        "LaureFemmeVanne": 1696233735,
         "Sevedejasmyn": 1718336593,
+        "CedricC": 1757902356,
         "fluidlog": 1747936713,
         "Babaroun": 1701633940,
         "CClement": 1718674483,
@@ -91029,14 +92988,13 @@
         "RomanUza": 1720738881,
         "Ofildevie": 1701462792,
         "Candy2000": 1754430159,
-        "guillaumed": 1696232663,
         "Chanchan": 1753304403,
         "MarionDrn": 1702324605,
         "Fred": 1719284581,
-        "Gerardl": 1696285740,
+        "Marieannick": 1758681955,
         "Jackyboisset": 1729582486,
         "CarolAmethyste": 1737423364,
-        "Maaltir": 1695842981,
+        "Maaltir": 1758483700,
         "FatimaMIEL51": 1699920923,
         "BelGambette": 1739138962,
         "Dolphins": 1747288314,
@@ -91048,13 +93006,14 @@
         "EricMielcarek": 1750180823,
         "Beluganne": 1753180703,
         "Sylvere72": 1725048820,
+        "Gaia6442": 1758937395,
         "Yolan": 1703915130
       }
     },
     "loucigalou": {
       "index": 7141,
       "owner_key": "97dzAeSVzrnpBxXDreGxV87CdzRxoeFLXPpN7vSQKgbD",
-      "balance": 494031,
+      "balance": 533717,
       "membership_expire_on": 1706314734,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -91085,9 +93044,9 @@
     "IsabellePriou": {
       "index": 5012,
       "owner_key": "983M1TiCYhsZhu1J2i2hJgZhC1xVCzNcZ8ymbM4j35Va",
-      "balance": 467020,
+      "balance": 482706,
       "membership_expire_on": 1708532408,
-      "next_cert_issuable_on": 1693138885,
+      "next_cert_issuable_on": 1695568038,
       "certs_received": {
         "Crystal": 1739957437,
         "Etipol61": 1755208708,
@@ -91095,6 +93054,8 @@
         "VioletteRose": 1711501349,
         "Cristol-Iquid": 1747554683,
         "Hunzatonic": 1745179471,
+        "Artdevivre": 1757535281,
+        "Ramounichoux": 1759095564,
         "GhislaineChartier": 1749632154,
         "Marieclaude": 1752799259,
         "Marie2puivert": 1748212423,
@@ -91104,7 +93065,6 @@
         "VeroniqueMaessen": 1751834085,
         "GeraldineGarrigues": 1748640399,
         "CecileBeaulieu": 1748759637,
-        "IsabelleANGE": 1693946912,
         "JoelynaSiret": 1749865231,
         "MaryseD": 1742757550,
         "Leticia": 1740515595,
@@ -91116,7 +93076,7 @@
     "jyh": {
       "index": 1029,
       "owner_key": "98Ls6Q9uLqki4VtyP4TUH47mHCGHdHa7bQAehrF3vfi6",
-      "balance": 2001531,
+      "balance": 2041217,
       "membership_expire_on": 1718278228,
       "next_cert_issuable_on": 1670742545,
       "certs_received": {
@@ -91128,14 +93088,15 @@
         "Juju21": 1750572961,
         "PascaleM": 1747236440,
         "Atharreau": 1751327020,
-        "Solveig": 1750813401
+        "Solveig": 1750813401,
+        "MarcJPG1": 1758696165
       }
     },
     "FabieChou": {
       "index": 10209,
       "owner_key": "98MSYG8GNSEW94sYBRrVm4S1qKaxh7QV9NMZi3jgVZNQ",
-      "balance": 333408,
-      "membership_expire_on": 1697211658,
+      "balance": 373194,
+      "membership_expire_on": 1725094869,
       "next_cert_issuable_on": 1670653377,
       "certs_received": {
         "EricMaillard": 1730777596,
@@ -91156,7 +93117,6 @@
       "next_cert_issuable_on": 1635584297,
       "certs_received": {
         "Vivakvo": 1699318172,
-        "Pac": 1694240085,
         "Loutre": 1699316609
       }
     },
@@ -91193,7 +93153,7 @@
     "Pingou": {
       "index": 12880,
       "owner_key": "98iGmspw8NnqWnwff6VtwBkPjxAiJVcpUh7tRmGriHPG",
-      "balance": 84372,
+      "balance": 140058,
       "membership_expire_on": 1716833752,
       "next_cert_issuable_on": 1692586397,
       "certs_received": {
@@ -91207,26 +93167,21 @@
     "Misslesfleurs": {
       "index": 5610,
       "owner_key": "98kQurrKbRQbsDojP6WcTYJbwUDiUyMto5gzGYho4vEt",
-      "balance": 710522,
+      "balance": 750208,
       "membership_expire_on": 1721738264,
       "next_cert_issuable_on": 1682074278,
       "certs_received": {
         "LilianBonnardon": 1700172250,
-        "DanceX47": 1694326465,
-        "adrien_berthel": 1693968977,
         "ENO": 1720592264,
         "jpeupagrando": 1746123358,
-        "FanfanJub": 1693986283,
         "Parhit": 1703465785,
-        "tipi": 1693699926,
-        "Nadege": 1694496816,
         "Numerus47": 1721767067
       }
     },
     "Alphla": {
       "index": 7559,
       "owner_key": "98neVC2nMkQF7yfPN92MyWwrH641AaTBxgfXsFKm25da",
-      "balance": 536341,
+      "balance": 576027,
       "membership_expire_on": 1706810813,
       "next_cert_issuable_on": 1682822520,
       "certs_received": {
@@ -91243,7 +93198,7 @@
     "Oceanemagic": {
       "index": 13065,
       "owner_key": "98oZ74n2ndmtixNiAUJL51uNhNEe1yepT2pgtogJydYu",
-      "balance": 96080,
+      "balance": 55766,
       "membership_expire_on": 1719699722,
       "next_cert_issuable_on": 1688622202,
       "certs_received": {
@@ -91257,8 +93212,8 @@
     "ptrendel": {
       "index": 9890,
       "owner_key": "98sUTrxSAwf7mfWnRRyvJqiJWZpxhnpva1BKZaQUD2Wy",
-      "balance": 443524,
-      "membership_expire_on": 1693669551,
+      "balance": 445660,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "petiteberger": 1728353420,
@@ -91273,8 +93228,8 @@
     "LUB1NP0MM1ER": {
       "index": 9732,
       "owner_key": "98tELNtyDk5a6cLNJdXRsQwvkEckg4VZz6eL4zytzGjx",
-      "balance": 356232,
-      "membership_expire_on": 1694042194,
+      "balance": 362640,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666346304,
       "certs_received": {
         "CyrilPommier": 1727222242,
@@ -91287,9 +93242,9 @@
     "MarcelDoppagne": {
       "index": 21,
       "owner_key": "98wvdsHGnnNDczKMp6FM9KUuPRBTwn77PN4x6EC6i9KN",
-      "balance": 2959202,
+      "balance": 2998888,
       "membership_expire_on": 1717632990,
-      "next_cert_issuable_on": 1677413066,
+      "next_cert_issuable_on": 1695441104,
       "certs_received": {
         "cgeek": 1701310782,
         "ColetteNavaux": 1729110399,
@@ -91298,8 +93253,8 @@
         "Philippe26": 1700935145,
         "FrankDeMey": 1704330327,
         "NoraMaela": 1710094958,
-        "casadesam": 1697907174,
-        "janhsh": 1697751161,
+        "casadesam": 1757223355,
+        "janhsh": 1754698573,
         "NathalieBolly": 1703483901,
         "JulienBolly": 1704781532,
         "Matteo": 1719343774,
@@ -91317,8 +93272,8 @@
         "Benji": 1729551551,
         "PiNguyen": 1701371802,
         "ROVER5537": 1717278228,
-        "gcabay": 1696226065,
         "Lunartemisia": 1723919889,
+        "CTL": 1759691295,
         "TatieDanielle07": 1707601203,
         "ColetteHenkes": 1737708864,
         "Boutfeu": 1720564823,
@@ -91330,7 +93285,6 @@
         "Teddy": 1709261153,
         "Matedi23": 1717278737,
         "JGlExplorateur": 1704570386,
-        "Gclaire": 1696410835,
         "MutatisMutandis": 1725121483
       }
     },
@@ -91345,9 +93299,9 @@
     "Jade971": {
       "index": 3947,
       "owner_key": "998xnGbaUDdrEARz7JfM9PBa89P7w3ms5F15uLB2Vkwx",
-      "balance": 486854,
+      "balance": 568190,
       "membership_expire_on": 1709477137,
-      "next_cert_issuable_on": 1692277295,
+      "next_cert_issuable_on": 1696276292,
       "certs_received": {
         "Stef38": 1718425253,
         "MaryMarie": 1710323219,
@@ -91358,6 +93312,7 @@
         "Shana_B": 1725579140,
         "Thierrygwada": 1705953491,
         "Vivianedv": 1741217596,
+        "Bea971": 1758517143,
         "Ormica": 1710593387,
         "patbal": 1738979164,
         "CORBIERESchristine": 1726448997,
@@ -91419,7 +93374,7 @@
     "Bleuisere": {
       "index": 1967,
       "owner_key": "99HfFnNzjfHE3HBybB75iNVwkPkqCFuTfNvgfMPZynjF",
-      "balance": 1743096,
+      "balance": 1782782,
       "membership_expire_on": 1699211647,
       "next_cert_issuable_on": 1690775508,
       "certs_received": {
@@ -91435,7 +93390,7 @@
     "MarianaZA": {
       "index": 6570,
       "owner_key": "99WJwwjktFY6EoiAmrTMDoREU5KQiQqaKQqgVN64YeoQ",
-      "balance": 600396,
+      "balance": 640082,
       "membership_expire_on": 1704826387,
       "next_cert_issuable_on": 1677774531,
       "certs_received": {
@@ -91449,7 +93404,7 @@
     "Fifi84": {
       "index": 7084,
       "owner_key": "99f1TELv2RHTg2sc8BxTJNcwCc2SkR2LATjWwSWi8GBu",
-      "balance": 409431,
+      "balance": 449117,
       "membership_expire_on": 1703123038,
       "next_cert_issuable_on": 1670840511,
       "certs_received": {
@@ -91468,7 +93423,7 @@
     "ARTHEMISIA89": {
       "index": 7908,
       "owner_key": "99ggqXRuLU6oGDfwWVg1fYMcmiUupEi4gzLc2kLJJhQT",
-      "balance": 411021,
+      "balance": 453707,
       "membership_expire_on": 1710867004,
       "next_cert_issuable_on": 1668139387,
       "certs_received": {
@@ -91485,9 +93440,9 @@
     "Djan": {
       "index": 3290,
       "owner_key": "99k2SJRHv7WHpuPyFqLjfgBYUV2Liy36kMnSF8zzekfJ",
-      "balance": 1220001,
-      "membership_expire_on": 1696249751,
-      "next_cert_issuable_on": 1681819980,
+      "balance": 1259687,
+      "membership_expire_on": 1727087088,
+      "next_cert_issuable_on": 1695624709,
       "certs_received": {
         "fullanzer": 1703827012,
         "Seraphina": 1710482462,
@@ -91507,9 +93462,9 @@
     "Venceremos": {
       "index": 8187,
       "owner_key": "99tUaPriHu3oXvArBh3p23mzq45tpLiwH1zd8U9xJti2",
-      "balance": 322650,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1664959550,
+      "balance": 319132,
+      "membership_expire_on": 1725296594,
+      "next_cert_issuable_on": 1696321941,
       "certs_received": {
         "Selena": 1716435293,
         "MARYBAL": 1716435293,
@@ -91517,6 +93472,8 @@
         "lulubelle": 1716435025,
         "Myosotis": 1728749151,
         "Diessanne": 1716435293,
+        "Bichounette": 1759365141,
+        "RussoDavid13": 1756856969,
         "Peter06": 1730877868,
         "Mianjeke": 1721666368
       }
@@ -91524,7 +93481,7 @@
     "Tilde": {
       "index": 12351,
       "owner_key": "99uoJArKaQiKSqR5z9BwrqcZ9gFohpeQ2qGVc7NJwgbx",
-      "balance": 287648,
+      "balance": 343504,
       "membership_expire_on": 1713007571,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -91535,11 +93492,25 @@
         "IgnasiRoig": 1744741220
       }
     },
+    "PatriciaDiot": {
+      "index": 13643,
+      "owner_key": "9A1WV2B2keBV5TSuRidbHH2qVcU655TMr9jRbtQZbVee",
+      "balance": 17192,
+      "membership_expire_on": 1726679389,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "FrancoiseSTA07": 1758304093,
+        "ReymondSophie": 1758322723,
+        "MichelBonnaventure07": 1758333913,
+        "Spiruline07": 1758620186,
+        "MoniqueChaplie": 1758588026
+      }
+    },
     "danielcostagranad": {
       "index": 10624,
       "owner_key": "9A1ihxi2ngVn6RzeH7nEzpznYJzjvBGBitQg2wW9eZSr",
-      "balance": 300574,
-      "membership_expire_on": 1696594999,
+      "balance": 339182,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "bbqueen": 1728154188,
@@ -91560,7 +93531,7 @@
     "Zabou": {
       "index": 3646,
       "owner_key": "9A89PwCRfbVBWDUernSbL2xVDY7QqR3T3RxyJ3JHv3Ub",
-      "balance": 464757,
+      "balance": 504443,
       "membership_expire_on": 1702925416,
       "next_cert_issuable_on": 1666056271,
       "certs_received": {
@@ -91570,14 +93541,27 @@
         "AliasRiton": 1730527390,
         "LafeeValerie": 1711677505,
         "Yanoc": 1732490596,
-        "marmotte32": 1694081479,
         "Zoriko-J": 1717096176
       }
     },
+    "LaFouif": {
+      "index": 13571,
+      "owner_key": "9ADqcxyaYfG2xmEga4Gw69Tc5HgMdEmcJ9ZwaY16GwBt",
+      "balance": 34302,
+      "membership_expire_on": 1726002972,
+      "next_cert_issuable_on": 1694756832,
+      "certs_received": {
+        "Quintescence": 1757646498,
+        "Salsa33150": 1757775428,
+        "JosephK33": 1757755983,
+        "xomer": 1757616459,
+        "eln": 1757673366
+      }
+    },
     "KATH": {
       "index": 11551,
       "owner_key": "9ARM37JQ8BiBSFVmbJJhxdXCZjaeHyXwU8VVmdrS5XpM",
-      "balance": 216385,
+      "balance": 256071,
       "membership_expire_on": 1702847668,
       "next_cert_issuable_on": 1682153411,
       "certs_received": {
@@ -91592,7 +93576,7 @@
     "KarimCorrandDubreil": {
       "index": 324,
       "owner_key": "9ATEafz2wMTL68Lt3Nc3PkvRyb2mgtAQNZjNJjjetFSu",
-      "balance": 1232329,
+      "balance": 1272015,
       "membership_expire_on": 1714400173,
       "next_cert_issuable_on": 1691314445,
       "certs_received": {
@@ -91609,7 +93593,7 @@
     "MPCorinne": {
       "index": 10698,
       "owner_key": "9ATpG3dLtDa2AgjfhdgTNqX6342r1WLpGsLNKMmug1W1",
-      "balance": 326338,
+      "balance": 366024,
       "membership_expire_on": 1701203846,
       "next_cert_issuable_on": 1687868268,
       "certs_received": {
@@ -91627,16 +93611,12 @@
     "YannickS": {
       "index": 517,
       "owner_key": "9AqQZZV4AV6tKjDAUQxmWuLJftSMAHiuxeJGz2HCAeDN",
-      "balance": 1030400,
-      "membership_expire_on": 1720216689,
+      "balance": 1050692,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689583859,
       "certs_received": {
         "HanouLakhdarok": 1719372046,
-        "Patrice_F": 1706136299,
-        "yannlefranco": 1696389314,
-        "PiNguyen": 1695196834,
-        "ji_emme": 1695766362,
-        "Profil": 1694203426
+        "Patrice_F": 1706136299
       }
     },
     "Marina": {
@@ -91664,7 +93644,7 @@
     "analu": {
       "index": 13276,
       "owner_key": "9BLGDa7njiHSgEVeSrzJXqQEihe5cw4Pfn9JjV5gNW1W",
-      "balance": 42576,
+      "balance": 82262,
       "membership_expire_on": 1722260365,
       "next_cert_issuable_on": 1691750375,
       "certs_received": {
@@ -91678,8 +93658,8 @@
     "EvcomServiciosInformaticos": {
       "index": 10468,
       "owner_key": "9BTNj9pJYQUz3foYv3rLBMjLL1EX2ibrbyHVWHq1YjfS",
-      "balance": 2364,
-      "membership_expire_on": 1699486120,
+      "balance": 43750,
+      "membership_expire_on": 1726521596,
       "next_cert_issuable_on": 1688433852,
       "certs_received": {
         "EstefaniaSainz": 1732126019,
@@ -91693,8 +93673,8 @@
     "KdSL63": {
       "index": 9783,
       "owner_key": "9BWzbn572sgxbw6b8Fro2Z7WQqkb6fZkYRx2imRLUGfH",
-      "balance": 353996,
-      "membership_expire_on": 1695941063,
+      "balance": 383980,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673179191,
       "certs_received": {
         "dnoelle": 1727819598,
@@ -91710,7 +93690,7 @@
     "Caperucita": {
       "index": 11197,
       "owner_key": "9BZ4f3xuQ9itsZTz7EcLucoVoZwVHUVb3REfCT9ZrRog",
-      "balance": 165391,
+      "balance": 189477,
       "membership_expire_on": 1703246558,
       "next_cert_issuable_on": 1688224403,
       "certs_received": {
@@ -91727,7 +93707,7 @@
     "Le-Fil-dAriane": {
       "index": 11733,
       "owner_key": "9BqtvoZjffJ6RBZV1374taX8XjCBP3KDkCHynKgKceiU",
-      "balance": 201618,
+      "balance": 241304,
       "membership_expire_on": 1708632691,
       "next_cert_issuable_on": 1681720832,
       "certs_received": {
@@ -91742,7 +93722,7 @@
     "Cozen": {
       "index": 11117,
       "owner_key": "9Bs7wTmpN4T3Q1NmTo3ehoJyL2YMDUFSs9yxPcvRWMwH",
-      "balance": 353809,
+      "balance": 393495,
       "membership_expire_on": 1701107551,
       "next_cert_issuable_on": 1676639759,
       "certs_received": {
@@ -91756,7 +93736,7 @@
     "Elianeferrier": {
       "index": 12569,
       "owner_key": "9Btk1jQd9dDRNCYY14vBHu1zqF4XCE8zr5dwQThzWmz5",
-      "balance": 62684,
+      "balance": 102370,
       "membership_expire_on": 1714923916,
       "next_cert_issuable_on": 1688350100,
       "certs_received": {
@@ -91772,7 +93752,7 @@
     "MaikOzanne": {
       "index": 11027,
       "owner_key": "9C3vjFV1iGK4VCqRuZ1U6NtZoztS6p9wqqqMivhYz4AL",
-      "balance": 331936,
+      "balance": 371622,
       "membership_expire_on": 1702638706,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -91794,13 +93774,14 @@
     "Micha99": {
       "index": 9439,
       "owner_key": "9C5y2b83WQbprWmvmzgVTyZLScyySxSZv7hxaQtWdozj",
-      "balance": 1736644,
+      "balance": 2212731,
       "membership_expire_on": 1721218728,
-      "next_cert_issuable_on": 1690117857,
+      "next_cert_issuable_on": 1694705116,
       "certs_received": {
         "Amiel": 1730997089,
         "WintgensJoseph": 1725420810,
         "majo": 1740154647,
+        "Ghostdog": 1756608891,
         "Martyne": 1731090425,
         "FrankDeMey": 1731692054,
         "Marino": 1745532951,
@@ -91816,12 +93797,14 @@
         "TribuRaph": 1751737697,
         "MarianneCramilion": 1725412610,
         "MEME3": 1743099773,
+        "Bebeth": 1758831034,
         "Patappui": 1731629291,
         "alex88": 1733031410,
         "PetraVaals": 1733904261,
         "Gotti": 1739995235,
         "SofianneErler": 1738992294,
         "Mabize": 1725396588,
+        "Maribel": 1759031732,
         "Elleone": 1725428946,
         "Gclaire": 1731970819
       }
@@ -91829,13 +93812,14 @@
     "AliciaConsuelo": {
       "index": 10599,
       "owner_key": "9C9YKK8KekHEWSBVsUd7GYMnGZB9aCNrHveAQcmYEdcg",
-      "balance": 251986,
+      "balance": 272672,
       "membership_expire_on": 1700957351,
-      "next_cert_issuable_on": 1684855289,
+      "next_cert_issuable_on": 1695209451,
       "certs_received": {
         "AngieantesGeles": 1748101829,
         "Belobal": 1732856857,
         "EstefaniaLopez": 1732850958,
+        "Abejitajaimita": 1758376272,
         "Guiomar": 1732770721,
         "Alberto": 1732841492,
         "GRUKSY": 1732663982
@@ -91844,7 +93828,7 @@
     "Margo": {
       "index": 12792,
       "owner_key": "9CFiKrwQnWoWtdCJb6hK9NuqC76EF499mP5ZEAN5f4oV",
-      "balance": 497620,
+      "balance": 537306,
       "membership_expire_on": 1714748041,
       "next_cert_issuable_on": 1692985963,
       "certs_received": {
@@ -91861,7 +93845,7 @@
     "BereniceConcarneau": {
       "index": 9161,
       "owner_key": "9CQv1xzKMidwSLeyR35CCgStbkyBgBXCwW2KBHsuoFRV",
-      "balance": 407172,
+      "balance": 446858,
       "membership_expire_on": 1719489024,
       "next_cert_issuable_on": 1688003726,
       "certs_received": {
@@ -91894,7 +93878,7 @@
     "lois26": {
       "index": 11675,
       "owner_key": "9CUhHvcY9SAoGpn7dMh3EdXJ5Q5A26Ucj7TfmXBbSAAr",
-      "balance": 210854,
+      "balance": 212540,
       "membership_expire_on": 1705672720,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -91929,8 +93913,8 @@
     "axelle": {
       "index": 9808,
       "owner_key": "9CdAtQbs79K8pdWTHpH1ZPdYRiPHUmVU1nvvW7RiZdap",
-      "balance": 355937,
-      "membership_expire_on": 1696510906,
+      "balance": 393467,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673082535,
       "certs_received": {
         "Guerinwiotte": 1728071476,
@@ -91946,7 +93930,7 @@
     "Anael": {
       "index": 11378,
       "owner_key": "9CdXsKLXEAr6NtBKT4cXvNS4gLqnxL39QSLVN1d1BqZj",
-      "balance": 256312,
+      "balance": 295998,
       "membership_expire_on": 1705353386,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -91978,8 +93962,8 @@
     "Angie119": {
       "index": 9803,
       "owner_key": "9Cthvv4QtBcnPP2BnHLdagdSSafZyAJvCFMcGvb2qcfD",
-      "balance": 395702,
-      "membership_expire_on": 1696454690,
+      "balance": 432154,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673871538,
       "certs_received": {
         "Beasejour": 1728129858,
@@ -91993,7 +93977,7 @@
     "Edita": {
       "index": 9416,
       "owner_key": "9CwC1Ffjt7Hd34jWGGmaZCX3Ajb1L5YQZCoLo79GGC8a",
-      "balance": 157305,
+      "balance": 167091,
       "membership_expire_on": 1721051605,
       "next_cert_issuable_on": 1684752656,
       "certs_received": {
@@ -92011,7 +93995,7 @@
     "Eve38": {
       "index": 7981,
       "owner_key": "9CywJw6qVSoFkq6PZFdRKr4RPoxTanuMUaLNjY86NQEb",
-      "balance": 588905,
+      "balance": 628591,
       "membership_expire_on": 1710121697,
       "next_cert_issuable_on": 1679311434,
       "certs_received": {
@@ -92028,9 +94012,9 @@
     "Mattleblanc": {
       "index": 11407,
       "owner_key": "9D2AjFJghZWAakv7Dk8Xo6FyhHrTtk1kHAM3DWGeb76r",
-      "balance": 242034,
+      "balance": 281720,
       "membership_expire_on": 1705336791,
-      "next_cert_issuable_on": 1676820639,
+      "next_cert_issuable_on": 1695450505,
       "certs_received": {
         "Tico": 1737665437,
         "Francou42": 1737664661,
@@ -92042,13 +94026,13 @@
     "PhilChamp": {
       "index": 327,
       "owner_key": "9D4kVcKWmEhPvAf58DRf5vCdXJeg7c794ngj8fqMHyVT",
-      "balance": 1582362,
+      "balance": 1622048,
       "membership_expire_on": 1713738769,
-      "next_cert_issuable_on": 1682253169,
+      "next_cert_issuable_on": 1695487724,
       "certs_received": {
         "SophSav": 1697693946,
         "Hava_bien": 1709420369,
-        "verolodeve": 1694886236,
+        "RaffaeleMarie": 1758601147,
         "jeanmarieforgue": 1722325197,
         "Kalia": 1704445079,
         "nadiaespaignet": 1732946189
@@ -92057,9 +94041,9 @@
     "Cali": {
       "index": 7265,
       "owner_key": "9D9tvkR6u5pVp1xpxzhpWWGhY6Nub89W7CFbCm6YhZzR",
-      "balance": 566482,
+      "balance": 606168,
       "membership_expire_on": 1710291070,
-      "next_cert_issuable_on": 1654080063,
+      "next_cert_issuable_on": 1695911246,
       "certs_received": {
         "Ashawik": 1710183925,
         "NAMA-STE": 1710183650,
@@ -92071,7 +94055,7 @@
     "Nounette": {
       "index": 9491,
       "owner_key": "9DCu4GFxbvKLv7SWpqMs6hDUYaB4Hs8geK33eXd4eMKR",
-      "balance": 608002,
+      "balance": 630688,
       "membership_expire_on": 1720923838,
       "next_cert_issuable_on": 1670833788,
       "certs_received": {
@@ -92088,9 +94072,9 @@
     "AnneAmbles": {
       "index": 2,
       "owner_key": "9DDn592RMWfka6fPtTGkmAS54CkYxohDGuk41EECxioD",
-      "balance": 292956,
+      "balance": 315988,
       "membership_expire_on": 1714778940,
-      "next_cert_issuable_on": 1693314700,
+      "next_cert_issuable_on": 1695557152,
       "certs_received": {
         "BrigitteL": 1748816821,
         "Sev": 1727417294,
@@ -92105,16 +94089,13 @@
         "Vivakvo": 1723659926,
         "yvesfalck": 1736799294,
         "cleo": 1718213044,
-        "EveJOURDIN": 1695972497,
         "mimi": 1736481890,
         "patriziatavormina": 1739605461,
         "Elsaz": 1697238622,
         "GerardSiegle": 1700213525,
-        "MichelLeMer": 1696725188,
         "SaverioStragapede": 1736109939,
         "Clairette31": 1743480016,
         "MariPotter": 1717364171,
-        "Lavoixdesquatrevents": 1696132995,
         "DominiqueHebert": 1723520676,
         "Ingriddevendee": 1716699136,
         "DurandSylvie": 1731352020,
@@ -92125,11 +94106,11 @@
         "XavierALBERT": 1701456776,
         "DanielFortin": 1735609359,
         "CelesteLeBars": 1720910808,
-        "SergeMascaro": 1696311564,
         "Bastien-29": 1741714504,
         "Pol": 1722212707,
         "aurelie": 1722840132,
         "Espritangel": 1731626999,
+        "PatriciaA": 1759366370,
         "LibertyFran": 1705020982,
         "Vajrabro": 1712185163,
         "DavidMontpellier": 1727288122,
@@ -92146,7 +94127,6 @@
         "AlineLarvet": 1711582342,
         "LenaTriB": 1710995980,
         "Pruls": 1716883286,
-        "JBlot": 1696281041,
         "Nyckel": 1719865979,
         "CarolAmethyste": 1753112763,
         "FlorilenePacati": 1728141302,
@@ -92166,7 +94146,6 @@
         "ninigailla": 1731465689,
         "Elouhann": 1698027313,
         "maksou": 1709109977,
-        "Beluganne": 1694835486,
         "FernDeFougeres": 1700783287,
         "Martienne": 1739170448,
         "GuillaumeSIMON": 1725041237,
@@ -92208,8 +94187,8 @@
     "Wono": {
       "index": 6502,
       "owner_key": "9DpWWtvsLP8i8SAJWfwWPWTBJqavdPxUBSFbydt827FV",
-      "balance": 393111,
-      "membership_expire_on": 1697838807,
+      "balance": 432797,
+      "membership_expire_on": 1727879133,
       "next_cert_issuable_on": 1671804511,
       "certs_received": {
         "MariaOpdenacker": 1703548198,
@@ -92230,22 +94209,22 @@
     "Henri31": {
       "index": 6329,
       "owner_key": "9DsN33vkC1E9y4q128HqYJQkcnatAbx7CpgyqxQkLWQH",
-      "balance": 588972,
+      "balance": 628658,
       "membership_expire_on": 1704108568,
       "next_cert_issuable_on": 1672633200,
       "certs_received": {
         "Kristen": 1701919256,
         "SolangeAIME": 1701912016,
         "Nineige": 1701913223,
-        "DavidBay": 1701920318,
+        "DavidBay": 1757436960,
         "RosalieBAYLE": 1702019045
       }
     },
     "Danko": {
       "index": 9650,
       "owner_key": "9DskvQ4NdDVhJCgB9dNiZNxFVLVckJ975kG9ZvUALd97",
-      "balance": 360086,
-      "membership_expire_on": 1695560618,
+      "balance": 385758,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673081674,
       "certs_received": {
         "Coco83": 1732475072,
@@ -92268,8 +94247,7 @@
       "next_cert_issuable_on": 1680945229,
       "certs_received": {
         "maiadereva": 1701210337,
-        "chcesetti": 1749354144,
-        "JulienLecaille": 1696531825
+        "chcesetti": 1749354144
       }
     },
     "TomAux": {
@@ -92283,12 +94261,11 @@
     "Chamax": {
       "index": 5795,
       "owner_key": "9E51Dd1x2zMrRFZXTDhp5SG6qx5AfkEBoQXU2MqZEWW7",
-      "balance": 404509,
+      "balance": 324195,
       "membership_expire_on": 1714092053,
       "next_cert_issuable_on": 1690884691,
       "certs_received": {
         "Cyrius": 1722415238,
-        "Nagual": 1694038198,
         "MathieuDebray": 1719253534,
         "MartP18": 1720985249,
         "Kimoto": 1727053562,
@@ -92302,26 +94279,21 @@
         "Tropaletta": 1728019955,
         "Laulau77": 1719333296,
         "Martial50": 1740536218,
-        "Stephanos": 1696532525,
         "wopat": 1721689203,
         "Isaeng": 1722461559,
         "Philjet": 1716497386,
         "ortie": 1754861177,
         "PhiletCathe": 1729288585,
-        "s00999": 1694307459,
         "Smayah": 1712957326,
-        "toutoune2189": 1694554119,
         "gxls95": 1728805296,
         "Ninette89": 1742418246,
-        "Herydanslanievre": 1696142921,
-        "maBeltjens": 1712305202,
-        "MutatisMutandis": 1694028556
+        "maBeltjens": 1712305202
       }
     },
     "ChristineCoutiere": {
       "index": 5363,
       "owner_key": "9E7BxDwJSipDeZzz8jHmBeA4KC4KWA9cJH1sAXNmsgSv",
-      "balance": 1084833,
+      "balance": 1124519,
       "membership_expire_on": 1712072952,
       "next_cert_issuable_on": 1683525851,
       "certs_received": {
@@ -92350,7 +94322,7 @@
     "Liam": {
       "index": 1404,
       "owner_key": "9EJH48udCBxPZtgMPnTRCRcjztATXXntHo5sn3xtgnri",
-      "balance": 2024841,
+      "balance": 2064527,
       "membership_expire_on": 1719054475,
       "next_cert_issuable_on": 1687568875,
       "certs_received": {
@@ -92366,7 +94338,7 @@
     "lou108": {
       "index": 10347,
       "owner_key": "9EMbqPHsVgnB9nkrGGsLKiQKgvbWzVCoXecgpttwBs7Q",
-      "balance": 308577,
+      "balance": 348263,
       "membership_expire_on": 1698360983,
       "next_cert_issuable_on": 1672157721,
       "certs_received": {
@@ -92383,7 +94355,7 @@
     "CecileBLT": {
       "index": 11986,
       "owner_key": "9EW8gR7wosYbeAhZ8qmynj3oAGDSQNe6yRfQ9wC3z4w",
-      "balance": 181497,
+      "balance": 221183,
       "membership_expire_on": 1709229999,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -92409,13 +94381,13 @@
       "owner_key": "9EeECjnUoquQbQ6sZDkAZg9RA6zar2RLqSViXQfGstYN",
       "balance": 392218,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631190929,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "CelesteLeBars": {
       "index": 1568,
       "owner_key": "9EeWnRF378kJqWx7mnE6cWk39bostZMJV1hKedptjtaM",
-      "balance": 1729485,
+      "balance": 1769171,
       "membership_expire_on": 1699993590,
       "next_cert_issuable_on": 1687364165,
       "certs_received": {
@@ -92432,7 +94404,7 @@
     "Bealia": {
       "index": 6552,
       "owner_key": "9EfTb1VMmuUDMKHzkyugqhnMkvHjeCK1P4avkkBZUP4e",
-      "balance": 379397,
+      "balance": 419083,
       "membership_expire_on": 1698611919,
       "next_cert_issuable_on": 1670404165,
       "certs_received": {
@@ -92454,7 +94426,7 @@
     "RR62": {
       "index": 13243,
       "owner_key": "9EjZ1fcf42B3BaukKXpbzZGepB2JQJ9GTm2eDGaERHAD",
-      "balance": 38448,
+      "balance": 78134,
       "membership_expire_on": 1720329702,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -92469,7 +94441,7 @@
     "LolyHem": {
       "index": 12295,
       "owner_key": "9EmiAEWudxoy85AZJWbrNxx1NTrXWhNJR8wUBDrjPBrx",
-      "balance": 153892,
+      "balance": 193578,
       "membership_expire_on": 1711459938,
       "next_cert_issuable_on": 1681901412,
       "certs_received": {
@@ -92483,7 +94455,7 @@
     "Kiki2404": {
       "index": 8085,
       "owner_key": "9EyGzooi1rg7R29X1GnP9nGp6tnZjzezLcNS6VBGYCDd",
-      "balance": 820284,
+      "balance": 976970,
       "membership_expire_on": 1714129406,
       "next_cert_issuable_on": 1692506687,
       "certs_received": {
@@ -92517,10 +94489,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "RegineP": {
+      "index": 13677,
+      "owner_key": "9F9e3u4xznTZ76Rnccz3t61wLUAx7P7Uzr7tWjpnHXgn",
+      "balance": 11180,
+      "membership_expire_on": 1727304435,
+      "next_cert_issuable_on": 1696405838,
+      "certs_received": {
+        "Holistique": 1759018328,
+        "LutziaZ": 1758904759,
+        "Seve": 1759030434,
+        "ALLine": 1758865044,
+        "Ludivine85": 1758956238,
+        "NadiaNadodu": 1758873662
+      }
+    },
     "Lili79": {
       "index": 12539,
       "owner_key": "9FDPsfip7Ri5icjYNoVCwSmpoSbhWZocbXB2bEgJ6Y6k",
-      "balance": 202402,
+      "balance": 234088,
       "membership_expire_on": 1713706282,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -92535,7 +94522,7 @@
     "MillyS": {
       "index": 4012,
       "owner_key": "9FDj1JyLZRv3naoqQqweGtfxAN8uLuEdDepYRVuRgB5F",
-      "balance": 835269,
+      "balance": 874955,
       "membership_expire_on": 1716723550,
       "next_cert_issuable_on": 1668655344,
       "certs_received": {
@@ -92578,9 +94565,9 @@
     "Patrick21": {
       "index": 10611,
       "owner_key": "9FeqL2uZaQFxt9EBnBHk9fWRjABT6A9hWc6CV5P41PTg",
-      "balance": 363633,
-      "membership_expire_on": 1700695838,
-      "next_cert_issuable_on": 1692597293,
+      "balance": 393319,
+      "membership_expire_on": 1727707173,
+      "next_cert_issuable_on": 1696251370,
       "certs_received": {
         "LeDemineur21": 1733818330,
         "thibat": 1740098175,
@@ -92605,7 +94592,7 @@
     "Belcor": {
       "index": 9018,
       "owner_key": "9FgCVfoxdzYc7qprYHsPXDqG4bRWyt3EkUikdrAQzxo5",
-      "balance": 880109,
+      "balance": 919795,
       "membership_expire_on": 1717790016,
       "next_cert_issuable_on": 1676473677,
       "certs_received": {
@@ -92635,9 +94622,9 @@
     "LuciaM": {
       "index": 10410,
       "owner_key": "9Fxu6aKcozpUpR7WBcjWQAZyH3QfNaWX5PwQ2JhhHNXq",
-      "balance": 398582,
+      "balance": 338268,
       "membership_expire_on": 1723635445,
-      "next_cert_issuable_on": 1691457326,
+      "next_cert_issuable_on": 1695378768,
       "certs_received": {
         "Monette": 1748329023,
         "ScarlettGabrielle_8": 1742957109,
@@ -92650,6 +94637,7 @@
         "ChrisLA": 1738385913,
         "NouvelAnge": 1735885412,
         "Gigimit57": 1732726660,
+        "EmilieG25": 1758423312,
         "Marionnette": 1732793011,
         "Langlaisvalerie04": 1754693049,
         "Mika83": 1731691817,
@@ -92659,7 +94647,8 @@
         "Marjo": 1730370824,
         "Llorens": 1736952471,
         "WARTHLANDAISSOPHIE": 1728713470,
-        "Marielac": 1738899121
+        "Marielac": 1738899121,
+        "Gebender6": 1757480481
       }
     },
     "Dilara": {
@@ -92679,8 +94668,8 @@
     "Permabees": {
       "index": 4756,
       "owner_key": "9GBzHGVdJcABp7NEVBxF4DBuLjPyxRGJUqHuPQMR1BNu",
-      "balance": 1003469,
-      "membership_expire_on": 1700524946,
+      "balance": 1043155,
+      "membership_expire_on": 1727517350,
       "next_cert_issuable_on": 1675122553,
       "certs_received": {
         "OlivierS57": 1705739185,
@@ -92695,7 +94684,7 @@
     "Sonik": {
       "index": 2290,
       "owner_key": "9GDXtPXVU6frL6ps2erdcQPUqNejLM8mtFHPRtRGUrob",
-      "balance": 1614394,
+      "balance": 1654080,
       "membership_expire_on": 1698085052,
       "next_cert_issuable_on": 1666603583,
       "certs_received": {
@@ -92733,14 +94722,13 @@
         "karjine": 1701316666,
         "Tibz": 1710641632,
         "Fredlassave": 1698784347,
-        "poupinette": 1710641365,
-        "julthor": 1696719361
+        "poupinette": 1710641365
       }
     },
     "YvesEclaireur": {
       "index": 11144,
       "owner_key": "9GWUdCsA9mFMbi2YsxN7NknMUWcQN2S94yUEXASq7aSf",
-      "balance": 250880,
+      "balance": 290566,
       "membership_expire_on": 1704686410,
       "next_cert_issuable_on": 1689060443,
       "certs_received": {
@@ -92750,6 +94738,7 @@
         "AdrienB": 1736245967,
         "aurore90": 1736279637,
         "Vinciane": 1738662032,
+        "ValTayie": 1758654955,
         "jon": 1736281095,
         "Jesuisnaja": 1736245967,
         "AnemoneSyl": 1736269402,
@@ -92767,7 +94756,7 @@
     "Angie": {
       "index": 8536,
       "owner_key": "9Gk6wFFUp4R8XpR2iVBKpRCgYA44XY9kpyJxaK6n8jT8",
-      "balance": 443627,
+      "balance": 483313,
       "membership_expire_on": 1718986777,
       "next_cert_issuable_on": 1668482403,
       "certs_received": {
@@ -92782,7 +94771,7 @@
     "MalouCanevet": {
       "index": 9565,
       "owner_key": "9Gszk6Vr5P9GGzxsvtFUYX7Cpsct26x366KoSAxM9kHg",
-      "balance": 317882,
+      "balance": 311568,
       "membership_expire_on": 1722012030,
       "next_cert_issuable_on": 1691588395,
       "certs_received": {
@@ -92805,9 +94794,9 @@
     "migueleon": {
       "index": 12641,
       "owner_key": "9GvC1LA548f5bs4wP6uFLAmKGfYc8KoUX63mzcUCY8kA",
-      "balance": 281300,
+      "balance": 375406,
       "membership_expire_on": 1715117859,
-      "next_cert_issuable_on": 1692099480,
+      "next_cert_issuable_on": 1696175077,
       "certs_received": {
         "Cholo": 1746949390,
         "Silvi": 1746935153,
@@ -92815,6 +94804,8 @@
         "riky": 1746785462,
         "Naturkike": 1753121572,
         "unica": 1746987506,
+        "Montesclaros": 1758659001,
+        "Baba": 1758659001,
         "Maika": 1755628492,
         "Mariaseelcambio": 1746917319,
         "Nella": 1752038576,
@@ -92823,6 +94814,7 @@
         "DOMIASTRO": 1755237101,
         "EMA": 1751261163,
         "Marianfs": 1750878302,
+        "OrganikSolution": 1759391945,
         "MAarboldelavida": 1750929239,
         "AndresXaudi": 1747249651
       }
@@ -92830,7 +94822,7 @@
     "Attila": {
       "index": 8455,
       "owner_key": "9GzpBvTNviM4GiHfGNkQkc6vYkmgvhHYULJAtFZZesZV",
-      "balance": 459413,
+      "balance": 499099,
       "membership_expire_on": 1717959527,
       "next_cert_issuable_on": 1690988766,
       "certs_received": {
@@ -92851,9 +94843,9 @@
     "vivelavidaconpasion": {
       "index": 12804,
       "owner_key": "9H3W8vhYP435KPBc7H66gRFtKBF94NWmDbACYU5gRbkL",
-      "balance": 114079,
+      "balance": 147665,
       "membership_expire_on": 1715141621,
-      "next_cert_issuable_on": 1692460506,
+      "next_cert_issuable_on": 1696482090,
       "certs_received": {
         "carmenchu_almacristal": 1748974085,
         "AngieantesGeles": 1749002355,
@@ -92866,7 +94858,7 @@
     "Sole30": {
       "index": 9058,
       "owner_key": "9HBeL93S3N4mftPJFzfceWxxCaKydrP4Pwx9iS2nvJzm",
-      "balance": 405682,
+      "balance": 445368,
       "membership_expire_on": 1716771023,
       "next_cert_issuable_on": 1663233112,
       "certs_received": {
@@ -92880,20 +94872,22 @@
     "juandre": {
       "index": 177,
       "owner_key": "9HDB8g1ET1WW4dKU92V65qhEoX5FGvFiHWpBWc4pyxM",
-      "balance": 2074568,
-      "membership_expire_on": 0,
+      "balance": 2084270,
+      "membership_expire_on": 1727528340,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "PierreYves": 1736704820,
         "Estelle": 1736704820,
         "tighane": 1742613929,
-        "Marita": 1742530047
+        "Marita": 1742530047,
+        "DavidB": 1754194947,
+        "mathieu": 1756148324
       }
     },
     "MertensNoam": {
       "index": 12168,
       "owner_key": "9HHHbibmqP2xwr9zQEffq58mMcBKitrQ3r3u5dtwxRqu",
-      "balance": 176540,
+      "balance": 216226,
       "membership_expire_on": 1710518973,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -92908,7 +94902,7 @@
     "Abeille": {
       "index": 10059,
       "owner_key": "9HLKzqxrottZAnTTjcxYHqwYq6ZsVVvzKvp4uqcd17Qm",
-      "balance": 127997,
+      "balance": 121705,
       "membership_expire_on": 1724715484,
       "next_cert_issuable_on": 1668829551,
       "certs_received": {
@@ -92923,9 +94917,9 @@
     "christianforrat": {
       "index": 9087,
       "owner_key": "9HMgrYTAjqc827MocA4QXTwv2DTkX2GcEPMMU1h2rNt",
-      "balance": 90929,
+      "balance": 110115,
       "membership_expire_on": 1719044126,
-      "next_cert_issuable_on": 1687679493,
+      "next_cert_issuable_on": 1696143133,
       "certs_received": {
         "Andou": 1728074910,
         "Mamouchka": 1730427259,
@@ -92951,7 +94945,7 @@
     "quiligus": {
       "index": 6984,
       "owner_key": "9HR95D8Nu5zhiMSa2Xpp1mmutjrPpNGRfkPmQoibYxLu",
-      "balance": 398088,
+      "balance": 437774,
       "membership_expire_on": 1703425455,
       "next_cert_issuable_on": 1687588148,
       "certs_received": {
@@ -92979,7 +94973,7 @@
     "kehops63": {
       "index": 11181,
       "owner_key": "9HZsqixJKnaM1nKT3icYbnisynUJEvukA2MDdf2XGvQN",
-      "balance": 248214,
+      "balance": 287900,
       "membership_expire_on": 1703864326,
       "next_cert_issuable_on": 1681654527,
       "certs_received": {
@@ -93011,7 +95005,7 @@
     "jerome_bdf": {
       "index": 13292,
       "owner_key": "9HiBfb1ue7PatB2YTkHQAacAHjBeQcFmJ4a4DwZR8vaY",
-      "balance": 53040,
+      "balance": 92726,
       "membership_expire_on": 1722178900,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -93033,7 +95027,7 @@
     "Val34": {
       "index": 6939,
       "owner_key": "9HoqX5gB4zRAZMfDj47vm4eU5pG4yCTwPZYypHTZchoR",
-      "balance": 878953,
+      "balance": 918639,
       "membership_expire_on": 1699363367,
       "next_cert_issuable_on": 1688641598,
       "certs_received": {
@@ -93065,10 +95059,12 @@
     "WilTher": {
       "index": 8239,
       "owner_key": "9HttyGnYfFALAnrBsjJAXJ4aFjFxxYjwe8CBtxYe8WNv",
-      "balance": 538097,
+      "balance": 539283,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1677169603,
       "certs_received": {
+        "DominiqueCuvelier": 1757457725,
+        "LaMagicienne": 1759812178,
         "BOUbou007": 1716659915,
         "Yukulele": 1716659230,
         "Tchoupi": 1716654530,
@@ -93090,16 +95086,15 @@
     "Canguy43": {
       "index": 4632,
       "owner_key": "9J1figqsWm2vgXrxyH8KMoHW2BtE9quDWDpJ4HHZ1oou",
-      "balance": 779242,
-      "membership_expire_on": 1699287548,
-      "next_cert_issuable_on": 1679828506,
+      "balance": 818928,
+      "membership_expire_on": 1728177047,
+      "next_cert_issuable_on": 1696692522,
       "certs_received": {
         "Eveilducoeur": 1735800073,
         "jokoli": 1740898497,
         "natascha": 1718502124,
         "franck04": 1728620690,
         "Aricat": 1732498606,
-        "Orchys": 1696641644,
         "manguitou": 1710485958,
         "NouvelAnge": 1730247290,
         "Gigimit57": 1730135050,
@@ -93116,7 +95111,7 @@
     "PintoJeanGilles": {
       "index": 2227,
       "owner_key": "9J7sLHRErjZojDZekp7hrHPoddmRsfPEpAaBVNmq1wyA",
-      "balance": 1240741,
+      "balance": 1280427,
       "membership_expire_on": 1719239908,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -93130,7 +95125,7 @@
     "Marielle": {
       "index": 8464,
       "owner_key": "9JJTSQS6nXfoWoED5G9JUG24Hcd399TF63GDG9y9hzWg",
-      "balance": 500930,
+      "balance": 540616,
       "membership_expire_on": 1711715083,
       "next_cert_issuable_on": 1673358574,
       "certs_received": {
@@ -93146,15 +95141,17 @@
     "Barbatruc": {
       "index": 11964,
       "owner_key": "9JJyVNAmn8MKUqRKsCtzX7pTzo3FzezG6LSLfUQj34qw",
-      "balance": 433706,
+      "balance": 490192,
       "membership_expire_on": 1710100219,
-      "next_cert_issuable_on": 1692931412,
+      "next_cert_issuable_on": 1696221573,
       "certs_received": {
         "Sabinepapillon": 1745798979,
         "PhilippeLafontaine": 1747984012,
         "Chrisma1957": 1741671782,
         "Chabe13": 1741658210,
+        "laurencef": 1758054239,
         "Tchoupi": 1746462945,
+        "morimontj": 1757880184,
         "PEB": 1741739332,
         "Tavartalvert": 1741806901,
         "PatHamster": 1746564435,
@@ -93165,7 +95162,8 @@
         "Domino7": 1741730605,
         "nicgouG": 1743559717,
         "isabelleirigoin": 1754335638,
-        "Sophie72": 1746763574
+        "Sophie72": 1746763574,
+        "Bilou": 1756835396
       }
     },
     "Kananaskis": {
@@ -93179,7 +95177,7 @@
     "Easy": {
       "index": 10288,
       "owner_key": "9JWptk9HpM8wL8iu6nE7yP5919xPEQj7CGwzrBnnSXXN",
-      "balance": 319613,
+      "balance": 359299,
       "membership_expire_on": 1699489631,
       "next_cert_issuable_on": 1675830415,
       "certs_received": {
@@ -93210,9 +95208,9 @@
     "PatrickREVIF": {
       "index": 11377,
       "owner_key": "9JaQyjUDMR1Mo6hr1t9PHbWE6jziMiKS88ETHWTxa7Tu",
-      "balance": 121606,
+      "balance": 143892,
       "membership_expire_on": 1718712528,
-      "next_cert_issuable_on": 1693319686,
+      "next_cert_issuable_on": 1696344441,
       "certs_received": {
         "Gscarabbe": 1750903242,
         "Flore45": 1750104847,
@@ -93221,6 +95219,8 @@
         "OlivierHovasse": 1756138441,
         "MyriamGuillot": 1737974953,
         "TiboDom": 1751841072,
+        "Mathdom": 1757729499,
+        "Effelmandy": 1756605691,
         "Elyse33": 1737951284,
         "Rom1": 1749498789,
         "Franzbar": 1753242270,
@@ -93249,10 +95249,11 @@
     "Maclockbinum": {
       "index": 12368,
       "owner_key": "9JiyFiGVETNtE8NkKexMd9zRo2MsB8H1bvVn1Gd9Jnmo",
-      "balance": 145248,
+      "balance": 184934,
       "membership_expire_on": 1712343742,
-      "next_cert_issuable_on": 1691879056,
+      "next_cert_issuable_on": 1696216675,
       "certs_received": {
+        "AN-gela": 1757010078,
         "DomVe": 1743902880,
         "Krompo": 1743901603,
         "Raphh24": 1744149019,
@@ -93280,7 +95281,7 @@
     "Mijo": {
       "index": 12217,
       "owner_key": "9JqNmvFzw92isykZxgPrzCUxJ8bEP1dqefShqPHWSoG2",
-      "balance": 163200,
+      "balance": 202886,
       "membership_expire_on": 1711675602,
       "next_cert_issuable_on": 1680976122,
       "certs_received": {
@@ -93304,12 +95305,13 @@
     "PascaleParis": {
       "index": 8147,
       "owner_key": "9K7RmViQU9fVW13MkGW5V1jHz6aqcyscbMZhKcrFD5Gk",
-      "balance": 445603,
+      "balance": 566289,
       "membership_expire_on": 1713995908,
       "next_cert_issuable_on": 1684476788,
       "certs_received": {
         "Giviero": 1716226243,
         "JJG48": 1756095515,
+        "Cath38": 1759541374,
         "CecileGayet": 1716217025,
         "Advaita": 1716185389,
         "CorinneBaro": 1716190436,
@@ -93328,10 +95330,24 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "CamilleGB": {
+      "index": 13522,
+      "owner_key": "9KLC3BNPLnXpfzsJrCumujWbdshjbcfzDFBtnJH7cmMw",
+      "balance": 32311,
+      "membership_expire_on": 1724775557,
+      "next_cert_issuable_on": 1694341030,
+      "certs_received": {
+        "pastachutta1964": 1757064470,
+        "CarolePo": 1756920764,
+        "AnthonyDel": 1756920517,
+        "Cyrian": 1756920764,
+        "Nyriel": 1756920517
+      }
+    },
     "manou11260": {
       "index": 12470,
       "owner_key": "9KMa2TisV9GCMFHrwWX5j3CvYsSCVzr1CdQbbtCZM1xT",
-      "balance": 107868,
+      "balance": 147554,
       "membership_expire_on": 1712502454,
       "next_cert_issuable_on": 1692490964,
       "certs_received": {
@@ -93363,14 +95379,13 @@
       "certs_received": {
         "SABine": 1711925065,
         "PATRISS66": 1738349599,
-        "Kaluna": 1693532417,
         "JulietteChamagne": 1710629598
       }
     },
     "YEROKI": {
       "index": 8603,
       "owner_key": "9KWvhKtkszW238fVA5m9tjTZhJzJZteZ7UyCLHrBV9qm",
-      "balance": 400746,
+      "balance": 424132,
       "membership_expire_on": 1713615463,
       "next_cert_issuable_on": 1688917814,
       "certs_received": {
@@ -93413,7 +95428,7 @@
     "Malika8226": {
       "index": 4972,
       "owner_key": "9KYTXd2Hh8tK3UZNJkHF9senPDNMUPChRVFDwoipydGH",
-      "balance": 847993,
+      "balance": 887679,
       "membership_expire_on": 1705679599,
       "next_cert_issuable_on": 1689047366,
       "certs_received": {
@@ -93437,7 +95452,7 @@
     "LaoAesa": {
       "index": 7822,
       "owner_key": "9KsW9a6GtY568toAW8fQGuN8A67iNrRMuTeNXLDqSUxQ",
-      "balance": 396847,
+      "balance": 436533,
       "membership_expire_on": 1713137023,
       "next_cert_issuable_on": 1652865600,
       "certs_received": {
@@ -93451,7 +95466,7 @@
     "Ugo": {
       "index": 12733,
       "owner_key": "9L3JNVbG1soZWXTxoV2u9xGp8jZLQwwCuH6dxSDuTzda",
-      "balance": 171832,
+      "balance": 211518,
       "membership_expire_on": 1716295065,
       "next_cert_issuable_on": 1688647602,
       "certs_received": {
@@ -93465,7 +95480,7 @@
     "Juju21": {
       "index": 5297,
       "owner_key": "9L5mgwisAQ97hmt3bcHtSJiWhcJV1moSqCskdFRMn6Zi",
-      "balance": 595132,
+      "balance": 624418,
       "membership_expire_on": 1703894129,
       "next_cert_issuable_on": 1692846039,
       "certs_received": {
@@ -93489,7 +95504,7 @@
     "FilipaSimoes": {
       "index": 11741,
       "owner_key": "9L5sSY9HzktqovqW7ADQDAriW7UyVd4jDU1oKWayab6P",
-      "balance": 206618,
+      "balance": 246304,
       "membership_expire_on": 1705269912,
       "next_cert_issuable_on": 1687343081,
       "certs_received": {
@@ -93507,7 +95522,7 @@
     "enkarnartesana": {
       "index": 11791,
       "owner_key": "9LGbrzz4cEAU3U94Pxbm1iMVTeMZB8pr472cHMmwWGXY",
-      "balance": 97882,
+      "balance": 123568,
       "membership_expire_on": 1708444628,
       "next_cert_issuable_on": 1686386317,
       "certs_received": {
@@ -93524,7 +95539,7 @@
     "marionbugarach": {
       "index": 9137,
       "owner_key": "9LHy4U1mCX7rRiqfuSYnFGQF8uZz5v6tXk8tBztamT87",
-      "balance": 840782,
+      "balance": 826568,
       "membership_expire_on": 1718112169,
       "next_cert_issuable_on": 1676812665,
       "certs_received": {
@@ -93553,8 +95568,8 @@
     "Pie07": {
       "index": 9431,
       "owner_key": "9LaCWDJj1wL8ttS7oKNHVW3oWYBEp4zMHs29fJoJ3sfV",
-      "balance": 382595,
-      "membership_expire_on": 1693960288,
+      "balance": 387935,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1677576679,
       "certs_received": {
         "SebastienTimbre": 1725520678,
@@ -93569,8 +95584,8 @@
     "Syls": {
       "index": 9851,
       "owner_key": "9LdVfYAna5vTRvxqxqu87gEu3zmW9F2dHgTJkAGKWsV7",
-      "balance": 364201,
-      "membership_expire_on": 1694086388,
+      "balance": 371677,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1674567626,
       "certs_received": {
         "SebastienTimbre": 1728011530,
@@ -93595,10 +95610,11 @@
     "MAIKA": {
       "index": 9607,
       "owner_key": "9LiBmuF2ssaoZDPQtxK2cf3JiEF9AgvyteZurBxHfDt3",
-      "balance": 262977,
+      "balance": 173163,
       "membership_expire_on": 1721924495,
-      "next_cert_issuable_on": 1693222090,
+      "next_cert_issuable_on": 1695619671,
       "certs_received": {
+        "Glorieta": 1756958893,
         "CrisBB": 1739729182,
         "roberplantas": 1733176369,
         "Marifer": 1739662212,
@@ -93617,6 +95633,7 @@
         "Jontxu67": 1747981638,
         "Orakulo": 1733891449,
         "Gontzal": 1726799626,
+        "JoRraGor": 1759182385,
         "Maritxu": 1726799626,
         "Ekane": 1750640609,
         "Jana": 1736149084,
@@ -93633,7 +95650,7 @@
     "Kantz": {
       "index": 10759,
       "owner_key": "9LxYBGVCK6GweowKmU7f82KteYjATJBKhaGgUzR8HQgA",
-      "balance": 292102,
+      "balance": 331788,
       "membership_expire_on": 1700095111,
       "next_cert_issuable_on": 1672649834,
       "certs_received": {
@@ -93648,7 +95665,7 @@
     "Diane": {
       "index": 5320,
       "owner_key": "9LxbKbSV96xp9PWPN1Gmugd9u2ogP5LrWjQ6tJSBGfM3",
-      "balance": 538771,
+      "balance": 578457,
       "membership_expire_on": 1709929971,
       "next_cert_issuable_on": 1686177513,
       "certs_received": {
@@ -93667,11 +95684,10 @@
     "AmandineDupret": {
       "index": 2977,
       "owner_key": "9LyQGsxynTng58j8UTHQi2HgwUxkAN3Wn285b2zZBEZ7",
-      "balance": 1419793,
+      "balance": 1459479,
       "membership_expire_on": 1702163496,
-      "next_cert_issuable_on": 1685431562,
+      "next_cert_issuable_on": 1696481620,
       "certs_received": {
-        "Alfybe": 1693509054,
         "Ashawik": 1702336906,
         "adeline": 1703202821,
         "CarBro": 1728887094,
@@ -93680,7 +95696,6 @@
         "Michellecuyer26": 1754980554,
         "SabineKern": 1730267121,
         "ChristelleHerbagemembre": 1700544753,
-        "GeneVieve": 1694641299,
         "GeneBe": 1705288308,
         "JGlExplorateur": 1705453373
       }
@@ -93688,11 +95703,12 @@
     "SamSam": {
       "index": 10564,
       "owner_key": "9M6FS6BdAKSpNEiQvMzCjyAfHhZkxxHwSRUwpDyJ5iSd",
-      "balance": 200061,
+      "balance": 214907,
       "membership_expire_on": 1701101556,
       "next_cert_issuable_on": 1681386475,
       "certs_received": {
         "ClaireBrune": 1744429913,
+        "CaroKro": 1759298830,
         "Chanchan": 1732728634,
         "Tissia": 1732764370,
         "BRIGITTE2019": 1749620501,
@@ -93706,7 +95722,7 @@
     "AlexiaT": {
       "index": 10780,
       "owner_key": "9MEMcbtPCX5Cxw2vEYYfg81FBSVezzSdWqKxUGRGc9ks",
-      "balance": 281293,
+      "balance": 320979,
       "membership_expire_on": 1701648684,
       "next_cert_issuable_on": 1683452594,
       "certs_received": {
@@ -93744,7 +95760,7 @@
     "emilie": {
       "index": 13009,
       "owner_key": "9MSF67JUWFo7MBwD6y2E72DKQRSCUa3krwND2Rq6ScPK",
-      "balance": 92120,
+      "balance": 106806,
       "membership_expire_on": 1718584042,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -93758,7 +95774,7 @@
     "Exoniack": {
       "index": 10180,
       "owner_key": "9MTHGEsQ6AvpNJeWZ8MVTanhU9UU9MZYDa46euSpcJgJ",
-      "balance": 325226,
+      "balance": 364912,
       "membership_expire_on": 1697738142,
       "next_cert_issuable_on": 1686798005,
       "certs_received": {
@@ -93772,9 +95788,9 @@
     "Nature": {
       "index": 12914,
       "owner_key": "9MbHJS6XUSL2rKgSn7QbBLeQ3BR8BuyT2RgQ7iBDv1Lf",
-      "balance": 64268,
+      "balance": 88354,
       "membership_expire_on": 1718216891,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694493191,
       "certs_received": {
         "Beatricebia": 1750005930,
         "Osmoze": 1750042233,
@@ -93794,7 +95810,7 @@
     "Titinette": {
       "index": 12210,
       "owner_key": "9MwKgKCSL8zGLm6opD5yxgSurRK849QtKH6yP4YhgEpC",
-      "balance": 170300,
+      "balance": 209986,
       "membership_expire_on": 1711670261,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -93809,7 +95825,7 @@
     "ConchaElvira": {
       "index": 8746,
       "owner_key": "9N4A9pFR1xSkUi4yYqmECwxagGHZmZ4WADdr3ozyu9vf",
-      "balance": 84710,
+      "balance": 139396,
       "membership_expire_on": 1717270235,
       "next_cert_issuable_on": 1683270255,
       "certs_received": {
@@ -93843,7 +95859,7 @@
     "LucieVi": {
       "index": 10945,
       "owner_key": "9N9JNgUGZdVgQvcEmH77jRn9NWuCcbCvrD2Nu11HaXtH",
-      "balance": 269394,
+      "balance": 309080,
       "membership_expire_on": 1702496034,
       "next_cert_issuable_on": 1675141960,
       "certs_received": {
@@ -93860,7 +95876,7 @@
       "owner_key": "9N9NQwQsVn1GT7EL1vuWJs99z8uXLoJ5TpAbBAZDEb3Q",
       "balance": 656824,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1630500826,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "Piero": {
@@ -93874,16 +95890,16 @@
     "SOROWE": {
       "index": 6040,
       "owner_key": "9NCrJoMBwKBbXfe9JzHJqLGvoRukRgjjL5aNeCLQLKMv",
-      "balance": 536607,
+      "balance": 576293,
       "membership_expire_on": 1724759773,
-      "next_cert_issuable_on": 1674788561,
+      "next_cert_issuable_on": 1694161593,
       "certs_received": {
         "SandrineMala": 1717148165,
         "BrigitteGabaud": 1709792199,
         "SabineD": 1698013987,
         "MacBoi": 1697993715,
         "Paciencia19": 1714846222,
-        "Sofiachante": 1697993715,
+        "Sofiachante": 1757205237,
         "Pereduchene": 1709408822,
         "OlivierditTiti": 1716081836,
         "chrisbaud": 1714342657,
@@ -93911,7 +95927,7 @@
     "IsadeSpa": {
       "index": 6365,
       "owner_key": "9NLGMnYauJEVDYZcvydiMG8wEosAs3bCv8DMyga4LnvS",
-      "balance": 309395,
+      "balance": 254081,
       "membership_expire_on": 1707822811,
       "next_cert_issuable_on": 1683717592,
       "certs_received": {
@@ -93930,7 +95946,7 @@
     "ISAelle": {
       "index": 5676,
       "owner_key": "9NPaEJk2rs1cukjV3BnwpgZh2hXyvoVFjpNEf2R7i2o5",
-      "balance": 318737,
+      "balance": 358423,
       "membership_expire_on": 1719234470,
       "next_cert_issuable_on": 1687915724,
       "certs_received": {
@@ -93942,15 +95958,14 @@
         "JerryBB": 1721182342,
         "Alhambra6": 1745273437,
         "Annie31": 1750797508,
-        "rosedelumiere": 1693772135,
         "Reveusepure": 1750829456
       }
     },
     "AdrianMP": {
       "index": 9497,
       "owner_key": "9NRAG7ZQZeagkuFiuVGb6nSCQwkGezKM9yqK9TDNvLUu",
-      "balance": 535532,
-      "membership_expire_on": 0,
+      "balance": 508130,
+      "membership_expire_on": 1726439350,
       "next_cert_issuable_on": 1680062996,
       "certs_received": {
         "ErickG_G": 1726001388,
@@ -93967,7 +95982,7 @@
     "PatriciaBP": {
       "index": 11834,
       "owner_key": "9NZRqmNrV3HYoUtfQSwUR2Qo6ej356eGXirfMmGBhMZo",
-      "balance": 216205,
+      "balance": 255891,
       "membership_expire_on": 1709320953,
       "next_cert_issuable_on": 1682509409,
       "certs_received": {
@@ -93982,7 +95997,7 @@
     "FlorenceG": {
       "index": 8402,
       "owner_key": "9NcqtTEZprqCa5k1Qhgoo4j7dTRkSAJvZXTNaTHyL7P1",
-      "balance": 580484,
+      "balance": 620170,
       "membership_expire_on": 1711054532,
       "next_cert_issuable_on": 1685026022,
       "certs_received": {
@@ -94002,7 +96017,7 @@
     "Francoisheb": {
       "index": 8082,
       "owner_key": "9Nd9hvtkazW3LjvCu7CxWkanwGVXNvvB5ySMFrp2g4mB",
-      "balance": 468658,
+      "balance": 516344,
       "membership_expire_on": 1710450359,
       "next_cert_issuable_on": 1675253718,
       "certs_received": {
@@ -94019,7 +96034,7 @@
     "GiovanniSalvatore": {
       "index": 7878,
       "owner_key": "9NfFG6ZDiB6jrTYLJuywMRVVHQHEW438MCqz3MHdwBSy",
-      "balance": 414179,
+      "balance": 453865,
       "membership_expire_on": 1719812995,
       "next_cert_issuable_on": 1653816711,
       "certs_received": {
@@ -94051,7 +96066,7 @@
     "Boutondor": {
       "index": 10352,
       "owner_key": "9NziapbqHj5W5TJk9uwBALcP91HtdXN35KEYBmZ5C7fB",
-      "balance": 329577,
+      "balance": 369263,
       "membership_expire_on": 1699476423,
       "next_cert_issuable_on": 1670987972,
       "certs_received": {
@@ -94066,24 +96081,26 @@
     "ChristianeBleuj": {
       "index": 13311,
       "owner_key": "9P2gwpukwQAjqqvJwbvCJ3uiZTydKwsiZZa5vLFxSHa3",
-      "balance": 56936,
+      "balance": 96622,
       "membership_expire_on": 1722351568,
-      "next_cert_issuable_on": 1693376297,
+      "next_cert_issuable_on": 1696422147,
       "certs_received": {
         "FabFabounette": 1754017133,
         "PatrickREVIF": 1754009068,
         "Seve": 1753939602,
+        "loirisa": 1757994293,
         "Danie45": 1753988237,
         "Ludivine85": 1753914387,
+        "Carole45": 1758405735,
         "YvonneD": 1753984779
       }
     },
     "Nejia07": {
       "index": 12757,
       "owner_key": "9P4uCSWtquBTBcAN6kdtxyzNGULYQoQJ66iAKMRMu56d",
-      "balance": 101460,
+      "balance": 141146,
       "membership_expire_on": 1715892492,
-      "next_cert_issuable_on": 1693444197,
+      "next_cert_issuable_on": 1694049552,
       "certs_received": {
         "veronaturo73": 1747893398,
         "Christelle1901": 1747895728,
@@ -94096,9 +96113,9 @@
     "Lisediez": {
       "index": 1862,
       "owner_key": "9PDWf939ZgHiUFoPydetugim6R3WoqvJX2D9km6EKUqy",
-      "balance": 1607883,
-      "membership_expire_on": 1698573700,
-      "next_cert_issuable_on": 1675950263,
+      "balance": 1607569,
+      "membership_expire_on": 1726868089,
+      "next_cert_issuable_on": 1696072741,
       "certs_received": {
         "DanielleSchmitz": 1741056700,
         "Valenvan": 1739075732,
@@ -94107,13 +96124,14 @@
         "PhilippeLafontaine": 1715879357,
         "ThomasRossi": 1709929828,
         "Ramiane": 1719041476,
+        "LaurentVanEeckhout": 1759114435,
         "Dionysos": 1724559815
       }
     },
     "ukjojo": {
       "index": 10194,
       "owner_key": "9PEvYTrK9GugB5fziqpVxzH5YLncbXZygH3wXJAchhtL",
-      "balance": 320051,
+      "balance": 359737,
       "membership_expire_on": 1698588800,
       "next_cert_issuable_on": 1692420568,
       "certs_received": {
@@ -94145,7 +96163,7 @@
     "Cyanescens": {
       "index": 11349,
       "owner_key": "9PX5DgzkGTfhcf3NiBwWEcbxQWchQ9R3TTAbW3eSkvuX",
-      "balance": 154860,
+      "balance": 194546,
       "membership_expire_on": 1704725066,
       "next_cert_issuable_on": 1681048852,
       "certs_received": {
@@ -94160,7 +96178,7 @@
     "LaurenceLibellule": {
       "index": 12311,
       "owner_key": "9PYcHJ6Vf8p7Mhb7hgYNsFiECdoFFU76FumokEXw1Pfw",
-      "balance": 150956,
+      "balance": 190642,
       "membership_expire_on": 1712762275,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -94174,7 +96192,7 @@
     "KC974": {
       "index": 6954,
       "owner_key": "9PYvQoY6ry1e8sPmy4WSXPWLd8VzDDPvw9wUkZEkKAaE",
-      "balance": 724675,
+      "balance": 764361,
       "membership_expire_on": 1702293555,
       "next_cert_issuable_on": 1665885598,
       "certs_received": {
@@ -94203,8 +96221,8 @@
     "YehoshuaRossille": {
       "index": 3305,
       "owner_key": "9Pi7dtKq7MLzHh9rnmrXiC8av7oACrTuQCHyHyVrVZZR",
-      "balance": 499331,
-      "membership_expire_on": 1700586115,
+      "balance": 539017,
+      "membership_expire_on": 1727292681,
       "next_cert_issuable_on": 1685420229,
       "certs_received": {
         "Lionel_Dechilly": 1726638353,
@@ -94234,7 +96252,7 @@
     "MyriamL": {
       "index": 8122,
       "owner_key": "9PkSmc1tUbCc8sV42y4XrqFX2samLpmqrmPguV1qhTGD",
-      "balance": 441885,
+      "balance": 481571,
       "membership_expire_on": 1715897305,
       "next_cert_issuable_on": 1677574352,
       "certs_received": {
@@ -94250,7 +96268,7 @@
     "Rafafou": {
       "index": 8960,
       "owner_key": "9PtnwScefhQ5vGzsERAKLw7JLzfD3tAkGtBQSccQVbWX",
-      "balance": 397941,
+      "balance": 410780,
       "membership_expire_on": 1715460109,
       "next_cert_issuable_on": 1670314580,
       "certs_received": {
@@ -94287,7 +96305,7 @@
     "Rimadouce": {
       "index": 10466,
       "owner_key": "9QHzVwwxawJqSVbMbtbaxEvq46uVyhrTr7iKnG6ND15u",
-      "balance": 347105,
+      "balance": 386791,
       "membership_expire_on": 1697913693,
       "next_cert_issuable_on": 1672155229,
       "certs_received": {
@@ -94309,8 +96327,8 @@
     "FloT86": {
       "index": 9900,
       "owner_key": "9QpRAccmLzd3A1nsMNkLHQs9cSvyrBzMDSHe3f3c9kxX",
-      "balance": 363524,
-      "membership_expire_on": 1695063589,
+      "balance": 382748,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Unomasuno": 1726620839,
@@ -94333,7 +96351,7 @@
     "Mana": {
       "index": 7436,
       "owner_key": "9QxGgTkWdGYTQjjAWDKrf4MHUBQHmowy1Yw4dwekjQER",
-      "balance": 443119,
+      "balance": 482805,
       "membership_expire_on": 1719420443,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -94373,7 +96391,7 @@
     "mireille26220": {
       "index": 9634,
       "owner_key": "9RAPkBmEvkCya8JyT8ztoEMSvp1HyCfjx4LCSNs5FAjf",
-      "balance": 417745,
+      "balance": 457431,
       "membership_expire_on": 1721690672,
       "next_cert_issuable_on": 1693120201,
       "certs_received": {
@@ -94388,7 +96406,7 @@
     "linaluna": {
       "index": 11512,
       "owner_key": "9RD8wwSg5VBU2AEg2dvto3gFqjJL6Rgk1eMpAv67SeUJ",
-      "balance": 128762,
+      "balance": 87448,
       "membership_expire_on": 1707256268,
       "next_cert_issuable_on": 1680306888,
       "certs_received": {
@@ -94418,7 +96436,7 @@
     "pbrison": {
       "index": 11698,
       "owner_key": "9RJMjQ18GzycwFbZB9dB88xSGahEdSgzteDERpR5jwZG",
-      "balance": 205906,
+      "balance": 245592,
       "membership_expire_on": 1708466375,
       "next_cert_issuable_on": 1677575440,
       "certs_received": {
@@ -94432,7 +96450,7 @@
     "Sparrak": {
       "index": 9641,
       "owner_key": "9RL2tgQ1Kdap8E5Z9SCcWQ7p18SoWChgQDe3pwE2PxzQ",
-      "balance": 270187,
+      "balance": 309873,
       "membership_expire_on": 1723162835,
       "next_cert_issuable_on": 1688372111,
       "certs_received": {
@@ -94461,7 +96479,7 @@
     "Asthenie": {
       "index": 11584,
       "owner_key": "9RTZVw4m1PM8DAa19Q7RVC2jWMxpmskcpbd1dDqu8Vb3",
-      "balance": 228267,
+      "balance": 267953,
       "membership_expire_on": 1707091729,
       "next_cert_issuable_on": 1691652489,
       "certs_received": {
@@ -94492,7 +96510,7 @@
     "marieyogazen": {
       "index": 11640,
       "owner_key": "9RVqNj18JhPzFJiLMQkxXc4U9ug2S3HpJUVahGRMEH46",
-      "balance": 140531,
+      "balance": 180217,
       "membership_expire_on": 1707694557,
       "next_cert_issuable_on": 1688392683,
       "certs_received": {
@@ -94511,12 +96529,13 @@
     "TataCC": {
       "index": 9526,
       "owner_key": "9RaJrNWKzwQUPnRW9h9DWnhKq1uJEdtMH9v2uTjfkqA",
-      "balance": 263900,
+      "balance": 136086,
       "membership_expire_on": 1721583818,
-      "next_cert_issuable_on": 1693371709,
+      "next_cert_issuable_on": 1693922603,
       "certs_received": {
         "Zap": 1746315591,
         "FrancisBperso": 1740942704,
+        "JanineBoitel": 1756682931,
         "dch38": 1726276778,
         "belledemai": 1726276778,
         "JusteAlex": 1737621091,
@@ -94542,7 +96561,7 @@
     "Encalquimista": {
       "index": 8682,
       "owner_key": "9RbkG2kZ2Y1sbebs4ih59H2ACAtRGNhtS3RxEomnSiTt",
-      "balance": 391605,
+      "balance": 391291,
       "membership_expire_on": 1717556970,
       "next_cert_issuable_on": 1661249827,
       "certs_received": {
@@ -94561,7 +96580,7 @@
     "Martin": {
       "index": 6749,
       "owner_key": "9Rc6JMdjXZZW6ermfb37TaNnWGsMEzzv4QkFFQa5NvkJ",
-      "balance": 598810,
+      "balance": 638496,
       "membership_expire_on": 1714476388,
       "next_cert_issuable_on": 1646991752,
       "certs_received": {
@@ -94575,7 +96594,7 @@
     "C13GACHET": {
       "index": 6824,
       "owner_key": "9RcwHSTiawKyn1KQL3A6Zer1c1qvgV3k7xfNxRm7szZq",
-      "balance": 305139,
+      "balance": 344825,
       "membership_expire_on": 1703012023,
       "next_cert_issuable_on": 1681619657,
       "certs_received": {
@@ -94603,7 +96622,7 @@
     "David13500": {
       "index": 4130,
       "owner_key": "9RkdbWsNQx1mFRHDdf5WVig4mA2GuhW5CsPxJgkn7qBw",
-      "balance": 1140247,
+      "balance": 1179933,
       "membership_expire_on": 1721904041,
       "next_cert_issuable_on": 1691012255,
       "certs_received": {
@@ -94613,7 +96632,6 @@
         "Druilhe13117": 1744869694,
         "DannyDadoune": 1701676679,
         "LenaB": 1731714199,
-        "CharlesD": 1694023531,
         "Evydanse": 1706481345,
         "tatinetteb": 1753572739
       }
@@ -94621,7 +96639,7 @@
     "Marsemua": {
       "index": 8672,
       "owner_key": "9RpYemZ715kN9nxZP667GpsjirAJNdQd2KiaaCDhgyNc",
-      "balance": 424070,
+      "balance": 463756,
       "membership_expire_on": 1715801055,
       "next_cert_issuable_on": 1669821533,
       "certs_received": {
@@ -94671,7 +96689,7 @@
     "AnansweD": {
       "index": 7429,
       "owner_key": "9Ru3zfthqqm43Bp9e7f4Bp4dbyLep3RbYqQ5n3fjDWXK",
-      "balance": 594008,
+      "balance": 633694,
       "membership_expire_on": 1707074695,
       "next_cert_issuable_on": 1671004578,
       "certs_received": {
@@ -94687,9 +96705,9 @@
     "LelievreJulia": {
       "index": 4296,
       "owner_key": "9RuQKnGea7kT73VJFFwAA5z9CyU11z1pijdxQSpmtpN8",
-      "balance": 1399914,
+      "balance": 1439600,
       "membership_expire_on": 1722812719,
-      "next_cert_issuable_on": 1691327366,
+      "next_cert_issuable_on": 1694238453,
       "certs_received": {
         "Lune": 1720884846,
         "Yannis": 1746415988,
@@ -94699,6 +96717,7 @@
         "bob31": 1751100464,
         "AngeEden": 1729969509,
         "DameYouli": 1751422384,
+        "ElodieB": 1757789899,
         "Houriadeparissud": 1728713470,
         "KarineKala": 1729640992,
         "mio": 1756029163,
@@ -94708,9 +96727,9 @@
     "Gabrimiel": {
       "index": 8780,
       "owner_key": "9Rw3uxCwWm2UR9GqpL3kHUyk3J3q4R45L3SeB5WRt5Z9",
-      "balance": 416251,
+      "balance": 298127,
       "membership_expire_on": 1714998706,
-      "next_cert_issuable_on": 1693532931,
+      "next_cert_issuable_on": 1695208779,
       "certs_received": {
         "Toutoune73": 1719462148,
         "Ju73": 1742496320,
@@ -94745,7 +96764,7 @@
     "PetitArbre": {
       "index": 6766,
       "owner_key": "9SEB7W9VDpbwVRstK8Vy7VCAupJepHSPY4rfppQDf65e",
-      "balance": 758806,
+      "balance": 798492,
       "membership_expire_on": 1704763194,
       "next_cert_issuable_on": 1692194414,
       "certs_received": {
@@ -94761,7 +96780,7 @@
     "Artemysia": {
       "index": 10849,
       "owner_key": "9SEk3M6ycXFtRMgq5jEoim5BTNSAFv3wBnzP8vwwtTRD",
-      "balance": 279748,
+      "balance": 319434,
       "membership_expire_on": 1702080472,
       "next_cert_issuable_on": 1673444998,
       "certs_received": {
@@ -94839,7 +96858,7 @@
     "InesLaport": {
       "index": 4183,
       "owner_key": "9Sqo78jHC1UFUaPmRku8STARdWcTbk45Njyc3AKRLbbx",
-      "balance": 333769,
+      "balance": 351030,
       "membership_expire_on": 1718897881,
       "next_cert_issuable_on": 1687412281,
       "certs_received": {
@@ -94865,8 +96884,8 @@
     "CarmenSR": {
       "index": 9830,
       "owner_key": "9SyjFjYqVt8ALNjVQQLN5oucPoF4e3hZZN5TCyVmEY25",
-      "balance": 271208,
-      "membership_expire_on": 1696716755,
+      "balance": 310894,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683542221,
       "certs_received": {
         "Cholo": 1735688865,
@@ -94893,7 +96912,7 @@
     "eucalyptus": {
       "index": 12188,
       "owner_key": "9TDyZVwqGfBdKR39Armn9hBJGY7dQuSuA4Bcy5Dg7XHR",
-      "balance": 168699,
+      "balance": 208385,
       "membership_expire_on": 1707318549,
       "next_cert_issuable_on": 1683861585,
       "certs_received": {
@@ -94916,6 +96935,22 @@
       "next_cert_issuable_on": 1634375961,
       "certs_received": {}
     },
+    "Chrisandre": {
+      "index": 13560,
+      "owner_key": "9TSVfee5bjEETJb8eZotpXudp1dAtTSiDhHj12DGC33K",
+      "balance": 29591,
+      "membership_expire_on": 1724534942,
+      "next_cert_issuable_on": 1695382489,
+      "certs_received": {
+        "Kaikus": 1757223091,
+        "Nobby": 1757316932,
+        "majo": 1757376894,
+        "Miguela": 1757289644,
+        "Andre": 1757185560,
+        "Ralf": 1757290453,
+        "MargoMallorca": 1757217509
+      }
+    },
     "LaurentJEGOUZO": {
       "index": 2591,
       "owner_key": "9TZNvgPzVx8cbu72dVyPPBsNMXe55x3FXivGZMegLWJe",
@@ -94927,7 +96962,7 @@
     "EvaGines": {
       "index": 12773,
       "owner_key": "9TeQSn7WR2TLYQvWBJVr8YGCGoG1hVDMpTBKKiuavRHA",
-      "balance": 204307,
+      "balance": 179793,
       "membership_expire_on": 1716570152,
       "next_cert_issuable_on": 1688832554,
       "certs_received": {
@@ -94942,7 +96977,7 @@
     "StellinaStellina": {
       "index": 10287,
       "owner_key": "9TiYJVVStBfyAarfQuDUNv3qAJDF18cBuvo3w2DujQVj",
-      "balance": 301113,
+      "balance": 340799,
       "membership_expire_on": 1699662216,
       "next_cert_issuable_on": 1681131894,
       "certs_received": {
@@ -94972,26 +97007,28 @@
     "evitam": {
       "index": 13043,
       "owner_key": "9ToWoho5ap2j3MtseqDGUfSFdGwutTz9TYjrdqgxsso1",
-      "balance": 65148,
+      "balance": 103334,
       "membership_expire_on": 1719263027,
       "next_cert_issuable_on": 1693462276,
       "certs_received": {
         "Man": 1751349912,
         "Sophie-Ema": 1750893373,
         "Laeti": 1754078834,
+        "Chabe13": 1759272909,
         "Bengo": 1751162852,
         "dblg06": 1751345097,
         "Naho": 1750821617,
         "NataSha": 1751350605,
         "Cleo59": 1751228288,
         "Mazurka": 1754524140,
+        "Domino7": 1759287761,
         "Loup13": 1751393058
       }
     },
     "Sbibou": {
       "index": 11730,
       "owner_key": "9TrKAFazt5zACMxwGzebbgTpdL6px6PXzDDVNjhLmY36",
-      "balance": 201618,
+      "balance": 241304,
       "membership_expire_on": 1704667304,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -95002,6 +97039,21 @@
         "Eva": 1736311594
       }
     },
+    "Chemindelanature": {
+      "index": 13748,
+      "owner_key": "9TvzzqQsnuwbD8bBWaVx4sYzt34fgRqZgi93U8QAFWRE",
+      "balance": 11078,
+      "membership_expire_on": 1726142158,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Sienna": 1759183797,
+        "Agartha": 1759179891,
+        "Clairdelune": 1758759404,
+        "PapillonIsis": 1759280781,
+        "Pieter-LucvanNikkel": 1759714705,
+        "Emily": 1759037331
+      }
+    },
     "marinou": {
       "index": 1121,
       "owner_key": "9TyJjyuJPibmxEczrCytGyK1oJz8paPBPNXAtijLx7RW",
@@ -95013,11 +97065,12 @@
     "Ayema": {
       "index": 9251,
       "owner_key": "9U6mbgW8Hf4VSCqXYBibcoXSybD7HjT5xAZkjkv393k4",
-      "balance": 478183,
+      "balance": 455869,
       "membership_expire_on": 1724158790,
       "next_cert_issuable_on": 1692843632,
       "certs_received": {
         "Clau": 1723962488,
+        "lydiemdb": 1757026261,
         "Adri46": 1724051539,
         "Lhirondelle": 1747428437,
         "Gaelducausse": 1723916408,
@@ -95030,14 +97083,12 @@
     "Plum": {
       "index": 5854,
       "owner_key": "9U7dG1NK5e6MXwTBghSz3Q7Lv3wVicCxcf65bfW9TVC5",
-      "balance": 633034,
-      "membership_expire_on": 1700184871,
+      "balance": 637306,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1646559833,
       "certs_received": {
         "djam": 1746410963,
         "Helenep": 1754807368,
-        "kosnik": 1693847741,
-        "Pirataquante": 1695266965,
         "Hugo": 1697337146
       }
     },
@@ -95085,17 +97136,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1637045859,
       "certs_received": {
-        "marie-blanche": 1696659314,
-        "cym": 1696655638,
-        "ManueManue": 1696889156,
-        "Merlin": 1696744849,
-        "Vivien": 1696730495
+        "ManueManue": 1696889156
       }
     },
     "Alchemist": {
       "index": 5813,
       "owner_key": "9Ud2CmSPmccLghi4HH22957a54uM2VCopaZJTKu8aa8Z",
-      "balance": 774683,
+      "balance": 814369,
       "membership_expire_on": 1719703901,
       "next_cert_issuable_on": 1690644663,
       "certs_received": {
@@ -95103,15 +97150,12 @@
         "gui_tooun": 1717909325,
         "Cyrius666": 1729174068,
         "VBVF": 1729800308,
-        "Paul-B": 1694563212,
         "Etolol": 1744694364,
         "YIKING": 1708334451,
         "EveC": 1750296124,
-        "sisyphe": 1694556936,
         "YvesP": 1719462788,
         "Shaypalgv": 1717565315,
-        "toutoune2189": 1694557548,
-        "Nounoursgt8946": 1694557247,
+        "Framboise89": 1756600889,
         "Guillermo89": 1742758256,
         "Cassie": 1750358823,
         "Ninette89": 1717018588,
@@ -95121,7 +97165,7 @@
     "ChatelainJimmy": {
       "index": 5430,
       "owner_key": "9Uiino6LSwaBEo8XysBd5CnRLTjrX5xEDuH5AGik1RDH",
-      "balance": 734285,
+      "balance": 773971,
       "membership_expire_on": 1715019944,
       "next_cert_issuable_on": 1683536325,
       "certs_received": {
@@ -95138,8 +97182,8 @@
     "CharlesCros": {
       "index": 10557,
       "owner_key": "9Um5qEo96ofSCdA1YHpYWdy296mDmfub71thwpVmQqe8",
-      "balance": 296301,
-      "membership_expire_on": 1698285511,
+      "balance": 297179,
+      "membership_expire_on": 1727102251,
       "next_cert_issuable_on": 1688358660,
       "certs_received": {
         "DomVe": 1731307711,
@@ -95191,7 +97235,7 @@
     "MoniqueMauretCombel": {
       "index": 7788,
       "owner_key": "9V5ozVrJ82gYzxJLXomw1G7FYTMDtSwM44FXFevPB6nu",
-      "balance": 506531,
+      "balance": 546217,
       "membership_expire_on": 1711370775,
       "next_cert_issuable_on": 1680663641,
       "certs_received": {
@@ -95206,23 +97250,23 @@
     "Bap": {
       "index": 5629,
       "owner_key": "9V8gQPAUSzNGic4SthtCgpgLhfHLLDopf7fKKgnKUjJJ",
-      "balance": 680145,
-      "membership_expire_on": 1694057105,
-      "next_cert_issuable_on": 1672741762,
+      "balance": 655151,
+      "membership_expire_on": 1725637221,
+      "next_cert_issuable_on": 1696060022,
       "certs_received": {
-        "adridu38": 1694303848,
+        "Kristo": 1757009322,
         "Cristal38": 1737217339,
-        "fanfan77": 1693865564,
-        "Coco46": 1693726190,
+        "Zephyr01": 1757093370,
         "christine": 1734766065,
-        "BertrandL": 1693890745,
-        "AstridG": 1726289689
+        "AstridG": 1726289689,
+        "LaurentM": 1756616127,
+        "Fa5": 1757009322
       }
     },
     "Maik": {
       "index": 6122,
       "owner_key": "9VAiuwtdb3NP4G6MVKhWKNdo3QtJctdaC3kJSi2NP2np",
-      "balance": 577255,
+      "balance": 616941,
       "membership_expire_on": 1714830442,
       "next_cert_issuable_on": 1658194544,
       "certs_received": {
@@ -95239,7 +97283,7 @@
     "Golly": {
       "index": 9403,
       "owner_key": "9VV5ERLZHSeJrzLU7u1P46ZjBpZMbYCMBTt4dyvMN9ad",
-      "balance": 420847,
+      "balance": 454533,
       "membership_expire_on": 1723303827,
       "next_cert_issuable_on": 1685843519,
       "certs_received": {
@@ -95268,7 +97312,7 @@
     "Emniht": {
       "index": 11287,
       "owner_key": "9VZybMBh9pi9pK9mrSqjMm4zpNQz59bcaYKmcgp4H9AJ",
-      "balance": 222798,
+      "balance": 262484,
       "membership_expire_on": 1704724750,
       "next_cert_issuable_on": 1677074912,
       "certs_received": {
@@ -95310,7 +97354,7 @@
     "Cybril": {
       "index": 6615,
       "owner_key": "9VqmTY3RLbWBZF9twq4z6vKcZ2qprEZhWaRgJSY6eLPW",
-      "balance": 657061,
+      "balance": 14014,
       "membership_expire_on": 1697028311,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -95332,7 +97376,7 @@
     "HELLIA": {
       "index": 6844,
       "owner_key": "9Vvh6cz2MsxndTXVcQZH8gxvredM5R8pHFiwJoc1M8vt",
-      "balance": 242637,
+      "balance": 282323,
       "membership_expire_on": 1700442956,
       "next_cert_issuable_on": 1684128099,
       "certs_received": {
@@ -95377,7 +97421,7 @@
     "PEB": {
       "index": 6047,
       "owner_key": "9WEQ76GuEHUJVxDBChjKfHQugpfMQA1Xyn6AGzhttkVT",
-      "balance": 659207,
+      "balance": 698893,
       "membership_expire_on": 1721266406,
       "next_cert_issuable_on": 1690645515,
       "certs_received": {
@@ -95404,14 +97448,13 @@
         "Mabize": 1720317390,
         "Laet29": 1739683377,
         "Stelzchantal": 1697131082,
-        "Gclaire": 1696486281,
         "ArianeRiveros": 1700930555
       }
     },
     "myflow": {
       "index": 11464,
       "owner_key": "9WEe2faNfADWXqft8hTk5XWB5JCJme3F4fxjMNCknTL9",
-      "balance": 222890,
+      "balance": 262576,
       "membership_expire_on": 1706916495,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -95427,7 +97470,7 @@
     "loicloydcore": {
       "index": 12045,
       "owner_key": "9WFjAwjfNyHXxVbjNrnfLsRLjazMaDZc3CUyeRfmF6ZR",
-      "balance": 307402,
+      "balance": 347088,
       "membership_expire_on": 1710279268,
       "next_cert_issuable_on": 1684117895,
       "certs_received": {
@@ -95442,17 +97485,19 @@
     "Elariel": {
       "index": 12355,
       "owner_key": "9WJ4LrhSAxoSoL23cskbeXGP9hA726EKycq4pyK8rimW",
-      "balance": 165144,
+      "balance": 105142,
       "membership_expire_on": 1712962063,
-      "next_cert_issuable_on": 1693308234,
+      "next_cert_issuable_on": 1695816019,
       "certs_received": {
         "Josemi108": 1744650051,
         "djam": 1747595176,
         "Sorgentini": 1751331775,
         "LauraPDF": 1752045818,
         "SamuelPabloAlmonacid": 1749896322,
+        "Effelmandy": 1756502200,
         "Wotan": 1744731021,
         "Betty": 1753956152,
+        "LucasSebastianPerez": 1756268729,
         "Monik9366": 1744536107,
         "lovol": 1748477203,
         "Roswell": 1744775040,
@@ -95462,8 +97507,8 @@
     "AnnClo": {
       "index": 6075,
       "owner_key": "9WJqy7gejE77dbhdvupPcugu8YjxA7cGjkgpEMcwKq1P",
-      "balance": 691497,
-      "membership_expire_on": 1696542987,
+      "balance": 731183,
+      "membership_expire_on": 1726281851,
       "next_cert_issuable_on": 1691156271,
       "certs_received": {
         "Caline": 1751264455,
@@ -95496,7 +97541,7 @@
     "Greggwad": {
       "index": 8703,
       "owner_key": "9WYSMfsBKc8g71zTgR5wx6g4Xxrsi2GhJu5B2qhUS13K",
-      "balance": 361863,
+      "balance": 401549,
       "membership_expire_on": 1715821150,
       "next_cert_issuable_on": 1671888293,
       "certs_received": {
@@ -95511,7 +97556,7 @@
     "Bougie": {
       "index": 11836,
       "owner_key": "9WaVREpjxPL1HFjNdhFyjP1dtyAHRHmU9d3DyFB199Eq",
-      "balance": 199505,
+      "balance": 239191,
       "membership_expire_on": 1709313194,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -95522,10 +97567,25 @@
         "Chant26": 1740894382
       }
     },
+    "Iroek": {
+      "index": 13684,
+      "owner_key": "9Wc2RJY29bUHffTJZbBfd9NjRRqdhENVfX2zMhGWXXMw",
+      "balance": 94624,
+      "membership_expire_on": 1727096519,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Natalya71": 1758681955,
+        "Chtmosaik": 1759167201,
+        "Josy": 1758866560,
+        "Margauxgau": 1758666630,
+        "ELY": 1758674590,
+        "Annastro81": 1759117934
+      }
+    },
     "Albator73": {
       "index": 9076,
       "owner_key": "9WevsCrTbCzaNmnEx149oQMhBW4Esmfk3TrYACuShAPB",
-      "balance": 441547,
+      "balance": 471233,
       "membership_expire_on": 1723488897,
       "next_cert_issuable_on": 1677304819,
       "certs_received": {
@@ -95539,7 +97599,7 @@
     "ELISA": {
       "index": 12286,
       "owner_key": "9WrDTZHyRFHa13ZvANZ7HD4xHd59Tm8p4FgkEPMT6D5i",
-      "balance": 153792,
+      "balance": 193478,
       "membership_expire_on": 1712167091,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -95555,7 +97615,7 @@
     "PatMal": {
       "index": 8562,
       "owner_key": "9WtZGpKwogv5Tk4nMjqYN38jMpJzmqiXEBZWaAHdZrxz",
-      "balance": 380458,
+      "balance": 420144,
       "membership_expire_on": 1718657624,
       "next_cert_issuable_on": 1678197495,
       "certs_received": {
@@ -95577,7 +97637,7 @@
     "AranKawa": {
       "index": 13097,
       "owner_key": "9Wuhk1RCU52yG2Yu5VxWoeKzB6CtQfexCEfrBLLsy3U5",
-      "balance": 98008,
+      "balance": 144094,
       "membership_expire_on": 1720215029,
       "next_cert_issuable_on": 1689395422,
       "certs_received": {
@@ -95609,11 +97669,12 @@
     "Nicolili": {
       "index": 5460,
       "owner_key": "9X5ka4BK2b99Ko17SWBcGHez6YXXJtoMnEanhgWHwUFc",
-      "balance": 383275,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1644297609,
+      "balance": 404805,
+      "membership_expire_on": 1726527121,
+      "next_cert_issuable_on": 1695043572,
       "certs_received": {
         "Mia81": 1705702650,
+        "Maquilleuse": 1759011835,
         "Patricia": 1707911630,
         "VeroniqueV": 1707356735,
         "amandine": 1704582302,
@@ -95631,17 +97692,18 @@
     "NordineVallas": {
       "index": 265,
       "owner_key": "9XEQzzSHaXauPQeTi8kjcU6V4JTKSpgBLuvnyGjxPZRu",
-      "balance": 2183237,
+      "balance": 2222923,
       "membership_expire_on": 1724408380,
       "next_cert_issuable_on": 1692923176,
       "certs_received": {
         "Jean-Marie": 1742876095,
         "JulienM": 1704615270,
+        "daryl": 1756784499,
         "Pascale72": 1741326167,
         "CharleneEdet": 1720992462,
         "RomanUza": 1701980796,
+        "JeromeCoste": 1756914747,
         "Siltaar": 1739824953,
-        "bdcht": 1694995825,
         "MarionDrn": 1701728138,
         "jeromejub": 1738306288,
         "ecano": 1705026360,
@@ -95652,7 +97714,7 @@
     "lol_troll": {
       "index": 8701,
       "owner_key": "9XEhJ7fWATCPTxpLKiUfrPJ6roGjAcAQkk4fANK6sUAE",
-      "balance": 470063,
+      "balance": 509749,
       "membership_expire_on": 1714865288,
       "next_cert_issuable_on": 1667485240,
       "certs_received": {
@@ -95673,7 +97735,6 @@
       "next_cert_issuable_on": 1642776049,
       "certs_received": {
         "Gedege": 1699652529,
-        "CathyDebronde": 1695962954,
         "marika8": 1717457089,
         "EveB": 1719100922,
         "Coco": 1699763118
@@ -95682,7 +97743,7 @@
     "gaby": {
       "index": 7301,
       "owner_key": "9XQgSKt4ZcXodXyS9twwtQzSEYkWFTGvwAddNBFZkf2p",
-      "balance": 401211,
+      "balance": 440897,
       "membership_expire_on": 1708466375,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -95696,7 +97757,7 @@
     "Magli": {
       "index": 7863,
       "owner_key": "9XVtHAnYoWXyuYNCYr51MKHoy75L3gBRwYxdQWvmudfA",
-      "balance": 633225,
+      "balance": 672911,
       "membership_expire_on": 1711165886,
       "next_cert_issuable_on": 1686310944,
       "certs_received": {
@@ -95716,13 +97777,13 @@
       "owner_key": "9XZ2Y7H7P3HdsqsnnSF4768mzk2iF66WvVY1dz2UUgC",
       "balance": 709588,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632894534,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "FerSar": {
       "index": 12302,
       "owner_key": "9XxG8W9tkwkSMcaPsXGUBo6GBEzTkUSpPr4tcyD1CVLR",
-      "balance": 162724,
+      "balance": 202410,
       "membership_expire_on": 1712457029,
       "next_cert_issuable_on": 1688385979,
       "certs_received": {
@@ -95757,7 +97818,7 @@
     "Cinsia": {
       "index": 6878,
       "owner_key": "9Y3HTNrYtVn6iy65rJHBXXZbLXcdF1uKQAGkBQ7gUM42",
-      "balance": 422111,
+      "balance": 461797,
       "membership_expire_on": 1701805910,
       "next_cert_issuable_on": 1693040582,
       "certs_received": {
@@ -95780,11 +97841,11 @@
     "genevievegarcia": {
       "index": 1367,
       "owner_key": "9Y3eGU8Le6jsatvSk7UjShZKND7boWpBofqc127Laycv",
-      "balance": 1390520,
+      "balance": 1430206,
       "membership_expire_on": 1698608708,
       "next_cert_issuable_on": 1674925095,
       "certs_received": {
-        "LiseBourdelle": 1698105067,
+        "LiseBourdelle": 1756274666,
         "Moineau": 1738007658,
         "mimi": 1744778617,
         "LauQui": 1702173160,
@@ -95813,7 +97874,7 @@
     "John73110": {
       "index": 7748,
       "owner_key": "9YBmmTT4ZDPQugqB2oSGsDaz44ZytqjXMa5WDMTWdXXC",
-      "balance": 527684,
+      "balance": 567370,
       "membership_expire_on": 1711650210,
       "next_cert_issuable_on": 1652866015,
       "certs_received": {
@@ -95828,7 +97889,7 @@
     "LyTo": {
       "index": 10018,
       "owner_key": "9YC2rZ8urVHrEXTtjkygUfKaEpzEWLNz9Vp2WoqJxmAC",
-      "balance": 336552,
+      "balance": 376238,
       "membership_expire_on": 1697673554,
       "next_cert_issuable_on": 1667179554,
       "certs_received": {
@@ -95864,22 +97925,22 @@
     "Raymondebaba": {
       "index": 3002,
       "owner_key": "9YHtbuFETNW2Zw7yo68UuzWSzo5yiDL4DPGM9AB31ExA",
-      "balance": 1352716,
-      "membership_expire_on": 1696427361,
+      "balance": 1359168,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1669611084,
       "certs_received": {
+        "Anthonycormier": 1756659460,
         "DonQuiche": 1707704419,
         "tkpx": 1714457933,
         "domdenantes": 1708319147,
         "Patlutine": 1701729265,
-        "Droudrou": 1696622150,
         "Lolorens": 1708302382
       }
     },
     "CecilePhoenix": {
       "index": 11255,
       "owner_key": "9YL643nibsBoPFR4pZNx45g6faGRMMm8MHDn8hpnEEVC",
-      "balance": 237501,
+      "balance": 217187,
       "membership_expire_on": 1704751922,
       "next_cert_issuable_on": 1692929230,
       "certs_received": {
@@ -95930,8 +97991,8 @@
     "CaroleLonguet": {
       "index": 6185,
       "owner_key": "9YR9Wu4nWpH54niiExtnYhydMdF6z8fQgut9ouP2FW5z",
-      "balance": 1027627,
-      "membership_expire_on": 1696078447,
+      "balance": 1059767,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673873442,
       "certs_received": {
         "MarcoSko": 1700446276,
@@ -95963,8 +98024,8 @@
     "JimenaCastillo": {
       "index": 10496,
       "owner_key": "9YW1ZNe8m3TuFiJqUhv2jS1vb3R2ByWKC8UcrFwp2jjU",
-      "balance": 57128,
-      "membership_expire_on": 1700264623,
+      "balance": 25914,
+      "membership_expire_on": 1727508272,
       "next_cert_issuable_on": 1688377321,
       "certs_received": {
         "kapis": 1738892945,
@@ -95987,12 +98048,8 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1643436214,
       "certs_received": {
-        "Nagual": 1693790902,
         "NathaGhis6389": 1707343278,
-        "Icobonhomme": 1709861170,
-        "s00999": 1694135492,
-        "Herydanslanievre": 1696142921,
-        "MutatisMutandis": 1693520641
+        "Icobonhomme": 1709861170
       }
     },
     "Djtina12": {
@@ -96014,8 +98071,8 @@
     "LooseGoose": {
       "index": 10309,
       "owner_key": "9Ypk4N6XvtdUZTjW8CwJtk6R8QuSRCVkcxFGrfRtWTvb",
-      "balance": 175998,
-      "membership_expire_on": 1699495273,
+      "balance": 220684,
+      "membership_expire_on": 1727656283,
       "next_cert_issuable_on": 1688931400,
       "certs_received": {
         "Artesanatacto": 1740564042,
@@ -96079,7 +98136,7 @@
     "Raphh24": {
       "index": 12181,
       "owner_key": "9YwV21krzENhL7dAadByVFDMiJw9shQRjKrZSBDXpX4t",
-      "balance": 163504,
+      "balance": 203190,
       "membership_expire_on": 1711389725,
       "next_cert_issuable_on": 1681105819,
       "certs_received": {
@@ -96102,7 +98159,7 @@
     "AnnPAT": {
       "index": 12882,
       "owner_key": "9Yzp7FkVAMSBB5zvK4n7HfbPsAFX71kQer66JeTXrkSk",
-      "balance": 217440,
+      "balance": 248548,
       "membership_expire_on": 1718229902,
       "next_cert_issuable_on": 1689721787,
       "certs_received": {
@@ -96116,7 +98173,7 @@
     "Lutinsolite": {
       "index": 2295,
       "owner_key": "9Z3VDzbEMF3zA7ccUYq6AkfqDwnvqzB1RY9MXqoKuDLr",
-      "balance": 1623557,
+      "balance": 1663243,
       "membership_expire_on": 1709403185,
       "next_cert_issuable_on": 1691933777,
       "certs_received": {
@@ -96141,9 +98198,9 @@
     "AnnC57": {
       "index": 10739,
       "owner_key": "9ZLnYfttpwYKxbCLnakoNvNFLsFw9tktTDPTNu1iABYG",
-      "balance": 106320,
-      "membership_expire_on": 1701628146,
-      "next_cert_issuable_on": 1692600231,
+      "balance": 114006,
+      "membership_expire_on": 1728290438,
+      "next_cert_issuable_on": 1696228567,
       "certs_received": {
         "VeroRonsmans": 1733210338,
         "Carine888": 1750366053,
@@ -96185,8 +98242,8 @@
     "Valmo": {
       "index": 9027,
       "owner_key": "9ZPwfVDssH4P6FQQ5FkVzCwyDVNgxtLFHiFFpGRaXy5L",
-      "balance": 372515,
-      "membership_expire_on": 0,
+      "balance": 407929,
+      "membership_expire_on": 1725381017,
       "next_cert_issuable_on": 1669628954,
       "certs_received": {
         "Jerryz": 1732666255,
@@ -96201,7 +98258,7 @@
     "Teresita": {
       "index": 11759,
       "owner_key": "9ZXtTV3Gj2oywZm88Wv2g6FMGZVmqVAXF4a2pfEfw6WF",
-      "balance": 229700,
+      "balance": 265886,
       "membership_expire_on": 1708471735,
       "next_cert_issuable_on": 1685495351,
       "certs_received": {
@@ -96217,8 +98274,8 @@
     "AliasRiton": {
       "index": 9626,
       "owner_key": "9ZYXRJby8AHC9LpPJCav3KY29AfiZggB7fs9KFugs79W",
-      "balance": 375750,
-      "membership_expire_on": 1694616859,
+      "balance": 389634,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1667484190,
       "certs_received": {
         "GildasMalassinet": 1726544426,
@@ -96231,9 +98288,9 @@
     "EtK": {
       "index": 6846,
       "owner_key": "9ZbSdtUr93zdRR26939iHu2WHAUk7qs4WVnNTg3g4miy",
-      "balance": 84710,
+      "balance": 113616,
       "membership_expire_on": 1706103508,
-      "next_cert_issuable_on": 1693390447,
+      "next_cert_issuable_on": 1695908452,
       "certs_received": {
         "sarahmagicienne": 1756013554,
         "Kriss": 1735929052,
@@ -96271,7 +98328,9 @@
         "Eva": 1734559511,
         "BenNature": 1709818175,
         "SKOSA": 1735371747,
+        "Juneve": 1754682442,
         "Lando": 1721405542,
+        "Luviam": 1757039978,
         "CyyP": 1735975075,
         "adriaverfeil": 1715996423,
         "zizou": 1735840961,
@@ -96302,7 +98361,7 @@
     "Capucine": {
       "index": 11241,
       "owner_key": "9a3wXC3rWsfHVJweZN99RTaXUorKHhuj3kro3KaKAfcg",
-      "balance": 242919,
+      "balance": 282605,
       "membership_expire_on": 1704042895,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -96316,7 +98375,7 @@
     "Tihrap-St3": {
       "index": 8916,
       "owner_key": "9aDKguWiYu2vtTdWRk7oya3HBRYGDRtmhLc89PZ6NUX4",
-      "balance": 432094,
+      "balance": 471780,
       "membership_expire_on": 1715795023,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -96330,7 +98389,7 @@
     "Pabloandres": {
       "index": 7518,
       "owner_key": "9aGCgJHWGcEtHbFtFE8ZE6gcpP2qKce4iGqUdCK8BwGP",
-      "balance": 341451,
+      "balance": 381137,
       "membership_expire_on": 1705965168,
       "next_cert_issuable_on": 1682855854,
       "certs_received": {
@@ -96347,7 +98406,7 @@
     "HermesT": {
       "index": 9959,
       "owner_key": "9aRGwVudPMDcw4pZnaW4Bb6hwcqTBW13V182YR3ehPRU",
-      "balance": 363288,
+      "balance": 402974,
       "membership_expire_on": 1697503416,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -96361,8 +98420,8 @@
     "CarineV": {
       "index": 9663,
       "owner_key": "9aRY5uBGEDvDuigwFVfaXBtHEKZygCj5At5hwpbDif3F",
-      "balance": 359527,
-      "membership_expire_on": 1694548046,
+      "balance": 372343,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1688284127,
       "certs_received": {
         "arkanoid3275": 1726281375,
@@ -96398,7 +98457,7 @@
     "Manu63": {
       "index": 8791,
       "owner_key": "9aWKhJJvm2DDu7YXgaqnFXsWLDbqdUvsfjiBYMPfMMmr",
-      "balance": 437057,
+      "balance": 476743,
       "membership_expire_on": 1714824392,
       "next_cert_issuable_on": 1657172377,
       "certs_received": {
@@ -96413,7 +98472,7 @@
     "sety31": {
       "index": 9422,
       "owner_key": "9aaixYkA1Z46eF2WK9A6EAW6PqpYmwT2BddemGaueqoU",
-      "balance": 233764,
+      "balance": 273450,
       "membership_expire_on": 1717769455,
       "next_cert_issuable_on": 1688184561,
       "certs_received": {
@@ -96438,7 +98497,7 @@
     "zintzo": {
       "index": 11950,
       "owner_key": "9aeMBF7c5ucSBocYM9be1CJ5x4uVEXna9wpoMkCoJcFM",
-      "balance": 93874,
+      "balance": 133560,
       "membership_expire_on": 1709586378,
       "next_cert_issuable_on": 1679421189,
       "certs_received": {
@@ -96454,9 +98513,9 @@
     "Aneuf": {
       "index": 2106,
       "owner_key": "9afSLgdH6sEjyKde2rjtUD7DhqFWtUyVsidV1S2XEXH5",
-      "balance": 351496,
+      "balance": 391182,
       "membership_expire_on": 1717790292,
-      "next_cert_issuable_on": 1690427868,
+      "next_cert_issuable_on": 1696389038,
       "certs_received": {
         "MatheoLibreCommeLaMesange": 1740873024,
         "Katiecat": 1742767112,
@@ -96497,11 +98556,12 @@
     "Vally31": {
       "index": 4873,
       "owner_key": "9aqxqRPqLWLznqnMBhR9kdvFAYV9JEYM5js53w8GZ8Xk",
-      "balance": 700728,
-      "membership_expire_on": 0,
+      "balance": 517324,
+      "membership_expire_on": 1727639800,
       "next_cert_issuable_on": 1671018648,
       "certs_received": {
         "ELEOTIE": 1734119841,
+        "Sandcreart": 1759600030,
         "lto31": 1733710090,
         "JCMOGM": 1715877744,
         "JSc": 1702093502,
@@ -96511,7 +98571,7 @@
     "Victoirecharlize": {
       "index": 12022,
       "owner_key": "9auSLjVzAeQgisWBJJ3vuvKyiazwfpguRk37tf9uLi1D",
-      "balance": 307320,
+      "balance": 347006,
       "membership_expire_on": 1709752705,
       "next_cert_issuable_on": 1686376653,
       "certs_received": {
@@ -96525,8 +98585,8 @@
     "Tanguera": {
       "index": 10222,
       "owner_key": "9awh6qbQRZ7JyVUCSJ8boxeZzouuY7ZCiQeyaEnJmYpa",
-      "balance": 304549,
-      "membership_expire_on": 1695844001,
+      "balance": 333455,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1672921877,
       "certs_received": {
         "MacBoi": 1730484185,
@@ -96543,7 +98603,7 @@
     "kalimheros": {
       "index": 7274,
       "owner_key": "9aywHEqDkgTE1iPzjYh6SubD7ziTWQicZPMT1mEF5d9y",
-      "balance": 921609,
+      "balance": 1002891,
       "membership_expire_on": 1709823514,
       "next_cert_issuable_on": 1684161884,
       "certs_received": {
@@ -96585,7 +98645,7 @@
     "Mizzy": {
       "index": 7115,
       "owner_key": "9b3nR4ck6XyjeZkE4FqZVG5ScSup27eajvffC96vwfAg",
-      "balance": 382969,
+      "balance": 348855,
       "membership_expire_on": 1705881423,
       "next_cert_issuable_on": 1679558877,
       "certs_received": {
@@ -96616,7 +98676,7 @@
     "Mariel": {
       "index": 6467,
       "owner_key": "9b8eTeDFDTDQ7Foyo5za91QTAb6qPf2memz9T9ycCmxP",
-      "balance": 764799,
+      "balance": 804485,
       "membership_expire_on": 1697941335,
       "next_cert_issuable_on": 1641138962,
       "certs_received": {
@@ -96629,14 +98689,14 @@
         "Sylbok": 1704111807,
         "guillaumemn": 1703276779,
         "Nhelou22": 1718871091,
-        "ofontes": 1703131429,
+        "ofontes": 1758516614,
         "toffee": 1704492433
       }
     },
     "Fledoux83": {
       "index": 6315,
       "owner_key": "9bBEojeczKtTi4nLgqduF2YPjWkSd9vdX8pTVD7VGDgi",
-      "balance": 518531,
+      "balance": 558217,
       "membership_expire_on": 1697384090,
       "next_cert_issuable_on": 1669308025,
       "certs_received": {
@@ -96676,11 +98736,12 @@
     "Leia": {
       "index": 7601,
       "owner_key": "9bNmf9iedoHFEgtbiFcnE9ETEBu2areRc7J6b8tEuo4f",
-      "balance": 23490,
+      "balance": 12130,
       "membership_expire_on": 1706837655,
-      "next_cert_issuable_on": 1692522194,
+      "next_cert_issuable_on": 1696499391,
       "certs_received": {
         "absalon2": 1722139834,
+        "Cholo": 1758316732,
         "Cordeliaze": 1712161550,
         "arbocenc": 1719737984,
         "MaudD": 1712176744,
@@ -96756,7 +98817,7 @@
     "veronicmartignac": {
       "index": 11422,
       "owner_key": "9bqtGKBGPr6azL2aRTCwTAShsvHfS7cqnUASoy2FPrUT",
-      "balance": 207534,
+      "balance": 239420,
       "membership_expire_on": 1706300315,
       "next_cert_issuable_on": 1689352636,
       "certs_received": {
@@ -96772,9 +98833,9 @@
     "jeanneymar": {
       "index": 5155,
       "owner_key": "9brcXiBmXEJAAaBoUfX7kZWD55mmuWxiZiudarNMZGVD",
-      "balance": 839845,
+      "balance": 859531,
       "membership_expire_on": 1710164543,
-      "next_cert_issuable_on": 1690733541,
+      "next_cert_issuable_on": 1694437833,
       "certs_received": {
         "Tidus": 1747513201,
         "AlexHalley": 1743706166,
@@ -96791,8 +98852,8 @@
     "EtoileND": {
       "index": 500,
       "owner_key": "9bsq2VX91nWVHtRypSfoqztyodgSfn3TZAVi7piv8FJA",
-      "balance": 1373595,
-      "membership_expire_on": 1696561649,
+      "balance": 1411125,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1688434625,
       "certs_received": {
         "ZazieND": 1728119249,
@@ -96835,6 +98896,25 @@
         "Martienne": 1720748702
       }
     },
+    "Ginou17": {
+      "index": 13530,
+      "owner_key": "9byzMw37zf7EgtAiFRZSPXwiwBVEyK29dAzdtCsqAEaR",
+      "balance": 176392,
+      "membership_expire_on": 1724589277,
+      "next_cert_issuable_on": 1696043144,
+      "certs_received": {
+        "Tot16": 1757112442,
+        "DaniailesA": 1757113022,
+        "Mistigri": 1757195907,
+        "Fannyhihihi": 1756200278,
+        "AnaisLicorne": 1756171914,
+        "RobinRoni": 1756200278,
+        "Gawawelle": 1756155767,
+        "MuleRetive": 1757284915,
+        "Omshanti": 1757288564,
+        "NolanRoni": 1756177515
+      }
+    },
     "loxo": {
       "index": 166,
       "owner_key": "9c8y5G96reUFXUWkQNPjCs5MFN1aknD4UssmUqCpXb8D",
@@ -96857,11 +98937,7 @@
       "balance": 620789,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1636959511,
-      "certs_received": {
-        "Nikos": 1695861924,
-        "Spyou": 1695857018,
-        "Julie": 1695855266
-      }
+      "certs_received": {}
     },
     "Nellouche": {
       "index": 8301,
@@ -96880,7 +98956,7 @@
     "Mayalibre": {
       "index": 6304,
       "owner_key": "9cU1vgtaQaKGri9ryChCvYztvaeGi58AypXA8xepdctw",
-      "balance": 608410,
+      "balance": 648096,
       "membership_expire_on": 1705153433,
       "next_cert_issuable_on": 1651397858,
       "certs_received": {
@@ -96900,7 +98976,7 @@
     "nelycornelia": {
       "index": 12213,
       "owner_key": "9cZb86NHwhT8yrkSEKxNYXPmFQV1VKe186KPAwRWMXA8",
-      "balance": 152026,
+      "balance": 71012,
       "membership_expire_on": 1708825682,
       "next_cert_issuable_on": 1687475832,
       "certs_received": {
@@ -96923,7 +98999,7 @@
     "Lynsolence": {
       "index": 11313,
       "owner_key": "9cdtEmbYDs9Bjapn4D5chTtJt4p2texDgoks3q1BrdA7",
-      "balance": 218306,
+      "balance": 257992,
       "membership_expire_on": 1705956615,
       "next_cert_issuable_on": 1683371394,
       "certs_received": {
@@ -96940,9 +99016,9 @@
     "KrisNissa": {
       "index": 11115,
       "owner_key": "9cm9rr6cqQbuuXRJ7tW3P2DYkHy9WexN1SGvBqeVDESr",
-      "balance": 190337,
+      "balance": 250523,
       "membership_expire_on": 1704126351,
-      "next_cert_issuable_on": 1690818018,
+      "next_cert_issuable_on": 1695121517,
       "certs_received": {
         "ScarlettGabrielle_8": 1735851709,
         "Altheaagathe": 1736297161,
@@ -96981,7 +99057,7 @@
     "Iris73": {
       "index": 10395,
       "owner_key": "9d83oF2x7JU99Z6BXmNSFWPHa3A2iGipu6fo5twFb4JB",
-      "balance": 394400,
+      "balance": 434086,
       "membership_expire_on": 1700256328,
       "next_cert_issuable_on": 1676075213,
       "certs_received": {
@@ -97011,15 +99087,21 @@
     "Muriel": {
       "index": 13457,
       "owner_key": "9dFfWRH9bV45Ap53Fw15LUi9faKcxgQDT7JDtotmqRw",
-      "balance": 8214,
+      "balance": 81300,
       "membership_expire_on": 1722901525,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696428279,
       "certs_received": {
         "SophieRita": 1755242111,
         "pastachutta1964": 1755197626,
+        "FabienneM": 1756748048,
+        "DomMembre": 1759531898,
         "Dom67": 1754863121,
+        "Barbatruc": 1759264773,
+        "ChloeS": 1755205457,
         "Rserge": 1756243381,
-        "Katecat": 1756370802
+        "TheoVS": 1755215138,
+        "Katecat": 1756370802,
+        "hazed": 1758658379
       }
     },
     "Deltaplane": {
@@ -97035,7 +99117,7 @@
     "NIUM": {
       "index": 8423,
       "owner_key": "9dKWUXDpqcSiuJzZkVrnmEf2mkbvoEhwALRQ4ichXjdp",
-      "balance": 283623,
+      "balance": 287609,
       "membership_expire_on": 1714759365,
       "next_cert_issuable_on": 1691807199,
       "certs_received": {
@@ -97084,9 +99166,9 @@
     "CyrilCuisin": {
       "index": 777,
       "owner_key": "9dMgMY8d1PQRTvjCVjhYxNbvM6tfUfd2SwphqSsJZLUT",
-      "balance": 935347,
+      "balance": 1186833,
       "membership_expire_on": 1711673511,
-      "next_cert_issuable_on": 1670869621,
+      "next_cert_issuable_on": 1695624709,
       "certs_received": {
         "GildasMalassinet": 1733818330,
         "perenoel": 1720585322,
@@ -97123,7 +99205,7 @@
     "Vallya": {
       "index": 12501,
       "owner_key": "9dYkQFamo1vZZWib1xSi4bMzcCtyNRiVZe4QGtWH6Xmh",
-      "balance": 300596,
+      "balance": 1075282,
       "membership_expire_on": 1714320330,
       "next_cert_issuable_on": 1691303296,
       "certs_received": {
@@ -97139,9 +99221,9 @@
     "jm45orl": {
       "index": 12930,
       "owner_key": "9dZ3VtbXkGuhxPP8m2k36nSSepLQFN499FtkXPsBUGJB",
-      "balance": 87964,
+      "balance": 128150,
       "membership_expire_on": 1718134040,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696218291,
       "certs_received": {
         "Elimarine": 1750205245,
         "Jeff7791": 1750303137,
@@ -97177,7 +99259,7 @@
     "Les2piedsdanslestable": {
       "index": 10595,
       "owner_key": "9daYMJx5msLYrRvXoxXCMUbCUTtBGTMAN5vk2EUsohCj",
-      "balance": 188692,
+      "balance": 228378,
       "membership_expire_on": 1700798990,
       "next_cert_issuable_on": 1681883860,
       "certs_received": {
@@ -97201,7 +99283,7 @@
     "Nuagebleu29": {
       "index": 12212,
       "owner_key": "9drFsdr4P192Fnac7ziS5ujvxcEPdx7YV2761Rofb5Td",
-      "balance": 160200,
+      "balance": 199886,
       "membership_expire_on": 1711477825,
       "next_cert_issuable_on": 1688355326,
       "certs_received": {
@@ -97223,7 +99305,7 @@
     "Sylvette": {
       "index": 12473,
       "owner_key": "9dxC6MbsS8ke6Pq7CNhMqUWbaqLEtn9ek4Q15v4XcZYT",
-      "balance": 134568,
+      "balance": 174254,
       "membership_expire_on": 1714179932,
       "next_cert_issuable_on": 1690407790,
       "certs_received": {
@@ -97237,7 +99319,7 @@
     "Gudule94": {
       "index": 12274,
       "owner_key": "9e1PyiJ7HQJ9TEpSQ2Kgy92ZcA1NrH3ePLoNmcMDcbCz",
-      "balance": 181147,
+      "balance": 220833,
       "membership_expire_on": 1708375612,
       "next_cert_issuable_on": 1685805729,
       "certs_received": {
@@ -97252,9 +99334,9 @@
     "boilloszekfamily": {
       "index": 4613,
       "owner_key": "9e2F2aJmQsESq45SuQ8JkP8x5bBJyYA3RgqxJvBGqpGy",
-      "balance": 785139,
+      "balance": 824825,
       "membership_expire_on": 1703082338,
-      "next_cert_issuable_on": 1663219885,
+      "next_cert_issuable_on": 1696743980,
       "certs_received": {
         "CORBIERESchristine": 1726448484,
         "Aneuf": 1725216121,
@@ -97267,9 +99349,9 @@
     "mae": {
       "index": 7420,
       "owner_key": "9e7rdkfNQetyyKudJz9aRSQQV6HeebeZFsj3Ha5MsMZ1",
-      "balance": 800903,
+      "balance": 872589,
       "membership_expire_on": 1705415510,
-      "next_cert_issuable_on": 1689703430,
+      "next_cert_issuable_on": 1693675567,
       "certs_received": {
         "kapis": 1727221052,
         "carmela": 1710451822,
@@ -97319,7 +99401,7 @@
     "CeciliaGampp": {
       "index": 12414,
       "owner_key": "9eBEmPF4155kcF6YpCWGC8hV8fc5McSJz3vQ7UDQb8Hr",
-      "balance": 133408,
+      "balance": 173094,
       "membership_expire_on": 1713662822,
       "next_cert_issuable_on": 1682431857,
       "certs_received": {
@@ -97341,7 +99423,7 @@
     "Boissette": {
       "index": 6717,
       "owner_key": "9eTJKvxBYTjYYhHBpgq7p4jR9vr4ab4KWFuvn2iYcuPD",
-      "balance": 630799,
+      "balance": 670485,
       "membership_expire_on": 1702164906,
       "next_cert_issuable_on": 1670679697,
       "certs_received": {
@@ -97357,7 +99439,7 @@
     "Meldispenza": {
       "index": 6872,
       "owner_key": "9eTTK4Qqetbneb9Wpj42G1RpNYRWgAa5fYi8GeZbHt8u",
-      "balance": 603448,
+      "balance": 643134,
       "membership_expire_on": 1698166234,
       "next_cert_issuable_on": 1676511958,
       "certs_received": {
@@ -97371,7 +99453,7 @@
     "Asteria": {
       "index": 12042,
       "owner_key": "9ee3goXtwB7jpo8yjLu8qGj3jQjBiqor91pNA3mHVFRq",
-      "balance": 178261,
+      "balance": 217947,
       "membership_expire_on": 1710678160,
       "next_cert_issuable_on": 1688285930,
       "certs_received": {
@@ -97403,9 +99485,9 @@
     "guillaumedangin": {
       "index": 3216,
       "owner_key": "9eqrcf5HVNuc9i2z9efk1Zpw318U5BiMtXMv6cEu92xh",
-      "balance": 381199,
+      "balance": 310885,
       "membership_expire_on": 1718541444,
-      "next_cert_issuable_on": 1669998520,
+      "next_cert_issuable_on": 1693815941,
       "certs_received": {
         "SylvieBoitard": 1729756906,
         "harry974": 1724191773,
@@ -97433,9 +99515,9 @@
     "MrViguier": {
       "index": 8597,
       "owner_key": "9ewF7ZU8MVbu3tAcbM3Za1D3yDu7kzznxM68wbGfWxyL",
-      "balance": 562571,
+      "balance": 602257,
       "membership_expire_on": 1710965101,
-      "next_cert_issuable_on": 1689957877,
+      "next_cert_issuable_on": 1694622589,
       "certs_received": {
         "Ahtohallan": 1746903455,
         "Soyouz": 1718422732,
@@ -97447,7 +99529,9 @@
         "Essitam": 1718555044,
         "Bruno81": 1718098977,
         "Seraphine": 1718688384,
+        "Alex34": 1755123306,
         "CVM": 1718098977,
+        "enchemin": 1755122611,
         "Pommedapi": 1719487156,
         "Nico34": 1732910590,
         "Ddeellpphhiinnee": 1718132438
@@ -97456,7 +99540,7 @@
     "Etresouverain": {
       "index": 11794,
       "owner_key": "9eyAsAjeyRr3zQKyTibAkRV8THFtzQPGfifsSMAikjxm",
-      "balance": 114806,
+      "balance": 125492,
       "membership_expire_on": 1708640706,
       "next_cert_issuable_on": 1684039839,
       "certs_received": {
@@ -97472,7 +99556,7 @@
     "gouveiajoao": {
       "index": 13027,
       "owner_key": "9f3rGM3MovVe8mqGTtYint97crb4cnWsCgpk5FvtwZNG",
-      "balance": 72184,
+      "balance": 111870,
       "membership_expire_on": 1719443974,
       "next_cert_issuable_on": 1689063505,
       "certs_received": {
@@ -97486,7 +99570,7 @@
     "Debo07": {
       "index": 784,
       "owner_key": "9f4ufY1s9dYjLs4WN5tBWb8pfW2NrmMFW1zWXaxAqpiF",
-      "balance": 1976783,
+      "balance": 2016469,
       "membership_expire_on": 1700068326,
       "next_cert_issuable_on": 1668680723,
       "certs_received": {
@@ -97502,7 +99586,7 @@
     "Nirvanafoodtruck": {
       "index": 11535,
       "owner_key": "9f5x11fT3dGjTnK32yRQ88xf58jA27muDZ7ZF2ajDyt3",
-      "balance": 262944,
+      "balance": 287630,
       "membership_expire_on": 1707272260,
       "next_cert_issuable_on": 1678292851,
       "certs_received": {
@@ -97513,6 +99597,20 @@
         "Antares": 1738888690
       }
     },
+    "Tramuntia": {
+      "index": 13752,
+      "owner_key": "9f8EdauUKx9uQErKuJiHeiAu7KSALHGtVmiNFyerVzco",
+      "balance": 18534,
+      "membership_expire_on": 1726923978,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "BlancaFlow": 1758527632,
+        "Brahmaya": 1758527632,
+        "ElenaMavida": 1758527324,
+        "Thais": 1758873662,
+        "ABuenVivir": 1759725705
+      }
+    },
     "Chrisljds": {
       "index": 7051,
       "owner_key": "9fBeAEKxFtvgm2okQ6Exq7U1aWh4XFH83SyvM8UaDJew",
@@ -97530,7 +99628,7 @@
     "Armonie07": {
       "index": 3800,
       "owner_key": "9fC7Xtxx7z2pLQe3Z6RzuLAY7aaf3Q7ZaqgE7XgX2kzW",
-      "balance": 1112120,
+      "balance": 1151806,
       "membership_expire_on": 1716919002,
       "next_cert_issuable_on": 1685433402,
       "certs_received": {
@@ -97548,9 +99646,9 @@
     "Albert": {
       "index": 13333,
       "owner_key": "9fJeuL4b3hMBSiTKaEvvQZwsKwHbZr2gJR2z63F54feh",
-      "balance": 51632,
+      "balance": 137318,
       "membership_expire_on": 1722865507,
-      "next_cert_issuable_on": 1693403091,
+      "next_cert_issuable_on": 1693809812,
       "certs_received": {
         "FabiH": 1754434634,
         "FabienneM": 1754544125,
@@ -97577,8 +99675,8 @@
     "apostis": {
       "index": 10561,
       "owner_key": "9fL6mtf4nSNHy9N831SPfhax1PP8VVa3fHsk1JPSEgJ",
-      "balance": 219751,
-      "membership_expire_on": 1698196007,
+      "balance": 249437,
+      "membership_expire_on": 1725471292,
       "next_cert_issuable_on": 1689495569,
       "certs_received": {
         "hibiscus11": 1730173506,
@@ -97616,16 +99714,16 @@
     "LoisG": {
       "index": 6157,
       "owner_key": "9fd8cjTSHFduUD5YzzPqQyQuEwuhF3u7tSVotWpM8CSn",
-      "balance": 60377,
+      "balance": 60063,
       "membership_expire_on": 1722043575,
       "next_cert_issuable_on": 1675507612,
       "certs_received": {
         "Bich": 1700520102,
-        "Crystal": 1699739112,
+        "Crystal": 1758818414,
         "AnneChaimbault": 1700532644,
         "Matymama": 1708136851,
         "ASHTARA": 1701060303,
-        "SylvieT": 1700211440,
+        "SylvieT": 1759627766,
         "Pectine": 1742194140,
         "annefreda": 1720917336,
         "BrigitteBaron": 1700592702
@@ -97634,7 +99732,7 @@
     "Ryo4s": {
       "index": 7738,
       "owner_key": "9fdcftf2Lg9EM4TN121Xsme4hjbV8BovJbeBv5WLyTRP",
-      "balance": 528735,
+      "balance": 567921,
       "membership_expire_on": 1712836424,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -97651,19 +99749,13 @@
       "owner_key": "9ffcUTZkovjBiTVf8VbqV4pJ6G3Tg9kf2uKj8J5evvnU",
       "balance": 384373,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631604486,
-      "certs_received": {
-        "Estello": 1694125995,
-        "AnnL": 1694125759,
-        "Ramo97432": 1693938091,
-        "FredericAmany974": 1694549931,
-        "Lucile974": 1694122769
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "MercanteDea": {
       "index": 9993,
       "owner_key": "9fix3KYUDUDXrnSPQicR9RQaP9f5mcvyswcbgtGhUogw",
-      "balance": 397170,
+      "balance": 436856,
       "membership_expire_on": 1697588854,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -97679,8 +99771,8 @@
     "AliceMaurette": {
       "index": 6724,
       "owner_key": "9fqNaLVBseZNnsrcqhQoE5zMC35AtZe1pfe14TNkh9hB",
-      "balance": 618142,
-      "membership_expire_on": 1696696814,
+      "balance": 657828,
+      "membership_expire_on": 1728291718,
       "next_cert_issuable_on": 1683954247,
       "certs_received": {
         "Katiecat": 1746997447,
@@ -97733,8 +99825,8 @@
     "Gloriosa": {
       "index": 7612,
       "owner_key": "9g3EAhJC49HcXfLJHVyvm7799kaTL19xfh7gBkhpPrRL",
-      "balance": 332566,
-      "membership_expire_on": 0,
+      "balance": 318736,
+      "membership_expire_on": 1726942916,
       "next_cert_issuable_on": 1656048718,
       "certs_received": {
         "LolaPalomares": 1712453751,
@@ -97751,7 +99843,7 @@
     "BenMaro": {
       "index": 11696,
       "owner_key": "9g7piPNc3L2JuKrrdHNhkP1iajs17NpXR8FALJPj8Xvg",
-      "balance": 204795,
+      "balance": 244481,
       "membership_expire_on": 1707776832,
       "next_cert_issuable_on": 1682856921,
       "certs_received": {
@@ -97766,10 +99858,11 @@
     "valerie": {
       "index": 356,
       "owner_key": "9g8wAiaRQwmv8yHR2v4DEvqaQz3UkqyDPLd53BuSfRx4",
-      "balance": 2197847,
+      "balance": 2237533,
       "membership_expire_on": 1717603515,
       "next_cert_issuable_on": 1690798489,
       "certs_received": {
+        "PierreLOICQ": 1759806639,
         "FrankDeMey": 1753583176,
         "fredux": 1706640662,
         "MarieBertheRanwet": 1753583176,
@@ -97780,7 +99873,7 @@
     "papillonturquoise": {
       "index": 11428,
       "owner_key": "9gJNeaKa3gvGqJ6bZSui9KwxFJB3NWzvuRbCzz578vea",
-      "balance": 234916,
+      "balance": 274602,
       "membership_expire_on": 1705788244,
       "next_cert_issuable_on": 1690029432,
       "certs_received": {
@@ -97804,9 +99897,9 @@
     "marika8": {
       "index": 6051,
       "owner_key": "9gQWu12so8h22JUWDh27gYY7H6xBcZZpWuYWZFrvGLFv",
-      "balance": 493263,
+      "balance": 532949,
       "membership_expire_on": 1724284654,
-      "next_cert_issuable_on": 1683709211,
+      "next_cert_issuable_on": 1692953951,
       "certs_received": {
         "Celang": 1699551206,
         "Plantalarose": 1699835362,
@@ -97838,7 +99931,7 @@
     "syl1209": {
       "index": 6237,
       "owner_key": "9ghdNRsB7ZJqA9JwmMBRWvnBcKHEoE9g3MPFYxYg7wqA",
-      "balance": 665277,
+      "balance": 704963,
       "membership_expire_on": 1699578403,
       "next_cert_issuable_on": 1648428364,
       "certs_received": {
@@ -97854,9 +99947,9 @@
     "lesoleilbrille": {
       "index": 9604,
       "owner_key": "9gnEB1JArQZycf7p73dG6g3uEzV9VbthqkGtoxQuNdHW",
-      "balance": 515763,
-      "membership_expire_on": 1694895426,
-      "next_cert_issuable_on": 1683803353,
+      "balance": 555449,
+      "membership_expire_on": 1725735697,
+      "next_cert_issuable_on": 1694251277,
       "certs_received": {
         "Mairyn31": 1726455875,
         "coquelicot": 1733624629,
@@ -97877,7 +99970,7 @@
     "Carl": {
       "index": 9253,
       "owner_key": "9hBJGZQLdfatf8hBpdGkHRJve3WCWJPko6ZqzLNcRMHg",
-      "balance": 395462,
+      "balance": 435148,
       "membership_expire_on": 1714693024,
       "next_cert_issuable_on": 1662632561,
       "certs_received": {
@@ -97928,7 +100021,7 @@
     "Emmanuailes": {
       "index": 10851,
       "owner_key": "9hcwMLqfPSc8F5VFwACjUBQK8CwhEsC1qAELo4XVTbga",
-      "balance": 180124,
+      "balance": 169810,
       "membership_expire_on": 1702231216,
       "next_cert_issuable_on": 1686739167,
       "certs_received": {
@@ -97966,7 +100059,7 @@
     "Brigitte77": {
       "index": 9135,
       "owner_key": "9hkqSSNyNnhShCE5rj5HTmtf27KKswRTuUkwtjXsvVQW",
-      "balance": 71876,
+      "balance": 71562,
       "membership_expire_on": 1719698632,
       "next_cert_issuable_on": 1692446037,
       "certs_received": {
@@ -97985,6 +100078,22 @@
         "gero": 1721599677
       }
     },
+    "moygag": {
+      "index": 13550,
+      "owner_key": "9hnPNR5hjRNNpyNEJ9RB8fMuSWd57rZ79s7Pnkp4b9LJ",
+      "balance": 21578,
+      "membership_expire_on": 1725714976,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Miguelprinter": 1757530627,
+        "Jacci": 1757536758,
+        "Ardan1977": 1757561763,
+        "Runa_81": 1757523417,
+        "carmenqa": 1757532005,
+        "SantiagoAcosta": 1757561370,
+        "Dayd": 1757562922
+      }
+    },
     "briced": {
       "index": 1462,
       "owner_key": "9hqBF3vaf8PM4PzkzTF4uddHmbjmybnkpaEFSPHvz5K3",
@@ -97993,10 +100102,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Maric": {
+      "index": 13689,
+      "owner_key": "9hqDrTjfc4GkW58yKvce5aP7MBs9drtmUMYyK6YFh8bD",
+      "balance": 8624,
+      "membership_expire_on": 1724365714,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "NopamasYC": 1756171057,
+        "Malene": 1756265573,
+        "Benedicte38": 1756253209,
+        "LEL": 1757953861,
+        "LaurentM": 1759173907,
+        "AlexandraBertrand": 1756702102
+      }
+    },
     "loveinagain81": {
       "index": 1527,
       "owner_key": "9hxPJ9D2oT5pwaAtCYsP4yyMDDwDo2eeTGpGc7nQykJj",
-      "balance": 1746470,
+      "balance": 1786156,
       "membership_expire_on": 1722177633,
       "next_cert_issuable_on": 1691189029,
       "certs_received": {
@@ -98021,9 +100145,9 @@
     "AurelieBab": {
       "index": 7446,
       "owner_key": "9hyTB5Ffr4L7g26B9NsD1qHz2rBx6ivrBmogBUEhdY2n",
-      "balance": 428486,
+      "balance": 468172,
       "membership_expire_on": 1706967365,
-      "next_cert_issuable_on": 1684289526,
+      "next_cert_issuable_on": 1694656993,
       "certs_received": {
         "Chantal": 1728696090,
         "Riri": 1728706914,
@@ -98048,7 +100172,7 @@
     "MarieBertheRanwet": {
       "index": 70,
       "owner_key": "9hyX1xhmkwo4wycLH2V4WXhZ9iaDTxJHAK8My4HhU2Qu",
-      "balance": 2342191,
+      "balance": 2381877,
       "membership_expire_on": 1722025576,
       "next_cert_issuable_on": 1690539976,
       "certs_received": {
@@ -98058,13 +100182,11 @@
         "valerie": 1753841689,
         "Numerosympa": 1756191890,
         "phil3455": 1721010233,
-        "NirmalaMary": 1695962578,
         "tierce": 1753842932,
         "mathieuBize": 1712454809,
         "CheyrelsRegine": 1702190340,
         "Verozen": 1736796563,
-        "ChristelleHerbagemembre": 1695962578,
-        "GeneVieve": 1695571891,
+        "GeneBe": 1759848038,
         "CravatteLucien": 1702190679,
         "Gclaire": 1711321591
       }
@@ -98072,7 +100194,7 @@
     "MadeleineCuisine": {
       "index": 13386,
       "owner_key": "9iEEdnLcMzNtBug2gWw6thLE13ePYpCPXfMc3K5YkHZr",
-      "balance": 71952,
+      "balance": 111638,
       "membership_expire_on": 1723812279,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -98086,9 +100208,9 @@
     "davidbp845": {
       "index": 7477,
       "owner_key": "9iLGbG4fyy6mucWk1ZGaXHXSJtN9KugoNBfi4qKReYm1",
-      "balance": 9564,
+      "balance": 28090,
       "membership_expire_on": 1705334275,
-      "next_cert_issuable_on": 1692708473,
+      "next_cert_issuable_on": 1695263618,
       "certs_received": {
         "kapis": 1716868084,
         "absalon2": 1722961168,
@@ -98132,25 +100254,25 @@
     "liberte55": {
       "index": 5849,
       "owner_key": "9iQmCAfHCptrkSabDN1Z11Gi5bBkLLRH1oZByGpi5bqZ",
-      "balance": 670673,
+      "balance": 3234,
       "membership_expire_on": 1720821611,
-      "next_cert_issuable_on": 1689765446,
+      "next_cert_issuable_on": 1696647317,
       "certs_received": {
         "DelphineDietsch": 1697591070,
-        "Martine51": 1697405564,
+        "Martine51": 1759776630,
         "Lydiabloch": 1700188836,
         "Cyril52": 1697264349,
         "thierryR51": 1697264349,
         "Syldess": 1697265000,
         "FatimaMIEL51": 1697495068,
         "hypericum": 1723319400,
-        "Jerome55": 1697428312
+        "Jerome55": 1758170104
       }
     },
     "nirma": {
       "index": 7285,
       "owner_key": "9iR2GZpjY9WUwpH6kBNYgUSSRdVeSgSCVoYGxPV7aZ3r",
-      "balance": 1091667,
+      "balance": 1131353,
       "membership_expire_on": 1704673230,
       "next_cert_issuable_on": 1683015221,
       "certs_received": {
@@ -98168,7 +100290,7 @@
     "MarieAngeViguier": {
       "index": 12407,
       "owner_key": "9iTthePLS5yzVQmQmvJqnbiK6VSuDDEGKcaxZvkeUPvi",
-      "balance": 210976,
+      "balance": 250662,
       "membership_expire_on": 1713269118,
       "next_cert_issuable_on": 1692938214,
       "certs_received": {
@@ -98182,13 +100304,15 @@
     "DelphineG": {
       "index": 7277,
       "owner_key": "9iVEd59BVPrLZ21EM5ThybKLni2L3KFDrdJiWaP7Lio5",
-      "balance": 523556,
+      "balance": 523242,
       "membership_expire_on": 1712835174,
-      "next_cert_issuable_on": 1687757313,
+      "next_cert_issuable_on": 1694303632,
       "certs_received": {
+        "Carine888": 1757318999,
         "ChamAnne": 1731658517,
         "PetitArbre": 1710197623,
         "PatMal": 1724312516,
+        "AnnC57": 1757314659,
         "marie-sabine": 1730256631,
         "MichelCoomans5575": 1720199040,
         "Kan13ahau": 1710186407,
@@ -98216,13 +100340,14 @@
     "Dieudo": {
       "index": 2426,
       "owner_key": "9iXhe7fYYobNM2C3a63jobLXrdLkdfUVWPxjLsRXqDkd",
-      "balance": 388056,
+      "balance": 427742,
       "membership_expire_on": 1708379979,
-      "next_cert_issuable_on": 1693287950,
+      "next_cert_issuable_on": 1693627094,
       "certs_received": {
         "Celiane": 1716359676,
         "Julia": 1730893878,
         "1000i100": 1712349541,
+        "JeanChristopheSekinger": 1755555330,
         "ArnaudFleuri": 1712621871,
         "VivienProuvot": 1712444695,
         "DanieleBachere": 1712879280,
@@ -98233,7 +100358,7 @@
     "0Rainice0": {
       "index": 10982,
       "owner_key": "9id8qCx3qyYk4nPXwj8ibUG3XNEAfqyamA8c138L1ezf",
-      "balance": 267276,
+      "balance": 306962,
       "membership_expire_on": 1703374719,
       "next_cert_issuable_on": 1684765734,
       "certs_received": {
@@ -98256,7 +100381,7 @@
     "Marielle13": {
       "index": 7649,
       "owner_key": "9ihSwwTTRsczQmCbxRS4MqWfRQQjmwPwNgvHSkyRT11d",
-      "balance": 536041,
+      "balance": 575727,
       "membership_expire_on": 1709469590,
       "next_cert_issuable_on": 1655300972,
       "certs_received": {
@@ -98270,12 +100395,14 @@
     "florian": {
       "index": 13348,
       "owner_key": "9ioLHYmp66hfK3Y52hi7RRf43hzdP9wF7RS7qg6wfBAM",
-      "balance": 43428,
+      "balance": 77114,
       "membership_expire_on": 1721487048,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696293539,
       "certs_received": {
         "Malena58": 1753684216,
+        "Jjackie": 1758420591,
         "ENO": 1754793575,
+        "hazed": 1756771806,
         "Ladgege": 1752247616,
         "Chabeauter": 1753031771,
         "SabineL": 1753682913,
@@ -98285,7 +100412,7 @@
     "ZoeChanoine": {
       "index": 12182,
       "owner_key": "9iqTJanHJo7ge9fh7MdDn9NtZ14m6UZgvht2xyH9hYC6",
-      "balance": 163404,
+      "balance": 203090,
       "membership_expire_on": 1710323003,
       "next_cert_issuable_on": 1686406806,
       "certs_received": {
@@ -98302,7 +100429,7 @@
     "CelineNaturel": {
       "index": 6647,
       "owner_key": "9itv1yY8MGHax7Mzk6aKexftZ5qqChHnUcMAs4oGjsSb",
-      "balance": 614890,
+      "balance": 654576,
       "membership_expire_on": 1699291872,
       "next_cert_issuable_on": 1667806272,
       "certs_received": {
@@ -98319,7 +100446,7 @@
     "Spica": {
       "index": 10604,
       "owner_key": "9iuZp9vfJjc5Hixd6xXDF7qEm7ffMVVNNxAYq5cjWWUq",
-      "balance": 292692,
+      "balance": 332378,
       "membership_expire_on": 1701289351,
       "next_cert_issuable_on": 1677324462,
       "certs_received": {
@@ -98359,9 +100486,9 @@
     "theotop": {
       "index": 13277,
       "owner_key": "9izRVtn8cDa62XvyGaYTf69qUQAr8BKDKKLEtzNTjLhX",
-      "balance": 38676,
+      "balance": 78362,
       "membership_expire_on": 1721958241,
-      "next_cert_issuable_on": 1692894966,
+      "next_cert_issuable_on": 1696398352,
       "certs_received": {
         "Gscarabbe": 1753847520,
         "Mathdom": 1753925976,
@@ -98375,7 +100502,7 @@
     "Bob64": {
       "index": 5947,
       "owner_key": "9j6AHFZRh9w4uUJxGq2uwuY5gUuxZu6KNMuNwBVj4w4j",
-      "balance": 482169,
+      "balance": 521855,
       "membership_expire_on": 1720479812,
       "next_cert_issuable_on": 1692339837,
       "certs_received": {
@@ -98397,11 +100524,13 @@
     "Sisi": {
       "index": 9294,
       "owner_key": "9j6xaNAb7qDU8pvt7Huw78FRovF1UV5WmsDYmZsiCBKs",
-      "balance": 84624,
+      "balance": 68720,
       "membership_expire_on": 1722806953,
-      "next_cert_issuable_on": 1691761573,
+      "next_cert_issuable_on": 1696774004,
       "certs_received": {
         "ColetteNavaux": 1724442479,
+        "DomMembre": 1759097225,
+        "DomVe": 1759098287,
         "Kryszu": 1724375861,
         "Tulipe07": 1734530514,
         "labradorite": 1754772331,
@@ -98415,6 +100544,7 @@
         "Tranquillou": 1727059305,
         "Aime": 1748668800,
         "Mabize": 1724368023,
+        "Puravida": 1757201686,
         "Lieve": 1727319524,
         "Ciel": 1741760328
       }
@@ -98422,7 +100552,7 @@
     "CrisBarnier": {
       "index": 7640,
       "owner_key": "9j7CP8CiiayFE4KVZSiz54pj8JFr93sEpTuct2vkFfUe",
-      "balance": 524776,
+      "balance": 564462,
       "membership_expire_on": 1711295697,
       "next_cert_issuable_on": 1653820985,
       "certs_received": {
@@ -98438,7 +100568,7 @@
     "montmirail": {
       "index": 11110,
       "owner_key": "9j8eFL3QqHwHG2nrQDkX45ZVxGcfshTZPR3Rpbx2rP6g",
-      "balance": 288568,
+      "balance": 328254,
       "membership_expire_on": 1703039487,
       "next_cert_issuable_on": 1681862859,
       "certs_received": {
@@ -98455,7 +100585,7 @@
     "Maheshvarideviji": {
       "index": 12116,
       "owner_key": "9jH61YtrLrcnKqdjBr8NgSXbV1xNcUQxLW9FQQMTzKjc",
-      "balance": 175812,
+      "balance": 175498,
       "membership_expire_on": 1710948845,
       "next_cert_issuable_on": 1684651336,
       "certs_received": {
@@ -98470,18 +100600,13 @@
     "zadkiel": {
       "index": 5724,
       "owner_key": "9jKv8z9Ea82u7432djkYAEqVpWaQhYd4s8dK34HF6Fia",
-      "balance": 351417,
+      "balance": 391103,
       "membership_expire_on": 1722936196,
       "next_cert_issuable_on": 1682346195,
       "certs_received": {
         "YaristanKoon": 1716175797,
         "ASHTARA": 1721275583,
-        "SylvieT": 1694840289,
-        "EvaSorel": 1694878679,
-        "LaurenceDavid": 1695792409,
-        "Omkara": 1695742191,
         "Roland": 1746216032,
-        "Matthias": 1694647002,
         "annefreda": 1754265735,
         "Orenda8": 1751175951
       }
@@ -98489,7 +100614,7 @@
     "SylvieSylvie": {
       "index": 9818,
       "owner_key": "9jQL9ViWRJPj7HfbJjfLDtWxUNyCzAaRN3cbbKyr3oqi",
-      "balance": 563878,
+      "balance": 603564,
       "membership_expire_on": 1721778430,
       "next_cert_issuable_on": 1665188425,
       "certs_received": {
@@ -98503,7 +100628,7 @@
     "Etoile": {
       "index": 5069,
       "owner_key": "9jRpeohwqs9FqMYySvJa3ByehD8YNzeym65inKtHDVW9",
-      "balance": 809182,
+      "balance": 848868,
       "membership_expire_on": 1715376271,
       "next_cert_issuable_on": 1677376945,
       "certs_received": {
@@ -98541,9 +100666,9 @@
     "Aiz": {
       "index": 11732,
       "owner_key": "9jiq6sgLdZvumegN528Gh38gru41QeFqnqvDGjTHMJqc",
-      "balance": 169918,
+      "balance": 131504,
       "membership_expire_on": 1707864901,
-      "next_cert_issuable_on": 1680090982,
+      "next_cert_issuable_on": 1696279678,
       "certs_received": {
         "LooseGoose": 1740255892,
         "maga65": 1740266905,
@@ -98568,18 +100693,16 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1642677163,
       "certs_received": {
-        "Droudrou": 1695262716,
         "SAPHO49": 1705625059,
-        "Shai": 1695171086,
         "cass1": 1705641313
       }
     },
     "MIZOU26": {
       "index": 11259,
       "owner_key": "9js611AeYGPVVukLe6QYdaL91WY5dLrwVKhA3G5mNA4Q",
-      "balance": 235101,
+      "balance": 273987,
       "membership_expire_on": 1705103183,
-      "next_cert_issuable_on": 1693134715,
+      "next_cert_issuable_on": 1695638755,
       "certs_received": {
         "AnnaM": 1755196432,
         "AnnieFortin": 1736931849,
@@ -98618,7 +100741,7 @@
     "Eliora": {
       "index": 10804,
       "owner_key": "9k3iWk4zNEHx6jnC9UZJMuQvjevge6Re2z3KBXrrhjeH",
-      "balance": 263012,
+      "balance": 302698,
       "membership_expire_on": 1702251523,
       "next_cert_issuable_on": 1671270127,
       "certs_received": {
@@ -98632,7 +100755,7 @@
     "Josefina": {
       "index": 11037,
       "owner_key": "9k44NnuUoYjC1dgX7ETZjbcMHcxSShbNLsE8RVmnifPU",
-      "balance": 309481,
+      "balance": 349167,
       "membership_expire_on": 1703801015,
       "next_cert_issuable_on": 1681048564,
       "certs_received": {
@@ -98661,7 +100784,7 @@
     "Marijofav": {
       "index": 8785,
       "owner_key": "9kCnRSLnDc11SuAFpyp93sUiU6fqKCtKZAXvwZVDUhFR",
-      "balance": 378992,
+      "balance": 418678,
       "membership_expire_on": 1717203320,
       "next_cert_issuable_on": 1670683219,
       "certs_received": {
@@ -98676,9 +100799,9 @@
     "Jajamob": {
       "index": 11529,
       "owner_key": "9kKxQpyNf59QbgpcaJRBoGEUC6DvmDB6zN2sT5euJbm4",
-      "balance": 157042,
+      "balance": 191388,
       "membership_expire_on": 1707010034,
-      "next_cert_issuable_on": 1691544498,
+      "next_cert_issuable_on": 1695274132,
       "certs_received": {
         "Andrelebourhis": 1738706669,
         "ScarlettGabrielle_8": 1738706257,
@@ -98694,22 +100817,21 @@
     "OlivierAuber": {
       "index": 91,
       "owner_key": "9kPh8rULm6ba2gDHtSRtj7ptF4ewauKse1cC8eyX3UiT",
-      "balance": 1947225,
-      "membership_expire_on": 1699695671,
+      "balance": 1985833,
+      "membership_expire_on": 1727086775,
       "next_cert_issuable_on": 1652837944,
       "certs_received": {
         "rockwater": 1719357521,
         "PierreLOICQ": 1753595615,
         "fredux": 1706640662,
         "tierce": 1738946373,
-        "Benoa421": 1735160195,
-        "ChristelleHerbagemembre": 1695962578
+        "Benoa421": 1735160195
       }
     },
     "VictoireB": {
       "index": 12114,
       "owner_key": "9kSC6GzfH4UZcg3TMPk6V6wxQGw9RAi61m6dxebXrU11",
-      "balance": 358812,
+      "balance": 398498,
       "membership_expire_on": 1708539996,
       "next_cert_issuable_on": 1687758309,
       "certs_received": {
@@ -98724,9 +100846,9 @@
     "Cricri11190": {
       "index": 12618,
       "owner_key": "9kap2payjvPNWbGwDLpsWVxhRKc6YhMgLPtJrGLedVVY",
-      "balance": 125248,
+      "balance": 164934,
       "membership_expire_on": 1713900904,
-      "next_cert_issuable_on": 1684897594,
+      "next_cert_issuable_on": 1693281062,
       "certs_received": {
         "Crystal": 1745459988,
         "JoelleTAILLANDIER": 1746167100,
@@ -98747,7 +100869,7 @@
     "SophieR": {
       "index": 6383,
       "owner_key": "9keQ9jSaSevLt2gwFtfCdT8JQzPyTnoTWY14tfb554Hf",
-      "balance": 488148,
+      "balance": 527834,
       "membership_expire_on": 1716072791,
       "next_cert_issuable_on": 1648906305,
       "certs_received": {
@@ -98769,11 +100891,12 @@
     "Performance": {
       "index": 6216,
       "owner_key": "9kfaCoAh661Pg8CH9QakqdbkkGEDkfZCvhBXtd71hdAx",
-      "balance": 50037,
+      "balance": 130611,
       "membership_expire_on": 1722256448,
-      "next_cert_issuable_on": 1691408489,
+      "next_cert_issuable_on": 1696664941,
       "certs_received": {
         "kapis": 1719390261,
+        "Cholo": 1756884854,
         "Jeratik": 1727715619,
         "arbocenc": 1714613877,
         "Colheres": 1725212163,
@@ -98782,6 +100905,8 @@
         "bbqueen": 1729452855,
         "sheveck": 1701056883,
         "Anam": 1753992945,
+        "Jobenz": 1757555341,
+        "Shankarina": 1759696299,
         "AlfredoRG": 1714015035,
         "Fifi84": 1709415839,
         "Carl": 1725675380,
@@ -98817,19 +100942,18 @@
       "next_cert_issuable_on": 1653732071,
       "certs_received": {
         "Cat": 1716350346,
-        "Fatia92": 1696491468,
-        "Llorens": 1695315931,
         "Marylou": 1699585166
       }
     },
     "Linata": {
       "index": 13196,
       "owner_key": "9kkRRRZDyfMq5PSQw38Eq2SBQh3ufNpKyuqjKVmvSCra",
-      "balance": 101510,
+      "balance": 141196,
       "membership_expire_on": 1721068232,
-      "next_cert_issuable_on": 1691913774,
+      "next_cert_issuable_on": 1695269001,
       "certs_received": {
         "Pascale72": 1752858495,
+        "Camelodie": 1756931827,
         "Chanchan": 1752958258,
         "Pogona": 1752870596,
         "Maaltir": 1752879819,
@@ -98848,15 +100972,11 @@
     "fannyroz": {
       "index": 2310,
       "owner_key": "9kpjpDbEbFS5oQRL2wYjVq1eZWHtMk3wB5axa4ea4dCJ",
-      "balance": 1355895,
-      "membership_expire_on": 1699186351,
+      "balance": 1385879,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668084496,
       "certs_received": {
-        "Fleur-du-renouveau": 1695916452,
         "Toutane": 1731620280,
-        "Pac": 1694555347,
-        "GillesLangellotti": 1695714348,
-        "Mahe": 1695937734,
         "Fredlassave": 1755107512,
         "colibri": 1714803447,
         "Kounty": 1697258548
@@ -98865,7 +100985,7 @@
     "Vdd": {
       "index": 11125,
       "owner_key": "9kqhavjW1BMa7aSNX54JG42tLjrsTxMWVx29DpczbN3c",
-      "balance": 246450,
+      "balance": 286136,
       "membership_expire_on": 1704488876,
       "next_cert_issuable_on": 1684199267,
       "certs_received": {
@@ -98879,7 +100999,7 @@
     "Michant37": {
       "index": 12840,
       "owner_key": "9kuL26UhsT3X7LUH416NZ8Xhd1MWNmHAEqHGrD4uMEht",
-      "balance": 135075,
+      "balance": 174761,
       "membership_expire_on": 1712753538,
       "next_cert_issuable_on": 1690604410,
       "certs_received": {
@@ -98893,7 +101013,7 @@
     "MiaS": {
       "index": 11796,
       "owner_key": "9kvP1L84fST1cKsAphVbLBno7HGzx42G6oPBcZVzZAtQ",
-      "balance": 263382,
+      "balance": 308068,
       "membership_expire_on": 1708620473,
       "next_cert_issuable_on": 1678713210,
       "certs_received": {
@@ -98923,8 +101043,8 @@
     "RoseAlbamarie": {
       "index": 10487,
       "owner_key": "9m2a9nKCNFy7rfTB4yqVREg2jh8D8pd2Kh8NxvVPPZT3",
-      "balance": 299046,
-      "membership_expire_on": 1699124294,
+      "balance": 338732,
+      "membership_expire_on": 1727204694,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "sat": 1731134008,
@@ -98937,7 +101057,7 @@
     "Magalipt": {
       "index": 9568,
       "owner_key": "9m2sEcQpEUGiZ8XKs5tzJNV9R6Hj6JavqrbfTmoVfqqb",
-      "balance": 335783,
+      "balance": 375469,
       "membership_expire_on": 1721647388,
       "next_cert_issuable_on": 1675062261,
       "certs_received": {
@@ -98957,8 +101077,8 @@
     "Abondance": {
       "index": 3188,
       "owner_key": "9m4YvpGiWqwznwLE7wss2CkFyAy4mLT7jKazjAHEAMor",
-      "balance": 510878,
-      "membership_expire_on": 1698413456,
+      "balance": 330564,
+      "membership_expire_on": 1725550685,
       "next_cert_issuable_on": 1668520305,
       "certs_received": {
         "Zoulya": 1709865823,
@@ -98975,7 +101095,7 @@
     "Domybil": {
       "index": 11728,
       "owner_key": "9m7wxnuJ1cxAQW3PR3dbagLqQ4KuhgzHHBcf7TW3LY2E",
-      "balance": 200618,
+      "balance": 240304,
       "membership_expire_on": 1708636678,
       "next_cert_issuable_on": 1687924614,
       "certs_received": {
@@ -98998,7 +101118,7 @@
     "Montaraz": {
       "index": 10440,
       "owner_key": "9mDXyzSnXn7Z7qbMrFn7ms41C2CafrCYPU4zWHBb54Xc",
-      "balance": 89082,
+      "balance": 118268,
       "membership_expire_on": 1699922444,
       "next_cert_issuable_on": 1693546397,
       "certs_received": {
@@ -99021,10 +101141,11 @@
     "Opti": {
       "index": 319,
       "owner_key": "9mEHy4SnWwPR64h4hoEfCzxLKiJG4wQENgyFYPqf87uW",
-      "balance": 2093113,
+      "balance": 2132799,
       "membership_expire_on": 1696816513,
       "next_cert_issuable_on": 1675847609,
       "certs_received": {
+        "Yassin": 1757734534,
         "KuluseSouriant": 1697186497,
         "trezen": 1700860448,
         "Arkenhertz": 1702273695,
@@ -99037,7 +101158,7 @@
     "Anniepenin": {
       "index": 10955,
       "owner_key": "9mHaJXs756NifGg2QZSjsE2x6gJfJ1HvA4YyvWFCngsj",
-      "balance": 288935,
+      "balance": 348621,
       "membership_expire_on": 1702313924,
       "next_cert_issuable_on": 1678686998,
       "certs_received": {
@@ -99053,17 +101174,17 @@
     "RomanUza": {
       "index": 6182,
       "owner_key": "9mRBWBGxYmgRSZ7w543Dr6nMCDvFDo6Q23dnMrL1oEkZ",
-      "balance": 711530,
+      "balance": 751216,
       "membership_expire_on": 1696867757,
       "next_cert_issuable_on": 1665393667,
       "certs_received": {
-        "Jean-Marie": 1700672826,
+        "Jean-Marie": 1758993573,
         "daryl": 1700637902,
         "Boussaakat-hich": 1700635630,
         "Ruby": 1700813244,
         "Pascale72": 1702900722,
         "NordineVallas": 1700853332,
-        "JeromeCoste": 1700634384,
+        "JeromeCoste": 1757432192,
         "jeromejub": 1700682491,
         "NadiaPaillard": 1716407657,
         "Beluganne": 1728836537,
@@ -99082,7 +101203,7 @@
     "airamoy2810": {
       "index": 5964,
       "owner_key": "9mT6fMwAXwwYEx6ZA3e7VYzcdskpUicRAW6mFya6rGew",
-      "balance": 121421,
+      "balance": 161107,
       "membership_expire_on": 1698972210,
       "next_cert_issuable_on": 1684831330,
       "certs_received": {
@@ -99115,7 +101236,7 @@
     "Ulyses": {
       "index": 8498,
       "owner_key": "9mcx3R2jcTKfrf4CiCWzNnygSePSxa1bcy67bLUDSLs",
-      "balance": 174428,
+      "balance": 204814,
       "membership_expire_on": 1716385235,
       "next_cert_issuable_on": 1673529843,
       "certs_received": {
@@ -99151,7 +101272,7 @@
     "Dhalyl": {
       "index": 11288,
       "owner_key": "9mmjEFBqZqCad7cEdT59oAWXbCQNnocCjXvHaDjLdQXh",
-      "balance": 237624,
+      "balance": 277310,
       "membership_expire_on": 1705764046,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -99165,11 +101286,11 @@
     "OlivierRed": {
       "index": 3160,
       "owner_key": "9mnSvR7KtuwT3B1zGdrgoMGWEXA2MEXBYGTcUFYEEXJB",
-      "balance": 498588,
+      "balance": 528274,
       "membership_expire_on": 1715567251,
       "next_cert_issuable_on": 1690515308,
       "certs_received": {
-        "LiseBourdelle": 1698105067,
+        "LiseBourdelle": 1756274666,
         "NAGIOWOTALA": 1717607477,
         "Lisa34": 1742534001,
         "ingrid": 1730750148,
@@ -99186,7 +101307,7 @@
     "GemaYogaThai": {
       "index": 8382,
       "owner_key": "9mnhpf3rMDXH228x8hnGejJ93Mp8VHEAqz1zVgWHwy8P",
-      "balance": 185241,
+      "balance": 124927,
       "membership_expire_on": 1709952115,
       "next_cert_issuable_on": 1686587201,
       "certs_received": {
@@ -99209,8 +101330,8 @@
     "Etolol": {
       "index": 10737,
       "owner_key": "9mr9DZnTfqu8bcJr2Ht3q61GMwkdirRaBxzbftz6rdhX",
-      "balance": 1205720,
-      "membership_expire_on": 1699310359,
+      "balance": 1189906,
+      "membership_expire_on": 1726951608,
       "next_cert_issuable_on": 1682777838,
       "certs_received": {
         "gberdal": 1744777416,
@@ -99245,6 +101366,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Gwn": {
+      "index": 13540,
+      "owner_key": "9n8VkJMPJzypLWMVjjsDZZ3cQCNcpnm8boD1xjqw5SCg",
+      "balance": 61686,
+      "membership_expire_on": 1725060277,
+      "next_cert_issuable_on": 1696502321,
+      "certs_received": {
+        "Helenep": 1756614991,
+        "JerryBB": 1756658232,
+        "Papy89": 1756620837,
+        "Pirataquante": 1756617877,
+        "Piraculteur": 1756862467
+      }
+    },
     "Falbala": {
       "index": 2202,
       "owner_key": "9n9MgqJWb8vvBDA8cL7kBYJVzh2CJGkRz1qgYDnvroHU",
@@ -99252,7 +101387,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1645747831,
       "certs_received": {
-        "phil3455": 1693694853,
         "HectorTotor": 1708805512,
         "obelix": 1708786844
       }
@@ -99268,8 +101402,8 @@
     "Odyssee81": {
       "index": 9968,
       "owner_key": "9nPA58FmbxtSu6yQbcV3c3M7ZfsGF57fqEkPbotscFwM",
-      "balance": 547429,
-      "membership_expire_on": 1697285890,
+      "balance": 587115,
+      "membership_expire_on": 1725757059,
       "next_cert_issuable_on": 1669879383,
       "certs_received": {
         "Bea813": 1728843490,
@@ -99284,7 +101418,7 @@
     "Arantzamar": {
       "index": 8225,
       "owner_key": "9nQeDd9tfdwkTLbsrUAB4YZVquSQGhM6yxDKU7wuKKoQ",
-      "balance": 370348,
+      "balance": 410034,
       "membership_expire_on": 1714777139,
       "next_cert_issuable_on": 1668416615,
       "certs_received": {
@@ -99302,7 +101436,7 @@
     "Ezoriann": {
       "index": 6747,
       "owner_key": "9nWGuGCeC1Xv6JGZWmMzEwgFhyqVmTxAvRnsaq6TV8z2",
-      "balance": 648515,
+      "balance": 688201,
       "membership_expire_on": 1700671078,
       "next_cert_issuable_on": 1673320673,
       "certs_received": {
@@ -99340,7 +101474,7 @@
     "etrevivant": {
       "index": 11894,
       "owner_key": "9nXxzKtCFvCYzNBrhdc4dmXJRu1S1LeMdeKMfMxzghz2",
-      "balance": 206865,
+      "balance": 230051,
       "membership_expire_on": 1709145023,
       "next_cert_issuable_on": 1684044427,
       "certs_received": {
@@ -99362,12 +101496,13 @@
     "VictorTorre": {
       "index": 8027,
       "owner_key": "9ncDMZXXHdij3PHypHZGLcmtKtkqRrkjiGtKJLB87nQz",
-      "balance": 235416,
+      "balance": 225702,
       "membership_expire_on": 1718730362,
-      "next_cert_issuable_on": 1665063625,
+      "next_cert_issuable_on": 1696564943,
       "certs_received": {
         "NeusVI": 1713501953,
         "simone_c86": 1713466560,
+        "CarmenYogaMaa": 1757721698,
         "NancyOrtiz": 1713509211,
         "Eliasmurcia": 1713562193,
         "CharlieLenglez": 1713502123,
@@ -99380,8 +101515,8 @@
     "OlivierRisselin": {
       "index": 10131,
       "owner_key": "9nfymYAgmevbVuv6qJZfqQyV5d8CsGHAN9vJtDrRbkfc",
-      "balance": 326957,
-      "membership_expire_on": 1698536754,
+      "balance": 366643,
+      "membership_expire_on": 1725997741,
       "next_cert_issuable_on": 1689065852,
       "certs_received": {
         "EliseB": 1730226183,
@@ -99433,7 +101568,7 @@
     "MurielMoulin": {
       "index": 6912,
       "owner_key": "9nmSshDUkUES6CKh1FqVpGy2gqj2cPRiK35J4R2UFPqz",
-      "balance": 605531,
+      "balance": 645217,
       "membership_expire_on": 1705342255,
       "next_cert_issuable_on": 1662973175,
       "certs_received": {
@@ -99448,7 +101583,7 @@
     "Zinzinela": {
       "index": 13407,
       "owner_key": "9npPJWGNgLHQDuemPoiYCM3Tpx2YGQbvTJpprR4cZW6Q",
-      "balance": 239653,
+      "balance": 344739,
       "membership_expire_on": 1724007353,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -99494,7 +101629,7 @@
     "Mhjo": {
       "index": 4802,
       "owner_key": "9o45uAVAZEFUEQRAZaqc7ezbXYr7ALA6bmkwpUxLo1ND",
-      "balance": 390943,
+      "balance": 430629,
       "membership_expire_on": 1701793636,
       "next_cert_issuable_on": 1689438955,
       "certs_received": {
@@ -99516,8 +101651,6 @@
         "Charles": 1733867516,
         "GaelleMry": 1699346688,
         "Marielac": 1740712500,
-        "fredswing": 1695539973,
-        "Glass": 1693820994,
         "stephanoel": 1740654422,
         "Coinlibre": 1722224403
       }
@@ -99525,7 +101658,7 @@
     "Elfie": {
       "index": 11165,
       "owner_key": "9o8U4nkSPWyZQQSd9pmktKsjkxiuxFodfJDcmRi1hU1h",
-      "balance": 268832,
+      "balance": 308518,
       "membership_expire_on": 1704664415,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -99548,7 +101681,7 @@
     "SununLiberty": {
       "index": 12887,
       "owner_key": "9oRnF1WwQ6Co8jVhptXjm8HJ3mb6RBC8ZR7cvgTJbT7o",
-      "balance": 69604,
+      "balance": 109290,
       "membership_expire_on": 1717148202,
       "next_cert_issuable_on": 1690163239,
       "certs_received": {
@@ -99564,8 +101697,8 @@
     "VoillaumeDominique": {
       "index": 9813,
       "owner_key": "9oaPw93s6Em9tMTrbTh4NSbkzqwDBERXvY9rGZLi1S4z",
-      "balance": 470909,
-      "membership_expire_on": 1694980968,
+      "balance": 489065,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1665922345,
       "certs_received": {
         "verolodeve": 1726897349,
@@ -99579,7 +101712,7 @@
     "SergeMascaro": {
       "index": 4385,
       "owner_key": "9obcrCzDvN7cv2k16QpqLxATgoCXtwGBDDgmRNnTbBXG",
-      "balance": 1181508,
+      "balance": 1221194,
       "membership_expire_on": 1699037626,
       "next_cert_issuable_on": 1678872964,
       "certs_received": {
@@ -99589,7 +101722,6 @@
         "daryl": 1743656762,
         "Laula": 1698265748,
         "SaverioStragapede": 1736110403,
-        "Fredhaliotis": 1694222819,
         "XavierALBERT": 1701456776,
         "IsaLecot": 1734741629,
         "JeremyBemon": 1735379936,
@@ -99603,7 +101735,7 @@
     "romz": {
       "index": 2049,
       "owner_key": "9oca3YvBuJBYdK5tdJESbT4tPVfxkDBtjGetU8jnkRpp",
-      "balance": 174462,
+      "balance": 214148,
       "membership_expire_on": 1697024497,
       "next_cert_issuable_on": 1691055976,
       "certs_received": {
@@ -99619,8 +101751,8 @@
     "larcenciel": {
       "index": 5977,
       "owner_key": "9okMb4avwxCQcWaExgHB2oxrTNztS1zMYHPEZnkvAD9v",
-      "balance": 840021,
-      "membership_expire_on": 1694728180,
+      "balance": 854973,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1677817773,
       "certs_received": {
         "Salya": 1698386043,
@@ -99638,9 +101770,9 @@
     "Bastien-29": {
       "index": 5691,
       "owner_key": "9okfZpDaSFde2eyLK4iuY2qh5Re5RArHg5bn4ruLdAx5",
-      "balance": 479236,
+      "balance": 514122,
       "membership_expire_on": 1713489059,
-      "next_cert_issuable_on": 1693313146,
+      "next_cert_issuable_on": 1696803686,
       "certs_received": {
         "jasmine": 1715140930,
         "Tatane": 1712856324,
@@ -99649,7 +101781,6 @@
         "Rakairos": 1719116188,
         "Sixalpha": 1724828308,
         "LaurePollantru": 1703036175,
-        "Gregory": 1695190456,
         "AnitaLeBo": 1718924453,
         "MYCELIUM": 1728008862,
         "Ysa14": 1717367813,
@@ -99673,8 +101804,7 @@
         "Kiki2404": 1741681321,
         "Performance": 1720310049,
         "NIkk0": 1739739982,
-        "FranckBarbe": 1695188624,
-        "Marinalouette": 1695268489,
+        "FranckBarbe": 1756843216,
         "Estellea": 1715480615,
         "Florentt": 1712783954,
         "Minako_Komatsu": 1731626999,
@@ -99684,9 +101814,9 @@
         "Claire": 1734040572,
         "Genosa": 1718751122,
         "Freti73": 1741681766,
-        "EwenCorre": 1694614318,
         "kyungmar": 1718999940,
         "Meryazel": 1717559478,
+        "CCecile": 1758104423,
         "KerdraonSunshine": 1718990569,
         "Oscar07": 1734040238,
         "Caillou": 1713683422
@@ -99695,7 +101825,7 @@
     "Nelsan": {
       "index": 6112,
       "owner_key": "9osL6PwSmsV32Ldg5S4HC3THsJf9xeyo6N7iYjXmWeaB",
-      "balance": 416255,
+      "balance": 391261,
       "membership_expire_on": 1696942777,
       "next_cert_issuable_on": 1684033352,
       "certs_received": {
@@ -99716,9 +101846,9 @@
     "bob31": {
       "index": 12337,
       "owner_key": "9oso4qovN7EQ9zPYCXEQWmyL1ULS65JSLEYXAUxBYXPs",
-      "balance": 254452,
+      "balance": 325838,
       "membership_expire_on": 1711835146,
-      "next_cert_issuable_on": 1692176275,
+      "next_cert_issuable_on": 1693238338,
       "certs_received": {
         "AriahNarnia": 1744412473,
         "Milan": 1749150851,
@@ -99742,7 +101872,7 @@
     "claire22": {
       "index": 11343,
       "owner_key": "9p4Q1w2cxBbfMmsLoEp7agBNwFyjHqShrfEJL2RNCZAy",
-      "balance": 234929,
+      "balance": 274615,
       "membership_expire_on": 1705451362,
       "next_cert_issuable_on": 1675347536,
       "certs_received": {
@@ -99757,8 +101887,8 @@
     "Nauan": {
       "index": 10259,
       "owner_key": "9p6bDfdCCm5Sdotq62dXgpEtY4bnAUDMhKu2tvqZPf8i",
-      "balance": 460467,
-      "membership_expire_on": 1698627966,
+      "balance": 528753,
+      "membership_expire_on": 1725980723,
       "next_cert_issuable_on": 1688364922,
       "certs_received": {
         "Alex_decrecimiento": 1731050770,
@@ -99782,9 +101912,9 @@
     "jpeupagrando": {
       "index": 12173,
       "owner_key": "9p77LRmUHtc4bJbXHCx68JF2YooMPXXwgymqagS3Jqqx",
-      "balance": 105626,
+      "balance": 143176,
       "membership_expire_on": 1709937711,
-      "next_cert_issuable_on": 1692962685,
+      "next_cert_issuable_on": 1696760866,
       "certs_received": {
         "Robisar": 1741496064,
         "Helenep": 1750564407,
@@ -99798,9 +101928,9 @@
     "Yorick": {
       "index": 11260,
       "owner_key": "9p7b5cF5zpEArY1GfE4atDfq2nCWqra8erFaftgek9Lf",
-      "balance": 239742,
+      "balance": 279428,
       "membership_expire_on": 1704671764,
-      "next_cert_issuable_on": 1678805998,
+      "next_cert_issuable_on": 1695257075,
       "certs_received": {
         "RachelKlein": 1737187088,
         "Anaya": 1737054422,
@@ -99813,7 +101943,7 @@
     "dany380": {
       "index": 8650,
       "owner_key": "9p9oecfWU5SVWJd6K8n3CJWcQjck94Wwx1QseAARGmft",
-      "balance": 448267,
+      "balance": 487953,
       "membership_expire_on": 1711725758,
       "next_cert_issuable_on": 1692775483,
       "certs_received": {
@@ -99828,7 +101958,7 @@
     "ChapotineJune": {
       "index": 12325,
       "owner_key": "9pGPT4NJFpVvJiBfiJVDon8vfzwThmduR6qHF8FEdY3W",
-      "balance": 203588,
+      "balance": 243274,
       "membership_expire_on": 1712229302,
       "next_cert_issuable_on": 1686016518,
       "certs_received": {
@@ -99851,9 +101981,9 @@
     "sandrine": {
       "index": 13060,
       "owner_key": "9pS8RP1hUruaJrBnbPNhKJN6XUXPmnvLcNND9iLau4Fm",
-      "balance": 159080,
+      "balance": 247766,
       "membership_expire_on": 1718713977,
-      "next_cert_issuable_on": 1689868282,
+      "next_cert_issuable_on": 1696323830,
       "certs_received": {
         "steph74": 1750816353,
         "Beatrice": 1751422798,
@@ -99865,7 +101995,7 @@
     "MaDalton65": {
       "index": 7065,
       "owner_key": "9pVbcx8pnd6UV69CkoofeR5DnADwpG5135yZbN9Noebn",
-      "balance": 597622,
+      "balance": 657308,
       "membership_expire_on": 1707486408,
       "next_cert_issuable_on": 1679897646,
       "certs_received": {
@@ -99880,7 +102010,7 @@
     "Danse": {
       "index": 12834,
       "owner_key": "9pWoFXH2K3xGxhPp5MwDjDTFp5gUh3ng1DZUoigUVxNc",
-      "balance": 101780,
+      "balance": 141466,
       "membership_expire_on": 1717717209,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -99894,7 +102024,7 @@
     "Charly-": {
       "index": 10258,
       "owner_key": "9pWxp1CU6E9MxZEvCrDPDRP5YJHGCjZNkfkntKWq254n",
-      "balance": 314324,
+      "balance": 354010,
       "membership_expire_on": 1697766191,
       "next_cert_issuable_on": 1668046571,
       "certs_received": {
@@ -99909,7 +102039,7 @@
     "Cronos": {
       "index": 5265,
       "owner_key": "9pYVTAdiiW2QjkGJ13yY7fXVTxpnLpCcMQNDF6AdzCNA",
-      "balance": 237212,
+      "balance": 276898,
       "membership_expire_on": 1717152594,
       "next_cert_issuable_on": 1686580654,
       "certs_received": {
@@ -99918,7 +102048,8 @@
         "Marilina": 1712304837,
         "Memogreg": 1750459275,
         "Fredlassave": 1730569871,
-        "bert": 1712453751
+        "bert": 1712453751,
+        "Pipootz": 1755372959
       }
     },
     "Gregoire": {
@@ -99942,7 +102073,7 @@
     "GeraldM": {
       "index": 6046,
       "owner_key": "9phmmkQuBnWSGALB21R8Yvv48E9sW54qeiKqHsjbovjc",
-      "balance": 694364,
+      "balance": 734050,
       "membership_expire_on": 1703001211,
       "next_cert_issuable_on": 1671923792,
       "certs_received": {
@@ -99963,10 +102094,26 @@
         "laure": 1699079822
       }
     },
+    "JosephK33": {
+      "index": 13537,
+      "owner_key": "9pjUhCVtbAEcsu1dTaoqDu7uwAThdLij7LMbFishyufo",
+      "balance": 107852,
+      "membership_expire_on": 1723648786,
+      "next_cert_issuable_on": 1694712783,
+      "certs_received": {
+        "DyanZan_Gce": 1755370702,
+        "Salsa33150": 1755886617,
+        "LaFouif": 1757800032,
+        "Amankosmos": 1756449345,
+        "Tango8943": 1755852789,
+        "eln": 1755644046,
+        "Ouest_Cristal8": 1755371124
+      }
+    },
     "maiadereva": {
       "index": 94,
       "owner_key": "9pvVYBbapuoWCfZ736pGCWeRhwYeoyfr2dd1XVuNABsS",
-      "balance": 23981,
+      "balance": 63667,
       "membership_expire_on": 1723997378,
       "next_cert_issuable_on": 1681554797,
       "certs_received": {
@@ -99982,9 +102129,9 @@
     "GanTao": {
       "index": 8678,
       "owner_key": "9pwgQY6rDYabN5tBPrmA5RUULmChq2SqCVXnRsGqLWKZ",
-      "balance": 1235010,
+      "balance": 1274696,
       "membership_expire_on": 1714500821,
-      "next_cert_issuable_on": 1692257978,
+      "next_cert_issuable_on": 1693227999,
       "certs_received": {
         "absalon2": 1724430345,
         "Tilio": 1719460962,
@@ -99996,6 +102143,7 @@
         "Spirulina": 1756354223,
         "Estellea": 1739585882,
         "gwladys": 1719460962,
+        "Mido": 1758141234,
         "EricSamsa": 1754674828,
         "Gabaosand": 1719461255
       }
@@ -100003,7 +102151,7 @@
     "Yvonne1": {
       "index": 12356,
       "owner_key": "9q2cahp5Z415WSoptmcsrYo1RRwkmS1KLChinXnR9ihj",
-      "balance": 166416,
+      "balance": 206102,
       "membership_expire_on": 1713216806,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -100035,15 +102183,19 @@
     "otto": {
       "index": 12441,
       "owner_key": "9qCG3Yx1EZncSKU9myyAKXzaQWWT7hoPZqyo272aDvo8",
-      "balance": 144178,
+      "balance": 183864,
       "membership_expire_on": 1711548962,
-      "next_cert_issuable_on": 1693303959,
+      "next_cert_issuable_on": 1695829079,
       "certs_received": {
+        "Ferpires": 1758914337,
         "RitApolinario": 1745264151,
         "devihope": 1745264151,
         "FranciscoVenda": 1747930044,
+        "Minita": 1759609500,
+        "Judit137": 1756722578,
         "anapatapouf": 1744928601,
         "Yana": 1753601175,
+        "Nilia": 1757040438,
         "lurdespinho": 1744599740,
         "HelenaMatos": 1745571829,
         "Rafael": 1753601414,
@@ -100060,13 +102212,15 @@
     "Dracaufeu1990": {
       "index": 12816,
       "owner_key": "9qKMaxXxLU2dG9YBWEVhWsyViye9pKn8FVK5hp19Zkjh",
-      "balance": 61416,
+      "balance": 1802,
       "membership_expire_on": 1715982041,
-      "next_cert_issuable_on": 1693006807,
+      "next_cert_issuable_on": 1696238286,
       "certs_received": {
         "DanWF": 1751690802,
         "jeanclauderateau": 1749090379,
         "FRENOTSYLVIE": 1747801115,
+        "miel67": 1759368048,
+        "Sebel1": 1758155737,
         "Cyrille": 1755879998,
         "hypericum": 1748461194,
         "DeborahQ": 1747804285,
@@ -100076,7 +102230,7 @@
     "NIkk0": {
       "index": 9680,
       "owner_key": "9qMcFwVKkWSjZNbAN53isNLKW8DYmee7mAwLbM3iLvib",
-      "balance": 378368,
+      "balance": 418054,
       "membership_expire_on": 1722372296,
       "next_cert_issuable_on": 1677911435,
       "certs_received": {
@@ -100092,10 +102246,11 @@
     "Gael": {
       "index": 12831,
       "owner_key": "9qPHkZHD911XEMS5xS8vbgnFjBAZasBYtsDSJReewQhk",
-      "balance": 63780,
+      "balance": 278466,
       "membership_expire_on": 1716813199,
-      "next_cert_issuable_on": 1693532931,
+      "next_cert_issuable_on": 1696232837,
       "certs_received": {
+        "NopamasYC": 1757260502,
         "chris07": 1749003605,
         "jaya": 1748376335,
         "celinette07200": 1749235114,
@@ -100116,7 +102271,7 @@
     "Jenn84": {
       "index": 6696,
       "owner_key": "9qSxArTktFFjwKkjHJwmFmbxVk4Kc9N7AYp7TQgLJDHt",
-      "balance": 415951,
+      "balance": 455637,
       "membership_expire_on": 1706874388,
       "next_cert_issuable_on": 1643384472,
       "certs_received": {
@@ -100130,7 +102285,7 @@
     "LouLou18": {
       "index": 12814,
       "owner_key": "9qT2tibGphQJyhrW3iNQeh8iK82iEcosrgjuoHwjStNh",
-      "balance": 111416,
+      "balance": 151102,
       "membership_expire_on": 1717068655,
       "next_cert_issuable_on": 1688121785,
       "certs_received": {
@@ -100187,7 +102342,7 @@
     "Sissi73": {
       "index": 8753,
       "owner_key": "9qv1P2UiCyqN5aHGM6Lcpace2PsKmkirdzjKtdAHz6NG",
-      "balance": 389774,
+      "balance": 429460,
       "membership_expire_on": 1720099881,
       "next_cert_issuable_on": 1681490996,
       "certs_received": {
@@ -100202,7 +102357,7 @@
     "Mik974": {
       "index": 7890,
       "owner_key": "9r2Boq73tKTe3C4jzJtjJLL4EUrK7c4GBZgvY1RUPgQY",
-      "balance": 467873,
+      "balance": 507559,
       "membership_expire_on": 1711480377,
       "next_cert_issuable_on": 1677645923,
       "certs_received": {
@@ -100222,14 +102377,13 @@
     "ghyom": {
       "index": 1650,
       "owner_key": "9r4hEMFg3YBJpVYGNjqvpZoMb4bwsiB2a7rntadPxFVn",
-      "balance": 1039739,
-      "membership_expire_on": 1696572258,
+      "balance": 1079425,
+      "membership_expire_on": 1727318244,
       "next_cert_issuable_on": 1675739247,
       "certs_received": {
         "paidge": 1730518646,
         "mimi": 1709851907,
         "MariPotter": 1736318514,
-        "Danfernbanck": 1695859290,
         "NicolasFloquet": 1703792369,
         "DidierPapillon": 1736301352,
         "PascaleRoncoroni": 1736314257
@@ -100262,7 +102416,7 @@
     "Lila": {
       "index": 5102,
       "owner_key": "9rXeMFjKNq4NjydVfH9nu8wegeXazu3GYvYtiXALbfS7",
-      "balance": 415689,
+      "balance": 485375,
       "membership_expire_on": 1705791077,
       "next_cert_issuable_on": 1687226928,
       "certs_received": {
@@ -100274,7 +102428,6 @@
         "PoissonClown": 1731369503,
         "Dzsaga": 1752852322,
         "Radagast": 1707339228,
-        "BarbicheHetre": 1695620538,
         "VanessaVigier": 1699676274,
         "Pogona": 1747798816,
         "Shirlaip": 1705120036,
@@ -100286,9 +102439,9 @@
     "bernadettegeraud": {
       "index": 12917,
       "owner_key": "9rYmbyGWP5S9J2zca6LGiTBCR9StBhrti39MyeTNYNxM",
-      "balance": 83100,
+      "balance": 125286,
       "membership_expire_on": 1718379461,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696332950,
       "certs_received": {
         "ElisabethNyons": 1749954794,
         "Calou26": 1749951406,
@@ -100303,15 +102456,13 @@
       "balance": 315103,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Crystal": 1696721829
-      }
+      "certs_received": {}
     },
     "Emilio": {
       "index": 9833,
       "owner_key": "9rqiJPZgvm7fRoiW141eitriv4y39QbmvdR4x3PxB5ep",
-      "balance": 350919,
-      "membership_expire_on": 1696729399,
+      "balance": 390605,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1679930842,
       "certs_received": {
         "Mapaule": 1728286999,
@@ -100343,7 +102494,7 @@
     "simeon26": {
       "index": 6681,
       "owner_key": "9sFyfYbQoCAJJfjgB3PcPr8H2yVeYcDxULLhpyqxFSPi",
-      "balance": 585660,
+      "balance": 625346,
       "membership_expire_on": 1707951731,
       "next_cert_issuable_on": 1679562293,
       "certs_received": {
@@ -100362,9 +102513,9 @@
     "kike": {
       "index": 9187,
       "owner_key": "9sKkjHHFbBzseHFQaWmKt1NkSPCfw7tk817Nt925LwQq",
-      "balance": 500567,
+      "balance": 490253,
       "membership_expire_on": 1715305807,
-      "next_cert_issuable_on": 1686644541,
+      "next_cert_issuable_on": 1696059166,
       "certs_received": {
         "hibiscus11": 1740773017,
         "arbocenc": 1721273058,
@@ -100384,7 +102535,7 @@
     "MTCmlaure": {
       "index": 12102,
       "owner_key": "9sQ2MPCxVzSadmBdYQZtUsnB5wwZjBVS5JE98ApexURE",
-      "balance": 629948,
+      "balance": 689634,
       "membership_expire_on": 1710776351,
       "next_cert_issuable_on": 1681135774,
       "certs_received": {
@@ -100409,7 +102560,7 @@
     "RayAmur": {
       "index": 10753,
       "owner_key": "9sbSxsjdH9k6wFKhS951Qp3jcmVwCPBmEu8K9H5D27q1",
-      "balance": 102238,
+      "balance": 76634,
       "membership_expire_on": 1701534031,
       "next_cert_issuable_on": 1683682286,
       "certs_received": {
@@ -100433,12 +102584,14 @@
     "Terenia2809": {
       "index": 13305,
       "owner_key": "9scrHfgk9MUGFYTQmwGMxSsdVFQeBCPLtg1Qti74BkD4",
-      "balance": 28836,
+      "balance": 68522,
       "membership_expire_on": 1722005189,
-      "next_cert_issuable_on": 1691308317,
+      "next_cert_issuable_on": 1695768785,
       "certs_received": {
+        "nicolasd": 1758163121,
         "DomMembre": 1754037755,
         "DomVe": 1753684489,
+        "Venceremos": 1758767934,
         "TheoVS": 1753856705,
         "Mohanad": 1754462477,
         "Cyrian": 1753836178,
@@ -100448,7 +102601,7 @@
     "Floravie": {
       "index": 6442,
       "owner_key": "9seAdp1xQV2AYoa5VbwmYZFaxGSAgjYzp1G9y5pHXyRa",
-      "balance": 360127,
+      "balance": 399813,
       "membership_expire_on": 1697836542,
       "next_cert_issuable_on": 1679297074,
       "certs_received": {
@@ -100487,7 +102640,7 @@
     "Druilhe13117": {
       "index": 5259,
       "owner_key": "9soofXXdPsSSPbCgBdfqPHrfbVx6oXNf7zvkJ3QA5fxw",
-      "balance": 818023,
+      "balance": 857709,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1688292428,
       "certs_received": {
@@ -100511,7 +102664,7 @@
     "ColineGillet": {
       "index": 3568,
       "owner_key": "9t2X1dX5KGRdADQMG1wcPjdVzcaocqVf7ttRMwCfE8Zb",
-      "balance": 1322443,
+      "balance": 1362129,
       "membership_expire_on": 1704572198,
       "next_cert_issuable_on": 1681215393,
       "certs_received": {
@@ -100523,6 +102676,20 @@
         "CovaDidier": 1701920594
       }
     },
+    "zulu": {
+      "index": 13527,
+      "owner_key": "9t2eDp976H3e4X2LSM8P9GQBMAPmRYd1aPGL4uRrVDM2",
+      "balance": 36142,
+      "membership_expire_on": 1721502577,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "jogi": 1753563080,
+        "lesoleilbrille": 1757294477,
+        "Spirulina": 1756419968,
+        "Estellea": 1753552812,
+        "Happyculteur": 1756429511
+      }
+    },
     "Olivierg1pat": {
       "index": 5445,
       "owner_key": "9tQ82yGgFgKHYcLXe66ow3hxSZVMKWYjhVYAuHtB1Xxd",
@@ -100536,12 +102703,13 @@
     "ValentinedePierpont": {
       "index": 11234,
       "owner_key": "9tQqKjb5NQ1c73qyiuKRqRycKtzz2ELbFmhrooG73ZzS",
-      "balance": 232919,
+      "balance": 272605,
       "membership_expire_on": 1703026907,
       "next_cert_issuable_on": 1686406501,
       "certs_received": {
         "alegna": 1736979410,
         "francoiserigo1325": 1736913538,
+        "prevotfran5310": 1757036789,
         "SAIGA": 1734890094,
         "GaelleGayatri": 1735331225,
         "Ysa1471": 1736890359,
@@ -100551,7 +102719,7 @@
     "Pentelally": {
       "index": 9426,
       "owner_key": "9tayvZGHjV7ED6xaZFhXkatbnovdVpCD9M3DGJLPPfiL",
-      "balance": 332595,
+      "balance": 372281,
       "membership_expire_on": 1723724240,
       "next_cert_issuable_on": 1662777411,
       "certs_received": {
@@ -100566,7 +102734,7 @@
     "Auxance": {
       "index": 4458,
       "owner_key": "9tbWzhu1XZyS5JeKcuNwz2aGXjdxuFDytBKnpYDUrQjU",
-      "balance": 843759,
+      "balance": 883445,
       "membership_expire_on": 1710291070,
       "next_cert_issuable_on": 1688831765,
       "certs_received": {
@@ -100587,7 +102755,7 @@
     "Oudin": {
       "index": 6848,
       "owner_key": "9tcHMgPwjWrsWM2KdC9oEAZAFeEj9ApqDrmjZJdwiYXV",
-      "balance": 489137,
+      "balance": 528823,
       "membership_expire_on": 1706310281,
       "next_cert_issuable_on": 1658043522,
       "certs_received": {
@@ -100601,7 +102769,7 @@
     "curcuma": {
       "index": 9941,
       "owner_key": "9tcoVPfzKGXjFxKX8YC9y4zhFqy2C7N6KnKxqFpZK5bU",
-      "balance": 350347,
+      "balance": 390033,
       "membership_expire_on": 1697205411,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -100619,7 +102787,7 @@
     "Saperlipopette": {
       "index": 543,
       "owner_key": "9tjQpB53Rixh3UWwpBsJSf27NfVub5caZmRp6MLPv6kX",
-      "balance": 1451598,
+      "balance": 1491284,
       "membership_expire_on": 1713981355,
       "next_cert_issuable_on": 1688215295,
       "certs_received": {
@@ -100640,9 +102808,9 @@
     "GwenolaLef": {
       "index": 7720,
       "owner_key": "9tjRKQdSVYrUFPtAk6fPxDq1XEgTUafRpScYspJPH3PZ",
-      "balance": 276313,
+      "balance": 310999,
       "membership_expire_on": 1707417869,
-      "next_cert_issuable_on": 1690273920,
+      "next_cert_issuable_on": 1696228567,
       "certs_received": {
         "DelphineDietsch": 1712447377,
         "Martine51": 1715992370,
@@ -100661,13 +102829,13 @@
     "SabrinaFrance": {
       "index": 504,
       "owner_key": "9toSKwQayx462ye94gtJ4JJh69k2KAWfmzjK6kNZBLph",
-      "balance": 1650567,
-      "membership_expire_on": 1694520650,
+      "balance": 1680631,
+      "membership_expire_on": 1726926899,
       "next_cert_issuable_on": 1674511809,
       "certs_received": {
         "Stejulemont": 1721367937,
         "philippe": 1725426555,
-        "casadesam": 1697747864,
+        "casadesam": 1756348366,
         "janhsh": 1754698573,
         "NathalieBolly": 1703484197,
         "JulienBolly": 1705340165,
@@ -100683,7 +102851,7 @@
     "PierreMarcherat": {
       "index": 4330,
       "owner_key": "9twQizeNNfffVEvwEaFB2oSqa959KhV1PdCEcgY2wKTm",
-      "balance": 1034706,
+      "balance": 1074392,
       "membership_expire_on": 1697827529,
       "next_cert_issuable_on": 1678193357,
       "certs_received": {
@@ -100710,9 +102878,9 @@
     "wopat": {
       "index": 6134,
       "owner_key": "9uPK9ShoDz6BnLAuzb7Ere6iS2PxGy8wpsEmZjZsRy9J",
-      "balance": 463247,
+      "balance": 502933,
       "membership_expire_on": 1721415656,
-      "next_cert_issuable_on": 1690530995,
+      "next_cert_issuable_on": 1695643461,
       "certs_received": {
         "Nagual": 1699487299,
         "EmaPom": 1709093703,
@@ -100740,9 +102908,9 @@
     "LKoala": {
       "index": 10958,
       "owner_key": "9uPY2mk1bu3pgKuXNyQ8ttWwH6eUTFu2Sid4PF96RfPf",
-      "balance": 293335,
+      "balance": 333021,
       "membership_expire_on": 1703262871,
-      "next_cert_issuable_on": 1686201622,
+      "next_cert_issuable_on": 1694396767,
       "certs_received": {
         "sfouludo": 1734821308,
         "HugoTen": 1734821029,
@@ -100756,10 +102924,11 @@
     "Selene": {
       "index": 1432,
       "owner_key": "9uRmfjjLCWs4xHygihaSJdN14gq3niNzDoQ3pYUcvjKN",
-      "balance": 1268933,
+      "balance": 1694569,
       "membership_expire_on": 1712142432,
       "next_cert_issuable_on": 0,
       "certs_received": {
+        "FabFabounette": 1758781213,
         "venusienne": 1726733421,
         "Chtmosaik": 1747205084,
         "manidou": 1727288877,
@@ -100785,7 +102954,7 @@
     "Cordia": {
       "index": 7364,
       "owner_key": "9uaaB5EeMN61AkxWNJovpsJ9xV9tGcca64VK7KZ9t5w3",
-      "balance": 537468,
+      "balance": 577154,
       "membership_expire_on": 1704721751,
       "next_cert_issuable_on": 1677897191,
       "certs_received": {
@@ -100802,7 +102971,7 @@
     "LotoNegro": {
       "index": 12149,
       "owner_key": "9ubwFw31iGFMJnT7R4DibrTW11WBC1iqvv3GpaqBezXx",
-      "balance": 231008,
+      "balance": 270694,
       "membership_expire_on": 1711385759,
       "next_cert_issuable_on": 1687752692,
       "certs_received": {
@@ -100821,18 +102990,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1636990589,
       "certs_received": {
-        "ChristianDelaunay": 1696366804,
-        "Scott76": 1696638977,
-        "ZinzinGroues": 1696366076,
-        "DidierPapillon": 1698486757,
-        "Freco": 1696393833,
-        "katou": 1696366315
+        "DidierPapillon": 1698486757
       }
     },
     "Evaevae": {
       "index": 8472,
       "owner_key": "9uebxG7PV6VEDKeYfedE1DvjvFRgvJdNGShWZajGwC9A",
-      "balance": 554829,
+      "balance": 502015,
       "membership_expire_on": 1720635219,
       "next_cert_issuable_on": 1678068204,
       "certs_received": {
@@ -100849,8 +103013,8 @@
     "herbacha": {
       "index": 6079,
       "owner_key": "9ufook8M13swNLTL2PjZyQ6fScnGqUXntuQvNLEw8kfH",
-      "balance": 701497,
-      "membership_expire_on": 1696016929,
+      "balance": 741183,
+      "membership_expire_on": 1726625098,
       "next_cert_issuable_on": 1685757298,
       "certs_received": {
         "Hades": 1727574529,
@@ -100861,14 +103025,13 @@
         "LaurenceIG": 1750065054,
         "Cecilelaurent": 1696999056,
         "Leticia": 1727575482,
-        "or3L": 1699382319,
-        "LydiaRoche": 1696284951
+        "or3L": 1699382319
       }
     },
     "NancyOrtiz": {
       "index": 7228,
       "owner_key": "9ug7GdEo5KymFE9Uc824u4W5RaX9oXiRhWkdLe68UMXw",
-      "balance": 181576,
+      "balance": 196522,
       "membership_expire_on": 1704231293,
       "next_cert_issuable_on": 1690794962,
       "certs_received": {
@@ -100892,24 +103055,17 @@
     "Caroleluciole": {
       "index": 5821,
       "owner_key": "9uiWKkbsWQcxkov5TFLVfBNc2GTMjQj36FLw9sb9vSmv",
-      "balance": 622234,
+      "balance": 661920,
       "membership_expire_on": 1701288900,
       "next_cert_issuable_on": 1676981068,
       "certs_received": {
         "Libertiste": 1732847432,
-        "Johan": 1693606694,
         "arojasurrego": 1699054275,
-        "ADodson": 1696378473,
         "Marcelin": 1705194501,
-        "Camille": 1693606694,
-        "Leana": 1693606694,
-        "BRIGITTE2019": 1696533194,
         "zaza": 1698196638,
         "PascalGuillemain": 1740032924,
         "mat14": 1698186351,
-        "Oce": 1693606177,
-        "Parpalhon": 1698196638,
-        "mollenthiel": 1693605151
+        "Parpalhon": 1698196638
       }
     },
     "sushilover": {
@@ -100931,8 +103087,8 @@
     "IvanR": {
       "index": 3819,
       "owner_key": "9v4VVzmUnWLf2HADmz2PZF9S8Jwm2hJKPoXkwmVPfcxD",
-      "balance": 1103075,
-      "membership_expire_on": 0,
+      "balance": 1137421,
+      "membership_expire_on": 1725532136,
       "next_cert_issuable_on": 1666017333,
       "certs_received": {
         "Albertine19": 1729551864,
@@ -100945,10 +103101,25 @@
         "LizaCarone": 1716438908
       }
     },
+    "Amapolasilvestre": {
+      "index": 13551,
+      "owner_key": "9v6MT6zvTK7cbUJzMefxWLFHq7fPRBcvaaBiVGyUvacM",
+      "balance": 30199,
+      "membership_expire_on": 1721320156,
+      "next_cert_issuable_on": 1696328743,
+      "certs_received": {
+        "Chencho": 1753161458,
+        "Omar": 1752923574,
+        "Tiburon": 1757057927,
+        "Liandou": 1752978678,
+        "Pedropides": 1752952117,
+        "moincagranada": 1757576902
+      }
+    },
     "Costalibro": {
       "index": 7492,
       "owner_key": "9v6proM6STPC7SBfFNYUsQVN2RuKAKaHZVqWwUVtRuMH",
-      "balance": 560253,
+      "balance": 599939,
       "membership_expire_on": 1704128073,
       "next_cert_issuable_on": 1677384302,
       "certs_received": {
@@ -100966,14 +103137,14 @@
     "Irenili": {
       "index": 5555,
       "owner_key": "9v8D2nKMo6Bw4h3dyWNkvvr7vq8tWnKn38pTiabG3iDT",
-      "balance": 883317,
+      "balance": 923003,
       "membership_expire_on": 1716467258,
       "next_cert_issuable_on": 1691750831,
       "certs_received": {
         "Crystal": 1751670796,
         "OrianeKatyDanse": 1709615803,
         "ClaireMussault": 1699302115,
-        "CathyDebronde": 1695962954,
+        "catrelax11": 1758403261,
         "zadkiel": 1700459589,
         "Isabohin": 1741998874,
         "Bambi972": 1717547043,
@@ -100983,7 +103154,7 @@
     "FloCassis": {
       "index": 7786,
       "owner_key": "9v8Q195K9Pvy4G9Fubck2ovq2PLW5GJDATe2iVxDLAys",
-      "balance": 468171,
+      "balance": 499857,
       "membership_expire_on": 1707261684,
       "next_cert_issuable_on": 1659238630,
       "certs_received": {
@@ -101006,7 +103177,7 @@
     "loulouchantes": {
       "index": 3502,
       "owner_key": "9vFzzBCm1NGDGUdPmCjP1gaAvs3Fs4nF16Beu3s1yT2a",
-      "balance": 1208271,
+      "balance": 1247967,
       "membership_expire_on": 1697361314,
       "next_cert_issuable_on": 1665918820,
       "certs_received": {
@@ -101023,7 +103194,7 @@
     "Relax": {
       "index": 10810,
       "owner_key": "9vKjhHDJgZJzJd9VpZVna3MsFGo4Ax6uZwRoKUVPmzno",
-      "balance": 290925,
+      "balance": 330611,
       "membership_expire_on": 1702243382,
       "next_cert_issuable_on": 1680860035,
       "certs_received": {
@@ -101040,8 +103211,8 @@
     "AnnSoCappiello": {
       "index": 9449,
       "owner_key": "9vLQF8WM2Pb3LwMQbyxn99kuqnv5XW8jhE5gBzE5g9uT",
-      "balance": 460593,
-      "membership_expire_on": 1693927356,
+      "balance": 465933,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1662708782,
       "certs_received": {
         "EricMaillard": 1725509732,
@@ -101068,7 +103239,7 @@
     "Francina": {
       "index": 8683,
       "owner_key": "9vNWbSJtXk21JhWe1VyFCfTsEhQ5SkruEKmbND8KdC39",
-      "balance": 239554,
+      "balance": 243641,
       "membership_expire_on": 1716584876,
       "next_cert_issuable_on": 1674221986,
       "certs_received": {
@@ -101099,9 +103270,9 @@
     "Anita": {
       "index": 3277,
       "owner_key": "9vTVNpr9HNn1gF8E98MHpXVhk4GHhrt7oW6jho3fkMwZ",
-      "balance": 395853,
+      "balance": 435539,
       "membership_expire_on": 1702501308,
-      "next_cert_issuable_on": 1683252589,
+      "next_cert_issuable_on": 1694141366,
       "certs_received": {
         "GENEV": 1735091332,
         "HenriRGN": 1734058908,
@@ -101113,7 +103284,7 @@
     "marcplan": {
       "index": 8015,
       "owner_key": "9vXaJvNiPkZKyCjDaHsz6H2uW9CuZbwD5VeMhacT57sZ",
-      "balance": 427336,
+      "balance": 467022,
       "membership_expire_on": 1710468679,
       "next_cert_issuable_on": 1684042724,
       "certs_received": {
@@ -101136,7 +103307,7 @@
     "Paradies": {
       "index": 11225,
       "owner_key": "9vc3cr1RM2Tw7qAcVg5cEBSgA73RyJpFQCGCuvpaagsu",
-      "balance": 237978,
+      "balance": 277664,
       "membership_expire_on": 1705023657,
       "next_cert_issuable_on": 1684718950,
       "certs_received": {
@@ -101155,9 +103326,9 @@
     "Gillette": {
       "index": 7587,
       "owner_key": "9vc7oNRxxrMvyBeK2j791d4koDKkyPL8bfu3TQnhgVdG",
-      "balance": 372454,
+      "balance": 402641,
       "membership_expire_on": 1707604706,
-      "next_cert_issuable_on": 1692508405,
+      "next_cert_issuable_on": 1695957561,
       "certs_received": {
         "WintgensJoseph": 1751427665,
         "devihope": 1747722982,
@@ -101180,9 +103351,9 @@
     "cmms29": {
       "index": 13416,
       "owner_key": "9viLe8wZhAR32pP9iRaZ1Tfrjfia6aV4CFzcbeDpiqfC",
-      "balance": 10680,
+      "balance": 50366,
       "membership_expire_on": 1723408662,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693721044,
       "certs_received": {
         "OlivK": 1755731843,
         "ArthuK": 1755731606,
@@ -101195,7 +103366,7 @@
     "MariaA": {
       "index": 12395,
       "owner_key": "9vjUVeMTNrCEzC5xGnWyDriVGX4EWvX7q6oh4XJ7RRGn",
-      "balance": 144244,
+      "balance": 183930,
       "membership_expire_on": 1713455529,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -101226,11 +103397,12 @@
     "CAILLOU": {
       "index": 13350,
       "owner_key": "9vnmieDPrrihGnJvk92Ldwh3WUw3HxYmfQxndRvqrY2d",
-      "balance": 363128,
+      "balance": 806714,
       "membership_expire_on": 1722954803,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694492081,
       "certs_received": {
         "Tembo": 1755403342,
+        "Kryszu": 1757535649,
         "Sandra": 1754623010,
         "ASHNUBAN": 1754803562,
         "Sisi": 1754804773,
@@ -101242,7 +103414,7 @@
     "MLaure": {
       "index": 11154,
       "owner_key": "9vnzrW7qWyjwRzP8Zr5e3WnaopEpUWF98n4vWsj6f7xY",
-      "balance": 277512,
+      "balance": 317198,
       "membership_expire_on": 1702163001,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -101256,10 +103428,24 @@
         "Vertsauvage": 1735424162
       }
     },
+    "ivamila": {
+      "index": 13494,
+      "owner_key": "9vr3KgimhoS7VA5AZtJakbq3BTDFZYHsYWDSUynAwbQs",
+      "balance": 40424,
+      "membership_expire_on": 1724273483,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "doms": 1756073802,
+        "Yosoy": 1756229488,
+        "DavidMontpellier": 1756939635,
+        "VeroDieu": 1756066975,
+        "Sylveescandorgue": 1756250085
+      }
+    },
     "ECRIVAINE": {
       "index": 13428,
       "owner_key": "9vrkY5b8XnxtevJ3MVEoKeArQGSwxhwLawJUm9bBrnFL",
-      "balance": 70044,
+      "balance": 109730,
       "membership_expire_on": 1724372899,
       "next_cert_issuable_on": 1693091509,
       "certs_received": {
@@ -101273,8 +103459,8 @@
     "Alioshlag": {
       "index": 9603,
       "owner_key": "9vssvyymWR4wr8XjATcPfJuCHNmQovcsmtMTHduHyHyf",
-      "balance": 356722,
-      "membership_expire_on": 1694473554,
+      "balance": 368470,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Waterlelie": 1726684571,
@@ -101288,7 +103474,7 @@
     "mdnasc": {
       "index": 7950,
       "owner_key": "9vtJpg77pF78SD4kDaDDMLdKdrBSDwkQSECctWKfKXk8",
-      "balance": 511868,
+      "balance": 551554,
       "membership_expire_on": 1710885645,
       "next_cert_issuable_on": 1677733487,
       "certs_received": {
@@ -101318,7 +103504,7 @@
     "Pachaman": {
       "index": 11122,
       "owner_key": "9wSL9KiJi1RBVGPAShFLcHiw4TwPGGUq4YB2z4r3a5HK",
-      "balance": 241109,
+      "balance": 280795,
       "membership_expire_on": 1704503389,
       "next_cert_issuable_on": 1680848551,
       "certs_received": {
@@ -101339,11 +103525,10 @@
     "Hedy": {
       "index": 2187,
       "owner_key": "9wgLLz5FzdE38Fx4fRiegHw1egMkw9NpBxtc7BhQQXYq",
-      "balance": 1278458,
+      "balance": 1318144,
       "membership_expire_on": 1712606463,
-      "next_cert_issuable_on": 1692516223,
+      "next_cert_issuable_on": 1695009826,
       "certs_received": {
-        "Clochette": 1693957424,
         "SionaJJJ": 1736902527,
         "VioletteRose": 1736909833,
         "Lheureux": 1753079702,
@@ -101358,20 +103543,19 @@
     "philippo": {
       "index": 673,
       "owner_key": "9wk1s8SUVKUq39qvvx1nQkKz5P1gvNXN9Edu1QCnxD5S",
-      "balance": 1944269,
+      "balance": 1948541,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1641651393,
       "certs_received": {
         "celineR": 1704702988,
-        "janhsh": 1696237128,
-        "OlivierMaurice": 1694150198,
+        "Moineau": 1756875736,
         "Cat": 1747003243
       }
     },
     "Kiwi": {
       "index": 12605,
       "owner_key": "9wtgTgxK9U1EHKHqiyR9q6bZczegFyzbiinvxoQ9U81i",
-      "balance": 30216,
+      "balance": 69902,
       "membership_expire_on": 1715183270,
       "next_cert_issuable_on": 1683866230,
       "certs_received": {
@@ -101389,7 +103573,7 @@
     "Btisambeny": {
       "index": 13050,
       "owner_key": "9x3bFCnKkZ8zDgwxGoYPf433JkyQwof33WU2StcGYwLE",
-      "balance": 65420,
+      "balance": 105106,
       "membership_expire_on": 1719258319,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -101419,7 +103603,7 @@
     "cribstar": {
       "index": 12327,
       "owner_key": "9xDc4pr1TcJn8hmYvDuzyneD2MiTPzds4ugASrB5W3r9",
-      "balance": 151520,
+      "balance": 191206,
       "membership_expire_on": 1712422850,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -101436,7 +103620,7 @@
     "RPapalino": {
       "index": 12266,
       "owner_key": "9xH2hNPyMZcT3EcSwTJhWqKgfAXaTh121xqgMKFMJcKJ",
-      "balance": 143928,
+      "balance": 183614,
       "membership_expire_on": 1712234516,
       "next_cert_issuable_on": 1687652448,
       "certs_received": {
@@ -101451,23 +103635,26 @@
     "ChloeS": {
       "index": 12754,
       "owner_key": "9xHvA2nbsM1vwT9UcTmRFbsuKkmrrhKGNku9UZefAcWH",
-      "balance": 111528,
+      "balance": 151214,
       "membership_expire_on": 1715905285,
-      "next_cert_issuable_on": 1692983105,
+      "next_cert_issuable_on": 1695297715,
       "certs_received": {
         "DomMembre": 1747615066,
+        "Husam": 1756172521,
         "DomVe": 1747614101,
         "Diane": 1747928972,
         "cpriou11": 1750561172,
         "GeraldS": 1747464475,
         "Mohanad": 1753437875,
-        "Antares13": 1747613798
+        "Antares13": 1747613798,
+        "LolotteCL": 1757957379,
+        "AlexCl": 1756963727
       }
     },
     "Vass": {
       "index": 10153,
       "owner_key": "9xJ5DhdWBhFUz9uFnEg3BrKs3LfKiqiWDdv1siJkG9xd",
-      "balance": 307344,
+      "balance": 347030,
       "membership_expire_on": 1698436538,
       "next_cert_issuable_on": 1667552270,
       "certs_received": {
@@ -101510,8 +103697,8 @@
     "Ourida": {
       "index": 9411,
       "owner_key": "9xZ7KaiqjceJ2N1o7Jpg3W3izUbPyrk9q9NdSxmnFuYK",
-      "balance": 238646,
-      "membership_expire_on": 1693516131,
+      "balance": 87992,
+      "membership_expire_on": 1725546392,
       "next_cert_issuable_on": 1688184561,
       "certs_received": {
         "Ibnesa": 1725134387,
@@ -101519,16 +103706,19 @@
         "VeroDeJetsDoux": 1736233571,
         "SophieMichaud": 1725219731,
         "Beatrice": 1725074209,
+        "Pope": 1757043676,
+        "sandrine": 1757108285,
         "CREVETTEJJAZZ": 1725074751,
-        "Llysa": 1725403720
+        "Llysa": 1725403720,
+        "flo74": 1757037157
       }
     },
     "melissandrecd": {
       "index": 10997,
       "owner_key": "9xbzpFasCa66AUpvBP489SPHZtLhSpHJTioscMckNsp9",
-      "balance": 266217,
+      "balance": 294803,
       "membership_expire_on": 1701305697,
-      "next_cert_issuable_on": 1672231442,
+      "next_cert_issuable_on": 1694525028,
       "certs_received": {
         "NataNieves": 1735073585,
         "Anne-SophieL88": 1733639047,
@@ -101542,7 +103732,7 @@
     "Eglantine": {
       "index": 12120,
       "owner_key": "9xfjGszgQAc5bHsHjAChgNexndk2bSzv5BGRu84xG1Kg",
-      "balance": 174812,
+      "balance": 214498,
       "membership_expire_on": 1708731171,
       "next_cert_issuable_on": 1680588242,
       "certs_received": {
@@ -101558,24 +103748,27 @@
     "Numerosympa": {
       "index": 5033,
       "owner_key": "9xguFVLTMmhE93FmZWV1hpHBuZM1cXcusAHxeY6BMnz7",
-      "balance": 3098434,
+      "balance": 3228120,
       "membership_expire_on": 1710547436,
-      "next_cert_issuable_on": 1693148690,
+      "next_cert_issuable_on": 1695038405,
       "certs_received": {
         "looie": 1699000428,
         "Justis": 1701849788,
-        "FrankDeMey": 1693555230,
+        "ChristopheCompere": 1759639469,
         "AlexandreA": 1715933834,
+        "Pikofio": 1759122687,
         "CookieLilas": 1698809686,
-        "MarieBertheRanwet": 1693554240,
+        "Nicolili": 1758086301,
         "Phen": 1701888417,
         "FranckBarbe": 1744597295,
         "PeterGreen": 1709714842,
         "dondiego78": 1703250798,
+        "s00999": 1758150978,
         "JeanTibou": 1716758447,
+        "Lilinico": 1758086301,
         "OdileJacquemet": 1746814515,
-        "Chlea2010": 1696686808,
         "gedeon26": 1716157575,
+        "Gclaire": 1757483706,
         "tatinetteb": 1756320844,
         "FredB": 1753609061
       }
@@ -101583,8 +103776,8 @@
     "MarAyurveda": {
       "index": 10038,
       "owner_key": "9xiDjGzmybcx3SPyZFDnRJqTf6kqPbT1oACAihCh7dNK",
-      "balance": 371222,
-      "membership_expire_on": 1695577169,
+      "balance": 396894,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1672720765,
       "certs_received": {
         "ErickG_G": 1729585593,
@@ -101599,7 +103792,7 @@
     "kiwi": {
       "index": 8871,
       "owner_key": "9xp9gLzKBktTa6XM7L7PB6ozBgwWPtvjbjRtQwiJ3mZF",
-      "balance": 388400,
+      "balance": 428086,
       "membership_expire_on": 1717074537,
       "next_cert_issuable_on": 1690512362,
       "certs_received": {
@@ -101613,9 +103806,9 @@
     "FleurdEtoiles": {
       "index": 2302,
       "owner_key": "9xyMqRtBJxiWBHuR4GECkT2UshdrF7zD9in36BGZGrXS",
-      "balance": 811715,
-      "membership_expire_on": 1696251022,
-      "next_cert_issuable_on": 1673498302,
+      "balance": 851401,
+      "membership_expire_on": 1725321627,
+      "next_cert_issuable_on": 1693835589,
       "certs_received": {
         "Feerique": 1710899028,
         "Audette": 1728497543,
@@ -101642,7 +103835,7 @@
     "suduran": {
       "index": 13235,
       "owner_key": "9y9kU7PzNQ7ZShGTWKLjjmY6aQQNY1kGMbAdgG7cynEV",
-      "balance": 47916,
+      "balance": 87602,
       "membership_expire_on": 1721618418,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -101656,7 +103849,7 @@
     "MariePuech": {
       "index": 6230,
       "owner_key": "9yGp1cnMXz8RoEpZBW8A7TGmb6m1TQyy8oJvNKMpAkRU",
-      "balance": 665549,
+      "balance": 705235,
       "membership_expire_on": 1696939704,
       "next_cert_issuable_on": 1676891422,
       "certs_received": {
@@ -101671,7 +103864,7 @@
     "LudusArenaConcept": {
       "index": 11997,
       "owner_key": "9yLcFFN8SFKpzmbZrnd8dX4XGLNWoVM8MuKZSTCcRFQR",
-      "balance": 827903,
+      "balance": 867589,
       "membership_expire_on": 1709648683,
       "next_cert_issuable_on": 1692583782,
       "certs_received": {
@@ -101688,6 +103881,7 @@
         "Helene-petiteriviere": 1742417707,
         "Val34": 1741938179,
         "pielonet": 1746663639,
+        "Lauriecordova": 1758327427,
         "Cat": 1750032839,
         "Eauvive": 1741719338,
         "michelxyzw": 1741761470,
@@ -101699,7 +103893,7 @@
     "RicardoR": {
       "index": 7645,
       "owner_key": "9yNyu5DEDxoUsgQENr9ifu3zPYQKXaYFA1Yf2KwuQ8bT",
-      "balance": 492092,
+      "balance": 531778,
       "membership_expire_on": 1708566750,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -101714,12 +103908,13 @@
     "Gioelina": {
       "index": 9747,
       "owner_key": "9yP5wN2ZJXpHs3ZyX2f5Ay5rtBURH7G59sovKc6nsPiJ",
-      "balance": 356242,
+      "balance": 386016,
       "membership_expire_on": 1722731277,
-      "next_cert_issuable_on": 1692626490,
+      "next_cert_issuable_on": 1696095694,
       "certs_received": {
         "Micha99": 1730928512,
         "Vince": 1748379592,
+        "Ashtam": 1756968371,
         "ChantAloha": 1750847710,
         "Hugwilder": 1727389997,
         "Goodlive": 1733901339,
@@ -101735,8 +103930,8 @@
     "Lizzie": {
       "index": 9917,
       "owner_key": "9yWT21LGkpkhQDxCHAVzGGJvZhLYeornhLjR9EbgUBDc",
-      "balance": 239718,
-      "membership_expire_on": 1695840872,
+      "balance": 233624,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1672993060,
       "certs_received": {
         "SalinJL": 1727401136,
@@ -101756,18 +103951,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1649155478,
       "certs_received": {
-        "OncleDave": 1695452642,
-        "Isme": 1695462862,
-        "DCat": 1695491588,
-        "GaelC": 1695452345,
-        "lejun": 1707755880,
-        "DamienBesac": 1695452072
+        "lejun": 1707755880
       }
     },
     "Achbe": {
       "index": 12420,
       "owner_key": "9yg7e3vpdGZSyVDy9eeFVJXE1dtdEAay85W5kfTZ5Zkv",
-      "balance": 105908,
+      "balance": 69494,
       "membership_expire_on": 1713656793,
       "next_cert_issuable_on": 1691376579,
       "certs_received": {
@@ -101781,9 +103971,9 @@
     "Lydiabloch": {
       "index": 1346,
       "owner_key": "9yiQ879g3SxBCqPJZTYbpGC1LYq5iZNN3ZaCWPUApiHt",
-      "balance": 290067,
+      "balance": 241753,
       "membership_expire_on": 1705173476,
-      "next_cert_issuable_on": 1689944461,
+      "next_cert_issuable_on": 1696167571,
       "certs_received": {
         "GenevLeb": 1697251359,
         "PhilippeGua53": 1716765176,
@@ -101797,7 +103987,7 @@
         "7Oak": 1749985021,
         "AnneAmbles": 1730224021,
         "CelesteLeBars": 1734131296,
-        "liberte55": 1697619665,
+        "liberte55": 1758178009,
         "GwenolaLef": 1746061290,
         "PatriciaA": 1752910608,
         "thierryR51": 1698194516,
@@ -101810,8 +104000,8 @@
     "Lucas_Desroches": {
       "index": 4233,
       "owner_key": "9yji8DtwFVhS3QtgdUJQEzJakcNfXV8RpRVwnSJ4szaY",
-      "balance": 557305,
-      "membership_expire_on": 1701747941,
+      "balance": 657431,
+      "membership_expire_on": 1728239921,
       "next_cert_issuable_on": 1691213913,
       "certs_received": {
         "Lucas351": 1730604192,
@@ -101819,7 +104009,6 @@
         "Robisar": 1748101829,
         "FrancisBperso": 1752567405,
         "AtmaRajpreet": 1746578861,
-        "AliceMalice": 1694990343,
         "Artdevivre": 1752703587,
         "MarinaNavarro": 1732146869,
         "Tchoupi": 1722915910,
@@ -101841,6 +104030,7 @@
         "s00999": 1723605578,
         "BAYAmudra": 1746123002,
         "AudreyWhatt": 1740600985,
+        "Totoro": 1759004185,
         "francoislibre": 1733296135,
         "Monaco73": 1735327032,
         "Vertsauvage": 1733901339,
@@ -101871,7 +104061,7 @@
     "Ali": {
       "index": 9952,
       "owner_key": "9yuXmpiWA1ddbeMGJGD3F4ygTwvrBJY4SAfT2wjLMCif",
-      "balance": 387538,
+      "balance": 427224,
       "membership_expire_on": 1697236197,
       "next_cert_issuable_on": 1683161652,
       "certs_received": {
@@ -101885,7 +104075,7 @@
     "Eli-g": {
       "index": 7650,
       "owner_key": "9yufbpPU6VMk3yPioS58d9pt2p9RByvZ3GYREVmNRJw2",
-      "balance": 295094,
+      "balance": 334780,
       "membership_expire_on": 1707412947,
       "next_cert_issuable_on": 1682092448,
       "certs_received": {
@@ -101923,12 +104113,11 @@
     "auroreg97430": {
       "index": 3799,
       "owner_key": "9yyZZbqUaHJTXLhxeCwTyxQEEPU6VxNUtc4bLWDvg1Xb",
-      "balance": 863587,
+      "balance": 903273,
       "membership_expire_on": 1707003428,
       "next_cert_issuable_on": 1682215420,
       "certs_received": {
         "mimone974": 1719077709,
-        "KarineGerinard974": 1694545099,
         "harry974": 1719033646,
         "Vero": 1719155984,
         "BabethMangas": 1713980306,
@@ -101954,7 +104143,7 @@
     "Sylvia76": {
       "index": 13279,
       "owner_key": "9z3nCAV52XyTH2ov8j3JRSkm99Hcw9hW64A2Y9piZUdz",
-      "balance": 34176,
+      "balance": 73862,
       "membership_expire_on": 1721673466,
       "next_cert_issuable_on": 1692507251,
       "certs_received": {
@@ -101998,10 +104187,11 @@
     "ChristineMontpellier": {
       "index": 7873,
       "owner_key": "9zVS9FYHxKRaXSmFkg9vmvq6YwihKNKzEtXGJ1FTe4gk",
-      "balance": 441914,
+      "balance": 563400,
       "membership_expire_on": 1708802173,
-      "next_cert_issuable_on": 1691202812,
+      "next_cert_issuable_on": 1696498174,
       "certs_received": {
+        "MaryMarie": 1757215385,
         "Marikler": 1741241840,
         "Nounouche": 1734221919,
         "CatherineMontpellier": 1714192455,
@@ -102015,15 +104205,16 @@
         "SylvieDici": 1736308148,
         "HebraudH": 1713727091,
         "NEMETONA34": 1713943103,
+        "Volibra": 1759554640,
         "josemallet": 1714239429
       }
     },
     "phil3455": {
       "index": 1812,
       "owner_key": "9zVi2WF5ue7Dczy6iHc83yi3ghTV2KZzbUo1TJrMj2FV",
-      "balance": 2340090,
+      "balance": 2379776,
       "membership_expire_on": 1716829116,
-      "next_cert_issuable_on": 1693128714,
+      "next_cert_issuable_on": 1696044230,
       "certs_received": {
         "CyrilPommier": 1709922904,
         "jeje43": 1730951809,
@@ -102041,6 +104232,7 @@
         "VincentDethier": 1742267851,
         "gege110560": 1756080267,
         "HeleneSoleil": 1720509278,
+        "EveMahe": 1757801397,
         "vialli": 1728669386,
         "Jjacq07": 1708544760,
         "MartinsE": 1709416955,
@@ -102079,7 +104271,6 @@
         "jjange": 1710383373,
         "Guilou19": 1726870900,
         "thierryR51": 1732148861,
-        "JeanTibou": 1695972054,
         "AnneHH": 1740952517,
         "Bde": 1732322053,
         "bettyfree": 1734818827,
@@ -102108,7 +104299,6 @@
         "ChristineWilloth26": 1705381435,
         "Gclaire": 1715712047,
         "Louloukipet": 1702062455,
-        "OLDBLACK84": 1695790387,
         "maBeltjens": 1728541781,
         "JeromeDelaigue": 1729236243,
         "MutatisMutandis": 1722737277,
@@ -102141,9 +104331,9 @@
     "Etoilecassiopee": {
       "index": 7487,
       "owner_key": "9zmTgr3ZJGGwwJ3uNNHT18FjNdb2FUu3WYn4pfuVS1eT",
-      "balance": 160153,
+      "balance": 199839,
       "membership_expire_on": 1706574601,
-      "next_cert_issuable_on": 1683282593,
+      "next_cert_issuable_on": 1693836027,
       "certs_received": {
         "LeChatdOc": 1711268414,
         "Kouleurs": 1711315976,
@@ -102156,7 +104346,7 @@
     "BELIAL65": {
       "index": 13176,
       "owner_key": "9ztYgmeqcan86DJMmZRHbbJHHp6DHh4q6ByrfosdKL9R",
-      "balance": 48060,
+      "balance": 87746,
       "membership_expire_on": 1716175119,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -102171,7 +104361,7 @@
     "Maria_JF": {
       "index": 10244,
       "owner_key": "9zudgLMUGNKmvcB28y87tf4d3PyxZfvYzSCukdG7pPqf",
-      "balance": 84147,
+      "balance": 123833,
       "membership_expire_on": 1698439038,
       "next_cert_issuable_on": 1668586745,
       "certs_received": {
@@ -102186,8 +104376,8 @@
     "esteban": {
       "index": 4425,
       "owner_key": "9zutPBgbdtHWhmfek4CZQrAMtZoaRUwm6xZP23ed8hVf",
-      "balance": 560888,
-      "membership_expire_on": 1693756893,
+      "balance": 578106,
+      "membership_expire_on": 1727182938,
       "next_cert_issuable_on": 1674047004,
       "certs_received": {
         "NopamasYC": 1737088009,
@@ -102233,7 +104423,7 @@
     "Brigitte71": {
       "index": 8357,
       "owner_key": "A17CM6NdFVvhyMrmSHQvrCqDXpScK48BPTkkrDNNWHPZ",
-      "balance": 681720,
+      "balance": 761406,
       "membership_expire_on": 1711041485,
       "next_cert_issuable_on": 1687680404,
       "certs_received": {
@@ -102243,6 +104433,7 @@
         "Nounouche": 1734221483,
         "Majoli34": 1733941135,
         "FredCurt": 1716759334,
+        "DanielVienne": 1759815071,
         "NathBro": 1742596532,
         "VAOULEVENT": 1716438908,
         "LoreleiGAUTHIER": 1716430291,
@@ -102287,7 +104478,7 @@
     "xavidp": {
       "index": 5075,
       "owner_key": "A1Fc1VoCLKHyPYmXimYECSmjmsceqwRSZcTBXfgG9JaB",
-      "balance": 668619,
+      "balance": 713045,
       "membership_expire_on": 1706452877,
       "next_cert_issuable_on": 1682635565,
       "certs_received": {
@@ -102295,19 +104486,17 @@
         "celoman": 1696749959,
         "SandraFernandes": 1698220822,
         "sheveck": 1742946307,
-        "timetale": 1694662242,
         "vjrj": 1745998837,
         "Danielagn": 1745264151,
         "LI21": 1698196920,
-        "JuanCapitan": 1695273236,
         "SandraHeleno": 1712120403
       }
     },
     "SebBlt": {
       "index": 10701,
       "owner_key": "A1HGb9tbsm3PrGDyfH6tBv2TEvpjDSRD7BCu1MhMsP2b",
-      "balance": 292397,
-      "membership_expire_on": 1701368854,
+      "balance": 332083,
+      "membership_expire_on": 1727909543,
       "next_cert_issuable_on": 1673014115,
       "certs_received": {
         "KrineBlt": 1733212426,
@@ -102329,7 +104518,7 @@
     "Isabeille": {
       "index": 11308,
       "owner_key": "A1PP6oVs2EAwM6YQhnuDy58ZPzDVbjWyEnS3Ja4BiNkk",
-      "balance": 221565,
+      "balance": 261251,
       "membership_expire_on": 1705174114,
       "next_cert_issuable_on": 1683519591,
       "certs_received": {
@@ -102344,7 +104533,7 @@
     "DidierHANON": {
       "index": 10145,
       "owner_key": "A1W282nx6CFubJ784VTBHVQuXdvtKtRP6k4yVyGkTZiv",
-      "balance": 323403,
+      "balance": 274289,
       "membership_expire_on": 1696801986,
       "next_cert_issuable_on": 1670599585,
       "certs_received": {
@@ -102366,9 +104555,9 @@
     "Bricalie": {
       "index": 11871,
       "owner_key": "A1WWwmz4WT2KvwP2WwPYXtcH8Ke6EC8PCkp36SeJDXq3",
-      "balance": 372528,
+      "balance": 395214,
       "membership_expire_on": 1704646678,
-      "next_cert_issuable_on": 1691157081,
+      "next_cert_issuable_on": 1694703950,
       "certs_received": {
         "DidierDavid": 1747945402,
         "etsaman": 1740727415,
@@ -102378,7 +104567,8 @@
         "Diessanne": 1741140209,
         "Mag": 1744909494,
         "Florane": 1741137262,
-        "Esme34": 1741253552
+        "Esme34": 1741253552,
+        "Vincemard": 1757880184
       }
     },
     "isabelledesrame": {
@@ -102388,16 +104578,14 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1634910575,
       "certs_received": {
-        "StephanieN": 1694585020,
-        "EricPetit": 1694734037,
         "ChristineBouton": 1710476458
       }
     },
     "Plumedange": {
       "index": 6463,
       "owner_key": "A1kgmzcjRxJR8UiETDFmgpKdQy5h1TLVRuRFnfvNKL3p",
-      "balance": 962859,
-      "membership_expire_on": 1698174710,
+      "balance": 1002645,
+      "membership_expire_on": 1725276307,
       "next_cert_issuable_on": 1681286511,
       "certs_received": {
         "valerie85": 1704788223,
@@ -102431,7 +104619,7 @@
     "Franviriato": {
       "index": 12447,
       "owner_key": "A1y9gRVoD6kuPNgGeVfXgQxseWe9hJaw7n7tGSUieLtN",
-      "balance": 105604,
+      "balance": 78790,
       "membership_expire_on": 1714003174,
       "next_cert_issuable_on": 1684112941,
       "certs_received": {
@@ -102447,7 +104635,7 @@
     "Nany": {
       "index": 9038,
       "owner_key": "A1zfmBrkkGm16wWBM8KdVwjC7eumuJXEi641dw23PRbo",
-      "balance": 681943,
+      "balance": 721629,
       "membership_expire_on": 1721740949,
       "next_cert_issuable_on": 1673457756,
       "certs_received": {
@@ -102473,26 +104661,28 @@
       "next_cert_issuable_on": 1645340273,
       "certs_received": {
         "Mym": 1707466563,
-        "Margaux": 1694150198,
         "CelesteGuiral": 1709753678
       }
     },
     "Ofildevie": {
       "index": 6192,
       "owner_key": "A28jx2aTVs77qhGCPeuU93zFfPBea1dQbYM9ZhAuTR6W",
-      "balance": 666881,
-      "membership_expire_on": 1700177876,
-      "next_cert_issuable_on": 1689488254,
+      "balance": 706567,
+      "membership_expire_on": 1727222412,
+      "next_cert_issuable_on": 1695878496,
       "certs_received": {
         "Abrialys": 1750265211,
         "nuvolari": 1700636299,
+        "MaiseD": 1758852256,
         "Kaena70": 1750643411,
         "laurienza": 1709430131,
+        "Ajna21": 1758832082,
         "Pascale72": 1700337668,
         "CelineRenou": 1752544822,
         "Atout": 1744869694,
         "ji_emme": 1700368126,
         "Krikri": 1717813782,
+        "Sandrabacq": 1758853222,
         "VeroniqueV": 1705377602,
         "Klerkival": 1716751837,
         "LeoLiens": 1700433897,
@@ -102504,7 +104694,7 @@
     "LafeeValerie": {
       "index": 6512,
       "owner_key": "A2B8fEpiEVvmRpp3NeWwheeybxXdpZTJ8Bp2RzuejFcU",
-      "balance": 779377,
+      "balance": 827607,
       "membership_expire_on": 1699657928,
       "next_cert_issuable_on": 1668172775,
       "certs_received": {
@@ -102529,7 +104719,7 @@
     "bricodeur": {
       "index": 3921,
       "owner_key": "A2C6cVJnkkT2n4ivMPiLH2njQHeHSZcVf1cSTwZYScQ6",
-      "balance": 530117,
+      "balance": 569803,
       "membership_expire_on": 1715897305,
       "next_cert_issuable_on": 1681912040,
       "certs_received": {
@@ -102578,7 +104768,7 @@
     "Yohan": {
       "index": 10490,
       "owner_key": "A2HvXYWotXgdsjz8gxKrrXU5VLUMsiYh2MMG7aPAxqPr",
-      "balance": 209536,
+      "balance": 229222,
       "membership_expire_on": 1699992868,
       "next_cert_issuable_on": 1691897408,
       "certs_received": {
@@ -102620,7 +104810,7 @@
     "Melusoize": {
       "index": 7719,
       "owner_key": "A2NEeH6ZaAd7yU4dUergzvqvmDi9dZi8X4ca3T3rBcDn",
-      "balance": 282786,
+      "balance": 257472,
       "membership_expire_on": 1706276609,
       "next_cert_issuable_on": 1680015673,
       "certs_received": {
@@ -102649,7 +104839,7 @@
     "Flodelahaut": {
       "index": 2043,
       "owner_key": "A2SZW2dF5t9EAN9Emv5CJ9czWrRxeP3Mnvq5S4kz3kWH",
-      "balance": 1491145,
+      "balance": 1530831,
       "membership_expire_on": 1718277100,
       "next_cert_issuable_on": 1689316322,
       "certs_received": {
@@ -102665,11 +104855,12 @@
     "Manae": {
       "index": 10132,
       "owner_key": "A2XV8TjmNoQtLRrRHvrcUue129Rbf2ZxbkvYU3PAxtbi",
-      "balance": 324121,
-      "membership_expire_on": 1697827950,
+      "balance": 363807,
+      "membership_expire_on": 1727738428,
       "next_cert_issuable_on": 1690513474,
       "certs_received": {
         "cedre": 1730232132,
+        "veronaturo73": 1755938166,
         "ceti12": 1730233009,
         "MayaDN": 1730225744,
         "Ninou01": 1730225368,
@@ -102680,7 +104871,7 @@
     "Ana": {
       "index": 10826,
       "owner_key": "A2YVdfXD1x9mdJfe3utZY5JKXYvSsRYAAgXzHN5EhfKB",
-      "balance": 387866,
+      "balance": 427552,
       "membership_expire_on": 1699922888,
       "next_cert_issuable_on": 1672220299,
       "certs_received": {
@@ -102694,7 +104885,7 @@
     "coco73200": {
       "index": 9112,
       "owner_key": "A2jNvYtWd9sg3aiXufpWm4N6ruwTwJ72D3qR1hugcorB",
-      "balance": 400027,
+      "balance": 425713,
       "membership_expire_on": 1724782702,
       "next_cert_issuable_on": 1677156472,
       "certs_received": {
@@ -102709,9 +104900,9 @@
     "Fab": {
       "index": 10640,
       "owner_key": "A2muQsjf28NagPkitkq8ETVGAJ8e8g6awnLxt4Ytfr9N",
-      "balance": 210617,
-      "membership_expire_on": 1701466724,
-      "next_cert_issuable_on": 1687689186,
+      "balance": 241111,
+      "membership_expire_on": 1727910691,
+      "next_cert_issuable_on": 1695514458,
       "certs_received": {
         "PhilippeLetroll": 1745996150,
         "Piet": 1733156395,
@@ -102729,13 +104920,28 @@
         "Vinciane": 1736230830,
         "NataSha": 1733116622,
         "Mazurka": 1755885988,
-        "Anolisbaladin": 1735609736
+        "Anolisbaladin": 1735609736,
+        "bobbie": 1757951821
+      }
+    },
+    "Mooglie12": {
+      "index": 13745,
+      "owner_key": "A2nSLUVyNSFLEAgDbAGSQtKswvJUe3Ub73nXrR7TgbBN",
+      "balance": 31078,
+      "membership_expire_on": 1727109887,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "KIRPI": 1758690139,
+        "Egopode": 1758739123,
+        "Claire666": 1758746771,
+        "Dum": 1759270352,
+        "SylvainDeCadix": 1759391267
       }
     },
     "francoisebize": {
       "index": 457,
       "owner_key": "A2odbKpwMBa82LqmAwFeRrseoFQo9W3qC3JCxLZRb3GM",
-      "balance": 284235,
+      "balance": 323921,
       "membership_expire_on": 1708008473,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -102750,7 +104956,7 @@
     "Milenacetkovic": {
       "index": 10802,
       "owner_key": "A2rUq7uKh8Kprweovojz8tKNiGK2ij4VnbMtSLXuTfKE",
-      "balance": 282984,
+      "balance": 322670,
       "membership_expire_on": 1701111694,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -102763,6 +104969,20 @@
         "alexeictk": 1733618085
       }
     },
+    "Galloun": {
+      "index": 13760,
+      "owner_key": "A2rfvTXSSKcBzyF9VPb57gdkqKECARDJPeoYdTxaPSka",
+      "balance": 39780,
+      "membership_expire_on": 1727624785,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Crystale": 1759449466,
+        "March": 1759185262,
+        "ROVER5537": 1759590840,
+        "Mireilleplantessauvages": 1759819573,
+        "isabelleirigoin": 1759814388
+      }
+    },
     "Melaeva82": {
       "index": 1307,
       "owner_key": "A2rgAKELi3hd55pSZeYteHaDp7xuApFmpWXNTbg53XCa",
@@ -102796,7 +105016,7 @@
     "AngeEden": {
       "index": 8535,
       "owner_key": "A2yRb8Q5kr97dwMwCNVfeqT2x1LnNtg2YngPGx6UYWbi",
-      "balance": 1113975,
+      "balance": 1023661,
       "membership_expire_on": 1713706024,
       "next_cert_issuable_on": 1681318907,
       "certs_received": {
@@ -102834,7 +105054,7 @@
     "DominiquePROUVIER-ARNAUD": {
       "index": 7843,
       "owner_key": "A389GLTgn58vjKrRf935oHKsx1bfGkUfsN6gWmyPKzYX",
-      "balance": 477827,
+      "balance": 517513,
       "membership_expire_on": 1712596071,
       "next_cert_issuable_on": 1670678143,
       "certs_received": {
@@ -102854,12 +105074,11 @@
     "VivianeDEROUET": {
       "index": 4060,
       "owner_key": "A3AVp9XwAsPXo18GnfRFwjgh8i7SBEFyKuTTt6wJ36mK",
-      "balance": 1418201,
-      "membership_expire_on": 1693863937,
+      "balance": 1438643,
+      "membership_expire_on": 1726964731,
       "next_cert_issuable_on": 1679577689,
       "certs_received": {
-        "StephanieN": 1694585020,
-        "EricPetit": 1702229309,
+        "EricPetit": 1759600030,
         "GaryGrandin": 1739605196,
         "sigurd": 1725420611,
         "PascaleRoncoroni": 1755629059,
@@ -102869,9 +105088,9 @@
     "Pakatiwa": {
       "index": 11752,
       "owner_key": "A3BNUYJxqL7tYtrM1aMXdV79ZztKqFuZEBP8dGSmZR69",
-      "balance": 193259,
+      "balance": 222545,
       "membership_expire_on": 1708352967,
-      "next_cert_issuable_on": 1679920689,
+      "next_cert_issuable_on": 1694477811,
       "certs_received": {
         "BOUbou007": 1740348761,
         "Pocahontas": 1740257572,
@@ -102884,7 +105103,7 @@
     "MarcGenet": {
       "index": 7889,
       "owner_key": "A3FWSJPVDP4mh57qx8tppXcH7Gs1qiccWQoPj3KwJJnU",
-      "balance": 512923,
+      "balance": 552609,
       "membership_expire_on": 1711313208,
       "next_cert_issuable_on": 1686413995,
       "certs_received": {
@@ -102903,7 +105122,7 @@
     "DodoLCrew73": {
       "index": 6893,
       "owner_key": "A3Fc3X4FjfbDYhtgjkZmewTkYoWjSZvU9ekkXtTnzcKN",
-      "balance": 589927,
+      "balance": 629613,
       "membership_expire_on": 1707045178,
       "next_cert_issuable_on": 1658799949,
       "certs_received": {
@@ -102917,8 +105136,8 @@
     "AnneLadragonitta": {
       "index": 5898,
       "owner_key": "A3PtnCxkLa5PAceSoxCyW6bGnV2DxzMVcPpM1fekc1xE",
-      "balance": 1112821,
-      "membership_expire_on": 1693916616,
+      "balance": 1118161,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1682212464,
       "certs_received": {
         "Niamor": 1697919687,
@@ -102941,9 +105160,9 @@
     "isadel": {
       "index": 13258,
       "owner_key": "A3ZNAqmWMP1W7B7u5Kfd5SgLZ8VEBh49PPRD9WQCTAMg",
-      "balance": 36312,
+      "balance": 76998,
       "membership_expire_on": 1718815771,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695547068,
       "certs_received": {
         "Gregory": 1753416033,
         "HugoTrentesaux": 1754253728,
@@ -102957,7 +105176,7 @@
     "Manuehb": {
       "index": 9084,
       "owner_key": "A3agW5Y5SNpuuRGaDEykqBL7r3xht5ZmfbDsEdRmzVZE",
-      "balance": 185690,
+      "balance": 225376,
       "membership_expire_on": 1715464263,
       "next_cert_issuable_on": 1669634035,
       "certs_received": {
@@ -102975,7 +105194,7 @@
     "christinedesfleuris": {
       "index": 12588,
       "owner_key": "A3gC3n2TaQAdhPUe7RPamGRwZWS5Qgw6eyiuS6XxFwSe",
-      "balance": 281820,
+      "balance": 321506,
       "membership_expire_on": 1714257836,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -102998,7 +105217,7 @@
     "FabienArchimbaud": {
       "index": 10712,
       "owner_key": "A3omwg4nb6pqKydKjWGwre6kTxyQRtTFSxjxMfixWxts",
-      "balance": 282338,
+      "balance": 322024,
       "membership_expire_on": 1701731118,
       "next_cert_issuable_on": 1686267733,
       "certs_received": {
@@ -103012,7 +105231,7 @@
     "cylvine": {
       "index": 11180,
       "owner_key": "A3owuYTVfjNQDrZL1gWtqdyQfrKJxE2gm5QXCELHZBZx",
-      "balance": 250214,
+      "balance": 289900,
       "membership_expire_on": 1704677931,
       "next_cert_issuable_on": 1679737188,
       "certs_received": {
@@ -103027,7 +105246,7 @@
     "Jihem": {
       "index": 12466,
       "owner_key": "A3v42H7Ak5ZpD6Gwa3k68AwKMpxY7suXr9KyYromDnVU",
-      "balance": 133568,
+      "balance": 173254,
       "membership_expire_on": 1713899513,
       "next_cert_issuable_on": 1689129247,
       "certs_received": {
@@ -103049,7 +105268,7 @@
     "Laetiblond": {
       "index": 9293,
       "owner_key": "A4E5oKP9HJGPVFkejwga4YQyjw7sMrtLbJfvsuh764Pt",
-      "balance": 390918,
+      "balance": 430604,
       "membership_expire_on": 1721775815,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -103065,16 +105284,15 @@
       "owner_key": "A4NwQFVhvgNTme9ToHjk9yBXirgmJWP18zSuDjDFwncd",
       "balance": 1104767,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631181323,
+      "next_cert_issuable_on": 0,
       "certs_received": {
-        "lindanas": 1695233618,
         "neo9": 1698966146
       }
     },
     "Bernadeth": {
       "index": 13096,
       "owner_key": "A4NxLXyghVZKjTjtWPkcaej8ij8ZKuLPvg5stWUkheQL",
-      "balance": 94808,
+      "balance": 134494,
       "membership_expire_on": 1718314356,
       "next_cert_issuable_on": 1692066352,
       "certs_received": {
@@ -103089,7 +105307,7 @@
     "Leti971": {
       "index": 11007,
       "owner_key": "A4PJC9S1KHLySvCNWsrJzCYuK2RsWB5dwy1Q5JYARTds",
-      "balance": 264099,
+      "balance": 303785,
       "membership_expire_on": 1703374719,
       "next_cert_issuable_on": 1674856148,
       "certs_received": {
@@ -103103,13 +105321,14 @@
     "xomer": {
       "index": 11886,
       "owner_key": "A4RArkbWiuqLJZRSrfxwB6WFeCdmznYux2ZLmFoWTuCt",
-      "balance": 171025,
+      "balance": 199931,
       "membership_expire_on": 1708277748,
-      "next_cert_issuable_on": 1693378116,
+      "next_cert_issuable_on": 1694573259,
       "certs_received": {
         "Quintescence": 1742504864,
         "Salsa33150": 1750988097,
         "Heimdall": 1744869694,
+        "LaFouif": 1757799600,
         "Dieudo": 1739937579,
         "metatisseuroccitanie": 1741234571,
         "YvesMarieValladon": 1739837771,
@@ -103123,7 +105342,7 @@
     "asdepique": {
       "index": 12715,
       "owner_key": "A4RfLyyWyy3VZi7gLi1aS5nTDnFohrcRC7HH4a9ScY7M",
-      "balance": 104936,
+      "balance": 144622,
       "membership_expire_on": 1716079988,
       "next_cert_issuable_on": 1688395989,
       "certs_received": {
@@ -103137,8 +105356,8 @@
     "MonicaSpiritualandHealthCoach": {
       "index": 10163,
       "owner_key": "A4TV99amdFuBZRkjwznZqQSrdkS2FrNgLqivQcbJpTVk",
-      "balance": 326331,
-      "membership_expire_on": 1696987575,
+      "balance": 371517,
+      "membership_expire_on": 1725899542,
       "next_cert_issuable_on": 1683272391,
       "certs_received": {
         "Bogart": 1730502685,
@@ -103171,7 +105390,7 @@
     "hedid": {
       "index": 10377,
       "owner_key": "A4b3FAF22ntWPyUNxDYmAgQHs6wc2hzqDBhrFyFVp7mo",
-      "balance": 274359,
+      "balance": 314045,
       "membership_expire_on": 1698284611,
       "next_cert_issuable_on": 1669544618,
       "certs_received": {
@@ -103195,7 +105414,7 @@
     "Yaka": {
       "index": 11623,
       "owner_key": "A4i7oyHhpKFuMnpSpu9YcPEkDdzVpycqwEiiUr54KQbG",
-      "balance": 210090,
+      "balance": 249776,
       "membership_expire_on": 1707148657,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -103209,14 +105428,14 @@
     "Pol": {
       "index": 1163,
       "owner_key": "A4pc9Uuk4NXkWG8CibicjjPpEPdiup1mhjMoRWUZsonq",
-      "balance": 1977785,
+      "balance": 2017471,
       "membership_expire_on": 1723443969,
-      "next_cert_issuable_on": 1674880651,
+      "next_cert_issuable_on": 1694839945,
       "certs_received": {
+        "1000i100": 1757662441,
         "clfouillet": 1744416255,
         "OrsoFleuri": 1710443239,
         "tuxmain": 1701144136,
-        "FrancoisW": 1695545282,
         "Pierroots": 1700077561,
         "peveilleau": 1722179511,
         "mably": 1708915065,
@@ -103243,7 +105462,7 @@
     "NEMOZALEX": {
       "index": 8344,
       "owner_key": "A4t1bZLHYeJT8HhLNnyw1SCXyxiUEG14UCyteeMGPomc",
-      "balance": 474389,
+      "balance": 514075,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1676472375,
       "certs_received": {
@@ -103260,7 +105479,7 @@
     "manouche": {
       "index": 6851,
       "owner_key": "A4tESYzjxEJaGiE6Q3ySEW3TtiFkC57AWre6p7pcBHYL",
-      "balance": 483561,
+      "balance": 523247,
       "membership_expire_on": 1708634394,
       "next_cert_issuable_on": 1679291669,
       "certs_received": {
@@ -103285,17 +105504,15 @@
     "Isabohin": {
       "index": 5686,
       "owner_key": "A4zk8Cb8rZEBhUatSJeTxZPtjCq5nvVRYdZ3qAFudYmS",
-      "balance": 625661,
+      "balance": 665347,
       "membership_expire_on": 1702991332,
-      "next_cert_issuable_on": 1678955674,
+      "next_cert_issuable_on": 1693897622,
       "certs_received": {
         "Crystal": 1753339779,
         "AnneChaimbault": 1747926597,
         "Irenili": 1698999500,
-        "EvaSorel": 1694878679,
-        "Omkara": 1694387787,
-        "Matthias": 1693961369,
-        "annefreda": 1693963518,
+        "EvaSorel": 1756768401,
+        "annefreda": 1757012865,
         "BrigitteBaron": 1755754637
       }
     },
@@ -103325,7 +105542,7 @@
     "isabeille": {
       "index": 13147,
       "owner_key": "A55L2gEDe81THWd4xWkf6P9iNdAXwPcVUeUoF1vJarqo",
-      "balance": 75800,
+      "balance": 115486,
       "membership_expire_on": 1720203566,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -103353,7 +105570,7 @@
     "elmau": {
       "index": 8389,
       "owner_key": "A5DdXxCKPw3QKWVdDVs7CzkNugNUW1sHu5zDJFWxCU2h",
-      "balance": 326541,
+      "balance": 414287,
       "membership_expire_on": 1713907584,
       "next_cert_issuable_on": 1686861636,
       "certs_received": {
@@ -103377,7 +105594,7 @@
     "ElisabethBarberOviedo": {
       "index": 12682,
       "owner_key": "A5HtdQpEmx6sUBH1HpfCFBhTTwk4jkgDYvaL4wCbtFWH",
-      "balance": 271924,
+      "balance": 220410,
       "membership_expire_on": 1715869587,
       "next_cert_issuable_on": 1687186327,
       "certs_received": {
@@ -103394,9 +105611,9 @@
     "St123": {
       "index": 13010,
       "owner_key": "A5QXUFxR7b5yW7ExEXji1dc7epgpCQ53vvhnKc7Mmmkh",
-      "balance": 90320,
+      "balance": 115006,
       "membership_expire_on": 1718579499,
-      "next_cert_issuable_on": 1688003726,
+      "next_cert_issuable_on": 1695614083,
       "certs_received": {
         "Gazaile": 1750140078,
         "sro": 1750140078,
@@ -103409,9 +105626,9 @@
     "Lapprentissage": {
       "index": 1863,
       "owner_key": "A5QiUcWR146JF5m1wUk2Jwei75q6WLhJcrNrhh7mtoSN",
-      "balance": 1253385,
-      "membership_expire_on": 1695827954,
-      "next_cert_issuable_on": 1685105061,
+      "balance": 1293071,
+      "membership_expire_on": 1727447427,
+      "next_cert_issuable_on": 1695990004,
       "certs_received": {
         "Mymy": 1747284210,
         "LaeVie": 1746600012,
@@ -103433,7 +105650,7 @@
     "JessLongo": {
       "index": 11534,
       "owner_key": "A5ZJVumDPzTjRW5fAUAJf3uxyT9hvXKimbKmRz9Bt5tk",
-      "balance": 216666,
+      "balance": 256352,
       "membership_expire_on": 1707232772,
       "next_cert_issuable_on": 1684248585,
       "certs_received": {
@@ -103455,9 +105672,9 @@
     "Padi": {
       "index": 12902,
       "owner_key": "A5e2o8gfc1ZTRSkyGyJMBMEr7QKWCMoXWpnb1zLRCihu",
-      "balance": 82236,
+      "balance": 117922,
       "membership_expire_on": 1714320330,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696218731,
       "certs_received": {
         "Estemamia22": 1750008058,
         "ThierryK": 1749886359,
@@ -103485,7 +105702,7 @@
     "petitaneChris": {
       "index": 10282,
       "owner_key": "A5ySWK6zsHPbLUNmUH2nFEKvsCihxEoFU8pke1VqpSw7",
-      "balance": 211313,
+      "balance": 250999,
       "membership_expire_on": 1699473870,
       "next_cert_issuable_on": 1683625550,
       "certs_received": {
@@ -103531,7 +105748,7 @@
     "Marie-Claire-Gay": {
       "index": 11907,
       "owner_key": "A6BcbBoLwqWcptMAdJb4gvWsVs4XL1jiXtFGLMZZoLU1",
-      "balance": 193351,
+      "balance": 233037,
       "membership_expire_on": 1709682291,
       "next_cert_issuable_on": 1690637558,
       "certs_received": {
@@ -103560,7 +105777,6 @@
       "next_cert_issuable_on": 1661957584,
       "certs_received": {
         "Djupacabra": 1725168617,
-        "JulienLecaille": 1696531825,
         "ElisaDesFougeres": 1706409145
       }
     },
@@ -103591,9 +105807,9 @@
     "Estemamia22": {
       "index": 11506,
       "owner_key": "A6mPGmXDTTiptnLBVeuH7bEurETXaBVb3xCkT5kzpHz5",
-      "balance": 218562,
+      "balance": 253248,
       "membership_expire_on": 1706586661,
-      "next_cert_issuable_on": 1686964858,
+      "next_cert_issuable_on": 1695311691,
       "certs_received": {
         "DelphineA": 1738383998,
         "Adelinej": 1738182925,
@@ -103623,7 +105839,7 @@
     "PaniWiater": {
       "index": 9098,
       "owner_key": "A74v16NaZxXn1dRkPWfcD5C9LafNwiVKw47tiwRdisQT",
-      "balance": 343229,
+      "balance": 382915,
       "membership_expire_on": 1718637194,
       "next_cert_issuable_on": 1681394486,
       "certs_received": {
@@ -103645,7 +105861,7 @@
     "pielonet": {
       "index": 5019,
       "owner_key": "A79nvGnsrYRYiqgpGv9Finj67mfo3XzKp9b66xhEJFnm",
-      "balance": 1139867,
+      "balance": 1132893,
       "membership_expire_on": 1722771862,
       "next_cert_issuable_on": 1685856108,
       "certs_received": {
@@ -103663,7 +105879,7 @@
     "Aline": {
       "index": 11371,
       "owner_key": "A7AqgHVzHMaqfssMwHdJ8NGboJVz6fVbcuvzVE3v1o6w",
-      "balance": 200311,
+      "balance": 239997,
       "membership_expire_on": 1705716557,
       "next_cert_issuable_on": 1678334418,
       "certs_received": {
@@ -103681,7 +105897,7 @@
     "GillesdeGaia": {
       "index": 12638,
       "owner_key": "A7KQTU6po6W6Vhj5dP4dwswbnToSTC4x83mQdZScNdfp",
-      "balance": 119050,
+      "balance": 140736,
       "membership_expire_on": 1715027025,
       "next_cert_issuable_on": 1688786000,
       "certs_received": {
@@ -103712,8 +105928,8 @@
     "Sosso86": {
       "index": 10101,
       "owner_key": "A7d1hY4tf1ArmVdN5DNkwZPxK8pwpMeo8P8D7KAVg9HY",
-      "balance": 298580,
-      "membership_expire_on": 1695424966,
+      "balance": 322096,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673275314,
       "certs_received": {
         "Mira": 1729840845,
@@ -103729,9 +105945,9 @@
     "AnneSo": {
       "index": 13066,
       "owner_key": "A7fGEVvXrL1sH1j6XrqtbUEQma2CEhRPWScLgprRGPfu",
-      "balance": 110580,
+      "balance": 68466,
       "membership_expire_on": 1719875387,
-      "next_cert_issuable_on": 1692712679,
+      "next_cert_issuable_on": 1694243650,
       "certs_received": {
         "Luluzlb": 1751456875,
         "Asiri": 1751457192,
@@ -103753,8 +105969,8 @@
     "Tatichan": {
       "index": 10382,
       "owner_key": "A7sbAR4QopaPjYPvu6tE6hfFu347STrLRwX5UrS9hwoY",
-      "balance": 307159,
-      "membership_expire_on": 1699540315,
+      "balance": 346845,
+      "membership_expire_on": 1726232669,
       "next_cert_issuable_on": 1672399593,
       "certs_received": {
         "Martyne": 1731516494,
@@ -103772,7 +105988,7 @@
     "aajaadee": {
       "index": 4493,
       "owner_key": "A7u5NFVCM7mdANkDKtUb6vDqEaiaCVT2zzFNztKgyGTT",
-      "balance": 853816,
+      "balance": 893502,
       "membership_expire_on": 1698800128,
       "next_cert_issuable_on": 1672490746,
       "certs_received": {
@@ -103819,9 +106035,9 @@
     "blackzila": {
       "index": 13290,
       "owner_key": "A8B2G9nC1HxE1cNvqMBeHJhGrmKap7Qpx53dHmrpdoUB",
-      "balance": 32040,
+      "balance": 71726,
       "membership_expire_on": 1722448397,
-      "next_cert_issuable_on": 1691918844,
+      "next_cert_issuable_on": 1694426584,
       "certs_received": {
         "lims": 1754065469,
         "Vanthegreat": 1754066059,
@@ -103834,7 +106050,7 @@
     "Alexag": {
       "index": 8058,
       "owner_key": "A8E5CSKjrKWWxk3CnMC1hyBVvM5TuWPWcwYqPi8uwdGg",
-      "balance": 264185,
+      "balance": 298871,
       "membership_expire_on": 1713999846,
       "next_cert_issuable_on": 1692328818,
       "certs_received": {
@@ -103859,7 +106075,7 @@
     "Bruno81": {
       "index": 8444,
       "owner_key": "A8T7WbXJYTg67CAnaxvwLrqZf4JQ2NHoYRz12wiMWkbW",
-      "balance": 483581,
+      "balance": 523267,
       "membership_expire_on": 1710968657,
       "next_cert_issuable_on": 1689953889,
       "certs_received": {
@@ -103869,9 +106085,11 @@
         "LaurenceIG": 1718088604,
         "Lise": 1750919935,
         "Mandala": 1732910947,
+        "Alex34": 1755123306,
         "CVM": 1715929436,
         "enchemin": 1755122369,
-        "Pommedapi": 1719487156
+        "Pommedapi": 1719487156,
+        "Nico34": 1755125854
       }
     },
     "AdelineCesbron": {
@@ -103887,19 +106105,21 @@
     "camillerichard": {
       "index": 13462,
       "owner_key": "A8ZJyAZAisthuc5TrMiUBNGjftGzcyzhNy4i8xogmcR3",
-      "balance": 18036,
+      "balance": 82722,
       "membership_expire_on": 1724596993,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695743454,
       "certs_received": {
         "Bambou": 1756422253,
         "AmeHC": 1756604584,
+        "Nounouche": 1758222770,
         "issandrol": 1756535316,
         "JuanLu": 1756406462,
         "Florencefleur": 1756172521,
         "CorinneCoco": 1756604584,
         "Did-yeah": 1756450373,
         "lilithdu34": 1756442033,
-        "FloP": 1756535520
+        "FloP": 1756535520,
+        "MatHC": 1756604584
       }
     },
     "electronlibre": {
@@ -103916,7 +106136,7 @@
     "cristian": {
       "index": 13364,
       "owner_key": "A8beG1Lwy3zUGVbxnCkp6BizrfcpmJ3UjZp9vJXwGsJD",
-      "balance": 19324,
+      "balance": 59010,
       "membership_expire_on": 1723232696,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -103930,29 +106150,23 @@
     "NirmalaMary": {
       "index": 5642,
       "owner_key": "A8fbJKQ6PHwhZghTuuApPXQ2Q8bWEtHnNRBsCMEK8wDK",
-      "balance": 743530,
+      "balance": 783216,
       "membership_expire_on": 1715282293,
       "next_cert_issuable_on": 1690409830,
       "certs_received": {
         "MarindChanti": 1714082309,
         "GabrielCohergne": 1719476357,
-        "FrankDeMey": 1693555542,
-        "ChristopheCompere": 1693681297,
         "peveilleau": 1701642054,
         "adeline": 1704606590,
         "Toma": 1716362955,
         "Naho": 1736275503,
         "Nico_sur_Mars": 1721286797,
-        "MarieBertheRanwet": 1693553897,
         "daluz": 1726992456,
-        "PatHamster": 1693602659,
-        "HAMSTERDAME": 1693775172,
         "misterkay": 1720492745,
         "LionelJ": 1709888648,
         "ChristopheVolckaert": 1706946148,
         "MelR": 1715444649,
         "NatNaelle": 1709937006,
-        "ChristelleHerbagemembre": 1695962578,
         "IsalineG": 1739176900,
         "HoefmansC": 1712568333,
         "JacquesGaetan": 1712214466,
@@ -103964,7 +106178,7 @@
     "Gitan974": {
       "index": 10405,
       "owner_key": "A8houhKJQeLgPehhwdGKoMcCsK88W9t7xr3je6GeqZB3",
-      "balance": 185341,
+      "balance": 225027,
       "membership_expire_on": 1700064727,
       "next_cert_issuable_on": 1674614990,
       "certs_received": {
@@ -103979,20 +106193,18 @@
     "JeromeCoste": {
       "index": 314,
       "owner_key": "A8i7u7G495uhGjM2imZWYV5rHTWQZ5eHsvUJruJjV13L",
-      "balance": 1519583,
+      "balance": 1560347,
       "membership_expire_on": 1717419365,
-      "next_cert_issuable_on": 1693380832,
+      "next_cert_issuable_on": 1694388992,
       "certs_received": {
-        "Jean-Marie": 1698855748,
+        "Jean-Marie": 1758725576,
         "daryl": 1743657198,
         "nuvolari": 1698790637,
         "Cha": 1710144394,
-        "Fredhaliotis": 1694222819,
         "KarimCorrandDubreil": 1750008910,
         "NordineVallas": 1701886711,
         "RomanUza": 1706061994,
-        "bdcht": 1694017977,
-        "Pauline-Georges": 1694027272,
+        "bdcht": 1756612553,
         "ecano": 1733445380,
         "Grosquick": 1719950258,
         "alclo": 1704851971
@@ -104001,14 +106213,15 @@
     "Betty": {
       "index": 12890,
       "owner_key": "A8nhK18toRUq9zHSyXKJQASAdsErgq2cwMqqQ5rn1PvY",
-      "balance": 90721,
+      "balance": 126658,
       "membership_expire_on": 1718170224,
-      "next_cert_issuable_on": 1693335101,
+      "next_cert_issuable_on": 1695830689,
       "certs_received": {
         "Josemi108": 1749750725,
         "Gloria974": 1750976537,
         "LauraPDF": 1752528721,
         "SamuelPabloAlmonacid": 1752419166,
+        "Effelmandy": 1756502200,
         "Wotan": 1749780635,
         "Elariel": 1749732959,
         "LucasSebastianPerez": 1756270239,
@@ -104033,7 +106246,7 @@
     "Evy": {
       "index": 2626,
       "owner_key": "A8rMY1a6GNZPRxSekfczbiZM7DW7L7RaQDme3AJMuk2X",
-      "balance": 430643,
+      "balance": 470329,
       "membership_expire_on": 1717366534,
       "next_cert_issuable_on": 1692889920,
       "certs_received": {
@@ -104041,6 +106254,7 @@
         "etsaman": 1739940308,
         "Syltraci": 1717381390,
         "PatriciaGirard": 1717738211,
+        "ECRIVAINE": 1756069821,
         "Bricalie": 1753473238,
         "Annabel": 1739485413,
         "AlainGirard": 1717381390,
@@ -104051,9 +106265,9 @@
     "Nina38": {
       "index": 12774,
       "owner_key": "A8wgcoU1Tw2pVVRbk3ZXLdZVZjvMfi4rk4jJ5cRmt6EV",
-      "balance": 106592,
+      "balance": 145278,
       "membership_expire_on": 1716136557,
-      "next_cert_issuable_on": 1692775031,
+      "next_cert_issuable_on": 1694909950,
       "certs_received": {
         "Rosalie": 1748555559,
         "Denis": 1748301706,
@@ -104082,14 +106296,15 @@
     "RegnierLefur45": {
       "index": 9946,
       "owner_key": "A9746UzREuLxuFK52iE1W3wYQDRiAFjiGpj7W3m2Ruhq",
-      "balance": 795957,
+      "balance": 710643,
       "membership_expire_on": 1724248334,
-      "next_cert_issuable_on": 1687161087,
+      "next_cert_issuable_on": 1696301108,
       "certs_received": {
         "Uriane13": 1728849182,
         "DaniailesA": 1750204287,
         "Momosapiens": 1732008457,
         "fredo79": 1728785014,
+        "Steph974": 1757866044,
         "Mozart85": 1728785014,
         "BisQI": 1732678205,
         "Val79": 1729357759,
@@ -104117,7 +106332,7 @@
     "CHRIST26": {
       "index": 8955,
       "owner_key": "A9LUs8SQoy1Q1m8ywAuNQdtZSNb7LvnAxtWsR7nXNa7M",
-      "balance": 377723,
+      "balance": 417409,
       "membership_expire_on": 1724624983,
       "next_cert_issuable_on": 1669639883,
       "certs_received": {
@@ -104132,7 +106347,7 @@
     "ChrisP34": {
       "index": 7023,
       "owner_key": "A9LYnvAiCMiFr7wafPLJpG4Hbtn9zfoQaUmPpk6CCX62",
-      "balance": 576381,
+      "balance": 616067,
       "membership_expire_on": 1701654826,
       "next_cert_issuable_on": 1655561040,
       "certs_received": {
@@ -104150,9 +106365,9 @@
     "ClaireM": {
       "index": 6630,
       "owner_key": "A9VPHgrr94uyRPxjxAjEnodvqrtt5tdgYQzYDHsJnCsi",
-      "balance": 543119,
+      "balance": 582805,
       "membership_expire_on": 1704841877,
-      "next_cert_issuable_on": 1654129008,
+      "next_cert_issuable_on": 1696118102,
       "certs_received": {
         "belledemai": 1705119802,
         "EricSIMON": 1705127424,
@@ -104181,7 +106396,7 @@
     "Lisou53": {
       "index": 2614,
       "owner_key": "A9duQY6c9ZNzivqFTf6AaADyMVqVh537dnicFL5Wf6VJ",
-      "balance": 1059440,
+      "balance": 1099126,
       "membership_expire_on": 1710799161,
       "next_cert_issuable_on": 1676810247,
       "certs_received": {
@@ -104213,14 +106428,12 @@
       "balance": 714871,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Loise": 1694273103
-      }
+      "certs_received": {}
     },
     "Lilik": {
       "index": 10406,
       "owner_key": "A9xXKmbYWsjGFyR4iRRsLuVcwt6TgUjbnfJoXPGHToA3",
-      "balance": 304341,
+      "balance": 344027,
       "membership_expire_on": 1697923025,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -104234,7 +106447,7 @@
     "filou": {
       "index": 7575,
       "owner_key": "AAAwMfYiyvzXsc3fNmaDhy7BBd7c2cWxCTt7T7eB1qVj",
-      "balance": 539417,
+      "balance": 579203,
       "membership_expire_on": 1711369885,
       "next_cert_issuable_on": 1682087061,
       "certs_received": {
@@ -104271,12 +106484,13 @@
     "Xato": {
       "index": 10684,
       "owner_key": "AAN19KrXh63MMXf8RBZp1QxkQVsqrJDWvuNeNXmaXhc1",
-      "balance": 300897,
+      "balance": 333583,
       "membership_expire_on": 1701439357,
       "next_cert_issuable_on": 1693067762,
       "certs_received": {
         "Celina": 1733031787,
         "Monicakoala": 1733009150,
+        "Aiz": 1759322878,
         "Maiaviolin": 1733336459,
         "Marijose": 1732996957,
         "Kol": 1733334719
@@ -104285,8 +106499,8 @@
     "VirginieDeleu": {
       "index": 410,
       "owner_key": "AARFWpQgU63mnPXHLUXsfj9ByYoMj8FdZfBMj7C3kD5N",
-      "balance": 1547497,
-      "membership_expire_on": 1695242925,
+      "balance": 1568857,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666189823,
       "certs_received": {
         "gerardchavanon": 1718604542,
@@ -104299,7 +106513,7 @@
     "lenacharpicard": {
       "index": 12793,
       "owner_key": "AARzjRc2S9oTH5RCdkgXFLxXjmvLR9XSmke8oYRpjxMw",
-      "balance": 96020,
+      "balance": 135706,
       "membership_expire_on": 1716147075,
       "next_cert_issuable_on": 1687411362,
       "certs_received": {
@@ -104313,14 +106527,15 @@
     "LOTUS84": {
       "index": 12746,
       "owner_key": "AAWszBB5bTf7qV3SZqSx474xtoiQte6gTmrgmfJJuT5",
-      "balance": 1469596,
+      "balance": 1926282,
       "membership_expire_on": 1715432221,
-      "next_cert_issuable_on": 1686132469,
+      "next_cert_issuable_on": 1694013623,
       "certs_received": {
         "Unity": 1746981943,
         "Jamorie": 1746827012,
         "lucba": 1746997140,
         "Malaga": 1747708114,
+        "lamouette": 1755938166,
         "TiffanyKalamityJane": 1752126105,
         "CovaDidier": 1748177619
       }
@@ -104328,7 +106543,7 @@
     "Eden07": {
       "index": 12075,
       "owner_key": "AAXWHh6gfwqKqPovSFDR6nLUG9oYZh3s4yUjD1spct4s",
-      "balance": 174184,
+      "balance": 213870,
       "membership_expire_on": 1708566059,
       "next_cert_issuable_on": 1680492062,
       "certs_received": {
@@ -104359,7 +106574,7 @@
     "ChristineV": {
       "index": 5558,
       "owner_key": "AAqrHQ6LMvzzPJbDmEzVtimNZRapQ46U6Qc1kHNQwEpj",
-      "balance": 780285,
+      "balance": 819971,
       "membership_expire_on": 1714428284,
       "next_cert_issuable_on": 1693041488,
       "certs_received": {
@@ -104379,7 +106594,7 @@
     "Regine12": {
       "index": 10930,
       "owner_key": "AAwCLxqtz7QFHciX2wZ5SQHo9jVHFc1bG1JSXqnK6zmn",
-      "balance": 130453,
+      "balance": 170139,
       "membership_expire_on": 1702754141,
       "next_cert_issuable_on": 1673426102,
       "certs_received": {
@@ -104393,7 +106608,7 @@
     "Kilou": {
       "index": 10014,
       "owner_key": "AAwrEudsATFQMXPLjzrr7ZNwVXVqP4LoCFLAHhHrd9US",
-      "balance": 310052,
+      "balance": 349738,
       "membership_expire_on": 1697754588,
       "next_cert_issuable_on": 1681007468,
       "certs_received": {
@@ -104410,6 +106625,20 @@
         "Bruosteop": 1729416366
       }
     },
+    "PesentiOlivier": {
+      "index": 13589,
+      "owner_key": "AAyJvW9y9QtJDL9RjU2UinNbbCAuACLPRYp3LbRt3gP8",
+      "balance": 21530,
+      "membership_expire_on": 1726090599,
+      "next_cert_issuable_on": 1696205894,
+      "certs_received": {
+        "Mariefleur": 1757704438,
+        "Yukimarou": 1757741266,
+        "Anne-Laure": 1757703647,
+        "MelliaGaia": 1757741266,
+        "lisou": 1758083446
+      }
+    },
     "CathieCeretus": {
       "index": 3065,
       "owner_key": "ABD3xuHd92h6yopTYYELwwDzUoaYsqLAnRZM6djEsRa7",
@@ -104421,8 +106650,8 @@
     "michaelsoleil": {
       "index": 10150,
       "owner_key": "ABJoi3dihxuL94M82N7FLrbsAkdDY6kEhVHDLtKp3f2n",
-      "balance": 268853,
-      "membership_expire_on": 1698527644,
+      "balance": 308539,
+      "membership_expire_on": 1727703029,
       "next_cert_issuable_on": 1676704360,
       "certs_received": {
         "Estela": 1730413191,
@@ -104446,7 +106675,7 @@
     "Nella": {
       "index": 7629,
       "owner_key": "ABL3ooXYZ81qztqiuBTxCr3XzfG5rFNJwkhWiopgsZRm",
-      "balance": 325847,
+      "balance": 265533,
       "membership_expire_on": 1709306327,
       "next_cert_issuable_on": 1690980206,
       "certs_received": {
@@ -104471,7 +106700,7 @@
     "stephanetossens": {
       "index": 11269,
       "owner_key": "ABWbaT43zgqrgnedfHhskox9vHJXsEHPedYABK73SQaR",
-      "balance": 254542,
+      "balance": 294228,
       "membership_expire_on": 1704655371,
       "next_cert_issuable_on": 1674267471,
       "certs_received": {
@@ -104508,17 +106737,14 @@
     "RemiLG": {
       "index": 5655,
       "owner_key": "ABv2wiwuYjYM5jk2zQNydTuLC8ZyDBHaq6sVURTrKR2e",
-      "balance": 732906,
-      "membership_expire_on": 1695562309,
+      "balance": 744654,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1643639638,
       "certs_received": {
         "Katiecat": 1756344798,
-        "Zephy": 1694482022,
         "DO58": 1750367939,
         "Beata": 1749432787,
-        "Alicia05": 1756344798,
-        "SolennLG": 1694482385,
-        "ChristineWilloth26": 1694482385
+        "Alicia05": 1756344798
       }
     },
     "DanielleVallette": {
@@ -104540,7 +106766,7 @@
     "Allan": {
       "index": 9131,
       "owner_key": "AC3CDAzTxS9tFSxh5AMuDp57PFZq4sR7caH3LkQaeMwP",
-      "balance": 549173,
+      "balance": 588859,
       "membership_expire_on": 1723870192,
       "next_cert_issuable_on": 1664432961,
       "certs_received": {
@@ -104556,7 +106782,7 @@
     "Albi": {
       "index": 9365,
       "owner_key": "AC6cMrL3FqJeJLAyHmsNxCKrZw2ef5h95EsL2zuz6KU5",
-      "balance": 184369,
+      "balance": 224055,
       "membership_expire_on": 1724522667,
       "next_cert_issuable_on": 1679406119,
       "certs_received": {
@@ -104589,7 +106815,7 @@
     "IsabelleMi": {
       "index": 7010,
       "owner_key": "ACADRcM8Udeuz6o7Zog5auwJv2paST4r8QW14QYrBfH2",
-      "balance": 201665,
+      "balance": 241351,
       "membership_expire_on": 1702311255,
       "next_cert_issuable_on": 1686149142,
       "certs_received": {
@@ -104604,9 +106830,9 @@
     "Dum": {
       "index": 12002,
       "owner_key": "ACMHGWEFeh2CNxNAu96y371QFBd2vsBBMdZH3wCFmxPM",
-      "balance": 160879,
+      "balance": 190065,
       "membership_expire_on": 1709825280,
-      "next_cert_issuable_on": 1690004173,
+      "next_cert_issuable_on": 1696227621,
       "certs_received": {
         "Geronimo12": 1741644409,
         "Zbilo": 1752769089,
@@ -104615,6 +106841,7 @@
         "Frankie": 1741413263,
         "domire": 1752987339,
         "DameYouli": 1744603655,
+        "Lilou12": 1758257100,
         "lecoyote": 1741413610,
         "VivienProuvot": 1745443978,
         "SylvainDeCadix": 1751866332,
@@ -104625,9 +106852,9 @@
     "marieor": {
       "index": 12767,
       "owner_key": "ACUueYAxXV5FWCQjFN91qmjMJeXkRZLPoFeD3Duqtuv7",
-      "balance": 220632,
+      "balance": 285318,
       "membership_expire_on": 1715866980,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695377391,
       "certs_received": {
         "Plantalarose": 1749270852,
         "marika8": 1746752411,
@@ -104643,13 +106870,13 @@
     "MarieG": {
       "index": 6249,
       "owner_key": "ACZpRrDKZC47FvEGRL2dP1GECNT6g1hoYntsM16y5zyC",
-      "balance": 695112,
+      "balance": 734798,
       "membership_expire_on": 1701809766,
-      "next_cert_issuable_on": 1665925433,
+      "next_cert_issuable_on": 1694399944,
       "certs_received": {
         "Orchideedu10": 1701220680,
         "NathalieB": 1701230469,
-        "Eric": 1701217449,
+        "Eric": 1757361783,
         "Giny": 1705565909,
         "pi_ramide": 1715917810,
         "Brigitte": 1701231315,
@@ -104659,7 +106886,7 @@
     "Tavartalvert": {
       "index": 11933,
       "owner_key": "ACa4vuQet8eQ2Qoyhz2W4iBfYd4jyCxoMVurkmSVVmVn",
-      "balance": 294233,
+      "balance": 401219,
       "membership_expire_on": 1709582860,
       "next_cert_issuable_on": 1690461100,
       "certs_received": {
@@ -104698,11 +106925,12 @@
     "dom0707": {
       "index": 8848,
       "owner_key": "ACodffaSMbLjaGaxzN9hYcygkKRbKvvN9YPimgAS7nry",
-      "balance": 387034,
+      "balance": 426720,
       "membership_expire_on": 1720898450,
       "next_cert_issuable_on": 1689472606,
       "certs_received": {
         "chris07": 1720020661,
+        "HelloSunshine": 1759273294,
         "Nounouche": 1716586864,
         "Nicolas9407": 1716504349,
         "Evelpidesa": 1752698888,
@@ -104725,7 +106953,7 @@
     "Tchibo": {
       "index": 12520,
       "owner_key": "ADC6MD2U5DMSPg9C91VfQBtUN7PEu2FF6pQiH8qGy9Ko",
-      "balance": 139228,
+      "balance": 178914,
       "membership_expire_on": 1714561838,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -104740,7 +106968,7 @@
     "RIKfontaine": {
       "index": 7676,
       "owner_key": "ADCGA8hgZpb9eHVtcuhGyfbo9h5QXpXWsa44Evg2XpxM",
-      "balance": 526132,
+      "balance": 565818,
       "membership_expire_on": 1706719242,
       "next_cert_issuable_on": 1675233642,
       "certs_received": {
@@ -104779,11 +107007,11 @@
     "Swann": {
       "index": 5789,
       "owner_key": "ADTSkHQUed5aQsqfyTq7ScTco2uxFVuE3THHXh8FP3G7",
-      "balance": 730051,
+      "balance": 769737,
       "membership_expire_on": 1723395463,
       "next_cert_issuable_on": 1686698492,
       "certs_received": {
-        "Foxy": 1696523173,
+        "Foxy": 1758235348,
         "Zoulya": 1711951987,
         "Julieb": 1696793918,
         "SophieKassabian": 1696831498,
@@ -104793,7 +107021,6 @@
         "OlivierDubigeon": 1749325534,
         "Mathyce": 1748370799,
         "Enjolras14": 1702681090,
-        "Louloukipet": 1696674721,
         "AnneT": 1696790163
       }
     },
@@ -104822,7 +107049,7 @@
     "aurelie": {
       "index": 511,
       "owner_key": "ADrPbAFurRB5MTkGiCvwq9k5RtUDtHPh1VhGYWEBzCTW",
-      "balance": 1861555,
+      "balance": 1901241,
       "membership_expire_on": 1722794635,
       "next_cert_issuable_on": 1662000081,
       "certs_received": {
@@ -104844,7 +107071,7 @@
     "Titem": {
       "index": 4874,
       "owner_key": "AE2mwC1WF58yidJpyrXWhjJygbid9HXgwWGDiihDWNfe",
-      "balance": 560375,
+      "balance": 570375,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1641471275,
       "certs_received": {
@@ -104857,7 +107084,7 @@
     "Brijt04": {
       "index": 8339,
       "owner_key": "AE5nAYcpeuuLYs3HqKtuochnakCQoBfLUpCmQx4asZ6F",
-      "balance": 547103,
+      "balance": 686789,
       "membership_expire_on": 1710452964,
       "next_cert_issuable_on": 1690817288,
       "certs_received": {
@@ -104877,7 +107104,7 @@
     "Stephywa": {
       "index": 11889,
       "owner_key": "AE68j89ymD6na37rHRLKXxrTGQfJEg99n3SF8FHsm1Lm",
-      "balance": 189769,
+      "balance": 229455,
       "membership_expire_on": 1709579470,
       "next_cert_issuable_on": 1682398861,
       "certs_received": {
@@ -104914,7 +107141,7 @@
     "Linh21": {
       "index": 12115,
       "owner_key": "AED2vPtS9AEYzp3ST1b7AjKqPvohmubPiTSf8r6cuFWP",
-      "balance": 246892,
+      "balance": 286578,
       "membership_expire_on": 1709913440,
       "next_cert_issuable_on": 1684345851,
       "certs_received": {
@@ -104931,8 +107158,8 @@
     "JMAJAEL": {
       "index": 8411,
       "owner_key": "AEEfKPvtShxLHr9Mtc7JWwTRGeKqCra7v6Py5jss6gYH",
-      "balance": 352246,
-      "membership_expire_on": 0,
+      "balance": 386592,
+      "membership_expire_on": 1725480746,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Kristen": 1715219919,
@@ -104946,7 +107173,7 @@
     "ChrisLA": {
       "index": 11318,
       "owner_key": "AEFjFyiN3LmsR5NExoz2WDp4jenjp8pPdPjgZPTXPXsJ",
-      "balance": 255847,
+      "balance": 295533,
       "membership_expire_on": 1704916597,
       "next_cert_issuable_on": 1682392408,
       "certs_received": {
@@ -104961,9 +107188,9 @@
     "JuanLu": {
       "index": 3670,
       "owner_key": "AEJGHgTsGVXScuo7F8hTdRrWDHY3GkRSpVWGPERNpvez",
-      "balance": 1288719,
+      "balance": 1333065,
       "membership_expire_on": 1705813779,
-      "next_cert_issuable_on": 1693363262,
+      "next_cert_issuable_on": 1696070992,
       "certs_received": {
         "Sev": 1716416828,
         "Yannis": 1710217307,
@@ -104977,15 +107204,15 @@
         "CorinneCoco": 1700881809,
         "Did-yeah": 1727885131,
         "FloP": 1707006745,
-        "MatHC": 1700883345
+        "MatHC": 1756604584
       }
     },
     "Agroarmonia": {
       "index": 10212,
       "owner_key": "AEXecJeXKLb8xJEz8HHgi6WyrqFHvtb6yEJYrGixqC8j",
-      "balance": 243326,
-      "membership_expire_on": 1698767145,
-      "next_cert_issuable_on": 1672666275,
+      "balance": 197012,
+      "membership_expire_on": 1726148275,
+      "next_cert_issuable_on": 1694667025,
       "certs_received": {
         "Estela": 1730585586,
         "Ainat255": 1730453660,
@@ -105003,7 +107230,7 @@
     "Geronimo": {
       "index": 6392,
       "owner_key": "AEYj1ZEyaT3XM21tmjgUzuMhkdVSLNgttvPsAss4KrbR",
-      "balance": 624195,
+      "balance": 663881,
       "membership_expire_on": 1701946883,
       "next_cert_issuable_on": 1656374502,
       "certs_received": {
@@ -105017,7 +107244,7 @@
     "Dada313": {
       "index": 9913,
       "owner_key": "AEa3wgXEyMj55QrPN36YbxdinxeYuozLGk62gzN2cQkL",
-      "balance": 319465,
+      "balance": 359151,
       "membership_expire_on": 1721756613,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
@@ -105034,9 +107261,9 @@
     "VeroniqueTouron": {
       "index": 12755,
       "owner_key": "AEd5D5agamYZc6G4G161wuFDmRE5gwkkc8usBDFetjmh",
-      "balance": 102528,
+      "balance": 142214,
       "membership_expire_on": 1715888791,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694529508,
       "certs_received": {
         "absalon2": 1755362808,
         "JMF": 1747587677,
@@ -105058,7 +107285,7 @@
     "AliceWatsu": {
       "index": 1774,
       "owner_key": "AEtKPLiuhayQYijQzRGAhAKaRBmfxGnutFURWpXEDHXy",
-      "balance": 934340,
+      "balance": 974026,
       "membership_expire_on": 1708953838,
       "next_cert_issuable_on": 1680425634,
       "certs_received": {
@@ -105077,9 +107304,9 @@
     "ClauTie26": {
       "index": 6927,
       "owner_key": "AF8XkStUuY8Wo4JMnbzTJgftugVP7D6LDKp9AKijZAQE",
-      "balance": 912179,
-      "membership_expire_on": 1701310155,
-      "next_cert_issuable_on": 1693184365,
+      "balance": 1044865,
+      "membership_expire_on": 1727715694,
+      "next_cert_issuable_on": 1696232455,
       "certs_received": {
         "Katiecat": 1746314910,
         "chris07": 1719606100,
@@ -105097,6 +107324,7 @@
         "Kheoppe": 1741198775,
         "Michellecuyer26": 1721492700,
         "Beacouleurs": 1707123683,
+        "Ori2604": 1756804095,
         "Mireio": 1755478864,
         "martine26": 1721503478,
         "baptisttou": 1706329772,
@@ -105118,9 +107346,9 @@
     "edubotaoo": {
       "index": 9938,
       "owner_key": "AFA9hojxkkKGR14VaE6mEqSvhDQsM2NLp7edNaw2TBWM",
-      "balance": 74279,
+      "balance": 137065,
       "membership_expire_on": 1723629457,
-      "next_cert_issuable_on": 1692143857,
+      "next_cert_issuable_on": 1696408005,
       "certs_received": {
         "CrisBB": 1747081285,
         "Alfonso": 1728928247,
@@ -105141,13 +107369,16 @@
         "mariabiodanza": 1733616101,
         "nussyna": 1751240535,
         "JoanaGomez": 1756011612,
+        "MaestroJorge": 1758933146,
         "JUAN51": 1728712877,
         "Roberto_Oraa_79_DDYG": 1733032932,
         "Orakulo": 1737514215,
         "IRA": 1746933382,
+        "Noxtan": 1756956788,
         "Enoc": 1747593019,
         "ElenaMavida": 1754991365,
         "OrganikSolution": 1747899939,
+        "josecristobalsaludholistica": 1758336452,
         "EduZapping": 1728982821,
         "AndresXaudi": 1754081665,
         "lachispis": 1749490737
@@ -105156,9 +107387,9 @@
     "NathalieSF971": {
       "index": 4117,
       "owner_key": "AFJn44WLHkRRuxGwnhbRKf2C7tey3qcBUoEhYPE8PPHS",
-      "balance": 868466,
+      "balance": 864152,
       "membership_expire_on": 1720415485,
-      "next_cert_issuable_on": 1692542595,
+      "next_cert_issuable_on": 1696164138,
       "certs_received": {
         "Stef38": 1722111637,
         "MaryMarie": 1710376907,
@@ -105187,16 +107418,16 @@
         "ninie-1974": 1733336832,
         "o2gwada": 1728254936,
         "Mariedelourdes": 1714178225,
-        "Corinnedeshaies": 1700039884,
+        "Corinnedeshaies": 1758001129,
         "Maurice971": 1710192520
       }
     },
     "Val767": {
       "index": 4885,
       "owner_key": "AFLZwveYfsWpDWGyDGUFyWubpFBZVbwMU6Rk7EQLzeZv",
-      "balance": 584339,
+      "balance": 554025,
       "membership_expire_on": 1710089787,
-      "next_cert_issuable_on": 1687612967,
+      "next_cert_issuable_on": 1694847276,
       "certs_received": {
         "fdrubigny": 1741220935,
         "Kaya971Wolf": 1739936802,
@@ -105208,7 +107439,7 @@
     "MHL": {
       "index": 3321,
       "owner_key": "AFTGLJESPf15LPed2uV5Qj5tYsndYKfkRNZuEGLY6eqL",
-      "balance": 1223355,
+      "balance": 1164887,
       "membership_expire_on": 1701777560,
       "next_cert_issuable_on": 1688088051,
       "certs_received": {
@@ -105233,12 +107464,27 @@
         "GuillaumeCapsowl": 1702591635
       }
     },
+    "Elleetait1x": {
+      "index": 13636,
+      "owner_key": "AFYg76WcG9wKVzT42LiXgLNwUdnArcbDL9CZdpR4WA6q",
+      "balance": 32870,
+      "membership_expire_on": 1726958750,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Polo": 1758573176,
+        "jerometiny": 1758572768,
+        "dblg06": 1758579993,
+        "HeleneDelebarre": 1758574350,
+        "Filou": 1758572359,
+        "Cleo59": 1758570368
+      }
+    },
     "Lauriecordova": {
       "index": 12381,
       "owner_key": "AFbqkU5VpDo1s6JBCmKRi23EJatfF6JcSdQmTm6raWVJ",
-      "balance": 156980,
+      "balance": 196666,
       "membership_expire_on": 1709599439,
-      "next_cert_issuable_on": 1682834730,
+      "next_cert_issuable_on": 1695284227,
       "certs_received": {
         "CaroleBroutin": 1741549215,
         "Majoli34": 1741536078,
@@ -105253,7 +107499,7 @@
     "Kuru": {
       "index": 10980,
       "owner_key": "AFiBqwkFhdo1EhpnC4F5urUdz5AQjsBPf1r21PnvzvHM",
-      "balance": 475953,
+      "balance": 515639,
       "membership_expire_on": 1703342104,
       "next_cert_issuable_on": 1688113749,
       "certs_received": {
@@ -105272,7 +107518,7 @@
     "Nikos": {
       "index": 3209,
       "owner_key": "AFkAwZzM6i5imTMEyHL4xEJ6p9TNdMbYMyGNEzM1aL6B",
-      "balance": 57397,
+      "balance": 97083,
       "membership_expire_on": 1701748842,
       "next_cert_issuable_on": 1691549410,
       "certs_received": {
@@ -105284,16 +107530,14 @@
         "Attilax": 1704583980,
         "Fara17": 1711584668,
         "ThibaudLibre": 1712169872,
-        "Julie": 1695855266,
         "Houriadeparissud": 1745913365,
-        "Alexis": 1699560800,
-        "Sebeq33": 1695861924
+        "Alexis": 1699560800
       }
     },
     "ESKANT": {
       "index": 10639,
       "owner_key": "AFpanZ6sTMYXMvpZWoxxQBHTQ1a9NoQeHeBx1NiGwjV2",
-      "balance": 324515,
+      "balance": 364201,
       "membership_expire_on": 1700359915,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -105317,8 +107561,8 @@
     "aufildeLAU": {
       "index": 9944,
       "owner_key": "AFspVLcof7oJ4AQR5cpnBz3fsg1DepRCuLMYT5uUUe1t",
-      "balance": 363411,
-      "membership_expire_on": 1697288761,
+      "balance": 383098,
+      "membership_expire_on": 1727438456,
       "next_cert_issuable_on": 1692627718,
       "certs_received": {
         "IlonadeHaas": 1728878231,
@@ -105333,7 +107577,7 @@
     "Didi": {
       "index": 13194,
       "owner_key": "AFtffCtK17Q8WVRB1UCopLDjsd9w2GLiD8tF9PzfEi53",
-      "balance": 18924,
+      "balance": 41810,
       "membership_expire_on": 1720035956,
       "next_cert_issuable_on": 1692411914,
       "certs_received": {
@@ -105347,7 +107591,7 @@
     "ElenaMoshkina": {
       "index": 814,
       "owner_key": "AFuZdwvdcjC22fP2nDmrUAVxNrPefpw1mK6VdSqFcj9q",
-      "balance": 271953,
+      "balance": 311639,
       "membership_expire_on": 1698793515,
       "next_cert_issuable_on": 1686533427,
       "certs_received": {
@@ -105381,29 +107625,25 @@
     "Dixebral": {
       "index": 3976,
       "owner_key": "AFv1D5xA7FCdHCTA1bqfQ3PWvwEM16Gw67QJ37obGnsv",
-      "balance": 163537,
+      "balance": 171623,
       "membership_expire_on": 1709311883,
-      "next_cert_issuable_on": 1691412922,
+      "next_cert_issuable_on": 1696591977,
       "certs_received": {
         "Cholo": 1734312183,
-        "Nicolas": 1694835757,
-        "arbocenc": 1694590406,
-        "carmela": 1694680271,
+        "Ambar": 1757362516,
         "celoman": 1696749959,
         "Wynfyd": 1735438457,
         "AlvaroFernandez": 1735424993,
         "riky": 1733942609,
         "unica": 1750461995,
-        "sparkle765": 1693869018,
-        "sheveck": 1694681044,
         "Lurtxu": 1709500132,
         "Chus": 1738198455,
         "Josepeuta": 1711249260,
         "vjrj": 1749406061,
-        "JuanCapitan": 1695273236,
         "isa": 1746820419,
         "migueleon": 1751685050,
         "Leia": 1732209463,
+        "nussyna": 1757012000,
         "llanero": 1711090100,
         "Thito": 1735528118,
         "rossinyol": 1703469085,
@@ -105412,18 +107652,19 @@
         "CristinaAbella": 1731977160,
         "tereseta": 1728593380,
         "Koldo": 1698184759,
+        "DOMIASTRO": 1756789510,
         "Marianfs": 1744506534,
         "Alipio": 1752042692,
-        "SandraHeleno": 1695704015,
         "Thais": 1752252224,
         "alberto_wabisabi": 1729708429,
+        "AndresXaudi": 1758420771,
         "Bosqui": 1733274221
       }
     },
     "Tek4": {
       "index": 12268,
       "owner_key": "AFwvEXDV3rbfubjxu1evKuvNyiBBaRg3gFsgMGaSpfKf",
-      "balance": 207928,
+      "balance": 247614,
       "membership_expire_on": 1712418382,
       "next_cert_issuable_on": 1681697238,
       "certs_received": {
@@ -105464,7 +107705,7 @@
     "JyCroisIntensement": {
       "index": 10084,
       "owner_key": "AGEVFjCmGpnrehfU4gWBqjDPfbvQh3DqMrZpH7ksa7JE",
-      "balance": 310298,
+      "balance": 349984,
       "membership_expire_on": 1698170750,
       "next_cert_issuable_on": 1692152960,
       "certs_received": {
@@ -105483,7 +107724,7 @@
     "Krrisse": {
       "index": 3263,
       "owner_key": "AGHGw8ctshgBJ8DN13gjFf3LeNoBpTg3c2mMpFJqok1",
-      "balance": 791384,
+      "balance": 831070,
       "membership_expire_on": 1723303827,
       "next_cert_issuable_on": 1690784679,
       "certs_received": {
@@ -105506,10 +107747,25 @@
         "Freco": 1733293812
       }
     },
+    "Stemalle": {
+      "index": 13710,
+      "owner_key": "AGQF7iv4mLjqBXQ4F8j8ddMa9he9qgHUA4e2iEgbtmWU",
+      "balance": 7468,
+      "membership_expire_on": 1727470858,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "issandrol": 1759307275,
+        "JuanLu": 1759114192,
+        "Did-yeah": 1759260629,
+        "FloP": 1759100788,
+        "AuFilDuTemps": 1759129237,
+        "Fleur": 1759129237
+      }
+    },
     "Ramiane": {
       "index": 8608,
       "owner_key": "AGXyJqEaZBFAieKxGYGVepYBvD1iBRFHgA4Rf3PgidoH",
-      "balance": 496320,
+      "balance": 509806,
       "membership_expire_on": 1714356712,
       "next_cert_issuable_on": 1689868754,
       "certs_received": {
@@ -105526,13 +107782,14 @@
     "Sancho": {
       "index": 12849,
       "owner_key": "AGaRTWK8MLEx6fWxS7yEv3kHFMwqrbQjdFTvtLuK1R4X",
-      "balance": 111136,
+      "balance": 150822,
       "membership_expire_on": 1717205235,
       "next_cert_issuable_on": 1690187492,
       "certs_received": {
         "devihope": 1749247265,
         "Maksim": 1749247674,
         "Arina": 1749247471,
+        "catarinajunas": 1757709026,
         "OlgaO": 1749266861,
         "Alessandra": 1749359975
       }
@@ -105540,7 +107797,7 @@
     "AgnesDallaVijaya": {
       "index": 12862,
       "owner_key": "AGnBuBWf1vP9fUzwjg9ey5GHWDwDxqn3ExHQUVCycEF",
-      "balance": 115008,
+      "balance": 151694,
       "membership_expire_on": 1715174394,
       "next_cert_issuable_on": 1693477715,
       "certs_received": {
@@ -105556,7 +107813,7 @@
     "sourire07": {
       "index": 11900,
       "owner_key": "AGnahgtCexfpxVDSjCLjEQR2AgGp2qJggDYLUVXXK83A",
-      "balance": 198910,
+      "balance": 238596,
       "membership_expire_on": 1709741680,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -105578,8 +107835,8 @@
     "jonquille73": {
       "index": 9437,
       "owner_key": "AH76NvfAxFfW6yWcumfn8r5R42ZhXTmuecerC7h9wuid",
-      "balance": 383144,
-      "membership_expire_on": 1694021845,
+      "balance": 415354,
+      "membership_expire_on": 1726239167,
       "next_cert_issuable_on": 1673326170,
       "certs_received": {
         "veronaturo73": 1725600672,
@@ -105593,8 +107850,8 @@
     "ELISKA": {
       "index": 9450,
       "owner_key": "AH8HcVeZUntqboZa5A3P1wJeB2wNnbS4WG4Fx5QMhZFq",
-      "balance": 648993,
-      "membership_expire_on": 1694095112,
+      "balance": 613327,
+      "membership_expire_on": 1727349878,
       "next_cert_issuable_on": 1683278097,
       "certs_received": {
         "rockwater": 1725655740,
@@ -105613,7 +107870,7 @@
     "Solutech3D": {
       "index": 7917,
       "owner_key": "AH8pgXXVJdLxGUM5SMPfWMFzLfwuSwKrkuf4p1qaBjTh",
-      "balance": 525012,
+      "balance": 564698,
       "membership_expire_on": 1714183772,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -105660,9 +107917,9 @@
     "JulieBen": {
       "index": 6048,
       "owner_key": "AHQzNLTdNNdyHXeMf6CN9n2pPX8f2NBXpVGPr447YUgq",
-      "balance": 521070,
-      "membership_expire_on": 1699831036,
-      "next_cert_issuable_on": 1668443909,
+      "balance": 560756,
+      "membership_expire_on": 1726773011,
+      "next_cert_issuable_on": 1695287411,
       "certs_received": {
         "ChristianSteCroix": 1719347975,
         "karjine": 1719373153,
@@ -105673,7 +107930,7 @@
         "lelefontes": 1699734736,
         "GaelleHerbert": 1703021643,
         "Nhelou22": 1718871091,
-        "ofontes": 1699319472,
+        "ofontes": 1755549350,
         "Passiflore": 1699414068
       }
     },
@@ -105708,9 +107965,9 @@
     "cpriou11": {
       "index": 10677,
       "owner_key": "AHjgWwEs6TqAJbXvEE76D9UopHGTWJmGnHGufS6FbpRJ",
-      "balance": 236541,
-      "membership_expire_on": 1701171034,
-      "next_cert_issuable_on": 1691135155,
+      "balance": 253727,
+      "membership_expire_on": 1728162258,
+      "next_cert_issuable_on": 1694503512,
       "certs_received": {
         "Crystal": 1732732301,
         "CValentine": 1733281781,
@@ -105726,6 +107983,7 @@
         "Diessanne": 1733308193,
         "GeraldS": 1738648051,
         "VeroniqueMaessen": 1741492272,
+        "TheoVS": 1756026070,
         "CecileBeaulieu": 1749795167,
         "Leticia": 1740515595,
         "SergeUme": 1742321501,
@@ -105738,7 +107996,7 @@
     "jakobino": {
       "index": 7547,
       "owner_key": "AHnLrm27akrYMypcRNH7yWfzSqrDitvh4h1F4jRd7tW8",
-      "balance": 559347,
+      "balance": 599033,
       "membership_expire_on": 1721307974,
       "next_cert_issuable_on": 1674700461,
       "certs_received": {
@@ -105767,7 +108025,7 @@
     "Nadium": {
       "index": 7418,
       "owner_key": "AHzVdBhft28MBcXz5UDNgK8NNdyQtBV35w8GuEkAGepy",
-      "balance": 560006,
+      "balance": 599692,
       "membership_expire_on": 1705174114,
       "next_cert_issuable_on": 1652327178,
       "certs_received": {
@@ -105782,7 +108040,7 @@
     "EveB": {
       "index": 6793,
       "owner_key": "AJ9qLwafEUxc2NZ4NjgyC6fN7shrsk6QU3NLxsiFvHub",
-      "balance": 529677,
+      "balance": 569364,
       "membership_expire_on": 1708381769,
       "next_cert_issuable_on": 1656059270,
       "certs_received": {
@@ -105798,13 +108056,14 @@
     "Rosalie": {
       "index": 9159,
       "owner_key": "AJBF7tfDFdCgUksdgzRA2etJ52Yi8dwXfAc4qXhgZN1L",
-      "balance": 382001,
+      "balance": 421687,
       "membership_expire_on": 1723122596,
       "next_cert_issuable_on": 1685858431,
       "certs_received": {
         "Nanou59": 1730869497,
         "MarieL": 1723134434,
         "SilviaM": 1727837418,
+        "Nina38": 1756962727,
         "Denis": 1723103261,
         "CatherineWilkin": 1744157292,
         "Lolottethered": 1744068683,
@@ -105820,7 +108079,7 @@
     "Ttbs": {
       "index": 7534,
       "owner_key": "AJKnTfQMFBZzsek2eXwPKvnWZLUd4LHWhTimGq6USE9n",
-      "balance": 450642,
+      "balance": 430328,
       "membership_expire_on": 1708215510,
       "next_cert_issuable_on": 1663842084,
       "certs_received": {
@@ -105843,11 +108102,13 @@
     "Stef": {
       "index": 2436,
       "owner_key": "AJPDZD5ZSjR2vquEniTqtnLwFVpDQCr71wUGVDPsiK5e",
-      "balance": 618104,
+      "balance": 657790,
       "membership_expire_on": 1700220187,
       "next_cert_issuable_on": 1689563772,
       "certs_received": {
+        "fabiolino": 1757462065,
         "Mymy": 1736798272,
+        "diletta": 1757463723,
         "MikaYeel": 1708406443,
         "Mhjo": 1752482155,
         "Lapprentissage": 1748148015,
@@ -105861,9 +108122,9 @@
     "Sam": {
       "index": 12415,
       "owner_key": "AJYrruf7jRsmrdtgnZYE3N1YdNZsYB9zmdATbiPMCqnA",
-      "balance": 255387,
+      "balance": 351573,
       "membership_expire_on": 1713622449,
-      "next_cert_issuable_on": 1687765579,
+      "next_cert_issuable_on": 1696231660,
       "certs_received": {
         "MicheleVanLil": 1745384063,
         "DomVe": 1745270576,
@@ -105878,7 +108139,7 @@
     "CalineR2": {
       "index": 8430,
       "owner_key": "AJZGtqf288xPurnSLGwcL6gBKJzUKwQuUczF6248cDcY",
-      "balance": 304732,
+      "balance": 344418,
       "membership_expire_on": 1715263553,
       "next_cert_issuable_on": 1689596304,
       "certs_received": {
@@ -105908,13 +108169,14 @@
     "LeireArias": {
       "index": 13393,
       "owner_key": "AJc2NdVzwWuCbNiJNfU5Ar4KYydd2dhMCzrLR6CwuqDp",
-      "balance": 23884,
+      "balance": 90670,
       "membership_expire_on": 1723906168,
-      "next_cert_issuable_on": 1693020537,
+      "next_cert_issuable_on": 1696068363,
       "certs_received": {
         "omm": 1755475902,
         "EstefaniaSainz": 1755474333,
         "IbonNakin": 1755471866,
+        "NancyC": 1757572708,
         "Roberto_Oraa_79_DDYG": 1755477546,
         "Jhonnier": 1755467951,
         "LuFortes": 1755501719,
@@ -105932,7 +108194,7 @@
     "AnneChimchirian": {
       "index": 8684,
       "owner_key": "AJfE5XUXxGVH1tBFTU3wQMHK1rLHJreyqjdsJxEo3yBo",
-      "balance": 633472,
+      "balance": 673159,
       "membership_expire_on": 1719339881,
       "next_cert_issuable_on": 1679570091,
       "certs_received": {
@@ -105951,7 +108213,7 @@
     "NewMoon": {
       "index": 6542,
       "owner_key": "AJhgD97i6J8SFmzXYzWi19Y649dHYzu86CnKqiTU4Nwy",
-      "balance": 1151438,
+      "balance": 1191124,
       "membership_expire_on": 1699636596,
       "next_cert_issuable_on": 1643642422,
       "certs_received": {
@@ -105965,7 +108227,7 @@
     "ACJune81": {
       "index": 10585,
       "owner_key": "AJoqSq5vrz4VCMjWQervQk6C6Swfu3VwMpmYDXqQA4Xw",
-      "balance": 332692,
+      "balance": 372378,
       "membership_expire_on": 1701098654,
       "next_cert_issuable_on": 1677121366,
       "certs_received": {
@@ -105985,7 +108247,7 @@
     "Amaletta": {
       "index": 10777,
       "owner_key": "AJv5iNYp8Zhn9PmNcEjpguTmcaHkVph4m3UccepMpPAN",
-      "balance": 312984,
+      "balance": 352670,
       "membership_expire_on": 1701311838,
       "next_cert_issuable_on": 1678550169,
       "certs_received": {
@@ -106011,11 +108273,13 @@
     "CelineRenou": {
       "index": 9011,
       "owner_key": "AJvgjPJnHJ5q3tFYxKcPQTpAP4Eq1LU3N1PtbARSiPw6",
-      "balance": 418962,
+      "balance": 451548,
       "membership_expire_on": 1716850285,
-      "next_cert_issuable_on": 1692515827,
+      "next_cert_issuable_on": 1696232837,
       "certs_received": {
         "Eleonora": 1721090886,
+        "Sev": 1759445861,
+        "NathMim": 1756705024,
         "MarieOuf": 1721104350,
         "CaroJans": 1752544822,
         "Domij": 1721099180,
@@ -106024,6 +108288,9 @@
         "SolangeAIME": 1746302033,
         "Ofildevie": 1752531454,
         "NicolasCanzian": 1721104350,
+        "Chanchan": 1759276037,
+        "Nyttliv": 1756654515,
+        "Samsara": 1759276037,
         "Zoriko-J": 1744761832,
         "KarineKala": 1750728951,
         "Myriam1912": 1721154846,
@@ -106034,9 +108301,9 @@
     "pbienfait": {
       "index": 3779,
       "owner_key": "AJxczS3woyRiyXLQTxpZTA3VzsMPeNRTUPUjYL8D9FCB",
-      "balance": 519951,
+      "balance": 455637,
       "membership_expire_on": 1704294316,
-      "next_cert_issuable_on": 1687530724,
+      "next_cert_issuable_on": 1696647317,
       "certs_received": {
         "Flocon": 1722033146,
         "Chris08": 1712962187,
@@ -106051,13 +108318,13 @@
         "CecileGayet": 1699668364,
         "CelineB": 1723709327,
         "CorinneBaro": 1712899382,
+        "GOPA": 1759358438,
         "ALFONSILaurent": 1699661058,
         "JeanTibou": 1729055768,
         "Jacklynn": 1741457848,
         "EmmaSol": 1727823965,
         "SevCarbone": 1699686666,
         "sofiann": 1718416923,
-        "LaurentM": 1694068614,
         "FlorentGuiral": 1716262213
       }
     },
@@ -106112,7 +108379,6 @@
       "certs_received": {
         "vit": 1710911817,
         "Fiotinho": 1711412582,
-        "TimeoDG": 1693875530,
         "DelphineBougie": 1710912375
       }
     },
@@ -106129,9 +108395,9 @@
     "Brahmaya": {
       "index": 4127,
       "owner_key": "AKEhzJ9fZjSNwePZBsS2UNujVgqJr6dFMmh9qZBEzEPp",
-      "balance": 75638,
+      "balance": 106836,
       "membership_expire_on": 1712343483,
-      "next_cert_issuable_on": 1691947430,
+      "next_cert_issuable_on": 1696230094,
       "certs_received": {
         "kapis": 1735969851,
         "Truca": 1752193992,
@@ -106145,20 +108411,18 @@
         "majo": 1739655650,
         "celoman": 1696749959,
         "BlancaFlow": 1699685312,
-        "namagra": 1695412602,
         "Vivakvo": 1749452808,
         "LaCasaGran": 1728373164,
         "sheveck": 1748233544,
         "Lurtxu": 1709952283,
         "Sergio": 1736505318,
-        "Libertad22": 1698390128,
+        "Libertad22": 1756506282,
         "Josepeuta": 1710978796,
         "MeliCP": 1719021713,
         "Annina": 1748198986,
         "jugezu": 1713937195,
         "catalinons": 1734848534,
         "Mariacrea": 1754990121,
-        "JuanCapitan": 1695273236,
         "RachelGreen": 1726089170,
         "KimDS": 1725845270,
         "cocoloco": 1742108926,
@@ -106166,8 +108430,8 @@
         "Francina": 1734831804,
         "Dixebral": 1727829498,
         "SoulClayIbiza": 1739679883,
-        "Lotus17": 1693938748,
         "marijou": 1714196206,
+        "AmoryGratitud": 1759721546,
         "YOSOYLUZ": 1735455394,
         "MaiteBel": 1755074833,
         "criscoutinho": 1741238710,
@@ -106204,9 +108468,9 @@
     "JNR25": {
       "index": 12227,
       "owner_key": "AKLig72aMaTFsBBQFZex99c1uJmLPmNVn6jGDr1LhjDc",
-      "balance": 117532,
+      "balance": 137218,
       "membership_expire_on": 1712097067,
-      "next_cert_issuable_on": 1681630327,
+      "next_cert_issuable_on": 1695992823,
       "certs_received": {
         "vibes": 1743667995,
         "DCat": 1743718710,
@@ -106215,10 +108479,30 @@
         "Remi70290": 1743658813
       }
     },
+    "Steph974": {
+      "index": 13512,
+      "owner_key": "AKSX11FwpaFHgGE6uYUh22qnVqzPeYzWPAf371d4itLB",
+      "balance": 768036,
+      "membership_expire_on": 1724186144,
+      "next_cert_issuable_on": 1696321371,
+      "certs_received": {
+        "SachaCirque": 1757572708,
+        "hibiscus11": 1757017631,
+        "Jaycee": 1757110943,
+        "Moineau": 1759106523,
+        "MelodieDK": 1757094585,
+        "Sanka": 1756944495,
+        "RegnierLefur45": 1759344308,
+        "Mozart85": 1759046480,
+        "Valoo": 1757996707,
+        "schmollita": 1756784999,
+        "Cagnol85": 1758659001
+      }
+    },
     "Fanfan9": {
       "index": 11577,
       "owner_key": "AKU8X913foBnjXq33RD4b4TUHDYmpyBvBKZYTs4HKdSt",
-      "balance": 196067,
+      "balance": 235753,
       "membership_expire_on": 1707670972,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -106234,7 +108518,7 @@
     "Xianedolier": {
       "index": 11186,
       "owner_key": "AKUYBfjn2mCxto6joZ4VM7J46pM5AXRhyeYpEkS1grHz",
-      "balance": 195455,
+      "balance": 135141,
       "membership_expire_on": 1702570601,
       "next_cert_issuable_on": 1674827867,
       "certs_received": {
@@ -106256,8 +108540,8 @@
     "Thuy": {
       "index": 667,
       "owner_key": "AKmkSHESTgd7r4H6oSwf3DewGJqyxRq5U1YJrFjUCePT",
-      "balance": 1153442,
-      "membership_expire_on": 1696562667,
+      "balance": 1190972,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1674291737,
       "certs_received": {
         "ZazieND": 1728119249,
@@ -106271,7 +108555,7 @@
     "Rlov": {
       "index": 4677,
       "owner_key": "AKpN89ZZRZ8MCSkBSnV22ahVhoEGT4ieFPiPXbFBD7XN",
-      "balance": 770878,
+      "balance": 810564,
       "membership_expire_on": 1703951028,
       "next_cert_issuable_on": 1679294983,
       "certs_received": {
@@ -106283,8 +108567,7 @@
         "manouche": 1720574133,
         "CedrickPiwo": 1713600228,
         "rayveur": 1742345660,
-        "VitoAndersen": 1745938647,
-        "Coinlibre": 1694068614
+        "VitoAndersen": 1745938647
       }
     },
     "PoisDeSenteur": {
@@ -106312,8 +108595,7 @@
       "next_cert_issuable_on": 1649673067,
       "certs_received": {
         "JessyRipert": 1710530028,
-        "_Wapetoooooooo_": 1701577656,
-        "Llorens": 1693944203
+        "_Wapetoooooooo_": 1701577656
       }
     },
     "Helene09": {
@@ -106379,9 +108661,9 @@
     "Florencefleur": {
       "index": 8212,
       "owner_key": "AL9UocNhNZryUmPQbiH3rbUH8YVPc32GwChWtqhk2Kq9",
-      "balance": 444399,
+      "balance": 484085,
       "membership_expire_on": 1715118729,
-      "next_cert_issuable_on": 1693129321,
+      "next_cert_issuable_on": 1695290713,
       "certs_received": {
         "absalon2": 1720898721,
         "Sev": 1719215319,
@@ -106394,6 +108676,7 @@
         "Murmure": 1718493507,
         "GuillaumeL88": 1734156373,
         "JuanLu": 1716581808,
+        "Diessanne": 1759128400,
         "CorinneCoco": 1716587093,
         "Did-yeah": 1720562960,
         "lilithdu34": 1716307148,
@@ -106406,9 +108689,9 @@
     "DCat": {
       "index": 5344,
       "owner_key": "ALEbeMZE3QRFUrGatczjiaqShxdDHpAp4yR4392P1AfP",
-      "balance": 400091,
+      "balance": 354677,
       "membership_expire_on": 1711475100,
-      "next_cert_issuable_on": 1693319686,
+      "next_cert_issuable_on": 1696768978,
       "certs_received": {
         "Dzembi": 1702269570,
         "VeroRonsmans": 1739905016,
@@ -106420,10 +108703,11 @@
         "Eric": 1702204801,
         "OncleDave": 1732133695,
         "CELIOCTAVE": 1699330566,
-        "Maminou13": 1699242060,
+        "Maminou13": 1759855772,
         "Leonardo73": 1714618738,
         "jethrotull": 1732730103,
         "EveMahe": 1708219492,
+        "MaugeyRegis": 1758443593,
         "Laurent42": 1736403097,
         "DanielVienne": 1745905945,
         "thieARD07": 1708222019,
@@ -106451,12 +108735,12 @@
         "ortie": 1701480769,
         "WilfriedGuillemenet": 1736667752,
         "PascaleM": 1751092557,
-        "Matograine": 1695144598,
         "Zenobie": 1714704374,
         "LaurenceM": 1721604022,
         "s00999": 1699607033,
         "Shaypalgv": 1733282185,
         "CTL": 1751245446,
+        "Framboise89": 1756600889,
         "BertilleB": 1740119633,
         "Bzh38": 1738062716,
         "Bamboo": 1752806424,
@@ -106472,9 +108756,9 @@
     "Yamu": {
       "index": 8066,
       "owner_key": "ALJDSppFFR1mww2fiN3vD26L5eVx8g9uYSHe2Fff4H5f",
-      "balance": 474125,
+      "balance": 513811,
       "membership_expire_on": 1716658538,
-      "next_cert_issuable_on": 1686210697,
+      "next_cert_issuable_on": 1694427074,
       "certs_received": {
         "Elimarine": 1743213857,
         "HelloSunshine": 1715669255,
@@ -106506,7 +108790,7 @@
     "PlanchaudAndree": {
       "index": 9827,
       "owner_key": "ALKrMmWYb1CCEVwXVQSRayRYkLXP4PBLgcmAbWRFiEtM",
-      "balance": 1111719,
+      "balance": 1163905,
       "membership_expire_on": 1721571683,
       "next_cert_issuable_on": 1686979951,
       "certs_received": {
@@ -106519,6 +108803,7 @@
         "Corinne974": 1727119555,
         "Cerceline974": 1726609444,
         "Myriam97410": 1727745826,
+        "mdanielle97430": 1755196743,
         "Lea974": 1727211725,
         "Bastien97432": 1745981286,
         "EmiAp974": 1740571082,
@@ -106530,7 +108815,7 @@
     "Olympe17": {
       "index": 7403,
       "owner_key": "ALLVjghKcvs7H4HCua5w1HxxgvyMmoNbcBdHSZraeBT9",
-      "balance": 810887,
+      "balance": 429093,
       "membership_expire_on": 1705532988,
       "next_cert_issuable_on": 1689052009,
       "certs_received": {
@@ -106545,6 +108830,7 @@
         "nox": 1710681348,
         "YvesP": 1735276414,
         "SoleilSoleil": 1710840117,
+        "BrunoCarone": 1758767934,
         "KarinePapin": 1745464508,
         "armunia": 1753222764,
         "HyperBrut": 1710993750,
@@ -106556,7 +108842,7 @@
     "Apurajarras": {
       "index": 9312,
       "owner_key": "ALMWmTSjQULPL2dmSo8pUYXrQdH5xpSXdUCHFfHa4Yse",
-      "balance": 346126,
+      "balance": 385812,
       "membership_expire_on": 1724523025,
       "next_cert_issuable_on": 1679819404,
       "certs_received": {
@@ -106574,7 +108860,7 @@
     "Loli": {
       "index": 13175,
       "owner_key": "ALZS6iEACfxk2Gj9WyToX8wnjZdrGTbaU5NaNKGvBgKK",
-      "balance": 73128,
+      "balance": 112814,
       "membership_expire_on": 1720970023,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -106589,9 +108875,9 @@
     "Andre208": {
       "index": 4936,
       "owner_key": "ALaTChyWPZ6UVhjH3sWRrNsEFikzv7ZMCrgqAugb8CXh",
-      "balance": 840425,
+      "balance": 880111,
       "membership_expire_on": 1703327405,
-      "next_cert_issuable_on": 1681823688,
+      "next_cert_issuable_on": 1695341413,
       "certs_received": {
         "Solesan": 1699864179,
         "Fabi26": 1706765139,
@@ -106615,8 +108901,8 @@
     "metatisseuroccitanie": {
       "index": 9605,
       "owner_key": "ALxu6oziwnsyxXMqbcBz93z5Tt4Y3vze5r7Jg4QyN36W",
-      "balance": 420763,
-      "membership_expire_on": 1694825640,
+      "balance": 436783,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678191371,
       "certs_received": {
         "Hidraya": 1726451642,
@@ -106631,7 +108917,7 @@
     "judith": {
       "index": 12343,
       "owner_key": "ALxw4p6nujmXBPePZpsXfdQqq5ArAYt8oS967Gkj6TpZ",
-      "balance": 148452,
+      "balance": 188138,
       "membership_expire_on": 1712755958,
       "next_cert_issuable_on": 1682079207,
       "certs_received": {
@@ -106667,9 +108953,9 @@
     "NouvelAnge": {
       "index": 9772,
       "owner_key": "AMAcf8wkpcNYuySTNW1S5aYmcWdzm9BRfFi5VwEZoGUM",
-      "balance": 324122,
+      "balance": 363808,
       "membership_expire_on": 1721758230,
-      "next_cert_issuable_on": 1691147066,
+      "next_cert_issuable_on": 1693297354,
       "certs_received": {
         "Monette": 1740458336,
         "ScarlettGabrielle_8": 1739377479,
@@ -106689,25 +108975,27 @@
         "Langlaisvalerie04": 1754692692,
         "WARTHLANDAISSOPHIE": 1725431675,
         "Sophiefiso": 1735323651,
-        "Hauteclairedacla": 1736894391
+        "Hauteclairedacla": 1736894391,
+        "Gebender6": 1757480481
       }
     },
     "PhilippeRomanin": {
       "index": 5193,
       "owner_key": "AMK818Z86hvqW9QGUyjxSXLweH9U1w25jWih8jbZ9wWU",
-      "balance": 2108171,
+      "balance": 2147857,
       "membership_expire_on": 1708620766,
-      "next_cert_issuable_on": 1678805998,
+      "next_cert_issuable_on": 1692896437,
       "certs_received": {
         "Loulou09": 1699295640,
+        "GeraldineLeprivier": 1755939637,
         "PatrickRO": 1745380026,
         "pascaldedomptail": 1701134314,
         "ptitechaise": 1698363642,
         "Gentil09": 1697589689,
         "JeanclaudeSocasau": 1697920696,
         "AlbinS": 1697835379,
-        "myriamdevivegnis": 1693784979,
         "Rolande": 1742496320,
+        "LeprivierLunel": 1755939637,
         "Timtitou": 1699486817,
         "bibilapomme09": 1698364007
       }
@@ -106723,7 +109011,7 @@
     "NoPassAran": {
       "index": 9970,
       "owner_key": "AMNtKNPgmqfWVm56YU8qGRaKkTrnGJjS1jaozgTNuRVo",
-      "balance": 446785,
+      "balance": 486471,
       "membership_expire_on": 1722592284,
       "next_cert_issuable_on": 1669201772,
       "certs_received": {
@@ -106738,7 +109026,7 @@
     "NatalisDies": {
       "index": 13294,
       "owner_key": "AMQSzKmvSYsWSdyfWyU31VVhXC8c22zSeiT66b9jidyL",
-      "balance": 40972,
+      "balance": 80658,
       "membership_expire_on": 1720483910,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -106790,7 +109078,7 @@
     "CelineLou": {
       "index": 12451,
       "owner_key": "AMg8ztHREjmavdFwixETteirGLbtNKZSkBEEWRcAVyVX",
-      "balance": 144427,
+      "balance": 184113,
       "membership_expire_on": 1713226436,
       "next_cert_issuable_on": 1683646418,
       "certs_received": {
@@ -106807,7 +109095,7 @@
     "Marica26": {
       "index": 8989,
       "owner_key": "AMggUv1NAKHeRy7Ghz4ap7xG5Fz36LA4vFDnrRarQ5iH",
-      "balance": 386667,
+      "balance": 426353,
       "membership_expire_on": 1721827945,
       "next_cert_issuable_on": 1662208386,
       "certs_received": {
@@ -106821,13 +109109,14 @@
     "gaellemarcherat": {
       "index": 3638,
       "owner_key": "AMjbLQs6KN2zDDNVtpM6FjSvaNBjYfLiTpRL9tsw6AuY",
-      "balance": 1076297,
+      "balance": 1127983,
       "membership_expire_on": 1700956718,
-      "next_cert_issuable_on": 1692256237,
+      "next_cert_issuable_on": 1695007610,
       "certs_received": {
         "Katiecat": 1738467693,
         "Lol": 1727794888,
         "Lecuyer89": 1724449860,
+        "RobertW34": 1757064944,
         "Delfe": 1701755018,
         "CelineThiebaut": 1746514573,
         "Bricedonnadieu26": 1748548303,
@@ -106844,7 +109133,7 @@
     "SylvieClayer": {
       "index": 134,
       "owner_key": "AMmwvMKPkHyzcA71KNSvQED3e466M3dCcoNFrvYyhbeA",
-      "balance": 1817881,
+      "balance": 1857567,
       "membership_expire_on": 1699121210,
       "next_cert_issuable_on": 1691831497,
       "certs_received": {
@@ -106872,7 +109161,7 @@
     "Nicou": {
       "index": 13425,
       "owner_key": "AMngXkxsZevPj4jURC3mPnc5uDVy3Nwyw7j4HrojLMDV",
-      "balance": 8044,
+      "balance": 47730,
       "membership_expire_on": 1723917391,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -106880,7 +109169,8 @@
         "Ananda": 1755886832,
         "Helo-ise": 1755967592,
         "Mer-lin": 1755967592,
-        "Fanchon": 1755832509
+        "Fanchon": 1755832509,
+        "Mauve": 1756496427
       }
     },
     "Bruno": {
@@ -106894,12 +109184,13 @@
     "FabriceSeguin": {
       "index": 9584,
       "owner_key": "AMvPyhLt169UeErAyt5dehxLw8gmimuAbuCFMqh26aCN",
-      "balance": 367881,
+      "balance": 407567,
       "membership_expire_on": 1719745817,
       "next_cert_issuable_on": 1688259785,
       "certs_received": {
         "DomRomy20": 1745513031,
         "LeDemineur21": 1725231242,
+        "MicheleSauterey": 1756945192,
         "Sanashitaka": 1751084350,
         "Cyrius666": 1722355916,
         "yasminaB": 1726043135,
@@ -106921,14 +109212,15 @@
     "orion": {
       "index": 9761,
       "owner_key": "AMwHNKxb36GmCatgTGZuvsawNZ2FYLmwK3ynGP8y7M17",
-      "balance": 370148,
+      "balance": 389834,
       "membership_expire_on": 1723379745,
-      "next_cert_issuable_on": 1675484995,
+      "next_cert_issuable_on": 1695453927,
       "certs_received": {
         "Al27": 1727901272,
         "OlivierHovasse": 1727884450,
         "Bsamuel": 1735529495,
         "MaguelonneHovasse": 1727884792,
+        "Xaby60": 1757553469,
         "Alexag": 1727884450,
         "AlexandraHovasse": 1727884450,
         "MyriamM71": 1738820873
@@ -106945,9 +109237,9 @@
     "Denis": {
       "index": 8169,
       "owner_key": "AN4HzvdGVGd2csr1LKDcfHPn3fHC84k7DMXawBpbhSfP",
-      "balance": 990734,
+      "balance": 1055552,
       "membership_expire_on": 1711964908,
-      "next_cert_issuable_on": 1692506150,
+      "next_cert_issuable_on": 1695513767,
       "certs_received": {
         "kapis": 1755250625,
         "EliseB": 1720426478,
@@ -106971,6 +109263,7 @@
         "Asteria": 1747078595,
         "MarieBertheRanwet": 1719781637,
         "phil3455": 1719832063,
+        "Nina38": 1757614091,
         "Vince": 1740463672,
         "Danielle": 1720651801,
         "Faquantharmonie": 1728853767,
@@ -106987,6 +109280,7 @@
         "Pieter-LucvanNikkel": 1737477326,
         "juliettesemilla": 1716346414,
         "Fredamour": 1716176763,
+        "MikaPac": 1756701853,
         "MinaManar": 1717289435,
         "AnemoneSyl": 1717874806,
         "Stelzchantal": 1716175476,
@@ -107007,7 +109301,7 @@
     "Anthea": {
       "index": 8988,
       "owner_key": "ANGYa1H6ThP8wF25yKV7VDHJgqTHcFpBFHFSNmzS3wj3",
-      "balance": 397514,
+      "balance": 437200,
       "membership_expire_on": 1716836160,
       "next_cert_issuable_on": 1665125534,
       "certs_received": {
@@ -107021,9 +109315,9 @@
     "PierrePierreR": {
       "index": 9355,
       "owner_key": "ANHtqPPzYDAPiyA6d7QN93tmaHCu2S12eBqKa6gns2XC",
-      "balance": 239052,
+      "balance": 264838,
       "membership_expire_on": 1719535517,
-      "next_cert_issuable_on": 1691458733,
+      "next_cert_issuable_on": 1696251709,
       "certs_received": {
         "Clau": 1724915691,
         "lydiemdb": 1734665342,
@@ -107040,6 +109334,7 @@
         "Myriam1912": 1727556852,
         "Carolonsdonc": 1724918709,
         "CedricSQ": 1724903011,
+        "KatchouKat": 1759294909,
         "Titi-yuki": 1744650358
       }
     },
@@ -107054,7 +109349,7 @@
     "Juanyvas": {
       "index": 7439,
       "owner_key": "ANPife1jMr55W6KhGXqr4NdzHC4Yd2DEVr4xfXBrggGY",
-      "balance": 494945,
+      "balance": 534631,
       "membership_expire_on": 1706230338,
       "next_cert_issuable_on": 1688530002,
       "certs_received": {
@@ -107074,7 +109369,7 @@
     "FanetteG": {
       "index": 7848,
       "owner_key": "ANW3dsgPdg68BFyUZz9vtpDiXvXTgSrm6rEB79ZX4vF5",
-      "balance": 388887,
+      "balance": 428573,
       "membership_expire_on": 1719239908,
       "next_cert_issuable_on": 1669634518,
       "certs_received": {
@@ -107088,7 +109383,7 @@
     "FRANCELISETTE": {
       "index": 10894,
       "owner_key": "ANY2tqh28PwQUTm7WfowTVSsgms3BmcmuEje1L6RHE2B",
-      "balance": 268630,
+      "balance": 308316,
       "membership_expire_on": 1701886587,
       "next_cert_issuable_on": 1680616334,
       "certs_received": {
@@ -107102,7 +109397,7 @@
     "DenisL": {
       "index": 6344,
       "owner_key": "ANf3NhoVkbJwskFa4t4F7Xpx7cuNoBo85mK2cdNjNNtp",
-      "balance": 301877,
+      "balance": 341563,
       "membership_expire_on": 1699439489,
       "next_cert_issuable_on": 1655830285,
       "certs_received": {
@@ -107117,7 +109412,7 @@
     "PatCdb": {
       "index": 9345,
       "owner_key": "ANgXn5gCgvgxPHJ13VtsCyxcs4NTre8cQxerSnDP9qmV",
-      "balance": 443326,
+      "balance": 490012,
       "membership_expire_on": 1722029064,
       "next_cert_issuable_on": 1679622887,
       "certs_received": {
@@ -107135,7 +109430,7 @@
     "Magabonde": {
       "index": 10348,
       "owner_key": "ANjVe12WU9UeXxfKzFMyAQscwA5avPEzreXYYZ26j8SP",
-      "balance": 320969,
+      "balance": 360655,
       "membership_expire_on": 1699886372,
       "next_cert_issuable_on": 1681435942,
       "certs_received": {
@@ -107151,7 +109446,7 @@
     "arion": {
       "index": 12574,
       "owner_key": "ANkjyscLxHPGHpPUTmLeY698EDyTxN5zwc36yuFfkjz4",
-      "balance": 134888,
+      "balance": 174574,
       "membership_expire_on": 1714784300,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -107175,9 +109470,9 @@
     "Sandranimal": {
       "index": 8222,
       "owner_key": "ANs5HfnMdPKxq1u3TJMW4BDpf5MtcFsvyoFFKa7QMXcw",
-      "balance": 320348,
+      "balance": 360034,
       "membership_expire_on": 1709997005,
-      "next_cert_issuable_on": 1685058629,
+      "next_cert_issuable_on": 1696230094,
       "certs_received": {
         "Laurence": 1714892591,
         "CaroleBroutin": 1714890953,
@@ -107195,7 +109490,7 @@
     "demil": {
       "index": 12471,
       "owner_key": "APA9LTtkwGswGFjRRTGiTVq3bTNep4zFfeut5jNYRpX5",
-      "balance": 421568,
+      "balance": 461254,
       "membership_expire_on": 1711794385,
       "next_cert_issuable_on": 1685021520,
       "certs_received": {
@@ -107211,7 +109506,7 @@
     "Klanggeschichten": {
       "index": 10906,
       "owner_key": "APC7pPNJFfv2mwg43xS79gaxp3BB7cXxgFrH1RxfM5o1",
-      "balance": 103830,
+      "balance": 143516,
       "membership_expire_on": 1702943163,
       "next_cert_issuable_on": 1691325759,
       "certs_received": {
@@ -107278,7 +109573,7 @@
     "Sandja94": {
       "index": 11674,
       "owner_key": "APhz9in3TT2Ri65Jyuqb8jP8svpLMUAuJjT9MELnaUU4",
-      "balance": 294595,
+      "balance": 398361,
       "membership_expire_on": 1708179982,
       "next_cert_issuable_on": 1683343357,
       "certs_received": {
@@ -107300,7 +109595,7 @@
     "MiguelHappyFamily": {
       "index": 11209,
       "owner_key": "APrbrm2Wta2Johc6q8EEWmX2TXfR1YXLz8taEiVAxQev",
-      "balance": 235709,
+      "balance": 275395,
       "membership_expire_on": 1702901459,
       "next_cert_issuable_on": 1689130320,
       "certs_received": {
@@ -107317,6 +109612,7 @@
         "InesHappyFamily": 1741471040,
         "Tchenka": 1740390767,
         "Nilia": 1750911125,
+        "lurdespinho": 1756792128,
         "NevFreeman": 1743667278,
         "Yohan": 1750323362,
         "RafaMalheiro": 1747354430,
@@ -107328,7 +109624,8 @@
         "Cristetapaixao": 1737776462,
         "Fauna": 1750297797,
         "Fa5": 1736358775,
-        "ElisabeteMartins": 1735872323
+        "ElisabeteMartins": 1735872323,
+        "Kian": 1757283700
       }
     },
     "AudreyChevalier": {
@@ -107348,7 +109645,7 @@
     "BMKrysia": {
       "index": 12140,
       "owner_key": "APwyzh8FCzWhxFQpKJotUf9c9v4CQtLsJWaPCSwmg8c",
-      "balance": 147176,
+      "balance": 168362,
       "membership_expire_on": 1711050399,
       "next_cert_issuable_on": 1683021162,
       "certs_received": {
@@ -107371,7 +109668,7 @@
     "Pab7o": {
       "index": 7771,
       "owner_key": "APybF2nwQVfmi4ms6od73CCkEBsNcNUrXxUzrnefwSXv",
-      "balance": 534582,
+      "balance": 574268,
       "membership_expire_on": 1708786434,
       "next_cert_issuable_on": 1683634066,
       "certs_received": {
@@ -107394,7 +109691,7 @@
     "ChristineF": {
       "index": 3936,
       "owner_key": "AQ5yH9ZKsShRUoT41n8W6KiosaCvphUZq7DsgKLr8XNb",
-      "balance": 962999,
+      "balance": 1002685,
       "membership_expire_on": 1720455024,
       "next_cert_issuable_on": 1679230044,
       "certs_received": {
@@ -107424,27 +109721,23 @@
     "ClaudeM": {
       "index": 3054,
       "owner_key": "AQHqmdFyEZD1Su5byFT4i4qHKCTNqPNpYDeXbBi864d1",
-      "balance": 1267175,
-      "membership_expire_on": 0,
+      "balance": 1299385,
+      "membership_expire_on": 1725721761,
       "next_cert_issuable_on": 1686642463,
       "certs_received": {
         "Sev": 1724831174,
         "Luc": 1701205753,
-        "dongo0011": 1693695916,
         "JerryBB": 1747843357,
-        "Arlette": 1695621952,
         "FlorenceG": 1748068912,
         "soizh": 1747352978,
-        "chane": 1696527242,
-        "Damery": 1694203426,
-        "Sandy": 1694851802,
+        "Damery": 1757228282,
         "Yaelle48": 1704935663
       }
     },
     "TristTDW": {
       "index": 10254,
       "owner_key": "AQM6f7tNtTHofn5Wvx9stQ2HJWzPLh3gbxxfMVZ2PjxU",
-      "balance": 320531,
+      "balance": 360217,
       "membership_expire_on": 1699314743,
       "next_cert_issuable_on": 1684488030,
       "certs_received": {
@@ -107460,7 +109753,7 @@
     "Narada": {
       "index": 2028,
       "owner_key": "AQN17nsjLS5fAiX78juVyFLcJrpZnUvnpUSk82EmUntr",
-      "balance": 919308,
+      "balance": 958994,
       "membership_expire_on": 1701723383,
       "next_cert_issuable_on": 1658903870,
       "certs_received": {
@@ -107475,9 +109768,9 @@
     "Mozart85": {
       "index": 9708,
       "owner_key": "AQNzegnH8x9zUx8TTkpmnd6QrewYZNdatZse9HfgFsEa",
-      "balance": 13092,
-      "membership_expire_on": 1694457408,
-      "next_cert_issuable_on": 1671180683,
+      "balance": 27438,
+      "membership_expire_on": 1726486129,
+      "next_cert_issuable_on": 1696003280,
       "certs_received": {
         "444": 1727382445,
         "FRANCINE79": 1726104834,
@@ -107486,6 +109779,7 @@
         "fredo79": 1726506880,
         "SYBON": 1726506880,
         "RegnierLefur45": 1730866406,
+        "Steph974": 1759364571,
         "BisQI": 1733507444,
         "Val79": 1728843490,
         "Seb79": 1727503695
@@ -107494,7 +109788,7 @@
     "Katich": {
       "index": 2222,
       "owner_key": "AQRHJzHH6RVbHz4RedHsynV4QxR49kc48QEqcpzfPwzd",
-      "balance": 1308123,
+      "balance": 1322809,
       "membership_expire_on": 1721864346,
       "next_cert_issuable_on": 1678804480,
       "certs_received": {
@@ -107510,7 +109804,7 @@
     "Montse": {
       "index": 11947,
       "owner_key": "AQXhuxHUmE5Ri8HxsSXoRDLcJkyHZmHu63L4CJcFSubS",
-      "balance": 286593,
+      "balance": 246679,
       "membership_expire_on": 1705943488,
       "next_cert_issuable_on": 1692863309,
       "certs_received": {
@@ -107532,7 +109826,7 @@
     "Paulo59": {
       "index": 7729,
       "owner_key": "AQYDXeFPro1u1DG8cwpjVFxUaMvqrrA9VEfRzWsnTFgd",
-      "balance": 502967,
+      "balance": 542653,
       "membership_expire_on": 1714501427,
       "next_cert_issuable_on": 1652449610,
       "certs_received": {
@@ -107547,9 +109841,9 @@
     "RainbowQueen": {
       "index": 10108,
       "owner_key": "AQhArNkrSuQ9YwjavUWRqrHTLS8Kaa2ghoTcmd9xPNBV",
-      "balance": 205259,
-      "membership_expire_on": 1698413780,
-      "next_cert_issuable_on": 1683984086,
+      "balance": 239535,
+      "membership_expire_on": 1725554549,
+      "next_cert_issuable_on": 1694068949,
       "certs_received": {
         "SandrineMala": 1730016283,
         "AfricadeHarmonia": 1748911912,
@@ -107565,23 +109859,39 @@
     "Doris": {
       "index": 7320,
       "owner_key": "AQnM56YwuupQCYHVN6J5e8ZPQGEXNtRZMAq9BEzsYpHr",
-      "balance": 540669,
+      "balance": 580355,
       "membership_expire_on": 1715629596,
-      "next_cert_issuable_on": 1670834971,
+      "next_cert_issuable_on": 1693901525,
       "certs_received": {
+        "MarcoSko": 1757812894,
         "Anandaa": 1710272232,
+        "Guillemyannick": 1757797521,
         "FrancoiseH": 1710215694,
         "DamienLG": 1710363445,
         "FERRATONCristina": 1710444613,
         "RobertC": 1710615435
       }
     },
+    "fredcoin": {
+      "index": 13504,
+      "owner_key": "AQqgaPAQ2oEvfvuKyg6vLYekTbQvtPWQF34qeE1qVjEQ",
+      "balance": 27546,
+      "membership_expire_on": 1723987735,
+      "next_cert_issuable_on": 1694074480,
+      "certs_received": {
+        "chabi": 1756681874,
+        "AnnieFortin": 1756690745,
+        "estherwalther26": 1756686999,
+        "Michellecuyer26": 1756757515,
+        "Calou26": 1756757515
+      }
+    },
     "Oarina": {
       "index": 10015,
       "owner_key": "AQrLjxEGgUAFP7PSdbuHcBxsfeQdMWqRHYogEMAVNm3V",
-      "balance": 122452,
-      "membership_expire_on": 1697056480,
-      "next_cert_issuable_on": 1684048561,
+      "balance": 161738,
+      "membership_expire_on": 1726087158,
+      "next_cert_issuable_on": 1696754321,
       "certs_received": {
         "Manu_El": 1741391251,
         "Ochan": 1745537467,
@@ -107589,10 +109899,12 @@
         "Barbablanc": 1741986436,
         "Vicon2": 1729110399,
         "Javilion": 1728801216,
+        "Sarieluz": 1758529004,
         "SoniaValencia": 1747789959,
         "MaraVilla": 1741294885,
         "Sohan": 1736911491,
         "EstherEstrella": 1747093297,
+        "EcoMary": 1758914337,
         "EmmanuelZetace": 1729031973,
         "marijose": 1747544959,
         "Spirulina": 1736901907,
@@ -107617,7 +109929,7 @@
     "Tara": {
       "index": 10841,
       "owner_key": "AQt3JtUKfEWCKaNrJ5HPBnUZqwH3d1eJczF5QJDcKAMb",
-      "balance": 107556,
+      "balance": 147242,
       "membership_expire_on": 1700160506,
       "next_cert_issuable_on": 1687798345,
       "certs_received": {
@@ -107657,7 +109969,7 @@
     "Bubblegum": {
       "index": 7591,
       "owner_key": "ARMZtHtKNWB19yUmmqVKKUcqprPDFZvDZzsyJ6DUkvCd",
-      "balance": 539821,
+      "balance": 579507,
       "membership_expire_on": 1710862433,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -107683,9 +109995,9 @@
     "Quetzal": {
       "index": 10895,
       "owner_key": "ARTjZz7Ya1N3dPNhPLyC6GHW9Wvupt1BG4oT4jsrQDYj",
-      "balance": 262130,
+      "balance": 308817,
       "membership_expire_on": 1702737497,
-      "next_cert_issuable_on": 1687477770,
+      "next_cert_issuable_on": 1695348173,
       "certs_received": {
         "Missouri": 1734383180,
         "Gillette": 1734397713,
@@ -107707,7 +110019,7 @@
     "Thalie07": {
       "index": 7875,
       "owner_key": "ARZRj2NPF9y691BH8caTG2kYZTqcE8A6JVpjpXYE4WjZ",
-      "balance": 506426,
+      "balance": 546112,
       "membership_expire_on": 1714998706,
       "next_cert_issuable_on": 1676295326,
       "certs_received": {
@@ -107723,10 +110035,11 @@
     "feedbefore": {
       "index": 11142,
       "owner_key": "ARb23Wgx7BGgg9um4PZGn5YkQANGJUPNSgFRzcsHdbB7",
-      "balance": 216731,
+      "balance": 265917,
       "membership_expire_on": 1703112710,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695003732,
       "certs_received": {
+        "Dorf67": 1758481578,
         "Anthoxanthum67": 1734678886,
         "ENO": 1735774047,
         "hazed": 1734802919,
@@ -107738,8 +110051,8 @@
     "FreedomExpansion": {
       "index": 10074,
       "owner_key": "ARgP6oYCkX1bMrCxoG3hHvcTE371dWAQq4919JgQZRar",
-      "balance": 385916,
-      "membership_expire_on": 1694791321,
+      "balance": 425602,
+      "membership_expire_on": 1725899832,
       "next_cert_issuable_on": 1683540645,
       "certs_received": {
         "EmaPom": 1730000123,
@@ -107763,7 +110076,7 @@
     "Carlito": {
       "index": 10048,
       "owner_key": "ARpTDJN1EWMVydKpz5ZaXQQQL8xBfbCTQ773xYVnyFro",
-      "balance": 331875,
+      "balance": 371561,
       "membership_expire_on": 1697233179,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -107778,17 +110091,14 @@
     "Champa108": {
       "index": 2833,
       "owner_key": "ARqsTCGekCoyPdDde6L4vwndHempM51gCeeTS2GkeuDd",
-      "balance": 1197788,
+      "balance": 1237474,
       "membership_expire_on": 1715698254,
       "next_cert_issuable_on": 1685528997,
       "certs_received": {
         "myma63": 1747162598,
-        "Taylor07": 1695779599,
         "Philippe26": 1747077528,
         "arfocine": 1747077528,
         "Laurentld": 1747077528,
-        "Kerlo": 1695779925,
-        "Lya26": 1695780632,
         "Nicolas07": 1700192669,
         "FrankMonmagnon": 1746988936,
         "Eolya07": 1702495080,
@@ -107798,7 +110108,7 @@
     "Geps42": {
       "index": 8135,
       "owner_key": "ARxtA4PVxbpaheQLC3ByuMue3DoLycLnLbuASKJH3aX5",
-      "balance": 402954,
+      "balance": 442640,
       "membership_expire_on": 1712923140,
       "next_cert_issuable_on": 1671813674,
       "certs_received": {
@@ -107842,7 +110152,7 @@
     "Espritangel": {
       "index": 1502,
       "owner_key": "ASARyQ8Pum1SwSx93wch56KeMhz3EvwrYEo8QJJQ9zoG",
-      "balance": 317601,
+      "balance": 357287,
       "membership_expire_on": 1706042906,
       "next_cert_issuable_on": 1674557306,
       "certs_received": {
@@ -107866,9 +110176,9 @@
     "RutenRolf": {
       "index": 9277,
       "owner_key": "ASLhi2zpJzN2VZ5hZurhsr4CpmbgNMoyHvYBpSLCBpPj",
-      "balance": 1645908,
+      "balance": 1815914,
       "membership_expire_on": 1719310766,
-      "next_cert_issuable_on": 1690119083,
+      "next_cert_issuable_on": 1696471978,
       "certs_received": {
         "RomainKornig": 1735000358,
         "Schourey": 1731794119,
@@ -107899,7 +110209,7 @@
     "daluz": {
       "index": 5427,
       "owner_key": "ASSzA6VP2u4zfmoqxGfdUB9HSoS4wc8o9wE9UykFfmUt",
-      "balance": 1286405,
+      "balance": 1326091,
       "membership_expire_on": 1721757422,
       "next_cert_issuable_on": 1679671272,
       "certs_received": {
@@ -107917,8 +110227,8 @@
     "Isabelin": {
       "index": 9915,
       "owner_key": "ASU7q19xWdZxPSzTSfRYtEjY2zQs5VzsGkCVFpZnp4hD",
-      "balance": 152924,
-      "membership_expire_on": 1696277213,
+      "balance": 172220,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1693041990,
       "certs_received": {
         "Silvi": 1743534895,
@@ -107948,8 +110258,8 @@
     "ferferio": {
       "index": 10354,
       "owner_key": "ASxgELvZ98tybiLzRa2TqRLPesxXmV5AjtVRZ9xsHXws",
-      "balance": 246877,
-      "membership_expire_on": 1699667434,
+      "balance": 259363,
+      "membership_expire_on": 1726694379,
       "next_cert_issuable_on": 1679572148,
       "certs_received": {
         "Bichejos": 1737605109,
@@ -107974,7 +110284,7 @@
       "owner_key": "AT3N4p9cL6RCy4C6MpbM1i1yhXafhgEbxREs65zea7Ns",
       "balance": 689935,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631706324,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "Pasteta": {
@@ -107982,11 +110292,8 @@
       "owner_key": "AT4vY1EdBEUJv6mURaEHCYPfX16tD9SVa6Nudmb2LQwd",
       "balance": 479159,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1630678424,
-      "certs_received": {
-        "Truca": 1695406874,
-        "Lotus17": 1695573766
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "meven": {
       "index": 724,
@@ -107999,13 +110306,12 @@
     "Phen": {
       "index": 2524,
       "owner_key": "AT6aTPDmTqKdhVWmFEByWyue7dNkJsemrbBHCkGgSCyo",
-      "balance": 601502,
+      "balance": 641188,
       "membership_expire_on": 1708201569,
       "next_cert_issuable_on": 1654393762,
       "certs_received": {
         "VincentLepais": 1723357486,
         "LauraPlisson": 1709792199,
-        "DanceX47": 1694326465,
         "Didiw": 1713080125,
         "Marilina": 1712304837,
         "EtK": 1709879676,
@@ -108028,7 +110334,7 @@
     "DamienCdx": {
       "index": 1436,
       "owner_key": "ATC5KSBXxX6zRCjzSkZUnuGDvAz4K5UnB46qinJtN8wB",
-      "balance": 953212,
+      "balance": 992898,
       "membership_expire_on": 1702589777,
       "next_cert_issuable_on": 1690709099,
       "certs_received": {
@@ -108046,14 +110352,15 @@
     "ChristianMichelChampon": {
       "index": 9714,
       "owner_key": "ATDKdYnKJZX13rdtaG4KkiFuChpCpFEPoRu6DCja6f5K",
-      "balance": 230243,
+      "balance": 194769,
       "membership_expire_on": 1720279997,
-      "next_cert_issuable_on": 1690887709,
+      "next_cert_issuable_on": 1696665858,
       "certs_received": {
         "Zap": 1742937736,
         "diablade": 1736220538,
         "StephaneMongeois": 1737405803,
         "FrancisBperso": 1751699377,
+        "JanineBoitel": 1759200699,
         "belledemai": 1735697385,
         "EricSIMON": 1737844835,
         "sanddebeloest38": 1735458764,
@@ -108087,9 +110394,9 @@
     "LaSoyeFee": {
       "index": 9805,
       "owner_key": "ATFTqKbCMRWtBrPT7zkMfmXqG9XB8j53L2DeeauhLVAu",
-      "balance": 358437,
-      "membership_expire_on": 1696510906,
-      "next_cert_issuable_on": 1690424024,
+      "balance": 267823,
+      "membership_expire_on": 1725115181,
+      "next_cert_issuable_on": 1695133609,
       "certs_received": {
         "Etipol61": 1728142847,
         "Kouleurs": 1735239022,
@@ -108111,10 +110418,7 @@
       "balance": 1137857,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "PatrickGilles": 1695092132,
-        "AbelGilles": 1695092132
-      }
+      "certs_received": {}
     },
     "dora": {
       "index": 5266,
@@ -108145,7 +110449,7 @@
     "Titi974": {
       "index": 8782,
       "owner_key": "ATZP8XoDZ6FmHjKXVg6Wa7t6UoMLP14VUd1bxzpFKFbH",
-      "balance": 409702,
+      "balance": 449388,
       "membership_expire_on": 1717842018,
       "next_cert_issuable_on": 1677648330,
       "certs_received": {
@@ -108163,9 +110467,9 @@
     "Chene": {
       "index": 7924,
       "owner_key": "ATimoTJMDRf8Wy7dbrKgkKwZJqkcmJqyKi2uH8Tq2i9r",
-      "balance": 428770,
+      "balance": 404376,
       "membership_expire_on": 1712678109,
-      "next_cert_issuable_on": 1674983873,
+      "next_cert_issuable_on": 1695653828,
       "certs_received": {
         "Icaunaise": 1716092342,
         "Carabistouille": 1744854193,
@@ -108181,7 +110485,9 @@
         "ortie": 1711515426,
         "s00999": 1711517789,
         "Shaypalgv": 1733282185,
+        "Framboise89": 1756600889,
         "Clo": 1748331192,
+        "Gerard-Michel-3": 1759096470,
         "Cassie": 1738387980,
         "Ninette89": 1717017208,
         "Mia": 1729454787,
@@ -108191,7 +110497,7 @@
     "RitaRosa": {
       "index": 8276,
       "owner_key": "ATkxD1C6CkqPEEigCPEekSa7dTLJ7CFcavSxyvCez4os",
-      "balance": 326834,
+      "balance": 366520,
       "membership_expire_on": 1715112101,
       "next_cert_issuable_on": 1664940292,
       "certs_received": {
@@ -108218,7 +110524,7 @@
     "Francebru": {
       "index": 11521,
       "owner_key": "ATqc42TeawEzbd2vZGYnPy7epDpv1qMoTZ3zMATUud2u",
-      "balance": 211203,
+      "balance": 250889,
       "membership_expire_on": 1706912881,
       "next_cert_issuable_on": 1676465362,
       "certs_received": {
@@ -108232,7 +110538,7 @@
     "ChamamanMimi": {
       "index": 12218,
       "owner_key": "AU3gAJsU3i59QUm5PBjgjsnoia3B72iaYtPH8oRGvoYw",
-      "balance": 270400,
+      "balance": 310086,
       "membership_expire_on": 1709334314,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -108248,7 +110554,7 @@
     "JulienJune": {
       "index": 10985,
       "owner_key": "AU6qv9p4ewm8UBg55zxjbnuNj5LP8yJhVMaRBDjd37Yn",
-      "balance": 277276,
+      "balance": 316962,
       "membership_expire_on": 1703159375,
       "next_cert_issuable_on": 1673851191,
       "certs_received": {
@@ -108262,7 +110568,7 @@
     "Raphb": {
       "index": 10842,
       "owner_key": "AUB7Jf99ctNWPLcREDsiRf6Hrmz8i43Asn8REUSCWyce",
-      "balance": 276807,
+      "balance": 316493,
       "membership_expire_on": 1701213121,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -108322,9 +110628,9 @@
     "Thouanne84": {
       "index": 10448,
       "owner_key": "AUn4ZPF1Pkd7qm2qVu1NrLSZkYSkZvBiCXSWc4DrYiWp",
-      "balance": 125323,
-      "membership_expire_on": 1699315765,
-      "next_cert_issuable_on": 1683632259,
+      "balance": 66509,
+      "membership_expire_on": 1727737309,
+      "next_cert_issuable_on": 1696252065,
       "certs_received": {
         "Vanille": 1731562423,
         "Didierlife84": 1731562763,
@@ -108361,15 +110667,16 @@
     "lilarose": {
       "index": 12939,
       "owner_key": "AUqfbhu3NqgHXXtPzAHbP6D7ZYVnBnkFCbxGWZ1S2F7X",
-      "balance": 118996,
+      "balance": 79382,
       "membership_expire_on": 1717535305,
-      "next_cert_issuable_on": 1689410755,
+      "next_cert_issuable_on": 1694914584,
       "certs_received": {
         "MartiGraef": 1750056846,
         "Anthoxanthum67": 1751442535,
         "Simone": 1749150851,
         "letoilebleue": 1749346208,
         "Omasaya": 1749401858,
+        "BertrandCGO": 1757099779,
         "OURSBLANC": 1749248930
       }
     },
@@ -108384,7 +110691,7 @@
     "BeatricePerols": {
       "index": 12941,
       "owner_key": "AUtLqdXjqAQawEoGY8EH7eGhpc2RPGi8Y4h7VRys5cmj",
-      "balance": 100896,
+      "balance": 136082,
       "membership_expire_on": 1718619162,
       "next_cert_issuable_on": 1689248726,
       "certs_received": {
@@ -108398,7 +110705,7 @@
     "Merlette": {
       "index": 6837,
       "owner_key": "AUtVRyugNSupPkiy1eVEmZRV4WruzX1jYFRfHa6FkfwK",
-      "balance": 588179,
+      "balance": 627865,
       "membership_expire_on": 1703086382,
       "next_cert_issuable_on": 1677746298,
       "certs_received": {
@@ -108424,16 +110731,18 @@
     "Als_67": {
       "index": 10680,
       "owner_key": "AUyh2g2iFe5QruTpm6aR8baads29TnGKkteQ6AoDgZEC",
-      "balance": 287050,
-      "membership_expire_on": 1699235770,
-      "next_cert_issuable_on": 1691816647,
+      "balance": 329286,
+      "membership_expire_on": 1725714976,
+      "next_cert_issuable_on": 1696301108,
       "certs_received": {
+        "LaureHuber": 1758178009,
         "Anthoxanthum67": 1731655382,
         "ENO": 1741404901,
         "Fabrice_T": 1732561842,
         "kalimheros": 1743372199,
         "Flammekueche": 1740090008,
         "Loris_T": 1732562088,
+        "miel67": 1758489085,
         "hazed": 1730794309,
         "seb2nor12": 1732168625
       }
@@ -108457,9 +110766,9 @@
     "PatriciaA": {
       "index": 10610,
       "owner_key": "AV8BJkKsDM4zhKYaqMC4R2v2QvVGrui7h98LSEcSX4bF",
-      "balance": 264719,
+      "balance": 149505,
       "membership_expire_on": 1723326858,
-      "next_cert_issuable_on": 1689867408,
+      "next_cert_issuable_on": 1696323170,
       "certs_received": {
         "Martine51": 1751992464,
         "baobab51": 1742893665,
@@ -108479,7 +110788,7 @@
     "SarahG1": {
       "index": 8926,
       "owner_key": "AVRk5eJ6NmPR3Z1GVPrbKDF5m7TmQPRyoCBsbBp1PC4G",
-      "balance": 381094,
+      "balance": 420780,
       "membership_expire_on": 1717238738,
       "next_cert_issuable_on": 1665328749,
       "certs_received": {
@@ -108501,7 +110810,7 @@
     "Calinka07": {
       "index": 6382,
       "owner_key": "AVU2fXawkk3TNZYBAEECs1pBPGYY6Ddsfrfiza2niPM4",
-      "balance": 600169,
+      "balance": 639855,
       "membership_expire_on": 1705336791,
       "next_cert_issuable_on": 1687364165,
       "certs_received": {
@@ -108520,11 +110829,10 @@
     "NeyKrom": {
       "index": 2234,
       "owner_key": "AVVfeE8Xssgvd1HXMZDaRbPUp7tWea7DeBusPXE74yow",
-      "balance": 587688,
+      "balance": 598374,
       "membership_expire_on": 1711371778,
-      "next_cert_issuable_on": 1687256571,
+      "next_cert_issuable_on": 1695025193,
       "certs_received": {
-        "Alinerv": 1695233618,
         "fdrubigny": 1754427338,
         "Georges_M_mbr": 1736881585,
         "NansCoCreator": 1701233735,
@@ -108539,11 +110847,9 @@
         "Solian": 1739909741,
         "AnnL": 1714612910,
         "Altaiire": 1732434023,
-        "Mathieuf": 1694849637,
+        "LionMackry": 1758065800,
         "lilithdu34": 1710961951,
-        "Sandrine-": 1694848709,
         "Apell": 1702835128,
-        "FVK": 1696722630,
         "Bea": 1732492475,
         "FredB": 1746160756
       }
@@ -108569,17 +110875,16 @@
     "Clr44": {
       "index": 5130,
       "owner_key": "AVgHaztiBJCRNMsdaAQRhP26PrK8xEL18h3T27r6K6kZ",
-      "balance": 793277,
+      "balance": 832963,
       "membership_expire_on": 1712619379,
-      "next_cert_issuable_on": 1690016409,
+      "next_cert_issuable_on": 1696246468,
       "certs_received": {
         "GenevLeb": 1753126075,
         "Mabelle": 1744176979,
         "Clar44": 1727231812,
         "Maaltir": 1715667500,
         "leminhthai": 1712714778,
-        "EliseNantes": 1750548677,
-        "Hervey": 1695172112
+        "EliseNantes": 1750548677
       }
     },
     "Mac": {
@@ -108593,7 +110898,7 @@
     "Debu24590": {
       "index": 6074,
       "owner_key": "AVjV97qqxqpRZHarV64wDqnXQHW1MUgRZnL6u9mPZueZ",
-      "balance": 524891,
+      "balance": 564577,
       "membership_expire_on": 1697153713,
       "next_cert_issuable_on": 1652990613,
       "certs_received": {
@@ -108623,7 +110928,7 @@
     "Raffaellaiorio": {
       "index": 7167,
       "owner_key": "AWAUzvbkjt25UpKLpg4B5D2ZaeLqDHHrojxQSAKrYnis",
-      "balance": 345788,
+      "balance": 73974,
       "membership_expire_on": 1706396305,
       "next_cert_issuable_on": 1669792175,
       "certs_received": {
@@ -108649,9 +110954,9 @@
     "NoemiRO": {
       "index": 12345,
       "owner_key": "AWNhXakwixNjdFaLMa9NnNASa5umWMbqvuL5NQBWDpLb",
-      "balance": 97184,
+      "balance": 19170,
       "membership_expire_on": 1712100441,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696328296,
       "certs_received": {
         "CrisBB": 1743658813,
         "Sonya": 1744003428,
@@ -108664,7 +110969,7 @@
     "Kheoppe": {
       "index": 7069,
       "owner_key": "AWXXLsFPS2r1KzpBf1ZYsjcjw1wbBqx8a8rJRZ63T77n",
-      "balance": 339157,
+      "balance": 358843,
       "membership_expire_on": 1702825580,
       "next_cert_issuable_on": 1686739167,
       "certs_received": {
@@ -108692,7 +110997,7 @@
     "Coralini": {
       "index": 11242,
       "owner_key": "AWZA2uvcFwukpEWnKo7Q4yfEVb8RUtX8Yy5avVMsWPfE",
-      "balance": 226988,
+      "balance": 301774,
       "membership_expire_on": 1705417272,
       "next_cert_issuable_on": 1679826700,
       "certs_received": {
@@ -108736,7 +111041,7 @@
     "FabriceKa": {
       "index": 12595,
       "owner_key": "AWi9VR5RbsHFxemag91BJQ8HNTwizKZg2wS5pGF5aGCk",
-      "balance": 121752,
+      "balance": 161438,
       "membership_expire_on": 1711410465,
       "next_cert_issuable_on": 1686119016,
       "certs_received": {
@@ -108766,7 +111071,7 @@
     "JySac": {
       "index": 11716,
       "owner_key": "AWsq3CSS1FTyDZYxkEg3e2uGgqZLBF4MTfj2rMJewi2W",
-      "balance": 202677,
+      "balance": 242363,
       "membership_expire_on": 1708219273,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -108780,7 +111085,7 @@
     "canarddugers": {
       "index": 2997,
       "owner_key": "AX31bSJ1zmXimHUzZ9soAdWxWacccXU9zM8KYzn49vjE",
-      "balance": 1011081,
+      "balance": 1050767,
       "membership_expire_on": 1699147106,
       "next_cert_issuable_on": 1679663006,
       "certs_received": {
@@ -108790,14 +111095,13 @@
         "Doug": 1700030754,
         "Philibert": 1727583836,
         "Eglantine": 1743631442,
-        "HereitiBernard": 1743606375,
-        "Pedrinho": 1695855013
+        "HereitiBernard": 1743606375
       }
     },
     "Arnaud11": {
       "index": 3253,
       "owner_key": "AX97DGPPD49DQVEFdJ4Bf4iWprfkQmyE7hCp5sEzRjgT",
-      "balance": 867157,
+      "balance": 906843,
       "membership_expire_on": 1722469645,
       "next_cert_issuable_on": 1666582237,
       "certs_received": {
@@ -108813,9 +111117,9 @@
     "Didilou": {
       "index": 7405,
       "owner_key": "AXCNUK4HaRrRUCPoT4aacA6RHtGz15nJxoAbjCFkMQ4z",
-      "balance": 531104,
+      "balance": 571290,
       "membership_expire_on": 1705501344,
-      "next_cert_issuable_on": 1692706044,
+      "next_cert_issuable_on": 1695440314,
       "certs_received": {
         "Re-belle": 1717385758,
         "Marieta": 1756184426,
@@ -108836,7 +111140,7 @@
     "caramel": {
       "index": 7582,
       "owner_key": "AXCsyJfYjzcVJjvuu5S17t9LMuY942Ri6WSsGzEf5RDR",
-      "balance": 539347,
+      "balance": 579033,
       "membership_expire_on": 1721307974,
       "next_cert_issuable_on": 1674700461,
       "certs_received": {
@@ -108851,7 +111155,7 @@
     "antonia": {
       "index": 9969,
       "owner_key": "AXS3RTYLPubB5CSESuDwbKQgBPeGwFTdUpbBCJnxixRf",
-      "balance": 287229,
+      "balance": 326915,
       "membership_expire_on": 1697226690,
       "next_cert_issuable_on": 1677068969,
       "certs_received": {
@@ -108876,7 +111180,7 @@
     "DragonDorado": {
       "index": 12090,
       "owner_key": "AXaLhPxCDMCCUjaNsiWRwWipowe6T7NFqG332LFFKyqb",
-      "balance": 71716,
+      "balance": 101402,
       "membership_expire_on": 1710287836,
       "next_cert_issuable_on": 1682768701,
       "certs_received": {
@@ -108893,10 +111197,11 @@
     "Felisa": {
       "index": 8864,
       "owner_key": "AXhg1oeVGAQ4w8eKqUrX7RWVhHYta7ewHL6ovppo9N9k",
-      "balance": 117782,
+      "balance": 206968,
       "membership_expire_on": 1715193871,
-      "next_cert_issuable_on": 1692423898,
+      "next_cert_issuable_on": 1695000818,
       "certs_received": {
+        "carmela": 1758008865,
         "Noelia": 1720370952,
         "roberplantas": 1732310690,
         "Ovejaenrebelion": 1735867239,
@@ -108910,6 +111215,7 @@
         "airamoy2810": 1720735026,
         "NancyOrtiz": 1720244634,
         "Carolinda": 1743564852,
+        "Felipevida": 1758251979,
         "Martylove": 1745773670,
         "VICTORF": 1741462101,
         "Amaralar": 1728884228,
@@ -108933,9 +111239,9 @@
     "MoulinMuriel": {
       "index": 2180,
       "owner_key": "AXuQSZmDPvT5RnHXZrDPmLbDTRXk6xSeFaLY2b9EuLzu",
-      "balance": 1069710,
+      "balance": 1109396,
       "membership_expire_on": 1720444009,
-      "next_cert_issuable_on": 1691990538,
+      "next_cert_issuable_on": 1696385819,
       "certs_received": {
         "Katiecat": 1706598343,
         "Stessy": 1700684360,
@@ -108952,8 +111258,7 @@
         "ChristopheRobine": 1744740040,
         "Laulotte84600": 1702532593,
         "Helsephine": 1717626383,
-        "Vicky": 1696141066,
-        "lilithdu34": 1693768622,
+        "lilithdu34": 1756786929,
         "romane": 1701122270,
         "Gil84": 1704434170,
         "Joellebingo": 1706408608,
@@ -108967,17 +111272,19 @@
     "Gigimit57": {
       "index": 7207,
       "owner_key": "AXxKAHwJvUdK2GHTBJG9DTPjdaVC4s8BqF8KXEVNi9Bq",
-      "balance": 424303,
+      "balance": 468389,
       "membership_expire_on": 1703370373,
-      "next_cert_issuable_on": 1686700234,
+      "next_cert_issuable_on": 1696683692,
       "certs_received": {
         "Monette": 1749608169,
         "Andrelebourhis": 1706240744,
         "RomainKornig": 1728424832,
         "AnnePG": 1729453387,
         "Azucena": 1729462060,
+        "gimo": 1758808630,
         "Shapenoupet": 1751184427,
         "belledecadix": 1732472664,
+        "Sebcbien": 1757472024,
         "LuciaM": 1746486424,
         "Canguy43": 1729666534,
         "Nat317": 1708116153,
@@ -109040,7 +111347,7 @@
     "namdor": {
       "index": 12955,
       "owner_key": "AYE1jYstZ9ySdMSCkcjkhzwuK7q1g2HrbificrgcABSm",
-      "balance": 65210,
+      "balance": 63696,
       "membership_expire_on": 1717718553,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -109070,8 +111377,8 @@
     "Bobby1981": {
       "index": 9981,
       "owner_key": "AYVLEDNN5nngXYmcd9aS2wUXuDPyDww8B4b9N97Tw47D",
-      "balance": 337170,
-      "membership_expire_on": 1696266365,
+      "balance": 371466,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Cyrius": 1727823965,
@@ -109096,7 +111403,7 @@
       "index": 4171,
       "owner_key": "AYhW4WEPtvLK5NtGkipYBVq8RwCqg8YSDzj8ABJGC41Y",
       "balance": 1095994,
-      "membership_expire_on": 1693517151,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1662375534,
       "certs_received": {
         "Tanita": 1726044709,
@@ -109109,7 +111416,7 @@
     "Laurence_D": {
       "index": 4067,
       "owner_key": "AYpd67UxqBPYtvro283YmDUaZozVrvpgjybPoMu8uFh9",
-      "balance": 1399429,
+      "balance": 1439115,
       "membership_expire_on": 1722902079,
       "next_cert_issuable_on": 1662014017,
       "certs_received": {
@@ -109149,7 +111456,7 @@
     "IsabelleEscudero": {
       "index": 2551,
       "owner_key": "AYsmqCy3YsRn8mtqDe372uPneb1VAjyuuCwYecwQrZXi",
-      "balance": 1216166,
+      "balance": 1255852,
       "membership_expire_on": 1711726407,
       "next_cert_issuable_on": 1690952722,
       "certs_received": {
@@ -109165,7 +111472,7 @@
     "Estibalitz": {
       "index": 9493,
       "owner_key": "AYtMm8kc3hq4848HX9duGs5CFhrRZCrpZJhMW66StH4u",
-      "balance": 290989,
+      "balance": 330675,
       "membership_expire_on": 1721867880,
       "next_cert_issuable_on": 1676269034,
       "certs_received": {
@@ -109182,7 +111489,7 @@
     "AgsG189": {
       "index": 10111,
       "owner_key": "AZ2wyKhZhQyYuMniaj5XKQZrWUUVZNGXHo5FUnPXwcL9",
-      "balance": 236580,
+      "balance": 284266,
       "membership_expire_on": 1723728852,
       "next_cert_issuable_on": 1689208089,
       "certs_received": {
@@ -109199,7 +111506,7 @@
     "AchilleAmemoutou974": {
       "index": 4757,
       "owner_key": "AZ69DdFs14FfBFohHT6AaecwM3Uu3ymTdfnRHiuj1mSH",
-      "balance": 325453,
+      "balance": 365139,
       "membership_expire_on": 1704997141,
       "next_cert_issuable_on": 1688951635,
       "certs_received": {
@@ -109212,14 +111519,13 @@
         "Claudine974": 1712623347,
         "Reine97418": 1737557495,
         "EmiAp974": 1749685992,
-        "FrancoiseRangla974": 1695134194,
         "mancity08": 1752075352
       }
     },
     "Solian": {
       "index": 4769,
       "owner_key": "AZ8pZx2QJ6YExVdKL5mPs6DaAZWBNPQBueytVFGZAWSZ",
-      "balance": 949044,
+      "balance": 988730,
       "membership_expire_on": 1702578391,
       "next_cert_issuable_on": 1690442270,
       "certs_received": {
@@ -109227,8 +111533,6 @@
         "echo": 1743367841,
         "JeePofMars": 1741727834,
         "NeyKrom": 1739829405,
-        "BarbicheHetre": 1696154613,
-        "CharlesD": 1694023531,
         "Totoro": 1738991609,
         "Sandelrio": 1746669701,
         "sens": 1711505361
@@ -109237,7 +111541,7 @@
     "Marou82": {
       "index": 8840,
       "owner_key": "AZFCnQr58UAvqXHFZQGvJ2mRHVG5mtK8QUkqm5Zw1QKm",
-      "balance": 175353,
+      "balance": 215039,
       "membership_expire_on": 1721598876,
       "next_cert_issuable_on": 1657631947,
       "certs_received": {
@@ -109251,26 +111555,32 @@
     "DominiqueA": {
       "index": 6693,
       "owner_key": "AZGS4aZ4TvL5DiXgCUSgE2LoQmxc2VMwk4FDXhqjg3o9",
-      "balance": 1048203,
-      "membership_expire_on": 1698837381,
-      "next_cert_issuable_on": 1687068409,
+      "balance": 1080889,
+      "membership_expire_on": 1725959606,
+      "next_cert_issuable_on": 1695819743,
       "certs_received": {
         "dnoelle": 1704783136,
+        "Niranjana": 1757792978,
+        "Etipol61": 1757756324,
+        "phidelo": 1757649869,
+        "Berniebx": 1757795047,
         "NAMA-STE": 1705123803,
         "Coucoudidier": 1705804971,
         "PatHamster": 1703394256,
         "Sylvieb": 1723679842,
+        "killerkawasaki": 1758941737,
         "Insa": 1705288602,
         "YoanRousselle": 1705449254,
+        "Fullmoonlight": 1759199456,
         "Lando": 1712866096
       }
     },
     "Furiosa": {
       "index": 10427,
       "owner_key": "AZMc8m3X1V4DjcRAwy22SdscTDPHzjp8NUFWjQJiFFYX",
-      "balance": 311699,
-      "membership_expire_on": 1700170148,
-      "next_cert_issuable_on": 1689493025,
+      "balance": 357685,
+      "membership_expire_on": 1727221187,
+      "next_cert_issuable_on": 1694832172,
       "certs_received": {
         "EliseB": 1731968637,
         "NancyAlexia": 1731904502,
@@ -109297,9 +111607,9 @@
     "Gillo75": {
       "index": 10617,
       "owner_key": "AZMzt4xgoHjreHM3eWpyQAji3rsYn7CPrZWFPxMvmcZP",
-      "balance": 295813,
-      "membership_expire_on": 1700239551,
-      "next_cert_issuable_on": 1693328979,
+      "balance": 315999,
+      "membership_expire_on": 1727010570,
+      "next_cert_issuable_on": 1696764743,
       "certs_received": {
         "Nanou59": 1732919712,
         "ElaineDana": 1732919712,
@@ -109315,8 +111625,8 @@
     "Sari": {
       "index": 9614,
       "owner_key": "AZS2GzxBuYffPeLnhbc4z5xYbSQMXYMKs7tLL4XWF8QD",
-      "balance": 365763,
-      "membership_expire_on": 1695329125,
+      "balance": 388201,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "perenoel": 1726892420,
@@ -109343,7 +111653,7 @@
     "Fabygo": {
       "index": 8141,
       "owner_key": "AZVePXb3nvXMXEFuy6uhXa8SMpiieMjo4Py21n1M7KYg",
-      "balance": 489103,
+      "balance": 528789,
       "membership_expire_on": 1712922028,
       "next_cert_issuable_on": 1673339935,
       "certs_received": {
@@ -109357,9 +111667,9 @@
     "EmilieG25": {
       "index": 9328,
       "owner_key": "AZW3wLZJvnS72C4FqGLfLtu5MzWpKUVCFqZqUr7GcD7y",
-      "balance": 442090,
+      "balance": 407048,
       "membership_expire_on": 1720095647,
-      "next_cert_issuable_on": 1693475251,
+      "next_cert_issuable_on": 1695380112,
       "certs_received": {
         "ChristopheG25": 1747455234,
         "Ju73": 1742496320,
@@ -109368,9 +111678,11 @@
         "malyce": 1724691238,
         "vibes": 1737041069,
         "yannlefranco": 1723955404,
+        "LuciaM": 1758421968,
         "romz": 1724691144,
         "DCat": 1724021632,
         "Manuella85": 1724019169,
+        "Artemys": 1759694815,
         "FRLavenier": 1724022113,
         "sens": 1752724375,
         "gero": 1724564653
@@ -109395,13 +111707,12 @@
     "Belka": {
       "index": 5348,
       "owner_key": "AZkFpErBGthBfqY5TBsDSTgdyDP8aa47HBCouFgdzCKa",
-      "balance": 872990,
+      "balance": 912676,
       "membership_expire_on": 1716060239,
       "next_cert_issuable_on": 1663735182,
       "certs_received": {
         "Teresapp": 1697405320,
         "Caribe": 1711897294,
-        "Regis": 1694746431,
         "OlivierMaurice": 1754619675,
         "Wotan": 1716157193,
         "Paz": 1708670593,
@@ -109436,11 +111747,12 @@
     "RafaMalheiro": {
       "index": 12541,
       "owner_key": "Aa7ndCRKedULcnzN2joURe8k1taHgRvSvVyH6MXQApMQ",
-      "balance": 132092,
+      "balance": 171778,
       "membership_expire_on": 1714011203,
-      "next_cert_issuable_on": 1692706044,
+      "next_cert_issuable_on": 1694848888,
       "certs_received": {
         "GuilhermeLopes": 1747412037,
+        "FranciscoVenda": 1757695741,
         "Judit137": 1755909659,
         "AureaLopes": 1747412037,
         "Yana": 1751660844,
@@ -109451,7 +111763,9 @@
         "Viola": 1752100203,
         "MiguelHappyFamily": 1746032300,
         "Rafael": 1752953324,
+        "DivinaC": 1758148525,
         "Serena7naturezas": 1750300279,
+        "DeboraTavares": 1757695124,
         "Hardass": 1750803602,
         "JorgeDraven": 1745989057,
         "AnaIsis7animais": 1750300515,
@@ -109462,7 +111776,7 @@
     "Pinki": {
       "index": 11293,
       "owner_key": "Aa8eVgCWrWjHBBcfJp8w3SG8ZXFSbtB5WKjeQjrtU4zv",
-      "balance": 213124,
+      "balance": 252810,
       "membership_expire_on": 1705279965,
       "next_cert_issuable_on": 1682998884,
       "certs_received": {
@@ -109480,15 +111794,19 @@
     "Jmbe": {
       "index": 6355,
       "owner_key": "AaAYMyPo7M83tfKLqGdmPK1EX9WYfVYkfCKDjjsNSgMJ",
-      "balance": 614103,
-      "membership_expire_on": 1699813509,
-      "next_cert_issuable_on": 1654780214,
+      "balance": 467789,
+      "membership_expire_on": 1726874834,
+      "next_cert_issuable_on": 1696548993,
       "certs_received": {
         "perenoel": 1701133237,
         "Philippe26": 1706124209,
         "merenoel": 1701133031,
         "MARY30": 1699673331,
+        "Gael": 1759276037,
         "phil3455": 1706092517,
+        "ClauTie26": 1759275655,
+        "FrankMonmagnon": 1758953744,
+        "FranckVal": 1758953332,
         "DomLucie": 1701133237,
         "arbogast": 1699673331
       }
@@ -109506,16 +111824,21 @@
     "123Marie": {
       "index": 12440,
       "owner_key": "AaL63hgakgpSPiENZVJ9ddcWBpFes1GjuXLitac7JJPm",
-      "balance": 106804,
+      "balance": 143490,
       "membership_expire_on": 1712683885,
-      "next_cert_issuable_on": 1692057733,
+      "next_cert_issuable_on": 1696669179,
       "certs_received": {
+        "sarahmagicienne": 1758339729,
+        "DyanZan_Gce": 1759304835,
         "DaniailesA": 1744241733,
         "Chaton": 1744241733,
+        "Sangita": 1759173377,
         "Coco-B": 1744243197,
         "Mistigri": 1744242955,
         "Fannyhihihi": 1752997598,
-        "RobinRoni": 1744269294
+        "RobinRoni": 1744269294,
+        "MuleRetive": 1757707466,
+        "Amazinggoldenturf": 1757791299
       }
     },
     "AnneLise14": {
@@ -109552,6 +111875,21 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "SarahLa": {
+      "index": 13483,
+      "owner_key": "AaqeApprDHeST78kFXUGZ2ybhp6oQv4R76DdsEfKfjX3",
+      "balance": 43128,
+      "membership_expire_on": 1723136501,
+      "next_cert_issuable_on": 1695388169,
+      "certs_received": {
+        "Framboisefraise": 1756750001,
+        "danquer": 1756783036,
+        "MarcelleA": 1756791802,
+        "FernandP": 1756791802,
+        "MarieMas": 1756802477,
+        "MPaule": 1756691186
+      }
+    },
     "Nourpaule": {
       "index": 3982,
       "owner_key": "Aav6dYSbWiGZVSeunqYswZRcFkrobpk1NWw3PCjpD8Mz",
@@ -109563,11 +111901,10 @@
     "KumaNinja": {
       "index": 2400,
       "owner_key": "AayJHm4cdXuAvdnUmcirGucdSi1tgTVTMsqNwp8kYbB7",
-      "balance": 80556,
+      "balance": 120262,
       "membership_expire_on": 1700369728,
       "next_cert_issuable_on": 1691999983,
       "certs_received": {
-        "CaroPetillante": 1695206533,
         "Underscore": 1698199965,
         "MHaM": 1745554966,
         "Fleur-du-renouveau": 1730320601,
@@ -109592,7 +111929,7 @@
     "Fanfan13": {
       "index": 10992,
       "owner_key": "AazXpK15BRLWBiYUAQUHdSocqemABh1hipcBBE7AUXw5",
-      "balance": 133617,
+      "balance": 154603,
       "membership_expire_on": 1703283174,
       "next_cert_issuable_on": 1683894421,
       "certs_received": {
@@ -109613,7 +111950,7 @@
     "Sylviedu10": {
       "index": 7109,
       "owner_key": "Ab14jJ268sGck8EE7b6Z15kdtsvqpqEqmRtS1FQwyQCV",
-      "balance": 587629,
+      "balance": 627315,
       "membership_expire_on": 1704465512,
       "next_cert_issuable_on": 1672991407,
       "certs_received": {
@@ -109638,7 +111975,7 @@
     "Alyang": {
       "index": 10578,
       "owner_key": "Ab3vcb1JG122383o57dgiGezogsnxTEyL4dQbcEq5p8p",
-      "balance": 230751,
+      "balance": 270437,
       "membership_expire_on": 1699901165,
       "next_cert_issuable_on": 1670907682,
       "certs_received": {
@@ -109652,7 +111989,7 @@
     "Roxane": {
       "index": 7286,
       "owner_key": "Ab5DDiiKCgcsFosXP3fgPodh43KtfAhWc681z8WdnK69",
-      "balance": 548457,
+      "balance": 582143,
       "membership_expire_on": 1708265368,
       "next_cert_issuable_on": 1671943189,
       "certs_received": {
@@ -109670,13 +112007,7 @@
       "balance": 324161,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1653142189,
-      "certs_received": {
-        "ANTISPASMODIC": 1693727676,
-        "CorinneBaro": 1693720764,
-        "Coco46": 1693725504,
-        "BenoitFrancou": 1693721338,
-        "Elisa": 1694117968
-      }
+      "certs_received": {}
     },
     "Karfan": {
       "index": 1618,
@@ -109689,9 +112020,9 @@
     "Melwin": {
       "index": 4956,
       "owner_key": "Ab9XY5t9J9Zm4HeWNTZQ29ENh4gNfJGt8VK4aXacQs14",
-      "balance": 201928,
+      "balance": 241614,
       "membership_expire_on": 1722813533,
-      "next_cert_issuable_on": 1685783230,
+      "next_cert_issuable_on": 1694238453,
       "certs_received": {
         "Lune": 1720884846,
         "LelievreJulia": 1740733327,
@@ -109703,9 +112034,9 @@
     "Marionnette": {
       "index": 8850,
       "owner_key": "AbE2idjNr1QSEpKYFUf3KYdZm66fX84qQ7P2SRu9G6Qc",
-      "balance": 236652,
+      "balance": 276338,
       "membership_expire_on": 1713386751,
-      "next_cert_issuable_on": 1693218750,
+      "next_cert_issuable_on": 1694254838,
       "certs_received": {
         "espritlibredulac": 1736020459,
         "Alyssa13": 1735634240,
@@ -109736,6 +112067,7 @@
         "Eli-g": 1728462489,
         "NouvelAnge": 1729281113,
         "BrunoBousquet": 1727812045,
+        "Guillemyannick": 1758921696,
         "DamienLG": 1741824513,
         "fabienne": 1740529014,
         "AgnesMareau": 1735350700,
@@ -109760,7 +112092,7 @@
     "laurhaq": {
       "index": 6435,
       "owner_key": "AbF7zBHDMb5PVZ8gPzCkcnfgbjyoaLingX1TdwCeSpWw",
-      "balance": 646243,
+      "balance": 685929,
       "membership_expire_on": 1701145647,
       "next_cert_issuable_on": 1640261207,
       "certs_received": {
@@ -109782,9 +112114,9 @@
     "MartineRivat": {
       "index": 6043,
       "owner_key": "AbQ93hzkUgApdeudfc86HWvgP2WfY6KR3KVkBm2yzBqr",
-      "balance": 589207,
-      "membership_expire_on": 1696173112,
-      "next_cert_issuable_on": 1690905908,
+      "balance": 636393,
+      "membership_expire_on": 1726590622,
+      "next_cert_issuable_on": 1695105325,
       "certs_received": {
         "veronine": 1752149306,
         "lauremilanaturo": 1753206439,
@@ -109803,12 +112135,13 @@
     "BenFoxy": {
       "index": 12961,
       "owner_key": "AbSXQm2LGma9DhMeKECUawvFJtPHGcRiSsfy8A6ezNok",
-      "balance": 13192,
+      "balance": 40378,
       "membership_expire_on": 1719082457,
-      "next_cert_issuable_on": 1692278144,
+      "next_cert_issuable_on": 1695439951,
       "certs_received": {
         "MarcelleA": 1750642299,
         "FernandP": 1750641154,
+        "EliotBF": 1756885382,
         "Inanna": 1750656685,
         "MarieMas": 1750645548,
         "Katecat": 1750640609,
@@ -109823,6 +112156,21 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "CrisMata": {
+      "index": 13573,
+      "owner_key": "AbTSUy4KqA9GxtwC5QvZPgzz5ZKAsLSEDgQTKU6tqUGe",
+      "balance": 81849,
+      "membership_expire_on": 1724181599,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "AfricadeHarmonia": 1757487294,
+        "GabyClaudia": 1757705575,
+        "AlexanderT": 1757688215,
+        "MiguelOssa": 1757631161,
+        "GuillermoHarmonia": 1757484821,
+        "Aurora-SandraMogo": 1757719418
+      }
+    },
     "Domichand": {
       "index": 3416,
       "owner_key": "AbUgNrTNowsSWNqk1b1KSXN1fF788kGvZReuQ8vus7tq",
@@ -109860,6 +112208,21 @@
         "AuroreKikine": 1719094774
       }
     },
+    "RudiB": {
+      "index": 13525,
+      "owner_key": "AbisbhUwgsXGZNR2eAhp3yAJLoSpjdGDEAP7Lfw5hC1y",
+      "balance": 32210,
+      "membership_expire_on": 1724027538,
+      "next_cert_issuable_on": 1696424805,
+      "certs_received": {
+        "Psy": 1756610491,
+        "SophieRita": 1756709842,
+        "morimontj": 1757268795,
+        "Muriel": 1756707105,
+        "CelesteWH": 1756706556,
+        "Heloim": 1756742916
+      }
+    },
     "AdelineJuRoGab": {
       "index": 9651,
       "owner_key": "AbmrZEWa4292KXxFzCNrrNEfvkQqjk85foxVc8Cpfdor",
@@ -109879,7 +112242,7 @@
     "ThomasBourdon": {
       "index": 3740,
       "owner_key": "Abpio1ZPLuuULtu9JadJ5SeuwkP9puEVYJVADhK3f1yE",
-      "balance": 33108,
+      "balance": 7546,
       "membership_expire_on": 1702377206,
       "next_cert_issuable_on": 1651192476,
       "certs_received": {
@@ -109912,7 +112275,7 @@
     "richardweber": {
       "index": 10883,
       "owner_key": "Abv6FNQ5GGjvv2v95r6DWDB4pM6tKShEG2tyCPwb63xz",
-      "balance": 265630,
+      "balance": 305316,
       "membership_expire_on": 1702832347,
       "next_cert_issuable_on": 1693038910,
       "certs_received": {
@@ -109929,7 +112292,7 @@
     "NzoLauret": {
       "index": 11566,
       "owner_key": "AbzyypzamzsqvjPsWLXpAmt9upN8hnqWcFx3TkMcFH2M",
-      "balance": 228799,
+      "balance": 268485,
       "membership_expire_on": 1706283023,
       "next_cert_issuable_on": 1682872408,
       "certs_received": {
@@ -109953,7 +112316,7 @@
     "PascaleMoreau72": {
       "index": 6469,
       "owner_key": "Ac6SY4xPgMEQgRSUpqc4g5NovD8HpGXqFbf5qSXptg2m",
-      "balance": 631111,
+      "balance": 670797,
       "membership_expire_on": 1709410241,
       "next_cert_issuable_on": 1653390837,
       "certs_received": {
@@ -109971,7 +112334,7 @@
     "SomadEra": {
       "index": 10154,
       "owner_key": "Ac859VkzETpTcXHGccDUdwwtxNmT9khmFR9hk8RDGexM",
-      "balance": 78328,
+      "balance": 76414,
       "membership_expire_on": 1698527295,
       "next_cert_issuable_on": 1683818340,
       "certs_received": {
@@ -109991,7 +112354,7 @@
     "Sybille": {
       "index": 27,
       "owner_key": "Ac97oeMLk1WVsC65Cb2qG2Jc72Rd6FPwsmQTvomTwr7a",
-      "balance": 2246202,
+      "balance": 2285888,
       "membership_expire_on": 1707745962,
       "next_cert_issuable_on": 1681373565,
       "certs_received": {
@@ -110007,7 +112370,7 @@
     "Agnes": {
       "index": 6642,
       "owner_key": "Ac9N2tHzeeGE4rbxwVgqiwdHViJkQhaRYbjtwa84ggkG",
-      "balance": 572064,
+      "balance": 611750,
       "membership_expire_on": 1703022608,
       "next_cert_issuable_on": 1684310485,
       "certs_received": {
@@ -110023,21 +112386,22 @@
     "March": {
       "index": 6904,
       "owner_key": "Ac9xKbJyPbdkSn8xJ5KKK9vfTttM7jmoo6E6XfBwTLE",
-      "balance": 544885,
+      "balance": 539071,
       "membership_expire_on": 1703957835,
-      "next_cert_issuable_on": 1647254910,
+      "next_cert_issuable_on": 1696142062,
       "certs_received": {
         "olione": 1707094459,
         "Olilove": 1706574943,
         "YugavanOrloff": 1707377431,
         "ArianeDD": 1707460156,
-        "Pilar": 1707459560
+        "Pilar": 1707459560,
+        "isabelleirigoin": 1759184767
       }
     },
     "Demeter": {
       "index": 10885,
       "owner_key": "AcRbbjARidLRf6G56M3oyWEt5oGs4GVpuuBM8dYDgdzZ",
-      "balance": 251731,
+      "balance": 288917,
       "membership_expire_on": 1702811006,
       "next_cert_issuable_on": 1671904222,
       "certs_received": {
@@ -110058,19 +112422,18 @@
       "balance": 842642,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Wilouchou": 1694235206
-      }
+      "certs_received": {}
     },
     "Spirulina": {
       "index": 5492,
       "owner_key": "AcgVM67tQaN3Tjva1pYCoQW41WoVxKnsxFEM8A2nHMHv",
-      "balance": 490729,
+      "balance": 740415,
       "membership_expire_on": 1716295558,
-      "next_cert_issuable_on": 1693311023,
+      "next_cert_issuable_on": 1695557423,
       "certs_received": {
         "valmuzet": 1735701047,
         "Lisembert": 1736896899,
+        "IsaForest": 1756970851,
         "SevChereau": 1721497206,
         "nathanaelf": 1736478606,
         "MaraVilla": 1738206023,
@@ -110090,7 +112453,7 @@
     "marika": {
       "index": 12982,
       "owner_key": "AcvWkVeEMgD2tg4Eqz27g6eTUCGSs69yxQbEvyGmy2iW",
-      "balance": 115656,
+      "balance": 155342,
       "membership_expire_on": 1718364861,
       "next_cert_issuable_on": 1688296811,
       "certs_received": {
@@ -110105,7 +112468,7 @@
     "Bebelitos": {
       "index": 10966,
       "owner_key": "Ad2YNwVe4qAtigfce8LE75SP9a8JzPk55Q16ve5mYMLW",
-      "balance": 309335,
+      "balance": 349021,
       "membership_expire_on": 1702569340,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -110120,7 +112483,7 @@
     "NicolasCanzian": {
       "index": 614,
       "owner_key": "AdBF7ZFXspTmZB9kxRjANxhJmsCa3RtHxwZdktmPcxNi",
-      "balance": 105462,
+      "balance": 145148,
       "membership_expire_on": 1708818696,
       "next_cert_issuable_on": 1686909151,
       "certs_received": {
@@ -110128,10 +112491,10 @@
         "Fleurdusoleil": 1743810463,
         "Mariel": 1703399213,
         "Stef": 1742584670,
+        "CelineRenou": 1755558623,
         "CorinneBaro": 1743027753,
         "NonoJAM": 1702874953,
         "Krikri": 1738436590,
-        "Annachronik": 1696573164,
         "GaelleMry": 1700254726,
         "Profil": 1722952915,
         "tchounga": 1752395149
@@ -110140,14 +112503,15 @@
     "Poto": {
       "index": 6434,
       "owner_key": "AdBkn5YGxsKF9XGptcWpvWBygGvKS6WANDY4jwhTgh8b",
-      "balance": 316597,
-      "membership_expire_on": 1694827667,
+      "balance": 353079,
+      "membership_expire_on": 1726614564,
       "next_cert_issuable_on": 1685336153,
       "certs_received": {
         "xandraAritzkuren": 1718678124,
-        "Cordeliaze": 1702523877,
+        "Cordeliaze": 1758481782,
         "rama": 1740968120,
         "SanTuCa-REMyL": 1729189124,
+        "regy": 1757555967,
         "Noelia": 1738986629,
         "Cristol-Iquid": 1727036679,
         "Mokaita": 1740417124,
@@ -110179,7 +112543,7 @@
     "Mamati": {
       "index": 11699,
       "owner_key": "AdPkcrSvJem3TWraXCX5r3GzMji74m54f746sietirPG",
-      "balance": 243535,
+      "balance": 275221,
       "membership_expire_on": 1705356655,
       "next_cert_issuable_on": 1683789930,
       "certs_received": {
@@ -110194,7 +112558,7 @@
     "MarionKreutz": {
       "index": 3769,
       "owner_key": "AdXUGCw3yFYFEgQbkqu4ffPD6coVPzpDhsgRy6BBDC5J",
-      "balance": 836359,
+      "balance": 876045,
       "membership_expire_on": 1722038293,
       "next_cert_issuable_on": 1640063830,
       "certs_received": {
@@ -110209,7 +112573,7 @@
     "ValerieChappuis26": {
       "index": 10558,
       "owner_key": "AdXWJFXnTXqSu29vka5m4sey8UogUJBcgagVbbbSMx7Q",
-      "balance": 302310,
+      "balance": 341996,
       "membership_expire_on": 1701121635,
       "next_cert_issuable_on": 1687923134,
       "certs_received": {
@@ -110231,12 +112595,12 @@
     "FranckBarbe": {
       "index": 569,
       "owner_key": "AddRFe6A3JEGPnAxEcAy1ML23L9Dy5D3mx7QxEiuBtWp",
-      "balance": 719793,
+      "balance": 759479,
       "membership_expire_on": 1709602373,
-      "next_cert_issuable_on": 1690554398,
+      "next_cert_issuable_on": 1695735587,
       "certs_received": {
         "jasmine": 1716663561,
-        "FLORESTRELA": 1700568530,
+        "FLORESTRELA": 1758346019,
         "Justis": 1724580888,
         "ContrePropagande": 1752354028,
         "FanchDz": 1747939361,
@@ -110246,6 +112610,7 @@
         "TheCat": 1732129377,
         "Nadege51": 1730948351,
         "Bastien-29": 1698214818,
+        "Numerosympa": 1758080464,
         "VeroAngele": 1733612612,
         "Josephine": 1699217267,
         "PascaleRoncoroni": 1712366274,
@@ -110277,10 +112642,24 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "paulpli": {
+      "index": 13759,
+      "owner_key": "AdhLyq9Ssd4GAB2Z9k11Y5umaoDi3nDgBQbZyHAH59jn",
+      "balance": 3500,
+      "membership_expire_on": 1727704331,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "M-France": 1759465347,
+        "MariaDiniz": 1759528225,
+        "Lando": 1759717144,
+        "Loupdaame": 1759717144,
+        "NagNag": 1759716261
+      }
+    },
     "Misterbungle89": {
       "index": 11021,
       "owner_key": "AdiDKKnjACQ5xtbbKVtNYLZ9khaNq19JwAfRWoNyoVF8",
-      "balance": 243040,
+      "balance": 282726,
       "membership_expire_on": 1700875131,
       "next_cert_issuable_on": 1672389401,
       "certs_received": {
@@ -110295,10 +112674,11 @@
     "Phinou": {
       "index": 5982,
       "owner_key": "AdmCg1yb9e3D777mHsctJ8CHfgjeYGGptCsedTxhoYWz",
-      "balance": 631035,
-      "membership_expire_on": 1700066416,
-      "next_cert_issuable_on": 1690243549,
+      "balance": 670721,
+      "membership_expire_on": 1727718055,
+      "next_cert_issuable_on": 1694664266,
       "certs_received": {
+        "solinelacaze": 1758938304,
         "angelight": 1698902197,
         "Caline": 1753776366,
         "ThierryLacaze": 1698896491,
@@ -110314,7 +112694,7 @@
     "BrunoBousquet": {
       "index": 7556,
       "owner_key": "AdmLbhjTnq5whtgsBjL85ykFGzXFhpobQ4wmSZkhUomR",
-      "balance": 1051751,
+      "balance": 1091437,
       "membership_expire_on": 1707932318,
       "next_cert_issuable_on": 1665501758,
       "certs_received": {
@@ -110332,7 +112712,7 @@
     "MaryLene07": {
       "index": 9546,
       "owner_key": "AduLcgLg9zC9AaGdH2i35irKu1F7bwDvEKGXHmfcpM51",
-      "balance": 347434,
+      "balance": 387120,
       "membership_expire_on": 1724868061,
       "next_cert_issuable_on": 1686239748,
       "certs_received": {
@@ -110346,7 +112726,7 @@
     "Mangrove": {
       "index": 9057,
       "owner_key": "AdvwjxP5GEReqrAzzxnFcUqUix4HHPF9FYmhhaeqfhTd",
-      "balance": 348882,
+      "balance": 388568,
       "membership_expire_on": 1720457464,
       "next_cert_issuable_on": 1663944211,
       "certs_received": {
@@ -110374,12 +112754,13 @@
     "MoiseK": {
       "index": 13252,
       "owner_key": "AdxwQXqpQ2RWNzcfKHZJRbdsWngWo8HW7Mm78Wz9RJij",
-      "balance": 43312,
+      "balance": 82998,
       "membership_expire_on": 1720439699,
       "next_cert_issuable_on": 1690774405,
       "certs_received": {
         "Chaton": 1753576997,
         "JeanneFlowJ": 1751997726,
+        "ZimG": 1756084688,
         "Mistigri": 1752121457,
         "RobinRoni": 1752027789,
         "NolanRoni": 1753509638
@@ -110388,12 +112769,11 @@
     "IsaLecot": {
       "index": 379,
       "owner_key": "Adzp1YzGebbnAmsGv6ipvWgbJyBV7zS2gw9mVCVaS984",
-      "balance": 2146182,
+      "balance": 2185868,
       "membership_expire_on": 1703181848,
       "next_cert_issuable_on": 1691326403,
       "certs_received": {
         "karpat": 1738385001,
-        "PhilippeGruau": 1696234358,
         "farahmiftah": 1734742246,
         "BertrandBigot": 1745263624,
         "DanielFortin": 1737750723,
@@ -110407,7 +112787,7 @@
     "Lolo-Al": {
       "index": 7145,
       "owner_key": "Ae1nkJ7K9Lh7JFqKWPcHFc3j2ufXCNoRJG9ieCFdAieD",
-      "balance": 555003,
+      "balance": 594689,
       "membership_expire_on": 1706052317,
       "next_cert_issuable_on": 1671443467,
       "certs_received": {
@@ -110425,11 +112805,10 @@
     "BenoitLaurent": {
       "index": 1577,
       "owner_key": "Ae2bE4zrsXTJCKGXYEVhXFXNovBd5n7BeccQhbNTVKYK",
-      "balance": 1760737,
-      "membership_expire_on": 1694258706,
+      "balance": 1770349,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666403001,
       "certs_received": {
-        "Zazou": 1695936633,
         "Wenoo": 1729147211,
         "stetibu79": 1704412499,
         "Granxis8": 1725818041,
@@ -110440,15 +112819,16 @@
     "Sylcol": {
       "index": 13334,
       "owner_key": "Ae3tML3c3oUmkYyg7Do4XmWRWC8sBzRLvJetxABVbV5B",
-      "balance": 39432,
+      "balance": 70418,
       "membership_expire_on": 1722355321,
-      "next_cert_issuable_on": 1693236071,
+      "next_cert_issuable_on": 1695344716,
       "certs_received": {
         "TerreSacree": 1753912921,
         "Attila": 1754031966,
         "ChloeS": 1754600465,
         "StephBauer": 1753994496,
-        "Galacta": 1754190021
+        "Galacta": 1754190021,
+        "Matedi23": 1759733989
       }
     },
     "AlisonPilet": {
@@ -110462,15 +112842,13 @@
     "Marinalouette": {
       "index": 4915,
       "owner_key": "Ae8m6fwFNp3d2yYiMMgKPPoVPoWcJkzWipkTy36cxmRR",
-      "balance": 753002,
+      "balance": 792688,
       "membership_expire_on": 1709660464,
       "next_cert_issuable_on": 1690411134,
       "certs_received": {
-        "DLV": 1694751489,
         "dine": 1703386349,
         "MYCELIUM": 1727719169,
         "Bastien-29": 1721811790,
-        "phil3455": 1695974644,
         "Maaude09": 1739762034,
         "Francesca": 1730661613,
         "flodef": 1754389786,
@@ -110480,9 +112858,9 @@
     "Flam": {
       "index": 10685,
       "owner_key": "AeCKr4HHD4zh4CeHJwKUNH1X8RDMsYAqW4cnYbmiFkqx",
-      "balance": 276999,
+      "balance": 316685,
       "membership_expire_on": 1700504284,
-      "next_cert_issuable_on": 1688055466,
+      "next_cert_issuable_on": 1695011974,
       "certs_received": {
         "jaya": 1733340161,
         "angelight": 1733382160,
@@ -110501,7 +112879,7 @@
     "AgnesO": {
       "index": 9625,
       "owner_key": "AeJmKmx8pSLsk163bqmH1N82neM7WTLXQUfJx4q3NKSb",
-      "balance": 399204,
+      "balance": 438890,
       "membership_expire_on": 1723740018,
       "next_cert_issuable_on": 1668781765,
       "certs_received": {
@@ -110515,7 +112893,7 @@
     "Bhaerynden": {
       "index": 9472,
       "owner_key": "AeXhYkxMikKQBQQRZGPFqUbsWgRap52K9dExCHZahMbp",
-      "balance": 349391,
+      "balance": 389077,
       "membership_expire_on": 1723295771,
       "next_cert_issuable_on": 1682852156,
       "certs_received": {
@@ -110536,7 +112914,7 @@
     "PtiteFee": {
       "index": 12001,
       "owner_key": "AeaewXEKBSksjAaXF2EqeSW8SWM5ZEkd51Wn12GvDQKi",
-      "balance": 82538,
+      "balance": 126724,
       "membership_expire_on": 1710115623,
       "next_cert_issuable_on": 1681140224,
       "certs_received": {
@@ -110555,9 +112933,9 @@
     "YIKING": {
       "index": 5943,
       "owner_key": "AecY5jR9XUzDsKMPH8d87uheryBmjZSwFR9bd2tuwiVJ",
-      "balance": 193574,
+      "balance": 221260,
       "membership_expire_on": 1722896445,
-      "next_cert_issuable_on": 1688820171,
+      "next_cert_issuable_on": 1696469604,
       "certs_received": {
         "Icaunaise": 1744604546,
         "Mariyam": 1743387652,
@@ -110573,7 +112951,6 @@
         "Lucas_Desroches": 1697566295,
         "EveC": 1699332392,
         "Pashi": 1732248114,
-        "sisyphe": 1696378473,
         "fred": 1698376109,
         "Luna": 1748301706,
         "s00999": 1698369880,
@@ -110588,7 +112965,7 @@
     "alelai": {
       "index": 9372,
       "owner_key": "AeysgiQ5bWkPLRK1jwqGKt9J5jNUQxa5AC5Xin8jXuu6",
-      "balance": 183901,
+      "balance": 223588,
       "membership_expire_on": 1721417104,
       "next_cert_issuable_on": 1689931504,
       "certs_received": {
@@ -110605,9 +112982,9 @@
     "Vince": {
       "index": 10452,
       "owner_key": "Af6Z434aiXGpLQWsRDfuudywBW3cEDdN6cLwXSC5YDP9",
-      "balance": 255027,
-      "membership_expire_on": 1700508223,
-      "next_cert_issuable_on": 1685827284,
+      "balance": 296448,
+      "membership_expire_on": 1727906521,
+      "next_cert_issuable_on": 1696422147,
       "certs_received": {
         "Sunshining": 1732244714,
         "Chabe13": 1736746494,
@@ -110622,6 +112999,7 @@
         "Fab": 1739201246,
         "Denis": 1746584234,
         "Danielle": 1732080009,
+        "Vigo": 1759465347,
         "nathinfi": 1732075439,
         "Domino7": 1740468174,
         "Selergo": 1732077096,
@@ -110647,15 +113025,19 @@
     "LNC89": {
       "index": 8283,
       "owner_key": "AfGpMCMmaaVdr7vbpgjQkAgBZwS9iccRwpy7L4tKHPdR",
-      "balance": 457593,
+      "balance": 455279,
       "membership_expire_on": 1710974917,
-      "next_cert_issuable_on": 1688727655,
+      "next_cert_issuable_on": 1695099982,
       "certs_received": {
+        "gberdal": 1758081854,
+        "Cathlon": 1758078671,
         "AmandineDupret": 1716871164,
         "Cinsia": 1715558954,
         "YIKING": 1716243921,
         "Pashi": 1733031036,
+        "Flobleu": 1758659001,
         "Val1695": 1716738639,
+        "CatherineBerdal": 1758178009,
         "HappyAmina": 1715478655,
         "Phileas": 1717139022
       }
@@ -110671,7 +113053,7 @@
     "ColinLoyens": {
       "index": 4497,
       "owner_key": "AfUF4SwxoXEAuYdVD2dY3qgrm5QW1n3rFWj2AejxxsrC",
-      "balance": 306304,
+      "balance": 345990,
       "membership_expire_on": 1711975952,
       "next_cert_issuable_on": 1636445038,
       "certs_received": {
@@ -110685,9 +113067,9 @@
     "Lili21": {
       "index": 5047,
       "owner_key": "Afcx3vWaiJZKFViVDtSLT9FT9Y5P9Ai2syPsbiqHixcs",
-      "balance": 968308,
+      "balance": 1007994,
       "membership_expire_on": 1709164232,
-      "next_cert_issuable_on": 1689697918,
+      "next_cert_issuable_on": 1696162408,
       "certs_received": {
         "Yipyip": 1741248408,
         "Mayo": 1741309236,
@@ -110703,9 +113085,9 @@
     "LibertyFran": {
       "index": 6254,
       "owner_key": "AfhBVh91VhRQzD1w9Tuv767XNAnQBg3bx1vyYUESwTxZ",
-      "balance": 1007861,
+      "balance": 1003877,
       "membership_expire_on": 1724849121,
-      "next_cert_issuable_on": 1689250718,
+      "next_cert_issuable_on": 1696474498,
       "certs_received": {
         "SandrineP": 1701310067,
         "LilianBonnardon": 1701467698,
@@ -110737,6 +113119,7 @@
         "MinaManar": 1710444867,
         "gigi73": 1750301454,
         "LaurentM": 1708365891,
+        "Chiron": 1757982898,
         "Anthony": 1709280357
       }
     },
@@ -110751,7 +113134,7 @@
     "aline31": {
       "index": 923,
       "owner_key": "Afr6VX84Ju1enFsP9w7Z3eMCmKFGzAfRBWpd8fHP4iNW",
-      "balance": 1604499,
+      "balance": 1644185,
       "membership_expire_on": 1721424692,
       "next_cert_issuable_on": 1671536331,
       "certs_received": {
@@ -110766,7 +113149,7 @@
         "Pepita": 1731205653,
         "Mariel": 1703399213,
         "Abondance": 1705884187,
-        "JulieBen": 1702523877,
+        "JulieBen": 1758330611,
         "Yamaneko": 1736218220,
         "Gud": 1738103799,
         "Sylbok": 1735047457,
@@ -110789,7 +113172,7 @@
     "Appolo": {
       "index": 6915,
       "owner_key": "Ag4YPUqt2iV8xwhGv4R2W21wAHbLYUdEhZKNaMvEp5wW",
-      "balance": 553843,
+      "balance": 593529,
       "membership_expire_on": 1699488385,
       "next_cert_issuable_on": 1668002785,
       "certs_received": {
@@ -110806,9 +113189,9 @@
     "Guiri": {
       "index": 12659,
       "owner_key": "Ag8ScwNZpFhH7zgEFacErLAXewgemJNHwrmVVvYd8ahX",
-      "balance": 20504,
+      "balance": 25190,
       "membership_expire_on": 1715289719,
-      "next_cert_issuable_on": 1685938053,
+      "next_cert_issuable_on": 1696510346,
       "certs_received": {
         "THORGAL1968": 1747296018,
         "Colheres": 1746997751,
@@ -110825,18 +113208,33 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Blondinette": {
+      "index": 13578,
+      "owner_key": "AgEToAPbbobAxVkxijonBxJeb31gTC717AV58mJKywoN",
+      "balance": 103234,
+      "membership_expire_on": 1726345100,
+      "next_cert_issuable_on": 1695219234,
+      "certs_received": {
+        "Alfybe": 1757906435,
+        "Kryszu": 1757903029,
+        "Charisma": 1757902700,
+        "Tranquillou": 1757906746,
+        "Corentine": 1757907039,
+        "Domi-Merlinou": 1757906746
+      }
+    },
     "EvaSorel": {
       "index": 5429,
       "owner_key": "AgGZDUzn8mzXQTisqoz4mdGEWUwaq1dfxr3KRaqNnKo7",
-      "balance": 768517,
+      "balance": 798203,
       "membership_expire_on": 1713870812,
-      "next_cert_issuable_on": 1686016827,
+      "next_cert_issuable_on": 1694236968,
       "certs_received": {
         "Crystal": 1747164473,
+        "Henk-Quillan": 1757280936,
         "Gedege": 1699652821,
-        "JeandelAude": 1696742043,
+        "JeandelAude": 1756492365,
         "CathyDebronde": 1747334026,
-        "ASHTARA": 1694926358,
         "Omkara": 1747925586,
         "Roland": 1746215753,
         "annefreda": 1701981509
@@ -110863,7 +113261,7 @@
     "ClaudeD": {
       "index": 9994,
       "owner_key": "AgMToJccwDgQ4EF4VA5kVtVBpV66MqLkvTDqNs136DB9",
-      "balance": 180770,
+      "balance": 220056,
       "membership_expire_on": 1722949886,
       "next_cert_issuable_on": 1668860083,
       "certs_received": {
@@ -110885,7 +113283,7 @@
     "Danielle": {
       "index": 8758,
       "owner_key": "AgZZX1xvxBuGQ611eqz2HL2nnCFpBh46DfYFGLFtNdm6",
-      "balance": 349810,
+      "balance": 381996,
       "membership_expire_on": 1716941793,
       "next_cert_issuable_on": 1685380268,
       "certs_received": {
@@ -110924,7 +113322,7 @@
     "Palmyre": {
       "index": 13085,
       "owner_key": "AgfV7qxFH6Fe69RzZjn9x157N67mvmYbrUXPkCFSSjV9",
-      "balance": 66676,
+      "balance": 106362,
       "membership_expire_on": 1719883367,
       "next_cert_issuable_on": 1689586742,
       "certs_received": {
@@ -110938,7 +113336,7 @@
     "Coucoudidier": {
       "index": 1771,
       "owner_key": "AghoLFNVqTdAJVvKtuZgQcPihNAZNEKABNGpft7cZShG",
-      "balance": 151501,
+      "balance": 168762,
       "membership_expire_on": 1716326703,
       "next_cert_issuable_on": 1686177513,
       "certs_received": {
@@ -110952,6 +113350,7 @@
         "Geohuit": 1696923598,
         "CrapaudCurieux": 1728510958,
         "janhsh": 1707974586,
+        "Lisediez": 1759113717,
         "Michellecuyer26": 1724726524,
         "Calou26": 1743170527,
         "Coolga5575": 1720893619,
@@ -110963,7 +113362,7 @@
     "EcureuilBlanc": {
       "index": 9316,
       "owner_key": "AgjyLU6qMXmsg2usePpDGPuonk8515g9YQSSQX7UAFVQ",
-      "balance": 358256,
+      "balance": 397942,
       "membership_expire_on": 1721418064,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -110978,8 +113377,8 @@
     "CatherineWilkin": {
       "index": 9837,
       "owner_key": "Agmekdrmd1F4phgneUiB1Rz7Faz2oyiafQpMC3v76TBS",
-      "balance": 311161,
-      "membership_expire_on": 1696328965,
+      "balance": 338847,
+      "membership_expire_on": 1725899542,
       "next_cert_issuable_on": 1689140790,
       "certs_received": {
         "NBes2022": 1748440133,
@@ -111006,28 +113405,37 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1672738344,
       "certs_received": {
-        "Eric": 1694559946,
         "Ded": 1713546378,
         "pi_ramide": 1708922149,
         "SicouJess": 1712819021,
         "Juju21": 1703996437,
-        "Paul-B": 1694563562,
-        "sisyphe": 1694560872,
         "Gaelducausse": 1701384411,
-        "ortie": 1694557894,
-        "s00999": 1694558589,
-        "toutoune2189": 1694559284,
-        "Nounoursgt8946": 1694559284,
         "Atharreau": 1733793096
       }
     },
+    "Anni": {
+      "index": 13693,
+      "owner_key": "AgshpivMjyGxey6887EhWVzPNJfFfkRV3xPcFDU9jwp7",
+      "balance": 21858,
+      "membership_expire_on": 1727303800,
+      "next_cert_issuable_on": 1696395116,
+      "certs_received": {
+        "AnabelArmendariz": 1759182385,
+        "Goizargi": 1759182847,
+        "mastres": 1759185262,
+        "Kris_Izaratia": 1759181927,
+        "Estersanjo": 1759185262,
+        "Martuki": 1759182385
+      }
+    },
     "PatHamster": {
       "index": 5050,
       "owner_key": "AgxsndEmidhBohBQHptnxVZm8jYvZeLTsdCJmiLGJH71",
-      "balance": 794046,
+      "balance": 783732,
       "membership_expire_on": 1707404473,
-      "next_cert_issuable_on": 1692422466,
+      "next_cert_issuable_on": 1695871137,
       "certs_received": {
+        "MignoletEmmanuel": 1758601953,
         "OhdeLali": 1701420741,
         "Robin_et_Odile": 1734935105,
         "CoraRose": 1747257002,
@@ -111038,13 +113446,10 @@
         "CrapaudCurieux": 1728594552,
         "Fabi26": 1724433252,
         "Annae": 1742706206,
-        "NirmalaMary": 1694975350,
         "Nico83": 1717213513,
-        "rANdonner": 1696274481,
         "Mika83": 1713594663,
         "AnneD": 1698857448,
         "Pekos": 1739482508,
-        "TailleDouce": 1694150198,
         "Jossy83": 1746054150,
         "Hesjie": 1743128857,
         "GeneBe": 1745386808,
@@ -111058,14 +113463,12 @@
       "balance": 440,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Anukil": 1694211943
-      }
+      "certs_received": {}
     },
     "Magic": {
       "index": 2866,
       "owner_key": "Ah9ehdt4gQp6kfdoNWXBC7zrd6rwpWeu7hw3cmYL95DQ",
-      "balance": 200103,
+      "balance": 239789,
       "membership_expire_on": 1715097442,
       "next_cert_issuable_on": 1677690592,
       "certs_received": {
@@ -111082,7 +113485,7 @@
     "SylvianePetit": {
       "index": 8386,
       "owner_key": "AhCKXYqyUdCk1juF6UTbZp8WDQYGXMTQ9KKBibTE7fVW",
-      "balance": 63938,
+      "balance": 91624,
       "membership_expire_on": 1710290319,
       "next_cert_issuable_on": 1687883777,
       "certs_received": {
@@ -111090,6 +113493,7 @@
         "Andou": 1726617949,
         "Mamouchka": 1729891100,
         "Chatounet": 1740213653,
+        "DanielVienne": 1757272970,
         "NathBro": 1738541816,
         "Sahayim": 1716491175,
         "MailysGAUTHIER": 1716432251,
@@ -111109,7 +113513,7 @@
     "Jacquesencordee": {
       "index": 10443,
       "owner_key": "AhECMHejCFKuPByGND2nwPo4ttyGB2QJne59dcZLKmAi",
-      "balance": 257223,
+      "balance": 296909,
       "membership_expire_on": 1699968003,
       "next_cert_issuable_on": 1688762593,
       "certs_received": {
@@ -111134,7 +113538,7 @@
     "Larz": {
       "index": 3871,
       "owner_key": "AhaZpwi2owdWR23gE4wcGyT12eQy5AGSo4fN73gGUsdw",
-      "balance": 1178635,
+      "balance": 1218321,
       "membership_expire_on": 1715188692,
       "next_cert_issuable_on": 1670596621,
       "certs_received": {
@@ -111150,14 +113554,15 @@
     "Camelodie": {
       "index": 6783,
       "owner_key": "AhcvA5nSAKdziixVsWyHUYE4WCUYJyBTnrChPgeFBNBn",
-      "balance": 592266,
+      "balance": 631952,
       "membership_expire_on": 1701202201,
-      "next_cert_issuable_on": 1666538315,
+      "next_cert_issuable_on": 1693888627,
       "certs_received": {
         "ClaireBrune": 1725843792,
         "DonQuiche": 1707704990,
         "amipierre": 1718244527,
         "Maimouna": 1705720101,
+        "Linata": 1756931027,
         "Tissia": 1710464191,
         "Maaltir": 1705640403,
         "Maia": 1706338222,
@@ -111173,7 +113578,7 @@
     "maelle": {
       "index": 10196,
       "owner_key": "AhgYm7rpSRxUYhUAoiEZ2tAFjdR7pSQb32G1qPzLPv6q",
-      "balance": 310167,
+      "balance": 349853,
       "membership_expire_on": 1698951069,
       "next_cert_issuable_on": 1669213112,
       "certs_received": {
@@ -111192,21 +113597,22 @@
     "GaelC": {
       "index": 1762,
       "owner_key": "AhguU4QXRo7fuNNat8hUNyJPNzA3pcbDet14eqcHZw9Y",
-      "balance": 40471,
+      "balance": 80157,
       "membership_expire_on": 1723209288,
       "next_cert_issuable_on": 1678277762,
       "certs_received": {
-        "NathalieB": 1696644555,
         "OncleDave": 1732244714,
+        "Jag": 1758258774,
         "DCat": 1696806956,
         "lejun": 1707755880,
+        "DavidSaintVoirin": 1758234535,
         "sebastienreis": 1736128589
       }
     },
     "PeterGreen": {
       "index": 6682,
       "owner_key": "AhiXvqSuZQ6eos4f4eTUgHk4QBY5vZ7J92jfSL9CaXxQ",
-      "balance": 5951796,
+      "balance": 5991482,
       "membership_expire_on": 1724969729,
       "next_cert_issuable_on": 1685151287,
       "certs_received": {
@@ -111249,8 +113655,8 @@
     "tilleul": {
       "index": 1396,
       "owner_key": "AhmHfSvC7W66gqgvHXXC2cMbQguEHbiG7typQR8FRD1y",
-      "balance": 966637,
-      "membership_expire_on": 1698954618,
+      "balance": 1006323,
+      "membership_expire_on": 1725386895,
       "next_cert_issuable_on": 1680423318,
       "certs_received": {
         "SvetRuskof": 1699336047,
@@ -111259,14 +113665,13 @@
         "Nyttliv": 1701382378,
         "ayrose": 1745879018,
         "MuseaudeLievre": 1703301712,
-        "Nadou": 1694994954,
         "GolnazBehrouznia": 1730865726
       }
     },
     "Notfifi": {
       "index": 1109,
       "owner_key": "AhtJrpJaFCQ45272KZgdm9jm682xksd1HUCVBGaoCcEg",
-      "balance": 834176,
+      "balance": 873862,
       "membership_expire_on": 1718018161,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -111282,11 +113687,14 @@
     "Sandcreart": {
       "index": 6865,
       "owner_key": "Ahwh1mctkKNtABNY2yK8SACFV4JKAt4Vj2RfJeBai5hv",
-      "balance": 349763,
+      "balance": 405449,
       "membership_expire_on": 1702589553,
-      "next_cert_issuable_on": 1687777748,
+      "next_cert_issuable_on": 1696556830,
       "certs_received": {
         "JessyRipert": 1704850867,
+        "Carma2310": 1757529660,
+        "Alexabeille": 1759182385,
+        "ELEOTIE": 1759204509,
         "Choco": 1706664620,
         "MikaYeel": 1706664620,
         "Voyageur32": 1750802820,
@@ -111299,13 +113707,13 @@
     "lelefontes": {
       "index": 950,
       "owner_key": "Ai6EwhkjFGJKZouatmnDQFzp6nfttvMNJR74xgPXJSgt",
-      "balance": 1016522,
+      "balance": 1056208,
       "membership_expire_on": 1719529909,
       "next_cert_issuable_on": 1689903957,
       "certs_received": {
         "DamienMaupou": 1728948362,
         "yannlefranco": 1707811593,
-        "JulieBen": 1702522378,
+        "JulieBen": 1758330611,
         "aline31": 1710030181,
         "Ced": 1733357780,
         "Sylbok": 1735047457,
@@ -111317,8 +113725,8 @@
     "LORBRUN": {
       "index": 9489,
       "owner_key": "Ai7LWCRFKQCu6Teb6NJ2i7MEmCx8R8osRWc77gbBP7jm",
-      "balance": 248389,
-      "membership_expire_on": 1694455525,
+      "balance": 260137,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678967933,
       "certs_received": {
         "Selena": 1726014049,
@@ -111335,7 +113743,7 @@
     "C13KETSALI": {
       "index": 6925,
       "owner_key": "Ai7XzCbEfTVwv74uxPuCDFj3hgEJ9hnCsDxceqbjdDE",
-      "balance": 189248,
+      "balance": 228934,
       "membership_expire_on": 1702785034,
       "next_cert_issuable_on": 1683982055,
       "certs_received": {
@@ -111363,9 +113771,9 @@
     "Zephyr01": {
       "index": 6545,
       "owner_key": "AiDTeGAgjQQeTFbCP2qdfEMoUumHNYnDyi3dckoTHhx3",
-      "balance": 563284,
-      "membership_expire_on": 1698432506,
-      "next_cert_issuable_on": 1680694979,
+      "balance": 602970,
+      "membership_expire_on": 1725535770,
+      "next_cert_issuable_on": 1694050170,
       "certs_received": {
         "Palladium13": 1709063145,
         "Kristo": 1703297466,
@@ -111381,7 +113789,7 @@
     "Estellea": {
       "index": 6590,
       "owner_key": "AiJNjxsbwj3YLw8EtokpVwXnKd6nYZVnt4jzpAgVHmeb",
-      "balance": 24464,
+      "balance": 64150,
       "membership_expire_on": 1699202637,
       "next_cert_issuable_on": 1691560474,
       "certs_received": {
@@ -111428,7 +113836,7 @@
     "Seraphine": {
       "index": 7784,
       "owner_key": "AiJzAmv6xP6nAUCWdEyvHsr43W1bqBHeNxPimZ8pvJDB",
-      "balance": 319231,
+      "balance": 358917,
       "membership_expire_on": 1704556916,
       "next_cert_issuable_on": 1688028141,
       "certs_received": {
@@ -111460,7 +113868,7 @@
     "FedericoJardin": {
       "index": 4132,
       "owner_key": "AiMvg9eAw4LjxZaMVCtd83KLAEoFZbbLDMLAUtAvkdF1",
-      "balance": 616171,
+      "balance": 655857,
       "membership_expire_on": 1719239113,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -111476,7 +113884,7 @@
     "Emeuh31": {
       "index": 3956,
       "owner_key": "AiS8J7S5SwoBc3E8bQCuUkFmQGjkoaR7DqAvVdLEB277",
-      "balance": 1489917,
+      "balance": 1529603,
       "membership_expire_on": 1721433546,
       "next_cert_issuable_on": 1673506841,
       "certs_received": {
@@ -111499,7 +113907,7 @@
     "kenma": {
       "index": 7371,
       "owner_key": "Aia8sUs9hrSUrkfFqG1AvK52C7hBf2qXDj2XUvMXU7gR",
-      "balance": 551863,
+      "balance": 491549,
       "membership_expire_on": 1707995594,
       "next_cert_issuable_on": 1670247623,
       "certs_received": {
@@ -111513,7 +113921,7 @@
     "Mesange": {
       "index": 7902,
       "owner_key": "Aim5HKWQGhRw4Zn3duqWcoGdU7BikyKPLNrgtpzgsTjL",
-      "balance": 365683,
+      "balance": 387069,
       "membership_expire_on": 1712010570,
       "next_cert_issuable_on": 1689848049,
       "certs_received": {
@@ -111559,7 +113967,7 @@
     "Dolcevita91": {
       "index": 9374,
       "owner_key": "AirDzsMgrMpy6J6JkH4XQAY1ds21QkKcqMC1XDX6Q47b",
-      "balance": 472850,
+      "balance": 512536,
       "membership_expire_on": 1717684951,
       "next_cert_issuable_on": 1665381632,
       "certs_received": {
@@ -111598,7 +114006,7 @@
     "Librice": {
       "index": 11055,
       "owner_key": "AjDTeXm45uGaFf5f5aMM8JddGtjxqWWGTKLs5MM829oy",
-      "balance": 273863,
+      "balance": 313549,
       "membership_expire_on": 1702489917,
       "next_cert_issuable_on": 1680171708,
       "certs_received": {
@@ -111612,7 +114020,7 @@
     "JulieR": {
       "index": 8069,
       "owner_key": "AjFvLR2fmScszzxfpgd5nhkKjet5aJDHMLQaPjwjqHeN",
-      "balance": 502409,
+      "balance": 542095,
       "membership_expire_on": 1708875764,
       "next_cert_issuable_on": 1677390164,
       "certs_received": {
@@ -111626,7 +114034,7 @@
     "Poesyves": {
       "index": 6969,
       "owner_key": "AjMfzXwmx9JnrqJ8uMxCCwnXCcCepNffn2ypn9unXGN5",
-      "balance": 526742,
+      "balance": 587428,
       "membership_expire_on": 1706372702,
       "next_cert_issuable_on": 1685116004,
       "certs_received": {
@@ -111676,7 +114084,7 @@
     "Pomlune": {
       "index": 8117,
       "owner_key": "AjdzZUv4k5gM7q45FGa2tb4f8SQEYViSxCZX4XbtRnjG",
-      "balance": 342781,
+      "balance": 382467,
       "membership_expire_on": 1719232912,
       "next_cert_issuable_on": 1674451007,
       "certs_received": {
@@ -111714,16 +114122,15 @@
         "soeurmilotus": 1724295015,
         "jardin": 1719911875,
         "hinalola": 1719075483,
-        "nana": 1719911875,
-        "Pommedapi": 1696578820
+        "nana": 1719911875
       }
     },
     "FrankMonmagnon": {
       "index": 1994,
       "owner_key": "Ajnq6qcx9EshhvVDvpx5JMvw2fGXWmqcQhPt1rFSi313",
-      "balance": 2273464,
+      "balance": 2313150,
       "membership_expire_on": 1715197644,
-      "next_cert_issuable_on": 1683945736,
+      "next_cert_issuable_on": 1695910544,
       "certs_received": {
         "perenoel": 1752103643,
         "EddyMannino": 1709714075,
@@ -111736,7 +114143,7 @@
     "Filomenapaz": {
       "index": 10853,
       "owner_key": "AjyGGAxzTP89vKf59VS5pyXVM6RCreVpk4EYaDUARQLn",
-      "balance": 26771,
+      "balance": 8157,
       "membership_expire_on": 1702341818,
       "next_cert_issuable_on": 1690698875,
       "certs_received": {
@@ -111755,9 +114162,9 @@
     "Siddh": {
       "index": 11808,
       "owner_key": "Ak64yv7BvvmwKcYs6tDy1KdWLBZyiFXrJnaaQRAHK8Gw",
-      "balance": 184823,
+      "balance": 224509,
       "membership_expire_on": 1708995033,
-      "next_cert_issuable_on": 1687054070,
+      "next_cert_issuable_on": 1696389284,
       "certs_received": {
         "Zap": 1739422922,
         "Poesy": 1746489784,
@@ -111789,9 +114196,9 @@
     "Polaris": {
       "index": 13061,
       "owner_key": "AkAXAg2HWhrr9ArjTCiFfodMmpyzXHmurXR4H7bfRZXv",
-      "balance": 26080,
+      "balance": 11066,
       "membership_expire_on": 1718831109,
-      "next_cert_issuable_on": 1693304183,
+      "next_cert_issuable_on": 1694111176,
       "certs_received": {
         "RuthGuerrero": 1751423188,
         "JACA": 1751412174,
@@ -111814,7 +114221,7 @@
     "ClaireLGM": {
       "index": 12852,
       "owner_key": "AkHKWH5RRjLfSMX98h1unWFYRmBt1kC5FSbvhEwFp1Ui",
-      "balance": 68444,
+      "balance": 108130,
       "membership_expire_on": 1716434753,
       "next_cert_issuable_on": 1689908917,
       "certs_received": {
@@ -111829,7 +114236,7 @@
     "Isaeng": {
       "index": 6922,
       "owner_key": "AkHxN2KHxh2DFAjfvMXRQpJV4GbAWNm7Mv7CM79wqS6t",
-      "balance": 433679,
+      "balance": 473365,
       "membership_expire_on": 1701716621,
       "next_cert_issuable_on": 1669484698,
       "certs_received": {
@@ -111898,7 +114305,7 @@
     "AstrologoDespierto": {
       "index": 8200,
       "owner_key": "AkeasYGuevvwugNtckP6z1cBL83TRR21jUdZ6ecetcyi",
-      "balance": 293586,
+      "balance": 333272,
       "membership_expire_on": 1713291797,
       "next_cert_issuable_on": 1688524163,
       "certs_received": {
@@ -111932,7 +114339,7 @@
     "geneclo34": {
       "index": 7004,
       "owner_key": "AkwKjmb4AQDR92GCjGzjhHExzBt4p4jwionHLV7zNXX",
-      "balance": 260465,
+      "balance": 300151,
       "membership_expire_on": 1702229762,
       "next_cert_issuable_on": 1682334822,
       "certs_received": {
@@ -111984,23 +114391,27 @@
     "Rafael": {
       "index": 13024,
       "owner_key": "Am7NVYKfi161RnBaAzvbtwVkwii7MYfZ3nUnUJ4qoYZn",
-      "balance": 72284,
+      "balance": 111970,
       "membership_expire_on": 1717204117,
-      "next_cert_issuable_on": 1693304183,
+      "next_cert_issuable_on": 1696395443,
       "certs_received": {
+        "Ferpires": 1758914793,
+        "Judit137": 1759486229,
         "Yana": 1750408368,
         "otto": 1750408175,
         "RafaMalheiro": 1750325689,
         "HViegas": 1750361825,
         "Rahhui": 1756406462,
+        "JorgeDraven": 1755748466,
         "PenaBranca": 1750408368,
-        "ElisabeteMartins": 1750325389
+        "ElisabeteMartins": 1750325389,
+        "ManuelSoares": 1756355480
       }
     },
     "kin55puravida": {
       "index": 10052,
       "owner_key": "Am7rbE8ctYk24vQtoBYiFKxcNfNp4tQsw2w6KpZinmQf",
-      "balance": 715830,
+      "balance": 711676,
       "membership_expire_on": 1723036556,
       "next_cert_issuable_on": 1684210445,
       "certs_received": {
@@ -112052,7 +114463,7 @@
     "CaroChante": {
       "index": 8000,
       "owner_key": "AmM3b5yT8D6Cw5Txmb745H41u7gDSHfgWzkuNUVrWF15",
-      "balance": 395164,
+      "balance": 434850,
       "membership_expire_on": 1710889399,
       "next_cert_issuable_on": 1674988601,
       "certs_received": {
@@ -112071,9 +114482,9 @@
     "MercierDominique30": {
       "index": 3691,
       "owner_key": "AmMaAbJaCPrzD5fU273px8VLttLMyVfqLEohCa7V43eh",
-      "balance": 1268799,
+      "balance": 1310985,
       "membership_expire_on": 1707690515,
-      "next_cert_issuable_on": 1691477796,
+      "next_cert_issuable_on": 1693798610,
       "certs_received": {
         "Perlanne": 1742439674,
         "Katiecat": 1739399508,
@@ -112091,7 +114502,7 @@
     "AnA": {
       "index": 10054,
       "owner_key": "AmTRk9ZphrtwNzeeQuEQ5VuGBN9jxxuZ7Dk4zkJ8FDZH",
-      "balance": 286875,
+      "balance": 326561,
       "membership_expire_on": 1724198279,
       "next_cert_issuable_on": 1692712679,
       "certs_received": {
@@ -112106,9 +114517,9 @@
     "Picsou": {
       "index": 13411,
       "owner_key": "AmVEX2GpdaqRSnVymR2owupJv28KRzdV3oZbUqdfeKPR",
-      "balance": 12648,
+      "balance": 52434,
       "membership_expire_on": 1720534116,
-      "next_cert_issuable_on": 1693555162,
+      "next_cert_issuable_on": 1695355658,
       "certs_received": {
         "StefIndigo": 1752993452,
         "Polou": 1752123420,
@@ -112128,7 +114539,7 @@
     "Stan": {
       "index": 8565,
       "owner_key": "AmZceW8RWKdUgzQHAqyTs2TCx8L6E6byqhmjqifuxtCF",
-      "balance": 392873,
+      "balance": 432559,
       "membership_expire_on": 1712385455,
       "next_cert_issuable_on": 1686080503,
       "certs_received": {
@@ -112149,10 +114560,11 @@
     "tano": {
       "index": 3079,
       "owner_key": "AmeJAgoi4ugYruLWV8e4e72SdhmjzSyAw2VAHkvAhAdR",
-      "balance": 1356357,
+      "balance": 1396043,
       "membership_expire_on": 1705534938,
       "next_cert_issuable_on": 1686910991,
       "certs_received": {
+        "fabiolino": 1757461717,
         "Elfedelumiere": 1701673753,
         "diletta": 1710267267,
         "veropuebla": 1742459695,
@@ -112172,7 +114584,7 @@
     "Dan571164": {
       "index": 12293,
       "owner_key": "Amh5v8j9XmGicVerkVuZZVCnt9NhYmeqJvRGhRWT1BCk",
-      "balance": 161592,
+      "balance": 205278,
       "membership_expire_on": 1712506381,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -112186,14 +114598,14 @@
     "Cricri": {
       "index": 5034,
       "owner_key": "AmnUvdmdFxesZ2JEjNxM8WpsVKk9WqiwXdrzzXrjorU",
-      "balance": 637421,
+      "balance": 677107,
       "membership_expire_on": 1716771023,
       "next_cert_issuable_on": 1647263621,
       "certs_received": {
         "philouch": 1709417392,
         "Perrine971": 1750025318,
         "bricodeur": 1700006450,
-        "Ivann971": 1695228966,
+        "Ivann971": 1755923969,
         "lcdan": 1712804296,
         "Corinnedeshaies": 1709771295
       }
@@ -112201,9 +114613,9 @@
     "remol": {
       "index": 10016,
       "owner_key": "Amobvgsw18RYo4JYBq8564AvXnyEQSmzJNHgsgatpHpG",
-      "balance": 226680,
-      "membership_expire_on": 1697592563,
-      "next_cert_issuable_on": 1692325518,
+      "balance": 224066,
+      "membership_expire_on": 1726324666,
+      "next_cert_issuable_on": 1696567647,
       "certs_received": {
         "Alfybe": 1729288585,
         "PhilAngel": 1749707421,
@@ -112219,7 +114631,7 @@
     "Finedelfe": {
       "index": 7396,
       "owner_key": "AmvwWbUbPUcs9DK2EPoDVR2CtxoajSX3RixgXRFjnvjo",
-      "balance": 745010,
+      "balance": 814696,
       "membership_expire_on": 1707160518,
       "next_cert_issuable_on": 1674403780,
       "certs_received": {
@@ -112243,7 +114655,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1636366269,
       "certs_received": {
-        "jeanneymar": 1694405045,
         "Manholy34": 1709168297,
         "Roimain": 1718000094,
         "Marylou": 1699584869
@@ -112260,7 +114671,7 @@
     "Maguy1403": {
       "index": 12364,
       "owner_key": "An6VzY7BxBn6XEX6nsX6AKZoeX5E4xWHc4icdwwqct8T",
-      "balance": 146316,
+      "balance": 186002,
       "membership_expire_on": 1709390709,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -112289,7 +114700,7 @@
     "hugali": {
       "index": 8524,
       "owner_key": "An88n1dAqx9QcArqkG8zGAdcfY7zvwBZmc6QYpj9ipta",
-      "balance": 458502,
+      "balance": 498188,
       "membership_expire_on": 1715020941,
       "next_cert_issuable_on": 1668673889,
       "certs_received": {
@@ -112304,12 +114715,13 @@
     "Daiki": {
       "index": 13448,
       "owner_key": "An9msAapQDL4GJVfEmDBUSoAj8SG15doC3KrzHgE9vsF",
-      "balance": 5340,
+      "balance": 43026,
       "membership_expire_on": 1724091614,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Niranjana": 1756230913,
         "ColetteNavaux": 1755662487,
+        "Sylcol": 1758387916,
         "StephBauer": 1755651259,
         "louirit": 1755662487,
         "Merlinor": 1755737023
@@ -112318,9 +114730,9 @@
     "Mistigri": {
       "index": 9479,
       "owner_key": "AnJMDShMrfNGbxR12zNEVugJefALwEySQRBvgzBFc9XA",
-      "balance": 214260,
+      "balance": 169946,
       "membership_expire_on": 1720378732,
-      "next_cert_issuable_on": 1689143648,
+      "next_cert_issuable_on": 1696485025,
       "certs_received": {
         "Tot16": 1750178671,
         "DaniailesA": 1724581578,
@@ -112329,7 +114741,10 @@
         "Manou": 1725332473,
         "Hina88": 1736052391,
         "JeanneFlowJ": 1724580888,
+        "HeleneSoleil": 1757875372,
         "Vlad": 1724581578,
+        "Kittinyani": 1759341517,
+        "ZimG": 1756085713,
         "Coco-B": 1744869694,
         "KitKat": 1753314213,
         "ArnaudFleuri": 1752280570,
@@ -112345,20 +114760,14 @@
     "Oisyonne": {
       "index": 5865,
       "owner_key": "AnJWarpYm6cDf4MR1wMoWXTCNC2kBLycXayXzXaP7gKd",
-      "balance": 1137033,
-      "membership_expire_on": 1724312916,
+      "balance": 1174563,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668176993,
       "certs_received": {
-        "Nagual": 1695677869,
         "Hernest": 1721252191,
-        "gui_tooun": 1695658301,
         "Icobonhomme": 1718234536,
-        "Stephanos": 1696532525,
-        "EveC": 1695617308,
         "Mazie1991": 1706740342,
-        "ortie": 1695618206,
-        "Herydanslanievre": 1696091121,
-        "MutatisMutandis": 1695597590
+        "ortie": 1758151306
       }
     },
     "VincentLeGribou": {
@@ -112387,15 +114796,16 @@
     "mariech": {
       "index": 9123,
       "owner_key": "AnYWASnxi7LqFHb2hHuTNQ49VLmdbyrTNVSn6YANir6b",
-      "balance": 407925,
+      "balance": 410111,
       "membership_expire_on": 1719601854,
-      "next_cert_issuable_on": 1690088381,
+      "next_cert_issuable_on": 1696595503,
       "certs_received": {
         "Shivanishivani": 1722901417,
         "Ladjack": 1742362535,
         "PhilippeLafontaine": 1722901839,
         "Chrisma1957": 1737689466,
         "pierrem07": 1741939646,
+        "DetiegeChloe": 1759805522,
         "Katecat": 1745957031,
         "7Daniel": 1722900967,
         "Elle": 1722906304,
@@ -112406,14 +114816,13 @@
     "RoselyneBinesse": {
       "index": 263,
       "owner_key": "AnZHUkqYF1Zenum7wXAqRh6xKGvBX9GT9b7kkyPDzTyY",
-      "balance": 1396660,
+      "balance": 1436346,
       "membership_expire_on": 1718898169,
       "next_cert_issuable_on": 1691854144,
       "certs_received": {
         "Bcabon": 1710192817,
         "PhilippeGua53": 1705606508,
         "Segalen2003": 1744954841,
-        "Princesse": 1694133596,
         "Gregory": 1739959010,
         "AlainLebrun": 1703734952,
         "LuciaKorosiova": 1730457751,
@@ -112423,11 +114832,9 @@
         "Recycleur53": 1698268054,
         "aurelie": 1725043281,
         "Christal": 1718177171,
-        "boyeshua": 1693810952,
         "MartineBlinGarry": 1729036676,
         "Floalchimistefee": 1730348973,
         "JeremyBemon": 1735868229,
-        "Nomadanne": 1693984737,
         "AnnickBoubounelle": 1734739448,
         "Alain-Plantes": 1698265477,
         "Jean": 1700723347,
@@ -112441,7 +114848,7 @@
     "Natheo": {
       "index": 3301,
       "owner_key": "AngfUeXfiwMuQTwCya99mJtwz7E4HLmvV6HRSNd4EgXq",
-      "balance": 198673,
+      "balance": 238359,
       "membership_expire_on": 1710856017,
       "next_cert_issuable_on": 1688571309,
       "certs_received": {
@@ -112475,9 +114882,9 @@
     "SOLEIA": {
       "index": 9824,
       "owner_key": "AnoDAVtpMYSEG3Ut5aubTUwmp4tok7ee4VsQn2yoRuhH",
-      "balance": 435478,
-      "membership_expire_on": 1695660149,
-      "next_cert_issuable_on": 1669651328,
+      "balance": 472164,
+      "membership_expire_on": 1725156928,
+      "next_cert_issuable_on": 1693671328,
       "certs_received": {
         "Lisa34": 1727842326,
         "etsaman": 1731810190,
@@ -112500,7 +114907,7 @@
     "Tanka1": {
       "index": 6081,
       "owner_key": "AnwJk35CcJPU1Bf77vrYuQVs1kcFSYC2SFn6z2St3nun",
-      "balance": 511597,
+      "balance": 551283,
       "membership_expire_on": 1720479812,
       "next_cert_issuable_on": 1658746672,
       "certs_received": {
@@ -112518,8 +114925,8 @@
     "AWINGA": {
       "index": 6229,
       "owner_key": "AnxfqLiKbitwDG5DWz4gQKmR5YSv5Ysg7SajdpiQjn7w",
-      "balance": 618767,
-      "membership_expire_on": 1695663452,
+      "balance": 645517,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689667961,
       "certs_received": {
         "DonQuichotte": 1700776180,
@@ -112532,7 +114939,7 @@
     "MonicaHardt": {
       "index": 11509,
       "owner_key": "AnyT1t3hAMJ6SyTytZyAthvAyAVUZvdprE81wZLy8LZf",
-      "balance": 212362,
+      "balance": 252048,
       "membership_expire_on": 1707065409,
       "next_cert_issuable_on": 1686147192,
       "certs_received": {
@@ -112560,7 +114967,7 @@
     "Denfertdecordes": {
       "index": 9503,
       "owner_key": "Ao6PKXrVAKnxuWfNiZSzBRHBfTXezyRxssD9hSDJVh3u",
-      "balance": 222248,
+      "balance": 261934,
       "membership_expire_on": 1720247895,
       "next_cert_issuable_on": 1688762593,
       "certs_received": {
@@ -112581,7 +114988,7 @@
     "feerique": {
       "index": 6998,
       "owner_key": "Ao6eL7MBwfUTgfnJjMDs2wuJVwrm6SqYB6AbdsCQZeiK",
-      "balance": 606844,
+      "balance": 646530,
       "membership_expire_on": 1709651810,
       "next_cert_issuable_on": 1662952173,
       "certs_received": {
@@ -112599,7 +115006,7 @@
     "SoulClayIbiza": {
       "index": 11355,
       "owner_key": "AoMb9hTkvQ89pV49gCoPu7w7HK4jh4B1QpQF6ZQoXfuS",
-      "balance": 213847,
+      "balance": 253533,
       "membership_expire_on": 1705356417,
       "next_cert_issuable_on": 1683730432,
       "certs_received": {
@@ -112622,8 +115029,8 @@
     "Dzsaga": {
       "index": 4431,
       "owner_key": "AoTGA6ZjTiW8cDaK6v4EvdyDu1DkgeMNmyEaJSJnVUQv",
-      "balance": 701848,
-      "membership_expire_on": 1695382629,
+      "balance": 725364,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689809550,
       "certs_received": {
         "JadeWolf": 1754520494,
@@ -112647,7 +115054,7 @@
     "CelineB": {
       "index": 8119,
       "owner_key": "AofP4XdzjobYnSNhj4iN1vg2Jsb338TD6oTVxT21mAFN",
-      "balance": 437805,
+      "balance": 477491,
       "membership_expire_on": 1712015901,
       "next_cert_issuable_on": 1684839269,
       "certs_received": {
@@ -112665,7 +115072,7 @@
     "Yamaneko": {
       "index": 2287,
       "owner_key": "AohHBn2qPwfLvYwxV5CYF11w7RXUV276ekLnVc7LKfhT",
-      "balance": 367635,
+      "balance": 407321,
       "membership_expire_on": 1709911009,
       "next_cert_issuable_on": 1681177645,
       "certs_received": {
@@ -112684,7 +115091,7 @@
     "Cat": {
       "index": 1209,
       "owner_key": "AopwTfXhj8VqZReFJYGGWnoWnXNj3RgaqFcGGywXpZrD",
-      "balance": 2465020,
+      "balance": 2504706,
       "membership_expire_on": 1716986461,
       "next_cert_issuable_on": 1690787467,
       "certs_received": {
@@ -112709,7 +115116,6 @@
         "Marie81": 1753293846,
         "Helene-petiteriviere": 1712259233,
         "Hassina": 1723012481,
-        "CarolineFrd": 1694289468,
         "genevievegarcia": 1724574744,
         "loveinagain81": 1739998531,
         "Manholy34": 1716335173,
@@ -112732,15 +115138,15 @@
         "Philae": 1729475839,
         "PascalGuillemain": 1710207991,
         "Christophe-C": 1716859911,
-        "Oce": 1693504498,
         "Hdsaf": 1719718661,
-        "Aleksa": 1711391813
+        "Aleksa": 1711391813,
+        "mollenthiel": 1759709058
       }
     },
     "SebastienMaire": {
       "index": 7020,
       "owner_key": "Aor8jsbu6Pvy2TsGUNgsfFJrALsUCC29WmR5kwf7SyWM",
-      "balance": 593523,
+      "balance": 633209,
       "membership_expire_on": 1707056663,
       "next_cert_issuable_on": 1675571728,
       "certs_received": {
@@ -112756,7 +115162,7 @@
     "CosmicClown": {
       "index": 5360,
       "owner_key": "ApCZzGdJeyphuDMyfgfjTtLZLWaZjEtBARvKZaFrhBgq",
-      "balance": 381148,
+      "balance": 420834,
       "membership_expire_on": 1718454026,
       "next_cert_issuable_on": 1688736860,
       "certs_received": {
@@ -112770,7 +115176,7 @@
     "Victorapisair": {
       "index": 12123,
       "owner_key": "ApG3KGoc6QcKnjayQGzUFAtWaG1U4v8JJnCCZQjC7Xdc",
-      "balance": 184844,
+      "balance": 224530,
       "membership_expire_on": 1711245511,
       "next_cert_issuable_on": 1683235814,
       "certs_received": {
@@ -112786,7 +115192,7 @@
     "elisabethprivate": {
       "index": 7184,
       "owner_key": "ApGuG8J6dLgj16jnpqNgxeCmPNjhY1iWHNiBVKzgB6Nq",
-      "balance": 622835,
+      "balance": 644021,
       "membership_expire_on": 1704902515,
       "next_cert_issuable_on": 1662557282,
       "certs_received": {
@@ -112808,14 +115214,13 @@
       "next_cert_issuable_on": 1687160129,
       "certs_received": {
         "Helenep": 1754807368,
-        "Joailes38": 1693848697,
         "Pirate2rue": 1751400649
       }
     },
     "Haze": {
       "index": 1298,
       "owner_key": "ApUuYTBVaXv6VePgKzHgYQ7Me5apyJCXBDdVqNjjzyEz",
-      "balance": 399428,
+      "balance": 439114,
       "membership_expire_on": 1703190643,
       "next_cert_issuable_on": 1658134376,
       "certs_received": {
@@ -112830,7 +115235,7 @@
     "Nineige": {
       "index": 2149,
       "owner_key": "ApfBRFRsDdYQNxzxPPsWtvN2mKE688gs2QquAJV49vTz",
-      "balance": 1164290,
+      "balance": 1203976,
       "membership_expire_on": 1703951481,
       "next_cert_issuable_on": 1672470575,
       "certs_received": {
@@ -112862,7 +115267,7 @@
     "pvincent": {
       "index": 2638,
       "owner_key": "AphXGquFPVsYqNKy1UXLmMFmbg7Nd7jphtjiH9PmYx5j",
-      "balance": 1589466,
+      "balance": 1629152,
       "membership_expire_on": 1718300266,
       "next_cert_issuable_on": 1688347730,
       "certs_received": {
@@ -112880,7 +115285,7 @@
     "Barisamira": {
       "index": 10668,
       "owner_key": "ApkLry44FqEqUsCGMq4u21YAuTQ1RFb1voY75cHdM1Eb",
-      "balance": 287397,
+      "balance": 327083,
       "membership_expire_on": 1701441418,
       "next_cert_issuable_on": 1685962147,
       "certs_received": {
@@ -112895,9 +115300,9 @@
     "Migus01": {
       "index": 11513,
       "owner_key": "ApoVN8V1rNEMdvh7G4MpJQvMNH7ZEszF8Kkki2UrgXQp",
-      "balance": 201757,
+      "balance": 258681,
       "membership_expire_on": 1706655642,
-      "next_cert_issuable_on": 1687316444,
+      "next_cert_issuable_on": 1694856161,
       "certs_received": {
         "Cygogne22": 1754248748,
         "Tidus": 1738348859,
@@ -112918,7 +115323,7 @@
     "LionelB": {
       "index": 11763,
       "owner_key": "Apu7sTijpaxXEkrpPVSEF7WKTASXDLaTzgab5U3fpYGr",
-      "balance": 723000,
+      "balance": 762686,
       "membership_expire_on": 1708794174,
       "next_cert_issuable_on": 1689602541,
       "certs_received": {
@@ -112939,8 +115344,8 @@
     "DidierRosier": {
       "index": 1958,
       "owner_key": "ApuEzLgHbx2waKXjmk7Gyt8vXBVK7RWXxGrwmTghVH6h",
-      "balance": 409601,
-      "membership_expire_on": 0,
+      "balance": 412835,
+      "membership_expire_on": 1727979008,
       "next_cert_issuable_on": 1673442619,
       "certs_received": {
         "Helene-petiteriviere": 1708246157,
@@ -112958,9 +115363,9 @@
     "YoannMangue": {
       "index": 1873,
       "owner_key": "ApvXAzcy8hUUHu7CBUHdu1PRKbKWBXNb49smvQsnU3dk",
-      "balance": 1477840,
+      "balance": 1517526,
       "membership_expire_on": 1724495853,
-      "next_cert_issuable_on": 1686367535,
+      "next_cert_issuable_on": 1695866263,
       "certs_received": {
         "SevanArevian": 1709443086,
         "vibes": 1701554728,
@@ -112969,15 +115374,16 @@
         "Leito": 1703882646,
         "Lumieredidier": 1703800407,
         "thomasensp": 1699577090,
+        "AnneM": 1758911198,
         "TheoduleG1": 1700580799
       }
     },
     "Louisbeth": {
       "index": 13450,
       "owner_key": "Apwhq1To8Xc6V1moEHZfGzWxBLSjRjJPXk3z6vcBJGb2",
-      "balance": 4272,
+      "balance": 43958,
       "membership_expire_on": 1723832136,
-      "next_cert_issuable_on": 1693294186,
+      "next_cert_issuable_on": 1695711256,
       "certs_received": {
         "yannlefranco": 1755418001,
         "Vertumne": 1755836076,
@@ -112989,26 +115395,21 @@
     "Olacelou": {
       "index": 5696,
       "owner_key": "Aq1CJrSTsK3zbs9oumAvXS3F9FbrUMk5htQ4qtqa2PXN",
-      "balance": 655519,
+      "balance": 695205,
       "membership_expire_on": 1719964030,
       "next_cert_issuable_on": 1688479728,
       "certs_received": {
         "KreenBulle51": 1699142914,
-        "IsabelleGlorian": 1694953822,
         "Elie88": 1718676887,
         "ArmandeHumbert": 1734567735,
         "Claudirland": 1715214352,
         "Iperloop": 1742612537,
-        "Erikem": 1695009811,
-        "Eloi": 1695163791,
-        "CClement": 1694929827,
         "AngeEden": 1721875086,
         "Liminence": 1721229775,
         "Diogox51": 1710820060,
         "Sandylore": 1720429192,
         "AngeliqueCharton": 1734558595,
         "FreeLight": 1729079103,
-        "hypericum": 1694888491,
         "LaureJacob51": 1716733574,
         "Keramina51": 1728057797,
         "Martienne": 1743039234
@@ -113017,7 +115418,7 @@
     "BernardDuponchelle": {
       "index": 11879,
       "owner_key": "AqEjBrZ5wSStVKRCjrbkySXyuCQWbUgtiLPBS9PnYSVY",
-      "balance": 810086,
+      "balance": 1050272,
       "membership_expire_on": 1708903466,
       "next_cert_issuable_on": 1691310045,
       "certs_received": {
@@ -113028,6 +115429,7 @@
         "MikaYeel": 1740981979,
         "LilianeLilou": 1740971994,
         "PorteduCiel": 1740786915,
+        "Tontonmika": 1756882365,
         "FabienneParienti": 1741502138,
         "ElricdeBelen": 1741192084,
         "TenShao": 1741289400,
@@ -113039,7 +115441,7 @@
     "Kaia": {
       "index": 8410,
       "owner_key": "AqHNhGrADfnzfmQo7GjAJoL7JiX4FEEp6ydjYHbfrU1Z",
-      "balance": 663634,
+      "balance": 739320,
       "membership_expire_on": 1714855963,
       "next_cert_issuable_on": 1683371394,
       "certs_received": {
@@ -113055,7 +115457,7 @@
     "Seravdp": {
       "index": 9338,
       "owner_key": "AqHdqn6Yp85pkVGXnaRr8vULhnDAaL8VYsbGfwG7g1ap",
-      "balance": 335554,
+      "balance": 375240,
       "membership_expire_on": 1720989139,
       "next_cert_issuable_on": 1689504800,
       "certs_received": {
@@ -113072,7 +115474,7 @@
     "agnesphilippe": {
       "index": 11744,
       "owner_key": "AqLNsBqGutRU4ZgpzqZR2HXAh7Gju6Qpe9sx6pkXf1F7",
-      "balance": 278463,
+      "balance": 288149,
       "membership_expire_on": 1708513514,
       "next_cert_issuable_on": 1677821092,
       "certs_received": {
@@ -113099,9 +115501,9 @@
     "MaryBricteux": {
       "index": 7571,
       "owner_key": "AqNgum7w24QL6woC5tvKwxZkAc5uknQzuVsxbHZC6xok",
-      "balance": 257237,
+      "balance": 271933,
       "membership_expire_on": 1706738127,
-      "next_cert_issuable_on": 1693216789,
+      "next_cert_issuable_on": 1694967549,
       "certs_received": {
         "marcile": 1750838134,
         "Lauriernoble": 1711931936,
@@ -113120,7 +115522,7 @@
     "LeahTecheneRomera": {
       "index": 8554,
       "owner_key": "AqRC88C2UKBnvKY4EBSnCFUrJuoBNeWWCPhr4qpWjckm",
-      "balance": 459216,
+      "balance": 498902,
       "membership_expire_on": 1718247169,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -113140,7 +115542,7 @@
     "adamlisa": {
       "index": 6894,
       "owner_key": "AqWiHRfaQksFW5zk8o2WtKMNnngdEV2C6qWawbSRnprF",
-      "balance": 598691,
+      "balance": 638377,
       "membership_expire_on": 1704242234,
       "next_cert_issuable_on": 1648179004,
       "certs_received": {
@@ -113154,7 +115556,7 @@
     "Sylvieb": {
       "index": 6853,
       "owner_key": "AqXTf6NRdRMfrbUriJQ2d1815tJmELhbyYsZvbhs9MpE",
-      "balance": 2373104,
+      "balance": 2438790,
       "membership_expire_on": 1701732816,
       "next_cert_issuable_on": 1692700544,
       "certs_received": {
@@ -113176,6 +115578,7 @@
         "DominiqueA": 1723670920,
         "ThomasBourdon": 1707014942,
         "fanfan": 1715624991,
+        "Ange4020": 1759377022,
         "Lolobuss": 1707016300,
         "Bebeth": 1731958315,
         "DidierPapillon": 1706669687,
@@ -113193,7 +115596,7 @@
     "severinem": {
       "index": 2491,
       "owner_key": "AqY67mqFJwiUMSSpvSTNSCiPqF3ANApheK5n6tu6jDwt",
-      "balance": 1481673,
+      "balance": 1521359,
       "membership_expire_on": 1704756657,
       "next_cert_issuable_on": 1687948102,
       "certs_received": {
@@ -113202,17 +115605,18 @@
         "gaaltic": 1747931764,
         "MarioD": 1750991569,
         "Ceriseblu": 1698208766,
-        "MoulinMuriel": 1696706100
+        "ChristopheRobine": 1757474273
       }
     },
     "JoelleB": {
       "index": 6810,
       "owner_key": "AqhVsQFj2WqPMRTvr1y9NXmZsYkGTkyrXJ7uxsB3Udxy",
-      "balance": 489605,
+      "balance": 529291,
       "membership_expire_on": 1699903365,
       "next_cert_issuable_on": 1678791076,
       "certs_received": {
         "NathalieCokelaer": 1704858743,
+        "Monette": 1757485587,
         "Anandaa": 1704846665,
         "Nat317": 1706006864,
         "Gigimit57": 1743491883,
@@ -113240,7 +115644,7 @@
     "SylChris": {
       "index": 8360,
       "owner_key": "AqwnfY2pJQcPAPd5mvQcjVxCh1pU6sncWYtD36YmaTNM",
-      "balance": 450451,
+      "balance": 490137,
       "membership_expire_on": 1718641038,
       "next_cert_issuable_on": 1654570453,
       "certs_received": {
@@ -113255,7 +115659,7 @@
     "REK": {
       "index": 11366,
       "owner_key": "AqxUuE5eewZAap11EZRvu7YKLQ5ueQxaeD75qiCufhTi",
-      "balance": 228270,
+      "balance": 267956,
       "membership_expire_on": 1706107061,
       "next_cert_issuable_on": 1682429759,
       "certs_received": {
@@ -113280,7 +115684,7 @@
     "Virginielouis": {
       "index": 10819,
       "owner_key": "Ar4PshCrRCrjQV81pJTmsMoqxvLtzaDcqSdJDTpYAx8g",
-      "balance": 278925,
+      "balance": 318611,
       "membership_expire_on": 1699880110,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -113294,7 +115698,7 @@
     "Latinalize333": {
       "index": 2725,
       "owner_key": "ArB6ar6Xpz7sh2APrqha8RLftHZegU5PfBHegDaYAQkN",
-      "balance": 405050,
+      "balance": 194736,
       "membership_expire_on": 1720982881,
       "next_cert_issuable_on": 1641388779,
       "certs_received": {
@@ -113302,17 +115706,23 @@
         "marie-blanche": 1701315409,
         "SachaCirque": 1701315409,
         "Katou": 1701315409,
+        "nashira": 1756748048,
         "Andrelie": 1701315099,
+        "Choupinette": 1757184566,
         "Lassoupalortie": 1701352306,
         "LelievreJulia": 1697439722,
         "OlivierRed": 1697056237,
-        "Nyttliv": 1701838142
+        "Anita": 1757184566,
+        "HenriRGN": 1757183832,
+        "LOLOBOBO11": 1757184566,
+        "Nyttliv": 1701838142,
+        "Monok": 1757184566
       }
     },
     "Ecotros": {
       "index": 9436,
       "owner_key": "ArGEqusZUnMijvfavfauq85uyy34yWAPQNi7StkcNb83",
-      "balance": 2205044,
+      "balance": 2274730,
       "membership_expire_on": 1720100337,
       "next_cert_issuable_on": 1690113276,
       "certs_received": {
@@ -113321,6 +115731,7 @@
         "sheveck": 1725048134,
         "ElenaMoshkina": 1725247051,
         "conchitaSIMON": 1745731070,
+        "CecilePCPenyaflor": 1758355305,
         "brufaganya": 1725492881,
         "Happyculteur": 1733768892,
         "Bianca": 1725557248,
@@ -113331,9 +115742,9 @@
     "mariabiodanza": {
       "index": 9590,
       "owner_key": "ArGRAXeX8CfT3jZW9RxZZNziNs4wfPraRnxgFgQ9UB4M",
-      "balance": 174422,
+      "balance": 287784,
       "membership_expire_on": 1722459042,
-      "next_cert_issuable_on": 1684401084,
+      "next_cert_issuable_on": 1694335246,
       "certs_received": {
         "LosMundosdeKrull": 1740699100,
         "JF13": 1730579741,
@@ -113347,9 +115758,11 @@
         "unica": 1742152064,
         "MaiteTudela": 1736279637,
         "Chus": 1726020351,
+        "Damadespadas": 1757364092,
         "Isabella": 1736200633,
         "Elenarepostera": 1736207422,
         "Christine13": 1729026885,
+        "MiguelOssa": 1757375921,
         "Leia": 1736611353,
         "Nauan": 1738907458,
         "edubotaoo": 1733215851,
@@ -113367,6 +115780,7 @@
         "CristinaAbella": 1726538772,
         "ABLITERO": 1736194263,
         "MAULOVI": 1736197748,
+        "GuillermoHarmonia": 1757376566,
         "EduZapping": 1740633320,
         "alberto_wabisabi": 1726799922,
         "BruBraveLez": 1732053771,
@@ -113376,7 +115790,7 @@
     "RAINBOW": {
       "index": 8636,
       "owner_key": "ArKo2vUvMeDDnccQDohRBSgzv3Aeq3k8ifn2LYoa3Lhp",
-      "balance": 425270,
+      "balance": 464956,
       "membership_expire_on": 1721598248,
       "next_cert_issuable_on": 1679994155,
       "certs_received": {
@@ -113394,7 +115808,7 @@
     "Carojune": {
       "index": 12418,
       "owner_key": "ArNcDHkD5sQbGnWMKZuhtv7n6yRehQPvVakYsGTMPA49",
-      "balance": 155908,
+      "balance": 195594,
       "membership_expire_on": 1709866889,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -113417,8 +115831,8 @@
     "Squale43": {
       "index": 5936,
       "owner_key": "ArTg3jpehnkTEER26BeU9KSW71ijesybAvencZDGzjwo",
-      "balance": 661011,
-      "membership_expire_on": 1695772496,
+      "balance": 689917,
+      "membership_expire_on": 1728178473,
       "next_cert_issuable_on": 1673247601,
       "certs_received": {
         "jeje43": 1698186875,
@@ -113428,7 +115842,7 @@
         "jokoli": 1740898497,
         "natascha": 1718502124,
         "KaptainMarleau": 1698142283,
-        "Canguy43": 1698092344,
+        "Canguy43": 1759735722,
         "CedrickPiwo": 1728437737,
         "charlydurondpoint": 1698197903,
         "ptitevero": 1698297006,
@@ -113439,7 +115853,7 @@
     "CecileSg": {
       "index": 9304,
       "owner_key": "ArX5qAPTBKdy1Jrr2QAUuWvckjakX4FjngS5BnmfJmyw",
-      "balance": 366139,
+      "balance": 405825,
       "membership_expire_on": 1724342691,
       "next_cert_issuable_on": 1669216318,
       "certs_received": {
@@ -113453,8 +115867,8 @@
     "huguette": {
       "index": 9717,
       "owner_key": "ArXnzzdUq1TZd28VryfxsGDEYtpyLCfix3L1qLGohQjq",
-      "balance": 344991,
-      "membership_expire_on": 1694457408,
+      "balance": 356739,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675077354,
       "certs_received": {
         "dch38": 1727548117,
@@ -113486,7 +115900,7 @@
     "gpsqueeek": {
       "index": 41,
       "owner_key": "ArcfiCb3FWBonodGtiznCdBdCH5EJTLUdAFHR4nRM4zf",
-      "balance": 443889,
+      "balance": 483575,
       "membership_expire_on": 1717845694,
       "next_cert_issuable_on": 1689999445,
       "certs_received": {
@@ -113496,7 +115910,6 @@
         "YannKervran": 1700725978,
         "Nartagnan": 1742759770,
         "paidge": 1701588522,
-        "Fleur-du-renouveau": 1695935689,
         "Jeangraine": 1720668249,
         "HugoTrentesaux": 1721418988,
         "OlDog": 1709877917,
@@ -113520,7 +115933,7 @@
     "tighane": {
       "index": 5487,
       "owner_key": "Arfy6BTnP6DyKJ9mRRvcDEh6yY7sm7oGTb9oRft8pmUp",
-      "balance": 562681,
+      "balance": 602367,
       "membership_expire_on": 1701446795,
       "next_cert_issuable_on": 1679570729,
       "certs_received": {
@@ -113547,7 +115960,7 @@
     "menardo": {
       "index": 13384,
       "owner_key": "Aroe7jaKo54uSXXB8drXWoPZAX5auFQohBJrjdiYgwCf",
-      "balance": 43452,
+      "balance": 83138,
       "membership_expire_on": 1722867410,
       "next_cert_issuable_on": 1693203952,
       "certs_received": {
@@ -113576,11 +115989,10 @@
     "thierry38": {
       "index": 4177,
       "owner_key": "AruGq9VwaG4AVPthsmSekHjr6S3HfLgCz3NbvnhGoGi",
-      "balance": 1112469,
+      "balance": 1152155,
       "membership_expire_on": 1716201292,
-      "next_cert_issuable_on": 1693059727,
+      "next_cert_issuable_on": 1695700171,
       "certs_received": {
-        "adridu38": 1694302227,
         "NopamasYC": 1727559164,
         "ThierryS": 1749690319,
         "Kristo": 1705028893,
@@ -113601,7 +116013,7 @@
     "JeromeP": {
       "index": 8526,
       "owner_key": "ArxumkWQJdyFgZ5Mjx3GDFZP5xcCzoHdekWpTyJs9jfa",
-      "balance": 344570,
+      "balance": 384256,
       "membership_expire_on": 1719774985,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -113615,7 +116027,7 @@
     "LehFlavie": {
       "index": 12490,
       "owner_key": "As26T1NJC8PFgG9Wkq4CuX1TfpUX7xENgyheYtPAU2QZ",
-      "balance": 151840,
+      "balance": 191526,
       "membership_expire_on": 1712230309,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -113629,9 +116041,9 @@
     "Centifolia": {
       "index": 7192,
       "owner_key": "As5QMNneA4Ku7ug5LBGKnwS22kyudWa4rR68PpT3zj4",
-      "balance": 334601,
+      "balance": 333287,
       "membership_expire_on": 1703982801,
-      "next_cert_issuable_on": 1678584400,
+      "next_cert_issuable_on": 1696589483,
       "certs_received": {
         "Robin_et_Odile": 1744482959,
         "BrigitteBC": 1743402995,
@@ -113682,7 +116094,7 @@
     "Val73230": {
       "index": 10541,
       "owner_key": "AsFBi5FnrgWqmP6ELqX7bUTNMqwXqCM8jAhgkwtdBEBK",
-      "balance": 296910,
+      "balance": 336596,
       "membership_expire_on": 1700697522,
       "next_cert_issuable_on": 1688970498,
       "certs_received": {
@@ -113708,7 +116120,7 @@
     "Ced": {
       "index": 161,
       "owner_key": "AsHFFhV3xa1vR4QME65yngyHGS5w4oAwjvMJ3gJEYcn5",
-      "balance": 2194027,
+      "balance": 2233713,
       "membership_expire_on": 1714662720,
       "next_cert_issuable_on": 1692406874,
       "certs_received": {
@@ -113724,9 +116136,9 @@
     "FRENOTSYLVIE": {
       "index": 9918,
       "owner_key": "AsR6SURhdhWfm1gaxDcDkoWKpxuHVoWyBdZFnVGb92oM",
-      "balance": 213253,
-      "membership_expire_on": 1697066626,
-      "next_cert_issuable_on": 1688512504,
+      "balance": 232939,
+      "membership_expire_on": 1726424858,
+      "next_cert_issuable_on": 1694943113,
       "certs_received": {
         "DanWF": 1730797752,
         "mariegaby": 1752371795,
@@ -113754,7 +116166,7 @@
     "HelenePrudhomme26": {
       "index": 10562,
       "owner_key": "AsgZBzzPkDnnj6inFFHnbRmSTN5tnNMJHRNK9RVu9jgT",
-      "balance": 294551,
+      "balance": 334237,
       "membership_expire_on": 1701122615,
       "next_cert_issuable_on": 1679814319,
       "certs_received": {
@@ -113777,9 +116189,9 @@
     "NatTher": {
       "index": 2715,
       "owner_key": "Aszdsm3w1Sn6SygrVbatDbFDSgE9tW2fSRykAHSVLg7J",
-      "balance": 1083079,
+      "balance": 1021365,
       "membership_expire_on": 1712255543,
-      "next_cert_issuable_on": 1692195319,
+      "next_cert_issuable_on": 1695474792,
       "certs_received": {
         "toutenstock": 1697569073,
         "Lenie": 1753156476,
@@ -113808,7 +116220,7 @@
     "Wildflower": {
       "index": 12465,
       "owner_key": "At8EkgeB7X1zPdzhbsEeZZXCxDaSNLwoxgnNoNUH72vW",
-      "balance": 150568,
+      "balance": 14194,
       "membership_expire_on": 1714002131,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -113824,7 +116236,7 @@
     "Bastian_Leguay": {
       "index": 11465,
       "owner_key": "AtAM9Y4HEE5vTtTrhnnsBg8BWfnyW8Wut2idmUr5277t",
-      "balance": 226739,
+      "balance": 266425,
       "membership_expire_on": 1707086746,
       "next_cert_issuable_on": 1675662223,
       "certs_received": {
@@ -113841,7 +116253,7 @@
     "bellisa": {
       "index": 8882,
       "owner_key": "AtLd2fNXA9yLrsqzaExcnYb6b8y2MgwFHVajVvvuvYBR",
-      "balance": 428398,
+      "balance": 468084,
       "membership_expire_on": 1715168417,
       "next_cert_issuable_on": 1691026520,
       "certs_received": {
@@ -113859,7 +116271,7 @@
     "SophieCheuvry": {
       "index": 9417,
       "owner_key": "AtMb9n3XMqFVH9Lkt7dpfWKGYmm5sTb3fKVHASqRdxfJ",
-      "balance": 402565,
+      "balance": 442251,
       "membership_expire_on": 1724468705,
       "next_cert_issuable_on": 1681268590,
       "certs_received": {
@@ -113878,8 +116290,8 @@
     "AndreaMolinero": {
       "index": 9480,
       "owner_key": "AtfJNUrDbbMnEBKN7hjS9YcncmN3WnNy1cAu8WF5VtbP",
-      "balance": 334372,
-      "membership_expire_on": 0,
+      "balance": 350542,
+      "membership_expire_on": 1726960103,
       "next_cert_issuable_on": 1670828908,
       "certs_received": {
         "Alexcap77": 1725738234,
@@ -113910,14 +116322,12 @@
       "balance": 1362453,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "GaspardForissier": 1695184692
-      }
+      "certs_received": {}
     },
     "Remidrome26": {
       "index": 10575,
       "owner_key": "AtoRg6bcRfWCY8WaUXJBJsWLfotp6N4FN5RpzQiUPfdc",
-      "balance": 269251,
+      "balance": 308937,
       "membership_expire_on": 1700691759,
       "next_cert_issuable_on": 1669954733,
       "certs_received": {
@@ -113941,7 +116351,7 @@
     "armoni": {
       "index": 4051,
       "owner_key": "AtpgrbuCxpF6gx1nhH2xVsQuEbA7ywGXzHp2GiBG5zsn",
-      "balance": 951585,
+      "balance": 991271,
       "membership_expire_on": 1722478075,
       "next_cert_issuable_on": 1691564184,
       "certs_received": {
@@ -113973,7 +116383,7 @@
     "FlorianBriand": {
       "index": 7595,
       "owner_key": "Atu433faSqyeCF4pYmZ1ykn9FS7u9ZktrweWMDCNMWVx",
-      "balance": 542096,
+      "balance": 581782,
       "membership_expire_on": 1707330208,
       "next_cert_issuable_on": 1649567878,
       "certs_received": {
@@ -113996,7 +116406,7 @@
     "Ganou": {
       "index": 8396,
       "owner_key": "Au19MAWhtEGQsXredDSoJp12rf72toJYFSFyt9z493Vc",
-      "balance": 623409,
+      "balance": 659095,
       "membership_expire_on": 1719409916,
       "next_cert_issuable_on": 1689855294,
       "certs_received": {
@@ -114017,7 +116427,7 @@
     "Dekoakonkoz": {
       "index": 8378,
       "owner_key": "Au2aDU7AAqmSpkgZRxfeBdZxTpX5igrt4mBVffdyUTsv",
-      "balance": 287814,
+      "balance": 327500,
       "membership_expire_on": 1718632242,
       "next_cert_issuable_on": 1659544370,
       "certs_received": {
@@ -114034,7 +116444,7 @@
     "Schtoutz": {
       "index": 3361,
       "owner_key": "Au2c2xAjxarz9k2h1kDVkQJYdcAnBiByVd5YajB6gw3m",
-      "balance": 1737676,
+      "balance": 1777362,
       "membership_expire_on": 1703084401,
       "next_cert_issuable_on": 1688048148,
       "certs_received": {
@@ -114052,7 +116462,7 @@
     "Nico83": {
       "index": 8259,
       "owner_key": "Au8xD7wnvpZMzKumvSZ8aLLQFWno6cZAZYwjRUsmReHD",
-      "balance": 219637,
+      "balance": 259323,
       "membership_expire_on": 1708276590,
       "next_cert_issuable_on": 1676807285,
       "certs_received": {
@@ -114070,9 +116480,9 @@
     "nussyna": {
       "index": 12553,
       "owner_key": "Au9xnzybWDsPFXCpMAw8C3skvx1Lx5PqF5Aa9XkRzRso",
-      "balance": 261875,
+      "balance": 320561,
       "membership_expire_on": 1714132964,
-      "next_cert_issuable_on": 1691425307,
+      "next_cert_issuable_on": 1695033365,
       "certs_received": {
         "Silvi": 1752559805,
         "riky": 1746350123,
@@ -114085,6 +116495,7 @@
         "JoanaGomez": 1754271490,
         "MaiteBel": 1746378670,
         "CristinaAbella": 1754547913,
+        "EMA": 1758342108,
         "Marianfs": 1754465306,
         "OrganikSolution": 1746437040,
         "AndresXaudi": 1746389200
@@ -114093,8 +116504,8 @@
     "Elisourire": {
       "index": 5954,
       "owner_key": "AuCztuSd4hwsxRa69bYSTkn6bpcVGQMq2CPKczUT7Q5D",
-      "balance": 691747,
-      "membership_expire_on": 1695508366,
+      "balance": 716341,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1674222521,
       "certs_received": {
         "Amymary": 1714587213,
@@ -114117,7 +116528,7 @@
     "CelineJune70": {
       "index": 8088,
       "owner_key": "AuLkWFq8eELw2vANhTeroVQ7hGM2gMByPCmYQ4HHdfR4",
-      "balance": 495107,
+      "balance": 534793,
       "membership_expire_on": 1713912688,
       "next_cert_issuable_on": 1690112957,
       "certs_received": {
@@ -114132,7 +116543,7 @@
     "Marita": {
       "index": 10878,
       "owner_key": "AuNWsrLpfrRppf3aRcJ5SS8BLkWg6tmpXDiYCrXbVfh1",
-      "balance": 275487,
+      "balance": 315173,
       "membership_expire_on": 1701910924,
       "next_cert_issuable_on": 1679486847,
       "certs_received": {
@@ -114147,7 +116558,7 @@
     "Natheidi": {
       "index": 7041,
       "owner_key": "AuSR38oUWSme9Ga9w1xcTFTTzTU8AF4mSkGjHQ9GnGDZ",
-      "balance": 626691,
+      "balance": 695377,
       "membership_expire_on": 1706620039,
       "next_cert_issuable_on": 1678871096,
       "certs_received": {
@@ -114173,7 +116584,7 @@
     "Lupus": {
       "index": 9042,
       "owner_key": "AuTiAi3EpL3YiWJKun8jLjWBW8CCUCxtfmSW5vCFryWH",
-      "balance": 390925,
+      "balance": 430611,
       "membership_expire_on": 1717500583,
       "next_cert_issuable_on": 1682425784,
       "certs_received": {
@@ -114200,9 +116611,9 @@
     "Nathaplume": {
       "index": 9667,
       "owner_key": "AuYLw7F2k3FE5wryV7VmjPHNatuDzCdF9GwGALki3sva",
-      "balance": 187051,
+      "balance": 355737,
       "membership_expire_on": 1722695346,
-      "next_cert_issuable_on": 1688435401,
+      "next_cert_issuable_on": 1696297844,
       "certs_received": {
         "xandraAritzkuren": 1746954844,
         "Lauriernoble": 1727300472,
@@ -114218,7 +116629,7 @@
     "Mandala": {
       "index": 1057,
       "owner_key": "AuZH5A1BFwdVthTifcwT8cAQ2V4FomTEWSFCoeUcstVK",
-      "balance": 1714034,
+      "balance": 1753720,
       "membership_expire_on": 1699960707,
       "next_cert_issuable_on": 1671539446,
       "certs_received": {
@@ -114228,8 +116639,10 @@
         "Essitam": 1747936713,
         "MrViguier": 1747936461,
         "Bruno81": 1732916136,
+        "Alex34": 1755123523,
         "CVM": 1747936974,
         "cedricEolix": 1732253438,
+        "enchemin": 1755122852,
         "FabyLR": 1731436901,
         "Nico34": 1755126101,
         "NEMBC": 1747935995,
@@ -114269,7 +116682,7 @@
     "Catherinet595": {
       "index": 12171,
       "owner_key": "AumsVbC6eLESKhHdT9FEBWtsjLUV9C339hgYix9TqtKF",
-      "balance": 220572,
+      "balance": 260258,
       "membership_expire_on": 1711387981,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -114291,7 +116704,7 @@
     "JudithPR": {
       "index": 6360,
       "owner_key": "AuogEwWHGsvh5MZQ5xyj9vbbBjtcmWyUMhr7TXXQxp8W",
-      "balance": 278059,
+      "balance": 317745,
       "membership_expire_on": 1723500649,
       "next_cert_issuable_on": 1692015049,
       "certs_received": {
@@ -114314,19 +116727,16 @@
     "loup12": {
       "index": 2963,
       "owner_key": "Av1gfme4Pa1EimvwxiPmVBxq3Gxm7r7pcBxgsEZM3XTb",
-      "balance": 1425161,
+      "balance": 1464847,
       "membership_expire_on": 1721266656,
       "next_cert_issuable_on": 1693012570,
       "certs_received": {
         "Antoin9": 1754600465,
-        "Stevia30120": 1695361058,
         "NGO": 1755504674,
         "Frou3120": 1724435639,
-        "PhilippLarsen": 1696018776,
         "chronophonix": 1755502860,
         "Lelotte": 1755323417,
-        "IrriaChantereve": 1756055770,
-        "Hubert": 1695496165
+        "IrriaChantereve": 1756055770
       }
     },
     "Jeanne31": {
@@ -114340,7 +116750,7 @@
     "Keriadenn": {
       "index": 4475,
       "owner_key": "AvHMv4dqXdDwm93sFRSj35atSKD81MfstubcrsRZDYDo",
-      "balance": 869105,
+      "balance": 908791,
       "membership_expire_on": 1702992727,
       "next_cert_issuable_on": 1673325998,
       "certs_received": {
@@ -114371,7 +116781,7 @@
     "PascaleTbl": {
       "index": 7765,
       "owner_key": "AvVDn4jZ5xQgNj5AYsLTUTLrPhq1KF41VmjWpLfoLcjm",
-      "balance": 303033,
+      "balance": 342719,
       "membership_expire_on": 1709042569,
       "next_cert_issuable_on": 1673356857,
       "certs_received": {
@@ -114390,7 +116800,7 @@
     "Milounour": {
       "index": 12899,
       "owner_key": "AvW2AuUaMd2sYD5qMVVF8gSeXNPerH4T7SJkrGypWKqM",
-      "balance": 127336,
+      "balance": 167022,
       "membership_expire_on": 1715021925,
       "next_cert_issuable_on": 1691502890,
       "certs_received": {
@@ -114404,7 +116814,7 @@
     "Zouzoute57": {
       "index": 12742,
       "owner_key": "AvWtTcaTN8NKqPkaPHavKRHxJ472vPfpfa9C3gVotSZK",
-      "balance": 91164,
+      "balance": 130850,
       "membership_expire_on": 1715778978,
       "next_cert_issuable_on": 1689635902,
       "certs_received": {
@@ -114418,15 +116828,15 @@
     "Lililys": {
       "index": 6153,
       "owner_key": "AvbHJaGwM9Uysphm57UyhfLE7ZWAsYZGy1dj9Yo3k6AZ",
-      "balance": 671512,
-      "membership_expire_on": 1699450232,
+      "balance": 711198,
+      "membership_expire_on": 1728005711,
       "next_cert_issuable_on": 1667967713,
       "certs_received": {
         "Christo": 1699641404,
         "Claude": 1698539438,
         "sauveepargrace": 1698477156,
         "monique": 1698539438,
-        "Coteaufleuri": 1700693406
+        "Coteaufleuri": 1757692272
       }
     },
     "MCnaturo": {
@@ -114437,10 +116847,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Christophine": {
+      "index": 13749,
+      "owner_key": "AvfKsEKytuc9q6FC8BJJLxx4j8i9966dbgAtkWDGwJxG",
+      "balance": 1078,
+      "membership_expire_on": 1727032057,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "BorisBernard": 1759016240,
+        "Pepper": 1759717819,
+        "Jusepe": 1759697987,
+        "Bastien-29": 1759846886,
+        "isadel": 1758590268,
+        "flodef": 1758590268
+      }
+    },
     "Susilla": {
       "index": 8142,
       "owner_key": "Aw7e95fe75dTARWc242VkCzMApy5zm63e9Mmc1xWfe6b",
-      "balance": 122155,
+      "balance": 161841,
       "membership_expire_on": 1716035419,
       "next_cert_issuable_on": 1663729630,
       "certs_received": {
@@ -114460,7 +116885,7 @@
     "Emile07": {
       "index": 11618,
       "owner_key": "AwCxNNMuLRWk4LXA773ZARR1shoiayBVcDmnEgj7Md4F",
-      "balance": 235190,
+      "balance": 274876,
       "membership_expire_on": 1707324910,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -114475,7 +116900,7 @@
     "Cathjoly": {
       "index": 8009,
       "owner_key": "AwMJk5YCserEfx2fD18c8oExqnDGnr83Yd9HCcTwLW3C",
-      "balance": 507561,
+      "balance": 547247,
       "membership_expire_on": 1722358197,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -114491,7 +116916,7 @@
     "chcesetti": {
       "index": 12462,
       "owner_key": "AwQxMSqNcX2B7Qk3KZ8pnbr6fqX1CJUK93tgEB6skFSG",
-      "balance": 134636,
+      "balance": 174322,
       "membership_expire_on": 1717795611,
       "next_cert_issuable_on": 1688802015,
       "certs_received": {
@@ -114524,13 +116949,17 @@
     "Davseedoff": {
       "index": 3693,
       "owner_key": "AwbryJ2voWLJ4fyGGuvBET6N6UWGFTCdRvZefELexrvk",
-      "balance": 525264,
-      "membership_expire_on": 0,
+      "balance": 492346,
+      "membership_expire_on": 1726266932,
       "next_cert_issuable_on": 1670339647,
       "certs_received": {
         "Galleron": 1707976855,
+        "EricPetit": 1755753798,
         "ColineGillet": 1715307239,
+        "DidierPapillon": 1758154869,
+        "art15te": 1759466003,
         "GUYHL": 1730248433,
+        "Armelle14600": 1758167948,
         "GuillaumeCapsowl": 1709086794
       }
     },
@@ -114539,10 +116968,8 @@
       "owner_key": "Awc58GAYj8N9SUrLMMpJLorENLt9amxYXf2MpD2NnSwB",
       "balance": 381064,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1633242540,
-      "certs_received": {
-        "Celuiquicrelamehaute": 1696716518
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "DERT8": {
       "index": 6266,
@@ -114563,12 +116990,13 @@
     "EveC": {
       "index": 3678,
       "owner_key": "AweZkaxCWKNmVu6iH5yBeodG7oyrUebNdJUJdNXJYqSR",
-      "balance": 282098,
+      "balance": 302184,
       "membership_expire_on": 1709807562,
-      "next_cert_issuable_on": 1687252924,
+      "next_cert_issuable_on": 1696590191,
       "certs_received": {
         "LiseBourdelle": 1730259701,
         "Icaunaise": 1716092342,
+        "gui_tooun": 1759633742,
         "Cyrius666": 1717343607,
         "LauQui": 1729400474,
         "VBVF": 1731900089,
@@ -114581,8 +117009,10 @@
         "Fee2rien": 1727583533,
         "Stranger": 1732137265,
         "Kumbaya": 1717560651,
+        "Framboise89": 1756600889,
         "DanJoue": 1721703243,
         "OdileJacquemet": 1746814173,
+        "Guillermo89": 1756703896,
         "Cassie": 1750358823,
         "Ninette89": 1732132034,
         "Mia": 1733549546,
@@ -114608,7 +117038,7 @@
     "Okcfecadiz": {
       "index": 11307,
       "owner_key": "Awi1CKhfQCXxnt6gvChWFKDJ7bEJEsmeazzubiJTwuWp",
-      "balance": 163124,
+      "balance": 202810,
       "membership_expire_on": 1705435387,
       "next_cert_issuable_on": 1684422190,
       "certs_received": {
@@ -114635,11 +117065,10 @@
     "marieange": {
       "index": 5161,
       "owner_key": "AwjDhr1xNH8c4kVCFjWdjXyQQ9Avdrjj5pTBa27UHrho",
-      "balance": 662861,
+      "balance": 542547,
       "membership_expire_on": 1713278210,
       "next_cert_issuable_on": 1681792610,
       "certs_received": {
-        "JulienAmory": 1693763736,
         "Sofiachante": 1701533813,
         "Herminebzh": 1732138014,
         "lou108": 1733305357,
@@ -114657,7 +117086,7 @@
     "xavitxuinfinit": {
       "index": 10540,
       "owner_key": "AwkcxCphczHVvY1R48wk6Y5RfcTo1L5C2CHiwRKf1x2r",
-      "balance": 50510,
+      "balance": 105446,
       "membership_expire_on": 1700683298,
       "next_cert_issuable_on": 1684648879,
       "certs_received": {
@@ -114680,7 +117109,7 @@
     "SebaP": {
       "index": 10441,
       "owner_key": "AwtH8BWQUPSaMFZKNZgNbt2wB7auU4PKdTuuu961dmRP",
-      "balance": 124223,
+      "balance": 163909,
       "membership_expire_on": 1700396938,
       "next_cert_issuable_on": 1671461157,
       "certs_received": {
@@ -114695,9 +117124,9 @@
     "Lolito": {
       "index": 9398,
       "owner_key": "AwtndDuAYWM3Ud7JzgyLvVixkmjsmwipiq9w7vcgULaa",
-      "balance": 143875,
+      "balance": 273213,
       "membership_expire_on": 1719702911,
-      "next_cert_issuable_on": 1688217311,
+      "next_cert_issuable_on": 1696139185,
       "certs_received": {
         "InmaRegina": 1724982325,
         "luciagares": 1739437727,
@@ -114729,7 +117158,7 @@
     "Ninou01": {
       "index": 5818,
       "owner_key": "AwtxqkEPLHqSptNx4CtwnSmE3e1NkUSZqEnYMp6d8PFq",
-      "balance": 271941,
+      "balance": 311627,
       "membership_expire_on": 1717074537,
       "next_cert_issuable_on": 1690513474,
       "certs_received": {
@@ -114739,7 +117168,6 @@
         "Mickey": 1721952203,
         "Eldeline": 1731124202,
         "Sophie01": 1732252645,
-        "ANTISPASMODIC": 1693727676,
         "Nathaliefa": 1726715324,
         "Brillebelle": 1722413561,
         "AdrienMostacci": 1734229159,
@@ -114756,13 +117184,13 @@
         "amandine": 1703403848,
         "Fati": 1735793047,
         "malika": 1704353549,
-        "Tito": 1697048423
+        "Tito": 1757134348
       }
     },
     "Themis": {
       "index": 6102,
       "owner_key": "Awye7zed49x27mSvcWpEAzzuL2HAX6c4XxWtDY7XeuPJ",
-      "balance": 569720,
+      "balance": 609406,
       "membership_expire_on": 1718999055,
       "next_cert_issuable_on": 1674178638,
       "certs_received": {
@@ -114783,7 +117211,7 @@
     "DELPHBG": {
       "index": 8607,
       "owner_key": "Ax1L9H7J7GYNJjewUN3xAFFHgWTKHSKQUCV3ZCf2zPGN",
-      "balance": 436612,
+      "balance": 476298,
       "membership_expire_on": 1717862882,
       "next_cert_issuable_on": 1674992956,
       "certs_received": {
@@ -114801,7 +117229,7 @@
     "micheloueb": {
       "index": 3479,
       "owner_key": "Ax4svag1k9jaEZecucxFnjynaUCzK664eXeaYorvqa8b",
-      "balance": 1315047,
+      "balance": 1354733,
       "membership_expire_on": 1709515570,
       "next_cert_issuable_on": 1652944404,
       "certs_received": {
@@ -114818,19 +117246,18 @@
     "Faquantharmonie": {
       "index": 5768,
       "owner_key": "AxKeQpC8QmsfcMtDGRae8zEyGmS72irr8eH9skUWKW54",
-      "balance": 838136,
+      "balance": 878822,
       "membership_expire_on": 1718135339,
-      "next_cert_issuable_on": 1692158655,
+      "next_cert_issuable_on": 1695995482,
       "certs_received": {
         "kapis": 1733519944,
         "xandraAritzkuren": 1722151026,
         "Kristo": 1737621421,
+        "THORGAL1968": 1758667487,
         "ROCIO": 1728854972,
         "CaroJans": 1752825003,
-        "TomAs": 1696557892,
         "OlDog": 1756498857,
         "Cyrius666": 1745992563,
-        "Goldy": 1696490401,
         "FSuarez108": 1728975169,
         "Shankarina": 1754112724,
         "spherien": 1700725344,
@@ -114843,10 +117270,9 @@
         "YOSOYLUZ": 1729752276,
         "sonialarraz": 1729661514,
         "ZinzinGroues": 1710103994,
-        "ollo": 1696550867,
+        "Kanea4598": 1759447826,
         "Liebamiranda": 1743059248,
         "mathieuBize": 1727637069,
-        "Flore66": 1696488883,
         "Micha": 1741207149,
         "MariMardisfrutona": 1739469416,
         "ElenaMavida": 1729112946,
@@ -114854,9 +117280,7 @@
         "Matedi23": 1730746635,
         "Cedric77": 1740451877,
         "GastonLagafe": 1730949381,
-        "SandraC": 1696486099,
         "NORGERAL": 1729813937,
-        "Freco": 1696486099,
         "katou": 1710103994,
         "fania": 1740567617
       }
@@ -114864,7 +117288,7 @@
     "celinette07200": {
       "index": 3279,
       "owner_key": "AxL4eww5rw3TvquLVCEzw5mL4ZEnnEqCrQ25rbWCzaFK",
-      "balance": 1077645,
+      "balance": 1117331,
       "membership_expire_on": 1701618402,
       "next_cert_issuable_on": 1690080524,
       "certs_received": {
@@ -114875,6 +117299,7 @@
         "TristanG1": 1719425103,
         "Cospiel": 1721102548,
         "Tof26": 1747586802,
+        "Gael": 1757971928,
         "ChristopheRobine": 1725489070,
         "Phoenix2022": 1721968207,
         "CMamounette": 1719777379
@@ -114883,7 +117308,7 @@
     "ZorA": {
       "index": 6381,
       "owner_key": "AxStjHs5oEpQ4rXN5UxgzpQveThMhF2zeYFo15aG469r",
-      "balance": 675237,
+      "balance": 714923,
       "membership_expire_on": 1700585109,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -114897,10 +117322,11 @@
     "gaia": {
       "index": 10363,
       "owner_key": "AxTvKn6LwicCHPcKCjH6iuv9ue6ie5rjyJuLjc8uRjdy",
-      "balance": 123718,
-      "membership_expire_on": 1699486933,
+      "balance": 203804,
+      "membership_expire_on": 1726013956,
       "next_cert_issuable_on": 1682760303,
       "certs_received": {
+        "MonyKan": 1759427593,
         "Lupunita": 1731516494,
         "Aneyusta": 1741159261,
         "EvcomServiciosInformaticos": 1744869694,
@@ -114917,9 +117343,9 @@
     "lto31": {
       "index": 8516,
       "owner_key": "AxWcjFai5H87Ucf5HZYjqH5aZf2dMP4k33VmSAAmNfcC",
-      "balance": 376946,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1671026494,
+      "balance": 329538,
+      "membership_expire_on": 1727044084,
+      "next_cert_issuable_on": 1696153723,
       "certs_received": {
         "ELEOTIE": 1734119841,
         "Vally31": 1733711110,
@@ -114933,7 +117359,7 @@
     "coeurbijoux": {
       "index": 4478,
       "owner_key": "AxaWkUbVV3iJp3Hf5krJzgF9T87T6B78MygqLrURPEsS",
-      "balance": 1201276,
+      "balance": 1240962,
       "membership_expire_on": 1700327585,
       "next_cert_issuable_on": 1673071316,
       "certs_received": {
@@ -114941,7 +117367,7 @@
         "HRDESIGNPROD": 1742174906,
         "merenoel": 1732669545,
         "Rlov": 1738486239,
-        "Jdbetoile": 1702424124,
+        "Jdbetoile": 1758043434,
         "EstelleF": 1745775843
       }
     },
@@ -114967,10 +117393,11 @@
     "Manacor": {
       "index": 10099,
       "owner_key": "AxnjWPynC1XDVs1BwH81zATT874qhHSxmoiPN2qs9XNy",
-      "balance": 105640,
+      "balance": 84326,
       "membership_expire_on": 1723628405,
-      "next_cert_issuable_on": 1678939500,
+      "next_cert_issuable_on": 1696428279,
       "certs_received": {
+        "susanarico": 1759468910,
         "ErickG_G": 1729751331,
         "AfricadeHarmonia": 1739727907,
         "carmela": 1729849186,
@@ -114984,7 +117411,7 @@
     "FredB31": {
       "index": 9132,
       "owner_key": "Axra8UrNb3KLqX2V462ti5K62dexcPnM1VfC9o1ogqX2",
-      "balance": 360124,
+      "balance": 399810,
       "membership_expire_on": 1717179696,
       "next_cert_issuable_on": 1672842212,
       "certs_received": {
@@ -114996,10 +117423,24 @@
         "Harry": 1722044606
       }
     },
+    "MichaNT": {
+      "index": 13762,
+      "owner_key": "Axrevin1wzUhxUCdvpB3eh5gziRKoWEzSTt7FwaT9k3e",
+      "balance": 77500,
+      "membership_expire_on": 1726440577,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "DanWF": 1759812178,
+        "Randolf": 1759719620,
+        "Anma": 1759709058,
+        "FEUERFRAU": 1759695979,
+        "Micha": 1759694270
+      }
+    },
     "George": {
       "index": 9090,
       "owner_key": "Ay38vF6TAKDPkTWYhjTsMF4SjG1sf7Hr1HJb7iFD6uu1",
-      "balance": 451609,
+      "balance": 491295,
       "membership_expire_on": 1722791512,
       "next_cert_issuable_on": 1662734309,
       "certs_received": {
@@ -115015,7 +117456,7 @@
     "Moon": {
       "index": 7441,
       "owner_key": "Ay7vbuL45eucc2v1SPGNd8gLLE4tJV2Kne8zD7yzB45A",
-      "balance": 456557,
+      "balance": 496243,
       "membership_expire_on": 1705107578,
       "next_cert_issuable_on": 1672243741,
       "certs_received": {
@@ -115046,22 +117487,17 @@
     "PascalMahe": {
       "index": 1628,
       "owner_key": "AyLds84na7Tn5j6WbYX3qNsHMaVAfDToWQKfnNTtsY1k",
-      "balance": 1116223,
-      "membership_expire_on": 1715716829,
+      "balance": 1125835,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1690947018,
       "certs_received": {
-        "BenoitLavenier": 1754088063,
-        "FranckRub": 1694296903,
-        "JoelChainay": 1694296903,
-        "AurelieLavenier": 1694296903,
-        "PhSoudan": 1694296903,
-        "MarcHebert": 1694297342
+        "BenoitLavenier": 1754088063
       }
     },
     "DameYouli": {
       "index": 12255,
       "owner_key": "AyRLDCvkUDxQjAvUyWxgNX8p6SXxjqQnWpoCYiP2UkS4",
-      "balance": 170996,
+      "balance": 210682,
       "membership_expire_on": 1710092322,
       "next_cert_issuable_on": 1691911630,
       "certs_received": {
@@ -115080,8 +117516,8 @@
     "FRANTREL22": {
       "index": 9878,
       "owner_key": "AySopn9NDefGhdbG2wyG1MYU56y7VnHXtQFyeCq6P3QD",
-      "balance": 264583,
-      "membership_expire_on": 1696527751,
+      "balance": 302113,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1676700356,
       "certs_received": {
         "MicheleC": 1728499815,
@@ -115096,7 +117532,7 @@
     "Orlaneski": {
       "index": 12836,
       "owner_key": "AyXE9W2XnbtRpQshp5upAPbbpg1Xgx8aa1HbbB1P4UPs",
-      "balance": 89712,
+      "balance": 129398,
       "membership_expire_on": 1717783190,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -115110,12 +117546,13 @@
     "altarcel": {
       "index": 10975,
       "owner_key": "Aya8vGYaDTin9sH3CtFda7i31f7KTbyNLoNbTYAuNkgP",
-      "balance": 90628,
+      "balance": 44814,
       "membership_expire_on": 1703182165,
       "next_cert_issuable_on": 1686297590,
       "certs_received": {
         "salmaluna": 1734855744,
         "Asunartesana": 1734750673,
+        "Nieves": 1758733796,
         "quiquecaballero": 1734826140,
         "sonialarraz": 1734816237,
         "MariMardisfrutona": 1734814418,
@@ -115134,12 +117571,13 @@
     "yenamarre": {
       "index": 4547,
       "owner_key": "Ayxu181n4jaYdZQ3Yq3zB27y7oMxKUNgpX5PtunzxZ4K",
-      "balance": 837214,
+      "balance": 877968,
       "membership_expire_on": 1720559241,
       "next_cert_issuable_on": 1687865249,
       "certs_received": {
         "Auxance": 1749102323,
         "Migus01": 1750359644,
+        "YANNIERRE": 1755739199,
         "Titus": 1747512823,
         "Jaune51": 1740205678,
         "mariemanon": 1740200145,
@@ -115150,10 +117588,11 @@
     "Jokin": {
       "index": 10891,
       "owner_key": "Az5WUg9uR85Z5yVwVSjk2f6nfBiU3jBtDuEF8iFQw3fe",
-      "balance": 168650,
+      "balance": 184536,
       "membership_expire_on": 1701667312,
-      "next_cert_issuable_on": 1687823805,
+      "next_cert_issuable_on": 1696319658,
       "certs_received": {
+        "Glorieta": 1759374083,
         "Silvi": 1750801988,
         "AnaMery": 1734425273,
         "AlvaroFernandez": 1734421627,
@@ -115163,6 +117602,7 @@
         "mariabiodanza": 1744682679,
         "atisha": 1734507027,
         "Teka": 1746063143,
+        "Orakulo": 1758179515,
         "BeatricePieper": 1733964439,
         "PatriciucaNina": 1744622163,
         "Marianfs": 1747935243
@@ -115171,8 +117611,8 @@
     "MichelS": {
       "index": 6580,
       "owner_key": "AzHoK67L4J6S4UQrEdSWv7d5koVWFvYn7QiUvGnBPjGC",
-      "balance": 270729,
-      "membership_expire_on": 1699557928,
+      "balance": 280415,
+      "membership_expire_on": 1726772077,
       "next_cert_issuable_on": 1685455178,
       "certs_received": {
         "Frizouille": 1715403423,
@@ -115190,7 +117630,7 @@
     "Annick": {
       "index": 8098,
       "owner_key": "AzS7QLmtojBMkZxKgDh7G8x1ZcqsqYozgRhsVAh1Dzcs",
-      "balance": 495407,
+      "balance": 535093,
       "membership_expire_on": 1710453533,
       "next_cert_issuable_on": 1653291088,
       "certs_received": {
@@ -115223,9 +117663,9 @@
     "Liminence": {
       "index": 8321,
       "owner_key": "AzepshyDznswxfc8o3jL9iwFQS4CrK1FY8LUFF2pdJ8Y",
-      "balance": 175894,
+      "balance": 225680,
       "membership_expire_on": 1715593190,
-      "next_cert_issuable_on": 1688465816,
+      "next_cert_issuable_on": 1696686101,
       "certs_received": {
         "KreenBulle51": 1716659915,
         "Martine51": 1717014890,
@@ -115252,7 +117692,7 @@
     "CedrickPiwo": {
       "index": 6860,
       "owner_key": "AzqgdJA78vicLgufQmqgBnM8MkRn1UcdpH8HxRdVbCoa",
-      "balance": 682481,
+      "balance": 722167,
       "membership_expire_on": 1701716922,
       "next_cert_issuable_on": 1679327463,
       "certs_received": {
@@ -115290,7 +117730,7 @@
     "ArtChris": {
       "index": 7102,
       "owner_key": "B1KgScXAhxZxWjkkV95uYpxyWPqDxHxrd3VE2iJSpEp2",
-      "balance": 1177075,
+      "balance": 1226761,
       "membership_expire_on": 1702035852,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -115313,15 +117753,14 @@
     "AlexandreB": {
       "index": 2009,
       "owner_key": "B1Tp2adntZ5Jk6o93uRjvCKo2GiX5DKmNdEFvrQmwuWk",
-      "balance": 1118447,
-      "membership_expire_on": 0,
+      "balance": 1133539,
+      "membership_expire_on": 1727032668,
       "next_cert_issuable_on": 1639058205,
       "certs_received": {
         "lucilegesta": 1742076366,
         "PhilChamp": 1745296369,
         "Steph_and_me": 1702104933,
         "Gibaud_Charles": 1702091594,
-        "Coco46": 1693891656,
         "AnneMarieRuiz": 1742079355
       }
     },
@@ -115338,15 +117777,16 @@
     "conchitaSIMON": {
       "index": 5948,
       "owner_key": "B1cApjntq1EctQjbQbUCyFBLxMY5SV9uA4uZb7Ud5bDc",
-      "balance": 431868,
+      "balance": 425554,
       "membership_expire_on": 1719661175,
-      "next_cert_issuable_on": 1682687870,
+      "next_cert_issuable_on": 1696174727,
       "certs_received": {
         "arbocenc": 1708070558,
         "carmela": 1708808610,
         "Carole26": 1704580192,
         "EricSIMON": 1699935890,
         "sanddebeloest38": 1698083604,
+        "BenjaminDAVID": 1759191260,
         "izofrog38": 1696980198,
         "izotoad38": 1696984808,
         "TataCC": 1729099471,
@@ -115373,7 +117813,7 @@
     "VictorDavid108": {
       "index": 8104,
       "owner_key": "B1hKvjoVwL5JZUByKz73qx7R2zCgk5VKFtSuKcjo8VRo",
-      "balance": 200802,
+      "balance": 255488,
       "membership_expire_on": 1711410465,
       "next_cert_issuable_on": 1693205313,
       "certs_received": {
@@ -115381,6 +117821,8 @@
         "Mamouchka": 1728838779,
         "FredCurt": 1716681408,
         "gege110560": 1732168625,
+        "yasminaB": 1757398265,
+        "DanielVienne": 1757180925,
         "NathBro": 1738542118,
         "LoreleiGAUTHIER": 1715749224,
         "christianforrat": 1730427030,
@@ -115400,21 +117842,17 @@
     "AndreGround": {
       "index": 5749,
       "owner_key": "B1hzFFeDZBUAdwQVnBA6LU1pA2ER1FBjmxrmTi1MhZWg",
-      "balance": 728295,
-      "membership_expire_on": 1720229951,
+      "balance": 738975,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1655561342,
       "certs_received": {
-        "OlivierS57": 1695972497,
-        "Anthoxanthum67": 1694409337,
-        "Diane": 1695972497,
-        "hypericum": 1696144569,
         "Parhit": 1699961693
       }
     },
     "AnnaLys": {
       "index": 10000,
       "owner_key": "B1k2Ha6EbawC3DGA1ziUpzPUoTkVD6JV4jC81pqqupSi",
-      "balance": 425957,
+      "balance": 387643,
       "membership_expire_on": 1697640013,
       "next_cert_issuable_on": 1679817378,
       "certs_received": {
@@ -115435,7 +117873,7 @@
     "SophieR73": {
       "index": 6566,
       "owner_key": "B1oPVnQjmcEK8ia3yFgW36Y8myRy6U7jVXQwAp3At2Sj",
-      "balance": 580871,
+      "balance": 620557,
       "membership_expire_on": 1703943390,
       "next_cert_issuable_on": 1678841183,
       "certs_received": {
@@ -115459,7 +117897,7 @@
     "Arina": {
       "index": 12528,
       "owner_key": "B1u2j37A6jU7Cpdd8gyLLGxPuasSNnGirfNzdULQn9rL",
-      "balance": 135560,
+      "balance": 170846,
       "membership_expire_on": 1714589731,
       "next_cert_issuable_on": 1690818998,
       "certs_received": {
@@ -115477,9 +117915,9 @@
     "Folele": {
       "index": 9811,
       "owner_key": "B1wZtyDoh6p3u8RX8fs1rwSNbuearF5Js7EesNiiHxym",
-      "balance": 136126,
-      "membership_expire_on": 1695771741,
-      "next_cert_issuable_on": 1683801993,
+      "balance": 283912,
+      "membership_expire_on": 1725275528,
+      "next_cert_issuable_on": 1695703316,
       "certs_received": {
         "Estela": 1729995812,
         "Senda": 1746129287,
@@ -115496,6 +117934,8 @@
         "Atman": 1727660450,
         "VeroniqueV": 1733092625,
         "Jackyboisset": 1727719947,
+        "Idurre": 1758253967,
+        "tereseta": 1757666198,
         "Energiadelcorazon": 1728074910,
         "YurenaGonzalez": 1738557782,
         "EmmanuelOLIVIER": 1727331785
@@ -115504,9 +117944,9 @@
     "Micheleverseau": {
       "index": 9771,
       "owner_key": "B21KA7BDwrniamZ9Unkhzp4PYwxqcmDPutsStfvsjqQw",
-      "balance": 383055,
-      "membership_expire_on": 1696269930,
-      "next_cert_issuable_on": 1685714750,
+      "balance": 422741,
+      "membership_expire_on": 1726526794,
+      "next_cert_issuable_on": 1695384644,
       "certs_received": {
         "Uriane13": 1727843403,
         "fredo79": 1727827862,
@@ -115518,26 +117958,25 @@
     "Eugenia1976": {
       "index": 5829,
       "owner_key": "B23rs9XTjFrCx35gsdsKF2dXRM8M2XojhNWTUMUNimzi",
-      "balance": 567599,
-      "membership_expire_on": 0,
+      "balance": 582993,
+      "membership_expire_on": 1726742041,
       "next_cert_issuable_on": 1655974777,
       "certs_received": {
-        "mluque71": 1694664300,
-        "isabelha": 1696583115,
+        "jorgeocanacastro": 1758416417,
         "Encalquimista": 1722369053,
-        "Performance": 1701215579,
-        "ChrisW": 1695964481,
+        "Performance": 1758301983,
+        "ChrisW": 1758316341,
+        "Chencho": 1758303263,
         "Liandou": 1719526164,
-        "Gabriela": 1695926139,
         "mathieuBize": 1726608316,
-        "moincagranada": 1694828987
+        "moincagranada": 1757578730
       }
     },
     "Flaviana": {
       "index": 10274,
       "owner_key": "B259WLqXSVLxhQX95cz7SRifSFhCdaWMXra2maK2iLqX",
-      "balance": 401972,
-      "membership_expire_on": 1699396245,
+      "balance": 456658,
+      "membership_expire_on": 1727837127,
       "next_cert_issuable_on": 1690817785,
       "certs_received": {
         "Nounoune": 1741570812,
@@ -115557,7 +117996,7 @@
     "Fabrice": {
       "index": 11909,
       "owner_key": "B27ccGbUxy9zT1VsvvpLodmMKzM8u1yd5K74SsHRRksR",
-      "balance": 224451,
+      "balance": 311637,
       "membership_expire_on": 1709006182,
       "next_cert_issuable_on": 1688366830,
       "certs_received": {
@@ -115584,9 +118023,9 @@
     "fanfan": {
       "index": 6023,
       "owner_key": "B2GhZzxBrbPWeySucaVno33mVPaLERyYRo5SVkyMwxfk",
-      "balance": 1230818,
+      "balance": 1268504,
       "membership_expire_on": 1720060378,
-      "next_cert_issuable_on": 1693492702,
+      "next_cert_issuable_on": 1695742842,
       "certs_received": {
         "Benvaudeurs": 1703885762,
         "Mianne": 1699403454,
@@ -115602,11 +118041,12 @@
         "Sylvieb": 1715656941,
         "RoryKiwi": 1716226889,
         "Vinciane": 1732761745,
-        "Lolobuss": 1699761858,
+        "Lolobuss": 1757883368,
         "ROVER5537": 1721104350,
         "PeterKD": 1713433715,
         "LenaB": 1699302115,
         "EstienneDunord": 1709169024,
+        "Rezette": 1757300703,
         "Gclaire": 1718376832,
         "ALoy": 1699321841,
         "FredB": 1699302115
@@ -115648,7 +118088,7 @@
     "ManuelJesusNamaste": {
       "index": 12138,
       "owner_key": "B2R4KPyWiQxRBBz6asG2jhQjW7eUhbt2LoDRFeJsuSa2",
-      "balance": 126936,
+      "balance": 39622,
       "membership_expire_on": 1711328610,
       "next_cert_issuable_on": 1685760659,
       "certs_received": {
@@ -115668,7 +118108,7 @@
     "STEPHEUSE": {
       "index": 12577,
       "owner_key": "B2guouNPQYZ7vzCwMybaBPLJge7LFse6q8VEy6BtwAnq",
-      "balance": 117388,
+      "balance": 133574,
       "membership_expire_on": 1713661530,
       "next_cert_issuable_on": 1691555391,
       "certs_received": {
@@ -115683,7 +118123,7 @@
     "helenanuage": {
       "index": 11348,
       "owner_key": "B2gyAdCoWyx3UAPD4SvGngm6BY2Uoh6YG6p8kuzi6yhb",
-      "balance": 237129,
+      "balance": 276815,
       "membership_expire_on": 1705622537,
       "next_cert_issuable_on": 1675396767,
       "certs_received": {
@@ -115697,7 +118137,7 @@
     "JulianMF": {
       "index": 7464,
       "owner_key": "B2jT1HSLT4qEz5C6fyJtaN5iPVzmxPteQXDHTGbyTwyB",
-      "balance": 170312,
+      "balance": 168498,
       "membership_expire_on": 1705096061,
       "next_cert_issuable_on": 1680065201,
       "certs_received": {
@@ -115718,7 +118158,7 @@
     "Chanita": {
       "index": 13165,
       "owner_key": "B2mPb2e5PRkV8AxQQPzSGjzDEySvzccXWkENxSsz72k1",
-      "balance": 133376,
+      "balance": 14062,
       "membership_expire_on": 1719329322,
       "next_cert_issuable_on": 1690973681,
       "certs_received": {
@@ -115732,9 +118172,9 @@
     "HAMSTERDAME": {
       "index": 5074,
       "owner_key": "B2o95zmCsPh95W8jg1nYtUFGRbjpnFXn6vkxEVfvSnLZ",
-      "balance": 505203,
+      "balance": 534889,
       "membership_expire_on": 1707779566,
-      "next_cert_issuable_on": 1692415021,
+      "next_cert_issuable_on": 1695910544,
       "certs_received": {
         "MignoletEmmanuel": 1756458931,
         "Robin_et_Odile": 1735446112,
@@ -115743,19 +118183,17 @@
         "CrapaudCurieux": 1728594552,
         "Fabi26": 1722895038,
         "CapuChoeur": 1698133857,
-        "NirmalaMary": 1695242665,
         "Nico83": 1717213513,
         "Mika83": 1713127388,
         "Sottay": 1755850407,
         "AnneD": 1699299278,
-        "TailleDouce": 1696045017,
         "GeneBe": 1744649001
       }
     },
     "CPLEric": {
       "index": 4135,
       "owner_key": "B2qxGFCrdqM5R1Rh4aNt6hxcB78xS6cC8KiC3e7At7Xn",
-      "balance": 876853,
+      "balance": 916539,
       "membership_expire_on": 1724585509,
       "next_cert_issuable_on": 1683383152,
       "certs_received": {
@@ -115781,7 +118219,7 @@
     "GUL40_N1t2": {
       "index": 7170,
       "owner_key": "B2staeMjvSnTBvpGojbgfLGbeuZSa1PVwBG2t5veCe3R",
-      "balance": 565032,
+      "balance": 604718,
       "membership_expire_on": 1706413667,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -115799,7 +118237,7 @@
     "NumpaWicahpi": {
       "index": 6683,
       "owner_key": "B2uJJoUdgXJw6X122U98CGnCwfSLVGtvhYBYW3Jvt8wT",
-      "balance": 383774,
+      "balance": 453460,
       "membership_expire_on": 1700845734,
       "next_cert_issuable_on": 1684812767,
       "certs_received": {
@@ -115826,9 +118264,9 @@
     "FredTahiti": {
       "index": 4076,
       "owner_key": "B33QfqBdtu4jiquzvgxm9EBtwvj6XRdAcDCt88FnHaTN",
-      "balance": 317312,
+      "balance": 269998,
       "membership_expire_on": 1712260289,
-      "next_cert_issuable_on": 1688889525,
+      "next_cert_issuable_on": 1694338608,
       "certs_received": {
         "Tanita": 1726044709,
         "rosydailleurs": 1724380524,
@@ -115836,7 +118274,6 @@
         "SamuelPabloAlmonacid": 1741444084,
         "lydiemdb": 1749659011,
         "Groovygipsy": 1712437446,
-        "Adri46": 1693875530,
         "Cissou": 1731881701,
         "JerryBB": 1726631509,
         "Hebou": 1753144687,
@@ -115846,6 +118283,7 @@
         "Nicolas_Boyer": 1747854971,
         "Paola": 1743040173,
         "Fred": 1737518383,
+        "CathD": 1757435722,
         "Ladgege": 1725128415,
         "aya": 1726623662,
         "SyoulAnuanua": 1731794119,
@@ -115861,9 +118299,9 @@
     "LaurenceDavid": {
       "index": 4079,
       "owner_key": "B3DkVtCH1vHDKdL3oxaVKEZqfhLiisNV3LMKUEqyWfaw",
-      "balance": 1327269,
+      "balance": 1378055,
       "membership_expire_on": 1714172634,
-      "next_cert_issuable_on": 1692175380,
+      "next_cert_issuable_on": 1695818835,
       "certs_received": {
         "SandrineMala": 1737102021,
         "Crystal": 1745735495,
@@ -115877,16 +118315,14 @@
         "aina": 1739239807,
         "Ramounichoux": 1749706279,
         "Marieclaude": 1735867010,
-        "ASHTARA": 1694805720,
         "zadkiel": 1699553615,
+        "GanTao": 1756271199,
         "OlivierditTiti": 1737699488,
         "AurelienBois": 1702772103,
         "YannickGuennou": 1749343136,
-        "HelenDuceau": 1694832322,
         "annefreda": 1701989459,
         "Naneff": 1738443246,
-        "IsaDiavel": 1746408949,
-        "stephanoel": 1694239549
+        "IsaDiavel": 1746408949
       }
     },
     "JeanJean": {
@@ -115900,9 +118336,9 @@
     "escargotbleu": {
       "index": 754,
       "owner_key": "B3WWG2F8MLCFtADfHoefjxPupPMkENQwD2L4coC5nzDv",
-      "balance": 1920969,
+      "balance": 1935655,
       "membership_expire_on": 1712344599,
-      "next_cert_issuable_on": 1678702024,
+      "next_cert_issuable_on": 1695791276,
       "certs_received": {
         "arfocine": 1717119796,
         "Laurentld": 1717120172,
@@ -115924,9 +118360,9 @@
     "Maaude09": {
       "index": 3732,
       "owner_key": "B3aAp1agRum87AzyBhRY6KgGqh98LSajx1Jd2k6ru4To",
-      "balance": 2018488,
-      "membership_expire_on": 1710768699,
-      "next_cert_issuable_on": 1691939208,
+      "balance": 2782081,
+      "membership_expire_on": 1725709411,
+      "next_cert_issuable_on": 1696216348,
       "certs_received": {
         "Tettla": 1738078948,
         "lanoire": 1719188542,
@@ -115936,10 +118372,11 @@
         "ContrePropagande": 1751089489,
         "Cristol-Iquid": 1753850029,
         "MamieCrypto": 1744215019,
-        "TomAs": 1694556936,
+        "TomAs": 1757543459,
         "HugoTrentesaux": 1724975870,
         "Cyrius666": 1745915872,
         "vit": 1730859750,
+        "Poesy": 1758849954,
         "spherien": 1736371072,
         "Christine13": 1752884810,
         "Lassoupalortie": 1738469212,
@@ -115949,11 +118386,14 @@
         "Krrisse": 1750370798,
         "DamienCdx": 1745266178,
         "Marinalouette": 1739316583,
+        "Xavier91": 1758433202,
+        "Loup": 1758084065,
         "BolidoC": 1743626673,
         "nox": 1730458625,
         "bellis": 1732295752,
         "ollo": 1725741369,
         "Kaya971Wolf": 1749528648,
+        "Fred": 1755667840,
         "Geairare": 1729314039,
         "adriaverfeil": 1733344318,
         "hypericum": 1753928948,
@@ -115971,9 +118411,9 @@
     "Marco99": {
       "index": 13465,
       "owner_key": "B3bdPHfDje4AXtkkenGFHyk7zTA1pRFZ98umj2AaS1Hx",
-      "balance": 1068,
+      "balance": 40754,
       "membership_expire_on": 1719764137,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694049552,
       "certs_received": {
         "Maelly97": 1756493784,
         "Nejia07": 1756487397,
@@ -115985,7 +118425,7 @@
     "JoanaGomez": {
       "index": 12704,
       "owner_key": "B3c1YXZDBpYYpiGd5gWpMH8xMCRS2YXrLK5Ckwm28GHE",
-      "balance": 311904,
+      "balance": 402890,
       "membership_expire_on": 1715780405,
       "next_cert_issuable_on": 1692969372,
       "certs_received": {
@@ -116006,8 +118446,8 @@
     "charlydurondpoint": {
       "index": 5894,
       "owner_key": "B3o2FpSPJKyr6vCmhGfXSJNrSzysPY2CEC9WLp4R2Qji",
-      "balance": 683121,
-      "membership_expire_on": 1696072782,
+      "balance": 722807,
+      "membership_expire_on": 1726684529,
       "next_cert_issuable_on": 1679929793,
       "certs_received": {
         "jeje43": 1698091265,
@@ -116023,9 +118463,9 @@
     "CaroleM971": {
       "index": 7925,
       "owner_key": "B3qxA9ArABWSdUdf55oF1em8rABHFNuP7ntcczQtr91r",
-      "balance": 481170,
+      "balance": 412956,
       "membership_expire_on": 1709844382,
-      "next_cert_issuable_on": 1688832970,
+      "next_cert_issuable_on": 1694785155,
       "certs_received": {
         "Miriam3": 1738722070,
         "Thesa": 1741150514,
@@ -116036,6 +118476,7 @@
         "Princessfritz": 1737586582,
         "Karinette": 1737970387,
         "Laurence971": 1721291179,
+        "AnneLaure971": 1756776536,
         "CorinneB": 1737884378,
         "Dav119": 1752545928,
         "Cocodiesse": 1721808221,
@@ -116063,7 +118504,7 @@
     "Oliv333": {
       "index": 10332,
       "owner_key": "B3rpEXpGm5GwuDzstESDc4ESCnVRdQvRCupAbwXuV6Ux",
-      "balance": 316636,
+      "balance": 356322,
       "membership_expire_on": 1696867484,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -116078,9 +118519,9 @@
     "Nomieh": {
       "index": 12456,
       "owner_key": "B3sQAKwfg1sz6gnuZNnQTAsXhLM8neczL1SN16FdSjmE",
-      "balance": 189136,
+      "balance": 251922,
       "membership_expire_on": 1713836061,
-      "next_cert_issuable_on": 1684953166,
+      "next_cert_issuable_on": 1694298893,
       "certs_received": {
         "Rebel": 1746632156,
         "SiegmarTheodor": 1745373339,
@@ -116113,7 +118554,7 @@
     "Etheldiogo": {
       "index": 12853,
       "owner_key": "B43TS5CLj4dd8hA7APkvcqZAgYQjv8TndZiswVAo8L1s",
-      "balance": 250730,
+      "balance": 290416,
       "membership_expire_on": 1717790016,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -116128,18 +118569,15 @@
     "rANdonner": {
       "index": 5698,
       "owner_key": "B44WVorYvhwxcxDenr1PJRrWw6b9jHUAMq4bxWHJNtZJ",
-      "balance": 743663,
+      "balance": 783349,
       "membership_expire_on": 1718114852,
       "next_cert_issuable_on": 1686629252,
       "certs_received": {
         "MartinL": 1749957305,
         "SimonL": 1749956996,
-        "xanthi": 1694813938,
-        "AmandineDupret": 1694929827,
-        "ChristineV": 1694358903,
+        "Cali": 1758954446,
         "Sottay": 1749794974,
         "VioletteL": 1749956996,
-        "TailleDouce": 1693689861,
         "ChristineB": 1749795167
       }
     },
@@ -116154,15 +118592,15 @@
     "mlmlulu73": {
       "index": 5675,
       "owner_key": "B47awDCHvALrm36FqGEhNL1Dp38heLFd8A1SrpGciXvY",
-      "balance": 1140281,
+      "balance": 1179967,
       "membership_expire_on": 1716223896,
-      "next_cert_issuable_on": 1693443698,
+      "next_cert_issuable_on": 1694180406,
       "certs_received": {
         "Chantal": 1709168782,
         "Flocon": 1710354478,
         "Namea73": 1710696128,
         "BALOU73": 1755642831,
-        "veronaturo73": 1694581923,
+        "Ju73": 1756652115,
         "Mel09": 1709515858,
         "Maminou13": 1753766174,
         "Pizzawallas": 1756506777,
@@ -116176,7 +118614,7 @@
     "PascaledeGaia": {
       "index": 12581,
       "owner_key": "B4A1FHKriuZDLjUvoeSMgsXx3QGvKdfNvVyqseApHPhA",
-      "balance": 116652,
+      "balance": 138338,
       "membership_expire_on": 1715026245,
       "next_cert_issuable_on": 1688786000,
       "certs_received": {
@@ -116192,7 +118630,7 @@
     "SarahJardinAmphipolis": {
       "index": 5329,
       "owner_key": "B4GGXaEfZ7X4G5taRp41vpaxtfzLBEzRTYQYmErxDxFe",
-      "balance": 490782,
+      "balance": 530468,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1673275793,
       "certs_received": {
@@ -116227,7 +118665,7 @@
     "Eliezer": {
       "index": 11243,
       "owner_key": "B4SqRwCvRpCrt7JKiPh4p8eSqNxTGtu2YGRA26P2VoXi",
-      "balance": 157916,
+      "balance": 96022,
       "membership_expire_on": 1704843883,
       "next_cert_issuable_on": 1688823457,
       "certs_received": {
@@ -116259,7 +118697,7 @@
     "Vajrabro": {
       "index": 7496,
       "owner_key": "B4naKfXvduhCh19W1CYmRZJFufxWdn5Lgm9ts2bwbcA3",
-      "balance": 53849,
+      "balance": 93535,
       "membership_expire_on": 1705018347,
       "next_cert_issuable_on": 1690792678,
       "certs_received": {
@@ -116281,7 +118719,7 @@
     "OlivierditTiti": {
       "index": 7991,
       "owner_key": "B4oC3aoqBWtUh8pTgdGCdFA4JYzjYYi5bFKywkKN9fE",
-      "balance": 487664,
+      "balance": 527350,
       "membership_expire_on": 1710503843,
       "next_cert_issuable_on": 1679018995,
       "certs_received": {
@@ -116324,7 +118762,7 @@
     "corelia": {
       "index": 11490,
       "owner_key": "B52nz7tZXi6u5LSUjHzsUdZ6NGP1g8fPXfdiksC2ZyoN",
-      "balance": 316280,
+      "balance": 352966,
       "membership_expire_on": 1706140118,
       "next_cert_issuable_on": 1687614087,
       "certs_received": {
@@ -116356,7 +118794,7 @@
     "MoonVelvet": {
       "index": 6287,
       "owner_key": "B5Fe8FkfWR3qgXYUz9hqTXeevTnHuH8RTGRcy5A2rXXB",
-      "balance": 612812,
+      "balance": 652498,
       "membership_expire_on": 1700361266,
       "next_cert_issuable_on": 1675222380,
       "certs_received": {
@@ -116380,8 +118818,8 @@
     "Monia": {
       "index": 4162,
       "owner_key": "B5JDrhYExPDREPKZCE6iQRdhjewJF8rNR2AraHkZK3yy",
-      "balance": 350770,
-      "membership_expire_on": 1694432661,
+      "balance": 362518,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1649410551,
       "certs_received": {
         "XianeC": 1723291267,
@@ -116394,7 +118832,7 @@
     "Haha": {
       "index": 6730,
       "owner_key": "B5Swjb4mA1hkX4rj1mGU44jH9Hh5yfoDiCZfNmN6FogM",
-      "balance": 514660,
+      "balance": 554346,
       "membership_expire_on": 1709434575,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -116412,29 +118850,22 @@
       "balance": 386518,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1638102286,
-      "certs_received": {
-        "Clochette": 1694463546,
-        "suffixe": 1695156107,
-        "Amande": 1694547600,
-        "Plantalarose": 1694469047,
-        "Louna": 1695286235,
-        "Monchatonetoile": 1694463908,
-        "Youna": 1694547863,
-        "Lucianael": 1694976367
-      }
+      "certs_received": {}
     },
     "Christine1892": {
       "index": 13459,
       "owner_key": "B5fZGqeu6ZZ1jFd9BBM53H6vsuA3w5LsFRAMW6NmcCLx",
-      "balance": 9136,
+      "balance": 119822,
       "membership_expire_on": 1723493768,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696037650,
       "certs_received": {
         "MurielleMuMu": 1756078241,
         "Malena58": 1755991321,
         "LaGoudale": 1756051380,
         "Hernest": 1755058249,
         "Ananas21": 1755938166,
+        "TristanG1": 1758068393,
+        "Lylie_Bulle": 1758056148,
         "SabineL": 1755075973,
         "Danie": 1755107512
       }
@@ -116442,12 +118873,12 @@
     "ADodson": {
       "index": 1412,
       "owner_key": "B5fz6FSQbV4AE3rusM9H23Ng19o4gGGrqQtSxqAneyi5",
-      "balance": 1706398,
+      "balance": 1752084,
       "membership_expire_on": 1710470831,
       "next_cert_issuable_on": 1674536959,
       "certs_received": {
         "Marine_": 1714022134,
-        "Libertiste": 1696485542,
+        "Laurence": 1758858445,
         "licorne": 1745007285,
         "JGosse": 1721857843,
         "DidierDavid": 1714675710,
@@ -116459,7 +118890,6 @@
         "sauveepargrace": 1709969964,
         "Helene-petiteriviere": 1701220680,
         "AnneLP": 1721981324,
-        "Hassina": 1696382075,
         "loveinagain81": 1700689693,
         "Caroleluciole": 1697693946,
         "geneclo34": 1741989520,
@@ -116484,7 +118914,7 @@
     "ftech": {
       "index": 733,
       "owner_key": "B5hkRWfkuUhsV6J3QhtXeC9EyfsPCY3h7RZwdxbTfG2h",
-      "balance": 1895687,
+      "balance": 1935373,
       "membership_expire_on": 1701811940,
       "next_cert_issuable_on": 1656210334,
       "certs_received": {
@@ -116503,7 +118933,7 @@
     "Gene": {
       "index": 6531,
       "owner_key": "B5k6rGs3Bd5YJPovcSCiC3u8b3dv3XyyjqmwRsKyZwhc",
-      "balance": 575797,
+      "balance": 615483,
       "membership_expire_on": 1701914094,
       "next_cert_issuable_on": 1670478018,
       "certs_received": {
@@ -116525,7 +118955,7 @@
     "CatherineAiless": {
       "index": 13215,
       "owner_key": "B5kfeWPzoE8v156WBnce85rxkUys4rY4BDRHQEr4bszX",
-      "balance": 42720,
+      "balance": 82407,
       "membership_expire_on": 1720882599,
       "next_cert_issuable_on": 1691496243,
       "certs_received": {
@@ -116534,15 +118964,16 @@
         "Krompo": 1752888460,
         "Maclockbinum": 1752888460,
         "Barbabulle73": 1752888460,
-        "annemarie9": 1753220910
+        "annemarie9": 1753220910,
+        "KIAWE": 1758166281
       }
     },
     "HeleneDelebarre": {
       "index": 13112,
       "owner_key": "B5yNRC94nuYNf9ZunAhT82hYfPYn8Wue6JQ4odm58Xgu",
-      "balance": 63740,
+      "balance": 99426,
       "membership_expire_on": 1719808162,
-      "next_cert_issuable_on": 1689414034,
+      "next_cert_issuable_on": 1695531150,
       "certs_received": {
         "Polo": 1751834085,
         "jerometiny": 1751524132,
@@ -116555,8 +118986,8 @@
     "colicot": {
       "index": 2138,
       "owner_key": "B5ycHi8fFf7vPRqcwFLssFTn7WQYCUJMeLd9FznXYMhk",
-      "balance": 609568,
-      "membership_expire_on": 1696254189,
+      "balance": 643864,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668685280,
       "certs_received": {
         "Frizouille": 1715403423,
@@ -116577,9 +119008,9 @@
     "RoryKiwi": {
       "index": 7853,
       "owner_key": "B5yw1GZtTAWKivuGg1PazY6Qpq5Df7MBDk3RgsuhNcq9",
-      "balance": 558776,
+      "balance": 598462,
       "membership_expire_on": 1701382298,
-      "next_cert_issuable_on": 1693540816,
+      "next_cert_issuable_on": 1694412512,
       "certs_received": {
         "Marjorie": 1737792866,
         "Marylin": 1755657228,
@@ -116597,40 +119028,38 @@
     "KatyKat": {
       "index": 5701,
       "owner_key": "B61rJSV8eif1V4JzHcVqfij1BWjZKhfyFmLwGAcmEeBL",
-      "balance": 663365,
+      "balance": 703051,
       "membership_expire_on": 1713706551,
       "next_cert_issuable_on": 1688300320,
       "certs_received": {
-        "yasminaB": 1694501287,
-        "DanielVienne": 1695422694,
         "SamSan": 1752337230,
         "ElodieMay": 1752367915,
-        "Juju21": 1694454074,
-        "DCat": 1694454677,
         "Orion1980": 1752041786,
-        "CamilleJ": 1694454376,
         "ANLO": 1752335860,
-        "lumi": 1694454074,
         "Bamboo": 1752110870
       }
     },
     "Maquilleuse": {
       "index": 4996,
       "owner_key": "B6696MXp9KcphY43uAGNS4AG6thLFtX3sDaxmKbWDPxV",
-      "balance": 248805,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1660648780,
+      "balance": 185335,
+      "membership_expire_on": 1725807865,
+      "next_cert_issuable_on": 1696399412,
       "certs_received": {
+        "Justis": 1758686019,
         "ChristopheCompere": 1699845945,
         "AlexandreA": 1715933461,
-        "Numerosympa": 1695062014,
-        "Chlea2010": 1696686808
+        "Nicolili": 1758086301,
+        "Numerosympa": 1756148889,
+        "killerkawasaki": 1758220697,
+        "Lilinico": 1758086301,
+        "OdileJacquemet": 1758149751
       }
     },
     "Shian": {
       "index": 9210,
       "owner_key": "B6AESsWYYmZ6UqozimUWfRRNFn31ZtgxQpqif4QkyWiC",
-      "balance": 384466,
+      "balance": 424152,
       "membership_expire_on": 1718485777,
       "next_cert_issuable_on": 1664195756,
       "certs_received": {
@@ -116646,9 +119075,9 @@
     "ThierryK": {
       "index": 10796,
       "owner_key": "B6G8gt6UWR3Tapou41RscN82z91FdsiESrq2xVUwe4xA",
-      "balance": 279984,
+      "balance": 310670,
       "membership_expire_on": 1702235496,
-      "next_cert_issuable_on": 1686843159,
+      "next_cert_issuable_on": 1695301778,
       "certs_received": {
         "Manuella85": 1733792557,
         "CdeBger": 1733882323,
@@ -116660,7 +119089,7 @@
     "SABRU": {
       "index": 12970,
       "owner_key": "B6KF5dvNjh1bE3UbdEkDiTHpBTHbCiYjgqUAzYFVkbzU",
-      "balance": 110624,
+      "balance": 141310,
       "membership_expire_on": 1716750078,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -116693,7 +119122,7 @@
     "KikeGonzalez": {
       "index": 7279,
       "owner_key": "B6dcHVFRRU6JfBxZkEAy3hh53KnTvbmhEFbB7ZpGw4Z9",
-      "balance": 290907,
+      "balance": 278507,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1675792000,
       "certs_received": {
@@ -116723,7 +119152,7 @@
     "Robinson": {
       "index": 11013,
       "owner_key": "B6hks5wxWSyaap5TXKLdGusg6YDsMwxEZensiLvyJHqt",
-      "balance": 289984,
+      "balance": 329670,
       "membership_expire_on": 1698437569,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -116736,12 +119165,27 @@
         "Yvestommy": 1732654284
       }
     },
+    "Usha": {
+      "index": 13613,
+      "owner_key": "B6kNTVSzXP6LVMPAV4Grvuf9TmqL11CVHrj7NKSToTXF",
+      "balance": 40427,
+      "membership_expire_on": 1725732044,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Carole26": 1758357401,
+        "Hedy": 1758053026,
+        "Sola": 1758350429,
+        "BRIGITTE2019": 1757883145,
+        "Roland": 1757289644,
+        "Coco": 1758223042
+      }
+    },
     "BielinskiGabrielle": {
       "index": 10378,
       "owner_key": "B6mq4d1Y4HLPM4jTdZ48Seq9EkPuHT17TpKFfufw4A8h",
-      "balance": 316459,
-      "membership_expire_on": 1699222382,
-      "next_cert_issuable_on": 0,
+      "balance": 345045,
+      "membership_expire_on": 1727014759,
+      "next_cert_issuable_on": 1695544491,
       "certs_received": {
         "MPO": 1730871485,
         "Aude49": 1730831481,
@@ -116750,8 +119194,10 @@
         "evetravigne": 1731718106,
         "MariPotter": 1731351638,
         "DurandSylvie": 1730831846,
+        "AnneAmbles": 1758600352,
         "RoselyneBinesse": 1730875061,
         "Christal": 1730940800,
+        "Floalchimistefee": 1759819000,
         "Karica": 1730876762
       }
     },
@@ -116771,9 +119217,9 @@
     "DavidMontpellier": {
       "index": 7479,
       "owner_key": "B75VCdxfU6zhip12hfBVigPFeoC7vNRLobifxq8cBNAb",
-      "balance": 287543,
+      "balance": 274729,
       "membership_expire_on": 1705418562,
-      "next_cert_issuable_on": 1693277347,
+      "next_cert_issuable_on": 1696480858,
       "certs_received": {
         "absalon2": 1711068070,
         "Monette": 1752802781,
@@ -116784,6 +119230,7 @@
         "Nounouche": 1746123002,
         "VALRI34": 1726106218,
         "HeleneH": 1749439772,
+        "ValerieArtsetsens": 1756837270,
         "Majoli34": 1745081987,
         "CatherineMontpellier": 1710384350,
         "etsaman": 1732646956,
@@ -116796,6 +119243,7 @@
         "Val34": 1730921495,
         "FlorenceG": 1725517632,
         "Bricalie": 1746082575,
+        "LOTUS84": 1757051659,
         "ClaireLGM": 1750964598,
         "Guyem": 1710908730,
         "Anoutsa": 1714180423,
@@ -116807,6 +119255,7 @@
         "HebraudH": 1712681680,
         "NEMETONA34": 1711488543,
         "VALVALO": 1725584337,
+        "Faridalwest": 1755938166,
         "ValeryGond": 1717621363,
         "AuFilDuTemps": 1729563883,
         "JuanCarlos": 1735442581,
@@ -116861,9 +119310,9 @@
     "LaurentVanEeckhout": {
       "index": 1593,
       "owner_key": "B7Lciam4JLERvzu8Uzqs8RgbTYpFDgVJoRLsK1wrxpvX",
-      "balance": 1667769,
+      "balance": 1697455,
       "membership_expire_on": 1707395481,
-      "next_cert_issuable_on": 1678326512,
+      "next_cert_issuable_on": 1696768978,
       "certs_received": {
         "venusienne": 1740871235,
         "Valenvan": 1739074604,
@@ -116888,7 +119337,7 @@
     "Marta-Raksha": {
       "index": 10846,
       "owner_key": "B7PQBhDVC9BnK5oacHfLKBRZg3RnGbvxXKX9nfCGzAUS",
-      "balance": 154111,
+      "balance": 218297,
       "membership_expire_on": 1702345056,
       "next_cert_issuable_on": 1693131273,
       "certs_received": {
@@ -116905,7 +119354,7 @@
     "Albertocc": {
       "index": 7054,
       "owner_key": "B7TRRd6kwJEG9QZjAwRrJtM3RmSV28isjrT4o58t1b55",
-      "balance": 1047948,
+      "balance": 1064834,
       "membership_expire_on": 1703163240,
       "next_cert_issuable_on": 1689934907,
       "certs_received": {
@@ -116954,7 +119403,7 @@
     "Guyem": {
       "index": 7009,
       "owner_key": "B7ZsCJunYSBTR3AxfrVQVXYsdiJ8AxCYQ4SJAr4MFyco",
-      "balance": 659647,
+      "balance": 699333,
       "membership_expire_on": 1704758828,
       "next_cert_issuable_on": 1680491695,
       "certs_received": {
@@ -116988,7 +119437,7 @@
     "LeBrice": {
       "index": 2058,
       "owner_key": "B7ej5KNqUpBdVkFVW5oWH2qaCUB77UNNwnim9DPZFVFQ",
-      "balance": 2147325,
+      "balance": 2187011,
       "membership_expire_on": 1704295841,
       "next_cert_issuable_on": 1680568220,
       "certs_received": {
@@ -117006,9 +119455,9 @@
     "pilarart": {
       "index": 13164,
       "owner_key": "B7evv57KqKUgpei2CU4UcPW8wDnTUEEEuanUGxE4BjFo",
-      "balance": 287890,
+      "balance": 214876,
       "membership_expire_on": 1720905755,
-      "next_cert_issuable_on": 1691420459,
+      "next_cert_issuable_on": 1694529508,
       "certs_received": {
         "kapis": 1752544467,
         "IbonNakin": 1752537892,
@@ -117028,7 +119477,7 @@
     "MonRezola": {
       "index": 11672,
       "owner_key": "B7n4hx6noEW6gxeaGMdAqfd9P1aow6yjZt5DDicjYKeT",
-      "balance": 111863,
+      "balance": 133149,
       "membership_expire_on": 1708035040,
       "next_cert_issuable_on": 1691201226,
       "certs_received": {
@@ -117064,7 +119513,7 @@
     "Hybrid": {
       "index": 8599,
       "owner_key": "B7xqvQr8gZTfr3cpmFuuVmxzGhuuL3HJJvJ9yhXTPvdR",
-      "balance": 463096,
+      "balance": 502782,
       "membership_expire_on": 1713919335,
       "next_cert_issuable_on": 1672741762,
       "certs_received": {
@@ -117090,15 +119539,17 @@
     "Bsylvio": {
       "index": 6129,
       "owner_key": "B7zwBrc8A3tGAMHDJk1DvNWiukzaEm59igifhCX6QekH",
-      "balance": 816627,
+      "balance": 856313,
       "membership_expire_on": 1722715959,
       "next_cert_issuable_on": 1658323217,
       "certs_received": {
         "sfouludo": 1755732087,
         "HugoTen": 1754874000,
         "Bidulette": 1754874000,
+        "LKoala": 1757439967,
         "LenaB": 1700115405,
         "Sangelllo": 1697701432,
+        "MKoala": 1757440311,
         "FredB": 1700099297
       }
     },
@@ -117113,8 +119564,8 @@
     "Timnoel": {
       "index": 10579,
       "owner_key": "B89xGf9vmBkjP95EcPgBoPuB3ymJJbrUSK3mGVsAzvAg",
-      "balance": 293851,
-      "membership_expire_on": 1698086288,
+      "balance": 333537,
+      "membership_expire_on": 1726511621,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Kimoto": 1729714578,
@@ -117127,7 +119578,7 @@
     "IsaPambianchi": {
       "index": 6672,
       "owner_key": "B8D2C9M4UhdwMLTGAYPNHFGoHJsD2zyyPMWdb2AwWWZf",
-      "balance": 506114,
+      "balance": 545800,
       "membership_expire_on": 1703288637,
       "next_cert_issuable_on": 1675016373,
       "certs_received": {
@@ -117160,7 +119611,7 @@
     "lesclair": {
       "index": 13440,
       "owner_key": "B8JXUUJH9wLgWSAucxMCZo4EtRREZyyZMA26YhLCVVjx",
-      "balance": 6408,
+      "balance": 46094,
       "membership_expire_on": 1724450064,
       "next_cert_issuable_on": 1693212432,
       "certs_received": {
@@ -117174,8 +119625,8 @@
     "Bildili": {
       "index": 8965,
       "owner_key": "B8SJhxG9tKngfkvquDL3KQQbwDT9CjQE7P4dnAZu6jfY",
-      "balance": 391849,
-      "membership_expire_on": 0,
+      "balance": 402097,
+      "membership_expire_on": 1726932534,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "SolennB": 1720051959,
@@ -117197,8 +119648,8 @@
     "CarineC": {
       "index": 7237,
       "owner_key": "B8X2TBpPFHbTbqyvAQ3DE9MTW8mrrvs9LnS3eWLiRpMk",
-      "balance": 363580,
-      "membership_expire_on": 0,
+      "balance": 368970,
+      "membership_expire_on": 1727816483,
       "next_cert_issuable_on": 1650605691,
       "certs_received": {
         "ISABELLEDR": 1709937006,
@@ -117211,7 +119662,7 @@
     "Marmiroli": {
       "index": 7906,
       "owner_key": "B8cNasknMvCuAC6XGHzn2JnEZr2FC7UoLXG3FeuLuviH",
-      "balance": 459566,
+      "balance": 499252,
       "membership_expire_on": 1714679765,
       "next_cert_issuable_on": 1683640033,
       "certs_received": {
@@ -117294,7 +119745,7 @@
     "Florence97410": {
       "index": 8539,
       "owner_key": "B9AuHzC2ERaj7npQwkZKrcX58DQphzQ9pTLLL4CpbDKB",
-      "balance": 262452,
+      "balance": 300138,
       "membership_expire_on": 1712860474,
       "next_cert_issuable_on": 1686535749,
       "certs_received": {
@@ -117324,7 +119775,7 @@
     "thesliya": {
       "index": 9853,
       "owner_key": "B9Btgs71ciFMj5s4hvWkYYawGXfJKWmxXH83qY8481SC",
-      "balance": 346701,
+      "balance": 386387,
       "membership_expire_on": 1696795323,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -117338,13 +119789,17 @@
     "Walter2000": {
       "index": 13124,
       "owner_key": "B9H6LZSMyibwiogC11PTeCk32v84fQTLf1ZAyHvb2Q63",
-      "balance": 57722,
+      "balance": 119936,
       "membership_expire_on": 1719423047,
-      "next_cert_issuable_on": 1691907101,
+      "next_cert_issuable_on": 1696469258,
       "certs_received": {
+        "HelloSunshine": 1757390653,
         "Philippe26": 1751999023,
         "Takakra": 1754950780,
         "MyleneBN": 1751774648,
+        "Colaga": 1759215529,
+        "Merlinor": 1759127983,
+        "Jadom": 1758680916,
         "Thiery": 1751478601,
         "armunia": 1751835820,
         "Mashpro": 1751432725
@@ -117369,13 +119824,13 @@
       "owner_key": "B9fiUGCTjAZgTA9Q8r4ZXf8rpQur43MQTCJ1bC6Yav99",
       "balance": 722647,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1633631521,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "LucasSebastianPerez": {
       "index": 13388,
       "owner_key": "B9iqJ2xCwbzNZukWSsnGxP2uTmcU8cWspbqrhyspVAxs",
-      "balance": 26895,
+      "balance": 61846,
       "membership_expire_on": 1723683440,
       "next_cert_issuable_on": 1693227039,
       "certs_received": {
@@ -117393,7 +119848,7 @@
     "Auclairdelune": {
       "index": 11779,
       "owner_key": "B9m65wnhhCJKf76jDKNPvXbnzvNQddiojTztyVgyqoE",
-      "balance": 198441,
+      "balance": 238127,
       "membership_expire_on": 1708218548,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -117407,7 +119862,7 @@
     "Josephine60310": {
       "index": 10474,
       "owner_key": "B9mKAzrsa4ttHYSWXoZ8Mwu3anA1cixS3NFbD1CAgyq5",
-      "balance": 352605,
+      "balance": 392291,
       "membership_expire_on": 1699982983,
       "next_cert_issuable_on": 1689039332,
       "certs_received": {
@@ -117430,7 +119885,7 @@
     "Carolinda": {
       "index": 10875,
       "owner_key": "B9mvzw5u869mBPxJ1wsYVo7KDeFwsxHe9D36Zi93zUtf",
-      "balance": 337812,
+      "balance": 254698,
       "membership_expire_on": 1700882384,
       "next_cert_issuable_on": 1680521652,
       "certs_received": {
@@ -117457,9 +119912,9 @@
     "Lilou12": {
       "index": 13357,
       "owner_key": "B9wDETB1aDG5J4XVPVNRVqDPL9XoBnTY1grWLSnhGJhf",
-      "balance": 25292,
+      "balance": 64978,
       "membership_expire_on": 1720661969,
-      "next_cert_issuable_on": 1692783310,
+      "next_cert_issuable_on": 1695214227,
       "certs_received": {
         "KIRPI": 1752459698,
         "Egopode": 1752443868,
@@ -117471,8 +119926,8 @@
     "Seanasaurus": {
       "index": 9742,
       "owner_key": "B9zTNUt2Ymt4c8FMYShtiPtVGB4wa5Kei6rq3adpnPNd",
-      "balance": 155928,
-      "membership_expire_on": 1695836878,
+      "balance": 184834,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673851191,
       "certs_received": {
         "Domij": 1727416337,
@@ -117485,10 +119940,24 @@
         "Ciel": 1727395241
       }
     },
+    "Dario73": {
+      "index": 13518,
+      "owner_key": "BA4rkm9eqetRvnkMgZgTvhYbFKDXdJPEb5qFH7UoDXnn",
+      "balance": 32210,
+      "membership_expire_on": 1725476980,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Maelly97": 1757092752,
+        "Nejia07": 1757092752,
+        "Marco99": 1757092752,
+        "mlmlulu73": 1757223606,
+        "toto1967": 1757047310
+      }
+    },
     "Josedonato": {
       "index": 9924,
       "owner_key": "BAB1PUJiAKSrjDvuHq8CtQK4Rcw11m71h5vjSJ5Jtzj5",
-      "balance": 349906,
+      "balance": 389592,
       "membership_expire_on": 1697212775,
       "next_cert_issuable_on": 1668653984,
       "certs_received": {
@@ -117504,14 +119973,13 @@
     "Glycine13": {
       "index": 5372,
       "owner_key": "BAFNYwr5jDjTpSp55S56ng8BXqawspoFXTp7yazmtMBD",
-      "balance": 671732,
+      "balance": 711418,
       "membership_expire_on": 1711040318,
       "next_cert_issuable_on": 1693206885,
       "certs_received": {
         "PatrickEtreSouverain": 1752802518,
         "Isabelle13004": 1706289825,
         "Karigera": 1756192759,
-        "IngridCourreges": 1696421398,
         "Jackiestl13": 1723076685,
         "BobMarchand": 1752270382,
         "MrMrtn": 1742709710,
@@ -117526,9 +119994,9 @@
     "Diessanne": {
       "index": 5838,
       "owner_key": "BAJGLC6WCMy82i9WXaimBzjgEuWfZo5BCQVDp1NKkLUh",
-      "balance": 279821,
+      "balance": 436007,
       "membership_expire_on": 1718879776,
-      "next_cert_issuable_on": 1693494383,
+      "next_cert_issuable_on": 1696085617,
       "certs_received": {
         "AgnesFerey": 1716923829,
         "kapis": 1754863972,
@@ -117544,7 +120012,6 @@
         "MAGSENS": 1715479462,
         "IsabelleF": 1732773418,
         "StephaneChambon": 1720636874,
-        "MAZUZA": 1696514717,
         "Samuel77": 1706756745,
         "Carole26": 1701063482,
         "NathalieEtreSouverain": 1706310980,
@@ -117553,6 +120020,7 @@
         "Lazarine": 1723340212,
         "Kouleurs": 1717739840,
         "Maminou13": 1696999839,
+        "ClaireM97410": 1757010799,
         "KdeLambesc": 1755557504,
         "michaelopdenacker": 1705878689,
         "Tipheret": 1733875728,
@@ -117569,6 +120037,7 @@
         "Bricalie": 1741986101,
         "MHL": 1751131251,
         "cpriou11": 1736199910,
+        "Florencefleur": 1758333913,
         "DCat": 1714600878,
         "LORBRUN": 1734825160,
         "CedrickPiwo": 1714212489,
@@ -117579,6 +120048,7 @@
         "GeraldineGarrigues": 1697054882,
         "JeanTibou": 1709260178,
         "AgnesMareau": 1712350100,
+        "Did-yeah": 1758665792,
         "SylvieM35": 1752129628,
         "couetmikael": 1751909636,
         "chaussette": 1721276599,
@@ -117609,7 +120079,7 @@
     "HenriCotonnec": {
       "index": 4405,
       "owner_key": "BAPKkSGYYa8gpAdKwZsXJ3uMV9G47WvjFnmriF1BWJLA",
-      "balance": 1052091,
+      "balance": 1091777,
       "membership_expire_on": 1698788293,
       "next_cert_issuable_on": 1674560862,
       "certs_received": {
@@ -117623,9 +120093,9 @@
     "chantlavie60": {
       "index": 13354,
       "owner_key": "BAQwPyGJNn1RM44WYn6vcShKFQWqreWNHkAe3V5pECrK",
-      "balance": 26028,
+      "balance": 38582,
       "membership_expire_on": 1722174362,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696656175,
       "certs_received": {
         "ChristelR": 1753940593,
         "LaFeeClochette": 1753753018,
@@ -117648,6 +120118,22 @@
         "Sophiefiso": 1723579318
       }
     },
+    "IceCaramba": {
+      "index": 13622,
+      "owner_key": "BAWQhSuuDEJHFrpn7zJ6QcUBVELwwwEN8GgbRiVhmeoc",
+      "balance": 68417,
+      "membership_expire_on": 1725459656,
+      "next_cert_issuable_on": 1696673502,
+      "certs_received": {
+        "Aquaneo": 1758398531,
+        "St123": 1757564544,
+        "Picsou": 1758398858,
+        "chantlavie60": 1757547020,
+        "Pamelaayurveda": 1757988481,
+        "Ely81": 1758300974,
+        "Picatch": 1757571556
+      }
+    },
     "toinou76": {
       "index": 791,
       "owner_key": "BAjuTnxujhXfPVLRQu286GoqmS9FWY6zLhpCgipMQPnA",
@@ -117659,9 +120145,9 @@
     "CecilePCPenyaflor": {
       "index": 13285,
       "owner_key": "BApH7CY4QMGkdpw5vF3TBo9gFogtXZR6Dfm1xrfUYeje",
-      "balance": 40608,
+      "balance": 80294,
       "membership_expire_on": 1721072342,
-      "next_cert_issuable_on": 1692538441,
+      "next_cert_issuable_on": 1695312105,
       "certs_received": {
         "arbocenc": 1753984405,
         "Montsin": 1753915797,
@@ -117681,7 +120167,7 @@
     "Linkindark": {
       "index": 8560,
       "owner_key": "BB1NYKjZY6Dmtw4PRabLJPVAxdML1ULY87YyL4hHLyTQ",
-      "balance": 443762,
+      "balance": 483448,
       "membership_expire_on": 1721598876,
       "next_cert_issuable_on": 1655705023,
       "certs_received": {
@@ -117697,11 +120183,10 @@
     "HoareauJulianne974": {
       "index": 4480,
       "owner_key": "BBEXrDMrANc3615ChATCSJWwAV5FWo46RgRFfD52kE5m",
-      "balance": 753062,
+      "balance": 792748,
       "membership_expire_on": 1702756803,
       "next_cert_issuable_on": 1655561040,
       "certs_received": {
-        "melanie_zen974": 1696441159,
         "Jmi": 1718675923,
         "Liliane50974": 1714702780,
         "pearlreunion": 1708316645,
@@ -117746,7 +120231,7 @@
     "Mockingjay1963": {
       "index": 11216,
       "owner_key": "BBgknmPSdyZDcgiARFZ57YnwyaLZSZvhuzsuhwGpBR5f",
-      "balance": 245037,
+      "balance": 284723,
       "membership_expire_on": 1705113705,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -117771,12 +120256,27 @@
         "Noa07": 1703049393
       }
     },
+    "EmmaKim": {
+      "index": 13545,
+      "owner_key": "BBu7Bqfqjh8qjWQFiZutXWiAxtQxCryfTBzggfbNkebm",
+      "balance": 29917,
+      "membership_expire_on": 1723400908,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "lims": 1757470028,
+        "blackzila": 1757469784,
+        "Fif": 1757470028,
+        "Bench": 1757469784,
+        "LabelleVi": 1755463768,
+        "iafu": 1757470274
+      }
+    },
     "PaulO": {
       "index": 12750,
       "owner_key": "BBv2zNjCw7TswBVGDienWvaTNzKaaJK9frTRb21P5EqY",
-      "balance": 131428,
+      "balance": 211114,
       "membership_expire_on": 1714416490,
-      "next_cert_issuable_on": 1685427986,
+      "next_cert_issuable_on": 1696674837,
       "certs_received": {
         "JeandelAude": 1746123002,
         "SylvieT": 1746501879,
@@ -117790,7 +120290,7 @@
     "OphelieVaccaro": {
       "index": 11161,
       "owner_key": "BC9Qa9YYoo25hk4RCFPNPtJtptCZja55WJqfGHHTE1KG",
-      "balance": 250332,
+      "balance": 290018,
       "membership_expire_on": 1703173074,
       "next_cert_issuable_on": 1679641627,
       "certs_received": {
@@ -117806,7 +120306,7 @@
     "Johann": {
       "index": 1795,
       "owner_key": "BCFggtMTmesUitvoAYWHYzHAMUCxGdnfPEvx4E9SJU3v",
-      "balance": 752515,
+      "balance": 782201,
       "membership_expire_on": 1717962558,
       "next_cert_issuable_on": 1686562346,
       "certs_received": {
@@ -117828,14 +120328,13 @@
       "certs_received": {
         "Babaroun": 1704161341,
         "Supralumen": 1701834835,
-        "NadineGS": 1694496234,
         "katou": 1701584573
       }
     },
     "RomDet17": {
       "index": 11941,
       "owner_key": "BCJ3tLkNDLdLK7avVV3rrD38bNh3yZLakAr8kBbpdoZh",
-      "balance": 187362,
+      "balance": 227048,
       "membership_expire_on": 1710042454,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -117882,9 +120381,9 @@
     "Ade": {
       "index": 12382,
       "owner_key": "BCPpMK8t9P2a28Z2gWs9rZwiAfzuHK1upbER3AWWtJFM",
-      "balance": 134776,
+      "balance": 129462,
       "membership_expire_on": 1713297380,
-      "next_cert_issuable_on": 1690871437,
+      "next_cert_issuable_on": 1694459524,
       "certs_received": {
         "RuthGuerrero": 1744971481,
         "JACA": 1745011489,
@@ -117899,7 +120398,7 @@
     "Nanou18": {
       "index": 5222,
       "owner_key": "BCPuiurU8EZPc9XgLu2GFMKzajs4nHjpuVfu6pgoPPBv",
-      "balance": 862184,
+      "balance": 901870,
       "membership_expire_on": 1718456849,
       "next_cert_issuable_on": 1689335371,
       "certs_received": {
@@ -117926,7 +120425,7 @@
     "Junoel": {
       "index": 6514,
       "owner_key": "BCbVSUfoqw39eqJBaUuJJLQDuwmRVMiAV7uLSMzDP3D8",
-      "balance": 1304366,
+      "balance": 1344052,
       "membership_expire_on": 1706401909,
       "next_cert_issuable_on": 1661770141,
       "certs_received": {
@@ -117945,7 +120444,7 @@
     "ManuelV974": {
       "index": 10217,
       "owner_key": "BCbwVDGGvCMQyUkqSbEX4yszPhjDvYmF7Pq2icGLmhLX",
-      "balance": 327049,
+      "balance": 366735,
       "membership_expire_on": 1698355733,
       "next_cert_issuable_on": 1667939085,
       "certs_received": {
@@ -117960,9 +120459,9 @@
     "ChrisW": {
       "index": 3866,
       "owner_key": "BCckvZd36gvAthg1M9WfdGtNkhjAs595J3WK7HhGwnBp",
-      "balance": 274913,
+      "balance": 226907,
       "membership_expire_on": 1708631094,
-      "next_cert_issuable_on": 1681017687,
+      "next_cert_issuable_on": 1695273141,
       "certs_received": {
         "Jeratik": 1723623103,
         "Colheres": 1742429718,
@@ -117981,7 +120480,7 @@
     "ashka": {
       "index": 4828,
       "owner_key": "BCdwVq4W5ffkKkc9AvH1XaHj6XMRULdWqk5DFeQ6VyGT",
-      "balance": 815885,
+      "balance": 855571,
       "membership_expire_on": 1712513316,
       "next_cert_issuable_on": 1658046436,
       "certs_received": {
@@ -117996,9 +120495,9 @@
     "ChristopheRobine": {
       "index": 2158,
       "owner_key": "BCeKMYPYv41VA8m7d4oxc2PZ3y7PjjQnanMmPm5CZRzH",
-      "balance": 406783,
+      "balance": 430449,
       "membership_expire_on": 1720545358,
-      "next_cert_issuable_on": 1690245460,
+      "next_cert_issuable_on": 1696495038,
       "certs_received": {
         "Katiecat": 1739399508,
         "Stessy": 1737741692,
@@ -118034,7 +120533,6 @@
         "romane": 1701122270,
         "Gil84": 1704780519,
         "Lulu": 1698826167,
-        "Maddy": 1695406533,
         "OrAnge": 1747810530,
         "AnneMarieRuiz": 1735170938,
         "Hdsaf": 1704166722,
@@ -118052,8 +120550,7 @@
       "next_cert_issuable_on": 1660648459,
       "certs_received": {
         "AlexandreA": 1715933461,
-        "dondiego78": 1703250798,
-        "Chlea2010": 1696686808
+        "dondiego78": 1703250798
       }
     },
     "AlexandreSarradin": {
@@ -118089,7 +120586,7 @@
     "SIMONEANTONELLI": {
       "index": 1304,
       "owner_key": "BD3pJ7Y28yLU3Hi9qwL8Wyde4a4JeigNwkk6FshY1a9m",
-      "balance": 930332,
+      "balance": 974418,
       "membership_expire_on": 1699311369,
       "next_cert_issuable_on": 1666079622,
       "certs_received": {
@@ -118104,7 +120601,7 @@
         "Iguana": 1715656941,
         "Trayx": 1718748625,
         "CMJ34": 1714804554,
-        "Mikhaella3448": 1695611517,
+        "Mikhaella3448": 1758178879,
         "toutestjoli34": 1731808972,
         "BRIGITTE2019": 1733504059,
         "Eauvive": 1718821318,
@@ -118132,7 +120629,7 @@
     "barbara": {
       "index": 7300,
       "owner_key": "BDA1dEGx1DVT28NQuk4qVaGH9659Vwb92JMUu2LHPCbk",
-      "balance": 13583,
+      "balance": 29669,
       "membership_expire_on": 1708971414,
       "next_cert_issuable_on": 1690959501,
       "certs_received": {
@@ -118156,27 +120653,36 @@
         "BeatrizGG": 1722642784
       }
     },
+    "Tropez": {
+      "index": 13651,
+      "owner_key": "BDA4Nqq9VP1rc9vnMEPhrdnVFBwkNCPxhafiDx9NsWXq",
+      "balance": 26014,
+      "membership_expire_on": 1727091697,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "MIDO": 1758653025,
+        "Etoiledunord": 1758691139,
+        "CecileBeaulieu": 1758653294,
+        "AnnieP38": 1758688844,
+        "RejjeR": 1758651956
+      }
+    },
     "Magvr": {
       "index": 2678,
       "owner_key": "BDAmrz4vqhEuu3tA5jpjtnVSyGmcXe1x684WFZwvvuqm",
-      "balance": 744197,
-      "membership_expire_on": 1719316795,
-      "next_cert_issuable_on": 1679902631,
+      "balance": 767713,
+      "membership_expire_on": 0,
+      "next_cert_issuable_on": 1694343969,
       "certs_received": {
         "Alinerv": 1739158294,
-        "Georges_M_mbr": 1695273236,
         "NansCoCreator": 1701233735,
-        "DelfIne": 1695444062,
-        "Sandrine-": 1695413717,
-        "JeanMarieTUBOEUF": 1713989042,
-        "FVK": 1695192514,
-        "Bea": 1695197085
+        "JeanMarieTUBOEUF": 1713989042
       }
     },
     "Vimpy": {
       "index": 7376,
       "owner_key": "BDDzPRxtqZX4umtVwXPW7BRj8Wh1fVLorqqPsHUXDTWB",
-      "balance": 483233,
+      "balance": 508919,
       "membership_expire_on": 1705956899,
       "next_cert_issuable_on": 1676385997,
       "certs_received": {
@@ -118240,11 +120746,12 @@
     "Mahj": {
       "index": 9560,
       "owner_key": "BDbS46KWVdPD24ueWHyLQPQkRoPYVnBjJdT7JRRZTLZ5",
-      "balance": 379983,
+      "balance": 569669,
       "membership_expire_on": 1723494359,
-      "next_cert_issuable_on": 1688716660,
+      "next_cert_issuable_on": 1696041100,
       "certs_received": {
         "M-France": 1746731765,
+        "Domi418": 1755077737,
         "CatherineMonastirieff": 1726332801,
         "IlonadeHaas": 1726349980,
         "Pieter-LucvanNikkel": 1737477326,
@@ -118257,7 +120764,7 @@
     "marie-sabine": {
       "index": 8151,
       "owner_key": "BDh5nfafutSg41Shc1SyNZwehDXCzQeuVvmb2P4EUF6s",
-      "balance": 436103,
+      "balance": 475789,
       "membership_expire_on": 1714595531,
       "next_cert_issuable_on": 1678802581,
       "certs_received": {
@@ -118279,7 +120786,7 @@
     "Tonton974": {
       "index": 3156,
       "owner_key": "BDizqTULCVXFge2E887rk9mxi44TCEHJsz1XBQibuiti",
-      "balance": 925022,
+      "balance": 964708,
       "membership_expire_on": 1722589302,
       "next_cert_issuable_on": 1691104087,
       "certs_received": {
@@ -118299,7 +120806,7 @@
     "Cathou": {
       "index": 12723,
       "owner_key": "BDjJaL3NpqNXNwVuaqyayQZsywU9oZv8P1dUhDHUmHsk",
-      "balance": 469184,
+      "balance": 508870,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1690277590,
       "certs_received": {
@@ -118325,7 +120832,7 @@
     "jan": {
       "index": 13403,
       "owner_key": "BDrNw8WRi9sG5etCrkXGdQpYSd7jakXiaLAzyYFFnBfM",
-      "balance": 28216,
+      "balance": 67902,
       "membership_expire_on": 1723915328,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -118339,11 +120846,11 @@
     "jeanlucdonnadieu": {
       "index": 809,
       "owner_key": "BDv28pi7c1GCbfZqcdEdXuMwubTjswepR1mAZW7YS9vt",
-      "balance": 1613988,
+      "balance": 1642654,
       "membership_expire_on": 1713706024,
       "next_cert_issuable_on": 1691554177,
       "certs_received": {
-        "YannKervran": 1700725978,
+        "YannKervran": 1758425990,
         "pidu": 1702452903,
         "Philp": 1754345001,
         "OlivierLa": 1751308362,
@@ -118362,9 +120869,9 @@
     "YANNIERRE": {
       "index": 12995,
       "owner_key": "BDwVftJRhAQDSNr8v2UYEYsgbQg9dFjKAHMT2FrrNpN6",
-      "balance": 115276,
+      "balance": 142022,
       "membership_expire_on": 1716557933,
-      "next_cert_issuable_on": 1692695999,
+      "next_cert_issuable_on": 1694146190,
       "certs_received": {
         "Tidus": 1749585539,
         "AlexHalley": 1749934614,
@@ -118373,6 +120880,7 @@
         "Sainte-Russie": 1750901223,
         "Migus01": 1750359644,
         "yenamarre": 1750908449,
+        "Vivant3000": 1757723468,
         "Titus": 1749582973,
         "adamscurtis": 1749770050,
         "LudovicMJC": 1750907737
@@ -118381,8 +120889,8 @@
     "Brigitte45": {
       "index": 6657,
       "owner_key": "BDx6nNqrEEtF3QeiM4HMCJTwTtNyGfrdF8PbofBNmpUx",
-      "balance": 573509,
-      "membership_expire_on": 1701449065,
+      "balance": 583195,
+      "membership_expire_on": 1728135393,
       "next_cert_issuable_on": 1693470666,
       "certs_received": {
         "Valenvan": 1739075732,
@@ -118407,7 +120915,7 @@
     "Corinne974": {
       "index": 3761,
       "owner_key": "BE5RRMV5WrpLrVTiBn1WQjyZRXQdjJiYKD1DnLwwrDBB",
-      "balance": 1016147,
+      "balance": 1066833,
       "membership_expire_on": 1705402543,
       "next_cert_issuable_on": 1681537567,
       "certs_received": {
@@ -118467,13 +120975,14 @@
     "Siltaar": {
       "index": 4712,
       "owner_key": "BEHspa1LFfXmXFc739BS1tGg81Tkas8obthz6SUZcedQ",
-      "balance": 692934,
+      "balance": 732620,
       "membership_expire_on": 1710650453,
       "next_cert_issuable_on": 1676782766,
       "certs_received": {
         "ArthurLutz": 1746064362,
         "fluidlog": 1746298710,
         "NordineVallas": 1741743387,
+        "JeromeCoste": 1756572815,
         "gpsqueeek": 1738537648,
         "Attilax": 1739835744
       }
@@ -118489,17 +120998,20 @@
     "Lolottethered": {
       "index": 9936,
       "owner_key": "BENhD4G5NUuAfMdJrtiLeQZtVJqsgUQWUu5EHRtPBxLp",
-      "balance": 322934,
+      "balance": 321920,
       "membership_expire_on": 1723035010,
-      "next_cert_issuable_on": 1693523014,
+      "next_cert_issuable_on": 1694790207,
       "certs_received": {
         "Paslake": 1735616213,
+        "Paradine": 1757657522,
         "Golly": 1728938251,
+        "Fab": 1758042812,
         "Rosalie": 1728873217,
         "Furiosa": 1744411295,
         "Vigo": 1728872952,
         "Vinciane": 1736792670,
         "CatherineLouis": 1728965915,
+        "Mazurka": 1756785988,
         "Anolisbaladin": 1745296369,
         "bobbie": 1735617645,
         "Yan_Vilain": 1731305440,
@@ -118510,9 +121022,9 @@
     "Luallum": {
       "index": 9092,
       "owner_key": "BEaQtngVq4guPgEEgTbCeJjwCswRb7hBhCLLeYjadDZ6",
-      "balance": 118715,
+      "balance": 84221,
       "membership_expire_on": 1717015285,
-      "next_cert_issuable_on": 1684960861,
+      "next_cert_issuable_on": 1695647939,
       "certs_received": {
         "SophSav": 1744330950,
         "SaraRo": 1722211105,
@@ -118527,6 +121039,7 @@
         "davidbp845": 1722203027,
         "AstrologoDespierto": 1723438679,
         "barbara": 1721753383,
+        "Mariaje": 1758665012,
         "brufaganya": 1729378215,
         "SoniaVac": 1722221119,
         "XavierPS": 1732237171,
@@ -118551,8 +121064,8 @@
     "Anoutsa": {
       "index": 6259,
       "owner_key": "BEiA1tA6kMRLkbgRPf8fyEuQFg9eMGEDFXF9xLGCsxgb",
-      "balance": 572143,
-      "membership_expire_on": 1697507150,
+      "balance": 542837,
+      "membership_expire_on": 1727374479,
       "next_cert_issuable_on": 1689777518,
       "certs_received": {
         "Sev": 1708234325,
@@ -118578,9 +121091,9 @@
     "Natashine": {
       "index": 12967,
       "owner_key": "BEsnjovZDH88QXJ1s2NvWerQoWNLU6EDzAfwkK1UERVT",
-      "balance": 81292,
+      "balance": 160978,
       "membership_expire_on": 1718631671,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695105325,
       "certs_received": {
         "JanineBoitel": 1750572961,
         "Mam": 1750200584,
@@ -118606,11 +121119,12 @@
     "CecileBekate": {
       "index": 5277,
       "owner_key": "BEvK9mYahA4WTYHEemeMyEc8Qu5WFvh3VeDUNVGYd7Gv",
-      "balance": 616388,
+      "balance": 606074,
       "membership_expire_on": 1704559337,
       "next_cert_issuable_on": 1684689851,
       "certs_received": {
         "Hades": 1746316965,
+        "Majoli34": 1759078433,
         "KIRPI": 1752459698,
         "DimitriTuffreau": 1747940794,
         "Kali": 1746316965,
@@ -118618,6 +121132,7 @@
         "Alex34": 1755123736,
         "Sylv12": 1737176623,
         "enchemin": 1755123736,
+        "Nico34": 1755126101,
         "LydiaRoche": 1747350639
       }
     },
@@ -118632,9 +121147,9 @@
     "CorinneBaro": {
       "index": 1941,
       "owner_key": "BF3ug24ZQeSpbzsF5MbhamCHnhy9vvq4rWwyfb2JTgw7",
-      "balance": 821448,
+      "balance": 856634,
       "membership_expire_on": 1724620315,
-      "next_cert_issuable_on": 1683210222,
+      "next_cert_issuable_on": 1694016006,
       "certs_received": {
         "Zap": 1743351039,
         "Carine888": 1743611420,
@@ -118668,9 +121183,7 @@
       "balance": 673118,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Jcteulier": 1693687599
-      }
+      "certs_received": {}
     },
     "tonib": {
       "index": 5117,
@@ -118702,9 +121215,9 @@
     "RaphaelleEva": {
       "index": 1843,
       "owner_key": "BFN6sn8jKmekTfnu5jcSCSQDzknJPXcKuMzhDDwXzkes",
-      "balance": 1146025,
-      "membership_expire_on": 1697061379,
-      "next_cert_issuable_on": 1687441422,
+      "balance": 1185711,
+      "membership_expire_on": 1727001214,
+      "next_cert_issuable_on": 1695515614,
       "certs_received": {
         "CharlesCros": 1733295163,
         "Estellea": 1704787952,
@@ -118729,9 +121242,9 @@
     "Vigo": {
       "index": 8312,
       "owner_key": "BFWqPCJxj8FvFKqYc6HpKLnvk4P6QnMxZxSErgYtxTq7",
-      "balance": 669095,
+      "balance": 727709,
       "membership_expire_on": 1712180151,
-      "next_cert_issuable_on": 1691381446,
+      "next_cert_issuable_on": 1696422147,
       "certs_received": {
         "kapis": 1722759160,
         "EliseB": 1720426478,
@@ -118749,6 +121262,7 @@
         "OlivierRisselin": 1735596922,
         "Rosalie": 1729487882,
         "Denis": 1716943130,
+        "Vince": 1759465347,
         "Danielle": 1724723741,
         "CatherineWilkin": 1747664818,
         "fanfan": 1726078250,
@@ -118772,8 +121286,8 @@
     "Mag": {
       "index": 10622,
       "owner_key": "BFaJ6JcKEQ21Re2MCFMHkU9Mj3bWhFzG1Es1EyBqSeAD",
-      "balance": 269222,
-      "membership_expire_on": 1700917875,
+      "balance": 308908,
+      "membership_expire_on": 1727864794,
       "next_cert_issuable_on": 1681866294,
       "certs_received": {
         "Hava_bien": 1741167007,
@@ -118800,7 +121314,7 @@
     "Eloelodie": {
       "index": 13191,
       "owner_key": "BFmgky1YuboRt1myMSoGorpY5bxtvTSzg8SHooACgjTd",
-      "balance": 63584,
+      "balance": 98270,
       "membership_expire_on": 1719703901,
       "next_cert_issuable_on": 1689848908,
       "certs_received": {
@@ -118816,12 +121330,10 @@
     "Diogox51": {
       "index": 5803,
       "owner_key": "BFtr42MSKmqBBsW78zrjfiA5dSxhcTwic1kXmy4sAzM1",
-      "balance": 2136,
+      "balance": 41822,
       "membership_expire_on": 1721265298,
       "next_cert_issuable_on": 1669954733,
       "certs_received": {
-        "DelphineDietsch": 1696643759,
-        "Martine51": 1696572920,
         "IsabelleGlorian": 1698720662,
         "Nadege51": 1731539967,
         "PatriciaA": 1733016906,
@@ -118829,11 +121341,10 @@
         "Ambre": 1721969758,
         "Audr3y": 1731787198,
         "FreeLight": 1729079103,
-        "Syldess": 1696688337,
+        "Syldess": 1759725140,
         "Fullmoonlight": 1717538420,
         "Lando": 1718404905,
         "CatherineDouchamps": 1705510778,
-        "FatimaMIEL51": 1696652558,
         "MinaManar": 1712626187,
         "Nono51": 1725327790,
         "Martienne": 1725746189
@@ -118842,7 +121353,7 @@
     "Mialove": {
       "index": 9498,
       "owner_key": "BFwbQRe43Ttz4XS8PV5JbpRMnKvVKhcH9iRpaJrUk4xk",
-      "balance": 441289,
+      "balance": 468875,
       "membership_expire_on": 1723404444,
       "next_cert_issuable_on": 1682363129,
       "certs_received": {
@@ -118882,7 +121393,7 @@
     "Enitra": {
       "index": 11082,
       "owner_key": "BG9BYBYwYuFTZZcDYRfuPUiLNFBaZAjfr4HrGescc871",
-      "balance": 83996,
+      "balance": 58182,
       "membership_expire_on": 1703084690,
       "next_cert_issuable_on": 1686485855,
       "certs_received": {
@@ -118899,7 +121410,7 @@
     "Lamarmotte": {
       "index": 9903,
       "owner_key": "BGGtwH6pjq42UnYVp4xMqLqHudB4Ds3DJz4eXV1yeJFN",
-      "balance": 679465,
+      "balance": 719151,
       "membership_expire_on": 1724260631,
       "next_cert_issuable_on": 1665798744,
       "certs_received": {
@@ -118915,8 +121426,8 @@
     "DanielleChabanon": {
       "index": 9593,
       "owner_key": "BGHhaFYhWYA7wUF8Z1AeeTDcujPX1XAHjyfg1jydkLM",
-      "balance": 335822,
-      "membership_expire_on": 1695048348,
+      "balance": 355046,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "NathalieCokelaer": 1726611951,
@@ -118943,7 +121454,7 @@
     "Nekko": {
       "index": 11649,
       "owner_key": "BGPRJNbXWwNkujdeFcefGzMSC6QGyTTeijoT7p8y7F85",
-      "balance": 207972,
+      "balance": 247658,
       "membership_expire_on": 1707774143,
       "next_cert_issuable_on": 1682599892,
       "certs_received": {
@@ -118973,7 +121484,7 @@
     "gervez": {
       "index": 8573,
       "owner_key": "BGVw9xAMGLyZP8nJzgJQLu5Tg1VYywXHgARw3tzGbxey",
-      "balance": 466840,
+      "balance": 506526,
       "membership_expire_on": 1713558527,
       "next_cert_issuable_on": 1685976660,
       "certs_received": {
@@ -118992,7 +121503,7 @@
     "Sabinou": {
       "index": 10746,
       "owner_key": "BGhjBtkTN8U6fuXg5Vgwed6FV3ERvHLgNCZ1dgbXWwpJ",
-      "balance": 283161,
+      "balance": 322847,
       "membership_expire_on": 1701219634,
       "next_cert_issuable_on": 1690455162,
       "certs_received": {
@@ -119028,7 +121539,7 @@
     "Christal": {
       "index": 8349,
       "owner_key": "BGvfuTy4zPSpUx9UcKDPB1VXYH4WgMQYg7XUVtdXN6aa",
-      "balance": 871464,
+      "balance": 911150,
       "membership_expire_on": 1714820486,
       "next_cert_issuable_on": 1683367280,
       "certs_received": {
@@ -119046,9 +121557,9 @@
     "MaEstherG1": {
       "index": 8675,
       "owner_key": "BGx3Ln7pKDbhHi3VQTiKCuQakqfvBST3rtGn8Fn6w6M5",
-      "balance": 223853,
+      "balance": 188339,
       "membership_expire_on": 1718501228,
-      "next_cert_issuable_on": 1693003787,
+      "next_cert_issuable_on": 1693806150,
       "certs_received": {
         "xandraAritzkuren": 1737515068,
         "Aguas": 1734986389,
@@ -119058,6 +121569,7 @@
         "agustinton": 1725388129,
         "THORGAL1968": 1737783491,
         "Colheres": 1724727480,
+        "AnaMery": 1756888292,
         "AlvaroFernandez": 1739610133,
         "OliverChaMo": 1733762233,
         "EstherVM": 1734056556,
@@ -119066,6 +121578,7 @@
         "Lurtxu": 1723537593,
         "Corinne-Co": 1720933937,
         "Jeff7791": 1720918039,
+        "realbrucest": 1755562251,
         "MeliCP": 1735101356,
         "Belobal": 1722842755,
         "yoelijomivida": 1736568492,
@@ -119131,32 +121644,26 @@
         "XavierALBERT": 1701456776,
         "aurelie": 1712339986,
         "RoselyneBinesse": 1698892202,
-        "boyeshua": 1693810952,
-        "ChantAlGuet": 1717211896,
-        "Ethersource83": 1696146961
+        "ChantAlGuet": 1717211896
       }
     },
     "Lotus17": {
       "index": 5596,
       "owner_key": "BHBvz2FR41Xiom55y81P2SeEUAfGEKXFpRxY7F8VY79R",
-      "balance": 408673,
-      "membership_expire_on": 1724515181,
+      "balance": 410809,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1653147546,
       "certs_received": {
-        "Aatma": 1693705910,
         "BlancaFlow": 1700967231,
-        "Pasteta": 1693721624,
-        "Wellno1": 1693706260,
         "ElenaMavida": 1707511513,
         "Thais": 1752252224,
-        "Nana_EsCalaix": 1718265141,
-        "eno": 1693721895
+        "Nana_EsCalaix": 1718265141
       }
     },
     "MariadeMonteux": {
       "index": 10104,
       "owner_key": "BHE9HQMCaMF5wV9Ub9eZi75uGnjwPbVqPxBZMuvBJuPb",
-      "balance": 328380,
+      "balance": 368066,
       "membership_expire_on": 1698520434,
       "next_cert_issuable_on": 1673322184,
       "certs_received": {
@@ -119171,7 +121678,7 @@
     "Angelsmart": {
       "index": 6393,
       "owner_key": "BHFrK5rZmtqsUJGFSnZRwmDoZm8BgbAxDvSBFyu4bGFn",
-      "balance": 531853,
+      "balance": 571539,
       "membership_expire_on": 1702077259,
       "next_cert_issuable_on": 1677604890,
       "certs_received": {
@@ -119188,9 +121695,9 @@
     "GeraldS": {
       "index": 4170,
       "owner_key": "BHGb9pXi4a46JkpccSg428JefjpUJB7rijBmytwWgCrQ",
-      "balance": 513279,
+      "balance": 553065,
       "membership_expire_on": 1707088786,
-      "next_cert_issuable_on": 1692982625,
+      "next_cert_issuable_on": 1695361598,
       "certs_received": {
         "Psy": 1754425834,
         "Lionel_Dechilly": 1755242111,
@@ -119242,7 +121749,7 @@
     "chrisbaud": {
       "index": 7859,
       "owner_key": "BHoqDStoRq9Bf4JsbvfbjhtBjtjPL4y69d54TgFqmmPR",
-      "balance": 479308,
+      "balance": 518994,
       "membership_expire_on": 1713180179,
       "next_cert_issuable_on": 1651449383,
       "certs_received": {
@@ -119259,7 +121766,7 @@
     "Xoxomai": {
       "index": 10854,
       "owner_key": "BHr76DY7nLZWDUMiSzEEiNGYFf1GVT7vQy1CJBsGkj1T",
-      "balance": 101448,
+      "balance": 109234,
       "membership_expire_on": 1702407710,
       "next_cert_issuable_on": 1674547620,
       "certs_received": {
@@ -119274,9 +121781,9 @@
     "Papy89": {
       "index": 8883,
       "owner_key": "BJ5VeK5hoA5m379xGc8eC4rpAZMharH8XAKd9RR4oRzp",
-      "balance": 57380,
+      "balance": 87166,
       "membership_expire_on": 1715469093,
-      "next_cert_issuable_on": 1687238627,
+      "next_cert_issuable_on": 1696079487,
       "certs_received": {
         "djam": 1719722583,
         "Helenep": 1719464074,
@@ -119294,9 +121801,9 @@
     "Sonic": {
       "index": 12707,
       "owner_key": "BJ7iscfdXBga96CDsKbb9zE83nE33JixK1ajZyGYsf1Z",
-      "balance": 115004,
+      "balance": 269690,
       "membership_expire_on": 1714586832,
-      "next_cert_issuable_on": 1684775636,
+      "next_cert_issuable_on": 1696216348,
       "certs_received": {
         "Ferpires": 1754123607,
         "InesHappyFamily": 1747411677,
@@ -119317,7 +121824,7 @@
     "Jovinda": {
       "index": 12621,
       "owner_key": "BJAEVtpvh4E3mCjLBpYfM4ZfTWGydKAExZWUpyHo1GFZ",
-      "balance": 118548,
+      "balance": 158234,
       "membership_expire_on": 1715201061,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -119331,7 +121838,7 @@
     "Youch": {
       "index": 11415,
       "owner_key": "BJAr3udafFN2eXuYzQma667n3DjDj2vZ6BhkxWVu6cp9",
-      "balance": 186834,
+      "balance": 226520,
       "membership_expire_on": 1706638343,
       "next_cert_issuable_on": 1683116286,
       "certs_received": {
@@ -119345,9 +121852,9 @@
     "Elascap": {
       "index": 12103,
       "owner_key": "BJCQ5a5Y36jnuy4bNyD9W14WDLWPnfz7zeez3EziFA9v",
-      "balance": 171380,
+      "balance": 211066,
       "membership_expire_on": 1707401321,
-      "next_cert_issuable_on": 1683340098,
+      "next_cert_issuable_on": 1696244129,
       "certs_received": {
         "Richard": 1742446269,
         "Marie-Laure": 1742776908,
@@ -119359,9 +121866,9 @@
     "Seve": {
       "index": 4350,
       "owner_key": "BJEeT9ghTJUQwRtDh9DGHHAwPvwbWB65HgFdTr7oJRVP",
-      "balance": 898970,
+      "balance": 933768,
       "membership_expire_on": 1722381499,
-      "next_cert_issuable_on": 1690896402,
+      "next_cert_issuable_on": 1695987234,
       "certs_received": {
         "Holistique": 1739773110,
         "MarieCathou": 1756192979,
@@ -119373,6 +121880,7 @@
         "Margot91": 1728844963,
         "Nelmotard58": 1739826457,
         "PatrickREVIF": 1740949520,
+        "ChristianeBleuj": 1757039156,
         "Maaude09": 1733190264,
         "Xavier91": 1726551023,
         "bellis": 1733196536,
@@ -119392,9 +121900,9 @@
     "Fanfan06": {
       "index": 9507,
       "owner_key": "BJF89UNdGAxRaeDszTuLyXm8BgWZXSQb2N7TBqrrfQeg",
-      "balance": 329988,
+      "balance": 365174,
       "membership_expire_on": 1720829476,
-      "next_cert_issuable_on": 1674569591,
+      "next_cert_issuable_on": 1694393141,
       "certs_received": {
         "samsufy": 1731970247,
         "BrigitteBC": 1739855405,
@@ -119408,7 +121916,7 @@
     "MarinaM": {
       "index": 9370,
       "owner_key": "BJJVa5GFe7JXLvi8HUiehrGtPmYWAPeShJnKHciyThwV",
-      "balance": 258001,
+      "balance": 292187,
       "membership_expire_on": 1719504693,
       "next_cert_issuable_on": 1687798345,
       "certs_received": {
@@ -119426,10 +121934,11 @@
     "Barbabulle73": {
       "index": 11797,
       "owner_key": "BJU9VNpKGa41p2CrsqtexfCGyTNUp8Xj3Swa2NNZ47AQ",
-      "balance": 192282,
+      "balance": 231969,
       "membership_expire_on": 1709042569,
-      "next_cert_issuable_on": 1691878318,
+      "next_cert_issuable_on": 1696216348,
       "certs_received": {
+        "Lilibeth79": 1759468291,
         "DomMembre": 1740638443,
         "DomVe": 1740639215,
         "Krompo": 1743987726,
@@ -119442,9 +121951,9 @@
     "Leaulaforet": {
       "index": 12369,
       "owner_key": "BJWFXCXcqPuR9JcX3hgNDxo9a13ora8t1tonaJTUbXiC",
-      "balance": 176384,
+      "balance": 191070,
       "membership_expire_on": 1712923140,
-      "next_cert_issuable_on": 1690182568,
+      "next_cert_issuable_on": 1694509308,
       "certs_received": {
         "jef": 1744481247,
         "zoran06": 1744870030,
@@ -119456,12 +121965,12 @@
     "scanlegentil": {
       "index": 992,
       "owner_key": "BJXnups88wJNwUZowjmikRMPFQLxN2gm3jh9VzXcSnoy",
-      "balance": 689010,
+      "balance": 728696,
       "membership_expire_on": 1714036275,
-      "next_cert_issuable_on": 1691120642,
+      "next_cert_issuable_on": 1696036517,
       "certs_received": {
         "Martino": 1715755297,
-        "Vivakvo": 1697003561,
+        "Vivakvo": 1757088620,
         "HugoTrentesaux": 1721418461,
         "Elfedelumiere": 1750292733,
         "patriziatavormina": 1744431368,
@@ -119486,7 +121995,6 @@
         "tereseta": 1720655371,
         "GaelleMry": 1740503348,
         "Marion": 1738034756,
-        "fredswing": 1695540710,
         "stephanoel": 1698704719,
         "Profil": 1716573713,
         "tchounga": 1729907982,
@@ -119496,9 +122004,9 @@
     "bdcht": {
       "index": 83,
       "owner_key": "BJZLQx4SQ7HMCCTNzohXWbzV5QzNTpYufWSHnM1VuESN",
-      "balance": 2181851,
-      "membership_expire_on": 1696515265,
-      "next_cert_issuable_on": 1656375661,
+      "balance": 2219381,
+      "membership_expire_on": 0,
+      "next_cert_issuable_on": 1693569353,
       "certs_received": {
         "Jean-Marie": 1700326053,
         "Sebbaz": 1712621624,
@@ -119510,7 +122018,7 @@
     "Valth": {
       "index": 13098,
       "owner_key": "BJcLturfTboDzvENhNmLv3ugQ7u73c45W57hCxugDhHG",
-      "balance": 64808,
+      "balance": 104494,
       "membership_expire_on": 1718226453,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -119526,9 +122034,9 @@
     "Fannyhihihi": {
       "index": 5910,
       "owner_key": "BJcRdcDjrdyj2ET74kyXsvZo1SV2gvpdPNwHEVJ4afbr",
-      "balance": 526874,
+      "balance": 536560,
       "membership_expire_on": 1720473305,
-      "next_cert_issuable_on": 1691801618,
+      "next_cert_issuable_on": 1695180338,
       "certs_received": {
         "Tot16": 1753226716,
         "DaniailesA": 1706411109,
@@ -119542,15 +122050,18 @@
         "VeroDeJetsDoux": 1725511920,
         "Hina88": 1736051370,
         "Agnes71": 1709609466,
+        "LibelluleNoe": 1759449038,
         "JeanneFlowJ": 1698894369,
         "Kittinyani": 1717399726,
         "PierreFleuri": 1698294389,
         "Renfers": 1749580409,
         "Pllumes": 1720035549,
+        "ZimG": 1756084688,
         "Odilepicpic": 1719453619,
         "Coco-B": 1753313907,
         "Phenicia": 1720588900,
         "Swaruu": 1717735194,
+        "Ginou17": 1757790269,
         "SarahG1": 1721343028,
         "MoiseK": 1753742075,
         "Mistigri": 1744415234,
@@ -119559,6 +122070,7 @@
         "Jinomusic": 1720285467,
         "Tchekoff": 1705687871,
         "RobinRoni": 1709111103,
+        "Gawawelle": 1758659001,
         "MartinFleuri": 1697995223,
         "JoW": 1699806945,
         "AlexisCharrier": 1720150458,
@@ -119574,7 +122086,7 @@
     "Elo": {
       "index": 8953,
       "owner_key": "BJd91cmbcjDAnEaAvHLMgDCxq8jztCgNXLntNP2PNCBE",
-      "balance": 48048,
+      "balance": 1016,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1674746264,
       "certs_received": {
@@ -119588,8 +122100,8 @@
     "Pblq_65": {
       "index": 7671,
       "owner_key": "BJh4ALFwS1LuYzQPQCzNQHiVzFZnomiXNPRMZB5tkCmR",
-      "balance": 284658,
-      "membership_expire_on": 0,
+      "balance": 311528,
+      "membership_expire_on": 1726134672,
       "next_cert_issuable_on": 1657681461,
       "certs_received": {
         "Christo": 1709966847,
@@ -119602,7 +122114,7 @@
     "Marip": {
       "index": 12205,
       "owner_key": "BJhyhkdYxwMEq76iYBQh6mcgd8LmkXBuBhMYU9scdV7B",
-      "balance": 171268,
+      "balance": 199954,
       "membership_expire_on": 1711560610,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -119625,9 +122137,9 @@
     "Angeline-83": {
       "index": 8348,
       "owner_key": "BJoa8u5rA1gTJbryfbMRxrf83mJojDpAadbMVe4BsqgZ",
-      "balance": 401337,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 0,
+      "balance": 411117,
+      "membership_expire_on": 1727441804,
+      "next_cert_issuable_on": 1696346860,
       "certs_received": {
         "Georges_M_mbr": 1717443674,
         "jef": 1717354737,
@@ -119647,7 +122159,7 @@
     "FredRyberon": {
       "index": 7549,
       "owner_key": "BJrACAHt3xWQsw7KGEznihLLJ6EtpAu473JmQWUp8U1Y",
-      "balance": 322997,
+      "balance": 362683,
       "membership_expire_on": 1706799375,
       "next_cert_issuable_on": 1679395149,
       "certs_received": {
@@ -119665,7 +122177,7 @@
     "Chazy": {
       "index": 7035,
       "owner_key": "BK1jCfcuU2JYtyaB5uwuxR6nLYEYPDsQPURZ1isAp5tr",
-      "balance": 785839,
+      "balance": 825525,
       "membership_expire_on": 1703171169,
       "next_cert_issuable_on": 1656590451,
       "certs_received": {
@@ -119696,14 +122208,20 @@
     "ALLine": {
       "index": 13351,
       "owner_key": "BK86PmGjCJHuAFFBaDDC1e5Q5YdhYpXpyEGmqdSGX8wv",
-      "balance": 30728,
+      "balance": 108036,
       "membership_expire_on": 1723082395,
-      "next_cert_issuable_on": 1692923586,
+      "next_cert_issuable_on": 1696350250,
       "certs_received": {
         "Gscarabbe": 1754808780,
         "Flore45": 1754870496,
+        "marinetfrommars": 1758062799,
         "ibisio": 1754686364,
+        "Naty": 1758174060,
+        "RegineP": 1759449038,
         "PatrickREVIF": 1754684888,
+        "ChristianeBleuj": 1759465347,
+        "SylvieM35": 1758063232,
+        "Maia": 1759037955,
         "GMokeur": 1754696299,
         "Marino45": 1755138154,
         "NadiaNadodu": 1754714827
@@ -119712,9 +122230,9 @@
     "VeroAngele": {
       "index": 10065,
       "owner_key": "BKBnUs46zKnCZP45sDWpNXyWyeRgPek78UF1xX2hCPCv",
-      "balance": 318616,
+      "balance": 372302,
       "membership_expire_on": 1724718700,
-      "next_cert_issuable_on": 1680495449,
+      "next_cert_issuable_on": 1695192673,
       "certs_received": {
         "Stef38": 1743568881,
         "RequistonAude": 1728586824,
@@ -119729,6 +122247,7 @@
         "Kimimela29": 1729749196,
         "Solight777": 1740233222,
         "Mcm2": 1739846614,
+        "DidiX": 1758431035,
         "KevinRenevot": 1729385129,
         "Mimwen69": 1742979337
       }
@@ -119744,21 +122263,22 @@
     "Langlaisvalerie04": {
       "index": 13329,
       "owner_key": "BKUP9W8wVNVZBzzzL6fioVwVKgKcgULR3i6DfVDEbuMF",
-      "balance": 35032,
+      "balance": 74718,
       "membership_expire_on": 1722523401,
-      "next_cert_issuable_on": 1691649849,
+      "next_cert_issuable_on": 1693196174,
       "certs_received": {
         "Sylou04": 1754520213,
         "LuciaM": 1754500526,
         "Jajamob": 1754587698,
         "NouvelAnge": 1754190266,
-        "WARTHLANDAISSOPHIE": 1754584961
+        "WARTHLANDAISSOPHIE": 1754584961,
+        "Gebender6": 1757480758
       }
     },
     "Dolly974": {
       "index": 3968,
       "owner_key": "BKWZNLbEYMwRSwn5NJ7QmxPKQkM8QEMC39z4u5UCrpZ",
-      "balance": 525361,
+      "balance": 565047,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1687738842,
       "certs_received": {
@@ -119787,7 +122307,7 @@
     "ennasipho": {
       "index": 12718,
       "owner_key": "BKevNVqR8eDcmsTBeF9MbpKguQqEoY3yBEP1HmKe5Y1M",
-      "balance": 101368,
+      "balance": 80054,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1686639963,
       "certs_received": {
@@ -119811,7 +122331,7 @@
     "l4rt1st-1nc0nnu": {
       "index": 2122,
       "owner_key": "BKoR4gZVwQM2Yt9cs3AHffYarjVzmTj2FhFJpLQSaUmR",
-      "balance": 1649344,
+      "balance": 1689030,
       "membership_expire_on": 1698695829,
       "next_cert_issuable_on": 1674882753,
       "certs_received": {
@@ -119826,8 +122346,8 @@
     "PEPSY": {
       "index": 9701,
       "owner_key": "BKqWSsfFWmNvSGFjukkdQKc565wbL8scSNDcKQWB2bf1",
-      "balance": 358409,
-      "membership_expire_on": 1695765526,
+      "balance": 398095,
+      "membership_expire_on": 1727366058,
       "next_cert_issuable_on": 1673091054,
       "certs_received": {
         "Flocon": 1727380528,
@@ -119840,21 +122360,46 @@
     "Clairdelune": {
       "index": 13368,
       "owner_key": "BKsoGoMBbW4qEohsCPJT4HApESCSsMcNR5ysXFVGHFbt",
-      "balance": 36256,
+      "balance": 47442,
       "membership_expire_on": 1723381163,
-      "next_cert_issuable_on": 1692803886,
+      "next_cert_issuable_on": 1695716204,
       "certs_received": {
+        "Sienna": 1758230109,
         "poissondanslo": 1755145702,
+        "pastachutta1964": 1758582790,
+        "DomMembre": 1758582790,
+        "Husam": 1758344424,
+        "DomVe": 1758584272,
+        "ChloeS": 1758340915,
+        "GeraldS": 1758404798,
+        "TheoVS": 1758340915,
+        "Mohanad": 1758348395,
         "Pieter-LucvanNikkel": 1755107122,
+        "Emily": 1758247455,
         "Nikisan": 1755146298,
         "MinaManar": 1754726583,
         "BDMan": 1755053247
       }
     },
+    "Capitaine": {
+      "index": 13582,
+      "owner_key": "BKwYC5DzZ6daQTyYpWaJ6qQ9WzWibrM9v5PphicPgEXG",
+      "balance": 29598,
+      "membership_expire_on": 1726207181,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "ThomasFilsduVent": 1757803309,
+        "CaroleM971": 1757828355,
+        "Daibijoss": 1757797132,
+        "Solight777": 1758004106,
+        "Mcm2": 1757796122,
+        "Brig": 1758005674
+      }
+    },
     "Thismathis": {
       "index": 12095,
       "owner_key": "BLCW1e1FJGm4prDj9Ru7kLdL8DL8foB3oV2L86oKXJ9Z",
-      "balance": 171948,
+      "balance": 211634,
       "membership_expire_on": 1710469665,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -119869,16 +122414,18 @@
     "ChristineDHONDT": {
       "index": 6379,
       "owner_key": "BLF955JdShxCb9255aigTxv2wsjE1ZBieDqMGkAwrey9",
-      "balance": 510136,
+      "balance": 529322,
       "membership_expire_on": 1699909279,
       "next_cert_issuable_on": 1692782795,
       "certs_received": {
         "RomainKornig": 1710638919,
         "Alfybe": 1702334433,
         "Petitarin": 1732475072,
+        "Ghostdog": 1758330813,
         "Rose": 1731871827,
         "Tembo": 1742283395,
         "Fleurdamour": 1748559982,
+        "BrigitteB": 1756748048,
         "PEB": 1702356630,
         "MarieBertheRanwet": 1726803318,
         "Vimpy": 1738725149,
@@ -119939,10 +122486,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "EmmaSully": {
+      "index": 13546,
+      "owner_key": "BLigQYnP2YAJuA7f4x7SPz5Y39jweP6DoMjCzLCBzdnh",
+      "balance": 25307,
+      "membership_expire_on": 1725213624,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "genchat": 1757183459,
+        "chabi": 1756937546,
+        "MIZOU26": 1756974315,
+        "fredcoin": 1757117680,
+        "estherwalther26": 1757095964,
+        "Calou26": 1757181227
+      }
+    },
     "Gamaliel": {
       "index": 3994,
       "owner_key": "BLjF65UEEtH4s1EVrqbYE5gbbhtrRwWjQmy5oWwpSi7Z",
-      "balance": 716742,
+      "balance": 636572,
       "membership_expire_on": 1712749963,
       "next_cert_issuable_on": 1693004583,
       "certs_received": {
@@ -119965,7 +122527,8 @@
         "tereseta": 1725518415,
         "Koldo": 1749168667,
         "moincagranada": 1728019099,
-        "SyBr": 1712820529
+        "SyBr": 1712820529,
+        "fania": 1757747150
       }
     },
     "MarciaMT": {
@@ -119979,9 +122542,9 @@
     "ReymondSophie": {
       "index": 13028,
       "owner_key": "BLjJ5Kxj3491ikyEVvSWQ8Hz3XercduoHtPV35uhwK83",
-      "balance": 75284,
+      "balance": 112970,
       "membership_expire_on": 1718740457,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695279523,
       "certs_received": {
         "maximeparisot07": 1751221752,
         "AnnieFortin": 1751228840,
@@ -120015,7 +122578,7 @@
     "DavidB": {
       "index": 1006,
       "owner_key": "BLqehwV4TZDdAqLgJCCfnnmguAtMoS2Sf1SoDr1zrfpK",
-      "balance": 1921263,
+      "balance": 1960949,
       "membership_expire_on": 1702753128,
       "next_cert_issuable_on": 1692171710,
       "certs_received": {
@@ -120030,12 +122593,11 @@
     "Omkara": {
       "index": 2074,
       "owner_key": "BLsEEHRttRKyVDRqQyovxGv3iNeSfMVnDFTurpkfG3Sg",
-      "balance": 690091,
+      "balance": 705777,
       "membership_expire_on": 1705069672,
       "next_cert_issuable_on": 1692444508,
       "certs_received": {
         "JoelleTAILLANDIER": 1718774622,
-        "MarieBouny": 1695926956,
         "AnneChaimbault": 1702171414,
         "Gedege": 1754342834,
         "Matymama": 1713307713,
@@ -120049,7 +122611,6 @@
         "AurelienBois": 1700515249,
         "Roland": 1753056652,
         "lucioles": 1705880562,
-        "RitaWilson": 1696742351,
         "Permaterravie": 1736296932,
         "annefreda": 1704965876
       }
@@ -120071,31 +122632,35 @@
     "Josy": {
       "index": 8630,
       "owner_key": "BM2EmCHYWVPpiEmXejhoA8UcvHugiFwnwwRbnXn5Di98",
-      "balance": 495339,
+      "balance": 519625,
       "membership_expire_on": 1710522063,
-      "next_cert_issuable_on": 1690090398,
+      "next_cert_issuable_on": 1695823360,
       "certs_received": {
         "Jeratik": 1715721766,
         "Natalya71": 1730606961,
+        "Danysa": 1758664630,
         "Chtmosaik": 1735272220,
         "Jobenz": 1755801649,
         "yanis": 1715802151,
         "ATIKA": 1717034058,
         "Margauxgau": 1715740028,
         "Alexzen": 1734895754,
+        "VeroniqueB": 1758661270,
         "Fanou": 1737191039,
-        "Nadou": 1717313540
+        "Nadou": 1717313540,
+        "Annastro81": 1758686019
       }
     },
     "Tifenn": {
       "index": 6387,
       "owner_key": "BM2pQhheSS2sNek5bs1k5gLd9F25HvMX5mvKfMV28cFj",
-      "balance": 529195,
+      "balance": 568881,
       "membership_expire_on": 1723122596,
       "next_cert_issuable_on": 1691892674,
       "certs_received": {
         "Nagual": 1700528699,
         "rockanneroll": 1737157305,
+        "EmaPom": 1757453771,
         "LilouL": 1736925945,
         "Mariekali": 1700617002,
         "PAT27": 1739233357,
@@ -120110,7 +122675,7 @@
     "gandalf": {
       "index": 10165,
       "owner_key": "BM3UUvQ9fWJqgpncWZjrbMPzxP7auezYGDdHavTVEbvk",
-      "balance": 321285,
+      "balance": 360971,
       "membership_expire_on": 1698791581,
       "next_cert_issuable_on": 1673425533,
       "certs_received": {
@@ -120131,14 +122696,13 @@
         "Loulou09": 1730159965,
         "pascaldedomptail": 1701134314,
         "Gentil09": 1706742515,
-        "hocine": 1696520393,
         "Timtitou": 1697410427
       }
     },
     "MarielleDumont": {
       "index": 13331,
       "owner_key": "BMMHpzSTU9T9fWRdFDq3sSkhn9fLdWU84EGP2etfeMD9",
-      "balance": 28532,
+      "balance": 48218,
       "membership_expire_on": 1722357594,
       "next_cert_issuable_on": 1692063186,
       "certs_received": {
@@ -120160,8 +122724,8 @@
     "thomasigolene": {
       "index": 9582,
       "owner_key": "BMexMGCdG1Wo739g4YNw6prvWQ7Jq1SZGPHgiHpVmv8v",
-      "balance": 351581,
-      "membership_expire_on": 1695067290,
+      "balance": 370805,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678018841,
       "certs_received": {
         "MANUMA0": 1730660398,
@@ -120175,7 +122739,7 @@
     "MaudBrysse": {
       "index": 9071,
       "owner_key": "BN8ZxduKKJtCcfj87bKAxE23476KACDLbSfGYtqG4mhR",
-      "balance": 111727,
+      "balance": 9702,
       "membership_expire_on": 1712968428,
       "next_cert_issuable_on": 1664195756,
       "certs_received": {
@@ -120207,9 +122771,9 @@
     "ArthuK": {
       "index": 12359,
       "owner_key": "BNJXTM1DryhjoMoTQayujU7d4hmGGGUHMSUiGi17GWX7",
-      "balance": 141316,
+      "balance": 181002,
       "membership_expire_on": 1712817620,
-      "next_cert_issuable_on": 1692688406,
+      "next_cert_issuable_on": 1694034047,
       "certs_received": {
         "MaFleur": 1754105038,
         "Tuki": 1744405097,
@@ -120232,25 +122796,20 @@
     "Florentt": {
       "index": 5682,
       "owner_key": "BNWuEohLv6UJgEWtQTYAvzzAZnbTd3jUvvPtA9tzMsDG",
-      "balance": 603303,
-      "membership_expire_on": 1703104272,
+      "balance": 607575,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1671681095,
       "certs_received": {
-        "Tatane": 1693789735,
-        "MamieCrypto": 1695156356,
         "ElodieV": 1735469263,
-        "Bastien-29": 1713806820,
-        "Fukuchimio": 1693875530,
-        "AnnickBoubounelle": 1694245711,
-        "littlegreg": 1693784202
+        "Bastien-29": 1713806820
       }
     },
     "Mariaje": {
       "index": 9906,
       "owner_key": "BNXnA2pKesWkWicthnYLLQDXrNjjmvGoWAcz6cB6bjMK",
-      "balance": 279015,
+      "balance": 284531,
       "membership_expire_on": 1723858689,
-      "next_cert_issuable_on": 1693211032,
+      "next_cert_issuable_on": 1696214929,
       "certs_received": {
         "susanarico": 1742336497,
         "Manu_El": 1745904880,
@@ -120258,19 +122817,26 @@
         "Damaso": 1735785320,
         "Naymar": 1746043152,
         "KiiAymara": 1728615059,
+        "PedroX": 1756848512,
         "MaraVilla": 1745873917,
+        "ManuGi": 1758670427,
+        "virginiaoreoro": 1758670427,
+        "Beica10es": 1758075278,
         "MorganadeAvalon": 1743485047,
         "AlGabal": 1738623009,
         "YEROKI": 1728614080,
         "NIUM": 1728616113,
+        "Luallum": 1758691139,
         "albalibre": 1756174792,
         "VICTORF": 1746139288,
         "Toki": 1728623680,
         "Alberto": 1737826629,
         "GRUKSY": 1736376503,
         "Sylvain": 1728624226,
+        "IgnasiRoig": 1758669058,
         "sarava": 1728628015,
-        "BruBraveLez": 1738818098
+        "BruBraveLez": 1738818098,
+        "JaviVega": 1757457142
       }
     },
     "Slau": {
@@ -120284,7 +122850,7 @@
     "Seleve": {
       "index": 13078,
       "owner_key": "BNe1YfFedFgcfV2GSGJYNprrVXasYuGtt9ESwrMBobCu",
-      "balance": 61844,
+      "balance": 101530,
       "membership_expire_on": 1719752118,
       "next_cert_issuable_on": 1693024446,
       "certs_received": {
@@ -120299,7 +122865,7 @@
     "Nafissa974": {
       "index": 6721,
       "owner_key": "BNfNT95DGEnFiR3BrTF2DSjEWcjxfKssGXjf5aoTgCs1",
-      "balance": 683683,
+      "balance": 723369,
       "membership_expire_on": 1705564141,
       "next_cert_issuable_on": 1644210872,
       "certs_received": {
@@ -120327,10 +122893,42 @@
         "Murielg": 1726176827
       }
     },
+    "KathSem1": {
+      "index": 13648,
+      "owner_key": "BNo5DVbLFCoovzUEe8hAmQefiJ6KsYV8D8LSx1E3mst6",
+      "balance": 35092,
+      "membership_expire_on": 1724276428,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "SecretdeJais": 1758388295,
+        "Salsa33150": 1758383427,
+        "123Marie": 1759712379,
+        "Amankosmos": 1758256112,
+        "Tango8943": 1758333913,
+        "eln": 1758324040
+      }
+    },
+    "CleoL": {
+      "index": 13631,
+      "owner_key": "BNsGUqzY5kzTd2Zv9CioXkne1PNppqAtikiNHGYfNy4d",
+      "balance": 14470,
+      "membership_expire_on": 1722430858,
+      "next_cert_issuable_on": 1696326525,
+      "certs_received": {
+        "Kaikus": 1758134452,
+        "SoniaMallorca": 1758406061,
+        "majo": 1758933764,
+        "catalinons": 1758403523,
+        "Thor": 1753988686,
+        "Felicia": 1758335531,
+        "Sigrid61": 1759369725,
+        "danielali": 1758258091
+      }
+    },
     "MargauxD": {
       "index": 5633,
       "owner_key": "BP3dYakNfk9qwrwPRW2wAUiq2UZ6rnvgN4gJkm5a8pMC",
-      "balance": 760169,
+      "balance": 799855,
       "membership_expire_on": 1719104676,
       "next_cert_issuable_on": 1690539202,
       "certs_received": {
@@ -120354,7 +122952,7 @@
     "teddy": {
       "index": 12073,
       "owner_key": "BP6vmwEKNNqsiUajpBerKeCK99cnCyLG8GqBnJ3fsH96",
-      "balance": 201252,
+      "balance": 240938,
       "membership_expire_on": 1710783548,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -120376,11 +122974,10 @@
     "Paulart": {
       "index": 24,
       "owner_key": "BPEap6B98qBxTmUMoxvCtuP2JXFMjX7kDJT1RaYn3UbS",
-      "balance": 1434901,
+      "balance": 1474587,
       "membership_expire_on": 1721598876,
       "next_cert_issuable_on": 1691919763,
       "certs_received": {
-        "MamieCrypto": 1695237184,
         "HugoTrentesaux": 1715832414,
         "cuckooland": 1728240089,
         "Trinity": 1742425832,
@@ -120394,7 +122991,7 @@
     "Lezarde": {
       "index": 11600,
       "owner_key": "BPGML11SXaZ8wRcYh1iCDsqPbZQyYg4jxfxyhFfUYJX8",
-      "balance": 254708,
+      "balance": 294394,
       "membership_expire_on": 1703350197,
       "next_cert_issuable_on": 1678112181,
       "certs_received": {
@@ -120483,7 +123080,7 @@
     "misterkay": {
       "index": 8284,
       "owner_key": "BPidE9mbTbdptxQzKdeeNyHcr2MC3SyLuoR2ZaafPL39",
-      "balance": 337796,
+      "balance": 487482,
       "membership_expire_on": 1712242143,
       "next_cert_issuable_on": 1690472641,
       "certs_received": {
@@ -120527,7 +123124,7 @@
     "Jeffrenchpilot": {
       "index": 2526,
       "owner_key": "BPmA8CmK6YXcoMQWd9U95WD7czBPb5VmpovfPnQFPTGR",
-      "balance": 1195530,
+      "balance": 1235216,
       "membership_expire_on": 1709521778,
       "next_cert_issuable_on": 1667654298,
       "certs_received": {
@@ -120538,14 +123135,13 @@
         "DavidMontpellier": 1730922097,
         "Olivier34500": 1706219033,
         "AxelP": 1700803616,
-        "josemallet": 1730653783,
-        "Profil": 1694838186
+        "josemallet": 1730653783
       }
     },
     "MailyVH": {
       "index": 4673,
       "owner_key": "BPqHduVec4jxYjV5fHKhrSEGSAkD2p8WXcz8c7VMsSmy",
-      "balance": 963706,
+      "balance": 1003392,
       "membership_expire_on": 1706998220,
       "next_cert_issuable_on": 1675512620,
       "certs_received": {
@@ -120560,7 +123156,7 @@
     "MarleneRibeiro": {
       "index": 12240,
       "owner_key": "BPruiuMssgoEemv9DMXwzXuFKdBjSLmkHoCcJRodpd7z",
-      "balance": 168064,
+      "balance": 207750,
       "membership_expire_on": 1710809362,
       "next_cert_issuable_on": 1680971162,
       "certs_received": {
@@ -120599,7 +123195,7 @@
     "Aurelie38": {
       "index": 8501,
       "owner_key": "BQ4D2HNmzkbbSJxsJKkuPgKRjCWtPJKZ3DNf7EHbxdQV",
-      "balance": 455961,
+      "balance": 494647,
       "membership_expire_on": 1715254607,
       "next_cert_issuable_on": 1685084552,
       "certs_received": {
@@ -120638,7 +123234,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1671854605,
       "certs_received": {
-        "CharlesAbecassis": 1696530327,
         "Spyou": 1741661696,
         "ortie": 1745739336
       }
@@ -120662,9 +123257,9 @@
     "MarieDo": {
       "index": 6428,
       "owner_key": "BQh8m7qYkhCegg8XJ1xjWLsFCPsk6XXtKXCLFBviSE7m",
-      "balance": 704677,
+      "balance": 896383,
       "membership_expire_on": 1725014761,
-      "next_cert_issuable_on": 1684225563,
+      "next_cert_issuable_on": 1696001146,
       "certs_received": {
         "MoreauCatherine": 1737621091,
         "LionLDouNIo": 1735691120,
@@ -120705,7 +123300,7 @@
     "Mike01": {
       "index": 5346,
       "owner_key": "BQs3r1DgCemevFaHmn7ShK5vQbBmjk1Ef3Q7cYjietWQ",
-      "balance": 896910,
+      "balance": 936596,
       "membership_expire_on": 1722019397,
       "next_cert_issuable_on": 1668523585,
       "certs_received": {
@@ -120719,9 +123314,9 @@
     "estherwalther26": {
       "index": 3706,
       "owner_key": "BQsizrGwLXQDNsRQ6YC6KmBjKu2t7ruBe4evNKsdeLk9",
-      "balance": 1615254,
+      "balance": 1643240,
       "membership_expire_on": 1712714887,
-      "next_cert_issuable_on": 1690269208,
+      "next_cert_issuable_on": 1696134271,
       "certs_received": {
         "WaltherVeronique67": 1735887234,
         "CelineThiebaut": 1722558670,
@@ -120744,7 +123339,7 @@
     "mmefff": {
       "index": 10205,
       "owner_key": "BR4ZBahh1YRXgBgp8oSctmFLsxDGemUV8jK9zzZjxuoi",
-      "balance": 368108,
+      "balance": 407794,
       "membership_expire_on": 1698949606,
       "next_cert_issuable_on": 1667742435,
       "certs_received": {
@@ -120760,7 +123355,7 @@
     "MagicMagic888": {
       "index": 11684,
       "owner_key": "BR51rGrqox3yFYJk4BPmJoUMm3Dyo9aqJ37n1xjcSykA",
-      "balance": 205854,
+      "balance": 245540,
       "membership_expire_on": 1707919568,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -120775,7 +123370,7 @@
     "SoleildeZaza": {
       "index": 11402,
       "owner_key": "BR7XKtx1NUJuYCh5yKmX9naK5uHYRwCXReVkVhMa5H1T",
-      "balance": 233093,
+      "balance": 272779,
       "membership_expire_on": 1706385663,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -120822,12 +123417,13 @@
     "JosianeSochon": {
       "index": 7636,
       "owner_key": "BRFK1tv9u4JPYq4VxPevKcksCTWTFoKnQCGq4S8gvu22",
-      "balance": 942827,
+      "balance": 1018735,
       "membership_expire_on": 1707065409,
-      "next_cert_issuable_on": 1677419772,
+      "next_cert_issuable_on": 1695642610,
       "certs_received": {
         "Josephine61": 1740548117,
         "nathaliemineau": 1712081032,
+        "PatrickGendron": 1758831913,
         "karpat": 1741753772,
         "FrancoisBaloche": 1712039836,
         "fabiennezuttre": 1726615093,
@@ -120857,7 +123453,7 @@
     "Claudine974": {
       "index": 7580,
       "owner_key": "BRJoas9zADWHigWhuJtudk7Vsux1y64Q6QbXXcDQRivU",
-      "balance": 824515,
+      "balance": 915601,
       "membership_expire_on": 1706940407,
       "next_cert_issuable_on": 1679473681,
       "certs_received": {
@@ -120881,7 +123477,7 @@
     "Karnoor": {
       "index": 13253,
       "owner_key": "BRM5SB3zMg3VXKZ9YT8wwLnanittZHx8N43vU3zBZuw1",
-      "balance": 46312,
+      "balance": 85998,
       "membership_expire_on": 1718745537,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -120903,7 +123499,7 @@
     "brufaganya": {
       "index": 8304,
       "owner_key": "BRRtjs3fqqRPz2GtVCVcoaxjxWD9bTy2RxAJSiQbyfct",
-      "balance": 18843,
+      "balance": 77053,
       "membership_expire_on": 1710800146,
       "next_cert_issuable_on": 1690702452,
       "certs_received": {
@@ -120911,6 +123507,7 @@
         "carmela": 1714688862,
         "Monica": 1716512880,
         "timetale": 1717019407,
+        "valeria": 1757697974,
         "CarmeLilum": 1720034615,
         "G1rgina": 1722627274,
         "YEROKI": 1722267345,
@@ -120925,7 +123522,7 @@
     "SandrinePrieto": {
       "index": 6644,
       "owner_key": "BRaHSRkHBF3iKSxvznZFr9VWk8g7z2N4mWuv9HB9fNvC",
-      "balance": 434652,
+      "balance": 474338,
       "membership_expire_on": 1717376113,
       "next_cert_issuable_on": 1658058759,
       "certs_received": {
@@ -120940,9 +123537,9 @@
     "Athena73": {
       "index": 6370,
       "owner_key": "BRgj2oSvCUCSKBuY1vLhx2Cj7n9pZNbj9rmam2ZQxEeV",
-      "balance": 437579,
+      "balance": 477265,
       "membership_expire_on": 1724878501,
-      "next_cert_issuable_on": 1688189271,
+      "next_cert_issuable_on": 1693897880,
       "certs_received": {
         "Flocon": 1702496294,
         "Riri": 1702522686,
@@ -120978,7 +123575,7 @@
     "LucPrudhomme": {
       "index": 10646,
       "owner_key": "BRhax2o51e6tuRXzQVruGZUKEEJZy7js3QqBiZBbrvMe",
-      "balance": 288556,
+      "balance": 328242,
       "membership_expire_on": 1701297961,
       "next_cert_issuable_on": 1687922288,
       "certs_received": {
@@ -120993,7 +123590,7 @@
     "Rodrigo": {
       "index": 7568,
       "owner_key": "BRhjJrEnMaaXfqAL3zgJgNgjTCh5f5xgqGWLPt6rRbxd",
-      "balance": 510898,
+      "balance": 550584,
       "membership_expire_on": 1709308736,
       "next_cert_issuable_on": 1677823136,
       "certs_received": {
@@ -121029,8 +123626,8 @@
     "Avrila": {
       "index": 6103,
       "owner_key": "BRzZ9jn4MGhagbkP4xE2Kj469XnbBZrYDY2nYDtz7txy",
-      "balance": 330971,
-      "membership_expire_on": 1696108532,
+      "balance": 370657,
+      "membership_expire_on": 1725671081,
       "next_cert_issuable_on": 1684672440,
       "certs_received": {
         "MaryseR": 1740638836,
@@ -121051,7 +123648,7 @@
     "PenedoVeracruz": {
       "index": 11019,
       "owner_key": "BS4owDyPwpgotVjNsQoKSvDJbKCENv74ycUrvMp9VzvF",
-      "balance": 215540,
+      "balance": 255226,
       "membership_expire_on": 1703208708,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
@@ -121067,14 +123664,13 @@
     "MTNaturelpapillon": {
       "index": 5551,
       "owner_key": "BS5A6d1qJXvecgGeTBA1koY1dZA4mGMsmRpJeXMHCyvK",
-      "balance": 672872,
+      "balance": 712558,
       "membership_expire_on": 1698200503,
       "next_cert_issuable_on": 1682693981,
       "certs_received": {
         "CelineNaturel": 1705450853,
         "Nany": 1734502891,
         "SylvieClayer": 1741927825,
-        "boyeshua": 1693811188,
         "FlorilenePacati": 1731201890,
         "DominiqueRoudiere": 1730933298
       }
@@ -121082,7 +123678,7 @@
     "susanalibre": {
       "index": 9557,
       "owner_key": "BSCYceNp7yuef5EB5mBC55EzyQkvsVjYkFb8uQD8Hr6Q",
-      "balance": 65617,
+      "balance": 90303,
       "membership_expire_on": 1722848187,
       "next_cert_issuable_on": 1663844982,
       "certs_received": {
@@ -121100,24 +123696,18 @@
     "EvaBruneau": {
       "index": 5733,
       "owner_key": "BSMFyKS9NPsmyCa5Smmj8L1rNYqTqkBe4iwfnuhi7gPc",
-      "balance": 690412,
-      "membership_expire_on": 1695239060,
+      "balance": 661772,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1667547824,
       "certs_received": {
         "Andrelebourhis": 1719329462,
-        "PhilippeGuillemant": 1695166197,
-        "mathieuBize": 1695598316,
-        "sylvainT": 1695345881,
-        "StephaneLONGUET": 1695612947,
-        "Nadou": 1695538128,
-        "Fred04": 1719691786,
-        "HyperBrut": 1695335606
+        "Fred04": 1719691786
       }
     },
     "Poweroflove": {
       "index": 12736,
       "owner_key": "BSYfqH9UVANGzJ753TNiigeb4fKHxSdUcTe4vodjHQaP",
-      "balance": 117932,
+      "balance": 157618,
       "membership_expire_on": 1716154024,
       "next_cert_issuable_on": 1686480285,
       "certs_received": {
@@ -121147,7 +123737,7 @@
     "BeaumontLiliane": {
       "index": 6120,
       "owner_key": "BShvRJ6cEj4ZJA2tUfWxxqp82fodSikBxMzc8cZRTm81",
-      "balance": 536429,
+      "balance": 576115,
       "membership_expire_on": 1724692770,
       "next_cert_issuable_on": 1681283933,
       "certs_received": {
@@ -121169,7 +123759,7 @@
         "Aeden974": 1722020274,
         "Rezkia974": 1736266997,
         "KatalineMOREL": 1700347993,
-        "pampermacole": 1700104768,
+        "pampermacole": 1758035979,
         "marcos974": 1700407863
       }
     },
@@ -121184,7 +123774,7 @@
     "NicoleJeurissen": {
       "index": 11421,
       "owner_key": "BSr5mn7NeXkr3S2bFUvWLZkRWfREQJCniXn8nEhCTVhm",
-      "balance": 214525,
+      "balance": 255211,
       "membership_expire_on": 1706471386,
       "next_cert_issuable_on": 1679494782,
       "certs_received": {
@@ -121200,7 +123790,7 @@
     "Samlepirate": {
       "index": 6923,
       "owner_key": "BStNx5xxFfU7f7RZuhqvWpRW7UXVHJFXZCUaH25PYgMj",
-      "balance": 814943,
+      "balance": 854629,
       "membership_expire_on": 1704130454,
       "next_cert_issuable_on": 1672647565,
       "certs_received": {
@@ -121233,7 +123823,7 @@
     "Floreale": {
       "index": 11254,
       "owner_key": "BSzwDjtkAurAGBsjgwqGErod1djbN4ENkRZqHG9hwnyt",
-      "balance": 230485,
+      "balance": 255171,
       "membership_expire_on": 1705421370,
       "next_cert_issuable_on": 1690122979,
       "certs_received": {
@@ -121254,7 +123844,7 @@
     "CHANCE": {
       "index": 10840,
       "owner_key": "BT5kvkJZfJx9jdYasvAQMpo3esHojZe7aK5u7ozQQe9x",
-      "balance": 282807,
+      "balance": 322493,
       "membership_expire_on": 1702220484,
       "next_cert_issuable_on": 1674460137,
       "certs_received": {
@@ -121268,7 +123858,7 @@
     "polaris": {
       "index": 10714,
       "owner_key": "BTDs9nSzUBDNhvxtiCNKLrrnRgxTDCbrx4NqbUcAY2ST",
-      "balance": 289141,
+      "balance": 358827,
       "membership_expire_on": 1700707312,
       "next_cert_issuable_on": 1677306653,
       "certs_received": {
@@ -121309,7 +123899,7 @@
     "Papillote": {
       "index": 5623,
       "owner_key": "BTG64pfMYSdK1QAYWkDPR6ZBXDYX4K8EeetKJvvoxr5g",
-      "balance": 1304939,
+      "balance": 1497593,
       "membership_expire_on": 1720356785,
       "next_cert_issuable_on": 1693364086,
       "certs_received": {
@@ -121321,7 +123911,6 @@
         "NaneDeProvence": 1718342237,
         "NathalieEtreSouverain": 1712196075,
         "Ludolol13200": 1718780520,
-        "Maminou13": 1693504917,
         "lulubelle": 1717045429,
         "Myosotis": 1725512176,
         "YannickS": 1752626782,
@@ -121331,7 +123920,6 @@
         "LORBRUN": 1733715873,
         "Diessanne": 1697501101,
         "OphelieVaccaro": 1742684827,
-        "lamouette": 1693506875,
         "Florence974": 1743583619,
         "DamienLG": 1723590379,
         "Yaya13280": 1698113066,
@@ -121342,7 +123930,6 @@
         "Pieromao": 1721101959,
         "SofianneErler": 1726001388,
         "gigi73": 1751445235,
-        "Disine": 1693597197,
         "MARY81GG": 1752791205,
         "Brinat": 1717735539,
         "dymoon": 1711171788
@@ -121383,13 +123970,14 @@
     "Alisce": {
       "index": 7450,
       "owner_key": "BTYsbUjNJRmLc9MLBaGkqfiHqG3joReA5jG5ZcbuRq8u",
-      "balance": 253659,
+      "balance": 240345,
       "membership_expire_on": 1704224780,
-      "next_cert_issuable_on": 1689680433,
+      "next_cert_issuable_on": 1693889814,
       "certs_received": {
         "Ninamaste": 1736373145,
         "Laurentld": 1709430131,
         "EtK": 1745899684,
+        "Gael": 1758439441,
         "Vass": 1730587713,
         "escargotbleu": 1709846665,
         "Hera": 1709574758,
@@ -121432,7 +124020,7 @@
     "YuliyaM": {
       "index": 4268,
       "owner_key": "BTn5VLm8BBDAUGQiZnNX3VenGZJaaS82si63XXUmR236",
-      "balance": 1004305,
+      "balance": 1043991,
       "membership_expire_on": 1724767118,
       "next_cert_issuable_on": 1666796463,
       "certs_received": {
@@ -121454,7 +124042,7 @@
     "Dalilabaha": {
       "index": 9432,
       "owner_key": "BTthrisV1HJAPkdtbyDcf8o3xbdRH7a64L5tCnabuag1",
-      "balance": 367945,
+      "balance": 407631,
       "membership_expire_on": 1720292513,
       "next_cert_issuable_on": 1677990881,
       "certs_received": {
@@ -121480,7 +124068,7 @@
     "oblat": {
       "index": 11890,
       "owner_key": "BU1v9h64eZGVwwkJY4xH2KzQ2rEnS5cVMgxBvt1Z5w1",
-      "balance": 182469,
+      "balance": 222155,
       "membership_expire_on": 1709127306,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -121548,9 +124136,9 @@
     "prevotfran5310": {
       "index": 9699,
       "owner_key": "BUAy8y6LuuFo3mUgZtdNZxsgZqnjEcTepCQTRMxCyBDg",
-      "balance": 359609,
+      "balance": 399295,
       "membership_expire_on": 1721850519,
-      "next_cert_issuable_on": 1693129120,
+      "next_cert_issuable_on": 1696563120,
       "certs_received": {
         "Acd64": 1729439100,
         "Katalinko": 1727388864,
@@ -121568,15 +124156,14 @@
     "monique": {
       "index": 4204,
       "owner_key": "BUGYAnumi15pVSzvk1XiCawn885jnwE8QNoVKR2yu1bh",
-      "balance": 1017404,
-      "membership_expire_on": 1693887503,
+      "balance": 1021676,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675483162,
       "certs_received": {
         "LemanRuss": 1741109949,
         "BrigitteW": 1745123677,
         "sauveepargrace": 1729134349,
         "MonChant": 1728543064,
-        "Manholy34": 1695658799,
         "Lililys": 1731009899,
         "Andros": 1721189296,
         "Claudio": 1717031574,
@@ -121587,9 +124174,9 @@
     "EcoKim": {
       "index": 10291,
       "owner_key": "BUbXAWZAX2Ja8bRMR1pAC68f8eYkMyRomwmfUHSN9ATf",
-      "balance": 301090,
-      "membership_expire_on": 1699393301,
-      "next_cert_issuable_on": 1692621451,
+      "balance": 362976,
+      "membership_expire_on": 1726357555,
+      "next_cert_issuable_on": 1694871955,
       "certs_received": {
         "elenagrizzly": 1736238936,
         "Estela": 1730951353,
@@ -121603,6 +124190,7 @@
         "Agroarmonia": 1730956516,
         "Oarina": 1730952274,
         "Folele": 1730922780,
+        "Felipevida": 1758251979,
         "Ardan1977": 1748470985,
         "MAIANA": 1731654897,
         "Amaraya": 1731656633,
@@ -121617,7 +124205,7 @@
     "Ambre": {
       "index": 8674,
       "owner_key": "BUkva4ypdNZSJFYgmLx5qrXuhvnWHFEYe8wTfe81XH4B",
-      "balance": 453166,
+      "balance": 492852,
       "membership_expire_on": 1717504850,
       "next_cert_issuable_on": 1673703648,
       "certs_received": {
@@ -121655,7 +124243,7 @@
     "Maeline": {
       "index": 13030,
       "owner_key": "BUoaKY5oqE75yrV1kxvdGrMgDLxjiMqD9dunUVciRMF4",
-      "balance": 71181,
+      "balance": 110867,
       "membership_expire_on": 1719608161,
       "next_cert_issuable_on": 1689003847,
       "certs_received": {
@@ -121670,7 +124258,7 @@
     "Calypso": {
       "index": 6401,
       "owner_key": "BUsuxxNhPMkHGMNWsdRVRLqziTqPR9cMrWSnCzEMUYdU",
-      "balance": 708386,
+      "balance": 778492,
       "membership_expire_on": 1724680415,
       "next_cert_issuable_on": 1689734559,
       "certs_received": {
@@ -121696,7 +124284,7 @@
         "LibertyFran": 1710017323,
         "PeeWill": 1715277100,
         "CorinneBaro": 1712013547,
-        "Cathykty": 1702618616,
+        "Cathykty": 1758953744,
         "Duke": 1707560904,
         "JeanTibou": 1707274613,
         "Jacklynn": 1733623334,
@@ -121725,7 +124313,7 @@
     "Yevy": {
       "index": 12289,
       "owner_key": "BV7FJYep1BVoVQ8NeMjYm34wt2GUqGGEJ3S33UoZB28j",
-      "balance": 154892,
+      "balance": 194578,
       "membership_expire_on": 1710718723,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -121747,7 +124335,7 @@
     "Jiwy73": {
       "index": 7728,
       "owner_key": "BVFZYx6ZHMoMWCR5QxzBNDw97R5f3HS8nkwwNvCRhWNK",
-      "balance": 456610,
+      "balance": 496296,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1676075213,
       "certs_received": {
@@ -121762,7 +124350,7 @@
     "Nanapelle": {
       "index": 8105,
       "owner_key": "BVFnocsGL6WDmtumiH7oqVrA87Ha92WufnNdaQXwQb5t",
-      "balance": 504256,
+      "balance": 543942,
       "membership_expire_on": 1714428284,
       "next_cert_issuable_on": 1657763125,
       "certs_received": {
@@ -121797,7 +124385,7 @@
     "Philosourire": {
       "index": 6720,
       "owner_key": "BVNKtvgdJgG6stoGjdKytQtKfMbTtjZQG5FevuzPEu99",
-      "balance": 624599,
+      "balance": 664285,
       "membership_expire_on": 1701442958,
       "next_cert_issuable_on": 1664022766,
       "certs_received": {
@@ -121814,17 +124402,18 @@
     "Tita": {
       "index": 6285,
       "owner_key": "BVQQQjcJZ9oTohADzcFizM87KqAtnoSHXrRxoofoerJH",
-      "balance": 295913,
-      "membership_expire_on": 1696177130,
-      "next_cert_issuable_on": 1682553646,
+      "balance": 329131,
+      "membership_expire_on": 0,
+      "next_cert_issuable_on": 1693479183,
       "certs_received": {
-        "SophSav": 1700635630,
+        "SophSav": 1757627140,
         "Nicolas": 1701934066,
         "Marikler": 1744145572,
         "Felicia2": 1735784610,
         "Caco": 1700621989,
         "PatriciaGirard": 1700691021,
         "XianeC": 1727734730,
+        "RaffaeleMarie": 1758601147,
         "VivienProuvot": 1700796850,
         "AurelieMarie": 1740514770,
         "Annabel": 1739484688,
@@ -121843,7 +124432,7 @@
     "Ioannis73": {
       "index": 11350,
       "owner_key": "BVbenBBnS1z7ToCvLamWQur4hKDn7GihiN82SLUx8pCe",
-      "balance": 232329,
+      "balance": 272015,
       "membership_expire_on": 1704668315,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -121857,14 +124446,16 @@
     "Pashi": {
       "index": 9097,
       "owner_key": "BVnFLjN4WePqBFg9UmCVJNJggnwJVPXmxuGAmxKBJtug",
-      "balance": 410278,
+      "balance": 449964,
       "membership_expire_on": 1721756613,
-      "next_cert_issuable_on": 1690691053,
+      "next_cert_issuable_on": 1696164138,
       "certs_received": {
         "PascaleP": 1747188397,
         "gui_tooun": 1732248114,
         "Cyrius666": 1735036832,
+        "Pascaloo35": 1759207338,
         "VBVF": 1728012290,
+        "Olivier3574": 1759207338,
         "Lesamourai": 1734504357,
         "NathNath": 1736319245,
         "Alchemist": 1722460894,
@@ -121882,19 +124473,20 @@
         "2vakian": 1741371222,
         "naturel89": 1754255541,
         "Berenysse": 1737574520,
-        "Amelmag89": 1722314925
+        "Amelmag89": 1722314925,
+        "Guillaume_Aimery_Roy": 1759007385
       }
     },
     "Lea8": {
       "index": 3151,
       "owner_key": "BVx7Z9SHsKPJcHphxMDK5btdqrH7oP94BhJ19pAxLxMH",
-      "balance": 1321223,
+      "balance": 1360909,
       "membership_expire_on": 1701968958,
       "next_cert_issuable_on": 1648617706,
       "certs_received": {
         "SundariK": 1704327043,
-        "arfocine": 1698596290,
-        "Laurentld": 1700442908,
+        "arfocine": 1758562403,
+        "Laurentld": 1758562403,
         "Ghis26": 1704340660,
         "Jeni": 1705008898
       }
@@ -121902,20 +124494,21 @@
     "AmoryGratitud": {
       "index": 4348,
       "owner_key": "BVzKvLgz7XJe41yF2U3BYiwSxcYbYJpTXc26KDSyjaFb",
-      "balance": 335631,
-      "membership_expire_on": 1696386276,
-      "next_cert_issuable_on": 1675652203,
+      "balance": 324561,
+      "membership_expire_on": 1728134922,
+      "next_cert_issuable_on": 1696678346,
       "certs_received": {
-        "SophSav": 1693519295,
         "Nicolas": 1722325197,
         "Towanda": 1738697423,
         "MisterLuix": 1739853004,
         "Vivakvo": 1749452808,
         "sparkle765": 1704678845,
         "VanePaz": 1706037604,
+        "MacaMartin": 1759816674,
         "C13BrianaKala": 1705281438,
         "NancyOrtiz": 1710148551,
         "elmau": 1721783255,
+        "Brahmaya": 1759273294,
         "ziguli": 1710385985,
         "Magi": 1746597337,
         "Grace": 1723419131,
@@ -121923,14 +124516,13 @@
         "Amaralar": 1728796583,
         "Inma11": 1730792749,
         "Arran": 1721083200,
-        "urkobein": 1694060437,
         "Lak": 1723925526
       }
     },
     "ljf": {
       "index": 5302,
       "owner_key": "BW1FD1TaXKRJHSGRB6zTihkq8Dn715ieLAg6Ho5vX1vm",
-      "balance": 875147,
+      "balance": 888133,
       "membership_expire_on": 1715119976,
       "next_cert_issuable_on": 1683634376,
       "certs_received": {
@@ -121938,13 +124530,14 @@
         "Djan": 1743525600,
         "gautz": 1746954844,
         "Thatoo": 1725739693,
-        "Booteille": 1724270630
+        "Booteille": 1724270630,
+        "Scapharnaum": 1757406502
       }
     },
     "lisarosa": {
       "index": 6575,
       "owner_key": "BW5ZqA8BeaXsnQ57H9gji3zZmLakktXEh9LEj6koG346",
-      "balance": 468660,
+      "balance": 508346,
       "membership_expire_on": 1704241770,
       "next_cert_issuable_on": 1687252924,
       "certs_received": {
@@ -121964,10 +124557,11 @@
     "LouLiette": {
       "index": 12518,
       "owner_key": "BW8f9xN7LERbcsfsQ6K6FPui1dFNsFdbrL2jV4YXWKs5",
-      "balance": 236228,
+      "balance": 279914,
       "membership_expire_on": 1710374427,
       "next_cert_issuable_on": 1692711144,
       "certs_received": {
+        "Papou": 1756697515,
         "Valerie25": 1754441392,
         "Zenobie": 1745987481,
         "Lalouise": 1746135783,
@@ -122004,7 +124598,7 @@
     "WilliamWeber": {
       "index": 1445,
       "owner_key": "BWXkETQR8fyPL3gWGc6z6c2SwwuWz5v4NB6BukskVQYb",
-      "balance": 1734076,
+      "balance": 1773762,
       "membership_expire_on": 1710717575,
       "next_cert_issuable_on": 1667991120,
       "certs_received": {
@@ -122026,9 +124620,9 @@
     "SashaB": {
       "index": 9908,
       "owner_key": "BWfFenQfNV74ACtse3xMLkvzG9Zhb3VkqhaiRjRSajR1",
-      "balance": 329465,
+      "balance": 369151,
       "membership_expire_on": 1724805933,
-      "next_cert_issuable_on": 1690949981,
+      "next_cert_issuable_on": 1695303321,
       "certs_received": {
         "SeanB": 1728690496,
         "Emergencia": 1738441963,
@@ -122041,10 +124635,25 @@
         "Marysecpa": 1728697334
       }
     },
+    "feral": {
+      "index": 13480,
+      "owner_key": "BWfSYhN72BmvshcKMic7Z4ZA1Ws1eMMD1QFD8HmGhyZc",
+      "balance": 131950,
+      "membership_expire_on": 1723301197,
+      "next_cert_issuable_on": 1695902400,
+      "certs_received": {
+        "ErickG_G": 1756681359,
+        "Davida": 1756775271,
+        "mae": 1756718767,
+        "Galadriel": 1756681359,
+        "Marwen": 1756683464,
+        "Nakim": 1755938166
+      }
+    },
     "Fifi26": {
       "index": 11036,
       "owner_key": "BWsyKduYaapUUBSaQk6vgPbkUAdm4PYxpNppa1xPtzfb",
-      "balance": 261981,
+      "balance": 301667,
       "membership_expire_on": 1701733425,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -122058,16 +124667,16 @@
     "Mika83": {
       "index": 4739,
       "owner_key": "BWyYb7FNZvUysTifHL8KYGhDYamGngYEz3w6tw155dKr",
-      "balance": 6187575,
-      "membership_expire_on": 1700656401,
-      "next_cert_issuable_on": 1687961593,
+      "balance": 6302861,
+      "membership_expire_on": 1727620079,
+      "next_cert_issuable_on": 1696303027,
       "certs_received": {
         "pacifikveronique": 1707770753,
-        "Robin_et_Odile": 1702451878,
+        "Robin_et_Odile": 1759525725,
         "Majoli34": 1721581592,
         "Cheyennegaia": 1721429824,
-        "SoNyA": 1693875530,
         "Scilla": 1743132778,
+        "Bibi06": 1759348535,
         "Co-la-Vie": 1736800789,
         "LuciaM": 1735275789,
         "nirma": 1736232754,
@@ -122082,16 +124691,17 @@
         "Nirma": 1702715386,
         "MissChaChaCha": 1714231250,
         "emaublanc": 1739860856,
-        "Hdsaf": 1696974019,
+        "Hdsaf": 1759546040,
         "Val83": 1726271506,
-        "Ethersource83": 1695268718
+        "Ethersource83": 1758213942,
+        "ElvireDracenie": 1757045116
       }
     },
     "CelineBoussard": {
       "index": 10340,
       "owner_key": "BWyiVyCPg7atFpJ9KRkD64QchENzbYcr5va68ZFVPMZ2",
-      "balance": 309136,
-      "membership_expire_on": 1699480954,
+      "balance": 321622,
+      "membership_expire_on": 1726091117,
       "next_cert_issuable_on": 1688621930,
       "certs_received": {
         "Niranjana": 1731088499,
@@ -122109,14 +124719,13 @@
     "bertha": {
       "index": 4279,
       "owner_key": "BX4LbszeVeeEYvuoJ8N8WFGhXvh727xsyMcCNiHRB2uE",
-      "balance": 1119350,
+      "balance": 1159036,
       "membership_expire_on": 1714500821,
       "next_cert_issuable_on": 1683015827,
       "certs_received": {
         "Egopode": 1744090845,
         "AliceCtln": 1744072219,
         "Cath08": 1718948283,
-        "LNlumi": 1695605427,
         "SyoulAnuanua": 1744072219,
         "adriaverfeil": 1709483966,
         "Mimwen69": 1733804561,
@@ -122126,8 +124735,8 @@
     "Mortybal": {
       "index": 6177,
       "owner_key": "BX5zbBTQFdwpW3xnas8RodqgHo1hDjyeRD8vUPVkUCYZ",
-      "balance": 141844,
-      "membership_expire_on": 1696132707,
+      "balance": 158895,
+      "membership_expire_on": 1726930352,
       "next_cert_issuable_on": 1678212410,
       "certs_received": {
         "Selrahc": 1699825816,
@@ -122145,7 +124754,7 @@
     "Abril": {
       "index": 9009,
       "owner_key": "BX6ketNqUQubdEkWznyq4u2wfV7S6TJk1LHu51X96Rtu",
-      "balance": 524771,
+      "balance": 558257,
       "membership_expire_on": 1721779085,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -122161,7 +124770,7 @@
     "D-Lyre": {
       "index": 5371,
       "owner_key": "BXGH74PjbG93Ng6j69vTG4DSj899vwhHA6jpoKpr42EG",
-      "balance": 904742,
+      "balance": 944428,
       "membership_expire_on": 1717196665,
       "next_cert_issuable_on": 1680272562,
       "certs_received": {
@@ -122179,7 +124788,7 @@
     "lecielestbleu": {
       "index": 7701,
       "owner_key": "BXJWvnSCgQQgLrePH1NRCvFHecNTvHX1tR3k6Fcae8Mm",
-      "balance": 438788,
+      "balance": 478474,
       "membership_expire_on": 1708142460,
       "next_cert_issuable_on": 1681910873,
       "certs_received": {
@@ -122201,8 +124810,8 @@
     "LoisMurjas": {
       "index": 3886,
       "owner_key": "BXJXxWWjD2Wsambvx5WT7ZVRFmqpJvDbfj8vUdV3LcNr",
-      "balance": 1061531,
-      "membership_expire_on": 1696162895,
+      "balance": 1094749,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "FIFIMERCIER": 1713738338,
@@ -122216,9 +124825,9 @@
     "Felipevida": {
       "index": 13382,
       "owner_key": "BXUdoB8WLhhxamvQdjXFiF7DdkPJJLRLTGh81qtn75e9",
-      "balance": 71054,
+      "balance": 61840,
       "membership_expire_on": 1723814193,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695208779,
       "certs_received": {
         "elenagrizzly": 1755373196,
         "Estela": 1755394627,
@@ -122233,7 +124842,7 @@
     "NellEsperluette": {
       "index": 9320,
       "owner_key": "BXX1TPCrqcUfQAm6stHQFZ5BhMdX7iDxin732R5vrrbP",
-      "balance": 511688,
+      "balance": 551374,
       "membership_expire_on": 1717850557,
       "next_cert_issuable_on": 1671889119,
       "certs_received": {
@@ -122249,9 +124858,9 @@
     "Manuella85": {
       "index": 8798,
       "owner_key": "BXZnPy4mTjkbzdZVhineVY5pFnNstoZXWTw5qVRin6ZA",
-      "balance": 396806,
+      "balance": 436492,
       "membership_expire_on": 1716563965,
-      "next_cert_issuable_on": 1689170391,
+      "next_cert_issuable_on": 1694590122,
       "certs_received": {
         "Deymann": 1720232337,
         "HelloSunshine": 1751760884,
@@ -122281,7 +124890,7 @@
     "nathalieM": {
       "index": 12740,
       "owner_key": "BXdms76p2RXWRPAzzop3HvPDqXsEeJZRUKMZJNyMP3f4",
-      "balance": 148532,
+      "balance": 188218,
       "membership_expire_on": 1716057789,
       "next_cert_issuable_on": 1685185189,
       "certs_received": {
@@ -122295,7 +124904,7 @@
     "PDC": {
       "index": 8612,
       "owner_key": "BXfmqahfqedQsXsQ1eG5ojdyT8rn6NT14AxehZ5Y8Gw8",
-      "balance": 485216,
+      "balance": 524902,
       "membership_expire_on": 1719176698,
       "next_cert_issuable_on": 1674454150,
       "certs_received": {
@@ -122315,7 +124924,7 @@
     "MarieHappy": {
       "index": 6866,
       "owner_key": "BXhfcpdXyjvg1dQMbeRyFNZ6z4hDn9hyCFjCt3FTX2j9",
-      "balance": 600101,
+      "balance": 639787,
       "membership_expire_on": 1709314942,
       "next_cert_issuable_on": 1685694335,
       "certs_received": {
@@ -122333,7 +124942,7 @@
     "Laulotte84600": {
       "index": 6341,
       "owner_key": "BXm7nBLnTtdxr9PjgtoGv1FYyeUJTcERgDsTCuskjBmD",
-      "balance": 667389,
+      "balance": 707075,
       "membership_expire_on": 1697550398,
       "next_cert_issuable_on": 1683801993,
       "certs_received": {
@@ -122351,11 +124960,25 @@
         "Joellebingo": 1706408608
       }
     },
+    "PapillonIsis": {
+      "index": 13569,
+      "owner_key": "BXmjAh5NTFkrLLqZ12AfgfF6ADTGGnHK4dQBANLPAAtm",
+      "balance": 25802,
+      "membership_expire_on": 1725279670,
+      "next_cert_issuable_on": 1696237581,
+      "certs_received": {
+        "Sienna": 1757310455,
+        "poissondanslo": 1756867713,
+        "Clairdelune": 1756837954,
+        "Emily": 1756837954,
+        "MinaManar": 1757795292
+      }
+    },
     "OscarMar": {
       "index": 6204,
       "owner_key": "BXnkBaAkGmnznLfWmAfjhjUcrA7SExYysoGLAMVRCfpq",
-      "balance": 206913,
-      "membership_expire_on": 1695375274,
+      "balance": 229351,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1647147648,
       "certs_received": {
         "EnriKon": 1700802417,
@@ -122369,7 +124992,7 @@
     "Blanku": {
       "index": 12759,
       "owner_key": "BXrezonc5TDXruybAhwMhWKCgQa7ScuLqg68tyAB5mii",
-      "balance": 89860,
+      "balance": 129546,
       "membership_expire_on": 1712948639,
       "next_cert_issuable_on": 1686466903,
       "certs_received": {
@@ -122392,13 +125015,14 @@
     "Minako_Komatsu": {
       "index": 10077,
       "owner_key": "BY2V65Egao44X8qqadbrmB8eRk84RrGi3tD4vDFARHFp",
-      "balance": 370957,
-      "membership_expire_on": 1697497091,
-      "next_cert_issuable_on": 1691886832,
+      "balance": 502643,
+      "membership_expire_on": 1726514348,
+      "next_cert_issuable_on": 1696039387,
       "certs_received": {
         "BorisBernard": 1729831674,
         "LesJardinsdeMalia": 1729823078,
         "Bastien-29": 1731512375,
+        "AudreyArtyzen": 1759038682,
         "AmauryBidel": 1729827512,
         "Agnes5629": 1729838892,
         "Vagueabonds": 1729828392
@@ -122407,12 +125031,11 @@
     "SylvainGabarrou": {
       "index": 5559,
       "owner_key": "BY4rf35vr9WCU1dfYARkYUCLx1nc46yMhcLp21NBPKmT",
-      "balance": 1023197,
+      "balance": 1062883,
       "membership_expire_on": 1720790286,
       "next_cert_issuable_on": 1689304984,
       "certs_received": {
         "Carole26": 1702861908,
-        "Philippe26": 1695975848,
         "Zephy": 1702926575,
         "phil3455": 1703493438,
         "ThibautDEPRET": 1752980153,
@@ -122422,8 +125045,8 @@
     "ilargi": {
       "index": 9106,
       "owner_key": "BYFFkKpRpDCjPm5jhsVJ5a8bXxGMqQaj4DHjq1Vdfffj",
-      "balance": 372864,
-      "membership_expire_on": 0,
+      "balance": 392258,
+      "membership_expire_on": 1726683964,
       "next_cert_issuable_on": 1681445267,
       "certs_received": {
         "Estitz": 1722131808,
@@ -122438,7 +125061,7 @@
       "owner_key": "BYFug6viLaJaa1maJtY5K2JRyRNGLYEcoECaUmTktFa4",
       "balance": 376560,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1633448268,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "Martosportos": {
@@ -122452,20 +125075,28 @@
     "DivinaC": {
       "index": 12510,
       "owner_key": "BYHhmkX2MuvKvLqaeuvBNanhJGkfcrzxcApBE535pADv",
-      "balance": 105478,
+      "balance": 113164,
       "membership_expire_on": 1714281799,
-      "next_cert_issuable_on": 1693129528,
+      "next_cert_issuable_on": 1696043144,
       "certs_received": {
         "RitApolinario": 1746140351,
+        "FranciscoVenda": 1757486431,
         "Minita": 1755159994,
+        "artenomar": 1756360460,
         "Tchenka": 1746145404,
         "Viola": 1752099955,
         "LightWorker": 1749417161,
+        "RafaMalheiro": 1757663831,
         "JoseGoncalvesPinto": 1746043152,
+        "DeboraTavares": 1757485587,
         "SaoSampaio": 1746137080,
         "Rahhui": 1753573507,
+        "JorgeDraven": 1754701030,
         "AnaIsis7animais": 1750300515,
-        "jsoutelinho": 1746086519
+        "jsoutelinho": 1746086519,
+        "ElisabeteMartins": 1757663486,
+        "Alessandra": 1756717822,
+        "ManuelSoares": 1757202104
       }
     },
     "MaitoS": {
@@ -122479,7 +125110,7 @@
     "Arkenssiel25": {
       "index": 9035,
       "owner_key": "BYQQYS1RHQMDbtV1i4Tu3EjX4WFBWZR7zNZeD2FcFEbu",
-      "balance": 461635,
+      "balance": 501321,
       "membership_expire_on": 1715087202,
       "next_cert_issuable_on": 1675236091,
       "certs_received": {
@@ -122494,7 +125125,7 @@
     "lecoyote": {
       "index": 8845,
       "owner_key": "BYU9CSrJpTrx5aZYKUgcqVbkk1DKAQrWcFY3g4tUa97p",
-      "balance": 685446,
+      "balance": 725132,
       "membership_expire_on": 1718377973,
       "next_cert_issuable_on": 1680166769,
       "certs_received": {
@@ -122513,7 +125144,7 @@
     "Doujo": {
       "index": 13212,
       "owner_key": "BYZsATmm2yzyP1TqmWJpHNLuK4yG4KFirxSPPsNZ4jVi",
-      "balance": 76788,
+      "balance": 116474,
       "membership_expire_on": 1721573434,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -122528,9 +125159,9 @@
     "Vinciane": {
       "index": 8814,
       "owner_key": "BYaACkp1DqpZHFCHR2AgXCyKst2Mz5W4isLEUXLEtxoB",
-      "balance": 399650,
+      "balance": 395336,
       "membership_expire_on": 1714852647,
-      "next_cert_issuable_on": 1692623003,
+      "next_cert_issuable_on": 1696419043,
       "certs_received": {
         "Artdevivre": 1754350377,
         "IlonadeHaas": 1746735357,
@@ -122550,17 +125181,32 @@
         "Verozen": 1755797632,
         "NatNaelle": 1719991507,
         "Nadia": 1754806922,
+        "MinaManar": 1756616968,
         "DOr": 1719989522,
         "AnemoneSyl": 1729611231,
         "AdeT": 1749194790
       }
     },
+    "Airam": {
+      "index": 13761,
+      "owner_key": "BYf8xfVpqXCoDh5utiCVuaWvJ5G58tY5vskv3iEfQoee",
+      "balance": 59959,
+      "membership_expire_on": 1728184615,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "joserodcpta": 1759819573,
+        "Pit": 1759809069,
+        "noemi": 1759791459,
+        "loreak": 1759816674,
+        "NONI": 1759752365
+      }
+    },
     "Lazuly": {
       "index": 11025,
       "owner_key": "BYfHreQBrvKCL7FpEBcdq5goUeggvb1LPCTFz2W53dYk",
-      "balance": 243940,
+      "balance": 279426,
       "membership_expire_on": 1703105004,
-      "next_cert_issuable_on": 1691210285,
+      "next_cert_issuable_on": 1696163951,
       "certs_received": {
         "ElaineDana": 1735283378,
         "Annae": 1735242168,
@@ -122575,8 +125221,8 @@
     "Carolina": {
       "index": 10299,
       "owner_key": "BYgjzkgcGLZctHGbmNE3UuwSa6tfHLaKcehbBbTnwY97",
-      "balance": 301164,
-      "membership_expire_on": 1699309907,
+      "balance": 340850,
+      "membership_expire_on": 1727017818,
       "next_cert_issuable_on": 1686120021,
       "certs_received": {
         "Maryc": 1730868208,
@@ -122592,7 +125238,7 @@
     "Supralumen": {
       "index": 4597,
       "owner_key": "BYhjEB1cCa2Bud19C3YUg9tiJqbXeDB7NBVuuriCKpsq",
-      "balance": 802372,
+      "balance": 842058,
       "membership_expire_on": 1703180573,
       "next_cert_issuable_on": 1680344142,
       "certs_received": {
@@ -122608,25 +125254,21 @@
     "TaaniTheophile": {
       "index": 5681,
       "owner_key": "BYjTAywVNd75PR54zqGMYq1MuSggZhr2vVaqQsKdjXYv",
-      "balance": 229133,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1670824115,
+      "balance": 260275,
+      "membership_expire_on": 1725729914,
+      "next_cert_issuable_on": 1695541953,
       "certs_received": {
         "Noa": 1734392203,
         "AlainLeThomas": 1736273745,
-        "Elusse": 1695408097,
-        "RoselyneBinesse": 1695015528,
-        "PatrickGilles": 1695091791,
-        "Jean": 1700723347,
-        "AbelGilles": 1693572037,
-        "NoellePiquet": 1694390969,
+        "jnaroun": 1757287726,
+        "Jean": 1758585780,
         "DominiqueRoudiere": 1749143359
       }
     },
     "AmarPrakash": {
       "index": 11443,
       "owner_key": "BYpTQuxgJ6H6RESWuVXTUfy6gk5YQuPPVsyJQJZmbS75",
-      "balance": 135457,
+      "balance": 155643,
       "membership_expire_on": 1705355022,
       "next_cert_issuable_on": 1691383048,
       "certs_received": {
@@ -122634,6 +125276,7 @@
         "ClaudiaVazquez": 1738349599,
         "RAMA62": 1738469212,
         "cascabel": 1747458037,
+        "EscuelaTephira": 1757097117,
         "Pollito": 1746669701,
         "PedroAlkymia": 1750990252,
         "HanspremDaniela": 1738321856,
@@ -122648,7 +125291,7 @@
     "Flovie": {
       "index": 6441,
       "owner_key": "BYvaFdzu6YRuQaEjJFeKUHBi2zPxUy1vy3zy7NnnFgpr",
-      "balance": 1086034,
+      "balance": 1125720,
       "membership_expire_on": 1698413780,
       "next_cert_issuable_on": 1682589506,
       "certs_received": {
@@ -122671,7 +125314,7 @@
     "mathilde": {
       "index": 6661,
       "owner_key": "BYxg4VaN9M1ckpKxruvn3A7R9rptiZHYianMiPMyGvuX",
-      "balance": 1998128,
+      "balance": 2037814,
       "membership_expire_on": 1701870332,
       "next_cert_issuable_on": 1656210636,
       "certs_received": {
@@ -122709,29 +125352,22 @@
     "EleaLAROSE": {
       "index": 5720,
       "owner_key": "BZDH3KVZbpE6TmWju446C81SaqQDNM1jbHW7AMrf69ye",
-      "balance": 378952,
+      "balance": 385390,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1655830603,
-      "certs_received": {
-        "JeromeCastel": 1695519472,
-        "Rudyvimeux": 1695534657,
-        "Numerosympa": 1695518783,
-        "Maquilleuse": 1695519008,
-        "Sousoutsonga": 1695518783,
-        "RoxaneCastel": 1695519711,
-        "Chlea2010": 1696686808
-      }
+      "next_cert_issuable_on": 1695046111,
+      "certs_received": {}
     },
     "Acacia": {
       "index": 11963,
       "owner_key": "BZGFSwtU3rGFJGV27UMauE6pjaqxpvRnkXW9PhWM9j2",
-      "balance": 223615,
+      "balance": 263301,
       "membership_expire_on": 1710243398,
       "next_cert_issuable_on": 1683596354,
       "certs_received": {
         "Osermalumiere": 1741405904,
         "JacoVdh": 1741468002,
         "Lynsolence": 1741757969,
+        "prevotfran5310": 1757465441,
         "Kuro": 1741392259,
         "Brigitteb": 1741662799,
         "Coolga5575": 1741708425,
@@ -122741,7 +125377,7 @@
     "ierobe": {
       "index": 552,
       "owner_key": "BZQgjF6D5mGmKPHM8KEWRM9rgDmWJ2eaVaxtnog21kDd",
-      "balance": 1951045,
+      "balance": 1990731,
       "membership_expire_on": 1701901439,
       "next_cert_issuable_on": 1674590558,
       "certs_received": {
@@ -122756,7 +125392,7 @@
     "Martylove": {
       "index": 11991,
       "owner_key": "BZW1MNZb8gftDJiFnyPS68NVmi8qaUHih3AwVFNXERVr",
-      "balance": 275548,
+      "balance": 301734,
       "membership_expire_on": 1710191748,
       "next_cert_issuable_on": 1690797001,
       "certs_received": {
@@ -122780,7 +125416,7 @@
     "AbigaelDarling": {
       "index": 12869,
       "owner_key": "BZWJFL2XiybkRrUF7MabYGQewsjw95vmh94avDYs9iUe",
-      "balance": 86940,
+      "balance": 126626,
       "membership_expire_on": 1713232920,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -122802,26 +125438,25 @@
     "Guillemyannick": {
       "index": 5810,
       "owner_key": "BZax68Ra6BKuzvEXqru3u9bjAQeKY78JRAkGHXFMjS9G",
-      "balance": 500714,
+      "balance": 540400,
       "membership_expire_on": 1718035322,
-      "next_cert_issuable_on": 1673931429,
+      "next_cert_issuable_on": 1695878496,
       "certs_received": {
         "Selena": 1724444445,
-        "stephanieguillem": 1696569366,
         "Toutoune": 1725513225,
-        "EvaBruneau": 1696487023,
+        "Doris": 1756944725,
+        "Marionnette": 1757298038,
         "PhilippeGuillemant": 1696818175,
-        "StephaneLONGUET": 1696053593,
+        "RobertC": 1756883332,
         "Cocon": 1724357112,
         "Nadou": 1697521836,
-        "HyperBrut": 1696388277,
         "Jean-Massage": 1732844581
       }
     },
     "JordiJove": {
       "index": 12878,
       "owner_key": "BZdi4JHeCeTGJCL4vBWYM8ZpAkZ3CnfLtRKKzZMF5Jhk",
-      "balance": 92472,
+      "balance": 132158,
       "membership_expire_on": 1718156262,
       "next_cert_issuable_on": 1689130055,
       "certs_received": {
@@ -122835,7 +125470,7 @@
     "Psimon7": {
       "index": 7282,
       "owner_key": "BZeqikCBrVKhBzKi9rAG62SchHss9Vt3on4U6kHKaeob",
-      "balance": 433421,
+      "balance": 473107,
       "membership_expire_on": 1709426609,
       "next_cert_issuable_on": 1650905002,
       "certs_received": {
@@ -122858,11 +125493,10 @@
     "Jean-Pierre07": {
       "index": 2298,
       "owner_key": "BZkGgvKBmgyv7g85JV4h5ZtA2LxP67uy8tytZs4CxpYC",
-      "balance": 123645,
+      "balance": 13331,
       "membership_expire_on": 1724367203,
       "next_cert_issuable_on": 1686834875,
       "certs_received": {
-        "MatheoLibreCommeLaMesange": 1694307176,
         "Eveilducoeur": 1721783040,
         "Mollie": 1728088901,
         "Philippe26": 1721694970,
@@ -122884,7 +125518,7 @@
     "atisha": {
       "index": 10236,
       "owner_key": "BZrkffsGNi6GzQ4KSNX1FcQ1Vc1nh1bGEetnuVd5quLA",
-      "balance": 106390,
+      "balance": 125476,
       "membership_expire_on": 1698268241,
       "next_cert_issuable_on": 1686114063,
       "certs_received": {
@@ -122905,11 +125539,12 @@
     "HectorG1": {
       "index": 12589,
       "owner_key": "BaBLEPD2oHwqUwHM1u1zXcnvQQ3SfXmVTLWmVL4i4YeT",
-      "balance": 703948,
+      "balance": 618134,
       "membership_expire_on": 1715097736,
-      "next_cert_issuable_on": 1689422060,
+      "next_cert_issuable_on": 1696331276,
       "certs_received": {
         "Barbablanc": 1746655928,
+        "Javilion": 1758355305,
         "EmmanuelZetace": 1746657648,
         "ElisabethBarberOviedo": 1747958227,
         "Montse": 1752465260,
@@ -122917,13 +125552,14 @@
         "AnaCasaAzulCarrus": 1746729884,
         "HEChucrut": 1746657946,
         "Bianca": 1746662153,
-        "PauRicART": 1746682327
+        "PauRicART": 1746682327,
+        "Lama": 1759095342
       }
     },
     "Bojenka58": {
       "index": 7569,
       "owner_key": "BaCxMx4z1RGZ7a2Gv4voXJDhXHtdJuww9odEtZDZWycs",
-      "balance": 466097,
+      "balance": 505783,
       "membership_expire_on": 1709703430,
       "next_cert_issuable_on": 1687286466,
       "certs_received": {
@@ -122944,7 +125580,7 @@
     "Selchy": {
       "index": 11582,
       "owner_key": "BaDa8m1G2tyzcivaSn1mqruN5BHCBRPuZhqHEr5T85E9",
-      "balance": 188826,
+      "balance": 228512,
       "membership_expire_on": 1707667692,
       "next_cert_issuable_on": 1679270317,
       "certs_received": {
@@ -122985,7 +125621,7 @@
     "Ignace": {
       "index": 10184,
       "owner_key": "BaR7UAYY3c6dortc7oKrGzSCCXLkTBDsySzvXybsxHtq",
-      "balance": 320326,
+      "balance": 360012,
       "membership_expire_on": 1697928025,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -122999,9 +125635,9 @@
     "Sandylore": {
       "index": 7583,
       "owner_key": "BaXgwp7idHw9JTRuH4SLz3PBWawYcMSkgiR2VxHA5Kf9",
-      "balance": 537296,
+      "balance": 571982,
       "membership_expire_on": 1708038480,
-      "next_cert_issuable_on": 1682072927,
+      "next_cert_issuable_on": 1696728648,
       "certs_received": {
         "DorotheeVimeux": 1712448587,
         "Martine51": 1712111921,
@@ -123030,9 +125666,9 @@
     "MaestroJorge": {
       "index": 12559,
       "owner_key": "BahVJ1vqV2qFBJJAayg9aQHu4j4d6hcDBRSYvedBETHY",
-      "balance": 78142,
+      "balance": 92628,
       "membership_expire_on": 1714700985,
-      "next_cert_issuable_on": 1688975129,
+      "next_cert_issuable_on": 1695889946,
       "certs_received": {
         "Manu_El": 1752016470,
         "Wynfyd": 1746392612,
@@ -123043,7 +125679,8 @@
         "AmaNacer": 1756591594,
         "crisleon": 1746315591,
         "Didy": 1746391351,
-        "emboscada": 1746391351
+        "emboscada": 1746391351,
+        "OrganikSolution": 1758797762
       }
     },
     "ChevalAiler": {
@@ -123063,7 +125700,7 @@
     "AnnL": {
       "index": 3756,
       "owner_key": "BaiJR8NMfr7p6GmehV4pgqD5vGDrWQ2WdoVtH2cJUVGm",
-      "balance": 667658,
+      "balance": 717344,
       "membership_expire_on": 1700644292,
       "next_cert_issuable_on": 1672841014,
       "certs_received": {
@@ -123071,7 +125708,6 @@
         "fdrubigny": 1715642753,
         "philboybada63": 1737945140,
         "thierryguerin": 1739506720,
-        "KM974": 1694647686,
         "Philippeleblanc": 1708561460,
         "Strelitzio": 1738978392,
         "EleonoreBJ": 1719418058,
@@ -123090,7 +125726,7 @@
     "toni": {
       "index": 11613,
       "owner_key": "Bap1551wZL5TnM3XG9mHLa1fxAXGDkvpHkzXsvuiQqvf",
-      "balance": 253149,
+      "balance": 292835,
       "membership_expire_on": 1707659950,
       "next_cert_issuable_on": 1677307317,
       "certs_received": {
@@ -123104,7 +125740,7 @@
     "Sylvania51": {
       "index": 6752,
       "owner_key": "BapGta2A2BvZrh9otnCutahhViruxNXzJUz1aERG3jp9",
-      "balance": 478029,
+      "balance": 517715,
       "membership_expire_on": 1713195971,
       "next_cert_issuable_on": 1667953889,
       "certs_received": {
@@ -123121,7 +125757,7 @@
     "noreveriam": {
       "index": 7842,
       "owner_key": "BauFzxTkcY6NjFu93c9eNXzSwjGQu4zDLyVTgFAxXDyW",
-      "balance": 339056,
+      "balance": 378742,
       "membership_expire_on": 1720130888,
       "next_cert_issuable_on": 1680424102,
       "certs_received": {
@@ -123144,7 +125780,7 @@
     "Vameca": {
       "index": 9529,
       "owner_key": "BavFFbdgkCcKZKiCAsVZeuT8ttJtHiCJfCvrmZKTYmn6",
-      "balance": 173136,
+      "balance": 212822,
       "membership_expire_on": 1721343375,
       "next_cert_issuable_on": 1682242637,
       "certs_received": {
@@ -123175,36 +125811,40 @@
     "pfouque": {
       "index": 3283,
       "owner_key": "Bb3eGMnSbxnihY5AYJepZLGbV6Ga3FvgK1GRue1keySb",
-      "balance": 921364,
-      "membership_expire_on": 1699156039,
-      "next_cert_issuable_on": 1677150021,
+      "balance": 929110,
+      "membership_expire_on": 1725573590,
+      "next_cert_issuable_on": 1695961520,
       "certs_received": {
         "AucrAnnie": 1727980285,
+        "Alinerv": 1758953332,
         "ClaireAzur": 1706851935,
         "Tchois": 1713482993,
         "Feerique": 1726873466,
-        "Delfe": 1694729452,
+        "Bibifri06": 1757195907,
         "Lazarine": 1730791052,
         "Anitaantigone": 1708174313,
         "Imppao": 1721783255,
         "Bibi06": 1716527725,
         "guillaumedangin": 1706226344,
         "PorteduCiel": 1706427672,
+        "maceo": 1758300974,
         "Maiana": 1719532333,
         "zenbio": 1714870504,
         "Sandrine-": 1716585643,
         "tomval83": 1715732568,
         "Espialidocia": 1717050988,
         "CovaDidier": 1714976835,
+        "Peter06": 1757196215,
         "TenShao": 1722578047,
-        "ClaireSMV": 1694314123,
-        "S-H": 1703027440
+        "ClaireSMV": 1758952348,
+        "S-H": 1703027440,
+        "lily06": 1756872170
       }
     },
     "LaChtiteGraine": {
       "index": 7028,
       "owner_key": "Bb4BET96T6gyi2U3syePb4CPxhrm4S2FJd7cFmJfyp9K",
-      "balance": 572339,
+      "balance": 612025,
       "membership_expire_on": 1704997800,
       "next_cert_issuable_on": 1677821428,
       "certs_received": {
@@ -123229,7 +125869,7 @@
     "Radagast": {
       "index": 6742,
       "owner_key": "BbE5afKzWrbuJ65B9Gh99RczaVvpGT7saw3R6UiRJsPD",
-      "balance": 701225,
+      "balance": 740911,
       "membership_expire_on": 1706146751,
       "next_cert_issuable_on": 1647562486,
       "certs_received": {
@@ -123253,7 +125893,7 @@
     "MoniqueAlix": {
       "index": 12787,
       "owner_key": "BbSnxKecLMmq8ZWgWUbHBTa6cGFxRTXfTpodPp81pGfq",
-      "balance": 85688,
+      "balance": 125374,
       "membership_expire_on": 1716679095,
       "next_cert_issuable_on": 1693130967,
       "certs_received": {
@@ -123267,7 +125907,7 @@
     "Thatoo": {
       "index": 28,
       "owner_key": "BbdyLPyABYzx8Lef3oXzkoiAQ5kn3uU96ZED7Nt17gZx",
-      "balance": 1507518,
+      "balance": 1630664,
       "membership_expire_on": 1699311110,
       "next_cert_issuable_on": 1684132257,
       "certs_received": {
@@ -123290,7 +125930,7 @@
     "SoniaC76": {
       "index": 13173,
       "owner_key": "BbkFj5fgdXE2y43LnFnzFfZiUQzpqknqVcnygdW6AY9h",
-      "balance": 49128,
+      "balance": 88814,
       "membership_expire_on": 1720788932,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -123304,12 +125944,13 @@
     "danielacaviola": {
       "index": 9117,
       "owner_key": "BbkYxB3q2AB3RfcFW32KJaCPpYJJhpiC3nzs2qKeosfv",
-      "balance": 259204,
+      "balance": 238890,
       "membership_expire_on": 1722559912,
       "next_cert_issuable_on": 1666021256,
       "certs_received": {
         "Rachele": 1722394599,
         "Marica26": 1722217532,
+        "Rebe11": 1757045116,
         "Irish": 1722295307,
         "Spartaco": 1722234857,
         "alemilton": 1722298805
@@ -123318,23 +125959,24 @@
     "fabiennegodfraind": {
       "index": 6018,
       "owner_key": "BbnMFMWgsZHde9J6YSwB3ku1o84KX1o711Nw6NyhSYMi",
-      "balance": 768198,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1661528356,
+      "balance": 819632,
+      "membership_expire_on": 1726086457,
+      "next_cert_issuable_on": 1695448994,
       "certs_received": {
         "CatherineSengel": 1699316834,
-        "EricPetit": 1699037760,
-        "yvesfalck": 1697922454,
-        "mimi": 1698558064,
+        "EricPetit": 1757004951,
+        "yvesfalck": 1757794111,
+        "mimi": 1757474273,
+        "MariPotter": 1757465162,
         "Lieudiere": 1702550507,
-        "PascaleRoncoroni": 1699037760,
+        "PascaleRoncoroni": 1757003384,
         "EdithSineux": 1699207389
       }
     },
     "kalendula": {
       "index": 12777,
       "owner_key": "Bbpw7YptGKvc69a9HGYiG7cRbmQ8VCxhrLtS1NL1VNSH",
-      "balance": 138524,
+      "balance": 152610,
       "membership_expire_on": 1716951186,
       "next_cert_issuable_on": 1688835597,
       "certs_received": {
@@ -123375,9 +126017,9 @@
     "Bichounette": {
       "index": 8633,
       "owner_key": "BcLfZiqyZoL5yqH7Q7nm4s6vFvppMpN9MX6dJp56bTq5",
-      "balance": 388878,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1664960778,
+      "balance": 425360,
+      "membership_expire_on": 1725301541,
+      "next_cert_issuable_on": 1696321941,
       "certs_received": {
         "Pizzawallas": 1719194237,
         "Francou": 1719191495,
@@ -123401,7 +126043,7 @@
     "Sottay": {
       "index": 6132,
       "owner_key": "BcPRCL7cpfGvq97VprBwttFcEHUcmqgyr43va8xnTrHo",
-      "balance": 741967,
+      "balance": 781653,
       "membership_expire_on": 1722426070,
       "next_cert_issuable_on": 1692807207,
       "certs_received": {
@@ -123419,15 +126061,16 @@
         "Mysteriade": 1732820573,
         "Lando": 1698778258,
         "hypericum": 1699649296,
-        "GeneBe": 1699155936,
+        "GeneBe": 1757974904,
         "Juju": 1697967179,
+        "Ninon914": 1758737887,
         "Aureliedlh": 1699732856
       }
     },
     "Astrale": {
       "index": 11508,
       "owner_key": "BcQ2ofHkPz9sihsWXRzBriW4Q8iHCTu8bb1XgteKMLWo",
-      "balance": 218662,
+      "balance": 258348,
       "membership_expire_on": 1706130177,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -123479,7 +126122,7 @@
     "llaq": {
       "index": 1583,
       "owner_key": "Bcje5oERWMXvPGeik6k6Qvv4C6LcuV2Ktqg6TT76aTPC",
-      "balance": 1199494,
+      "balance": 1239180,
       "membership_expire_on": 1716207605,
       "next_cert_issuable_on": 1684682594,
       "certs_received": {
@@ -123494,9 +126137,9 @@
     "NadineGS": {
       "index": 4822,
       "owner_key": "BcoFFHWttoLVaYqgfy9rbvdg98vHenz2mhCUxmVus7UV",
-      "balance": 219128,
-      "membership_expire_on": 1700582168,
-      "next_cert_issuable_on": 1688826330,
+      "balance": 192086,
+      "membership_expire_on": 1727218443,
+      "next_cert_issuable_on": 1696342834,
       "certs_received": {
         "Mairyn31": 1731457132,
         "AmNoh": 1742929720,
@@ -123563,7 +126206,7 @@
     "Xavierpoisot": {
       "index": 7022,
       "owner_key": "Bd9cwQGs8h6vzwQQgyxv5cgyChohHGZARZk7Pmr4C9bQ",
-      "balance": 1097481,
+      "balance": 1216067,
       "membership_expire_on": 1702565887,
       "next_cert_issuable_on": 1690187866,
       "certs_received": {
@@ -123587,7 +126230,7 @@
     "GregorySay": {
       "index": 6320,
       "owner_key": "BdCatDmR1UF4ZLduw4x4KoWHmqfJJ4kcfokeVjRDAXnM",
-      "balance": 553176,
+      "balance": 592862,
       "membership_expire_on": 1709912426,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -123601,7 +126244,7 @@
     "MichelCoomans5575": {
       "index": 6328,
       "owner_key": "BdD3DKBqQSjTng1vL767pfezoWrMCywYxVggroCZCnC8",
-      "balance": 661347,
+      "balance": 701033,
       "membership_expire_on": 1722867600,
       "next_cert_issuable_on": 1691382000,
       "certs_received": {
@@ -123637,15 +126280,16 @@
         "Daurelia": 1754972071,
         "Olivia_C": 1749767509,
         "NoelSoudon": 1722206242,
+        "Domi-Merlinou": 1758263715,
         "Gclaire": 1705422685
       }
     },
     "ChrisMagi": {
       "index": 11397,
       "owner_key": "BdHpECC4SLqWXgmiRg8DJPjtJrLn1hF6WMAZfWrZpnGx",
-      "balance": 216380,
+      "balance": 256066,
       "membership_expire_on": 1706042906,
-      "next_cert_issuable_on": 1691755688,
+      "next_cert_issuable_on": 1693910218,
       "certs_received": {
         "RosyRio": 1747449578,
         "Carine888": 1738098367,
@@ -123663,9 +126307,9 @@
     "MOUCHE971": {
       "index": 12486,
       "owner_key": "BdKU2Pm33EQp8RxF5rFBKU83R8WSpT1j1dAzNz4nNt2o",
-      "balance": 209532,
+      "balance": 263518,
       "membership_expire_on": 1714339589,
-      "next_cert_issuable_on": 1683459600,
+      "next_cert_issuable_on": 1693807827,
       "certs_received": {
         "Miriam3": 1745907932,
         "MaryMarie": 1745918693,
@@ -123702,7 +126346,7 @@
     "Stefi12": {
       "index": 8449,
       "owner_key": "BdbrbGJBTPXEbkkDRvTRCbVf7xLC7fJku4qxUthLfowg",
-      "balance": 91878,
+      "balance": 131564,
       "membership_expire_on": 1711706306,
       "next_cert_issuable_on": 1688733835,
       "certs_received": {
@@ -123739,7 +126383,7 @@
     "nay4": {
       "index": 50,
       "owner_key": "Be1eVp7etVfA7cT6er6dcJ9d5KxGJVY2tzCGGCAz3yG",
-      "balance": 542937,
+      "balance": 582623,
       "membership_expire_on": 1701269846,
       "next_cert_issuable_on": 1679370670,
       "certs_received": {
@@ -123763,7 +126407,7 @@
     "hervemoana07": {
       "index": 5086,
       "owner_key": "BeFXn5aMoGvW4FBUc7EE8kJCDxKDdpW3reyJM3ms5zB9",
-      "balance": 875593,
+      "balance": 915279,
       "membership_expire_on": 1711548596,
       "next_cert_issuable_on": 1690082875,
       "certs_received": {
@@ -123774,13 +126418,14 @@
         "Herve07": 1712972623,
         "AliceLouve07": 1713991066,
         "Orquiepanda": 1747586160,
+        "MarieCho": 1756193401,
         "Didine": 1747586160
       }
     },
     "BrunoSaurel": {
       "index": 6715,
       "owner_key": "BeGZdg49s8oGsPQx8RFDHtBaBUNiW8uWhyAD4BBbSv7j",
-      "balance": 604522,
+      "balance": 644208,
       "membership_expire_on": 1704472098,
       "next_cert_issuable_on": 1683858292,
       "certs_received": {
@@ -123792,10 +126437,26 @@
         "Sev07": 1710278607
       }
     },
+    "Sola": {
+      "index": 13548,
+      "owner_key": "BeMkRfcm5kFApTknzFec4yhzLrQLdY8MikqHbnBXQnL",
+      "balance": 37506,
+      "membership_expire_on": 1724857309,
+      "next_cert_issuable_on": 1695307229,
+      "certs_received": {
+        "Bich": 1756741718,
+        "JeandelAude": 1756706287,
+        "Yvespierre": 1756666362,
+        "StephaneDunNotreMonde": 1757522976,
+        "florian": 1756834935,
+        "marieor": 1757393893,
+        "LaurenceDavid": 1756942653
+      }
+    },
     "isa31": {
       "index": 11533,
       "owner_key": "BeSKVqPEN2PuTpWfagarXvYqr76jycojiVd3TSJn77Dn",
-      "balance": 216444,
+      "balance": 256130,
       "membership_expire_on": 1706886332,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -123809,9 +126470,9 @@
     "anaoj": {
       "index": 11518,
       "owner_key": "BeTVopqPo54dEdgpLwRSxUtSH8P4r2va9myyGGGw3kGs",
-      "balance": 109003,
+      "balance": 188689,
       "membership_expire_on": 1706719242,
-      "next_cert_issuable_on": 1686983104,
+      "next_cert_issuable_on": 1695990600,
       "certs_received": {
         "FJO-LaV": 1752950218,
         "Rita74": 1738900727,
@@ -123824,7 +126485,7 @@
     "Lantux": {
       "index": 8555,
       "owner_key": "BeaNiAmbANfP5KzR3mFwSZcc5XLztYfQo6QH7Vab593H",
-      "balance": 70624,
+      "balance": 110310,
       "membership_expire_on": 1715407258,
       "next_cert_issuable_on": 1687217052,
       "certs_received": {
@@ -123842,15 +126503,13 @@
     "BarbicheHetre": {
       "index": 5484,
       "owner_key": "BedWok3zn5qqwhNSmGPhd2RV3akcPvDsgqJnYsxiL3sA",
-      "balance": 633501,
+      "balance": 673187,
       "membership_expire_on": 1718581104,
       "next_cert_issuable_on": 1671512977,
       "certs_received": {
         "NathalieEtreSouverain": 1707704620,
-        "Laulau": 1693965866,
         "Jackiestl13": 1723709327,
         "Thorvald": 1721622258,
-        "CookieLilas": 1696096344,
         "Pogona": 1706831529,
         "Mariviere": 1699936854,
         "JRDS": 1735323651
@@ -123859,7 +126518,7 @@
     "ElyneT": {
       "index": 11201,
       "owner_key": "BefhUAXC1ThLN7DyZA62VNUdNGBzbc2oWawVNbBDHaeg",
-      "balance": 261096,
+      "balance": 300782,
       "membership_expire_on": 1704551495,
       "next_cert_issuable_on": 1679323469,
       "certs_received": {
@@ -123873,12 +126532,13 @@
     "SophieCD974": {
       "index": 11633,
       "owner_key": "BezzD4cx582pvAj9Q68W8UEe76cvLgCp65JaVMDDCFHd",
-      "balance": 468689,
+      "balance": 437375,
       "membership_expire_on": 1707909741,
-      "next_cert_issuable_on": 1682474615,
+      "next_cert_issuable_on": 1694674894,
       "certs_received": {
         "harry974": 1744479387,
         "ChristineNoelle": 1745641334,
+        "BrunoB974": 1757721913,
         "ClaireM97410": 1739469172,
         "Florence97410": 1739560867,
         "Myriam97410": 1739469172,
@@ -123892,7 +126552,7 @@
     "Bobydick": {
       "index": 7626,
       "owner_key": "Bf3fY6N1BQc2H4L679PcumedCvZPLivzXtrabNJGocWr",
-      "balance": 1431198,
+      "balance": 1470884,
       "membership_expire_on": 1715358591,
       "next_cert_issuable_on": 1655881253,
       "certs_received": {
@@ -123906,9 +126566,9 @@
     "AnaisLicorne": {
       "index": 6665,
       "owner_key": "Bf5HKvu53Fhe94pUmNR9AmXpL6BP9DEDxesoViye6jeU",
-      "balance": 576909,
-      "membership_expire_on": 1698477049,
-      "next_cert_issuable_on": 1692946371,
+      "balance": 616595,
+      "membership_expire_on": 1725559319,
+      "next_cert_issuable_on": 1694612150,
       "certs_received": {
         "DaniailesA": 1712210264,
         "Unomasuno": 1752028155,
@@ -123919,20 +126579,23 @@
         "Pllumes": 1720035856,
         "Odilepicpic": 1720767156,
         "ArnaudFleuri": 1705569356,
+        "Ginou17": 1758221198,
         "Junoel": 1705192314,
         "Fannyhihihi": 1713778690,
         "RobinRoni": 1704679105,
+        "Gawawelle": 1758659001,
         "MartinFleuri": 1704844826,
         "JoW": 1704739810,
         "AlexisCharrier": 1720150458,
         "Clam7": 1726775771,
-        "NolanRoni": 1704687427
+        "NolanRoni": 1704687427,
+        "eln": 1759440442
       }
     },
     "Jnoel": {
       "index": 3199,
       "owner_key": "Bf9PttKSME9PEDvLdVVnXRHLEDS1vosVufWPDbmgtJJu",
-      "balance": 3505591,
+      "balance": 3544777,
       "membership_expire_on": 1717542940,
       "next_cert_issuable_on": 1686362082,
       "certs_received": {
@@ -123941,6 +126604,7 @@
         "Chris08": 1707103972,
         "Phil7": 1707099271,
         "Aliko": 1704148746,
+        "Cindy974": 1759634803,
         "Brunov974": 1711678563,
         "NadineFornet": 1706470917,
         "DamienCdx": 1705714784,
@@ -123955,9 +126619,9 @@
     "PorteduCiel": {
       "index": 6753,
       "owner_key": "BfAj9Es5o6j4to9dRDwD3FBmhoMBhQjhoW3Bgcnsbumw",
-      "balance": 392953,
-      "membership_expire_on": 1701124686,
-      "next_cert_issuable_on": 1693065450,
+      "balance": 373571,
+      "membership_expire_on": 1727621611,
+      "next_cert_issuable_on": 1696166956,
       "certs_received": {
         "pacifikveronique": 1730997089,
         "Robin_et_Odile": 1706163410,
@@ -124025,7 +126689,6 @@
         "AurElieSkuld": 1739938469,
         "kalimheros": 1721053012,
         "Als_67": 1740121628,
-        "LHPBaptiste": 1695422329,
         "hypericum": 1724591165,
         "BertrandCGO": 1739257051,
         "TimotheeGoguely": 1742413870
@@ -124034,7 +126697,7 @@
     "CREVETTEJJAZZ": {
       "index": 4598,
       "owner_key": "BfbTMH8WiWFPmZoSyjpHcwUpQ8LjTzho1EFmorCxZzs6",
-      "balance": 322199,
+      "balance": 411885,
       "membership_expire_on": 1700821246,
       "next_cert_issuable_on": 1685283428,
       "certs_received": {
@@ -124053,9 +126716,9 @@
     "CecileM34": {
       "index": 9553,
       "owner_key": "BfjGFxvmtSgciChqPcvup7zsTTP4QnQyNdLvkh7asD2e",
-      "balance": 234502,
+      "balance": 269188,
       "membership_expire_on": 1724892773,
-      "next_cert_issuable_on": 1668064479,
+      "next_cert_issuable_on": 1696330883,
       "certs_received": {
         "Rakairos": 1726290627,
         "Olympe17": 1726290932,
@@ -124089,18 +126752,12 @@
       "balance": 338188,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1636986466,
-      "certs_received": {
-        "Orchideedu10": 1695874282,
-        "Lucas_Desroches": 1696116612,
-        "Brigitte": 1694638010,
-        "avenarius": 1695398795,
-        "Atua": 1695412170
-      }
+      "certs_received": {}
     },
     "alice": {
       "index": 11942,
       "owner_key": "BgRFsMvW6Ynjp8r7ZetWkJGmE8toGsAC4QxPjCFZhJMu",
-      "balance": 140674,
+      "balance": 180360,
       "membership_expire_on": 1709668158,
       "next_cert_issuable_on": 1683011511,
       "certs_received": {
@@ -124128,7 +126785,7 @@
     "Omega": {
       "index": 12282,
       "owner_key": "BgTUx52KC55EYh8wCVTW2RjV2trTK1idxnnVsQ43eyv7",
-      "balance": 162792,
+      "balance": 202478,
       "membership_expire_on": 1712336454,
       "next_cert_issuable_on": 1689410755,
       "certs_received": {
@@ -124137,6 +126794,7 @@
         "geusette": 1743918800,
         "LobsangDawa": 1743895533,
         "Lando": 1743910978,
+        "Tinati": 1758046932,
         "Loupdaame": 1743896167
       }
     },
@@ -124153,7 +126811,7 @@
     "Sandalf": {
       "index": 11742,
       "owner_key": "BgdedcqVTamT6b1LBZNBbBASt3SThAhT3xcQwgxkrfY6",
-      "balance": 171682,
+      "balance": 211368,
       "membership_expire_on": 1708403571,
       "next_cert_issuable_on": 1687357753,
       "certs_received": {
@@ -124167,10 +126825,41 @@
         "Kian": 1740309262
       }
     },
+    "LibrA": {
+      "index": 13722,
+      "owner_key": "BggSeELBJWvXpuzriVLvw22vAf55n9fL17z3PXX57mqe",
+      "balance": 168890,
+      "membership_expire_on": 1727375127,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "nicolasd": 1759106523,
+        "Terenia2809": 1758811985,
+        "hazed": 1759258129,
+        "Antares13": 1759258129,
+        "Ceciledgh": 1759255529,
+        "LolotteCL": 1759208988,
+        "AlexCl": 1759384881,
+        "BriMa": 1759371943
+      }
+    },
+    "Walden": {
+      "index": 13615,
+      "owner_key": "BgvbWqooNpfeeHFn1Ep1nbkcfwTxa981Ekg6U47atRdu",
+      "balance": 63575,
+      "membership_expire_on": 1726694379,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Ccil": 1758265321,
+        "Cath38": 1758335955,
+        "Gabrimiel": 1758251979,
+        "Coeurallie": 1758332345,
+        "gigi73": 1758361952
+      }
+    },
     "Claralegt": {
       "index": 3341,
       "owner_key": "Bgy7b9r8HhX6UQeLkU2Uuqh8s4RLpbBiUqUNFPp3E2r4",
-      "balance": 1323711,
+      "balance": 1363397,
       "membership_expire_on": 1717963895,
       "next_cert_issuable_on": 1688621930,
       "certs_received": {
@@ -124185,11 +126874,12 @@
     "Loris_T": {
       "index": 9693,
       "owner_key": "Bh1J4jEW6ocshqQXenwcuB4ADoq4awoH75BY3jFmT9e4",
-      "balance": 346809,
+      "balance": 396495,
       "membership_expire_on": 1722680489,
-      "next_cert_issuable_on": 1678874463,
+      "next_cert_issuable_on": 1695646939,
       "certs_received": {
         "FenderChristophe": 1727368369,
+        "Inanna": 1759735722,
         "ENO": 1727410993,
         "Fabrice_T": 1725776656,
         "kalimheros": 1725446447,
@@ -124200,7 +126890,7 @@
     "Klykly11": {
       "index": 10682,
       "owner_key": "Bh9wDfPboFpLgpFoWDg4YVnyqdufgF7erZcC8XwjVwzN",
-      "balance": 287397,
+      "balance": 327083,
       "membership_expire_on": 1700064201,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -124230,7 +126920,7 @@
     "Love": {
       "index": 12088,
       "owner_key": "BhLvtdq9ik7E89JyFJf7AruVDhyBYMuTEe6MjBRAonQ9",
-      "balance": 173016,
+      "balance": 212702,
       "membership_expire_on": 1710452410,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -124247,7 +126937,7 @@
     "Carolnijar": {
       "index": 7481,
       "owner_key": "BhRXqT95UdfWtPaxQAWz3kv7iwqZ1ECw6jibnEhJDBcN",
-      "balance": 474588,
+      "balance": 515342,
       "membership_expire_on": 1711293352,
       "next_cert_issuable_on": 1651728534,
       "certs_received": {
@@ -124263,7 +126953,7 @@
     "Framboise": {
       "index": 10437,
       "owner_key": "BhWGVoMiaeQzARLMCCA5zqEz6XMqPbXLTWMnDJZTePNs",
-      "balance": 388382,
+      "balance": 428068,
       "membership_expire_on": 1699445880,
       "next_cert_issuable_on": 1677130884,
       "certs_received": {
@@ -124278,7 +126968,7 @@
     "ErichGraf": {
       "index": 11448,
       "owner_key": "Bhm6WA93biyFZczbtBD71fhQ4JKq5VMeGb25PEYfHW3u",
-      "balance": 208857,
+      "balance": 248543,
       "membership_expire_on": 1705879783,
       "next_cert_issuable_on": 1686121783,
       "certs_received": {
@@ -124296,13 +126986,16 @@
     "miel67": {
       "index": 13463,
       "owner_key": "BhrfjqiWXBbaqCSU8SpZMGhq495dbQQYEmNfhq7Ki2YE",
-      "balance": 12336,
+      "balance": 51722,
       "membership_expire_on": 1722129971,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696324848,
       "certs_received": {
+        "HeleneB": 1757178804,
         "Dracaufeu1990": 1755642831,
         "Als_67": 1754859847,
         "seb2nor12": 1755642538,
+        "Sebel1": 1758155737,
+        "Cyrille": 1756834296,
         "BertrandCGO": 1756410907,
         "LudovicMJC": 1756278788
       }
@@ -124318,7 +127011,7 @@
     "LAUMBLEU": {
       "index": 7297,
       "owner_key": "Bi1a2bKPAmBkjpHMuEzffVPZJfnesg34cUfTbDHegywV",
-      "balance": 677715,
+      "balance": 717401,
       "membership_expire_on": 1708375846,
       "next_cert_issuable_on": 1665963318,
       "certs_received": {
@@ -124337,7 +127030,7 @@
     "Will_Desroches": {
       "index": 4647,
       "owner_key": "Bi2T2LxqNMYMfPJnH8Ld898XBiGmL4m1c1UP8MjSDEsq",
-      "balance": 471962,
+      "balance": 511648,
       "membership_expire_on": 1706832408,
       "next_cert_issuable_on": 1679743620,
       "certs_received": {
@@ -124353,15 +127046,14 @@
     "Loussine": {
       "index": 3213,
       "owner_key": "Bi4WZVMGCJWkEyBLVGmABJVXyTnQ8PmhACzNaFDHLKnZ",
-      "balance": 1274795,
-      "membership_expire_on": 1709841203,
+      "balance": 1309091,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678358782,
       "certs_received": {
         "SophieKassabian": 1708917724,
         "Laulotte84600": 1707082812,
         "lapivoine": 1718323792,
-        "Silberfee": 1713487448,
-        "Lara": 1696278829
+        "Silberfee": 1713487448
       }
     },
     "Alpamore3": {
@@ -124383,7 +127075,7 @@
     "fred30210": {
       "index": 11219,
       "owner_key": "BiJDxocGsPr16yRQ1B7PRTCm5VaUexEJEA2zLMhEm14K",
-      "balance": 223537,
+      "balance": 263223,
       "membership_expire_on": 1704737110,
       "next_cert_issuable_on": 1673785279,
       "certs_received": {
@@ -124397,7 +127089,7 @@
     "CatherineLouis": {
       "index": 9474,
       "owner_key": "BiMaGA8TGw9BYV8A6ptcY86SdiaxceheBZswyMPLMZ5",
-      "balance": 337892,
+      "balance": 373816,
       "membership_expire_on": 1724334429,
       "next_cert_issuable_on": 1686019250,
       "certs_received": {
@@ -124416,8 +127108,8 @@
     "LeonoreLOPEZ": {
       "index": 10471,
       "owner_key": "BiP6aeGEoC99znKpJHUjZA2NcdD6j8wXU877GexSvN8o",
-      "balance": 382105,
-      "membership_expire_on": 1695540686,
+      "balance": 388699,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683144425,
       "certs_received": {
         "Ecoeducacteur": 1732245722,
@@ -124433,9 +127125,9 @@
     "BernadetteMillefeuille": {
       "index": 7840,
       "owner_key": "BiVFUp1pvnRpZ3eWKTAVe1wb63MvYFtyAdcXLZtfdqFT",
-      "balance": 365447,
+      "balance": 428133,
       "membership_expire_on": 1708528715,
-      "next_cert_issuable_on": 1684541415,
+      "next_cert_issuable_on": 1695086874,
       "certs_received": {
         "Gabriel51": 1714063220,
         "Martine51": 1713236782,
@@ -124454,7 +127146,7 @@
     "isaya": {
       "index": 10809,
       "owner_key": "Bic9vpfkMf5EoktJQ7bchuTKyE4UPJKGvFN61iB9JX6d",
-      "balance": 278925,
+      "balance": 318611,
       "membership_expire_on": 1700624593,
       "next_cert_issuable_on": 1691919153,
       "certs_received": {
@@ -124468,24 +127160,25 @@
     "Flobleu": {
       "index": 13135,
       "owner_key": "BifuiHoS39165iGVCSdg5qn4pqAsJqnw9cSnKYoKSGTN",
-      "balance": 54468,
+      "balance": 38554,
       "membership_expire_on": 1719701994,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695615801,
       "certs_received": {
         "gui_tooun": 1751819301,
         "YIKING": 1751260209,
         "LNC89": 1751770855,
         "ortie": 1751261846,
         "Shaypalgv": 1751261501,
-        "Guillermo89": 1753079702
+        "Guillermo89": 1753079702,
+        "Ninette89": 1759438984
       }
     },
     "SofiaDJ": {
       "index": 13195,
       "owner_key": "Bij75Mq71pduUnrYjLxrVMiHCnLcGqWp9VjEvDkh2w7L",
-      "balance": 73156,
+      "balance": 85842,
       "membership_expire_on": 1720102734,
-      "next_cert_issuable_on": 1692887599,
+      "next_cert_issuable_on": 1695701871,
       "certs_received": {
         "FatimaDonoso": 1752563535,
         "devihope": 1752792518,
@@ -124501,7 +127194,7 @@
     "Iguana": {
       "index": 1246,
       "owner_key": "Bitw97s6EP3uTheg1Niv2W8tuEVmqCWSMoC4KtxU7oTY",
-      "balance": 560080,
+      "balance": 599766,
       "membership_expire_on": 1708107968,
       "next_cert_issuable_on": 1687751902,
       "certs_received": {
@@ -124509,7 +127202,6 @@
         "nashira": 1715784846,
         "Laurence": 1717520616,
         "Lisa34": 1743212846,
-        "DidierDavid": 1695062014,
         "MGweb": 1746984895,
         "sauveepargrace": 1729134690,
         "danielbo": 1717573346,
@@ -124530,7 +127222,7 @@
     "Isa70": {
       "index": 12841,
       "owner_key": "Biwc5T4P69nt1mXX7Fj3qqEv8VVDvTt5evKjDm1SGv7X",
-      "balance": 87912,
+      "balance": 127598,
       "membership_expire_on": 1717020775,
       "next_cert_issuable_on": 1690379482,
       "certs_received": {
@@ -124544,9 +127236,9 @@
     "MarieCamus": {
       "index": 7618,
       "owner_key": "Biwz2fyAui5jU2yhpF3K5adfjANTVQTvR3pJyJJMwrDA",
-      "balance": 522343,
+      "balance": 547029,
       "membership_expire_on": 1708532408,
-      "next_cert_issuable_on": 1689682313,
+      "next_cert_issuable_on": 1696140597,
       "certs_received": {
         "JacquelinePlan": 1711693934,
         "Stevia30120": 1711737969,
@@ -124583,7 +127275,7 @@
     "MARAL": {
       "index": 6497,
       "owner_key": "BjEeiMv3qjYUb5mwaMq8Q4KrDyLRQ5KPwbJeACVfbN76",
-      "balance": 614310,
+      "balance": 836313,
       "membership_expire_on": 1724182742,
       "next_cert_issuable_on": 1677675531,
       "certs_received": {
@@ -124622,18 +127314,20 @@
     "Camizot": {
       "index": 11005,
       "owner_key": "BjGKFAaChPRPaWFbziisNaznybht5MCk26km4mDoTkj",
-      "balance": 156158,
+      "balance": 195844,
       "membership_expire_on": 1701731655,
-      "next_cert_issuable_on": 1692924773,
+      "next_cert_issuable_on": 1695791048,
       "certs_received": {
         "Zap": 1734573419,
         "Flohubert": 1745789617,
         "Bernardfrennet": 1754251128,
+        "Isabeau": 1757404897,
         "Poesy": 1733810702,
         "PierreHarrewyn": 1743492789,
         "Loup": 1733721096,
         "Mer-lin": 1743492789,
         "Fanchon": 1733289255,
+        "Efiletoile": 1756583429,
         "ben078m": 1734507351,
         "Helver": 1744666005
       }
@@ -124641,9 +127335,9 @@
     "Bettylisameli": {
       "index": 6026,
       "owner_key": "BjMP7Ambcc9uchEU9szky8qfLMaScTjVaNQd4ZwoumR4",
-      "balance": 606573,
+      "balance": 646259,
       "membership_expire_on": 1702405691,
-      "next_cert_issuable_on": 1691312707,
+      "next_cert_issuable_on": 1694842002,
       "certs_received": {
         "Francois-Rose": 1701759427,
         "Caline": 1753304921,
@@ -124671,13 +127365,14 @@
     "GOPA": {
       "index": 4377,
       "owner_key": "BjUewhBavdrHLH4272vC5vo7NVsGn7ckWkASnPo4jH68",
-      "balance": 1032745,
-      "membership_expire_on": 1697917400,
-      "next_cert_issuable_on": 1688886761,
+      "balance": 1083931,
+      "membership_expire_on": 1727615000,
+      "next_cert_issuable_on": 1696315238,
       "certs_received": {
         "NopamasYC": 1752044408,
         "ElieLombard": 1729481720,
         "Kiki2404": 1729980392,
+        "pbienfait": 1759690517,
         "Zenobie": 1741655284,
         "Lalouise": 1734674456,
         "Noebono": 1730106999,
@@ -124689,13 +127384,12 @@
     "NicolasFloquet": {
       "index": 87,
       "owner_key": "BjZFP7UpKjJ9hbavhT2Ep2hP58noXp6xdPY4awsX17yD",
-      "balance": 885790,
+      "balance": 754596,
       "membership_expire_on": 1724582925,
       "next_cert_issuable_on": 1680538382,
       "certs_received": {
         "Gaelle": 1720821581,
         "mimi": 1743829261,
-        "ghyom": 1696096621,
         "DidierPapillon": 1754355907,
         "PascaleRoncoroni": 1733980920,
         "ElisaDesFougeres": 1704777841,
@@ -124728,7 +127422,7 @@
     "Eileen": {
       "index": 7632,
       "owner_key": "Bji9BC4XdEBVhfnQArQCthr6KW8TdzHun4eDa5NwTADq",
-      "balance": 541143,
+      "balance": 580829,
       "membership_expire_on": 1711481011,
       "next_cert_issuable_on": 1651563733,
       "certs_received": {
@@ -124740,10 +127434,26 @@
         "FabriceD": 1712001999
       }
     },
+    "Miccou": {
+      "index": 13580,
+      "owner_key": "BjiVFkuDdcAzEfefcPK2qQMFVVuTDdcWBCSFLmXrGXCK",
+      "balance": 40267,
+      "membership_expire_on": 1726015108,
+      "next_cert_issuable_on": 1696421932,
+      "certs_received": {
+        "Anneke": 1757975285,
+        "Nina38": 1757953150,
+        "Denis": 1757898350,
+        "Furiosa": 1757875372,
+        "Lolottethered": 1757833407,
+        "Anolisbaladin": 1757880665,
+        "Passparis": 1757957784
+      }
+    },
     "Bunty": {
       "index": 12126,
       "owner_key": "BjpkT5r875QSnLJEKHsjFc1LCAYEbm6h4USWK4qFEW8k",
-      "balance": 168744,
+      "balance": 208430,
       "membership_expire_on": 1711391113,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -124757,7 +127467,7 @@
     "Domicilia": {
       "index": 10954,
       "owner_key": "BjpqRtZZmQVGKf7KRdfdn3m8DekpUWe2peTVGwZZdc3q",
-      "balance": 198594,
+      "balance": 131681,
       "membership_expire_on": 1703192601,
       "next_cert_issuable_on": 1677930369,
       "certs_received": {
@@ -124775,9 +127485,9 @@
     "Nieves": {
       "index": 11978,
       "owner_key": "BjrWsGHU7XyZrhhS5JoR5qRL96UTTrr8XMtGC75nWmkw",
-      "balance": 68508,
+      "balance": 56294,
       "membership_expire_on": 1710202144,
-      "next_cert_issuable_on": 1692809123,
+      "next_cert_issuable_on": 1696408005,
       "certs_received": {
         "THORGAL1968": 1741888497,
         "davidalvarez": 1750183782,
@@ -124831,7 +127541,7 @@
     "BenFlo": {
       "index": 9191,
       "owner_key": "BjyzfRsoJ3cv2ohYXSJooW4NTNAx6yGVsW8zi6ferJ53",
-      "balance": 406768,
+      "balance": 446454,
       "membership_expire_on": 1721598876,
       "next_cert_issuable_on": 1660764665,
       "certs_received": {
@@ -124846,7 +127556,7 @@
     "Kilibix": {
       "index": 4551,
       "owner_key": "BkJG8dap9xkhT9Xb4syN7X3BUBfVQgfsAPboZN33QGfk",
-      "balance": 951100,
+      "balance": 990786,
       "membership_expire_on": 1704293054,
       "next_cert_issuable_on": 1683605375,
       "certs_received": {
@@ -124866,7 +127576,7 @@
     "SophiePaons": {
       "index": 7407,
       "owner_key": "BkMk7qPkXFMsyPntasmD1UhsD31GXoRbVScmdHeuDuzr",
-      "balance": 1094463,
+      "balance": 1143149,
       "membership_expire_on": 1706272874,
       "next_cert_issuable_on": 1653814315,
       "certs_received": {
@@ -124915,7 +127625,7 @@
     "Pierrot64": {
       "index": 10858,
       "owner_key": "BkiiPrWmhqLTqRpAnAnycqh6KRrnGtrWdmb9kpxHcntv",
-      "balance": 280748,
+      "balance": 320434,
       "membership_expire_on": 1702252351,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -124929,7 +127639,7 @@
     "NicoLive": {
       "index": 8723,
       "owner_key": "Bktm1uN1REjaVyoJb9xK28kmxza7iyw2UJQXAer3jfRY",
-      "balance": 403816,
+      "balance": 443502,
       "membership_expire_on": 1723813965,
       "next_cert_issuable_on": 1668468931,
       "certs_received": {
@@ -124965,7 +127675,7 @@
     "Andros": {
       "index": 8625,
       "owner_key": "Bm6RctgE1rmRxiryq4Tt7UqvWc41y9wfcS5bwEEhRXv7",
-      "balance": 472369,
+      "balance": 512055,
       "membership_expire_on": 1713828877,
       "next_cert_issuable_on": 1659254773,
       "certs_received": {
@@ -124980,7 +127690,7 @@
     "Simrise": {
       "index": 8609,
       "owner_key": "BmH18tCEQHyBxXX4gxL4maZFut2uNLTc1SbRP7QHEhop",
-      "balance": 482192,
+      "balance": 521878,
       "membership_expire_on": 1721086563,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -124995,7 +127705,7 @@
     "LaBerceMarion": {
       "index": 11558,
       "owner_key": "BmJRRu8FrSSNsfkhsTEcrLaVjk5h1R1cK2perTjtdjGY",
-      "balance": 296885,
+      "balance": 353271,
       "membership_expire_on": 1706562954,
       "next_cert_issuable_on": 1688648341,
       "certs_received": {
@@ -125011,7 +127721,7 @@
     "2lb89": {
       "index": 9126,
       "owner_key": "BmVpurD2z3h5F1opCQy3vKX3DHiyXKcPD3oRv6JNxf2L",
-      "balance": 285325,
+      "balance": 308511,
       "membership_expire_on": 1717079365,
       "next_cert_issuable_on": 1687941103,
       "certs_received": {
@@ -125044,11 +127754,25 @@
         "Benvaudeurs": 1731632035
       }
     },
+    "SophieKlein123": {
+      "index": 13664,
+      "owner_key": "Bmj7zkhznWTX2PqQbHE6bLdrkQp9wtw8VCqwM9P3mHzL",
+      "balance": 62937,
+      "membership_expire_on": 1723775040,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "JaYaMaTa": 1758484698,
+        "ClaudeFresonnet": 1755824238,
+        "karhoog": 1758515559,
+        "Syltraci": 1755390270,
+        "KarineKala": 1755333813
+      }
+    },
     "Maiaviolin": {
       "index": 9408,
       "owner_key": "Bmpe6iGazuwSwpYYescznq6uSUY22yJFG3cVTiNgez9Z",
-      "balance": 557437,
-      "membership_expire_on": 1693674905,
+      "balance": 564573,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1690724672,
       "certs_received": {
         "SanTuCa-REMyL": 1729400474,
@@ -125070,7 +127794,7 @@
     "Fleurflo": {
       "index": 11408,
       "owner_key": "BmurTeySZUVLLcras7bz8a41WAxu9J6NkMojixkvpJRG",
-      "balance": 232034,
+      "balance": 271720,
       "membership_expire_on": 1705853523,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -125085,7 +127809,7 @@
     "AurelienS": {
       "index": 9700,
       "owner_key": "BmvFhUJwDhdY9JJmyfvNuhPJGTc96rfs5HrpbMaQV9me",
-      "balance": 299654,
+      "balance": 339340,
       "membership_expire_on": 1720346404,
       "next_cert_issuable_on": 1671027864,
       "certs_received": {
@@ -125104,7 +127828,7 @@
     "Cevenn47": {
       "index": 11737,
       "owner_key": "BmvNxUXwedvf2ZJBRRKwRFS9pm3SZzAvBCJBYW5nM1JQ",
-      "balance": 201618,
+      "balance": 241304,
       "membership_expire_on": 1707959277,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -125118,9 +127842,9 @@
     "Sandrisha": {
       "index": 9211,
       "owner_key": "Bn24auSptbF65uEDqieXYJW4C4suPT4wfAsiPAf7QgYM",
-      "balance": 104004,
+      "balance": 50846,
       "membership_expire_on": 1718316214,
-      "next_cert_issuable_on": 1686830614,
+      "next_cert_issuable_on": 1694592194,
       "certs_received": {
         "elenagrizzly": 1735593487,
         "Estela": 1729555740,
@@ -125155,6 +127879,7 @@
         "Jackyboisset": 1726871786,
         "Idurre": 1738530972,
         "Maiana": 1748682595,
+        "tereseta": 1757572708,
         "Noxtan": 1735926166,
         "wontolla": 1737921044,
         "MaAn_MeVi": 1738132201,
@@ -125178,10 +127903,11 @@
     "Filou": {
       "index": 12803,
       "owner_key": "Bn9YtYjUbdWb2qj9b3UqXNTbDas3G5mKFYdimvLnXXkw",
-      "balance": 77703,
+      "balance": 117389,
       "membership_expire_on": 1717244434,
-      "next_cert_issuable_on": 1692894966,
+      "next_cert_issuable_on": 1696509815,
       "certs_received": {
+        "CValentine": 1755330012,
         "PhilippeLetroll": 1750359374,
         "Laeti": 1749007206,
         "jerometiny": 1751356102,
@@ -125202,7 +127928,7 @@
     "PoseidonR": {
       "index": 7750,
       "owner_key": "BnAbYWiLKfFVvwc6hyvrmcoiAQhKV36euowSPFmJ3JGd",
-      "balance": 482905,
+      "balance": 522591,
       "membership_expire_on": 1714427240,
       "next_cert_issuable_on": 1665134686,
       "certs_received": {
@@ -125227,7 +127953,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1652248059,
       "certs_received": {
-        "StephanieN": 1694585020,
         "EricPetit": 1719095271,
         "MurielW": 1715897860,
         "ChristineBouton": 1710476703
@@ -125236,7 +127961,7 @@
     "Marganananda": {
       "index": 13197,
       "owner_key": "BnFiwgDc9UvFfyijKkrdeHfKsGjJm1sENwsRccRJ3pjH",
-      "balance": 107856,
+      "balance": 537842,
       "membership_expire_on": 1721396739,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -125258,7 +127983,7 @@
     "LIBERO3": {
       "index": 10532,
       "owner_key": "BnQhhhx9P8DyaM7CnM6GRoku2gdGePeXNdRuChJmp9aM",
-      "balance": 295869,
+      "balance": 335555,
       "membership_expire_on": 1700511730,
       "next_cert_issuable_on": 1669801973,
       "certs_received": {
@@ -125281,9 +128006,9 @@
     "MarioM": {
       "index": 12877,
       "owner_key": "BngPmpCksanyiV6CFnjgrFoteJytf14VV7TSYQjfKHNy",
-      "balance": 11696,
+      "balance": 26182,
       "membership_expire_on": 1718175136,
-      "next_cert_issuable_on": 1690693300,
+      "next_cert_issuable_on": 1696780922,
       "certs_received": {
         "RuthGuerrero": 1749757014,
         "JACA": 1749738837,
@@ -125303,7 +128028,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1643208207,
       "certs_received": {
-        "EricPetit": 1694734392,
         "DidierPapillon": 1704660547,
         "PascaleRoncoroni": 1707249003,
         "aubrunjeanclaude": 1700028940
@@ -125342,25 +128066,18 @@
       "balance": 379619,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "JeromeCastel": 1693896992,
-        "ikkyu": 1693946542,
-        "Rudyvimeux": 1693967059,
-        "Maquilleuse": 1693877032,
-        "Sousoutsonga": 1693877032,
-        "RoxaneCastel": 1693947656
-      }
+      "certs_received": {}
     },
     "dondiego78": {
       "index": 6061,
       "owner_key": "BnsKTNicbTteb924HWaA1VSZrtaTyAYTUWzwun8wSPgu",
-      "balance": 646985,
+      "balance": 686671,
       "membership_expire_on": 1702365521,
       "next_cert_issuable_on": 1640207598,
       "certs_received": {
         "JeromeCastel": 1698559846,
         "ikkyu": 1698559846,
-        "Numerosympa": 1698560470,
+        "Numerosympa": 1757361524,
         "Sousoutsonga": 1699120242,
         "RoxaneCastel": 1698559846,
         "Chlea2010": 1698559846
@@ -125369,9 +128086,9 @@
     "Ange4020": {
       "index": 7445,
       "owner_key": "BnsoYgGZSu6sL3p3BykiKA2bVVyzFA6TDmYLEoNfwbqT",
-      "balance": 539256,
+      "balance": 578942,
       "membership_expire_on": 1709770562,
-      "next_cert_issuable_on": 1692616330,
+      "next_cert_issuable_on": 1696333822,
       "certs_received": {
         "jaenyph": 1719997648,
         "Alfybe": 1711474279,
@@ -125401,10 +128118,24 @@
         "Liloo2005": 1733116622
       }
     },
+    "libellule": {
+      "index": 13492,
+      "owner_key": "Bo1r8JyjjZSNqXYg5BLyd8cMQ7Bp8vajs9jZnr2HctgU",
+      "balance": 59492,
+      "membership_expire_on": 1723038633,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Crystal": 1754633098,
+        "OrianeKatyDanse": 1754596233,
+        "LaurenceRose": 1756407896,
+        "Roland": 1756440843,
+        "JoelynaSiret": 1755411702
+      }
+    },
     "Jean-Jean26": {
       "index": 6308,
       "owner_key": "Bo59uDi7muT2C6zRktMnb48TUqz8pHKrbcbEBSZrYBGK",
-      "balance": 655377,
+      "balance": 695063,
       "membership_expire_on": 1700221151,
       "next_cert_issuable_on": 1653054596,
       "certs_received": {
@@ -125440,19 +128171,16 @@
     "LoPetitSoleil": {
       "index": 5725,
       "owner_key": "BoN4T7A7Hvd4zSMZNz5Y4C2PpJovb2xHQ9CjrTNnQ2BL",
-      "balance": 475555,
+      "balance": 515241,
       "membership_expire_on": 1717791197,
       "next_cert_issuable_on": 1693007700,
       "certs_received": {
-        "Robisar": 1693946912,
         "ChristineAndre": 1742324555,
-        "Misslesfleurs": 1695065313,
         "jpeupagrando": 1749356387,
         "estherwalther26": 1749666714,
         "laetitiarecycle": 1724274082,
         "Diego26": 1751507234,
-        "Calou26": 1742475899,
-        "Nadege": 1694496519
+        "Calou26": 1742475899
       }
     },
     "Flavy13": {
@@ -125474,11 +128202,11 @@
     "Josephine": {
       "index": 2552,
       "owner_key": "BoTMQpfNY5XhfqgiPWhFSoQTCD6cJ8Vf6HHDQTEzG1ui",
-      "balance": 1401579,
+      "balance": 1441265,
       "membership_expire_on": 1717781507,
       "next_cert_issuable_on": 1689683901,
       "certs_received": {
-        "anaka": 1702259765,
+        "anaka": 1757806975,
         "Clairette31": 1753945825,
         "MikaYeel": 1707878856,
         "hommepoirier": 1699677910,
@@ -125542,7 +128270,7 @@
     "Serrato": {
       "index": 5413,
       "owner_key": "BoqTXktSVzz8zaXm6TckVwfMoDwH8DbMXxJeBfr4EJ2S",
-      "balance": 675996,
+      "balance": 715682,
       "membership_expire_on": 1713526510,
       "next_cert_issuable_on": 1688800601,
       "certs_received": {
@@ -125571,9 +128299,9 @@
     "HectorTotor": {
       "index": 5384,
       "owner_key": "Bp2PSV41Sg1iifYumEUQ12tP3vfemZYAvKsEHLscodvY",
-      "balance": 642306,
+      "balance": 682092,
       "membership_expire_on": 1711711496,
-      "next_cert_issuable_on": 1692939970,
+      "next_cert_issuable_on": 1695986930,
       "certs_received": {
         "Flocon": 1729136426,
         "Sand": 1731624682,
@@ -125586,7 +128314,6 @@
         "MartinsE": 1724555517,
         "SamuelPabloAlmonacid": 1744794363,
         "CamilleLemasson": 1724703068,
-        "Adri46": 1693875530,
         "AlphaCentauri": 1721724097,
         "ThierryLacaze": 1729142611,
         "dineflore": 1715786600,
@@ -125633,7 +128360,7 @@
     "AinaraUbille": {
       "index": 11663,
       "owner_key": "Bp99hozP6P6PqtQYNsMtEJ7bMatWkEmzu2fy1sjrNgLF",
-      "balance": 296513,
+      "balance": 323399,
       "membership_expire_on": 1707929613,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -125647,7 +128374,7 @@
     "harmoniterravie": {
       "index": 4774,
       "owner_key": "BpEPTLVDySajqbYJJgQVPdEBs8Qxk75ELqL244YMTy68",
-      "balance": 215272,
+      "balance": 254958,
       "membership_expire_on": 1701136928,
       "next_cert_issuable_on": 1677226705,
       "certs_received": {
@@ -125663,7 +128390,7 @@
     "Gersende": {
       "index": 3411,
       "owner_key": "BpGekwhceayeQViadHBjhNGfcGVRQyPncGLfGs7X8eQU",
-      "balance": 1319777,
+      "balance": 1359463,
       "membership_expire_on": 1707196507,
       "next_cert_issuable_on": 1644513335,
       "certs_received": {
@@ -125685,7 +128412,7 @@
     "Jessluciole": {
       "index": 7891,
       "owner_key": "BpYZGF4tfRdCxkYpsH1MQ1GroQP1R5KfApnAEGRinHFY",
-      "balance": 401223,
+      "balance": 405909,
       "membership_expire_on": 1710440055,
       "next_cert_issuable_on": 1673079287,
       "certs_received": {
@@ -125700,12 +128427,13 @@
     "JulienGermain": {
       "index": 5976,
       "owner_key": "BpZjvdfQ5hB9wTfhyDtCkeqRRGPAEZqmhZmcSTMvVNo6",
-      "balance": 165291,
+      "balance": 113797,
       "membership_expire_on": 1724372592,
-      "next_cert_issuable_on": 1690256117,
+      "next_cert_issuable_on": 1695128964,
       "certs_received": {
         "nathaliemineau": 1697874878,
-        "EricPetit": 1698999196,
+        "PatrickGendron": 1758831743,
+        "EricPetit": 1758689801,
         "GaelleLC": 1707438397,
         "FrancoisBaloche": 1697874605,
         "laurence66": 1715393382,
@@ -125719,7 +128447,7 @@
         "DidierPapillon": 1721797558,
         "Mazurka": 1753760884,
         "PascaleRoncoroni": 1756061790,
-        "MessagereDeLumiere": 1698181483,
+        "MessagereDeLumiere": 1758659685,
         "FranckDuhamel": 1710967502,
         "RichardGhislaine": 1706168831,
         "ElisaDesFougeres": 1733290823,
@@ -125733,17 +128461,16 @@
     "Xavier91": {
       "index": 5799,
       "owner_key": "BpjC2t1eKtmkssr8sLQWhLR88h5VmNco7Bmzg9ducFc9",
-      "balance": 695967,
-      "membership_expire_on": 1693689767,
-      "next_cert_issuable_on": 1687529040,
+      "balance": 735653,
+      "membership_expire_on": 1725235800,
+      "next_cert_issuable_on": 1695987550,
       "certs_received": {
         "MyriamGuillot": 1728308639,
         "Mathdom": 1753516998,
         "tiphsab": 1734765840,
         "Elyse33": 1744337964,
         "PatrickREVIF": 1742029673,
-        "Maaude09": 1696665988,
-        "Seve": 1696659013,
+        "Maaude09": 1758172444,
         "bellis": 1732295752,
         "ollo": 1696926329,
         "Flore66": 1696921937,
@@ -125759,7 +128486,7 @@
     "Miaou": {
       "index": 4916,
       "owner_key": "BpjD5A3HiPiyqh2Z5SNZc8ELvRAMKjjFsGHPCBcZtpxB",
-      "balance": 851185,
+      "balance": 890871,
       "membership_expire_on": 1711469260,
       "next_cert_issuable_on": 1692061968,
       "certs_received": {
@@ -125780,7 +128507,7 @@
     "Pauline-Georges": {
       "index": 5560,
       "owner_key": "BputMdCYZDKZYxtCrE9KoAkvvWPJp5QC3WbaiARNu5Dh",
-      "balance": 395585,
+      "balance": 435271,
       "membership_expire_on": 1715432221,
       "next_cert_issuable_on": 1690535976,
       "certs_received": {
@@ -125800,9 +128527,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1688139450,
       "certs_received": {
-        "sheveck": 1693558742,
-        "XianeC": 1752947157,
-        "Wellno1": 1694406461
+        "XianeC": 1752947157
       }
     },
     "CecileWako": {
@@ -125850,11 +128575,12 @@
     "annemarie9": {
       "index": 12954,
       "owner_key": "Bq3hKA21W9PgTaZV3HDLJhrDkMyxMrLwPGig67FzfVtw",
-      "balance": 75828,
+      "balance": 105514,
       "membership_expire_on": 1717100279,
-      "next_cert_issuable_on": 1690177710,
+      "next_cert_issuable_on": 1696592364,
       "certs_received": {
         "Psy": 1753596167,
+        "Lionel_Dechilly": 1758731210,
         "DomVe": 1750023454,
         "Steph41": 1750290797,
         "ChloeS": 1750068645,
@@ -125881,8 +128607,8 @@
     "Orange83440": {
       "index": 9697,
       "owner_key": "Bq9cjU7i3dz3W2R9Z11ys8owL8R1a28fN8XEZ6sJW6vz",
-      "balance": 320468,
-      "membership_expire_on": 1695422664,
+      "balance": 343984,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1677150021,
       "certs_received": {
         "Isee": 1739940308,
@@ -125897,7 +128623,7 @@
     "YOSOYLUZ": {
       "index": 7819,
       "owner_key": "BqAxvSh4q4eEx9JEb1oSq18NfWtG7YUoGSsfg5wapZsR",
-      "balance": 237913,
+      "balance": 277599,
       "membership_expire_on": 1707950962,
       "next_cert_issuable_on": 1683791428,
       "certs_received": {
@@ -125937,6 +128663,7 @@
         "Guito": 1726731799,
         "Sabi": 1720247690,
         "Galadriel": 1732397732,
+        "Shivabelle": 1758245950,
         "MariantoniaHuguet": 1717903756,
         "Atman": 1740544385,
         "tuttle": 1716076656,
@@ -125962,9 +128689,9 @@
     "Canardargent": {
       "index": 3823,
       "owner_key": "BqBPmZ1Qnp1mD33FMP9f4DWAEVuWF5sH6ynzhehdvwvZ",
-      "balance": 251633,
+      "balance": 266279,
       "membership_expire_on": 1707704529,
-      "next_cert_issuable_on": 1676887311,
+      "next_cert_issuable_on": 1693814547,
       "certs_received": {
         "Basile83": 1726201251,
         "ScarlettGabrielle_8": 1729626742,
@@ -125973,7 +128700,6 @@
         "Tchois": 1719995510,
         "AurelieProf83": 1732845904,
         "Sylvierosartetculture": 1727681888,
-        "SoNyA": 1693875530,
         "Mika83": 1741333465,
         "Orange83440": 1729804515,
         "ValerieSoufflier": 1722029001,
@@ -125987,7 +128713,7 @@
     "Hypnogreg": {
       "index": 10641,
       "owner_key": "BqFHekwYdyrCWL84V75wYkTbL5HtSMgVSeVuBpmY3zoX",
-      "balance": 231615,
+      "balance": 271301,
       "membership_expire_on": 1701113217,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -126002,9 +128728,9 @@
     "MaiteBel": {
       "index": 12299,
       "owner_key": "BqMAxXro1pWnB6cRtyaQZuaCkogbrU6mLWKn9e2GURG9",
-      "balance": 180524,
+      "balance": 220210,
       "membership_expire_on": 1712683885,
-      "next_cert_issuable_on": 1692257288,
+      "next_cert_issuable_on": 1693962066,
       "certs_received": {
         "Silvi": 1751668751,
         "SanTuCa-REMyL": 1744327444,
@@ -126012,8 +128738,10 @@
         "Lurtxu": 1744251749,
         "Meg": 1755124183,
         "Mariacrea": 1754989615,
+        "Camilarogelia13": 1758956827,
         "LooseGoose": 1744255343,
         "Leia": 1751875360,
+        "Brahmaya": 1754989866,
         "nussyna": 1750302811,
         "RoberQuim": 1744252043,
         "Enoc": 1755126948,
@@ -126042,25 +128770,23 @@
     "sasa123": {
       "index": 3048,
       "owner_key": "BqR24dcQM8UwMWbbigA9nRg7i9aT1HcSt2vs9zh4qqsJ",
-      "balance": 1232515,
-      "membership_expire_on": 1694914094,
+      "balance": 1268997,
+      "membership_expire_on": 1726680833,
       "next_cert_issuable_on": 1684819162,
       "certs_received": {
-        "Lulu31Verfeil": 1695190173,
-        "LaeVie": 1695190456,
+        "Lulu31Verfeil": 1758241281,
         "CyrilCuisin": 1719649635,
         "Lapprentissage": 1748148261,
         "scanlegentil": 1748149029,
-        "Grisou1250": 1695190173,
         "AnaisB": 1739391504
       }
     },
     "RobinRoni": {
       "index": 6142,
       "owner_key": "BqVDouLyXyC2MDWrmePuoVuTnp18rfWtFGoHvW8bRedM",
-      "balance": 660323,
+      "balance": 700009,
       "membership_expire_on": 1724204152,
-      "next_cert_issuable_on": 1690464132,
+      "next_cert_issuable_on": 1693157078,
       "certs_received": {
         "Tot16": 1753226477,
         "DaniailesA": 1708722339,
@@ -126074,14 +128800,17 @@
         "ZimG": 1756086248,
         "Odilepicpic": 1720767573,
         "ArnaudFleuri": 1700244647,
+        "Ginou17": 1759086344,
         "SarahG1": 1721343028,
         "MoiseK": 1753742075,
         "Junoel": 1709541559,
         "Fannyhihihi": 1698658600,
         "AnaisLicorne": 1705603119,
         "Tchekoff": 1705687871,
+        "Gawawelle": 1755840327,
         "MartinFleuri": 1700256892,
         "JoW": 1699807180,
+        "MuleRetive": 1758579993,
         "VanessaVigier": 1709743935,
         "Clam7": 1729384361,
         "NolanRoni": 1744230079,
@@ -126115,28 +128844,26 @@
     "Lolobuss": {
       "index": 1798,
       "owner_key": "BqpKMK3TH4axWuUbWx6n1327dcr9smBU9KU4vsXfbhcL",
-      "balance": 80100,
+      "balance": 26870,
       "membership_expire_on": 1716823180,
-      "next_cert_issuable_on": 1660204246,
+      "next_cert_issuable_on": 1694840402,
       "certs_received": {
         "nashira": 1712865914,
         "Justis": 1722794485,
         "Cristol-Iquid": 1701834835,
-        "Cdrix": 1693624751,
         "AngeEden": 1722394013,
         "Sylvieb": 1708645141,
         "fanfan": 1700459009,
         "Llorens": 1753969762,
-        "Ninon914": 1713330539,
-        "FredB": 1695966579
+        "Ninon914": 1713330539
       }
     },
     "Loup": {
       "index": 4805,
       "owner_key": "Br8HefFzjP66AnfubqaTc2q848LakmaT47w62VNf6xBY",
-      "balance": 976757,
+      "balance": 1021443,
       "membership_expire_on": 1705854648,
-      "next_cert_issuable_on": 1690379120,
+      "next_cert_issuable_on": 1696322538,
       "certs_received": {
         "Zap": 1748623754,
         "Dams": 1738189581,
@@ -126161,11 +128888,10 @@
     "lamouette": {
       "index": 1916,
       "owner_key": "BrEWT2vYTrAJ3yfamyoCatbpQyMF4THWBtNmWwXvQBnU",
-      "balance": 955274,
+      "balance": 1247960,
       "membership_expire_on": 1714565044,
-      "next_cert_issuable_on": 1692329516,
+      "next_cert_issuable_on": 1696316515,
       "certs_received": {
-        "MilaChavez": 1695407193,
         "Lisie": 1741065142,
         "Katiecat": 1742068678,
         "Chantal": 1750379554,
@@ -126182,7 +128908,6 @@
         "Gigane": 1738439027,
         "Gregory": 1727817347,
         "sro": 1715880482,
-        "Feerique": 1694558589,
         "BALOU73": 1723496180,
         "Ju73": 1708038464,
         "BabethMangas": 1715403423,
@@ -126194,15 +128919,14 @@
         "JClaudeFerrandi": 1750895461,
         "AlphaCentauri": 1715404547,
         "gaaltic": 1738972154,
-        "Didierlife84": 1696493548,
         "RosadoraLafee": 1740599021,
         "Lacabane": 1752035698,
         "Matteo": 1717606021,
         "Meiluce": 1742535310,
         "Wono": 1730409165,
         "Ugo": 1751690802,
-        "YehoshuaRossille": 1695656394,
         "Aneuf": 1746313704,
+        "LOTUS84": 1757056823,
         "Ninou01": 1698876849,
         "CedrickPiwo": 1712687399,
         "NumpaWicahpi": 1714785052,
@@ -126211,22 +128935,19 @@
         "Avrila": 1705623321,
         "lapivoine": 1718323352,
         "Pigeospower": 1714856041,
-        "Flandelila": 1695947497,
+        "Flandelila": 1759705903,
         "JeanTibou": 1705766671,
         "Vicky": 1733219605,
-        "Coco46": 1696185360,
         "Ely81": 1718290362,
-        "zenbio": 1694930161,
+        "zenbio": 1758075589,
         "Micaela": 1739338882,
         "RedaZi": 1752151385,
         "AuroreSouveraine": 1740623374,
         "SofianneErler": 1719496046,
-        "CovaDidier": 1696314404,
         "Meryazel": 1722023635,
         "Pichotilha": 1734762452,
         "FredRueff": 1716200325,
         "CelYinYang": 1740557135,
-        "Josetre": 1694217262,
         "Sandy": 1703672580,
         "Tanagra": 1725136358,
         "Gclaire": 1728360377,
@@ -126236,7 +128957,7 @@
     "Marcolariegeois": {
       "index": 7796,
       "owner_key": "BrHBDpSuAUAGVnhCSSSd7uJW7rLoDiFiY5iBAaUkRRWe",
-      "balance": 454380,
+      "balance": 494066,
       "membership_expire_on": 1709303008,
       "next_cert_issuable_on": 1688811607,
       "certs_received": {
@@ -126269,7 +128990,7 @@
     "Bapt": {
       "index": 11766,
       "owner_key": "BrSsR9hnHtt4S4CTSPDCmBDM9fabfXgTgMpeKQCXPivM",
-      "balance": 199500,
+      "balance": 239186,
       "membership_expire_on": 1707969918,
       "next_cert_issuable_on": 1683731547,
       "certs_received": {
@@ -126299,22 +129020,17 @@
     "TribuRaph": {
       "index": 5755,
       "owner_key": "BrnJFGJF6wyaGZ22JmTrgJ5BNK5AALXoyHXU97oztZcD",
-      "balance": 174259,
+      "balance": 329145,
       "membership_expire_on": 1720180097,
       "next_cert_issuable_on": 1688694497,
       "certs_received": {
-        "Mianne": 1695798219,
         "Alfybe": 1726513383,
         "Gnostique34": 1754895883,
         "ibisio": 1755895749,
         "Osmoze": 1714758000,
-        "LaurentNeuville": 1695798219,
-        "martineagatha": 1695798219,
         "MarcelDoppagne": 1708385506,
         "Micha99": 1741112288,
-        "AmandineDupret": 1695798219,
         "Numerosympa": 1725160490,
-        "PatHamster": 1695497211,
         "MarianneCramilion": 1734047778,
         "MEME3": 1742491757,
         "IgnaceDdCh": 1733347403,
@@ -126359,19 +129075,20 @@
     "DamienBesac": {
       "index": 5579,
       "owner_key": "BsNJQBuayStWUNE4EzSMjZrmcuY8K16HEVSmzEk1FuXv",
-      "balance": 543615,
+      "balance": 563301,
       "membership_expire_on": 1719711067,
-      "next_cert_issuable_on": 1691601723,
+      "next_cert_issuable_on": 1693661278,
       "certs_received": {
         "DomRomy20": 1746915188,
         "ChristopheG25": 1745818443,
         "FabienneM": 1755754637,
+        "MicheleSauterey": 1756444487,
         "Valerie25": 1746990431,
         "CalineR2": 1726895677,
+        "Rserge": 1757380300,
         "Marido2563": 1750488810,
         "twistol": 1753212743,
         "Artemys": 1754522746,
-        "FRLavenier": 1693549192,
         "sophiepoyans": 1747179526,
         "Lama": 1734989924
       }
@@ -126379,8 +129096,8 @@
     "myosotiss": {
       "index": 10310,
       "owner_key": "BsYr9Vk33dESin9YXEKHkybRYEv5H3woRzNGCfzrK3na",
-      "balance": 291713,
-      "membership_expire_on": 1697380651,
+      "balance": 313399,
+      "membership_expire_on": 1728041675,
       "next_cert_issuable_on": 1671339980,
       "certs_received": {
         "philboybada63": 1732082177,
@@ -126395,7 +129112,7 @@
     "AngelArt": {
       "index": 9085,
       "owner_key": "Bsewe4fWZZ3H8E6GqGixjUNUTJ6F5TD6HYgPzefWp5Tz",
-      "balance": 415329,
+      "balance": 455015,
       "membership_expire_on": 1719398748,
       "next_cert_issuable_on": 1685888887,
       "certs_received": {
@@ -126404,6 +129121,8 @@
         "BOUbou007": 1722369053,
         "GypsiCla": 1722561191,
         "ELISKA": 1745084110,
+        "Filou": 1759035690,
+        "Cleo59": 1759526691,
         "Andy": 1722348743,
         "deLouvignies": 1722326330,
         "AnemoneSyl": 1722485612
@@ -126412,14 +129131,14 @@
     "HenriRGN": {
       "index": 3217,
       "owner_key": "Bsi5Vc6ynB9dAu2VvyAjTQRYZ7wmGNFabo6EAMuJbBzG",
-      "balance": 2957054,
+      "balance": 2996740,
       "membership_expire_on": 1722896163,
-      "next_cert_issuable_on": 1686662839,
+      "next_cert_issuable_on": 1696339076,
       "certs_received": {
         "hibiscus11": 1738812662,
         "Eli25": 1743747196,
         "bcoomans": 1749772329,
-        "LauQui": 1698170568,
+        "LauQui": 1755105727,
         "FranckBarbe": 1709784587,
         "Lezarde": 1740599404,
         "MarleneRibeiro": 1744014362,
@@ -126452,7 +129171,7 @@
     "FannyDousset": {
       "index": 7864,
       "owner_key": "BsjYX3uL9Tninx6jQQF85TyoeyCBag5aYBLc6RneCQPb",
-      "balance": 250725,
+      "balance": 207911,
       "membership_expire_on": 1709068668,
       "next_cert_issuable_on": 1681751163,
       "certs_received": {
@@ -126472,6 +129191,20 @@
         "KarineBAILLIEU": 1717674462
       }
     },
+    "FrancoiseM": {
+      "index": 13734,
+      "owner_key": "BskcAfHUKGUKdNT6RN6BSNcBmaMyvWtwAwgGcNA59gQH",
+      "balance": 11512,
+      "membership_expire_on": 1727351257,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "LutziaZ": 1759393450,
+        "ALLine": 1759393450,
+        "Aldebaran": 1759460781,
+        "Ulysse7489": 1759433231,
+        "Marino45": 1759465570
+      }
+    },
     "ArianeDD": {
       "index": 6899,
       "owner_key": "BsmPi6bH2wieYBbF9H7shQT6E59mAZcBg7471ewJWD9G",
@@ -126490,7 +129223,7 @@
     "Ekoanil71": {
       "index": 7491,
       "owner_key": "BsuX5ooQFV3f2Q4jWv83pQiSdp9jY92c25orLvto1DxV",
-      "balance": 563853,
+      "balance": 603539,
       "membership_expire_on": 1708697979,
       "next_cert_issuable_on": 1649410551,
       "certs_received": {
@@ -126504,7 +129237,7 @@
     "joelliah": {
       "index": 10519,
       "owner_key": "Bsv96LyjYAfdpHa7YqjG86ZKBWfj3rnJwaPs75MZ7Fqx",
-      "balance": 492428,
+      "balance": 503014,
       "membership_expire_on": 1700589506,
       "next_cert_issuable_on": 1686963520,
       "certs_received": {
@@ -126533,7 +129266,7 @@
     "Harout": {
       "index": 3987,
       "owner_key": "Bt4D1FdyA4JKPFYc7Lv8c3iNNT1ctYMuYCakCgbq7Jpr",
-      "balance": 417104,
+      "balance": 481790,
       "membership_expire_on": 1724195086,
       "next_cert_issuable_on": 1692709486,
       "certs_received": {
@@ -126547,11 +129280,26 @@
         "jeanmarieforgue": 1700265825
       }
     },
+    "Kima": {
+      "index": 13510,
+      "owner_key": "BtDUXe2aqjDD8yqZw84QEST31PVmuwWveMytG4nySLDy",
+      "balance": 28456,
+      "membership_expire_on": 1723432266,
+      "next_cert_issuable_on": 1696168854,
+      "certs_received": {
+        "MonyKan": 1755107122,
+        "sro": 1755060883,
+        "aitorjs": 1755847675,
+        "Ely81": 1755045893,
+        "Xabikyo": 1755666203,
+        "Marijose": 1756080994
+      }
+    },
     "xyllyx": {
       "index": 9679,
       "owner_key": "BtEB6UrwKf6AMCGzTBYtyioo76Zg96zaVVAytFZTrha7",
-      "balance": 331410,
-      "membership_expire_on": 1695731433,
+      "balance": 357862,
+      "membership_expire_on": 1727567198,
       "next_cert_issuable_on": 1679802082,
       "certs_received": {
         "arbocenc": 1727290461,
@@ -126576,7 +129324,7 @@
     "freddonnay": {
       "index": 6771,
       "owner_key": "BtZTh4jnH39EMo2k1BSqeQUfSo1HUZ4egbiS4mmZRdTw",
-      "balance": 585847,
+      "balance": 625533,
       "membership_expire_on": 1702404939,
       "next_cert_issuable_on": 1679711447,
       "certs_received": {
@@ -126601,7 +129349,7 @@
     "Ciclica": {
       "index": 8077,
       "owner_key": "BtjdtipHNg2WovXSFDYr833vuY3bAGM5aZrEy4H5u9dZ",
-      "balance": 59902,
+      "balance": 99588,
       "membership_expire_on": 1713289447,
       "next_cert_issuable_on": 1685168860,
       "certs_received": {
@@ -126629,15 +129377,16 @@
     "Ananda": {
       "index": 13353,
       "owner_key": "BtprB9NyxD5CC66qwzax2YWCqH2H1fhiQ7djhmjfnQj6",
-      "balance": 14028,
+      "balance": 38714,
       "membership_expire_on": 1722855732,
-      "next_cert_issuable_on": 1693302514,
+      "next_cert_issuable_on": 1696244348,
       "certs_received": {
         "Zap": 1754621057,
         "Lako": 1754687955,
         "Nico4roux": 1754625197,
         "Asthenie": 1754695689,
         "ElisabethMoreil": 1754620056,
+        "Efiletoile": 1756583129,
         "Mauve": 1754629819,
         "Biou": 1754621227
       }
@@ -126677,7 +129426,7 @@
     "NickRoth": {
       "index": 8996,
       "owner_key": "BuDrSL5Pr7qsR9fG9kNxp1ZxQXVxapqgLdLeTEANMUXT",
-      "balance": 370198,
+      "balance": 409884,
       "membership_expire_on": 1720715396,
       "next_cert_issuable_on": 1663600744,
       "certs_received": {
@@ -126705,7 +129454,7 @@
     "MatheoBIANCO": {
       "index": 11792,
       "owner_key": "BuM6BA8MccpTKGfus4UGXXaGd4FGoLhepgzKGD6U1BYt",
-      "balance": 128682,
+      "balance": 142868,
       "membership_expire_on": 1707092617,
       "next_cert_issuable_on": 1677854507,
       "certs_received": {
@@ -126720,7 +129469,7 @@
     "Abuelito": {
       "index": 6938,
       "owner_key": "BuMHUa26YnZJoB3VbrTpF334jiVksDRodbGrZkDY4R8x",
-      "balance": 307959,
+      "balance": 347645,
       "membership_expire_on": 1702568181,
       "next_cert_issuable_on": 1683691823,
       "certs_received": {
@@ -126747,18 +129496,21 @@
     "Monik9366": {
       "index": 11498,
       "owner_key": "BuixiLPrRZ4qy58No9cCdpdQH7AX43W2VxY8B42cYQTY",
-      "balance": 56207,
+      "balance": 86393,
       "membership_expire_on": 1706410695,
-      "next_cert_issuable_on": 1692740720,
+      "next_cert_issuable_on": 1695926028,
       "certs_received": {
         "Gloria974": 1739376260,
+        "Sorgentini": 1758338595,
         "LauraPDF": 1754788034,
         "SamuelPabloAlmonacid": 1738824801,
         "Wotan": 1738818481,
         "Elariel": 1745991589,
         "Betty": 1749895904,
+        "LucasSebastianPerez": 1756269638,
         "Walkiria": 1738888386,
         "Kiara974": 1739376260,
+        "Math": 1758439816,
         "lovol": 1749117371,
         "MaAn_MeVi": 1738447036,
         "MariMardisfrutona": 1738823296,
@@ -126779,7 +129531,7 @@
     "JUAN51": {
       "index": 8331,
       "owner_key": "Bv3tnmQDS2ABVCLz49TrDk7dfsbbzjr523Mx3ChMZrn7",
-      "balance": 124889,
+      "balance": 78175,
       "membership_expire_on": 1711840640,
       "next_cert_issuable_on": 1667354256,
       "certs_received": {
@@ -126818,7 +129570,7 @@
     "SoniaVac": {
       "index": 8093,
       "owner_key": "Bv8srpVtP5gNxsVvLGseVHua8dJdB8MAsrgyTDBCS391",
-      "balance": 535665,
+      "balance": 635351,
       "membership_expire_on": 1709588716,
       "next_cert_issuable_on": 1691677499,
       "certs_received": {
@@ -126840,9 +129592,9 @@
     "catarinajunas": {
       "index": 13129,
       "owner_key": "BvBXqchNtoXDqVmCoTbSMCJYRENYWmJBT5PYqqs6gxvE",
-      "balance": 66736,
+      "balance": 104222,
       "membership_expire_on": 1720477220,
-      "next_cert_issuable_on": 1690297923,
+      "next_cert_issuable_on": 1694666218,
       "certs_received": {
         "devihope": 1752036566,
         "Judit137": 1752058879,
@@ -126865,7 +129617,7 @@
     "Florane": {
       "index": 6884,
       "owner_key": "BvLfyawh6CfafZjHdrsPuqUvin5wJchi28dmezBhzPod",
-      "balance": 57182,
+      "balance": 91868,
       "membership_expire_on": 1702334969,
       "next_cert_issuable_on": 1691293065,
       "certs_received": {
@@ -126942,7 +129694,7 @@
     "NICOLOURS": {
       "index": 378,
       "owner_key": "BvZCrABmy3sd3svbM6KrYsThFUiS1LEtEY7d9BysfZSt",
-      "balance": 832002,
+      "balance": 871688,
       "membership_expire_on": 1700524946,
       "next_cert_issuable_on": 1675580568,
       "certs_received": {
@@ -126953,10 +129705,40 @@
         "maksou": 1736102098
       }
     },
+    "Momo": {
+      "index": 13585,
+      "owner_key": "Bvcj3ZH4wj1cXio4YsADcLQS9zxQDzsqqrL6FwSUcfNJ",
+      "balance": 25030,
+      "membership_expire_on": 1726335678,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "FraBro": 1758084065,
+        "IsaTuick": 1758077686,
+        "Nouchka1": 1758037016,
+        "CarBro": 1758050341,
+        "freeman": 1758072345,
+        "Flocha": 1757893663
+      }
+    },
+    "Lodovico": {
+      "index": 13695,
+      "owner_key": "Bvd6DFqHaHMAP5sosMnwJE7FT45Ns2kZuvPZxiB7dJkn",
+      "balance": 7646,
+      "membership_expire_on": 1727089751,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "guille95": 1758761280,
+        "pastachutta1964": 1759182847,
+        "ClaraFuerteventura": 1758761280,
+        "Mahj": 1758908298,
+        "CedricG": 1759169960,
+        "Marialu": 1758761280
+      }
+    },
     "VeroniKa": {
       "index": 8217,
       "owner_key": "BviGPMtPjjfPCYdMMtvtUsxJvPmZjyBcvGVe7Je8WMog",
-      "balance": 593848,
+      "balance": 633534,
       "membership_expire_on": 1713905539,
       "next_cert_issuable_on": 1680783849,
       "certs_received": {
@@ -126982,10 +129764,13 @@
     "Anma": {
       "index": 10856,
       "owner_key": "Bw4pH3zzFib1VVbQN8mnWfu9YCgBbJJ2CXxHTCobUTke",
-      "balance": 407848,
+      "balance": 412935,
       "membership_expire_on": 1702302522,
-      "next_cert_issuable_on": 1691419913,
+      "next_cert_issuable_on": 1696665858,
       "certs_received": {
+        "Ghostdog": 1756610491,
+        "Randolf": 1758957156,
+        "Pippilotta": 1759384498,
         "Montaraz": 1733896482,
         "Erikpm": 1746165284,
         "crisleon": 1733863617,
@@ -127001,7 +129786,7 @@
     "Shinra_": {
       "index": 12825,
       "owner_key": "Bw58XmhWS9rXFHqG1hHfD54t2zLEGzhYUqhwwm6rVuTx",
-      "balance": 20968,
+      "balance": 95166,
       "membership_expire_on": 1717607600,
       "next_cert_issuable_on": 1693361695,
       "certs_received": {
@@ -127040,7 +129825,7 @@
     "StefaniaCamilla": {
       "index": 11594,
       "owner_key": "BwDznA6KMBU8zAFSTsz7soESyCyV6gCJEeASGWwh9Q7i",
-      "balance": 299008,
+      "balance": 338694,
       "membership_expire_on": 1707722498,
       "next_cert_issuable_on": 1688385979,
       "certs_received": {
@@ -127061,6 +129846,7 @@
         "Hardass": 1750803989,
         "pedroponte": 1748548303,
         "SaoSampaio": 1739344791,
+        "Rahhui": 1757234709,
         "GodofredoBaltazar": 1748889295,
         "diogocsc": 1745264151,
         "JorgeDraven": 1743834145,
@@ -127068,15 +129854,16 @@
         "AnaPires": 1749933543,
         "OlgaO": 1746779302,
         "PenaBranca": 1751660844,
+        "ElisabeteMartins": 1752094084,
         "ManuelSoares": 1749270852
       }
     },
     "Melusine": {
       "index": 6731,
       "owner_key": "BwHpH8ESyc8k9m9vcd8ruySKLkC9VsAxqhN71Q3ZxcAZ",
-      "balance": 549657,
-      "membership_expire_on": 1699902788,
-      "next_cert_issuable_on": 1668843510,
+      "balance": 466143,
+      "membership_expire_on": 1726597269,
+      "next_cert_issuable_on": 1695199995,
       "certs_received": {
         "MacBoi": 1705266015,
         "MurielLaragne": 1732315677,
@@ -127100,13 +129887,12 @@
     "joji_188": {
       "index": 366,
       "owner_key": "BwNVJLZHwY9SCuFX3gTyUmAsRJ8E9WXu98UGNmb2Fvff",
-      "balance": 2197326,
-      "membership_expire_on": 1694521108,
+      "balance": 2210142,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1656322635,
       "certs_received": {
         "casadesam": 1756005369,
         "JulienBolly": 1706587486,
-        "MarcelDoppagne": 1695016925,
         "TatieDanielle07": 1712187332,
         "Boutfeu": 1719793199,
         "Elle": 1709795551,
@@ -127123,14 +129909,13 @@
         "Pikatchu": 1740944193,
         "Zoroastre": 1743432883,
         "ortie": 1701481395,
-        "Fukuchimio": 1734750201,
-        "MutatisMutandis": 1694878425
+        "Fukuchimio": 1734750201
       }
     },
     "Gud": {
       "index": 1674,
       "owner_key": "BwPMiQPUeUouJVNJywhSzcDWRJKeTHEpXqRZcBbViXmd",
-      "balance": 580394,
+      "balance": 641640,
       "membership_expire_on": 1722791936,
       "next_cert_issuable_on": 1688820171,
       "certs_received": {
@@ -127145,7 +129930,7 @@
     "RinoN": {
       "index": 10990,
       "owner_key": "BwQ6gYJTCaP5TVacMb7scm1uBAxwFz4JA9mXkB2AucGD",
-      "balance": 262194,
+      "balance": 301880,
       "membership_expire_on": 1703376160,
       "next_cert_issuable_on": 1677823136,
       "certs_received": {
@@ -127163,19 +129948,19 @@
     "Natte444": {
       "index": 5858,
       "owner_key": "BwR5mcwAGYhXQzPo2jrRitGLAEAB26Uyd6tjv68aDGS3",
-      "balance": 217507,
+      "balance": 268893,
       "membership_expire_on": 1720202260,
-      "next_cert_issuable_on": 1688718548,
+      "next_cert_issuable_on": 1695543221,
       "certs_received": {
         "Margot91": 1697835026,
         "Lucas_Desroches": 1732680759,
         "Faquantharmonie": 1697736852,
         "VictorDavid108": 1734216602,
-        "Maaude09": 1697695301,
+        "Maaude09": 1757383178,
         "Chrissbrl": 1745382294,
         "ollo": 1697696685,
         "Jdbetoile": 1704695679,
-        "denizen": 1699127924,
+        "denizen": 1756967892,
         "PaulinePolka": 1738180517,
         "Flore66": 1697699517,
         "hocine": 1717949088,
@@ -127187,7 +129972,7 @@
     "XavierPS": {
       "index": 8506,
       "owner_key": "BwVL14f4iNFFdKFEUYDAQ3dx2ZQqA5NwvDNj5M2qDGFQ",
-      "balance": 688225,
+      "balance": 702611,
       "membership_expire_on": 1713202203,
       "next_cert_issuable_on": 1692697510,
       "certs_received": {
@@ -127238,7 +130023,7 @@
     "Jess34": {
       "index": 6855,
       "owner_key": "BwfuTbpk2uYYmhuUAvpCDriJqxmP9oQrEkoXvUYxVMjN",
-      "balance": 640359,
+      "balance": 680045,
       "membership_expire_on": 1705886102,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -127254,33 +130039,28 @@
     "SabineIsambert": {
       "index": 5873,
       "owner_key": "BwkmABMYA3bcmzGPB3yc5mEaTLzkiULH9pB8qWrc1Kf3",
-      "balance": 423745,
-      "membership_expire_on": 1694705186,
+      "balance": 438697,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1680530301,
       "certs_received": {
-        "Milan": 1696117672,
         "HazaiIsambert": 1705477917,
         "Yesyes": 1716152633,
         "IsaForest": 1697353653,
         "Gib26": 1743578037,
-        "Soyouz": 1696191723,
         "MrMrtn": 1732041284,
         "Mariemayaluna": 1697742259,
-        "Voyageur32": 1747186443,
-        "labomarjo": 1696116289,
-        "Leticia": 1696116942,
-        "LydiaRoche": 1696121685,
-        "SanjaAnanda": 1696118053
+        "Voyageur32": 1747186443
       }
     },
     "sercla": {
       "index": 10470,
       "owner_key": "Bwksig2G5iofJWqHPauXaJmXxj2Qe4bgFkR6x1PJr8fb",
-      "balance": 420505,
+      "balance": 480191,
       "membership_expire_on": 1700655272,
-      "next_cert_issuable_on": 1692961932,
+      "next_cert_issuable_on": 1693612220,
       "certs_received": {
         "Sophie77": 1732219596,
+        "BOUbou007": 1756657638,
         "FannyPolet": 1732217990,
         "Glencoe": 1732218490,
         "MarieFranceL": 1750301953,
@@ -127292,7 +130072,7 @@
     "NoemieB31": {
       "index": 11435,
       "owner_key": "Bwo9Tm23vqr8XwwzMCerGDRpMwNG2cQozVJyVg6xNPcw",
-      "balance": 224916,
+      "balance": 264602,
       "membership_expire_on": 1702471081,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -127324,9 +130104,9 @@
     "VeroniqueMaessen": {
       "index": 10644,
       "owner_key": "Bwwe4MCqFitBtP933kjBEVmtpJPdhmfBuATFuvvLAv5o",
-      "balance": 34303,
-      "membership_expire_on": 1699308126,
-      "next_cert_issuable_on": 1693007236,
+      "balance": 52489,
+      "membership_expire_on": 1726099056,
+      "next_cert_issuable_on": 1696500994,
       "certs_received": {
         "Etipol61": 1749431342,
         "Milan": 1749151370,
@@ -127337,6 +130117,7 @@
         "philippedubezu": 1746988936,
         "JeanMarcBuge": 1732584102,
         "GhislaineChartier": 1751258017,
+        "Marie2puivert": 1757371507,
         "IsabellePriou": 1752088357,
         "Elianeferrier": 1748420221,
         "CharlesCros": 1732751064,
@@ -127367,7 +130148,7 @@
     "ELSAS": {
       "index": 12894,
       "owner_key": "Bwy9B8P8vUQRtjqZ5iEGnbJNVSLtTSEN1G1oAuzw5TjN",
-      "balance": 113304,
+      "balance": 152990,
       "membership_expire_on": 1713706024,
       "next_cert_issuable_on": 1689436661,
       "certs_received": {
@@ -127381,8 +130162,8 @@
     "sigurd": {
       "index": 4168,
       "owner_key": "BwytTs6BAnMSNUzZ3fS68qoGETtx5hYjWzekxusXX6Lx",
-      "balance": 1091209,
-      "membership_expire_on": 1693862802,
+      "balance": 1095481,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1662377411,
       "certs_received": {
         "EricPetit": 1702229309,
@@ -127407,17 +130188,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "HeleneMocquard": 1697345273,
-        "StephBel": 1696543105,
-        "MTNaturelpapillon": 1696207880,
-        "Floalchimistefee": 1696395355,
-        "FernDeFougeres": 1696614639
+        "HeleneMocquard": 1697345273
       }
     },
     "Trayx": {
       "index": 1448,
       "owner_key": "BxH7dDBVBUNiscLFV1vvvwFUKwW856tJx8W8iT6KyG8s",
-      "balance": 254568,
+      "balance": 294254,
       "membership_expire_on": 1704411511,
       "next_cert_issuable_on": 1656221330,
       "certs_received": {
@@ -127434,7 +130211,7 @@
     "Soleildusud": {
       "index": 13069,
       "owner_key": "BxR7Ad5h1Mx7fhkJ2oDuquFSKVJy2xwGvrMCNJTfoCcA",
-      "balance": 63189,
+      "balance": 117875,
       "membership_expire_on": 1719431700,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -127465,7 +130242,7 @@
     "Patricia": {
       "index": 6781,
       "owner_key": "BxZoQ6vUy9CbS8raXkabSXuZGQA4XS2p34M5oEfohTMw",
-      "balance": 234389,
+      "balance": 274075,
       "membership_expire_on": 1700522596,
       "next_cert_issuable_on": 1649940346,
       "certs_received": {
@@ -127498,12 +130275,13 @@
     "lesourcier": {
       "index": 8002,
       "owner_key": "BxZx3oUJwxhvd9JNEgTrKSMEtZJnGrqDiEsNazxN4XLx",
-      "balance": 515664,
+      "balance": 367470,
       "membership_expire_on": 1711844638,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Chantal": 1715275941,
         "Nicolcrew73": 1714953159,
+        "Pizzawallas": 1759463739,
         "Cordia": 1715271531,
         "KaynoK": 1714922646,
         "Mamiejolie": 1715197394
@@ -127512,11 +130290,12 @@
     "MartineBuhrig": {
       "index": 12144,
       "owner_key": "BxdSZw6bY3TCS5ofcSGiaFv4dAHdcVYnkURJamN2X9Rm",
-      "balance": 188676,
+      "balance": 228362,
       "membership_expire_on": 1711409745,
       "next_cert_issuable_on": 1683123900,
       "certs_received": {
         "EUREKA": 1743054145,
+        "FrancisBperso": 1757575699,
         "JanineBoitel": 1742967862,
         "cedre": 1743111176,
         "Angele73": 1745734815,
@@ -127545,7 +130324,7 @@
     "ElodieOpdenacker": {
       "index": 6430,
       "owner_key": "BxgkryFiJK49dFRR7bP616nHjqKgGcLW3ChurUAHaNmG",
-      "balance": 659527,
+      "balance": 699213,
       "membership_expire_on": 1698671397,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -127560,7 +130339,7 @@
     "Pectine": {
       "index": 11452,
       "owner_key": "Bxm4KCbgox9Y3LJXHgGVwfEmKEK56Mj5HVXwmxJs5j9b",
-      "balance": 217798,
+      "balance": 257484,
       "membership_expire_on": 1706055866,
       "next_cert_issuable_on": 1679150940,
       "certs_received": {
@@ -127576,8 +130355,8 @@
     "Schnick": {
       "index": 10366,
       "owner_key": "Bxs9ks8oteatr6sobEkhF99EEWht2vQMP7acAPas629K",
-      "balance": 262025,
-      "membership_expire_on": 1698794008,
+      "balance": 310789,
+      "membership_expire_on": 1726013556,
       "next_cert_issuable_on": 1691920957,
       "certs_received": {
         "LoupBlanc": 1730917648,
@@ -127588,6 +130367,7 @@
         "AurElieSkuld": 1747286980,
         "FabieChou": 1731311218,
         "hazed": 1730920784,
+        "LuciaEstElle": 1759295638,
         "LaBriseglace": 1731376562,
         "BertrandCGO": 1730356633,
         "LudovicMJC": 1741144690
@@ -127596,7 +130376,7 @@
     "NicoleRigoulay": {
       "index": 6900,
       "owner_key": "By57j7r5HNdGvhCAq6AcVeXU9V5wVxLFGbyExqTLfqUe",
-      "balance": 615748,
+      "balance": 655434,
       "membership_expire_on": 1702681498,
       "next_cert_issuable_on": 1647850144,
       "certs_received": {
@@ -127642,7 +130422,7 @@
     "PhilippeMarceau": {
       "index": 6337,
       "owner_key": "BycFjuZSXWEihgvh3tXawmeNEGiXuzYwUHjW2P5zhukw",
-      "balance": 658447,
+      "balance": 698133,
       "membership_expire_on": 1700512517,
       "next_cert_issuable_on": 1679672974,
       "certs_received": {
@@ -127685,9 +130465,9 @@
     "MichelBonnaventure07": {
       "index": 10645,
       "owner_key": "ByjonmWjUwPsBhRPgRqazm1f2d6RgEjAa4pn8ivQfCfb",
-      "balance": 271915,
+      "balance": 311601,
       "membership_expire_on": 1701121816,
-      "next_cert_issuable_on": 1692783049,
+      "next_cert_issuable_on": 1695290713,
       "certs_received": {
         "FrancoiseSTA07": 1755132898,
         "HelloSunshine": 1733166979,
@@ -127703,16 +130483,13 @@
       "balance": 703507,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Crystal": 1693992409,
-        "AnneChaimbault": 1694069475
-      }
+      "certs_received": {}
     },
     "Nini73": {
       "index": 9829,
       "owner_key": "Byz1U4HcqQLngGaD17uCvGnWGd87UDYLY8MG8Zznmu8X",
-      "balance": 347919,
-      "membership_expire_on": 1695750725,
+      "balance": 387605,
+      "membership_expire_on": 1725729250,
       "next_cert_issuable_on": 1686234127,
       "certs_received": {
         "Julylamaya": 1727855871,
@@ -127734,7 +130511,7 @@
     "Anneuh": {
       "index": 117,
       "owner_key": "BzHnbec1Gov7dLSt1EzJS7vikoQCECeuvZs4wamZAcT1",
-      "balance": 2120163,
+      "balance": 2159849,
       "membership_expire_on": 1720787927,
       "next_cert_issuable_on": 1670748745,
       "certs_received": {
@@ -127760,9 +130537,9 @@
     "Jujudu94500": {
       "index": 13099,
       "owner_key": "BzQp4ToQykLwaw3EJuTwPGQMfMuib2jtvAxYikphxDvT",
-      "balance": 152624,
+      "balance": 192310,
       "membership_expire_on": 1719862648,
-      "next_cert_issuable_on": 1689667569,
+      "next_cert_issuable_on": 1696004968,
       "certs_received": {
         "G21": 1751555704,
         "cyberio": 1751531245,
@@ -127774,7 +130551,7 @@
     "DDFox": {
       "index": 9964,
       "owner_key": "BzYducL5W6aRMU65Mcupi6Eb6WPhcu9YSS6H91S6xkHv",
-      "balance": 291788,
+      "balance": 331474,
       "membership_expire_on": 1697405523,
       "next_cert_issuable_on": 1684835131,
       "certs_received": {
@@ -127796,29 +130573,37 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Estherzi": {
+      "index": 13687,
+      "owner_key": "BzoRjAExZ6beiMa6DeW8k2JaFEeuaiDZJEfoNk1sddaw",
+      "balance": 322124,
+      "membership_expire_on": 1727470054,
+      "next_cert_issuable_on": 1696241066,
+      "certs_received": {
+        "carmenchu_almacristal": 1759094710,
+        "Alberto": 1759095342,
+        "GRUKSY": 1759096021,
+        "ALEGRIAUNIVERSAL": 1759101563,
+        "sarava": 1759095564
+      }
+    },
     "AnneD": {
       "index": 5794,
       "owner_key": "BzsypG3YLxGnEDixa6arBgNUZ9ga6UuAadQp56QpAxiQ",
-      "balance": 669365,
-      "membership_expire_on": 1697482951,
+      "balance": 707973,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1682396751,
       "certs_received": {
         "RosyRio": 1748470783,
-        "GastonL": 1695065881,
         "OhdeLali": 1700986201,
         "PhilippeLafontaine": 1717104911,
-        "AmeSurTerre": 1696269814,
-        "CapuChoeur": 1695975445,
-        "AmandineDupret": 1696922865,
-        "ChristineV": 1695065881,
-        "PatHamster": 1695845305,
-        "HAMSTERDAME": 1696618919
+        "AmandineDupret": 1696922865
       }
     },
     "Candy2000": {
       "index": 12054,
       "owner_key": "BzzC2ZPDhRoGCxdVmb4eaGn52BvBzn3W4VaE3ZaZxbgR",
-      "balance": 412172,
+      "balance": 451859,
       "membership_expire_on": 1710781680,
       "next_cert_issuable_on": 1693275369,
       "certs_received": {
@@ -127854,21 +130639,22 @@
     "Enric": {
       "index": 11268,
       "owner_key": "C19zC6QUbgMEctaE4KZa8YZVUjaHyohTHopVwmUJpPqU",
-      "balance": 241542,
+      "balance": 281228,
       "membership_expire_on": 1705020959,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695535022,
       "certs_received": {
         "Nanoo": 1736796563,
         "Cristol-Iquid": 1736579185,
         "MikaYeel": 1736599439,
         "Yanoc": 1736894630,
+        "Agast": 1758592814,
         "PhilCominges": 1737136753
       }
     },
     "gabriella": {
       "index": 9652,
       "owner_key": "C1CZSbuRSVxfnYEsCoTgLj7bu5naGqHjKuVcU9q5fet2",
-      "balance": 347509,
+      "balance": 382196,
       "membership_expire_on": 1718554877,
       "next_cert_issuable_on": 1686306238,
       "certs_received": {
@@ -127893,7 +130679,7 @@
     "ChristelleV84": {
       "index": 7222,
       "owner_key": "C1U2yujAPAB8vAXUUo3KNy5fCVs8YmPPEBdds4oNrzTW",
-      "balance": 653709,
+      "balance": 693395,
       "membership_expire_on": 1705949406,
       "next_cert_issuable_on": 1674466749,
       "certs_received": {
@@ -127927,7 +130713,7 @@
     "Pervenche": {
       "index": 10515,
       "owner_key": "C1i59aRcnJxM4uTPqYt78WsmUBcvLhSw7dvh1Qmpmrn",
-      "balance": 260228,
+      "balance": 299914,
       "membership_expire_on": 1699892893,
       "next_cert_issuable_on": 1681631956,
       "certs_received": {
@@ -127948,7 +130734,6 @@
       "certs_received": {
         "Ivana": 1698438904,
         "guillaumedangin": 1729840845,
-        "Maiaee": 1696612462,
         "Koban06": 1699412130,
         "tektonik": 1722211105
       }
@@ -127967,7 +130752,7 @@
     "Sichuan": {
       "index": 11878,
       "owner_key": "C1pKGdyR4eRygpeDd3T1bhBYBFQ3KjV433hsBjCf8jVL",
-      "balance": 193028,
+      "balance": 232714,
       "membership_expire_on": 1709254325,
       "next_cert_issuable_on": 1687775017,
       "certs_received": {
@@ -127989,7 +130774,7 @@
     "Purcell": {
       "index": 11723,
       "owner_key": "C2GQwj2stqJBJuM2woHg9nBG4Rm6rGYZj22H92g6gLtP",
-      "balance": 190677,
+      "balance": 230363,
       "membership_expire_on": 1708686303,
       "next_cert_issuable_on": 1680858403,
       "certs_received": {
@@ -128012,7 +130797,7 @@
     "Moody": {
       "index": 10978,
       "owner_key": "C2NQVU6hcPzMTkyRyi48vL1TcYC9ZFncmwFyhqnM4S2t",
-      "balance": 267276,
+      "balance": 306962,
       "membership_expire_on": 1698447615,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -128026,7 +130811,7 @@
     "Ffafchamps": {
       "index": 7505,
       "owner_key": "C2PZjeyfKVctGqaH8hGdJhACk2VRpT835Ddc77W5thbt",
-      "balance": 540772,
+      "balance": 580458,
       "membership_expire_on": 1708470829,
       "next_cert_issuable_on": 1678196102,
       "certs_received": {
@@ -128042,8 +130827,8 @@
     "quiquecaballero": {
       "index": 10312,
       "owner_key": "C2SBXwvVCx7aJyoJjx6TnhgwVFUZ2pWKQ5GpqsKVJaeG",
-      "balance": 265145,
-      "membership_expire_on": 1699642874,
+      "balance": 311832,
+      "membership_expire_on": 1727907970,
       "next_cert_issuable_on": 1687529516,
       "certs_received": {
         "Guada": 1731300877,
@@ -128065,7 +130850,7 @@
     "Gaelducausse": {
       "index": 3666,
       "owner_key": "C2Vp3zL6DnFwoL5n7a8VT9cY1vmeEdXBEpW1J7DGFvx4",
-      "balance": 1076674,
+      "balance": 1114860,
       "membership_expire_on": 1724763540,
       "next_cert_issuable_on": 1688796891,
       "certs_received": {
@@ -128073,16 +130858,15 @@
         "FannyL": 1706750372,
         "Happily": 1745002524,
         "MicheleM": 1721085479,
-        "Dom": 1698644905,
+        "Dom": 1756948457,
+        "lydiemdb": 1757702685,
         "ValerieOrvain": 1707858402,
         "Cissou": 1731879699,
         "IsabelleMaigret": 1729927865,
-        "Jcteulier": 1693687599,
         "PierrePierreR": 1730349181,
         "ashka": 1721089313,
         "AliceCtln": 1701726785,
         "Delma": 1738718809,
-        "LNlumi": 1695605427,
         "Chriss": 1739837364,
         "DameCeline12": 1742499813,
         "Ananda46": 1721930278,
@@ -128097,7 +130881,7 @@
     "Mariefrancegb": {
       "index": 12586,
       "owner_key": "C2YyeZEAdoL7kTYkgsczwrYXUqp9AnD4RhwEPG7a7vCt",
-      "balance": 71320,
+      "balance": 61006,
       "membership_expire_on": 1714662426,
       "next_cert_issuable_on": 1692251078,
       "certs_received": {
@@ -128121,7 +130905,7 @@
     "NAthBD": {
       "index": 11787,
       "owner_key": "C2izpFpAgZkaLvPYxSx8YbeSp9Xrjo3dzeMLzcNWcR3y",
-      "balance": 197382,
+      "balance": 237068,
       "membership_expire_on": 1708352534,
       "next_cert_issuable_on": 1684984465,
       "certs_received": {
@@ -128167,14 +130951,16 @@
     "NataSha": {
       "index": 9639,
       "owner_key": "C3As29TWxbNafRe4bVaJsQL2kFrhKcDeQBGqznwvUaQr",
-      "balance": 382387,
+      "balance": 254137,
       "membership_expire_on": 1722729789,
-      "next_cert_issuable_on": 1691898733,
+      "next_cert_issuable_on": 1696148638,
       "certs_received": {
+        "kapis": 1754944134,
         "Man": 1732674068,
         "NancyAlexia": 1727113941,
         "Piet": 1736216149,
         "CedLion": 1731308472,
+        "Tchoupi": 1758648989,
         "MarieL": 1729024644,
         "ChristineRenier": 1732728634,
         "WilTher": 1729550245,
@@ -128191,13 +130977,15 @@
         "Bidouille": 1744043916,
         "Yan_Vilain": 1727319190,
         "Verozen": 1727117645,
-        "JulieD": 1732044185
+        "Mireilleplantessauvages": 1757555341,
+        "JulieD": 1732044185,
+        "fania": 1756844573
       }
     },
     "AntonCB": {
       "index": 8179,
       "owner_key": "C3DtAojCJ3zpZVTSCHfepVP4SBHnPJFKwUJsdnZG3CtQ",
-      "balance": 492950,
+      "balance": 532636,
       "membership_expire_on": 1715285038,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -128227,14 +131015,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1633860926,
       "certs_received": {
-        "Underscore": 1698200335,
-        "AnSoBlackLotus": 1695835996
+        "Underscore": 1698200335
       }
     },
     "Lauryfro": {
       "index": 10397,
       "owner_key": "C3RmwmpvEjXvcmqKh2inZ8gR79PsfnP6xtQxveDsYHPd",
-      "balance": 303100,
+      "balance": 342786,
       "membership_expire_on": 1700185944,
       "next_cert_issuable_on": 1681362493,
       "certs_received": {
@@ -128315,9 +131102,9 @@
     "VivienProuvot": {
       "index": 1016,
       "owner_key": "C3ivNUep9gvKjoheCE8DoeL4LsJjT4W2VXLuBKNFCkGV",
-      "balance": 11992,
+      "balance": 16978,
       "membership_expire_on": 1713391743,
-      "next_cert_issuable_on": 1690258460,
+      "next_cert_issuable_on": 1695480717,
       "certs_received": {
         "Eiutim": 1697874878,
         "SophSav": 1747528545,
@@ -128327,7 +131114,6 @@
         "Hava_bien": 1709420369,
         "fdrubigny": 1742080921,
         "ReservaOriental": 1723303557,
-        "FrancoisW": 1695545282,
         "Corinne-Co": 1725035448,
         "delpocka": 1738483202,
         "MAximeGhesquiere": 1707740928,
@@ -128338,6 +131124,7 @@
         "nirma": 1736233288,
         "Pol": 1718872896,
         "Dum": 1745464508,
+        "JuanLu": 1757641683,
         "mikdos31": 1723259295,
         "Mariarima": 1729751558,
         "DelfeWutao88": 1714333052,
@@ -128350,15 +131137,14 @@
         "tereseta": 1720656340,
         "JuanCarlos": 1735441068,
         "Christophe-C": 1724214968,
-        "TAODS": 1699143511,
-        "Blutch": 1693865827
+        "TAODS": 1699143511
       }
     },
     "Vivere": {
       "index": 8767,
       "owner_key": "C3rPRXko5BGup4ThkqAxt8Qds9CWvNzXSKGxUtQ7takE",
-      "balance": 365312,
-      "membership_expire_on": 1715871977,
+      "balance": 399998,
+      "membership_expire_on": 1727558341,
       "next_cert_issuable_on": 1669472585,
       "certs_received": {
         "xavislow": 1728174818,
@@ -128375,9 +131161,9 @@
     "alex": {
       "index": 4785,
       "owner_key": "C3wg9dqebpq34HmKDx8C26rMHndnB8jFrYuk5zpkv5Sc",
-      "balance": 411093,
+      "balance": 400779,
       "membership_expire_on": 1708373480,
-      "next_cert_issuable_on": 1679808948,
+      "next_cert_issuable_on": 1694436431,
       "certs_received": {
         "LazareT": 1738809172,
         "Rachel": 1742354634,
@@ -128395,7 +131181,7 @@
     "Fofie": {
       "index": 12279,
       "owner_key": "C3xF4JMgadBoDW34DDqfMvteSb6Ua6E34iEknYSSJuma",
-      "balance": 153860,
+      "balance": 193546,
       "membership_expire_on": 1711890868,
       "next_cert_issuable_on": 1681913726,
       "certs_received": {
@@ -128423,7 +131209,7 @@
     "Pekos": {
       "index": 10559,
       "owner_key": "C41e9VTYUc5XoaAb1wSuhayd9LmwF7jKi8M2ZMvrbkFD",
-      "balance": 191810,
+      "balance": 231496,
       "membership_expire_on": 1697506614,
       "next_cert_issuable_on": 1683470752,
       "certs_received": {
@@ -128439,7 +131225,7 @@
     "Booteille": {
       "index": 2383,
       "owner_key": "C4D3ykicaK5YDs9yTGEURnihCRfVxa36BAhRe2MEG8yq",
-      "balance": 1060711,
+      "balance": 1100397,
       "membership_expire_on": 1719854574,
       "next_cert_issuable_on": 1683434442,
       "certs_received": {
@@ -128460,15 +131246,16 @@
     "manidou": {
       "index": 823,
       "owner_key": "C4E9GPYCogcow5B4txK5rcDCqS1ZRNXQXtRMbg1FrW4P",
-      "balance": 175344,
+      "balance": 215030,
       "membership_expire_on": 1711971152,
       "next_cert_issuable_on": 1686655433,
       "certs_received": {
         "Lunaloca": 1731703563,
+        "venusienne": 1756911189,
         "Vivakvo": 1703566914,
         "Cyrius666": 1717387977,
         "Kaya971Wolf": 1724973800,
-        "CatherineMaire": 1696970921,
+        "CatherineMaire": 1758420415,
         "Annastro81": 1750167175
       }
     },
@@ -128490,7 +131277,7 @@
     "MaiCha81": {
       "index": 13467,
       "owner_key": "C4Yfc3GNBQ1rtXr3srfiAyZpgNYxnVdTeTVC4VD7Ziwq",
-      "balance": 9340,
+      "balance": 69226,
       "membership_expire_on": 1723137174,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -128512,7 +131299,7 @@
     "Enkar": {
       "index": 12810,
       "owner_key": "C4toysKKjN7isftoNZprxwPyvj9TR8vANf7z4b7TDKYS",
-      "balance": 259484,
+      "balance": 297370,
       "membership_expire_on": 1717503762,
       "next_cert_issuable_on": 1688929885,
       "certs_received": {
@@ -128526,8 +131313,8 @@
     "Leon": {
       "index": 346,
       "owner_key": "C4vfyG8xEwCWKPUzR8psMU7rPZGrKwYsKL7oAVLvNPPD",
-      "balance": 1905815,
-      "membership_expire_on": 1696496890,
+      "balance": 1942267,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689302327,
       "certs_received": {
         "SophSav": 1728596833,
@@ -128548,7 +131335,7 @@
     "Chantallef72": {
       "index": 6105,
       "owner_key": "C59zVEEeJVEyTsdtuPvmwedTKoxUiJg1KxN7pP8jMh2N",
-      "balance": 667023,
+      "balance": 706709,
       "membership_expire_on": 1697033386,
       "next_cert_issuable_on": 1687520894,
       "certs_received": {
@@ -128568,7 +131355,7 @@
     "SyLou": {
       "index": 11692,
       "owner_key": "C5C1jyAvFPfJarKxSGtQGuTym1jHPKVp1nqLCQvoFGGq",
-      "balance": 173795,
+      "balance": 213481,
       "membership_expire_on": 1708226152,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -128584,7 +131371,7 @@
     "Scipikari": {
       "index": 7007,
       "owner_key": "C5HyXNciqRr8FepsdfaGuy7gTwPMP6NMeTWpwkRu9MQh",
-      "balance": 100463,
+      "balance": 90149,
       "membership_expire_on": 1707531082,
       "next_cert_issuable_on": 1688985888,
       "certs_received": {
@@ -128602,9 +131389,9 @@
     "Audr3y": {
       "index": 9492,
       "owner_key": "C5LLPUKW2UnCsAw7cM2CiMSEteffePRFENMa2wT2t1Qb",
-      "balance": 469289,
-      "membership_expire_on": 1693848713,
-      "next_cert_issuable_on": 1670629133,
+      "balance": 504703,
+      "membership_expire_on": 1725736483,
+      "next_cert_issuable_on": 1694252080,
       "certs_received": {
         "Gabriel51": 1725406313,
         "Martine51": 1725954183,
@@ -128625,8 +131412,8 @@
     "berangere": {
       "index": 6030,
       "owner_key": "C5Mjh4EPVYGCLMWd5dfBvHsA6TkL22WvjoKR2ZVEz2q9",
-      "balance": 960635,
-      "membership_expire_on": 1694771567,
+      "balance": 994981,
+      "membership_expire_on": 1726749218,
       "next_cert_issuable_on": 1666663066,
       "certs_received": {
         "Niamor": 1699120242,
@@ -128663,7 +131450,7 @@
     "bgteproux": {
       "index": 12517,
       "owner_key": "C5RbFsXwYqJK46aCmFRkmU7xA6mruCAA8rFK99bvHBye",
-      "balance": 129528,
+      "balance": 170054,
       "membership_expire_on": 1714500642,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -128695,12 +131482,13 @@
     "Wendy1964": {
       "index": 6961,
       "owner_key": "C5XAqQbErC8tpbPvKogkjvN1ooEgsCRWy8t5YLuDJJKR",
-      "balance": 479278,
+      "balance": 518964,
       "membership_expire_on": 1716836548,
-      "next_cert_issuable_on": 1645934124,
+      "next_cert_issuable_on": 1695434932,
       "certs_received": {
         "angelight": 1707370817,
         "Julieb": 1707929159,
+        "RikdeVaison": 1758476512,
         "Bettylisameli": 1707363424,
         "MAIMEE": 1707994792,
         "MoniqueBlein": 1707291039,
@@ -128710,8 +131498,8 @@
     "AnaisTerraFlor": {
       "index": 1769,
       "owner_key": "C5f8PLEKC4A8srYqQ1mJf49AsXyf5NyHtvjtBnWRo8E4",
-      "balance": 1858163,
-      "membership_expire_on": 1695769749,
+      "balance": 1885991,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689906079,
       "certs_received": {
         "ChristianSteCroix": 1719347716,
@@ -128728,14 +131516,14 @@
         "ftech": 1699337296,
         "mathilde": 1705603787,
         "nitnelav": 1719253534,
-        "ofontes": 1699319778,
+        "ofontes": 1755549614,
         "bert": 1699319472
       }
     },
     "ManuVille": {
       "index": 10931,
       "owner_key": "C5fXFcygvYvs8wEdZv6kUy7DdxBCHXWsztUzJhNv7wJg",
-      "balance": 308453,
+      "balance": 348139,
       "membership_expire_on": 1698092752,
       "next_cert_issuable_on": 1677411257,
       "certs_received": {
@@ -128784,8 +131572,8 @@
     "Grekos": {
       "index": 9666,
       "owner_key": "C5uY5LsZ2Jj3yUNrdYZsiETvnVi9ZbF8LZGiraA93ML",
-      "balance": 378527,
-      "membership_expire_on": 1695340930,
+      "balance": 400965,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1664290535,
       "certs_received": {
         "Ashawik": 1728064529,
@@ -128799,7 +131587,7 @@
     "Chantegrive": {
       "index": 5419,
       "owner_key": "C5w5E1MTYMrp8wu8PYy5NSMAfX3DLfzYtvdt9pUSniHr",
-      "balance": 578581,
+      "balance": 618267,
       "membership_expire_on": 1715445643,
       "next_cert_issuable_on": 1660202416,
       "certs_received": {
@@ -128814,7 +131602,7 @@
     "Inconscience": {
       "index": 8564,
       "owner_key": "C6DZmJZkZccZmTq59ek685diTp8EhRcFQevBkSnH91mP",
-      "balance": 449721,
+      "balance": 489407,
       "membership_expire_on": 1718718902,
       "next_cert_issuable_on": 1661247246,
       "certs_received": {
@@ -128831,10 +131619,11 @@
     "AudreyArtyzen": {
       "index": 13359,
       "owner_key": "C6JKVH1tsRtnRsuZkwXEDF2aFQNKPasnLJN2z74xH7dX",
-      "balance": 82692,
+      "balance": 199378,
       "membership_expire_on": 1723170929,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695995482,
       "certs_received": {
+        "Gregory": 1757320549,
         "Bastien-29": 1754970448,
         "Minako_Komatsu": 1754930032,
         "AmauryBidel": 1754773072,
@@ -128853,9 +131642,9 @@
     "Michellecuyer26": {
       "index": 3405,
       "owner_key": "C6Yz5vgyZ5KHxqRPy4zoAVqK4SNTvqq6DURTBqG2UesD",
-      "balance": 2072293,
+      "balance": 2093179,
       "membership_expire_on": 1722791936,
-      "next_cert_issuable_on": 1692610388,
+      "next_cert_issuable_on": 1694924821,
       "certs_received": {
         "Niranjana": 1752631857,
         "NicolasL": 1710272926,
@@ -128867,6 +131656,7 @@
         "FredRichard07": 1707886445,
         "TristanG1": 1713297209,
         "Mesamours84": 1751329130,
+        "gaellemarcherat": 1758050581,
         "Coucoudidier": 1724947128,
         "ChristopheRobine": 1719646096,
         "Miaou": 1745876457,
@@ -128874,16 +131664,17 @@
         "Calou26": 1751329735,
         "chronophonix": 1719179839,
         "martine26": 1733496703,
-        "MoniqueChaplie": 1695929352,
+        "caroline26220": 1757966495,
+        "MoniqueChaplie": 1758084065,
         "OLDBLACK84": 1725841108
       }
     },
     "Elbabecoba": {
       "index": 11754,
       "owner_key": "C6aaoPTSmKF2vR6uv5FV1FaoT4qPU1vyZhW1oSxBVGZq",
-      "balance": 201500,
+      "balance": 241186,
       "membership_expire_on": 1708729615,
-      "next_cert_issuable_on": 1690634835,
+      "next_cert_issuable_on": 1695442125,
       "certs_received": {
         "Hernest": 1749452808,
         "Ananas21": 1740287777,
@@ -128897,7 +131688,7 @@
     "Herve07": {
       "index": 7063,
       "owner_key": "C6euKoWREcitAVDpeFmYzdTr4F2m88Ve1mTdu3Pdds4x",
-      "balance": 361024,
+      "balance": 400710,
       "membership_expire_on": 1723828656,
       "next_cert_issuable_on": 1657085217,
       "certs_received": {
@@ -128925,7 +131716,7 @@
     "MIEUSETb": {
       "index": 7854,
       "owner_key": "C6fcXptWBy1iy3DD2AZiUnktwZkCkgHiCuRaur2vfgN4",
-      "balance": 520179,
+      "balance": 585737,
       "membership_expire_on": 1710164543,
       "next_cert_issuable_on": 1667732377,
       "certs_received": {
@@ -128946,20 +131737,37 @@
         "Gentcat": 1730749345
       }
     },
+    "Erwina000": {
+      "index": 13753,
+      "owner_key": "C6kvKjTCbB9iYgqEvqBudVs1naWarjvvh3TKQjJFXfGj",
+      "balance": 184078,
+      "membership_expire_on": 1727486389,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Chus": 1759726588,
+        "Feltai": 1759647140,
+        "Dixebral": 1759635177,
+        "Thito": 1759767056,
+        "Didy": 1759574789,
+        "Marianfs": 1759795520
+      }
+    },
     "Felicia": {
       "index": 12099,
       "owner_key": "C6t5BzuPtwcEQpiaAqVSRfFCfnG6uoMuajCHjBBzi3ud",
-      "balance": 5695,
+      "balance": 45383,
       "membership_expire_on": 1710887587,
-      "next_cert_issuable_on": 1692064312,
+      "next_cert_issuable_on": 1695292331,
       "certs_received": {
         "SoniaMallorca": 1742715152,
         "majo": 1742445902,
         "ClaudiaR": 1754004912,
+        "Miguela": 1756793713,
         "Thor": 1745503511,
         "Albi": 1742449319,
         "Apurajarras": 1742459201,
         "YOSOYLUZ": 1742711565,
+        "Sigrid61": 1757704175,
         "Gitty": 1748100929,
         "Sabi": 1742448896,
         "Ralf": 1745530629,
@@ -128969,9 +131777,9 @@
     "CatherineCPo": {
       "index": 7152,
       "owner_key": "C6u7oWQraPtEVuid1SHNQQAmgLfGkBJi2SVYFceLdEGo",
-      "balance": 203610,
+      "balance": 202552,
       "membership_expire_on": 1703193073,
-      "next_cert_issuable_on": 1690534832,
+      "next_cert_issuable_on": 1696653786,
       "certs_received": {
         "fdrubigny": 1709175442,
         "CRey": 1709252680,
@@ -129011,7 +131819,7 @@
     "Orion1980": {
       "index": 6565,
       "owner_key": "C6y2JPc9fh4hstU9nkxEP2SkcTQPuB2GFH8bVMSTqxAY",
-      "balance": 646313,
+      "balance": 685999,
       "membership_expire_on": 1704397807,
       "next_cert_issuable_on": 1688998586,
       "certs_received": {
@@ -129027,9 +131835,9 @@
     "Meubleu": {
       "index": 11193,
       "owner_key": "C6zpeHf8D8ZzrmwbYJL97iNn2MRsCFPeoquwaUTv1R9X",
-      "balance": 434455,
+      "balance": 377141,
       "membership_expire_on": 1704986318,
-      "next_cert_issuable_on": 1691401945,
+      "next_cert_issuable_on": 1694779686,
       "certs_received": {
         "reididflorent": 1736575947,
         "Silvi": 1741236064,
@@ -129049,7 +131857,7 @@
     "Nine_70": {
       "index": 10799,
       "owner_key": "C74h1oAX26oZEEpz23QK2XiUFRp4rtpFXJsgeqYiwD7k",
-      "balance": 283217,
+      "balance": 322903,
       "membership_expire_on": 1700851403,
       "next_cert_issuable_on": 1687691827,
       "certs_received": {
@@ -129073,8 +131881,8 @@
     "RoberQuim": {
       "index": 10094,
       "owner_key": "C7AaYr7Fv73jYAiyCAf2WLjESDFCdrcUSF1KHfDJU1Xj",
-      "balance": 438667,
-      "membership_expire_on": 1698327445,
+      "balance": 478353,
+      "membership_expire_on": 1726964398,
       "next_cert_issuable_on": 1690957881,
       "certs_received": {
         "Vichara": 1729906724,
@@ -129108,7 +131916,7 @@
     "Atout": {
       "index": 7226,
       "owner_key": "C7DNLfYCHnCTFoLyPpCtF3K7BPUdFV7kxPood69eXm8J",
-      "balance": 1992850,
+      "balance": 2289536,
       "membership_expire_on": 1706538167,
       "next_cert_issuable_on": 1689758001,
       "certs_received": {
@@ -129139,8 +131947,8 @@
     "MartaGhironi1": {
       "index": 6722,
       "owner_key": "C7EDmJkkVN2rsSbcsCkvfMQ1SzNuaBPu1KEavqedVify",
-      "balance": 530599,
-      "membership_expire_on": 1696269930,
+      "balance": 564897,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1686305597,
       "certs_received": {
         "Frabolando": 1708853751,
@@ -129164,7 +131972,7 @@
     "oliver2410june": {
       "index": 9229,
       "owner_key": "C7WKEDTDqDYa7o3GipULNAmoWXGTAHEU78RCVcXnM6JE",
-      "balance": 222564,
+      "balance": 262250,
       "membership_expire_on": 1718219906,
       "next_cert_issuable_on": 1684835131,
       "certs_received": {
@@ -129182,16 +131990,16 @@
     "JeandMeryMAYOPARRA": {
       "index": 4286,
       "owner_key": "C7b6UiPcmCWqCY4AnVgkXGrvvjmQTUz7oyiQDTey5WVv",
-      "balance": 1023054,
-      "membership_expire_on": 1697511334,
+      "balance": 1062740,
+      "membership_expire_on": 1727258930,
       "next_cert_issuable_on": 1671506689,
       "certs_received": {
         "AlainLebrun": 1697842635,
-        "TheodoreMACRAIGNE": 1697154672,
+        "TheodoreMACRAIGNE": 1758817263,
         "BertrandBigot": 1745263624,
         "Lydiabloch": 1731141770,
-        "EmileMACRAIGNE": 1697154333,
-        "SteveMacraigne": 1697155690,
+        "EmileMACRAIGNE": 1758816889,
+        "SteveMacraigne": 1758818414,
         "jeanpaulgazeau": 1738620959
       }
     },
@@ -129226,7 +132034,7 @@
     "YohanH": {
       "index": 10136,
       "owner_key": "C7mn88k5SGT6PGxGHJwvBprB5GUVqhW7MzDZT3s46ST5",
-      "balance": 441462,
+      "balance": 529148,
       "membership_expire_on": 1697715123,
       "next_cert_issuable_on": 1681606851,
       "certs_received": {
@@ -129244,13 +132052,14 @@
     "NathS": {
       "index": 8022,
       "owner_key": "C7o7GgLfhUmBnrU8NRxqBS3QAtZojM5Ytm81STLcsRLe",
-      "balance": 451244,
+      "balance": 478114,
       "membership_expire_on": 1715298807,
-      "next_cert_issuable_on": 1692706044,
+      "next_cert_issuable_on": 1693833882,
       "certs_received": {
         "Re-belle": 1715212519,
         "JeromeGolliet": 1716570604,
         "Ninamaste": 1729516733,
+        "Marieta": 1757785979,
         "EtK": 1715219006,
         "AliceMaurette": 1715214640,
         "Didilou": 1715201555,
@@ -129276,7 +132085,7 @@
     "Marfoud": {
       "index": 10428,
       "owner_key": "C7uGNmfvEBmppvqYFAdKaJxv1uKn7az75sCZqdy7FFxr",
-      "balance": 303282,
+      "balance": 342968,
       "membership_expire_on": 1699998473,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -129298,15 +132107,16 @@
     "Rserge": {
       "index": 10181,
       "owner_key": "C83ND2ZLnDwM3JBrfpiRQZb4D4R7uT5N9FesN5PF7QMD",
-      "balance": 313426,
-      "membership_expire_on": 1698190498,
-      "next_cert_issuable_on": 1693200181,
+      "balance": 358612,
+      "membership_expire_on": 1727565344,
+      "next_cert_issuable_on": 1696079744,
       "certs_received": {
         "PhilAngel": 1730611687,
         "FabienneM": 1730222447,
         "AlphaCentauri": 1730612611,
         "JoelleGllrd": 1730580300,
         "marcplan": 1730600453,
+        "DamienBesac": 1756704478,
         "Mazurka": 1749500811,
         "Ceciletricoteuse": 1730526931
       }
@@ -129314,7 +132124,7 @@
     "ylan": {
       "index": 12164,
       "owner_key": "C8C9qrA7dEUdY6H4KMpLpZuDisuxCzshopUcVj8HQ34y",
-      "balance": 168438,
+      "balance": 208124,
       "membership_expire_on": 1709398929,
       "next_cert_issuable_on": 1685194236,
       "certs_received": {
@@ -129330,7 +132140,7 @@
     "gwladys": {
       "index": 5433,
       "owner_key": "C8GF2pZvAChgBGUwnPjZU4x3HzHP9Zf6jjSEZFWamVUy",
-      "balance": 431701,
+      "balance": 471387,
       "membership_expire_on": 1720697661,
       "next_cert_issuable_on": 1657185626,
       "certs_received": {
@@ -129356,8 +132166,8 @@
     "Lileta": {
       "index": 9405,
       "owner_key": "C8Lqs6mNKu7nkucuAtJS7fispTo94FaNqhiqe8a39Y8F",
-      "balance": 322697,
-      "membership_expire_on": 1693774673,
+      "balance": 325901,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Tassya341": 1725301672,
@@ -129386,8 +132196,8 @@
     "Sergeau": {
       "index": 5862,
       "owner_key": "C8SfVUkXLrLYUtJN6TTNjCEamDVEXrErPpJYtG3HMn26",
-      "balance": 661989,
-      "membership_expire_on": 1696646924,
+      "balance": 681675,
+      "membership_expire_on": 1725740804,
       "next_cert_issuable_on": 1679911079,
       "certs_received": {
         "Foxy": 1697315890,
@@ -129407,29 +132217,24 @@
     "Esme34": {
       "index": 5644,
       "owner_key": "C8dDLo31vZbduoGDSHHR8vasQ9mw7NpBDRbCD7v4ozDQ",
-      "balance": 224996,
+      "balance": 264682,
       "membership_expire_on": 1701188311,
       "next_cert_issuable_on": 1678210352,
       "certs_received": {
-        "absalon2": 1694043987,
         "JMF": 1750954242,
-        "CatherineMontpellier": 1694043584,
-        "ChloeElfe": 1695173523,
         "BricePedrono": 1697913635,
         "Yoham24": 1750192114,
         "Agatheyu": 1740104626,
-        "Liloudallass": 1694234129,
         "Bricalie": 1744269654,
         "Mag": 1734634947,
         "Dalyas": 1740161232,
-        "cfeltz": 1694136842,
         "Sandy": 1755390270
       }
     },
     "Sylbok": {
       "index": 2011,
       "owner_key": "C8kyE9SGFtcpib4E7pRPbhPyDmgJNsPSEtpZTyGREWzG",
-      "balance": 1533361,
+      "balance": 1573047,
       "membership_expire_on": 1703001211,
       "next_cert_issuable_on": 1672004257,
       "certs_received": {
@@ -129445,7 +132250,7 @@
     "riv": {
       "index": 11758,
       "owner_key": "C8vAb4kgEuoxTBuMEpdxVzbtJxJzibwmzMe6XC2VWV8T",
-      "balance": 246278,
+      "balance": 285964,
       "membership_expire_on": 1708103189,
       "next_cert_issuable_on": 1685433402,
       "certs_received": {
@@ -129461,9 +132266,9 @@
     "killerkawasaki": {
       "index": 6391,
       "owner_key": "C93Py89tDt1bLNYLJ3yhTA5KyixDdVTmDeE621y2uqme",
-      "balance": 468467,
+      "balance": 498453,
       "membership_expire_on": 1721396739,
-      "next_cert_issuable_on": 1680849245,
+      "next_cert_issuable_on": 1695898537,
       "certs_received": {
         "JeromeCastel": 1702065659,
         "THORGAL1968": 1732651224,
@@ -129480,7 +132285,7 @@
     "Gujo": {
       "index": 13232,
       "owner_key": "C967yYicbkzq6BXGxoZkgPQjQHpjodYbPrBfgqGfW37e",
-      "balance": 33952,
+      "balance": 118638,
       "membership_expire_on": 1720415485,
       "next_cert_issuable_on": 1692090829,
       "certs_received": {
@@ -129497,9 +132302,9 @@
     "Aliyoyo": {
       "index": 12900,
       "owner_key": "C9BRKCTtrHz5ZG5bCX1Mbxo968eDiNbVeV28UZZ7fYho",
-      "balance": 80736,
+      "balance": 111822,
       "membership_expire_on": 1718316214,
-      "next_cert_issuable_on": 1693473760,
+      "next_cert_issuable_on": 1694341900,
       "certs_received": {
         "JanineBoitel": 1749873305,
         "Angele73": 1749971476,
@@ -129511,7 +132316,7 @@
     "Eleo94": {
       "index": 12094,
       "owner_key": "C9BdJKJjXPvzGxXYV8VaXd6HEP1Ys3n8FUWqtSCE59S7",
-      "balance": 171948,
+      "balance": 211634,
       "membership_expire_on": 1707873400,
       "next_cert_issuable_on": 1688696213,
       "certs_received": {
@@ -129525,12 +132330,13 @@
     "LolaS": {
       "index": 6234,
       "owner_key": "C9DM3QQzbNKRPhb72h6BVPGkJ8PM8mKohxJ8LxWohYXE",
-      "balance": 680767,
-      "membership_expire_on": 1696107451,
-      "next_cert_issuable_on": 1664622212,
+      "balance": 720453,
+      "membership_expire_on": 1726861011,
+      "next_cert_issuable_on": 1696171479,
       "certs_received": {
         "nashira": 1700498833,
         "weyando": 1702962740,
+        "FrancoisSchlesser": 1759125137,
         "Stevia30120": 1700291109,
         "PatriciaGirard": 1700288655,
         "loup12": 1700212697,
@@ -129550,7 +132356,7 @@
     "Voyageur32": {
       "index": 9134,
       "owner_key": "C9EBo7JpZZDNfrLP6iJWF6w1ogaeQvPhEF7wP9MAFuwT",
-      "balance": 452032,
+      "balance": 491718,
       "membership_expire_on": 1719233941,
       "next_cert_issuable_on": 1687759620,
       "certs_received": {
@@ -129569,7 +132375,7 @@
     "RIALLANDSANDRINE": {
       "index": 6968,
       "owner_key": "C9Kgcnhx9ViZNKwz4EwWedzthrb3KKpY6VhPhX5Un7v5",
-      "balance": 656430,
+      "balance": 696116,
       "membership_expire_on": 1708812723,
       "next_cert_issuable_on": 1647434698,
       "certs_received": {
@@ -129596,9 +132402,9 @@
     "jipihem": {
       "index": 10439,
       "owner_key": "C9RgiJ5yxmHQZFADyGnQ8eFH4kXENQa8BbwKB7ggudXR",
-      "balance": 309282,
+      "balance": 348968,
       "membership_expire_on": 1699919823,
-      "next_cert_issuable_on": 1690032666,
+      "next_cert_issuable_on": 1693368073,
       "certs_received": {
         "marcile": 1750838134,
         "MicheleVanLil": 1738710118,
@@ -129625,23 +132431,25 @@
     "Teka": {
       "index": 12316,
       "owner_key": "C9ZdFLk8TohnEyPjsb6fQEXevfRhziMtyHRrK9Z7z3uB",
-      "balance": 518740,
+      "balance": 496626,
       "membership_expire_on": 1711229625,
-      "next_cert_issuable_on": 1692524124,
+      "next_cert_issuable_on": 1694008817,
       "certs_received": {
+        "Meg": 1755647554,
         "Rousdeg": 1744346695,
         "Oceano": 1744309145,
         "Jokin": 1744384078,
         "SeedFamily": 1744389351,
         "nuevahumanidad": 1744340566,
         "Libertad": 1744311448,
-        "PatriciaSalud": 1744394353
+        "PatriciaSalud": 1744394353,
+        "lachispis": 1756891195
       }
     },
     "Evelpidesa": {
       "index": 9841,
       "owner_key": "C9hHG6ftExSnySrXZWuzKjojTqCdbtBqYR4o5Msv2saD",
-      "balance": 321160,
+      "balance": 356346,
       "membership_expire_on": 1722858306,
       "next_cert_issuable_on": 1690281055,
       "certs_received": {
@@ -129658,7 +132466,7 @@
     "Eduardo451": {
       "index": 11622,
       "owner_key": "C9jha2a3x7Rro9awqhLrUuRXYXbx9WSUEfPz7GCRBbeY",
-      "balance": 19408,
+      "balance": 15974,
       "membership_expire_on": 1707944553,
       "next_cert_issuable_on": 1691812730,
       "certs_received": {
@@ -129676,7 +132484,7 @@
     "Lindien": {
       "index": 10044,
       "owner_key": "C9pgMcJbWjkHBa2GVrSB6aB9Fak2RMHSeZ1VWLdg4YLY",
-      "balance": 363465,
+      "balance": 403151,
       "membership_expire_on": 1721088141,
       "next_cert_issuable_on": 1689602541,
       "certs_received": {
@@ -129693,7 +132501,7 @@
     "Munillerro": {
       "index": 10507,
       "owner_key": "C9r3ZQSXPoVwzi9yqENKHxY3dRHu34TKYqxJB6FpQ6nZ",
-      "balance": 415587,
+      "balance": 487273,
       "membership_expire_on": 1700411775,
       "next_cert_issuable_on": 1688969634,
       "certs_received": {
@@ -129718,8 +132526,8 @@
     "Vijitatman": {
       "index": 10391,
       "owner_key": "C9s93vaRUfEQ8s7onVBSrRYquMRHjoz2UxN9pbdKW9AF",
-      "balance": 268376,
-      "membership_expire_on": 1698969562,
+      "balance": 308062,
+      "membership_expire_on": 1727280986,
       "next_cert_issuable_on": 1677751908,
       "certs_received": {
         "Justis": 1732129377,
@@ -129730,6 +132538,7 @@
         "Oceano": 1731714642,
         "YEROKI": 1731092328,
         "Amaletta": 1733876988,
+        "Roberto_Oraa_79_DDYG": 1757840225,
         "CLARANO": 1734222151,
         "Oscarsakura": 1744948309,
         "Noxtan": 1731713008,
@@ -129740,7 +132549,7 @@
     "claudius": {
       "index": 10653,
       "owner_key": "C9wc5L7jG4Sr8M43N8MVeDYSrnz9zgPqwpb7gAVysnDR",
-      "balance": 288456,
+      "balance": 328142,
       "membership_expire_on": 1697581102,
       "next_cert_issuable_on": 1677078221,
       "certs_received": {
@@ -129754,7 +132563,7 @@
     "EMMANUEL": {
       "index": 12142,
       "owner_key": "CA2T3ShTd3UpBcECTkhEGtc7v2Wtdw572eFTGmUxSHaG",
-      "balance": 177676,
+      "balance": 217362,
       "membership_expire_on": 1711275838,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -129768,7 +132577,7 @@
     "OREA19": {
       "index": 12910,
       "owner_key": "CA7syyNacm6oWMekYhWNZywJwxvpWX7KXcNav2Wh6gKD",
-      "balance": 76668,
+      "balance": 116354,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1687242377,
       "certs_received": {
@@ -129784,7 +132593,7 @@
     "ALEMIN": {
       "index": 9114,
       "owner_key": "CAKu9DKM7ZbMPzPuskPY6wpxovxFt21usK35YG63KZU7",
-      "balance": 417727,
+      "balance": 457413,
       "membership_expire_on": 1701122973,
       "next_cert_issuable_on": 1669638897,
       "certs_received": {
@@ -129798,26 +132607,29 @@
     "Jujupapa": {
       "index": 7424,
       "owner_key": "CAM5wrdTK9LX5rTbH9aoCJn8nZDXeYHJfjcBdh77swKQ",
-      "balance": 478408,
+      "balance": 506594,
       "membership_expire_on": 1708132885,
-      "next_cert_issuable_on": 1674546369,
+      "next_cert_issuable_on": 1694256730,
       "certs_received": {
         "Patidoux": 1739584587,
+        "FabiH": 1756853720,
         "CapuChoeur": 1710582574,
         "AmandineDupret": 1710993750,
         "fanfan": 1756150222,
+        "Meubleu": 1757822886,
         "Pierrotesla": 1710653433,
         "TailleDouce": 1710651329,
         "Rezette": 1710614947,
-        "SabineKern": 1756418367
+        "SabineKern": 1756418367,
+        "VeronicaDe": 1757364092
       }
     },
     "Tiziano": {
       "index": 9487,
       "owner_key": "CAaHiwXDWJ8ryj1bfqo6mwqChr8hJikyjMjHojSjAMZa",
-      "balance": 376289,
+      "balance": 415975,
       "membership_expire_on": 1723242850,
-      "next_cert_issuable_on": 1677749542,
+      "next_cert_issuable_on": 1696712348,
       "certs_received": {
         "kuluk": 1725827908,
         "LaurentNeuville": 1726010656,
@@ -129832,7 +132644,7 @@
     "Kan13ahau": {
       "index": 6233,
       "owner_key": "CAjXNo9PVj6ndoNQBGDw5bJgTB4ki6PKucCf8KcFV2NA",
-      "balance": 350167,
+      "balance": 389853,
       "membership_expire_on": 1722638772,
       "next_cert_issuable_on": 1680347963,
       "certs_received": {
@@ -129854,7 +132666,7 @@
     "CMJ34": {
       "index": 3773,
       "owner_key": "CAnQDiJ6LXUnar5d144dPamUs4jGMkXKhTqeZqjhZBHk",
-      "balance": 783363,
+      "balance": 789049,
       "membership_expire_on": 1715191525,
       "next_cert_issuable_on": 1685060365,
       "certs_received": {
@@ -129890,22 +132702,23 @@
     "Sigrid61": {
       "index": 13365,
       "owner_key": "CAtLXNXUqeAVVahLNkUaHKJCKCG2Ww4QvYVDv7aoq6xc",
-      "balance": 68860,
+      "balance": 102400,
       "membership_expire_on": 1719301079,
-      "next_cert_issuable_on": 1693553139,
+      "next_cert_issuable_on": 1696326525,
       "certs_received": {
         "majo": 1754843572,
         "Miguela": 1755034114,
         "Thor": 1750858679,
         "Felicia": 1755107512,
         "danielali": 1755052163,
-        "Ralf": 1755034114
+        "Ralf": 1755034114,
+        "SoniaElena": 1759371943
       }
     },
     "JCMOGM": {
       "index": 7942,
       "owner_key": "CAtXFeRneRCJfWNdTjypGuogSNSJHqW5yXcL6rqPasVP",
-      "balance": 311930,
+      "balance": 351616,
       "membership_expire_on": 1719138048,
       "next_cert_issuable_on": 1670749896,
       "certs_received": {
@@ -129919,10 +132732,27 @@
         "Vertsauvage": 1736402720
       }
     },
+    "Theobar": {
+      "index": 13544,
+      "owner_key": "CAyaxSjhTXcCYhCwJWmDwCXnRZdrbwTRJx1BdJ6URYXc",
+      "balance": 32007,
+      "membership_expire_on": 1723589614,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "GybelsJosee": 1755376251,
+        "Julienbar": 1755452198,
+        "ASHNUBAN": 1755462349,
+        "Audeko": 1755450568,
+        "Parissse": 1757401230,
+        "Francinedefossa": 1757383943,
+        "Hugwilder": 1755354194,
+        "Matedi23": 1757452648
+      }
+    },
     "Kira": {
       "index": 12083,
       "owner_key": "CB7FvRWuuP2hFxGg4zJsZbqSkDbutBuZrpQzt5pFnvCW",
-      "balance": 194816,
+      "balance": 220613,
       "membership_expire_on": 1710874696,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -129936,7 +132766,7 @@
     "FilouLibre59": {
       "index": 1909,
       "owner_key": "CB9T7831y9NFQ2pwdueso7N9LYFsEqhKqwe2NKb7qHVj",
-      "balance": 249696,
+      "balance": 265666,
       "membership_expire_on": 1719025351,
       "next_cert_issuable_on": 1687540053,
       "certs_received": {
@@ -129962,7 +132792,7 @@
     "Moi": {
       "index": 3296,
       "owner_key": "CBBLB16r4HqxG3jvA7gAubEvtisW96YkcVXqkrZn3AsK",
-      "balance": 357579,
+      "balance": 397265,
       "membership_expire_on": 1724503680,
       "next_cert_issuable_on": 1670834177,
       "certs_received": {
@@ -129976,8 +132806,8 @@
     "SAIGA": {
       "index": 10080,
       "owner_key": "CBDsHBjoo6kBXD9N7L2c2EHWNACVmS51P872EAbYAtG5",
-      "balance": 323757,
-      "membership_expire_on": 1697403219,
+      "balance": 359743,
+      "membership_expire_on": 1727269343,
       "next_cert_issuable_on": 1671846894,
       "certs_received": {
         "DETTE": 1729474558,
@@ -129993,8 +132823,8 @@
     "hildeke": {
       "index": 6164,
       "owner_key": "CBEjTtzHcze4bUFQM8om1HqpvcJPrm99xvNkBzsC4tbV",
-      "balance": 1063491,
-      "membership_expire_on": 1694205160,
+      "balance": 1072035,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678339905,
       "certs_received": {
         "mluque71": 1699438031,
@@ -130008,7 +132838,7 @@
     "FrancoiseH": {
       "index": 6688,
       "owner_key": "CBMr8ZRyC2LF4Pf26Vbfe6rSkYMuCieJTukH2Yho6E7L",
-      "balance": 570425,
+      "balance": 610111,
       "membership_expire_on": 1704719703,
       "next_cert_issuable_on": 1655299037,
       "certs_received": {
@@ -130023,7 +132853,7 @@
     "Valou": {
       "index": 11901,
       "owner_key": "CBPcjvvegxEJhpLVPHo2sQMBwE87avyfo3iaTaFjS4jU",
-      "balance": 188910,
+      "balance": 228596,
       "membership_expire_on": 1709741680,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -130039,7 +132869,7 @@
     "Florence974": {
       "index": 8205,
       "owner_key": "CBiS68EvtAkvx65oYz6btnKZCWTFmCh9RW5oq41WrLhi",
-      "balance": 360199,
+      "balance": 296685,
       "membership_expire_on": 1712024897,
       "next_cert_issuable_on": 1680973898,
       "certs_received": {
@@ -130058,9 +132888,9 @@
     "TheoVS": {
       "index": 12789,
       "owner_key": "CBjiSvRERrGYZi3kVWJzDcetNtr1tHqPxBuX85QvzBRc",
-      "balance": 116188,
+      "balance": 155974,
       "membership_expire_on": 1715906030,
-      "next_cert_issuable_on": 1692983105,
+      "next_cert_issuable_on": 1695297715,
       "certs_received": {
         "DomMembre": 1747615066,
         "Husam": 1753471888,
@@ -130106,8 +132936,8 @@
     "emeline73": {
       "index": 9691,
       "owner_key": "CC3RcyUmnrnrYKsXekB8nW2JveYZLoVQKpaq99J9zUGm",
-      "balance": 395109,
-      "membership_expire_on": 1695766999,
+      "balance": 422937,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Flocon": 1745463826,
@@ -130121,7 +132951,7 @@
     "MarianneCramilion": {
       "index": 6933,
       "owner_key": "CC47wXCPvD8Wn2ZGQSBFhSnHDxgwjdn8zEShKoBKEdYT",
-      "balance": 553338,
+      "balance": 593024,
       "membership_expire_on": 1699199487,
       "next_cert_issuable_on": 1671004578,
       "certs_received": {
@@ -130146,12 +132976,13 @@
     "jirafilla": {
       "index": 10773,
       "owner_key": "CC756aXe9j7jtpBzVA6XFRhbLPtse7ZD23WRfLcQNkNk",
-      "balance": 260880,
+      "balance": 282266,
       "membership_expire_on": 1702044729,
       "next_cert_issuable_on": 1679121135,
       "certs_received": {
         "Bichejos": 1740542881,
         "SanTuCa-REMyL": 1733720844,
+        "YagoMago": 1759135757,
         "Monicakoala": 1733722506,
         "ferferio": 1733700350,
         "Xoxomai": 1736381841,
@@ -130165,7 +132996,7 @@
     "Altaiire": {
       "index": 7134,
       "owner_key": "CCFZ3DWEC6qBsyZjkzFYQaBaPk8bdJDH2QhjTX9tfwKg",
-      "balance": 420003,
+      "balance": 459689,
       "membership_expire_on": 1704414005,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
@@ -130189,7 +133020,7 @@
     "Jean-Denis": {
       "index": 7710,
       "owner_key": "CCPr9jC21xxBbaYA9BGFqwe1PHHLTwJ2GnhuVai5wvrU",
-      "balance": 215746,
+      "balance": 255432,
       "membership_expire_on": 1707495396,
       "next_cert_issuable_on": 1691918844,
       "certs_received": {
@@ -130212,9 +133043,6 @@
       "certs_received": {
         "Freemel": 1703138351,
         "Helenep": 1744321657,
-        "Caropirate": 1696212298,
-        "hommepoirier": 1694247076,
-        "LeoLeo": 1694554119,
         "ClementineLaborderie": 1698306394,
         "Millefeuille": 1724600110
       }
@@ -130222,7 +133050,7 @@
     "Geraud": {
       "index": 11195,
       "owner_key": "CCSHihKqpTAstwV36jTRVdiKUgMvidTRCHQDBvbt7ExG",
-      "balance": 305506,
+      "balance": 345192,
       "membership_expire_on": 1704397807,
       "next_cert_issuable_on": 1686475156,
       "certs_received": {
@@ -130239,7 +133067,7 @@
     "NORAB": {
       "index": 9463,
       "owner_key": "CCY85ujRSLgnL5Shqn2jUZU8Bena8mKWt2wKaeBxDwmv",
-      "balance": 203491,
+      "balance": 215677,
       "membership_expire_on": 1721194152,
       "next_cert_issuable_on": 1684204754,
       "certs_received": {
@@ -130257,7 +133085,7 @@
     "Seraphina": {
       "index": 7160,
       "owner_key": "CCapZSfGSZ6WxL3pZmTDE6ESu3TAZV3wa9AtyvMgeYXR",
-      "balance": 505562,
+      "balance": 545248,
       "membership_expire_on": 1704766510,
       "next_cert_issuable_on": 1671460455,
       "certs_received": {
@@ -130275,7 +133103,7 @@
     "ATIKA": {
       "index": 882,
       "owner_key": "CCdjH7Pd8GPe74ZbiD1DdZ1CXQ2ggYVehk2c7iVV6NwJ",
-      "balance": 1489224,
+      "balance": 1528910,
       "membership_expire_on": 1717257041,
       "next_cert_issuable_on": 1690369431,
       "certs_received": {
@@ -130301,7 +133129,7 @@
     "ThibautDEPRET": {
       "index": 6004,
       "owner_key": "CCipLiEJUydBRxTW7PZXq9DEZV4ApjXaY7NvYz3Nf8Nr",
-      "balance": 475829,
+      "balance": 515515,
       "membership_expire_on": 1718334414,
       "next_cert_issuable_on": 1690535976,
       "certs_received": {
@@ -130320,7 +133148,7 @@
     "fleurdesel": {
       "index": 12389,
       "owner_key": "CComKR9CSTJ2dkXFDdG7Gd3jujZFHH19t5oriodyyDZ8",
-      "balance": 161412,
+      "balance": 228098,
       "membership_expire_on": 1709424964,
       "next_cert_issuable_on": 1692323947,
       "certs_received": {
@@ -130335,6 +133163,20 @@
         "Marino45": 1744820938
       }
     },
+    "Beboop56": {
+      "index": 13714,
+      "owner_key": "CCtGYyKoYnnjuENzojRSv5VTinDxyWFnqvD6TkV2jgzM",
+      "balance": 42268,
+      "membership_expire_on": 1727478423,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Marie2l29": 1759095794,
+        "Bastien-29": 1759307011,
+        "Minako_Komatsu": 1759082587,
+        "AmauryBidel": 1759075214,
+        "Agnes5629": 1759037009
+      }
+    },
     "murat": {
       "index": 5528,
       "owner_key": "CCtUUzspzrevxEMsziJ3g7oe86Lh6W1fBqA6FYE24MkE",
@@ -130348,7 +133190,7 @@
     "TerrasFranck": {
       "index": 2237,
       "owner_key": "CCvVNTKnn4nGQajnVGkU3iBc4pAxxWuAM25UbHiEmbrd",
-      "balance": 3712986,
+      "balance": 4232672,
       "membership_expire_on": 1705203428,
       "next_cert_issuable_on": 1686728866,
       "certs_received": {
@@ -130361,14 +133203,13 @@
         "Krikri": 1712620179,
         "Klerkival": 1749428654,
         "Pomme21": 1747270543,
-        "fredswing": 1695539604,
         "stephanoel": 1704787137
       }
     },
     "beniz": {
       "index": 1429,
       "owner_key": "CCzsuNbgNY3Uj4J2eQmZQbSumskXEuRQei2BR9mxQkxZ",
-      "balance": 547798,
+      "balance": 587484,
       "membership_expire_on": 1722386153,
       "next_cert_issuable_on": 1690903796,
       "certs_received": {
@@ -130390,7 +133231,7 @@
     "VincedeMane": {
       "index": 7128,
       "owner_key": "CDGRTe37r9rGcuwA3gBV1CZD5qxrTvaonqQED8hoYmGe",
-      "balance": 394899,
+      "balance": 434585,
       "membership_expire_on": 1720448878,
       "next_cert_issuable_on": 1652091424,
       "certs_received": {
@@ -130406,7 +133247,7 @@
     "arcenciel": {
       "index": 10884,
       "owner_key": "CDSGjWx38VVteaBpac6b2rtyRrbzqmghPsLaktka4azh",
-      "balance": 265630,
+      "balance": 305316,
       "membership_expire_on": 1702512876,
       "next_cert_issuable_on": 1686019250,
       "certs_received": {
@@ -130440,7 +133281,7 @@
     "Campanilla": {
       "index": 8985,
       "owner_key": "CDtDVDjdvPDvnRDK5WHcxxhWhjJ9ztZSKkYj267uKaUo",
-      "balance": 229139,
+      "balance": 270825,
       "membership_expire_on": 1716508376,
       "next_cert_issuable_on": 1673249963,
       "certs_received": {
@@ -130469,7 +133310,7 @@
     "Maradumont": {
       "index": 10608,
       "owner_key": "CE3LwqH9LDedqiWakc66kUDsB4eD1vHjt7xpFsxgYJ9H",
-      "balance": 296633,
+      "balance": 336319,
       "membership_expire_on": 1700410507,
       "next_cert_issuable_on": 1669949872,
       "certs_received": {
@@ -130497,7 +133338,7 @@
     "Erikpm": {
       "index": 12505,
       "owner_key": "CE4Fpiaui1JBzdZTGkEJJo4S6YAAhfj2x6RDVwhgyzcs",
-      "balance": 120996,
+      "balance": 110682,
       "membership_expire_on": 1714360793,
       "next_cert_issuable_on": 1686391720,
       "certs_received": {
@@ -130513,7 +133354,7 @@
     "Merydwyn": {
       "index": 11088,
       "owner_key": "CEB4Xwgg8w1touPX7Zof17WQCcaaw914VFnwSGnczn3D",
-      "balance": 246686,
+      "balance": 286372,
       "membership_expire_on": 1701887481,
       "next_cert_issuable_on": 1681264363,
       "certs_received": {
@@ -130528,7 +133369,7 @@
     "SylvainBofelli": {
       "index": 4375,
       "owner_key": "CEBxNc9kpCi5qH7gB2tLKkWbCfbZis2a4FKVJoSs6bXf",
-      "balance": 982033,
+      "balance": 1021719,
       "membership_expire_on": 1706480290,
       "next_cert_issuable_on": 1658119631,
       "certs_received": {
@@ -130543,7 +133384,7 @@
     "Lili39": {
       "index": 6403,
       "owner_key": "CEDj791eSkwtFs2g8BRZ1TTiFJNC8Lx9Q3aLuZSXjf5V",
-      "balance": 667253,
+      "balance": 706939,
       "membership_expire_on": 1699388325,
       "next_cert_issuable_on": 1673607615,
       "certs_received": {
@@ -130578,7 +133419,7 @@
     "juliette": {
       "index": 8485,
       "owner_key": "CENpad9iNnioAN1b2KpUHCCpxy5N8tzFfBGgHKZ6hvHn",
-      "balance": 429947,
+      "balance": 470833,
       "membership_expire_on": 1719770030,
       "next_cert_issuable_on": 1680094163,
       "certs_received": {
@@ -130595,7 +133436,7 @@
     "Maxx": {
       "index": 9446,
       "owner_key": "CEXRYCeyHdRKnqTugBPHeUva7N2JAAecejQaBzMxhNv7",
-      "balance": 393544,
+      "balance": 418230,
       "membership_expire_on": 1722295910,
       "next_cert_issuable_on": 1692412507,
       "certs_received": {
@@ -130625,7 +133466,7 @@
     "AlexandraHovasse": {
       "index": 9179,
       "owner_key": "CEeTnp7JegkwyyJrdXebvVupUcvwJLhVwkkNL6z5Xsjg",
-      "balance": 280762,
+      "balance": 320448,
       "membership_expire_on": 1716421782,
       "next_cert_issuable_on": 1684936182,
       "certs_received": {
@@ -130656,9 +133497,9 @@
     "Chrissbrl": {
       "index": 7470,
       "owner_key": "CEjuqwQuHDYeyYY5HLLWiTeTUUBjwi74JdS44AFXsd6F",
-      "balance": 241421,
+      "balance": 301107,
       "membership_expire_on": 1705407865,
-      "next_cert_issuable_on": 1684556335,
+      "next_cert_issuable_on": 1695958281,
       "certs_received": {
         "Rebirth35": 1723756661,
         "GUL40_Fr1": 1741807141,
@@ -130695,6 +133536,7 @@
         "June-Lac": 1725333553,
         "Olguita": 1742605064,
         "Anikka": 1728073368,
+        "LizaCarone": 1759380290,
         "Freco": 1710838882,
         "Jesck": 1736369019,
         "Leparrain33": 1742604631
@@ -130703,7 +133545,7 @@
     "IsaPomme": {
       "index": 13246,
       "owner_key": "CEnp3Ur1C3sURgzaxujHDvXdiH5CpEoAoxLR8r9CCKCi",
-      "balance": 59448,
+      "balance": 99134,
       "membership_expire_on": 1721751083,
       "next_cert_issuable_on": 1691310757,
       "certs_received": {
@@ -130714,10 +133556,26 @@
         "Tito": 1753553470
       }
     },
+    "ganeshganesh": {
+      "index": 13600,
+      "owner_key": "CEwTaDyQoXKJod7B5gJYqUjBTapWdg8qh6ogogF2e3tk",
+      "balance": 50662,
+      "membership_expire_on": 1726423997,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "GautierEthan": 1758223538,
+        "ASHNUBAN": 1758210488,
+        "Sisi": 1758223042,
+        "veroniquedresselaers": 1758163121,
+        "Mary007": 1758267349,
+        "Maribel": 1758164265,
+        "CaroNaturo": 1758588363
+      }
+    },
     "Scoubidou": {
       "index": 13437,
       "owner_key": "CExoRaBu21f96VAZe2eAfonfukAuKJW5GvUd9H5aT6we",
-      "balance": 7476,
+      "balance": 47162,
       "membership_expire_on": 1721671304,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -130731,7 +133589,7 @@
     "Petitcolin": {
       "index": 4479,
       "owner_key": "CF9wmjWTHZc8fyxU3sALYnDw4ytb1MPST5jg71RmhyhL",
-      "balance": 851073,
+      "balance": 890759,
       "membership_expire_on": 1710542346,
       "next_cert_issuable_on": 1653396916,
       "certs_received": {
@@ -130772,7 +133630,7 @@
     "Naxaia13": {
       "index": 8080,
       "owner_key": "CFJDx94a6HnNUmfab1Xp8NLMZWP1epVEhnBUnKrRTEhb",
-      "balance": 503358,
+      "balance": 543044,
       "membership_expire_on": 1705247858,
       "next_cert_issuable_on": 1683859933,
       "certs_received": {
@@ -130782,6 +133640,7 @@
         "Dom": 1715718644,
         "yasminaB": 1715753152,
         "evelyne2b": 1724959835,
+        "AmandineB": 1757705575,
         "Juju21": 1715784846,
         "PascaleM": 1715719816,
         "Madjo": 1716783480,
@@ -130806,13 +133665,15 @@
     "LionMackry": {
       "index": 3584,
       "owner_key": "CFeJrEAUdbF7gB7SUwHHiFQp71979MwYiJSyG2Bvqdt4",
-      "balance": 445393,
+      "balance": 435079,
       "membership_expire_on": 1711387479,
-      "next_cert_issuable_on": 1679903107,
+      "next_cert_issuable_on": 1695025599,
       "certs_received": {
         "Marie83": 1701048857,
-        "Alinerv": 1695233871,
+        "Alinerv": 1758239835,
+        "Georges_M_mbr": 1758065800,
         "NansCoCreator": 1701233735,
+        "NeyKrom": 1758065394,
         "Magvr": 1714776321,
         "Vivi83": 1701139933,
         "Sandrine-": 1714776926,
@@ -130822,7 +133683,7 @@
     "Jacquelinereynaud": {
       "index": 13391,
       "owner_key": "CFfCMFE5yPkHWiY8giHKFNL6fs6CHofv1nBSrBidPypB",
-      "balance": 20884,
+      "balance": 55570,
       "membership_expire_on": 1723919704,
       "next_cert_issuable_on": 1692512860,
       "certs_received": {
@@ -130836,7 +133697,7 @@
     "Cocodit55": {
       "index": 12151,
       "owner_key": "CFxJTVSPFneZjC2WUFXbGRVVfSmZzMBJAvryfCAGp7PF",
-      "balance": 439768,
+      "balance": 479454,
       "membership_expire_on": 1708989335,
       "next_cert_issuable_on": 1693536081,
       "certs_received": {
@@ -130852,11 +133713,12 @@
     "MEME3": {
       "index": 11207,
       "owner_key": "CG13zzpAEHjT5ZzbgExE1MDAbY82hhexFzgZwdd1aDAR",
-      "balance": 701296,
+      "balance": 845482,
       "membership_expire_on": 1705019589,
       "next_cert_issuable_on": 1688780747,
       "certs_received": {
         "Chabe13": 1745363313,
+        "MarieMas": 1757265479,
         "Micha99": 1736590966,
         "Kuru": 1736628155,
         "MikeByte": 1736577439,
@@ -130872,7 +133734,7 @@
     "Milady": {
       "index": 12945,
       "owner_key": "CG1DpJxaZYdstek4LNDDV4rvyF5o2gBtuqWsFgAZpd7r",
-      "balance": 77396,
+      "balance": 117082,
       "membership_expire_on": 1716032288,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -130906,7 +133768,7 @@
     "criscoutinho": {
       "index": 4585,
       "owner_key": "CGHTmBFVwAZbSbrY5eukE7M9P6z8ZzW9h9QwzNvVdKw7",
-      "balance": 195545,
+      "balance": 235231,
       "membership_expire_on": 1701820266,
       "next_cert_issuable_on": 1689212061,
       "certs_received": {
@@ -130937,7 +133799,6 @@
         "SingerOfHealing": 1737189009,
         "JorgeDraven": 1735535846,
         "GuillermoHarmonia": 1732222384,
-        "SandraHeleno": 1695704536,
         "jsoutelinho": 1748740021,
         "Fa5": 1727734730,
         "ElisabeteMartins": 1740354821
@@ -130949,9 +133810,7 @@
       "balance": 314112,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1645881665,
-      "certs_received": {
-        "jardin": 1695615500
-      }
+      "certs_received": {}
     },
     "Sia": {
       "index": 7880,
@@ -130994,14 +133853,13 @@
     "Spyou": {
       "index": 84,
       "owner_key": "CGnyAAKDSKDp5KUTCxd1mGp6Vp5SjH5TgSxA8GBdCioz",
-      "balance": 2115142,
-      "membership_expire_on": 1704549346,
+      "balance": 2113864,
+      "membership_expire_on": 1727111110,
       "next_cert_issuable_on": 1684161646,
       "certs_received": {
         "woxok": 1708494676,
         "fredux": 1719353835,
         "Hedy": 1744164063,
-        "Nikos": 1695861924,
         "sisyphe": 1742598184,
         "tierce": 1717971593,
         "ortie": 1703210267,
@@ -131014,7 +133872,7 @@
       "owner_key": "CH5gW6ZsoKmjvV5cPY1xtWxmF5zYp1vhuWLBPSXiCdQR",
       "balance": 2483,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1633498035,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Underscore": 1698200335
       }
@@ -131022,7 +133880,7 @@
     "BolidoC": {
       "index": 4840,
       "owner_key": "CH7WbzE6TGRzgiytLkngD8rAHnPs9XFGDEEQNjFU7sxR",
-      "balance": 238708,
+      "balance": 278394,
       "membership_expire_on": 1708750733,
       "next_cert_issuable_on": 1680583473,
       "certs_received": {
@@ -131042,7 +133900,7 @@
     "phuzen69": {
       "index": 5108,
       "owner_key": "CHGZU6GasW9x4htuHRcZr2PZecb9AfcfxAr2o8H22Kvs",
-      "balance": 268357,
+      "balance": 298043,
       "membership_expire_on": 1706477156,
       "next_cert_issuable_on": 1687148054,
       "certs_received": {
@@ -131056,7 +133914,6 @@
         "TerrasFranck": 1749772066,
         "Krikri": 1719082460,
         "Redgg": 1726293234,
-        "DYves62": 1696721829,
         "Marion": 1738035088,
         "EmmanuelOLIVIER": 1715030876
       }
@@ -131064,7 +133921,7 @@
     "YUKO": {
       "index": 10598,
       "owner_key": "CHRT44XSRnEbgk4k9eFj4Rsb9fv8mH32H6L2YEFWiQ5G",
-      "balance": 31142,
+      "balance": 29228,
       "membership_expire_on": 1701129222,
       "next_cert_issuable_on": 1693127857,
       "certs_received": {
@@ -131074,6 +133931,7 @@
         "YagoMago": 1733823348,
         "Elenarepostera": 1732687648,
         "jilguero": 1736662803,
+        "Abejitajaimita": 1757234364,
         "mariabiodanza": 1736197066,
         "Munillerro": 1732726316,
         "esterdg": 1742501619,
@@ -131184,7 +134042,7 @@
     "Gelen": {
       "index": 6494,
       "owner_key": "CJECu4AsY8PXpjhSNwvKEEiUVDZeWDeft1FjW6zGRx1L",
-      "balance": 542590,
+      "balance": 582276,
       "membership_expire_on": 1709215829,
       "next_cert_issuable_on": 1654790942,
       "certs_received": {
@@ -131223,7 +134081,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1645537941,
       "certs_received": {
-        "Niamor": 1695524143,
         "Benedicte38": 1711927413,
         "Bap": 1734765840,
         "Cecilelaurent": 1697543081,
@@ -131233,7 +134090,7 @@
     "mikdos31": {
       "index": 3813,
       "owner_key": "CJLiMQ6kWTyQGRje7pQpUwsEQ6ooVxQa9pDX3pNNd8vd",
-      "balance": 465335,
+      "balance": 505021,
       "membership_expire_on": 1706275618,
       "next_cert_issuable_on": 1682686473,
       "certs_received": {
@@ -131255,7 +134112,7 @@
     "SabineAmen": {
       "index": 7317,
       "owner_key": "CJPFYvUZ3KeM5Qs8dnQLiZf2fVMu5hdsG4pHRK45NUfC",
-      "balance": 555347,
+      "balance": 595033,
       "membership_expire_on": 1707941355,
       "next_cert_issuable_on": 1660371031,
       "certs_received": {
@@ -131291,7 +134148,7 @@
     "PatrickMarcoux": {
       "index": 10603,
       "owner_key": "CJS6bfKj15cnc6f1phzpoB9iyJeogpsSQV8ckRJitbVb",
-      "balance": 289633,
+      "balance": 325319,
       "membership_expire_on": 1700690514,
       "next_cert_issuable_on": 1671122610,
       "certs_received": {
@@ -131306,9 +134163,9 @@
     "Berenice": {
       "index": 12738,
       "owner_key": "CJSsng913VGGEVw6uvEDY7Y9nprFRrDuHb1NrPCSHo7X",
-      "balance": 108766,
+      "balance": 148452,
       "membership_expire_on": 1715901031,
-      "next_cert_issuable_on": 1692090427,
+      "next_cert_issuable_on": 1696016267,
       "certs_received": {
         "G21": 1747503571,
         "Gudule94": 1747710896,
@@ -131320,9 +134177,9 @@
     "Sylmon": {
       "index": 4793,
       "owner_key": "CJbx4sGVi1FN6A2ZdB7BG7L1B2Y8qh6EcHXS1FD4BmEV",
-      "balance": 781492,
+      "balance": 796178,
       "membership_expire_on": 1701566827,
-      "next_cert_issuable_on": 1692970354,
+      "next_cert_issuable_on": 1694422751,
       "certs_received": {
         "Kevinbdn": 1755026442,
         "BlandineGABE": 1742667203,
@@ -131331,7 +134188,22 @@
         "alizarina": 1702534683,
         "BisQI": 1704921602,
         "CoralieM": 1726001760,
-        "Cindy": 1722133975
+        "Cindy": 1722133975,
+        "Cagnol85": 1757734853
+      }
+    },
+    "PatriciaNoisette74": {
+      "index": 13679,
+      "owner_key": "CJeW2aFCXut2iFaBDfFyEor8JWXYQpAw7mrSCHhP5pNr",
+      "balance": 10702,
+      "membership_expire_on": 1727135375,
+      "next_cert_issuable_on": 1696059166,
+      "certs_received": {
+        "VASCO": 1758872863,
+        "phil3455": 1758693806,
+        "Corinne_Sri": 1759048168,
+        "Perlette": 1758745564,
+        "Jacques74": 1758832637
       }
     },
     "ManueManue": {
@@ -131382,9 +134254,9 @@
     "Jacci": {
       "index": 12960,
       "owner_key": "CJz3afQgHCHGbrkayxmtnVjwwa8mNYPpq7zf7CDZuqiu",
-      "balance": 106300,
+      "balance": 81786,
       "membership_expire_on": 1719013409,
-      "next_cert_issuable_on": 1688625838,
+      "next_cert_issuable_on": 1694493558,
       "certs_received": {
         "Gerardo": 1750574156,
         "quiquecaballero": 1750572716,
@@ -131427,7 +134299,7 @@
     "FranchiFit": {
       "index": 12929,
       "owner_key": "CKA752ZpD1VhN17mYqwK2Z3qZwHcySvm9WfZUsAmtouq",
-      "balance": 76964,
+      "balance": 106250,
       "membership_expire_on": 1717629352,
       "next_cert_issuable_on": 1693301598,
       "certs_received": {
@@ -131477,9 +134349,9 @@
     "SABine": {
       "index": 7447,
       "owner_key": "CKTmZ3mydm6ERRapWiE6cLCxzEHqppGDgt8p5jkCHuvt",
-      "balance": 493657,
+      "balance": 530443,
       "membership_expire_on": 1708888628,
-      "next_cert_issuable_on": 1684588337,
+      "next_cert_issuable_on": 1695035101,
       "certs_received": {
         "elisalibre": 1711315137,
         "SandyMenegazzi": 1740943450,
@@ -131497,25 +134369,27 @@
     "Mohanad": {
       "index": 13101,
       "owner_key": "CKVYJjDmbWPsZQfevkYHLwSPhBpwgcqCo1Q8pGpYNPpi",
-      "balance": 59808,
+      "balance": 99494,
       "membership_expire_on": 1719006494,
-      "next_cert_issuable_on": 1693131273,
+      "next_cert_issuable_on": 1695305195,
       "certs_received": {
         "DomVe": 1751447133,
+        "Steph41": 1757348039,
         "ChloeS": 1750565296,
         "GeraldS": 1750564094,
         "TheoVS": 1750564724,
-        "Antares13": 1751447133
+        "Antares13": 1751447133,
+        "AlexCl": 1759042096,
+        "Bella35": 1756854432
       }
     },
     "Wellno1": {
       "index": 4945,
       "owner_key": "CKWTXWTFsXmKCFyNUTeDjtmtZSgWnSFpNvRZQXP6gvA4",
-      "balance": 353884,
-      "membership_expire_on": 1698919240,
-      "next_cert_issuable_on": 1692276264,
+      "balance": 361470,
+      "membership_expire_on": 1725488417,
+      "next_cert_issuable_on": 1695308501,
       "certs_received": {
-        "kapis": 1694402996,
         "Truca": 1752193992,
         "ManUtopiK": 1716921261,
         "SaraRo": 1723329986,
@@ -131523,14 +134397,11 @@
         "mati": 1712732050,
         "ManelG": 1754688579,
         "xavislow": 1720426478,
-        "carmela": 1694406109,
         "ReservaOriental": 1724016527,
-        "celoman": 1696749959,
+        "celoman": 1758267975,
         "tuxmain": 1716923022,
         "namagra": 1709104819,
         "HugoTrentesaux": 1716799555,
-        "LaCasaGran": 1694474252,
-        "timetale": 1694406461,
         "Josepeuta": 1708647733,
         "EleonoraS": 1754646204,
         "Annina": 1748198986,
@@ -131543,9 +134414,7 @@
         "MorganadeAvalon": 1710324892,
         "davidbp845": 1723876755,
         "PeterGreen": 1710279590,
-        "tano": 1696266757,
         "JulianMF": 1714243592,
-        "Lotus17": 1694656308,
         "Gamaliel": 1710295591,
         "danielacaviola": 1725934369,
         "Sophie_L": 1751182650,
@@ -131559,7 +134428,6 @@
         "tuttle": 1698812718,
         "Sarjanet": 1721102548,
         "tereseta": 1710293884,
-        "Koldo": 1694475346,
         "GRUKSY": 1730331250,
         "Bianca": 1726558210,
         "Nadou": 1702969717,
@@ -131569,30 +134437,46 @@
     "Marcelin": {
       "index": 6163,
       "owner_key": "CKf4s8JoCoKm28Vd9CPP1mJEJBRjQmfBrHdWRwQwoTYi",
-      "balance": 530140,
-      "membership_expire_on": 1696794397,
-      "next_cert_issuable_on": 1665313952,
+      "balance": 569826,
+      "membership_expire_on": 1725615530,
+      "next_cert_issuable_on": 1694129930,
       "certs_received": {
         "Libertiste": 1698206956,
         "Caroleluciole": 1698894156,
         "Paola": 1706941285,
         "BRIGITTE2019": 1697749599,
-        "zaza": 1696313940,
-        "mat14": 1696313940,
-        "Parpalhon": 1696313940
+        "zaza": 1757173130,
+        "mat14": 1757173130,
+        "Parpalhon": 1757173130
+      }
+    },
+    "Poisdesenteur": {
+      "index": 13603,
+      "owner_key": "CKhtnZZinrgYM9pG2Jm5fjLPwp2zgfng7KHg3j5GUjwq",
+      "balance": 40663,
+      "membership_expire_on": 1724881430,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "DyanZan_Gce": 1756856592,
+        "Salsa33150": 1756856592,
+        "Tango8943": 1756856592,
+        "eln": 1757802320,
+        "Ouest_Cristal8": 1756856592
       }
     },
     "LionelJ": {
       "index": 6471,
       "owner_key": "CKn7hF53BhFBnHnPQBPiZq6jbaf7VZu6idv6StonnBHn",
-      "balance": 427043,
+      "balance": 496729,
       "membership_expire_on": 1701418013,
       "next_cert_issuable_on": 1685348647,
       "certs_received": {
         "olione": 1706418847,
         "Gami": 1703276060,
         "Berniebx": 1703356468,
+        "Esprit-paille": 1758528751,
         "CatherineMonastirieff": 1703309680,
+        "morimontj": 1758660482,
         "NirmalaMary": 1703317094,
         "MariaDiniz": 1742933788,
         "B_ene": 1742174906,
@@ -131603,7 +134487,7 @@
     "Jo1495": {
       "index": 10984,
       "owner_key": "CKwYfqb9pq7HijeMZe2NRMuWAqY92TK4hgB16k6dkEFW",
-      "balance": 222776,
+      "balance": 262462,
       "membership_expire_on": 1703287022,
       "next_cert_issuable_on": 1675931918,
       "certs_received": {
@@ -131636,9 +134520,9 @@
     "Ardan1977": {
       "index": 9056,
       "owner_key": "CLNDouBrDFUtviyCsfBGspWn6CPHnmvTUemKmET5gWRY",
-      "balance": 76466,
+      "balance": 66153,
       "membership_expire_on": 1715977119,
-      "next_cert_issuable_on": 1690600279,
+      "next_cert_issuable_on": 1695627227,
       "certs_received": {
         "ArtesaniaAna": 1727684701,
         "Cordeliaze": 1726078708,
@@ -131675,13 +134559,14 @@
         "Runa_81": 1737079413,
         "Sylvain": 1721064095,
         "NORGERAL": 1728958174,
+        "Kol": 1759462445,
         "fania": 1725575613
       }
     },
     "Alex34": {
       "index": 2647,
       "owner_key": "CLPEJudWseKVqefdfSyktjRbKRYx7SHr5jADjwALWHYh",
-      "balance": 1456528,
+      "balance": 1496214,
       "membership_expire_on": 1699388114,
       "next_cert_issuable_on": 1692080536,
       "certs_received": {
@@ -131692,6 +134577,7 @@
         "Bruno81": 1747936713,
         "CVM": 1747936974,
         "enchemin": 1755123087,
+        "Nico34": 1755126101,
         "NEMBC": 1732916136,
         "Aaricia": 1736974872
       }
@@ -131699,7 +134585,7 @@
     "MahoRC": {
       "index": 2652,
       "owner_key": "CLS7zHtqbao9KkMt7AK5Aw8zt6CWKN6XH8bcjvoNQhyN",
-      "balance": 1183316,
+      "balance": 1223002,
       "membership_expire_on": 1710261316,
       "next_cert_issuable_on": 1680969090,
       "certs_received": {
@@ -131716,7 +134602,7 @@
     "JoseMariaDruidadianik": {
       "index": 4207,
       "owner_key": "CLTcpbpEEQqDuscjWxYZUdayNHNXVP4xyxZBjAbrWVDr",
-      "balance": 568096,
+      "balance": 607782,
       "membership_expire_on": 1707740795,
       "next_cert_issuable_on": 1692626490,
       "certs_received": {
@@ -131725,14 +134611,13 @@
         "Inma_HD_Bere": 1734047778,
         "PerePinyolTortosa": 1738370287,
         "MartaCuinaViva": 1755373196,
-        "BeatrizGG": 1738393121,
-        "MissPine": 1693536111
+        "BeatrizGG": 1738393121
       }
     },
     "BernardDias": {
       "index": 11956,
       "owner_key": "CLX3JPihY2CyLcekvwpjZ8ENgkwQ3Jz1EABpZzsoUKyX",
-      "balance": 188015,
+      "balance": 227701,
       "membership_expire_on": 1709771641,
       "next_cert_issuable_on": 1690554170,
       "certs_received": {
@@ -131747,7 +134632,7 @@
     "Mariezen": {
       "index": 7610,
       "owner_key": "CLbTissQaQWiZ9hMw6xYJAyytoS2p6VXrrBjzek1qttE",
-      "balance": 582994,
+      "balance": 622680,
       "membership_expire_on": 1708824698,
       "next_cert_issuable_on": 1679990155,
       "certs_received": {
@@ -131764,27 +134649,33 @@
     "KATHY84": {
       "index": 3090,
       "owner_key": "CLcrr8C5NmxgzSobqG6GGQQHkoX91PAa9WNGdGRCqKx5",
-      "balance": 1277635,
-      "membership_expire_on": 1696352912,
+      "balance": 1317321,
+      "membership_expire_on": 1727709175,
       "next_cert_issuable_on": 1686275197,
       "certs_received": {
         "GuyDelarche": 1700875583,
         "Feerique": 1700985453,
+        "Melvil84": 1759293539,
+        "lucba": 1759286470,
+        "Anna84": 1759774957,
+        "Malaga": 1759785522,
         "Avrila": 1701030542,
         "lapivoine": 1718323792,
         "salamandre": 1706412840,
         "zenbio": 1700985067,
+        "vallouli": 1759463209,
         "CovaDidier": 1701406419
       }
     },
     "freeman": {
       "index": 7232,
       "owner_key": "CLhFQa6XPjQSQEpkKt1xaXuvRsNuP2ex6jLHjUUQL7KF",
-      "balance": 542925,
+      "balance": 582611,
       "membership_expire_on": 1705275422,
-      "next_cert_issuable_on": 1693114996,
+      "next_cert_issuable_on": 1695029145,
       "certs_received": {
         "fabireine": 1724960122,
+        "NanouB": 1756792445,
         "Nouchka1": 1721084508,
         "tangosol": 1709588909,
         "Esprit-paille": 1716274862,
@@ -131809,7 +134700,7 @@
     "Wahida": {
       "index": 1748,
       "owner_key": "CLpeqSxx9gnpk2tfGEumRQMEzzCrfFDvrKTqqfUfRbnT",
-      "balance": 1773004,
+      "balance": 1812690,
       "membership_expire_on": 1701647364,
       "next_cert_issuable_on": 1670318902,
       "certs_received": {
@@ -131825,12 +134716,10 @@
     "elo53die": {
       "index": 2357,
       "owner_key": "CLs1Rc3uyL2VRmYUHX1oaN9WmfnLfe3BSrANMPU7EkYz",
-      "balance": 1181068,
+      "balance": 1220754,
       "membership_expire_on": 1706700731,
       "next_cert_issuable_on": 1674544088,
       "certs_received": {
-        "LuciaKorosiova": 1696582719,
-        "ElodiePichereau": 1694817704,
         "AnneAmbles": 1718873184,
         "aurelie": 1712338601,
         "Christal": 1718301815,
@@ -131853,8 +134742,8 @@
     "Ulyss31": {
       "index": 9648,
       "owner_key": "CLyb7opNHCfkTC5uv3e6frAoWEP7Vs1AxkUncLwbbK9k",
-      "balance": 362586,
-      "membership_expire_on": 1693863937,
+      "balance": 366858,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "ClaraBelle": 1725511658,
@@ -131867,22 +134756,20 @@
     "JeDanse": {
       "index": 5628,
       "owner_key": "CM4WxDJ7izegcJiBR4igchKgxNTruWD7YudKqHFo9xJw",
-      "balance": 460021,
+      "balance": 499707,
       "membership_expire_on": 1724759773,
-      "next_cert_issuable_on": 1674788561,
+      "next_cert_issuable_on": 1694161593,
       "certs_received": {
         "SandrineMala": 1715241653,
-        "Come": 1693858737,
-        "HelloSunshine": 1694309905,
         "MacBoi": 1701880067,
         "YvelineMNC": 1705272194,
+        "Sofiachante": 1756765420,
         "TerreDePleineConscience": 1711744865,
         "SOROWE": 1701880406,
         "Tanguera": 1733982828,
         "Mayalibre": 1704490972,
         "Pereduchene": 1709408822,
         "SebastienMaire": 1708545536,
-        "marieange": 1693721895,
         "OlivierditTiti": 1715212519,
         "chrisbaud": 1714342657,
         "Marcolariegeois": 1714871533,
@@ -131890,8 +134777,7 @@
         "Sureau": 1708660357,
         "AnneH0512": 1707601661,
         "Lilou05": 1735240897,
-        "ChoraMadera": 1693761553,
-        "Anne05000": 1693857144,
+        "ChoraMadera": 1757204347,
         "Metta": 1702865336,
         "Bruno28": 1738002012
       }
@@ -131899,7 +134785,7 @@
     "Henrique": {
       "index": 11483,
       "owner_key": "CM6eUb4NKKHHBiztTCWrjFim5ar68Eqy2U2dYSLmo7tU",
-      "balance": 259674,
+      "balance": 109360,
       "membership_expire_on": 1707171065,
       "next_cert_issuable_on": 1680700522,
       "certs_received": {
@@ -131923,7 +134809,7 @@
     "ALFONSILaurent": {
       "index": 5951,
       "owner_key": "CMFvog7PbtW7zNyZF467mJeuSocYWdmXmtMC2dVbCYae",
-      "balance": 1592239,
+      "balance": 1758425,
       "membership_expire_on": 1724981321,
       "next_cert_issuable_on": 1693529161,
       "certs_received": {
@@ -131932,11 +134818,12 @@
         "Chantal": 1703196169,
         "JonathanT": 1736282350,
         "Tell": 1711188428,
+        "Elody": 1759259548,
         "Joailes38": 1698608429,
         "pbienfait": 1698718125,
         "Zenobie": 1709174179,
         "Ravintsara": 1744480989,
-        "VWAUMANS": 1698686433,
+        "VWAUMANS": 1755656001,
         "JBM": 1698512168,
         "LaurentM": 1702419957
       }
@@ -131954,7 +134841,7 @@
     "Lilibellule": {
       "index": 9876,
       "owner_key": "CMS6hvSnVwSBSmLok3QecQqHTdkBjBagcLfRFb1BdYzW",
-      "balance": 386142,
+      "balance": 425828,
       "membership_expire_on": 1696865812,
       "next_cert_issuable_on": 1665585957,
       "certs_received": {
@@ -131968,7 +134855,7 @@
     "AngeliqueCharton": {
       "index": 6948,
       "owner_key": "CMU3VsDgFn5qBnzY1MiVDeow4EnBTt4ABACvcpQwGvmo",
-      "balance": 342369,
+      "balance": 369055,
       "membership_expire_on": 1701821152,
       "next_cert_issuable_on": 1689934066,
       "certs_received": {
@@ -132004,7 +134891,7 @@
     "AmiasDibi": {
       "index": 1442,
       "owner_key": "CMdTnXKPqxFaqFQrxHb3wMxFHWPt62HxUocZ3pgSdH4",
-      "balance": 1759559,
+      "balance": 1799245,
       "membership_expire_on": 1710681130,
       "next_cert_issuable_on": 1668848932,
       "certs_received": {
@@ -132018,7 +134905,7 @@
     "TITALIViv": {
       "index": 6645,
       "owner_key": "CMeCHdGkQLFEJNqjjofQiLnyBW5trRjPgwPembnJ9Xyv",
-      "balance": 711635,
+      "balance": 751321,
       "membership_expire_on": 1699898653,
       "next_cert_issuable_on": 1670387620,
       "certs_received": {
@@ -132038,9 +134925,9 @@
     "Marido2563": {
       "index": 12942,
       "owner_key": "CMhW3y8BwujWyozwu7CFcpUosbLihBvHFXUEgqwxMGy4",
-      "balance": 123546,
+      "balance": 124032,
       "membership_expire_on": 1718757196,
-      "next_cert_issuable_on": 1687445927,
+      "next_cert_issuable_on": 1694482784,
       "certs_received": {
         "ChristopheG25": 1750320320,
         "Valerie25": 1750367939,
@@ -132055,7 +134942,7 @@
     "Helikopter": {
       "index": 11507,
       "owner_key": "CMk4Cazy4LCRX9cZto3TSudjtAogfDyfY3SjAsTS5gq4",
-      "balance": 219562,
+      "balance": 259248,
       "membership_expire_on": 1707328415,
       "next_cert_issuable_on": 1682204938,
       "certs_received": {
@@ -132069,9 +134956,9 @@
     "Ashtam": {
       "index": 13106,
       "owner_key": "CMkG6SSempFF8SXhxixmntT1qX5RFuZEEEkLCb7gYDeR",
-      "balance": 58740,
+      "balance": 98426,
       "membership_expire_on": 1719278527,
-      "next_cert_issuable_on": 1689684320,
+      "next_cert_issuable_on": 1693925171,
       "certs_received": {
         "Avalon": 1751685307,
         "Gioelina": 1751783918,
@@ -132084,7 +134971,7 @@
     "DavidMRT": {
       "index": 12971,
       "owner_key": "CMqa1MRzx1eaRpXwieNUXuDims36yU2AcxGURocNS6Y3",
-      "balance": 72624,
+      "balance": 33278,
       "membership_expire_on": 1715115307,
       "next_cert_issuable_on": 1691466422,
       "certs_received": {
@@ -132098,22 +134985,18 @@
     "AurelienBois": {
       "index": 5605,
       "owner_key": "CMtGtyTBJvz68YxdUZAY9fgT74HTFrLH6VWpbgRTQK7J",
-      "balance": 276911,
-      "membership_expire_on": 1719417905,
+      "balance": 279047,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670387073,
       "certs_received": {
-        "AnneChaimbault": 1693709260,
         "Lheureux": 1753080024,
-        "Amande": 1693951232,
-        "Hedy": 1744164063,
-        "Omkara": 1693709549,
-        "annefreda": 1693957696
+        "Hedy": 1744164063
       }
     },
     "FrancoiseCombes": {
       "index": 4388,
       "owner_key": "CMtMV1a8nq78198p8oh9k9b2Mkt73uMUGaHiLAmMTBPv",
-      "balance": 1105188,
+      "balance": 1144874,
       "membership_expire_on": 1698881621,
       "next_cert_issuable_on": 1685871454,
       "certs_received": {
@@ -132121,9 +135004,7 @@
         "sylvine": 1711857910,
         "TataCC": 1736797523,
         "Estellea": 1705706978,
-        "myriamdevivegnis": 1693785279,
         "StefTouet": 1703205697,
-        "hocine": 1696520169,
         "Linepau": 1713813964,
         "ValerieBaudouin": 1706044613,
         "magicplanet88": 1741022074,
@@ -132171,7 +135052,7 @@
     "Cyndra974": {
       "index": 4331,
       "owner_key": "CN79g7QE4TMu5K1TCW835V8q1SS4YrtLNqjGmwiQDZLn",
-      "balance": 672519,
+      "balance": 712205,
       "membership_expire_on": 1707921991,
       "next_cert_issuable_on": 1677203631,
       "certs_received": {
@@ -132187,9 +135068,9 @@
     "Bebeth": {
       "index": 10409,
       "owner_key": "CNC998QhA4wV8zz9UkyPDpjJBZ8nsedZatUjy3RvnJgk",
-      "balance": 694200,
-      "membership_expire_on": 1699887097,
-      "next_cert_issuable_on": 1692677590,
+      "balance": 733886,
+      "membership_expire_on": 1726612242,
+      "next_cert_issuable_on": 1695787834,
       "certs_received": {
         "VeroRonsmans": 1736921444,
         "Esprit-paille": 1744869694,
@@ -132198,10 +135079,12 @@
         "JulieS": 1752987661,
         "feesfleurs": 1731526262,
         "Osmoze": 1750841545,
+        "cyriana2006": 1757966495,
         "ChatChris": 1731487109,
         "WhiteLily": 1750822626,
         "IsadeSpa": 1731571782,
         "DCat": 1751684798,
+        "RutenRolf": 1759515178,
         "Sylvieb": 1731455373,
         "Dem": 1731562423,
         "LobsangDawa": 1755717379,
@@ -132210,13 +135093,14 @@
         "Petfa": 1736894391,
         "nicgouG": 1731531932,
         "Mabize": 1744847429,
+        "Isabiloba": 1757956544,
         "Liloo2005": 1733116622
       }
     },
     "Ailime": {
       "index": 11210,
       "owner_key": "CNCDpn8mcnfrXdsiJGci9vrHePth7joqXVFpjVs5APE1",
-      "balance": 161550,
+      "balance": 164236,
       "membership_expire_on": 1704673230,
       "next_cert_issuable_on": 1687309520,
       "certs_received": {
@@ -132242,8 +135126,8 @@
     "EmmaG": {
       "index": 9822,
       "owner_key": "CNKVJVSfhAt5GkUu3c9eRPexvkSM5cWUcdEuQWBGqKu6",
-      "balance": 167476,
-      "membership_expire_on": 1695656627,
+      "balance": 194226,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1674049338,
       "certs_received": {
         "haddock": 1727348353,
@@ -132260,7 +135144,7 @@
     "DamienLG": {
       "index": 6293,
       "owner_key": "CNPNd7KaP6qXKiPLM4Fm2i2NzfKFX2S9MPZjNfcJ9P9j",
-      "balance": 150315,
+      "balance": 181001,
       "membership_expire_on": 1724509035,
       "next_cert_issuable_on": 1678781313,
       "certs_received": {
@@ -132281,7 +135165,7 @@
     "Sandro974": {
       "index": 9339,
       "owner_key": "CNPkPH4w4P1scrRcFnka8UZGbBWj5EE5KapZen2Chn4M",
-      "balance": 350054,
+      "balance": 389740,
       "membership_expire_on": 1718879494,
       "next_cert_issuable_on": 1663454405,
       "certs_received": {
@@ -132312,7 +135196,7 @@
     "Marilyn30": {
       "index": 6815,
       "owner_key": "CNbF3PfLB5aSnYif2ECdT1kGpVCknDq1b6teHw3inubn",
-      "balance": 848027,
+      "balance": 850613,
       "membership_expire_on": 1706538167,
       "next_cert_issuable_on": 1643971742,
       "certs_received": {
@@ -132360,7 +135244,7 @@
     "Onde8": {
       "index": 10444,
       "owner_key": "CNkQU194v2xhxMcKHLTbHE4vzMXdvaL3xBGhN6jEdMaK",
-      "balance": 291223,
+      "balance": 330909,
       "membership_expire_on": 1696986522,
       "next_cert_issuable_on": 1670769988,
       "certs_received": {
@@ -132375,7 +135259,7 @@
     "Anerol": {
       "index": 11711,
       "owner_key": "CNmcwRRH8AYwxnqru4DWJrkU1UFsEnxz74ruckjyC4SJ",
-      "balance": 203677,
+      "balance": 243363,
       "membership_expire_on": 1707411692,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -132389,11 +135273,12 @@
     "Dlies": {
       "index": 7522,
       "owner_key": "CNnTusBEMwNMmpuhescH9WtiP5gWGCjGTp8SMkFWyf1m",
-      "balance": 453352,
+      "balance": 508038,
       "membership_expire_on": 1720101009,
       "next_cert_issuable_on": 1655206585,
       "certs_received": {
         "AucrAnnie": 1721284414,
+        "Samuel77": 1757359478,
         "Feerique": 1711849917,
         "Didierlife84": 1711851788,
         "Nellouche": 1717186944,
@@ -132415,7 +135300,7 @@
     "Gipsygirl": {
       "index": 13033,
       "owner_key": "CNphnqzxKXu25Zoxku4bG7f1SDK9xEPiZd5jnZc1jNjC",
-      "balance": 69216,
+      "balance": 108902,
       "membership_expire_on": 1719597766,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -132439,7 +135324,7 @@
     "llanero": {
       "index": 5952,
       "owner_key": "CNuN2k2NrrX11u182pdX7Hxg6QVEzvKqn9Jq6vykt8Gs",
-      "balance": 100594,
+      "balance": 57940,
       "membership_expire_on": 1718654121,
       "next_cert_issuable_on": 1688048148,
       "certs_received": {
@@ -132447,9 +135332,7 @@
         "Eiutim": 1735863711,
         "kapis": 1718991321,
         "ArtesaniaAna": 1725394647,
-        "Cordeliaze": 1695284260,
         "arbocenc": 1756394801,
-        "mluque71": 1694493117,
         "Urbez": 1730869767,
         "carmela": 1755242692,
         "AlbaMur": 1744139782,
@@ -132457,13 +135340,13 @@
         "Yorch": 1716745752,
         "Montsin": 1726503536,
         "SandraFernandes": 1714809339,
-        "LaCasaGran": 1694470953,
         "Tulsi": 1736575947,
         "sheveck": 1714806883,
         "Estitz": 1733297209,
         "Lurtxu": 1697871660,
         "AngieantesGeles": 1729540955,
         "Belobal": 1734286498,
+        "Naniestelar": 1755824486,
         "LI21": 1715129331,
         "Oceano": 1723011270,
         "AngelMacksimilia": 1748122796,
@@ -132505,11 +135388,12 @@
     "Vivie82": {
       "index": 7823,
       "owner_key": "CNxstrVWHExLYcvbcmV8YHgqXsNxJFL4cseycTgq7ZsS",
-      "balance": 1001738,
+      "balance": 1023424,
       "membership_expire_on": 1712015901,
       "next_cert_issuable_on": 1693065238,
       "certs_received": {
         "Gerg": 1713044378,
+        "Cleannes": 1757036453,
         "Dedou82": 1713059565,
         "Kiwee": 1713475484,
         "Nelsan": 1712991541,
@@ -132545,7 +135429,7 @@
     "SolineMercier": {
       "index": 12066,
       "owner_key": "CP7zquRto1wu9WSofJoqkFJ6qQpLXnCq2YV5D4XMYpME",
-      "balance": 210933,
+      "balance": 250619,
       "membership_expire_on": 1709775554,
       "next_cert_issuable_on": 1682233176,
       "certs_received": {
@@ -132560,9 +135444,9 @@
     "AmauryBidel": {
       "index": 8816,
       "owner_key": "CPC19uUFJRJe8AiEQ2nMR3t2pnp4EAyeZbk8ejAjK7Wa",
-      "balance": 362524,
+      "balance": 84210,
       "membership_expire_on": 1717243825,
-      "next_cert_issuable_on": 1691729872,
+      "next_cert_issuable_on": 1696032014,
       "certs_received": {
         "Gregory": 1720150458,
         "Pepper": 1720158725,
@@ -132584,7 +135468,7 @@
     "Abu": {
       "index": 11565,
       "owner_key": "CPMwk4tNx3RHh4Dgtta4EgA1KxxC4XJybMGqjczP56HH",
-      "balance": 215136,
+      "balance": 254822,
       "membership_expire_on": 1707694736,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -132598,7 +135482,7 @@
     "tierce": {
       "index": 345,
       "owner_key": "CPP5X54wyJtpYNKHwf5k6GgiQFzwgig8MVqnz3qESMQF",
-      "balance": 3717175,
+      "balance": 3761141,
       "membership_expire_on": 1711890868,
       "next_cert_issuable_on": 1690799732,
       "certs_received": {
@@ -132617,7 +135501,7 @@
     "catherinebaudry": {
       "index": 3803,
       "owner_key": "CPYZ4bYjXfxh5UPcZkvLkExT7WkkijpKpEGGdxFKzPoC",
-      "balance": 1033643,
+      "balance": 1073329,
       "membership_expire_on": 1712513316,
       "next_cert_issuable_on": 1662889180,
       "certs_received": {
@@ -132627,7 +135511,6 @@
         "F0xl1n": 1744573646,
         "SamuelDOlivier": 1733224912,
         "JosianeSochon": 1725497315,
-        "Floalchimistefee": 1694057201,
         "MessagereDeLumiere": 1726625747,
         "MicheleChaplain": 1724979593,
         "FlorenceBoisjoly": 1702065440
@@ -132636,7 +135519,7 @@
     "Vi111": {
       "index": 9104,
       "owner_key": "CPh1wu15qy9HjwNe6Bz9AcYmTc1EFmzyBxXAtCsXipZj",
-      "balance": 390659,
+      "balance": 430345,
       "membership_expire_on": 1720803710,
       "next_cert_issuable_on": 1684758423,
       "certs_received": {
@@ -132651,7 +135534,7 @@
     "Emilio31": {
       "index": 11461,
       "owner_key": "CPh6APjJaqMhoZviWy5xzAF8Tq7JcD9msKMrkpKMvvnR",
-      "balance": 296282,
+      "balance": 335968,
       "membership_expire_on": 1704329226,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -132665,7 +135548,7 @@
     "LaTarara": {
       "index": 11815,
       "owner_key": "CPqGJNZ7GZMveuwBNmpvqvAP4FkLwvPJdHYPsTVPPjaT",
-      "balance": 177364,
+      "balance": 217050,
       "membership_expire_on": 1709224049,
       "next_cert_issuable_on": 1678382108,
       "certs_received": {
@@ -132697,7 +135580,7 @@
     "Artemizia": {
       "index": 10469,
       "owner_key": "CPzaEsCTGQ8NV9dZy7rRaWnqBTYTPU3q7YggfHDQoBrh",
-      "balance": 220105,
+      "balance": 259791,
       "membership_expire_on": 1698414433,
       "next_cert_issuable_on": 1682334604,
       "certs_received": {
@@ -132719,7 +135602,7 @@
     "HeleneDistillerie": {
       "index": 12533,
       "owner_key": "CQ5LzjCquoN6rvwV4brTgGWQQKUbwuqm6EJaUrSWPA7V",
-      "balance": 329992,
+      "balance": 530042,
       "membership_expire_on": 1714073535,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -132736,7 +135619,7 @@
     "Patappui": {
       "index": 4833,
       "owner_key": "CQGGE79Zd1tvT6oryA7uxjwsjt4Rh4o2qT1ZfaqeLaKv",
-      "balance": 689693,
+      "balance": 729379,
       "membership_expire_on": 1702037971,
       "next_cert_issuable_on": 1686121355,
       "certs_received": {
@@ -132752,14 +135635,13 @@
         "Danielle": 1738010477,
         "rANdonner": 1704484793,
         "Vigo": 1721239858,
-        "juliettesemilla": 1720470751,
-        "Gclaire": 1696410835
+        "juliettesemilla": 1720470751
       }
     },
     "Pascalelarsille": {
       "index": 6932,
       "owner_key": "CQUBLasPC4TEpBHK2ifUDcCfdajWXD95qiREX35bna1L",
-      "balance": 565738,
+      "balance": 605424,
       "membership_expire_on": 1699361589,
       "next_cert_issuable_on": 1678894191,
       "certs_received": {
@@ -132777,7 +135659,7 @@
     "PATRISS66": {
       "index": 1634,
       "owner_key": "CQUya3YQKqKyo6tKGy1k8wWjhMN4z5tJfUvadYrd75sV",
-      "balance": 1851298,
+      "balance": 1890984,
       "membership_expire_on": 1721419128,
       "next_cert_issuable_on": 1675306399,
       "certs_received": {
@@ -132791,9 +135673,9 @@
     "Rebe11": {
       "index": 9421,
       "owner_key": "CQctTvT1m82XqEd8Ek6B3ij8WhCTnTxxqH5Qut8W5TdG",
-      "balance": 352746,
-      "membership_expire_on": 1693687781,
-      "next_cert_issuable_on": 1670821975,
+      "balance": 289228,
+      "membership_expire_on": 1725486560,
+      "next_cert_issuable_on": 1694001916,
       "certs_received": {
         "Rachele": 1725262294,
         "Carole26": 1725686986,
@@ -132810,8 +135692,8 @@
     "Charlette2": {
       "index": 9488,
       "owner_key": "CQeuwWwTuQ4bBrUs11G3NXif6KC4MEJVAs7RT3tx7aQf",
-      "balance": 381289,
-      "membership_expire_on": 1693771169,
+      "balance": 384493,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1686798005,
       "certs_received": {
         "YLD56460": 1726014779,
@@ -132844,6 +135726,20 @@
         "dymoon": 1697002079
       }
     },
+    "Francesca99": {
+      "index": 13700,
+      "owner_key": "CQnyvJBaSENAhdsb2EuB2trLYPxiBFw3vZxMvWA1wSWb",
+      "balance": 17546,
+      "membership_expire_on": 1726601544,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Altheaagathe": 1758160789,
+        "KrisNissa": 1758164717,
+        "PorteduCiel": 1759210156,
+        "Verdurette06": 1758873425,
+        "MimiPAQ": 1758556096
+      }
+    },
     "jeromesabin": {
       "index": 455,
       "owner_key": "CQtYGQeHn6FSJSUYQNR7j8jPfQu1g7L3Uv2c8koh8B5E",
@@ -132855,29 +135751,33 @@
     "Cathylousouc": {
       "index": 9096,
       "owner_key": "CR85xFXtMrATj4Jb3B2wRFFe2puQhJFo8Ysrcw9M8wXV",
-      "balance": 190978,
+      "balance": 189664,
       "membership_expire_on": 1717422747,
-      "next_cert_issuable_on": 1688023443,
+      "next_cert_issuable_on": 1696154200,
       "certs_received": {
+        "Luciole": 1759278989,
         "BrigitteBC": 1741640202,
         "Permaor": 1733594012,
         "Toma": 1722541592,
+        "LilianeLilou": 1759445517,
         "marie3106": 1735254019,
         "Centifolia": 1722581373,
+        "Fanfan06": 1757436341,
         "PorteduCiel": 1722538954,
         "Flore66": 1722713386,
         "OtreB": 1739664831,
         "DanyNoisy": 1756504259,
         "Jawk": 1722668158,
+        "Jean-Massage": 1759370612,
         "Edith2213": 1724351995
       }
     },
     "gerard94": {
       "index": 40,
       "owner_key": "CRBxCJrTA6tmHsgt9cQh9SHcCc8w8q95YTp38CPHx2Uk",
-      "balance": 9524,
+      "balance": 22722,
       "membership_expire_on": 1724760475,
-      "next_cert_issuable_on": 1692019258,
+      "next_cert_issuable_on": 1695360565,
       "certs_received": {
         "lanoire": 1701502003,
         "cgeek": 1738469212,
@@ -132897,7 +135797,6 @@
         "lindsaymalytai": 1746228189,
         "fatimaespoir": 1739675254,
         "vit": 1724574098,
-        "Mententon": 1693892365,
         "AnneAmbles": 1740719132,
         "MarieBertheRanwet": 1701804474,
         "davidbp845": 1725606885,
@@ -132922,7 +135821,7 @@
     "SharonPeregrina": {
       "index": 9149,
       "owner_key": "CRFuCw7xzPkdNQ8VhorsCXapkJLAadJfYqEk94F5qvT3",
-      "balance": 244216,
+      "balance": 202402,
       "membership_expire_on": 1719337290,
       "next_cert_issuable_on": 1689999777,
       "certs_received": {
@@ -132945,7 +135844,7 @@
     "geantvert": {
       "index": 9019,
       "owner_key": "CRH6AUHC7DN7YMu8a2kuD3vE6RoWg5s85tah5FHHRSvq",
-      "balance": 381919,
+      "balance": 438243,
       "membership_expire_on": 1721758509,
       "next_cert_issuable_on": 1690691053,
       "certs_received": {
@@ -132977,8 +135876,8 @@
     "YukiSora": {
       "index": 9988,
       "owner_key": "CRRdhSv1iKUHQEKWfbu89KgvB2RPWEWhQdXU3YpzQpKt",
-      "balance": 332170,
-      "membership_expire_on": 1697640013,
+      "balance": 371856,
+      "membership_expire_on": 1726850880,
       "next_cert_issuable_on": 1673256316,
       "certs_received": {
         "espritlibredulac": 1737519735,
@@ -132992,7 +135891,7 @@
     "sagitto85": {
       "index": 3364,
       "owner_key": "CRUu7aALVYiMn1ku21A8tN11PUQY2RqAKk7D7CYXawvz",
-      "balance": 1154984,
+      "balance": 1194670,
       "membership_expire_on": 1721380222,
       "next_cert_issuable_on": 1662591099,
       "certs_received": {
@@ -133018,7 +135917,7 @@
     "HurielMercier": {
       "index": 12575,
       "owner_key": "CRjkuHhnpoVkHTPeg6ocXkK7GHpwDe6jHy2ERhFvX12A",
-      "balance": 166368,
+      "balance": 219554,
       "membership_expire_on": 1713649201,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -133032,7 +135931,7 @@
     "Sebontheroad": {
       "index": 12021,
       "owner_key": "CRnF5Q4Sx95wkrhcRwSTRhpJVg2RTHh5hKLbgt16t2FB",
-      "balance": 231270,
+      "balance": 270956,
       "membership_expire_on": 1710149128,
       "next_cert_issuable_on": 1682821173,
       "certs_received": {
@@ -133047,9 +135946,9 @@
     "Micheconte1947": {
       "index": 13118,
       "owner_key": "CRp9dnq8AUQgwHGMFnWVFzMBhFcZVs8CXTMabCQMKYL7",
-      "balance": 375122,
+      "balance": 414808,
       "membership_expire_on": 1719938796,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696407557,
       "certs_received": {
         "Mika90": 1751523845,
         "Stephmaya": 1751556999,
@@ -133061,7 +135960,7 @@
     "MarcoMiguel": {
       "index": 11706,
       "owner_key": "CS6ffByMvubeT7ocPw3Rxy2eGvG1rJUykugmyx5vBHMx",
-      "balance": 216736,
+      "balance": 256422,
       "membership_expire_on": 1708313179,
       "next_cert_issuable_on": 1677946465,
       "certs_received": {
@@ -133078,7 +135977,7 @@
     "Miladore": {
       "index": 12790,
       "owner_key": "CSDpSSXTsjxYA6gjaaD2ADKDW3We2m77jhLKkX5Xa9vv",
-      "balance": 97188,
+      "balance": 136874,
       "membership_expire_on": 1715535149,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -133093,7 +135992,7 @@
     "MadyK": {
       "index": 11222,
       "owner_key": "CSErpStc9trYKQx6CJMN2LCFFN8daCAYyq3LbNaZSvzR",
-      "balance": 888254,
+      "balance": 927940,
       "membership_expire_on": 1703357250,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -133109,14 +136008,15 @@
     "MAIANA": {
       "index": 9905,
       "owner_key": "CSKAsmeShofrVS4tdoiPq5SGMxEMwiXW1KN81LAkrZ3G",
-      "balance": 96643,
+      "balance": 44329,
       "membership_expire_on": 1721934127,
-      "next_cert_issuable_on": 1689672009,
+      "next_cert_issuable_on": 1694601558,
       "certs_received": {
         "ErickG_G": 1728713470,
         "Silvi": 1751237137,
         "mati": 1728667416,
         "Javilion": 1728629983,
+        "Sarieluz": 1758081854,
         "Alegria": 1727311827,
         "EstherEstrella": 1736906039,
         "EmmanuelZetace": 1728669722,
@@ -133137,7 +136037,7 @@
     "GudRune": {
       "index": 11119,
       "owner_key": "CSQRU1Xwn8cnYY3JzGPAkYHTTr5fxDGN7MUkzNetdPo5",
-      "balance": 250068,
+      "balance": 289754,
       "membership_expire_on": 1704294316,
       "next_cert_issuable_on": 1680925913,
       "certs_received": {
@@ -133154,7 +136054,7 @@
     "Sylv12": {
       "index": 11126,
       "owner_key": "CSRqQHEujzhEfsZqxxdrN7sfyeAajqznBrvQdWfQuHpM",
-      "balance": 217950,
+      "balance": 257636,
       "membership_expire_on": 1704490861,
       "next_cert_issuable_on": 1691214619,
       "certs_received": {
@@ -133178,9 +136078,9 @@
     "Berenice78": {
       "index": 13257,
       "owner_key": "CSWCaGa75CpP3GADs8L2E2DNUPz9dxpobHkJFCodXw2n",
-      "balance": 67096,
+      "balance": 124590,
       "membership_expire_on": 1722005189,
-      "next_cert_issuable_on": 1690949981,
+      "next_cert_issuable_on": 1696165788,
       "certs_received": {
         "ManelG": 1753722806,
         "Irene": 1753580509,
@@ -133194,15 +136094,16 @@
     "JeffApa2A": {
       "index": 13383,
       "owner_key": "CSYgSMqWLuz8Lb3mHWnuH94JMvxNCejZWdA4WdPo2J8d",
-      "balance": 31952,
+      "balance": 94166,
       "membership_expire_on": 1721768983,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696334251,
       "certs_received": {
         "HelloSunshine": 1755403342,
         "Takakra": 1753858709,
         "MyleneBN": 1753491727,
         "catmac": 1753842099,
         "Walter2000": 1754593480,
+        "CorsiWay": 1759547501,
         "Thiery": 1754264955
       }
     },
@@ -133217,8 +136118,8 @@
     "nox": {
       "index": 1070,
       "owner_key": "CShdDDHuMr8zT9DV2ChoyDRDJt67bJKGcoxHmJ77MawX",
-      "balance": 333223,
-      "membership_expire_on": 1695608949,
+      "balance": 342909,
+      "membership_expire_on": 1725359440,
       "next_cert_issuable_on": 1680568220,
       "certs_received": {
         "MamieCrypto": 1708474652,
@@ -133248,14 +136149,15 @@
     "ortie": {
       "index": 4272,
       "owner_key": "CT4MgaRa6tWXUKTBgKm2nH2seFA8ivLdfyq3VuaJ5iDJ",
-      "balance": 1932489,
+      "balance": 2005475,
       "membership_expire_on": 1714170688,
-      "next_cert_issuable_on": 1692804475,
+      "next_cert_issuable_on": 1695713512,
       "certs_received": {
         "gberdal": 1744777416,
         "Benvaudeurs": 1731632035,
         "Icaunaise": 1716092342,
-        "MamieCrypto": 1700529886,
+        "MamieCrypto": 1759179543,
+        "Eric": 1757361783,
         "Lovylou": 1745599039,
         "Cyrius666": 1717343267,
         "LauQui": 1729399774,
@@ -133263,9 +136165,10 @@
         "VBVF": 1731900389,
         "NathNath": 1736319245,
         "Etolol": 1736319245,
-        "DCat": 1701404182,
+        "DCat": 1758319115,
         "Bhaerynden": 1725922500,
         "MarinaM": 1736844790,
+        "Flobleu": 1758659001,
         "Chrissbrl": 1747599535,
         "Spyou": 1747204846,
         "Luna": 1748301706,
@@ -133277,6 +136180,7 @@
         "Stranger": 1732137265,
         "Framboise89": 1756600889,
         "Clo": 1745823811,
+        "Guillermo89": 1759417625,
         "Cassie": 1738387980,
         "Ninette89": 1717025598,
         "Mia": 1733549546,
@@ -133287,9 +136191,9 @@
     "Katecat": {
       "index": 12230,
       "owner_key": "CT81iJUaY5jC1uKG3h9XH561CjtjcF1SX9cNVrHncrFV",
-      "balance": 82432,
+      "balance": 34118,
       "membership_expire_on": 1711735870,
-      "next_cert_issuable_on": 1693327602,
+      "next_cert_issuable_on": 1696252438,
       "certs_received": {
         "Alfybe": 1745217533,
         "MarcelleA": 1746664395,
@@ -133312,7 +136216,7 @@
     "Luciepi": {
       "index": 10716,
       "owner_key": "CTBVMyoEYndDDQQko4pUQrPVXuvSqocUU6tmqeUCaC9C",
-      "balance": 277938,
+      "balance": 317624,
       "membership_expire_on": 1700266018,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -133329,7 +136233,7 @@
     "JeanPierreCharles": {
       "index": 3369,
       "owner_key": "CTMGBspxizmHdxbYAr8DYYxMvowG4vf7aMp444F5XLC",
-      "balance": 1236810,
+      "balance": 1276496,
       "membership_expire_on": 1719514230,
       "next_cert_issuable_on": 1665061354,
       "certs_received": {
@@ -133347,7 +136251,7 @@
       "owner_key": "CTMvmWR42K2eDg9rcEoX1rSjmukFZfXy1g5cvCkvYs3",
       "balance": 312064,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631411176,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Juju21": 1706896386
       }
@@ -133355,7 +136259,7 @@
     "Guenoel": {
       "index": 545,
       "owner_key": "CTQZd3h8rarJHkNrEztJzgeRJqCHSKnTjeFTB5tDy3TU",
-      "balance": 1340095,
+      "balance": 1401341,
       "membership_expire_on": 1708889311,
       "next_cert_issuable_on": 1686796010,
       "certs_received": {
@@ -133369,18 +136273,31 @@
         "fatimaespoir": 1711762369,
         "Damiano": 1701936126,
         "FilouLibre59": 1741862601,
-        "Corinne": 1696544484,
         "martine26": 1702253043,
         "Dilou": 1696816674,
         "psycotox80": 1710611268
       }
     },
+    "CorsiWay": {
+      "index": 13741,
+      "owner_key": "CTSAvAQzrUDg9AaGtUGPZm9D1G5f867t41sMjVB5Dzmq",
+      "balance": 7734,
+      "membership_expire_on": 1727638369,
+      "next_cert_issuable_on": 1696504301,
+      "certs_received": {
+        "Takakra": 1759346227,
+        "catmac": 1759377022,
+        "Walter2000": 1759512458,
+        "JeffApa2A": 1759377451,
+        "Thiery": 1759544993
+      }
+    },
     "Fannouch": {
       "index": 10726,
       "owner_key": "CTbHCaqCQsqRhM5io8S7oq4e3a2Pk3hznp34Jb1A1Kp6",
-      "balance": 265279,
+      "balance": 304965,
       "membership_expire_on": 1700591779,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694004527,
       "certs_received": {
         "virelangue": 1733113851,
         "juliette": 1733202160,
@@ -133392,9 +136309,9 @@
     "TonyCoco": {
       "index": 10337,
       "owner_key": "CTeEZTve1TJ27DddCuEwuWqCnzkdkcPpGBDt7XEfDHAk",
-      "balance": 109636,
-      "membership_expire_on": 1699629207,
-      "next_cert_issuable_on": 1692491204,
+      "balance": 149322,
+      "membership_expire_on": 1727191398,
+      "next_cert_issuable_on": 1695706095,
       "certs_received": {
         "cicou": 1731481176,
         "MayaDN": 1731439576,
@@ -133406,7 +136323,7 @@
     "MAILYSE54": {
       "index": 13143,
       "owner_key": "CTmKz4jHGVR4CbPpyYeMPHKAfuDsk59iCkdqkjR7cAdR",
-      "balance": 53400,
+      "balance": 99286,
       "membership_expire_on": 1720180817,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -133420,7 +136337,7 @@
     "yvesm31g1": {
       "index": 8769,
       "owner_key": "CTobxen9wk9UgNGgDFrSTLaRcQfRdB2sMVxM7r5W9dcg",
-      "balance": 417014,
+      "balance": 456700,
       "membership_expire_on": 1715627153,
       "next_cert_issuable_on": 1684141553,
       "certs_received": {
@@ -133444,7 +136361,7 @@
     "IsaMontroy17": {
       "index": 8959,
       "owner_key": "CUJJkfKrri4yQ6Vug1GiJ4iyfnjbJCn3BuMmEvb3BGNn",
-      "balance": 422341,
+      "balance": 462027,
       "membership_expire_on": 1718560987,
       "next_cert_issuable_on": 1666670076,
       "certs_received": {
@@ -133459,9 +136376,9 @@
     "lapivoine": {
       "index": 2768,
       "owner_key": "CURL9MwaRVsySFtTkzWDKcrSaBLVEGcieG93GceYtHSt",
-      "balance": 925878,
+      "balance": 1038964,
       "membership_expire_on": 1714760055,
-      "next_cert_issuable_on": 1691581100,
+      "next_cert_issuable_on": 1693999535,
       "certs_received": {
         "Math007": 1746572314,
         "RaieManta": 1715413081,
@@ -133493,7 +136410,7 @@
     "Gruffain": {
       "index": 8656,
       "owner_key": "CUgkZ7kQjaew8izGkX2onuKjZdXRFyGrbCtTqGQUr3mC",
-      "balance": 447216,
+      "balance": 423902,
       "membership_expire_on": 1713802061,
       "next_cert_issuable_on": 1677927683,
       "certs_received": {
@@ -133511,7 +136428,7 @@
     "WilfriedGuillemenet": {
       "index": 9819,
       "owner_key": "CUgvew5116P6zEWzmSGZkVfhZYxzjaSGSsVREkqgML2R",
-      "balance": 576560,
+      "balance": 616246,
       "membership_expire_on": 1721144286,
       "next_cert_issuable_on": 1692665182,
       "certs_received": {
@@ -133534,7 +136451,7 @@
     "Johanne": {
       "index": 7538,
       "owner_key": "CUhU9Atj1gQ3MFWi3FNGYqvph5V5WW2N9KsYFiK6zaSo",
-      "balance": 439349,
+      "balance": 479035,
       "membership_expire_on": 1707043080,
       "next_cert_issuable_on": 1688370657,
       "certs_received": {
@@ -133551,7 +136468,7 @@
     "thomacharpicard": {
       "index": 12832,
       "owner_key": "CUidFbCaXgmgyqGA8LwWGrh1cpsSLE7FUasHhEgvEnjo",
-      "balance": 92680,
+      "balance": 132366,
       "membership_expire_on": 1716147751,
       "next_cert_issuable_on": 1687411668,
       "certs_received": {
@@ -133566,7 +136483,7 @@
     "CharlotteCdP": {
       "index": 5942,
       "owner_key": "CUjrqRvsL7nuHSu17nxsL29CKBxRQTxBo4kmFtBpX1u5",
-      "balance": 635340,
+      "balance": 675026,
       "membership_expire_on": 1700514181,
       "next_cert_issuable_on": 1669303574,
       "certs_received": {
@@ -133620,9 +136537,9 @@
     "veracachan": {
       "index": 9023,
       "owner_key": "CUw9Qod2pmh9N9vQFx2AudbtScSiFyjTcWjaHzKwXJUJ",
-      "balance": 206679,
+      "balance": 231108,
       "membership_expire_on": 1718761253,
-      "next_cert_issuable_on": 1687071922,
+      "next_cert_issuable_on": 1696292048,
       "certs_received": {
         "EmaPom": 1721705042,
         "Lucas_Desroches": 1720840523,
@@ -133635,8 +136552,8 @@
     "CatherineLF": {
       "index": 6000,
       "owner_key": "CUwEduVSSLtnnM9zyYeY3QibAvqwrifbLajWjW8ZJfuX",
-      "balance": 815917,
-      "membership_expire_on": 1695167441,
+      "balance": 836209,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1669176396,
       "certs_received": {
         "IsabelleGlorian": 1697726996,
@@ -133671,7 +136588,7 @@
     "minnie": {
       "index": 12632,
       "owner_key": "CV1P86rJJBhizd25EnkJqHAboierbi1SjdVc5FkosTwb",
-      "balance": 128980,
+      "balance": 168666,
       "membership_expire_on": 1713311748,
       "next_cert_issuable_on": 1692979613,
       "certs_received": {
@@ -133685,7 +136602,7 @@
     "fauvettejonathan": {
       "index": 8677,
       "owner_key": "CV2K6JkWigPeEBPqiy2MtnrCEwrueqYx5GBQrGtAyxQ3",
-      "balance": 300065,
+      "balance": 339751,
       "membership_expire_on": 1715026634,
       "next_cert_issuable_on": 1683541034,
       "certs_received": {
@@ -133701,8 +136618,8 @@
     "FredericBisou": {
       "index": 2174,
       "owner_key": "CV2yoE7goRz1ejfdmowvg4LRvpE7E5GjfeA45Ux4BM6n",
-      "balance": 317202,
-      "membership_expire_on": 1699320799,
+      "balance": 16888,
+      "membership_expire_on": 1727516410,
       "next_cert_issuable_on": 1673871296,
       "certs_received": {
         "Kristen": 1732601403,
@@ -133716,7 +136633,7 @@
     "sonialarraz": {
       "index": 9664,
       "owner_key": "CV3M8XuLDE1XgexQ39N2eDdEZjDxnNhnUiqu5gRVws5E",
-      "balance": 74127,
+      "balance": 42115,
       "membership_expire_on": 1721345667,
       "next_cert_issuable_on": 1687529280,
       "certs_received": {
@@ -133755,14 +136672,12 @@
     "azylis": {
       "index": 4308,
       "owner_key": "CV6WM7iuhpyw3yjetULaX6zyCt1ouGu5yGQK4ZhAJjs",
-      "balance": 981381,
-      "membership_expire_on": 0,
+      "balance": 1013591,
+      "membership_expire_on": 1725641344,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
-        "Adri46": 1694051130,
         "will46": 1744869694,
         "dineflore": 1744869694,
-        "Jcteulier": 1693687599,
         "malou": 1744869694,
         "Vony": 1715980232,
         "SylvieC": 1713157043,
@@ -133774,7 +136689,7 @@
     "Olivier1": {
       "index": 7093,
       "owner_key": "CVCpLuU7ZCFu2dkdxVT6RZY93UvqK8n7zx9tkM46eCcx",
-      "balance": 504314,
+      "balance": 544000,
       "membership_expire_on": 1715121352,
       "next_cert_issuable_on": 1655604109,
       "certs_received": {
@@ -133810,7 +136725,7 @@
     "KarineS": {
       "index": 8934,
       "owner_key": "CVK7U5aDyHv5HUGnn92gCodJdLKpsdygccEdwXosCvtQ",
-      "balance": 417819,
+      "balance": 457505,
       "membership_expire_on": 1722856800,
       "next_cert_issuable_on": 1679383262,
       "certs_received": {
@@ -133824,9 +136739,9 @@
     "maceo": {
       "index": 9060,
       "owner_key": "CVLeGQnLY2L3GRXB7P6ZXeuAsCW8zQmxro6VgUspVeT1",
-      "balance": 426898,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1663679799,
+      "balance": 463380,
+      "membership_expire_on": 1725323833,
+      "next_cert_issuable_on": 1695257774,
       "certs_received": {
         "ClaireAzur": 1722297707,
         "Feerique": 1726873466,
@@ -133848,14 +136763,15 @@
     "Joss": {
       "index": 7125,
       "owner_key": "CVXWyjXSQDZVRAHEmjyff9FDgqfAkNcN3CYDdvfiacnt",
-      "balance": 567045,
+      "balance": 606731,
       "membership_expire_on": 1700699307,
-      "next_cert_issuable_on": 1684478981,
+      "next_cert_issuable_on": 1695477466,
       "certs_received": {
         "CELIOCTAVE": 1706658625,
         "Elyse33": 1745718482,
         "s00999": 1708839410,
         "Smayah": 1708931587,
+        "Gerard-Michel-3": 1758833189,
         "boucledecieux": 1707957030,
         "tontonjimmy": 1707953841,
         "HappyAmina": 1747523049,
@@ -133865,9 +136781,9 @@
     "Cyrian": {
       "index": 13270,
       "owner_key": "CVd4n2h9dtkgstByG2WyAwm87DoGn3d72yTUwSsQyRzY",
-      "balance": 36244,
+      "balance": 76930,
       "membership_expire_on": 1721488730,
-      "next_cert_issuable_on": 1692712056,
+      "next_cert_issuable_on": 1696475222,
       "certs_received": {
         "Lilibeth79": 1753509368,
         "DomMembre": 1753474055,
@@ -133875,7 +136791,8 @@
         "CatherineAiless": 1753296412,
         "annemarie9": 1753220602,
         "TheoVS": 1753690841,
-        "Nyriel": 1753216722
+        "Nyriel": 1753216722,
+        "Antares13": 1758165500
       }
     },
     "guillaumed": {
@@ -133886,11 +136803,6 @@
       "next_cert_issuable_on": 1688575918,
       "certs_received": {
         "Jean-Marie": 1696873514,
-        "myt": 1695523040,
-        "daryl": 1695161663,
-        "nuvolari": 1695517237,
-        "LaureFemmeVanne": 1695352118,
-        "Pascale72": 1695315617,
         "Gerardl": 1751845215,
         "Dolphins": 1746254798,
         "Sylvere72": 1752512693,
@@ -133908,7 +136820,7 @@
     "880astro": {
       "index": 10119,
       "owner_key": "CVxSnB1DiiPEHtUqPAKbbWt8smrcgmkoQkpYn69wXary",
-      "balance": 527921,
+      "balance": 554407,
       "membership_expire_on": 1696767247,
       "next_cert_issuable_on": 1691039915,
       "certs_received": {
@@ -133927,7 +136839,7 @@
     "didilem": {
       "index": 7500,
       "owner_key": "CVymGH9ZVEK7d7RKkmQYagUZEtSbkbpsKEW34Vkar4v5",
-      "balance": 541240,
+      "balance": 580926,
       "membership_expire_on": 1709583115,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -133941,7 +136853,7 @@
     "Tousceventv": {
       "index": 3276,
       "owner_key": "CW17JJrggzsSXo5SpoaBoF75Z1CutwhzkdpA8w2wJFC",
-      "balance": 1319522,
+      "balance": 1359208,
       "membership_expire_on": 1705586968,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -133963,7 +136875,7 @@
     "SIUX": {
       "index": 7774,
       "owner_key": "CW8XLxw6FQ3Jamz2sbktHZWzUuCAyFbX7o8hgLPXq4oX",
-      "balance": 479092,
+      "balance": 518778,
       "membership_expire_on": 1711477548,
       "next_cert_issuable_on": 1688484552,
       "certs_received": {
@@ -133993,7 +136905,7 @@
     "Alicedelahaut": {
       "index": 2150,
       "owner_key": "CWHnZSoLNJC2GU85sFsFrrzuq4AjnJdWeQLcmRF7Hiks",
-      "balance": 1595494,
+      "balance": 1635180,
       "membership_expire_on": 1718292677,
       "next_cert_issuable_on": 1686810559,
       "certs_received": {
@@ -134007,7 +136919,7 @@
     "Anne1962": {
       "index": 12923,
       "owner_key": "CWKNjCon43KHuoGkqhu3SEYrEtQV62LNpbMgnSqCewv2",
-      "balance": 79032,
+      "balance": 118718,
       "membership_expire_on": 1718556214,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -134032,7 +136944,7 @@
     "LauraDelaunay": {
       "index": 3013,
       "owner_key": "CWUCpxKSE1KF7GkuJvLk5ViQvrjwxrpaFq8smbLmehWM",
-      "balance": 1165867,
+      "balance": 1205553,
       "membership_expire_on": 1702160926,
       "next_cert_issuable_on": 1670680141,
       "certs_received": {
@@ -134056,7 +136968,7 @@
     "Cou-net": {
       "index": 5869,
       "owner_key": "CWgoqSkkMNHVYsk3UZ1W5pW7aVbjsL7dezKNQ5vDtKEj",
-      "balance": 546633,
+      "balance": 586319,
       "membership_expire_on": 1721156434,
       "next_cert_issuable_on": 1654615648,
       "certs_received": {
@@ -134069,7 +136981,6 @@
         "Michellecuyer26": 1719121543,
         "JeanTibou": 1717644618,
         "Habibati": 1697842635,
-        "Max": 1693712895,
         "sylvainT": 1697834686,
         "ReMaLoup": 1708638119,
         "Habibi": 1697837725,
@@ -134081,7 +136992,7 @@
     "AmeRive": {
       "index": 6905,
       "owner_key": "CWhb93t9ire8ojr2EUTG1bceWXtVgB66Br3SF9EdAh1J",
-      "balance": 549875,
+      "balance": 589561,
       "membership_expire_on": 1710859297,
       "next_cert_issuable_on": 1655006227,
       "certs_received": {
@@ -134098,9 +137009,9 @@
     "jjange": {
       "index": 6456,
       "owner_key": "CWipynxire1afMX2ZJWjhfjE5WcGeKjqrYNkVHwmT5XG",
-      "balance": 716856,
+      "balance": 686692,
       "membership_expire_on": 1724611840,
-      "next_cert_issuable_on": 1684930982,
+      "next_cert_issuable_on": 1695290713,
       "certs_received": {
         "Jed": 1743828554,
         "CyrilPommier": 1741735475,
@@ -134178,7 +137089,7 @@
     "BenoitFeryn": {
       "index": 6861,
       "owner_key": "CWsM6374Ps4byCAsWjPMtUs3EbHzVKFPvfvu9HWWamP3",
-      "balance": 778071,
+      "balance": 817757,
       "membership_expire_on": 1703232630,
       "next_cert_issuable_on": 1681142191,
       "certs_received": {
@@ -134198,7 +137109,7 @@
     "AniA": {
       "index": 12645,
       "owner_key": "CWxnRKuBvT2QeiWEm5RJSnzEkdgdXEqDTpj25GsJpY5x",
-      "balance": 119412,
+      "balance": 159098,
       "membership_expire_on": 1715021261,
       "next_cert_issuable_on": 1686565367,
       "certs_received": {
@@ -134222,7 +137133,7 @@
     "Lucie": {
       "index": 242,
       "owner_key": "CXAzKCuLHzh2Zegx1LgKZLr1NctZSj8vZY3U4HxbmoR9",
-      "balance": 2104824,
+      "balance": 2144510,
       "membership_expire_on": 1709494428,
       "next_cert_issuable_on": 1682943951,
       "certs_received": {
@@ -134237,7 +137148,7 @@
     "Kabkab": {
       "index": 12261,
       "owner_key": "CXKj8Xy4cMkw7iAs4TMFEgpfr7Px254C5y2XNBDmk6nk",
-      "balance": 162336,
+      "balance": 194522,
       "membership_expire_on": 1711202170,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -134252,11 +137163,10 @@
     "Val1695": {
       "index": 5919,
       "owner_key": "CXRFockPePrC2RdYgRByU4Sm6gaAKEag2UQNgn42geSA",
-      "balance": 289995,
+      "balance": 329681,
       "membership_expire_on": 1718034339,
-      "next_cert_issuable_on": 1692978574,
+      "next_cert_issuable_on": 1696711689,
       "certs_received": {
-        "olione": 1695948072,
         "Patidoux": 1740515595,
         "Beatricebia": 1733650694,
         "DominiqueCuvelier": 1702102002,
@@ -134265,17 +137175,14 @@
         "AmandineDupret": 1701905085,
         "Francoisheb": 1725041526,
         "PetitArbre": 1715719816,
-        "Andre208": 1695957124,
         "LNC89": 1717656742,
-        "Calakendi": 1695528728,
-        "GeneVieve": 1694245394,
         "Patoun": 1700433327
       }
     },
     "Maly": {
       "index": 7189,
       "owner_key": "CXZWbQPfqKWr3zbqNZdRh5m6hAEj4jPdzSmrvvDSCzyF",
-      "balance": 437761,
+      "balance": 477447,
       "membership_expire_on": 1722434850,
       "next_cert_issuable_on": 1648172690,
       "certs_received": {
@@ -134289,7 +137196,7 @@
     "Hermione": {
       "index": 11155,
       "owner_key": "CXaaoWNQPWH5FtdtzFPndYrCkuDwiBSEYkbgs12vJrNM",
-      "balance": 292033,
+      "balance": 331719,
       "membership_expire_on": 1702815938,
       "next_cert_issuable_on": 1673867510,
       "certs_received": {
@@ -134307,7 +137214,7 @@
     "tkayna": {
       "index": 4541,
       "owner_key": "CXc2euN8bZPa6dGLe5wYPSs2mEvvx3GNtcG4SSQDsSGD",
-      "balance": 756522,
+      "balance": 796208,
       "membership_expire_on": 1700372875,
       "next_cert_issuable_on": 1681681416,
       "certs_received": {
@@ -134321,7 +137228,7 @@
     "AtmaRajprem": {
       "index": 4014,
       "owner_key": "CXkF5SKYYJRAXeodjrSHDRUr9qPugmMxhRHs4ZGTDSUE",
-      "balance": 1007871,
+      "balance": 1008057,
       "membership_expire_on": 1714659292,
       "next_cert_issuable_on": 1689064691,
       "certs_received": {
@@ -134337,13 +137244,14 @@
         "Coco46": 1744407140,
         "Annachronik": 1721607055,
         "Bzh38": 1749985695,
+        "Susheela": 1757157959,
         "Puma": 1728715675
       }
     },
     "AlineLecoeur": {
       "index": 8757,
       "owner_key": "CXomevz8PiRdYsbxZMKMd3SbCA1DRCTBdSdK4cMkw8nf",
-      "balance": 89319,
+      "balance": 106705,
       "membership_expire_on": 1714822198,
       "next_cert_issuable_on": 1683852369,
       "certs_received": {
@@ -134370,7 +137278,7 @@
     "francis12": {
       "index": 10459,
       "owner_key": "CXum4t6EWBYinYfWkf5Z7PidRW8Eq88H2dWRbmFGr17A",
-      "balance": 191164,
+      "balance": 230850,
       "membership_expire_on": 1700348636,
       "next_cert_issuable_on": 1688746388,
       "certs_received": {
@@ -134386,7 +137294,7 @@
     "MarieAnneDedreuilMonet": {
       "index": 11575,
       "owner_key": "CXzZTJrou2azZLLM4isAwSTQxi29N1Chvi55mvfBGLSR",
-      "balance": 213267,
+      "balance": 252953,
       "membership_expire_on": 1707334748,
       "next_cert_issuable_on": 1692495688,
       "certs_received": {
@@ -134402,7 +137310,7 @@
     "HereitiBernard": {
       "index": 8559,
       "owner_key": "CY3kR1rirWXyCYZStmJet68d9BAnmTehDgWaoxmJz8dq",
-      "balance": 682236,
+      "balance": 721922,
       "membership_expire_on": 1710270579,
       "next_cert_issuable_on": 1680563175,
       "certs_received": {
@@ -134425,15 +137333,14 @@
       "certs_received": {
         "vit": 1710481813,
         "Paulart": 1711412582,
-        "TimeoDG": 1693875530,
         "DelphineBougie": 1710912375
       }
     },
     "Juliette": {
       "index": 411,
       "owner_key": "CYA4zi3hyXX5Bw4zPDK9MHuGjus4qcsm6YWh7uYKYyH4",
-      "balance": 1837485,
-      "membership_expire_on": 1696496890,
+      "balance": 1873937,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689302327,
       "certs_received": {
         "verolodeve": 1728199372,
@@ -134447,35 +137354,34 @@
     "PhilippeGuillemant": {
       "index": 5367,
       "owner_key": "CYBWuyGmPQfYp7Y5BGMprxjbPZVApkfDCeSXyPrjzvjA",
-      "balance": 1852872,
+      "balance": 1898258,
       "membership_expire_on": 1721598557,
       "next_cert_issuable_on": 1674543830,
       "certs_received": {
         "kapis": 1717127756,
-        "SophSav": 1695331520,
         "Ninamaste": 1723784789,
         "Gabriel51": 1739297870,
         "HugoTrentesaux": 1716924103,
         "DanielVienne": 1730523280,
         "MioPalmon988": 1733356144,
+        "fanfan": 1758786042,
+        "Vinciane": 1759462243,
         "JeanLucGAUTHIER": 1726107566,
         "Monhommelibre": 1738364204,
         "jnaroun": 1698612624,
         "Habibati": 1751150588,
         "Max": 1721121510,
         "GeneVieve": 1698980176,
-        "sylvainT": 1695345881,
         "G1Mourka": 1735883371,
         "Gclaire": 1705434296,
         "Jean-Massage": 1732844157,
-        "JulietteChamagne": 1696644359,
         "ArianeRiveros": 1698374726
       }
     },
     "boyeshua": {
       "index": 4346,
       "owner_key": "CYBXNqnfG9oTc2DVfFNMdPuforDq9fJe4G3BjDEqR5K1",
-      "balance": 873710,
+      "balance": 913396,
       "membership_expire_on": 1701198143,
       "next_cert_issuable_on": 1671269760,
       "certs_received": {
@@ -134493,7 +137399,7 @@
     "Annblue": {
       "index": 7635,
       "owner_key": "CYHtoqWRk6UTBV5GG9x7wVqk66svE6PVjL3Awoz8aHfZ",
-      "balance": 383058,
+      "balance": 414744,
       "membership_expire_on": 1710879309,
       "next_cert_issuable_on": 1692689145,
       "certs_received": {
@@ -134530,28 +137436,26 @@
     "ecureuildu10": {
       "index": 6094,
       "owner_key": "CYJr7gmeqHg2JXz9GNe3UGSHcwhwxr9XfYoBRq6T5pge",
-      "balance": 648811,
-      "membership_expire_on": 1696890308,
-      "next_cert_issuable_on": 1655776843,
+      "balance": 690497,
+      "membership_expire_on": 1725056912,
+      "next_cert_issuable_on": 1693571558,
       "certs_received": {
         "Orchideedu10": 1697766485,
         "Eric": 1700023644,
         "LiliMag": 1698982745,
         "CecileM": 1725566004,
-        "Lucas_Desroches": 1696456141,
         "Brigitte": 1698281923,
         "D-Lyre": 1700084440,
         "Marisa": 1700029666,
-        "Will_Desroches": 1700120230,
-        "Atua": 1696559144
+        "Will_Desroches": 1700120230
       }
     },
     "PascaleM": {
       "index": 893,
       "owner_key": "CYPsYTdt87Tx6cCiZs9KD4jqPgYxbcVEqVZpRgJ9jjoV",
-      "balance": 1537582,
+      "balance": 1580968,
       "membership_expire_on": 1719534662,
-      "next_cert_issuable_on": 1692017318,
+      "next_cert_issuable_on": 1696344441,
       "certs_received": {
         "DomRomy20": 1746915188,
         "Elorac": 1749486704,
@@ -134559,7 +137463,6 @@
         "Dom": 1717127756,
         "yasminaB": 1752804202,
         "MarieAmelie": 1733952787,
-        "jeanferreira": 1696142921,
         "KRIMAK03": 1708326523,
         "DCat": 1751148772,
         "Naxaia13": 1717524333,
@@ -134572,8 +137475,8 @@
     "JosunePP": {
       "index": 10166,
       "owner_key": "CYVY4642eXPNKMeFS1Ht1iAfKLJpu6Pg9b8HiQccv5iY",
-      "balance": 89787,
-      "membership_expire_on": 1698873325,
+      "balance": 40073,
+      "membership_expire_on": 1725498369,
       "next_cert_issuable_on": 1688090272,
       "certs_received": {
         "omm": 1748318307,
@@ -134596,7 +137499,7 @@
     "BisQI": {
       "index": 5863,
       "owner_key": "CYY5pJw8RW6nfNGxEfZ9pkwcsngfQKqWW41XgqsWHzha",
-      "balance": 266868,
+      "balance": 106554,
       "membership_expire_on": 1719149713,
       "next_cert_issuable_on": 1680608866,
       "certs_received": {
@@ -134628,9 +137531,9 @@
     "Parissse": {
       "index": 13374,
       "owner_key": "CYaHzFb8PVmoT2VSo76qR1uMF7xU91v3KuaWaYdJuaPa",
-      "balance": 18588,
+      "balance": 41274,
       "membership_expire_on": 1723589312,
-      "next_cert_issuable_on": 1692236263,
+      "next_cert_issuable_on": 1694358030,
       "certs_received": {
         "nio": 1755220483,
         "Gioelina": 1755148464,
@@ -134642,11 +137545,12 @@
     "Jontxu67": {
       "index": 10227,
       "owner_key": "CYbCqMHnyzwbYSLnWi1RVjyZv69DhL9TxqEq39nbeKB4",
-      "balance": 135990,
+      "balance": 69076,
       "membership_expire_on": 1699104382,
-      "next_cert_issuable_on": 1693132225,
+      "next_cert_issuable_on": 1693979293,
       "certs_received": {
         "kapis": 1753993433,
+        "omm": 1756885382,
         "MonyKan": 1747711259,
         "EstefaniaSainz": 1732919110,
         "COLYBRY": 1753140706,
@@ -134698,7 +137602,7 @@
     "rubin": {
       "index": 9949,
       "owner_key": "CYx5sb5sSrv9mT3V4DdbuYFNHzbP55jqSVjc5BQJXF1K",
-      "balance": 313993,
+      "balance": 353679,
       "membership_expire_on": 1696969303,
       "next_cert_issuable_on": 1671544977,
       "certs_received": {
@@ -134713,7 +137617,7 @@
     "Pranam": {
       "index": 12820,
       "owner_key": "CZ1Mw2sGoCgtzrCnZuYk54aoSKr7n8KNkeW9ZM2sbaQo",
-      "balance": 92916,
+      "balance": 132602,
       "membership_expire_on": 1716341381,
       "next_cert_issuable_on": 1687575189,
       "certs_received": {
@@ -134727,7 +137631,7 @@
     "colombine": {
       "index": 12633,
       "owner_key": "CZ4cRpEJzdfidox3XJhsTXM6Mpk9mRem1m1CuuuZemwx",
-      "balance": 124074,
+      "balance": 163760,
       "membership_expire_on": 1715103445,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -134756,7 +137660,7 @@
     "Mariarima": {
       "index": 8891,
       "owner_key": "CZAnpHKEFiqsUUqP3eMMeZkhKkhd1rEyQP2bdtJoLqTT",
-      "balance": 323984,
+      "balance": 366503,
       "membership_expire_on": 1714201020,
       "next_cert_issuable_on": 1693100268,
       "certs_received": {
@@ -134771,6 +137675,7 @@
         "Ninon3000": 1749605546,
         "Josepeuta": 1724926125,
         "Semilla": 1719681540,
+        "Belobal": 1758401160,
         "Estherm": 1720154417,
         "patbal": 1721167107,
         "Meg": 1742661940,
@@ -134780,6 +137685,7 @@
         "Saporteta": 1735330594,
         "Montse": 1752085458,
         "maga65": 1719387818,
+        "pilarart": 1757572708,
         "Johann": 1749604788,
         "VivienProuvot": 1721078674,
         "Duke": 1749605172,
@@ -134799,7 +137705,7 @@
     "BoYuexi": {
       "index": 925,
       "owner_key": "CZBvz7Rcz5jL9U1Fivjag1x8wd9e6acAe4twgUBWsF7V",
-      "balance": 1558961,
+      "balance": 1598647,
       "membership_expire_on": 1718410001,
       "next_cert_issuable_on": 1656033483,
       "certs_received": {
@@ -134814,7 +137720,7 @@
     "Moun": {
       "index": 8652,
       "owner_key": "CZCQaCxj2cymJevyJFjRX56n331SFzoA7ZUEdM1QZzwT",
-      "balance": 436883,
+      "balance": 476569,
       "membership_expire_on": 1720030628,
       "next_cert_issuable_on": 1681966966,
       "certs_received": {
@@ -134831,7 +137737,7 @@
     "Jb11": {
       "index": 4275,
       "owner_key": "CZH7uB5b7331z4s87piVv8AxvTP7vW8PMeVy9nKBQZpN",
-      "balance": 745000,
+      "balance": 784686,
       "membership_expire_on": 1722515347,
       "next_cert_issuable_on": 1673219371,
       "certs_received": {
@@ -134846,15 +137752,14 @@
     "MartineBlinGarry": {
       "index": 406,
       "owner_key": "CZPoSJa3EJv9gTj8BW8VzaEhfgwDp2DJCgxG6boD1eXF",
-      "balance": 1352100,
+      "balance": 1391786,
       "membership_expire_on": 1714781692,
       "next_cert_issuable_on": 1683296092,
       "certs_received": {
-        "AlainLebrun": 1696384661,
+        "Aude49": 1758489773,
+        "AlainLebrun": 1758425689,
         "LuciaKorosiova": 1730276275,
-        "AnneAmbles": 1695105438,
-        "Floalchimistefee": 1695843981,
-        "AbelGilles": 1696036462,
+        "AnneAmbles": 1757754218,
         "Nono51": 1733980920
       }
     },
@@ -134869,7 +137774,7 @@
     "Alekalix": {
       "index": 12373,
       "owner_key": "CZWdAKvXHecaJtvxJSDfqkgN2ZxpyozaiJ6qxjKF6uWj",
-      "balance": 135248,
+      "balance": 174934,
       "membership_expire_on": 1712422850,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -134883,7 +137788,7 @@
     "Violette26": {
       "index": 5989,
       "owner_key": "CZafZfiW9txYKdFus6g2UA3WCKa8ZyvsmzKPhRqYd693",
-      "balance": 627526,
+      "balance": 667212,
       "membership_expire_on": 1700174448,
       "next_cert_issuable_on": 1669951182,
       "certs_received": {
@@ -134911,7 +137816,7 @@
     "dewaneric": {
       "index": 8866,
       "owner_key": "CZeySAFWevBdHksVN8cAbV9MKacg79uuwH8GejJtNEHd",
-      "balance": 300251,
+      "balance": 339937,
       "membership_expire_on": 1715020281,
       "next_cert_issuable_on": 1683375875,
       "certs_received": {
@@ -134925,7 +137830,7 @@
     "CristalCeleste": {
       "index": 9292,
       "owner_key": "CZpBSfeeMiPcczw43BKtKkZxhkFDbBnK9tLxN6iAgvgH",
-      "balance": 175268,
+      "balance": 68874,
       "membership_expire_on": 1709092196,
       "next_cert_issuable_on": 1689494692,
       "certs_received": {
@@ -134949,8 +137854,8 @@
     "Solete": {
       "index": 9571,
       "owner_key": "CZteB6gogsMsDYJujaQqpLAkByp66oBriBof5s3uu972",
-      "balance": 192546,
-      "membership_expire_on": 1694399677,
+      "balance": 204682,
+      "membership_expire_on": 1728017189,
       "next_cert_issuable_on": 1670059511,
       "certs_received": {
         "mluque71": 1726255057,
@@ -134966,7 +137871,7 @@
     "Cheyenne": {
       "index": 10001,
       "owner_key": "CZwUM94TLF5nDjeHjMngjcBayzJhewTtnAEJq4ZQBs2n",
-      "balance": 920111,
+      "balance": 959797,
       "membership_expire_on": 1720985806,
       "next_cert_issuable_on": 1690031054,
       "certs_received": {
@@ -134984,7 +137889,7 @@
     "SD38Cecile": {
       "index": 8967,
       "owner_key": "CZytJPDPXmxGuBKZ4DUUAtHQz4LVbyVb3PsqZpMSMdbr",
-      "balance": 418853,
+      "balance": 458539,
       "membership_expire_on": 1722709746,
       "next_cert_issuable_on": 1658710454,
       "certs_received": {
@@ -134997,18 +137902,32 @@
         "JBM": 1721545735
       }
     },
+    "AliceBF": {
+      "index": 13630,
+      "owner_key": "Ca5tYgfSWwArmiTRWwPV3p7XGTtejVEboaJ2qapLo5x3",
+      "balance": 22248,
+      "membership_expire_on": 1726888159,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "NiCoLasF": 1758520028,
+        "EliotBF": 1758445972,
+        "BenFoxy": 1758483151,
+        "Katecat": 1758445972,
+        "Chacha94": 1758519726
+      }
+    },
     "LHPBaptiste": {
       "index": 2747,
       "owner_key": "Ca7eD23hvP1Yfw5B7t2LHMBiY2NUzCCW1TdBMGn4q2m1",
       "balance": 848792,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632379494,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "RayondeSoleil": {
       "index": 2923,
       "owner_key": "CaKGqWsk2wDqAG1gSUGKPnQFmYDdcCRimCR4QqqpHBHb",
-      "balance": 752534,
+      "balance": 792220,
       "membership_expire_on": 1704725690,
       "next_cert_issuable_on": 1638356958,
       "certs_received": {
@@ -135016,7 +137935,6 @@
         "phildefer": 1749235114,
         "Lizy": 1707360078,
         "PlumeBleue": 1698821386,
-        "Alcalive": 1695168718,
         "Zoriko-J": 1697512552,
         "Nahi": 1698947049
       }
@@ -135024,9 +137942,9 @@
     "twistol": {
       "index": 13072,
       "owner_key": "CaLtB5A26FcehoVoj59Bc2YZ5LuiPaCKp7obvPtKRiT6",
-      "balance": 74012,
+      "balance": 107698,
       "membership_expire_on": 1719589192,
-      "next_cert_issuable_on": 1692982119,
+      "next_cert_issuable_on": 1694448578,
       "certs_received": {
         "ChristopheG25": 1751177228,
         "Valerie25": 1751176987,
@@ -135038,8 +137956,8 @@
     "athilena2": {
       "index": 6880,
       "owner_key": "CaXTCSguSgpLKZz2XTDKiwCjyL8fFk7CAhr1jDi41Rqe",
-      "balance": 612969,
-      "membership_expire_on": 1700958426,
+      "balance": 656655,
+      "membership_expire_on": 1727991172,
       "next_cert_issuable_on": 1669539793,
       "certs_received": {
         "Chrystal26": 1705211253,
@@ -135071,9 +137989,9 @@
     "Athom": {
       "index": 3895,
       "owner_key": "CaakLELDS3o5tR1gD3qL33zRgeCQzoX2pbtChqvewmYR",
-      "balance": 906612,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1670829194,
+      "balance": 934550,
+      "membership_expire_on": 1726062250,
+      "next_cert_issuable_on": 1694600391,
       "certs_received": {
         "Caco": 1703541611,
         "Chrige": 1715128093,
@@ -135092,10 +138010,24 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "francoisewt": {
+      "index": 13604,
+      "owner_key": "CahfR4pg5dfQS8h7o4FavHwC65Vgv1aExzzvys12XLLk",
+      "balance": 20862,
+      "membership_expire_on": 1725844697,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "melissandrecd": 1757568228,
+        "Yamu": 1757470274,
+        "Serguei": 1757403567,
+        "sandrinedesicy26": 1757470274,
+        "ChristineWilloth26": 1758232282
+      }
+    },
     "REGINE1961": {
       "index": 13110,
       "owner_key": "Cai5PgXzUKzBbZnQhTGHcwRzQJ1VSn9nMZHJMxaM3gu6",
-      "balance": 99940,
+      "balance": 145226,
       "membership_expire_on": 1720213255,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -135127,9 +138059,9 @@
     "Chanchan": {
       "index": 8966,
       "owner_key": "Caq6YBD5C6xQU6WirGWTjpFZ5zbBcZRHnNanhKXr6zja",
-      "balance": 215560,
+      "balance": 202926,
       "membership_expire_on": 1717338162,
-      "next_cert_issuable_on": 1690806555,
+      "next_cert_issuable_on": 1696232837,
       "certs_received": {
         "IsiaLe": 1728697078,
         "ClaireBrune": 1726531368,
@@ -135167,7 +138099,7 @@
     "Natarani": {
       "index": 11205,
       "owner_key": "CawUD2kE1DARr8ARn4irF6kNkhEdyu9GBnF13aCaxecW",
-      "balance": 484896,
+      "balance": 524582,
       "membership_expire_on": 1701613536,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -135181,7 +138113,7 @@
     "Gorkamecanico": {
       "index": 12027,
       "owner_key": "CayBuSuepZkvG7Nxr73gvL1aYpbGPCvG3XC3qgVL9umP",
-      "balance": 151961,
+      "balance": 191647,
       "membership_expire_on": 1710675529,
       "next_cert_issuable_on": 1683790525,
       "certs_received": {
@@ -135197,7 +138129,7 @@
     "LeroySebastien": {
       "index": 6297,
       "owner_key": "CayaCoV5aWkWJMNWxFbmEp1gnmbD3EXoDXzsEpXcFVbx",
-      "balance": 900804,
+      "balance": 1114390,
       "membership_expire_on": 1701989122,
       "next_cert_issuable_on": 1691426609,
       "certs_received": {
@@ -135223,7 +138155,7 @@
     "EvelyneGomond": {
       "index": 2520,
       "owner_key": "Cb3br9PkPhEnuh5LtSmrbafUxXkk7DdT28gu9e2UsChQ",
-      "balance": 445150,
+      "balance": 484836,
       "membership_expire_on": 1713641151,
       "next_cert_issuable_on": 1658805585,
       "certs_received": {
@@ -135253,7 +138185,7 @@
     "renardo86": {
       "index": 12398,
       "owner_key": "CbLtWEK2Nv7L7AE2obWrgiYZ4mT2EKSuX9nZP19STK8",
-      "balance": 146044,
+      "balance": 185730,
       "membership_expire_on": 1712755589,
       "next_cert_issuable_on": 1682213084,
       "certs_received": {
@@ -135277,8 +138209,8 @@
     "KepaBai": {
       "index": 10011,
       "owner_key": "CbSUv9644R1wEUZKZBiKWCKSfWFdWF4ddJcefDaTdWjB",
-      "balance": 100451,
-      "membership_expire_on": 1696979558,
+      "balance": 134687,
+      "membership_expire_on": 1725919110,
       "next_cert_issuable_on": 1674737902,
       "certs_received": {
         "Aguas": 1735415029,
@@ -135300,7 +138232,7 @@
     "Vicktor": {
       "index": 5090,
       "owner_key": "CbTj9xvpPRWqRu31S1W17wofdW61j5J5TdLfSvmiUZWw",
-      "balance": 283193,
+      "balance": 322879,
       "membership_expire_on": 1706997941,
       "next_cert_issuable_on": 1675512341,
       "certs_received": {
@@ -135322,7 +138254,7 @@
     "FlorenceFlore": {
       "index": 8958,
       "owner_key": "Cbfd9nAp5LZffccvfoN1ptTqyiDoU52iL3V9huyJYxjf",
-      "balance": 419631,
+      "balance": 459317,
       "membership_expire_on": 1720720828,
       "next_cert_issuable_on": 1677926006,
       "certs_received": {
@@ -135347,7 +138279,7 @@
     "Oihane": {
       "index": 10972,
       "owner_key": "CbjCytK7UgKZSnK4ZBRUR4nuvarEnEzbqVKGzYL11HFo",
-      "balance": 270576,
+      "balance": 310262,
       "membership_expire_on": 1703281696,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -135361,7 +138293,7 @@
     "Vinny": {
       "index": 6361,
       "owner_key": "CbkRs8uWfi7pXtMMo78CqcY9VG1Axy3fQydNrXUwqy2i",
-      "balance": 573714,
+      "balance": 613400,
       "membership_expire_on": 1708404767,
       "next_cert_issuable_on": 1676919796,
       "certs_received": {
@@ -135384,7 +138316,7 @@
     "13sor": {
       "index": 6331,
       "owner_key": "CboScyrBdpEpBBC4Kwa5XVbi7U9QyKbTHJb6a11DFnb1",
-      "balance": 506913,
+      "balance": 546599,
       "membership_expire_on": 1701645486,
       "next_cert_issuable_on": 1676823078,
       "certs_received": {
@@ -135398,7 +138330,7 @@
     "JOJO": {
       "index": 5939,
       "owner_key": "CbpvRvbqmGX6zT4Kf5wXsgh3j3ceTBofAjhnPR4bHj6p",
-      "balance": 697769,
+      "balance": 737455,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1680401551,
       "certs_received": {
@@ -135416,7 +138348,7 @@
     "Koyaan": {
       "index": 7968,
       "owner_key": "CbqS76rF9xfh8gUZ518LwNBEzTkZngG7MsXouiHhxmbz",
-      "balance": 406254,
+      "balance": 445940,
       "membership_expire_on": 1724511343,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -135430,16 +138362,15 @@
     "Pirataquante": {
       "index": 4073,
       "owner_key": "CbqzX6niVzApTcs45PDXxoh8UAQN3wTXurdPnfitifZ7",
-      "balance": 932796,
+      "balance": 972582,
       "membership_expire_on": 1713311748,
-      "next_cert_issuable_on": 1683300315,
+      "next_cert_issuable_on": 1695652496,
       "certs_received": {
         "Julia": 1750275184,
         "djam": 1743741834,
         "Pamelahh": 1747262905,
         "Helenep": 1730997089,
-        "CitizenFour": 1695966579,
-        "hommepoirier": 1694247076,
+        "Gwn": 1759545521,
         "Kheoppe": 1749782367,
         "Papy89": 1720984319,
         "Waldmeister": 1702333480,
@@ -135451,7 +138382,7 @@
     "Paquito": {
       "index": 9188,
       "owner_key": "Cbvzu6sgozJ7XgHc6HeA3MoSTebNvwgCtEn2A2QSHDvb",
-      "balance": 414125,
+      "balance": 453811,
       "membership_expire_on": 1721070472,
       "next_cert_issuable_on": 1668861889,
       "certs_received": {
@@ -135489,7 +138420,7 @@
     "LucileFeuilleau": {
       "index": 7275,
       "owner_key": "CcF5pgb2gxgqZhVy9Q1TeLmBCFSLCZriktwJ3Fa8LhK6",
-      "balance": 394094,
+      "balance": 433780,
       "membership_expire_on": 1709844382,
       "next_cert_issuable_on": 1674230311,
       "certs_received": {
@@ -135543,7 +138474,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "LaureFemmeVanne": 1696233942,
         "Cha": 1710144867,
         "Nyckel": 1703979729
       }
@@ -135567,7 +138497,7 @@
     "Calakendi": {
       "index": 4982,
       "owner_key": "CcsFrDUp8jjetydHkXGvvXAHrw1QsBK5qtmyZHaio4D9",
-      "balance": 565839,
+      "balance": 605525,
       "membership_expire_on": 1706535011,
       "next_cert_issuable_on": 1684336110,
       "certs_received": {
@@ -135596,8 +138526,8 @@
     "Icejona": {
       "index": 6603,
       "owner_key": "Cct8oF3anxYvQMthxESJqXpXKU7zXsVTVSckouUEiwXj",
-      "balance": 541518,
-      "membership_expire_on": 1699391414,
+      "balance": 581204,
+      "membership_expire_on": 1727718055,
       "next_cert_issuable_on": 1682573901,
       "certs_received": {
         "olione": 1704754217,
@@ -135634,7 +138564,7 @@
     "AurelieLavenier": {
       "index": 4175,
       "owner_key": "Cd5Hku8xxDgCWsEdrLDheSiNxoy7yktXCcZiSNXeFMBQ",
-      "balance": 1033809,
+      "balance": 973495,
       "membership_expire_on": 1715697768,
       "next_cert_issuable_on": 1690947018,
       "certs_received": {
@@ -135650,7 +138580,7 @@
     "lifa": {
       "index": 12193,
       "owner_key": "CdAq3WeoSVqfgpMAGd7npzLwkNdJy7Abx7owHMaDfU4V",
-      "balance": 162336,
+      "balance": 202022,
       "membership_expire_on": 1710798112,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -135674,7 +138604,7 @@
     "patrice": {
       "index": 1978,
       "owner_key": "CdMm1oUm2r6PYdKCAjfEriPjn3EPnJd2DCo7YbddJZU4",
-      "balance": 1631243,
+      "balance": 1670929,
       "membership_expire_on": 1701667312,
       "next_cert_issuable_on": 1670749896,
       "certs_received": {
@@ -135702,7 +138632,7 @@
     "Kiarra": {
       "index": 13209,
       "owner_key": "CdUnQwhF6gKfCVbQ8ZVvLTF7unbWCAUT6UGvgziZHAAF",
-      "balance": 57788,
+      "balance": 97474,
       "membership_expire_on": 1721509232,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -135728,10 +138658,24 @@
         "NeoFlod": 1726973826
       }
     },
+    "DarioOrgonitas": {
+      "index": 13606,
+      "owner_key": "CdcSdJdY8YgW7tGsQdrXb2NBBU4ifxyNnh51cFqxhU1r",
+      "balance": 46395,
+      "membership_expire_on": 1726607900,
+      "next_cert_issuable_on": 1695610094,
+      "certs_received": {
+        "Vichara": 1758178584,
+        "Jokin": 1758170104,
+        "esterdg": 1758170717,
+        "IbanNikolai": 1758167100,
+        "Kol": 1758243433
+      }
+    },
     "fleurette": {
       "index": 10793,
       "owner_key": "CdeSgEBy15ajH3NAnCWBjCuX3mvgCeNg3doQsG5PNZkX",
-      "balance": 278484,
+      "balance": 306670,
       "membership_expire_on": 1701989743,
       "next_cert_issuable_on": 1683290076,
       "certs_received": {
@@ -135748,7 +138692,7 @@
     "Wolof": {
       "index": 12025,
       "owner_key": "Cdupc57RdEyrKT6Y6tECVSipvANs93Dq2p8J8Q8MCXqf",
-      "balance": 264461,
+      "balance": 304147,
       "membership_expire_on": 1710270023,
       "next_cert_issuable_on": 1679553332,
       "certs_received": {
@@ -135811,7 +138755,7 @@
     "MicheD": {
       "index": 9413,
       "owner_key": "CeF2xvvHNnvtY5mgVVHY1UakKHC36ZXNy4BAZBKpp2iq",
-      "balance": 362246,
+      "balance": 401932,
       "membership_expire_on": 1722867600,
       "next_cert_issuable_on": 1668482403,
       "certs_received": {
@@ -135828,7 +138772,7 @@
     "Matt11": {
       "index": 8184,
       "owner_key": "CeHDAWFnFd91cVxsyY1n9aBbqyYkoQe3WqgG859v6Hjh",
-      "balance": 199746,
+      "balance": 239432,
       "membership_expire_on": 1715638098,
       "next_cert_issuable_on": 1682993633,
       "certs_received": {
@@ -135844,7 +138788,7 @@
     "cyan": {
       "index": 3739,
       "owner_key": "CeJ8qjNMBKBPTUEJJsBjvPmagwpacJRE8ySEK3qhnMny",
-      "balance": 1152223,
+      "balance": 1191909,
       "membership_expire_on": 1715470535,
       "next_cert_issuable_on": 1673718087,
       "certs_received": {
@@ -135868,7 +138812,7 @@
     "VentreNegre": {
       "index": 10534,
       "owner_key": "CeV3KqfrFKp3TzznbENTT49ZZdmz6C5RmSyzAeimtcXf",
-      "balance": 294169,
+      "balance": 333855,
       "membership_expire_on": 1701019321,
       "next_cert_issuable_on": 1692841462,
       "certs_received": {
@@ -135883,13 +138827,14 @@
     "ChristinedelAude": {
       "index": 6890,
       "owner_key": "CeVzz5WKJQbpjMoUgkXLprGZbN8s44eXTo2egem4fVMH",
-      "balance": 446227,
+      "balance": 465913,
       "membership_expire_on": 1705763085,
       "next_cert_issuable_on": 1692805931,
       "certs_received": {
         "Bich": 1711163485,
         "Gedege": 1747373879,
         "Matymama": 1713307713,
+        "Marylune": 1758678290,
         "JeanMarcBuge": 1707007395,
         "SylvieT": 1707032121,
         "LoisG": 1706953598,
@@ -135901,14 +138846,16 @@
     "GeraldineGarrigues": {
       "index": 4018,
       "owner_key": "CeZunj54mYd7eZkEGN3UpyqtnCzdecFftcpaQ5Z3MtPV",
-      "balance": 78391,
+      "balance": 86077,
       "membership_expire_on": 1709340897,
-      "next_cert_issuable_on": 1693235588,
+      "next_cert_issuable_on": 1696501261,
       "certs_received": {
         "jaime": 1709234511,
+        "RuthGuerrero": 1758272118,
         "Eiutim": 1699508252,
         "kapis": 1753993685,
         "ItiMahana": 1699047505,
+        "xandraAritzkuren": 1758479420,
         "IsiaLe": 1731042279,
         "DADA11": 1753953543,
         "Etipol61": 1742336003,
@@ -135917,13 +138864,12 @@
         "ClaireMonde": 1721059990,
         "GUL40_Fr1": 1752631857,
         "AMAA": 1717141370,
-        "MarieBouny": 1695926956,
         "Segalen2003": 1736637849,
         "JoHana": 1721296268,
         "Itziar": 1745429869,
-        "Yesyes": 1696552018,
+        "Yesyes": 1758104423,
         "SandyMenegazzi": 1740943450,
-        "AnneChaimbault": 1694069175,
+        "Fox": 1758781500,
         "Cristol-Iquid": 1750606954,
         "ClaireMussault": 1699302115,
         "catrelax11": 1751667875,
@@ -135941,9 +138887,7 @@
         "Beasegovia": 1747850773,
         "dosy": 1756529124,
         "CathyDebronde": 1704767741,
-        "EleonoreBois": 1695093897,
         "Domi418": 1754596794,
-        "Louna": 1695286235,
         "SantoS": 1701591531,
         "aina": 1739239807,
         "LI21": 1722380875,
@@ -135977,16 +138921,13 @@
         "Pectine": 1739331514,
         "thierry58": 1698782073,
         "BolidoC": 1724008062,
-        "AurelienBois": 1696466120,
         "ChristinedelAude": 1711140823,
         "Licorne6": 1700200004,
         "YannickGuennou": 1707866462,
         "Yanae": 1699652529,
         "EnderWither": 1722411367,
-        "Monchatonetoile": 1693509383,
+        "Paola": 1759036354,
         "BenNature": 1742050144,
-        "Celuiquicrelamehaute": 1696716254,
-        "HelenDuceau": 1694832750,
         "CristinaAbella": 1744672004,
         "Farinato": 1721152083,
         "Mido": 1729665082,
@@ -135996,6 +138937,7 @@
         "SergeUme": 1741492056,
         "mellamanhernan": 1742360631,
         "OlivierBoullet": 1728971303,
+        "ElenaMavida": 1756779310,
         "CovaDidier": 1708826298,
         "Runa_81": 1726253509,
         "Claudarc": 1729625684,
@@ -136004,6 +138946,7 @@
         "Urticia": 1717690463,
         "Nick4911": 1749516283,
         "Mmemonica": 1754359205,
+        "Cocoyarouge": 1758302992,
         "Pierre40120": 1755125377,
         "MERYFITT": 1755455707,
         "Sofi11": 1703566493,
@@ -136016,7 +138959,7 @@
     "Souris": {
       "index": 8317,
       "owner_key": "CecgdoUvtEc1EMLtPWNVnFhjWG4WYArfTR2jZQkUx5v9",
-      "balance": 435007,
+      "balance": 474693,
       "membership_expire_on": 1718592691,
       "next_cert_issuable_on": 1657196560,
       "certs_received": {
@@ -136031,8 +138974,8 @@
     "JoseGoncalvesPinto": {
       "index": 6612,
       "owner_key": "Cehfw1ZQHgdNAqSQrcG3NBwU7WiRDGQ9fohX36D4tdcr",
-      "balance": 214184,
-      "membership_expire_on": 1699830081,
+      "balance": 221370,
+      "membership_expire_on": 1726311590,
       "next_cert_issuable_on": 1686023712,
       "certs_received": {
         "kapis": 1704342682,
@@ -136068,7 +139011,7 @@
     "Santino": {
       "index": 12252,
       "owner_key": "Cep5FWjKXwDpkmPicKkjV7hesS7AyN9hifTohja7ZU65",
-      "balance": 156996,
+      "balance": 196182,
       "membership_expire_on": 1712281363,
       "next_cert_issuable_on": 1683598277,
       "certs_received": {
@@ -136082,11 +139025,10 @@
     "Beacouleurs": {
       "index": 3200,
       "owner_key": "Ceq5Y6W5kjFkPrvcx5oAgugLMTwcEXyWgfn3P85TSj7x",
-      "balance": 947920,
+      "balance": 915606,
       "membership_expire_on": 1721496613,
-      "next_cert_issuable_on": 1692863309,
+      "next_cert_issuable_on": 1695988846,
       "certs_received": {
-        "Hieronimus": 1696653716,
         "mipimichel": 1753293846,
         "NadineP": 1731357619,
         "verolodeve": 1735450927,
@@ -136109,14 +139051,12 @@
       "balance": 482520,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "leasarva": 1694727042
-      }
+      "certs_received": {}
     },
     "Sfeya": {
       "index": 6962,
       "owner_key": "CetPSdyt81GE4Noc6M1zgnFG6Q6VfFgXLA4k3Xa6MPdX",
-      "balance": 465816,
+      "balance": 490502,
       "membership_expire_on": 1706270670,
       "next_cert_issuable_on": 1668437071,
       "certs_received": {
@@ -136132,7 +139072,7 @@
     "laetitiarecycle": {
       "index": 6288,
       "owner_key": "Cextz27x5oSpwAXuB7ZvWGv4mDPtBn1VUbePF8zojE9v",
-      "balance": 300180,
+      "balance": 339866,
       "membership_expire_on": 1711555104,
       "next_cert_issuable_on": 1661230882,
       "certs_received": {
@@ -136148,7 +139088,7 @@
     "pimprenelle": {
       "index": 13087,
       "owner_key": "Cf6bXkKUJManTGmxovAZ6hS6Zyd1iPZSsu7JoTDy8Pjy",
-      "balance": 60608,
+      "balance": 100294,
       "membership_expire_on": 1718382324,
       "next_cert_issuable_on": 1689246753,
       "certs_received": {
@@ -136181,10 +139121,24 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Maite": {
+      "index": 13642,
+      "owner_key": "CfWzhtXqpztpyasmxSfTceEZzyoRQBKpFegFpxMsKeBm",
+      "balance": 36792,
+      "membership_expire_on": 1726829212,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Murmure": 1758390028,
+        "NatTher": 1758517992,
+        "Did-yeah": 1758402756,
+        "chane": 1758578690,
+        "Damery": 1758589340
+      }
+    },
     "Elemiah": {
       "index": 11403,
       "owner_key": "CfXAMoGKca4tzqWybv8yFymMGWPu25VkZXTxaZqndi7L",
-      "balance": 291282,
+      "balance": 330968,
       "membership_expire_on": 1703951481,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -136201,7 +139155,7 @@
     "Idir": {
       "index": 10563,
       "owner_key": "CfdCA2vqpwW6RvYwG2aB4kKNsnjFQhR24oy6LfbgfwQP",
-      "balance": 286851,
+      "balance": 326537,
       "membership_expire_on": 1701026293,
       "next_cert_issuable_on": 1673145862,
       "certs_received": {
@@ -136216,7 +139170,7 @@
     "Baylos": {
       "index": 11710,
       "owner_key": "CffGhxjvxiXt1YXHiwX7R2JFrT1Mk9ojfPV7Tynqpb4p",
-      "balance": 217836,
+      "balance": 257522,
       "membership_expire_on": 1707514590,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -136233,7 +139187,7 @@
     "Clover": {
       "index": 12078,
       "owner_key": "CffMXk92Eiu5DuqcK8hWqkuACsfeaCodMnvMHPAEVeUz",
-      "balance": 165984,
+      "balance": 205670,
       "membership_expire_on": 1708375612,
       "next_cert_issuable_on": 1685451162,
       "certs_received": {
@@ -136255,7 +139209,7 @@
     "Catang": {
       "index": 8529,
       "owner_key": "CfjUS3U5fb5yUJVF8we1ohWLx11yx6J5Sp6mdYSZ4zmB",
-      "balance": 368236,
+      "balance": 407922,
       "membership_expire_on": 1715522790,
       "next_cert_issuable_on": 1692887898,
       "certs_received": {
@@ -136272,9 +139226,9 @@
     "Walkiria": {
       "index": 9948,
       "owner_key": "CfjvpR7tiHcPyQxc8LG7wYvbMoNsP6kSWRKTJ56zjWVo",
-      "balance": 320646,
+      "balance": 369210,
       "membership_expire_on": 1723940909,
-      "next_cert_issuable_on": 1692455514,
+      "next_cert_issuable_on": 1695615801,
       "certs_received": {
         "MrHernando": 1753683424,
         "SamuelPabloAlmonacid": 1735199268,
@@ -136295,7 +139249,7 @@
     "Tem": {
       "index": 11104,
       "owner_key": "CfnD7qP4mTDnCyyiGnBDwnrAM3udQmaCkmqjJC8eoKa9",
-      "balance": 259568,
+      "balance": 299254,
       "membership_expire_on": 1703374719,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -136311,9 +139265,9 @@
     "Cleo59": {
       "index": 12705,
       "owner_key": "CfsD5moJNEkQwCCmcQbcvwetJ54EXvi3K1MsYd87F4xN",
-      "balance": 101004,
+      "balance": 140690,
       "membership_expire_on": 1714001799,
-      "next_cert_issuable_on": 1693193615,
+      "next_cert_issuable_on": 1696483491,
       "certs_received": {
         "CValentine": 1755329564,
         "Sophie-Ema": 1748328428,
@@ -136326,11 +139280,13 @@
         "Naho": 1751350995,
         "Francisca": 1747673445,
         "evitam": 1751392088,
+        "Bastien-29": 1757547926,
         "Denis": 1755549350,
         "Vigo": 1747637588,
         "Filou": 1752385932,
         "AngelArt": 1747678517,
         "DidierPapillon": 1751048170,
+        "Belerebel": 1757238852,
         "ElisaDesFougeres": 1753723259,
         "MicheleMaton": 1747690769,
         "DaRocha": 1754489145,
@@ -136348,7 +139304,7 @@
     "Mane": {
       "index": 11576,
       "owner_key": "CgNGLXKGi3X9JSH334EgCMudD1ZTVdbk62tP31oMBQuP",
-      "balance": 150193,
+      "balance": 130979,
       "membership_expire_on": 1706474979,
       "next_cert_issuable_on": 1685363454,
       "certs_received": {
@@ -136368,7 +139324,7 @@
     "Olbo": {
       "index": 6159,
       "owner_key": "CgReUagkzzHHLTymmQRWAFgjQ3L75ioyRGGYpzexwq1Q",
-      "balance": 641437,
+      "balance": 681123,
       "membership_expire_on": 1702486385,
       "next_cert_issuable_on": 1637901269,
       "certs_received": {
@@ -136384,7 +139340,7 @@
     "Flo07": {
       "index": 7103,
       "owner_key": "CgTK8m8BwKaiv6GQ72QbsakvNiPKYJD2riMYpRtif6Lp",
-      "balance": 562599,
+      "balance": 602285,
       "membership_expire_on": 1703435113,
       "next_cert_issuable_on": 1681022220,
       "certs_received": {
@@ -136416,7 +139372,7 @@
     "Fabrice64": {
       "index": 9390,
       "owner_key": "CgYuzr5JWFWEsNUyMsESRwV5NWKgLwvKN3Xq7a3Yp2W9",
-      "balance": 339984,
+      "balance": 379670,
       "membership_expire_on": 1722620054,
       "next_cert_issuable_on": 1676442213,
       "certs_received": {
@@ -136439,7 +139395,7 @@
     "Asae": {
       "index": 3528,
       "owner_key": "CgcBGgCGYWcQAX8t66JA1PfeJmdHdCP5a6R6VZPW4AyU",
-      "balance": 372290,
+      "balance": 372390,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {}
@@ -136447,8 +139403,8 @@
     "YoyoVilla": {
       "index": 9758,
       "owner_key": "CghLPQ4JKEEoscuXA2DbxMXNB9AUryzkCP5W3CuFYjfi",
-      "balance": 377004,
-      "membership_expire_on": 1696208220,
+      "balance": 401690,
+      "membership_expire_on": 1727519499,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "LittleJess": 1727766129,
@@ -136472,15 +139428,13 @@
     "soeurmilotus": {
       "index": 342,
       "owner_key": "CgsPpV83proBzkyrCi5HZPNwMCW4g8bq3zoP5sWGYxyR",
-      "balance": 1923338,
-      "membership_expire_on": 1694223147,
+      "balance": 1925474,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1661252134,
       "certs_received": {
         "Roco": 1729065665,
         "mat": 1697147560,
-        "Piouch": 1693724246,
         "nana": 1697147560,
-        "Pommedapi": 1693724455,
         "Meryazel": 1720025722
       }
     },
@@ -136509,13 +139463,14 @@
     "Maherito": {
       "index": 11132,
       "owner_key": "ChBmcgR8Q5TLX4eJ46cGJ7xio4z8w8WUkACKDTVaCtfn",
-      "balance": 256750,
+      "balance": 296436,
       "membership_expire_on": 1703027280,
       "next_cert_issuable_on": 1686578275,
       "certs_received": {
         "alegna": 1736197066,
         "KdSL63": 1736222391,
         "marie-sabine": 1736189705,
+        "prevotfran5310": 1758330813,
         "CelineDiFa": 1736198095,
         "Coolga5575": 1736196388,
         "Chouky": 1736198450
@@ -136536,7 +139491,7 @@
     "jardin": {
       "index": 186,
       "owner_key": "ChU8caZaN1gZMD48C5XvrdFY2sWvgi4cmuNciPkqjF2S",
-      "balance": 2100648,
+      "balance": 2140334,
       "membership_expire_on": 1721008936,
       "next_cert_issuable_on": 1692525553,
       "certs_received": {
@@ -136570,7 +139525,7 @@
     "Odiledem": {
       "index": 9180,
       "owner_key": "ChYMHrP5ruC7nszuYti69xJnabjYeSuSXULLGVbY8QJT",
-      "balance": 269207,
+      "balance": 308893,
       "membership_expire_on": 1720992930,
       "next_cert_issuable_on": 1689518514,
       "certs_received": {
@@ -136590,8 +139545,8 @@
     "Yemo": {
       "index": 2726,
       "owner_key": "ChZLqphnkagsxQ6nN5Rbi9mhybWTvzAFhEB5VjDu1Zvz",
-      "balance": 1486255,
-      "membership_expire_on": 1695314452,
+      "balance": 1508693,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689566667,
       "certs_received": {
         "daryl": 1721366071,
@@ -136606,8 +139561,8 @@
     "Yogini": {
       "index": 9927,
       "owner_key": "ChaVTvWJQPAbPx7eWXwFTic6WzdAxJaoRXwuB9B8YZi",
-      "balance": 338506,
-      "membership_expire_on": 1697200825,
+      "balance": 371392,
+      "membership_expire_on": 1725881410,
       "next_cert_issuable_on": 1686726381,
       "certs_received": {
         "Mamycrocodile": 1729447094,
@@ -136639,23 +139594,22 @@
     "Camille": {
       "index": 2235,
       "owner_key": "ChaxTcTRhJWkpYhaQK3Ag4SkyrKa3dKKeQi885KsYbwk",
-      "balance": 1364731,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1635999448,
+      "balance": 1365809,
+      "membership_expire_on": 1728151013,
+      "next_cert_issuable_on": 1696669505,
       "certs_received": {
         "Libertiste": 1733084847,
         "Daansko": 1745133233,
         "arojasurrego": 1699925600,
         "Caroleluciole": 1697693946,
         "Cat": 1748544507,
-        "Leana": 1695067379,
         "mollenthiel": 1737188167
       }
     },
     "Kolibri-2": {
       "index": 9192,
       "owner_key": "ChgMzcFHue2Nd8cTDXAn8riVGZsMkzK96h4S3rh14xyt",
-      "balance": 397597,
+      "balance": 437283,
       "membership_expire_on": 1721679131,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -136669,7 +139623,7 @@
     "Samourai": {
       "index": 6847,
       "owner_key": "ChiqZiPuXmPhSYacVmrMCkYU4TnV7wYppycQf6XJNtTv",
-      "balance": 598137,
+      "balance": 637823,
       "membership_expire_on": 1706216293,
       "next_cert_issuable_on": 1665053653,
       "certs_received": {
@@ -136689,7 +139643,7 @@
     "Thierry17440": {
       "index": 9015,
       "owner_key": "ChoQWB6SVnRp8A7rKBKWaqt9hxbpQfdEhETWqYkk2ehC",
-      "balance": 765788,
+      "balance": 815474,
       "membership_expire_on": 1721740703,
       "next_cert_issuable_on": 1680022059,
       "certs_received": {
@@ -136704,7 +139658,7 @@
     "DBize": {
       "index": 856,
       "owner_key": "ChtdRG1rR7q4M7SJgKRVh6wkWQPCsR8BysCwYpM45K27",
-      "balance": 75139,
+      "balance": 114825,
       "membership_expire_on": 1698005154,
       "next_cert_issuable_on": 1679037721,
       "certs_received": {
@@ -136727,7 +139681,7 @@
     "Luna": {
       "index": 8720,
       "owner_key": "CiHB6QoW5gmm4jFXUXE1Rr8bZ1W2xEqjt4qHt3Q5Mp1o",
-      "balance": 2028612,
+      "balance": 2068298,
       "membership_expire_on": 1714265930,
       "next_cert_issuable_on": 1685463813,
       "certs_received": {
@@ -136766,16 +139720,11 @@
     "MichelK": {
       "index": 5627,
       "owner_key": "CiZU3vjG7195vLAAf5SKeWyHtj7WhH3zJqQrUgC17U8Y",
-      "balance": 388606,
+      "balance": 291606,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1639024426,
       "certs_received": {
-        "AudreyNaturo": 1694035196,
-        "Antho": 1703038221,
-        "billbonny": 1694217262,
-        "GaiaBonheur": 1694217627,
-        "wyllyjon": 1694277053,
-        "MickaelAnanda": 1693985046
+        "Antho": 1703038221
       }
     },
     "CindyRF": {
@@ -136797,7 +139746,7 @@
     "Vony": {
       "index": 6363,
       "owner_key": "CipLa7f5xYaknCPWRcU6MvQcV2ULK711duMKi7X6yEpH",
-      "balance": 329649,
+      "balance": 369335,
       "membership_expire_on": 1697324588,
       "next_cert_issuable_on": 1658721857,
       "certs_received": {
@@ -136819,15 +139768,17 @@
     "LaurelieB": {
       "index": 3464,
       "owner_key": "CivFG4qYusueEbsuSV1C7rxp5dTnYa7mSiagXzFNoNFq",
-      "balance": 1433974,
+      "balance": 1473660,
       "membership_expire_on": 1699846170,
       "next_cert_issuable_on": 1684719544,
       "certs_received": {
         "AnnaM": 1747782599,
+        "RobertW34": 1757064944,
         "MarlenedeManas": 1740250046,
         "TristanG1": 1713678825,
         "TheoF": 1712695371,
         "Bricedonnadieu26": 1748548644,
+        "gaellemarcherat": 1758050810,
         "JennyBadl": 1707454829,
         "Michellecuyer26": 1750645548,
         "hypericum": 1701549524,
@@ -136840,7 +139791,7 @@
     "Etienne04": {
       "index": 11446,
       "owner_key": "Cj1ZmYVBddG3SDUbXUZuDQy1NisFM7RWbRMU19gahzjK",
-      "balance": 225968,
+      "balance": 265654,
       "membership_expire_on": 1706234595,
       "next_cert_issuable_on": 1681557476,
       "certs_received": {
@@ -136863,7 +139814,7 @@
     "solennevm": {
       "index": 574,
       "owner_key": "CjF8gLxCBY5jKMNPphfbVoB7SGXwxtmzvAh8mJHE7t5E",
-      "balance": 1930995,
+      "balance": 1970681,
       "membership_expire_on": 1708268124,
       "next_cert_issuable_on": 1676990803,
       "certs_received": {
@@ -136880,7 +139831,7 @@
     "Eastwood": {
       "index": 8830,
       "owner_key": "CjHuHtjWMPSH8EZyfxZXRLuGgCUGc1QDRsG13obyfReG",
-      "balance": 365053,
+      "balance": 404739,
       "membership_expire_on": 1715174883,
       "next_cert_issuable_on": 1688379598,
       "certs_received": {
@@ -136898,6 +139849,20 @@
         "Lourinhacoda": 1720421443
       }
     },
+    "martinfray": {
+      "index": 13567,
+      "owner_key": "CjKXbLKrbhxL1XAunwjM7WXZLeEwWhjRwKpKToJwkDdM",
+      "balance": 26802,
+      "membership_expire_on": 1725999708,
+      "next_cert_issuable_on": 1694708078,
+      "certs_received": {
+        "FrancoiseSTA07": 1757646723,
+        "ReymondSophie": 1757644980,
+        "MichelBonnaventure07": 1757646086,
+        "Carocreative": 1757727101,
+        "Spiruline07": 1757747150
+      }
+    },
     "Verlaine": {
       "index": 1127,
       "owner_key": "CjLzhfa8KKCg9p9UzeTE3BGNCvUMd1fW62JdAy3z32op",
@@ -136922,8 +139887,8 @@
     "YvesP": {
       "index": 7079,
       "owner_key": "CjNLtUEBhJtcgQt1HposKo8QbTMTK9VTUxa6GLhvw1xN",
-      "balance": 416461,
-      "membership_expire_on": 1700653116,
+      "balance": 456147,
+      "membership_expire_on": 1727192310,
       "next_cert_issuable_on": 1693053608,
       "certs_received": {
         "Nagual": 1705532426,
@@ -136954,14 +139919,12 @@
       "balance": 738301,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "krischamp": 1694704663
-      }
+      "certs_received": {}
     },
     "Gepi": {
       "index": 1371,
       "owner_key": "CjTF5ZqjmademmEiDpfA2Qm5xwQuAUhSTMi67ys8SJvi",
-      "balance": 1011954,
+      "balance": 1051640,
       "membership_expire_on": 1715903714,
       "next_cert_issuable_on": 1677854765,
       "certs_received": {
@@ -136975,7 +139938,7 @@
     "PhiletCathe": {
       "index": 9982,
       "owner_key": "CjUCbsj8bStaVcgJXcZ5WssbTEPbu25mtVw5aRi9ht6D",
-      "balance": 289170,
+      "balance": 328856,
       "membership_expire_on": 1697296167,
       "next_cert_issuable_on": 1690973681,
       "certs_received": {
@@ -136998,7 +139961,7 @@
     "StephBauer": {
       "index": 8207,
       "owner_key": "Cjf4QX8hzwkmFch2Kw5JAV4DFJxPButAM7u3rJ37odhW",
-      "balance": 315180,
+      "balance": 354866,
       "membership_expire_on": 1716421176,
       "next_cert_issuable_on": 1692608059,
       "certs_received": {
@@ -137036,6 +139999,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "MilanK": {
+      "index": 13614,
+      "owner_key": "CjkJhXohhsCSE4y1o2W1Yaw8LFGYGraQa1ZkMUFTbsfP",
+      "balance": 18327,
+      "membership_expire_on": 1726780995,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "SeanB": 1758346019,
+        "DitchB": 1758346019,
+        "MagaliRegent": 1758335955,
+        "SashaB": 1758346521,
+        "Colaga": 1758350429
+      }
+    },
     "Bee": {
       "index": 5996,
       "owner_key": "CjpvwxsVeKB9VYYvfH6wRCeDvvf6LM7oo2omEZnDeq9M",
@@ -137051,18 +140028,14 @@
         "SoniaJimenezCook": 1715649734,
         "ariadneramos": 1709963906,
         "luisdhoz": 1739592640,
-        "Viceversa": 1695800096,
         "Peixospili": 1703996676,
-        "SandraHeleno": 1696523173,
-        "urkobein": 1696573854,
-        "BeatrizGG": 1720029062,
-        "fania": 1696359247
+        "BeatrizGG": 1720029062
       }
     },
     "LeonOllivier": {
       "index": 12498,
       "owner_key": "CjvqaDUPwT87i1esxjnSK3c3K5pAF19T8iVWu2o3J1ek",
-      "balance": 168164,
+      "balance": 207750,
       "membership_expire_on": 1714123093,
       "next_cert_issuable_on": 1683331829,
       "certs_received": {
@@ -137084,7 +140057,7 @@
     "RobertoG1": {
       "index": 10630,
       "owner_key": "CjxLSnUhAJgd7Q7v7oRWksyDuTtsQPFPrXswhEEZwiDj",
-      "balance": 242115,
+      "balance": 281801,
       "membership_expire_on": 1701056582,
       "next_cert_issuable_on": 1676032832,
       "certs_received": {
@@ -137101,7 +140074,7 @@
     "Miguasha": {
       "index": 11038,
       "owner_key": "CjyRZVFhHqSCWUF7xCnD9Japz1bpMjwZzJ93p81iydjf",
-      "balance": 263981,
+      "balance": 303667,
       "membership_expire_on": 1702116666,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -137143,14 +140116,30 @@
         "Driyon": 1717075792
       }
     },
+    "Heike07": {
+      "index": 13590,
+      "owner_key": "CkA8gCJTZS7v7Jhbinmfa8eLhBtpHucqjkstoPGAcffY",
+      "balance": 122255,
+      "membership_expire_on": 1725124274,
+      "next_cert_issuable_on": 1696496367,
+      "certs_received": {
+        "SoniaMallorca": 1757321179,
+        "majo": 1757290182,
+        "Thor": 1756845435,
+        "Ralf": 1757290453,
+        "SoniaElena": 1756765653,
+        "ElenaMavida": 1757314908
+      }
+    },
     "Stephio": {
       "index": 681,
       "owner_key": "CkAeDMwyDGLmVVdsfMYLvEgupboYFbRKYqJuTaSnUTq5",
-      "balance": 1882898,
+      "balance": 1922584,
       "membership_expire_on": 1713312094,
-      "next_cert_issuable_on": 1692866146,
+      "next_cert_issuable_on": 1694498571,
       "certs_received": {
         "anouchka": 1756268729,
+        "PierreYves": 1756852130,
         "Reumy": 1755850748,
         "Brunov974": 1709600084,
         "MilieLibre": 1699502119,
@@ -137158,27 +140147,30 @@
         "BrunoSaurel": 1708762223,
         "Eva": 1702241597,
         "mathieu": 1756148324,
+        "KatalineMOREL": 1758495863,
         "Sev07": 1755909346
       }
     },
     "Gawawelle": {
       "index": 13399,
       "owner_key": "CkEFuyDqrD5Vr7KQXN9b6Hn7GjdSccxtDedHwWpcKg2j",
-      "balance": 27816,
+      "balance": 71002,
       "membership_expire_on": 1721702203,
-      "next_cert_issuable_on": 1692804859,
+      "next_cert_issuable_on": 1695615801,
       "certs_received": {
         "Tot16": 1753388252,
         "DaniailesA": 1753388021,
+        "Ginou17": 1758653560,
         "Fannyhihihi": 1753373494,
         "AnaisLicorne": 1753395604,
-        "RobinRoni": 1753336685
+        "RobinRoni": 1753336685,
+        "MuleRetive": 1758147628
       }
     },
     "Pigeospower": {
       "index": 6540,
       "owner_key": "CkLaepZvwyhQ754uePcfHU7dRM13mSzSGFqKPoQ9gDL6",
-      "balance": 569931,
+      "balance": 609617,
       "membership_expire_on": 1701817556,
       "next_cert_issuable_on": 1671799647,
       "certs_received": {
@@ -137195,7 +140187,7 @@
     "Phenix07": {
       "index": 11832,
       "owner_key": "CkTpVDw8SUZS6zSjZ4VLKnU2WzrLabtTzKL2jhLHcs9r",
-      "balance": 194205,
+      "balance": 233891,
       "membership_expire_on": 1707957975,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -137217,15 +140209,16 @@
     "Cathykty": {
       "index": 6062,
       "owner_key": "CkV6AxffoBeFE4ABdQSNwuDKWhMsiLGeai76GrJVkW7K",
-      "balance": 718681,
+      "balance": 738377,
       "membership_expire_on": 1723829581,
-      "next_cert_issuable_on": 1657170054,
+      "next_cert_issuable_on": 1695910544,
       "certs_received": {
-        "Chantal": 1699672857,
+        "Chantal": 1758424488,
         "Riri": 1699672857,
         "EricSIMON": 1701117395,
         "Sweetpea": 1752637381,
-        "Anamaya": 1699663444,
+        "Anamaya": 1757894396,
+        "izotoad38": 1759259548,
         "LibertyFran": 1709590305,
         "conchitaSIMON": 1703703969,
         "Mariezen": 1721511923,
@@ -137238,8 +140231,8 @@
     "BulleDamour": {
       "index": 9958,
       "owner_key": "CkYEkNZPzWaDrsMQXLjQAtaurU4h4hMJfgTNCCrwLPWj",
-      "balance": 611094,
-      "membership_expire_on": 1696351668,
+      "balance": 646468,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1686576353,
       "certs_received": {
         "laurienza": 1728283607,
@@ -137254,7 +140247,7 @@
     "jepeto": {
       "index": 11370,
       "owner_key": "CkaToBsJvNXYbqGshaSgJS1z5CC8dru5n8dkcQT7BwHm",
-      "balance": 230211,
+      "balance": 269897,
       "membership_expire_on": 1706132163,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -137268,7 +140261,7 @@
     "Insa": {
       "index": 6601,
       "owner_key": "CkbtEvSt1zq5XcTgCvLUcuc5w2NzJPcUsm8e45fr8pc9",
-      "balance": 581645,
+      "balance": 621331,
       "membership_expire_on": 1699439287,
       "next_cert_issuable_on": 1692978574,
       "certs_received": {
@@ -137285,7 +140278,7 @@
     "MALINCA": {
       "index": 9043,
       "owner_key": "Ckcnba96JUTn2RCjPCVYhuyJkg4owz5qVwA2iWnv9Ujt",
-      "balance": 376088,
+      "balance": 415774,
       "membership_expire_on": 1716495195,
       "next_cert_issuable_on": 1690528592,
       "certs_received": {
@@ -137296,6 +140289,7 @@
         "Cath38": 1751737697,
         "Rafafou": 1722194440,
         "AnnPAT": 1751005658,
+        "AurelieBab": 1757700193,
         "Cordia": 1721422728,
         "Papillote": 1753814048,
         "Lapinou": 1721540667,
@@ -137305,7 +140299,7 @@
     "HuguesLigot": {
       "index": 12308,
       "owner_key": "Ckgmf5yedBsz1req7QoKvW2UgvhsFkaq8WUMzw45Q1BZ",
-      "balance": 165224,
+      "balance": 204910,
       "membership_expire_on": 1712349911,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -137319,7 +140313,7 @@
     "Janire": {
       "index": 11472,
       "owner_key": "Ckk4VjdPLHNwXb1rmMKcnUT3sDHdm8U74wAmcRutp7kE",
-      "balance": 144179,
+      "balance": 203665,
       "membership_expire_on": 1706831344,
       "next_cert_issuable_on": 1690949250,
       "certs_received": {
@@ -137355,7 +140349,7 @@
     "Voltigeur83": {
       "index": 2015,
       "owner_key": "CkpKfxFeEcpqouhyAsA1LHjrgbX8jPZ9dUjV1637BDnS",
-      "balance": 1573359,
+      "balance": 1613045,
       "membership_expire_on": 1714482510,
       "next_cert_issuable_on": 1684715692,
       "certs_received": {
@@ -137379,7 +140373,7 @@
     "Hammih": {
       "index": 11086,
       "owner_key": "Cm7qvASfKpA7RnX6ZgMrEu7xa6Fq6rehYvYCsafZbmeq",
-      "balance": 259286,
+      "balance": 298972,
       "membership_expire_on": 1704235063,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -137393,18 +140387,18 @@
     "LePitch": {
       "index": 3025,
       "owner_key": "Cm9vJEn8gPHTUHPWrrPpGkJ8dhmT9d59J2vf9AFYFmJW",
-      "balance": 909052,
+      "balance": 948738,
       "membership_expire_on": 1701208064,
       "next_cert_issuable_on": 1675304683,
       "certs_received": {
-        "Arkenhertz": 1701486004,
+        "Arkenhertz": 1757184908,
         "MIZO": 1732076007,
         "Lhirondelle": 1701850859,
         "Feetabulle": 1701585387,
         "Matt": 1701663091,
         "Alcalive": 1703234484,
         "Zoriko-J": 1703203043,
-        "Pichotilha": 1701487992
+        "Pichotilha": 1757186623
       }
     },
     "KaliDurga": {
@@ -137422,7 +140416,7 @@
     "Joddha": {
       "index": 6803,
       "owner_key": "CmB215aQUKBmcXix1suhQ6gShWa9eLxkWfzm7KaPAqCG",
-      "balance": 390607,
+      "balance": 430293,
       "membership_expire_on": 1724715772,
       "next_cert_issuable_on": 1660645924,
       "certs_received": {
@@ -137438,8 +140432,8 @@
     "Nadesdja": {
       "index": 5375,
       "owner_key": "CmBHNWwyZn1RMtNreQmZTvLzpcugbxed7G4SYadrEia3",
-      "balance": 525636,
-      "membership_expire_on": 1696161317,
+      "balance": 558854,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1687311369,
       "certs_received": {
         "CelineThiebaut": 1751556460,
@@ -137465,7 +140459,7 @@
     "Matograine": {
       "index": 1047,
       "owner_key": "CmFKubyqbmJWbhyH2eEPVSSs4H4NeXGDfrETzEnRFtPd",
-      "balance": 1053565,
+      "balance": 1093251,
       "membership_expire_on": 1708562727,
       "next_cert_issuable_on": 1690423341,
       "certs_received": {
@@ -137476,7 +140470,6 @@
         "JusteAlex": 1717659559,
         "michaelopdenacker": 1712367378,
         "DanielVienne": 1730171774,
-        "DCat": 1695154390,
         "ChristianMichelChampon": 1736221650,
         "mlmlulu73": 1711564035,
         "BenoitFeryn": 1707061367,
@@ -137498,7 +140491,7 @@
     "phil": {
       "index": 10633,
       "owner_key": "CmNUtzbSz7FkfFpRLkUrXAkATzv6SGn3yKkEApGknS8",
-      "balance": 284515,
+      "balance": 324201,
       "membership_expire_on": 1701218379,
       "next_cert_issuable_on": 1673860993,
       "certs_received": {
@@ -137514,7 +140507,7 @@
     "olivia": {
       "index": 11784,
       "owner_key": "CmUjGUaDuFEaVuVYh3Pd7snyx6b4XWesKWmmw3ogJ2es",
-      "balance": 197382,
+      "balance": 237068,
       "membership_expire_on": 1708953057,
       "next_cert_issuable_on": 1689326902,
       "certs_received": {
@@ -137537,8 +140530,8 @@
     "menfin": {
       "index": 897,
       "owner_key": "CmdasjfLX8yHnQauiDc43iBxmJHaSfvMYopjaw5eygHy",
-      "balance": 1760436,
-      "membership_expire_on": 1694733332,
+      "balance": 1775388,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1665033285,
       "certs_received": {
         "DLV": 1708232796,
@@ -137554,8 +140547,8 @@
     "AnneNanou": {
       "index": 2919,
       "owner_key": "Cmkr3dgHToCiYQz4X8mLymXGPp2pr29tgjrudDNrB89k",
-      "balance": 1215074,
-      "membership_expire_on": 1699135723,
+      "balance": 1254760,
+      "membership_expire_on": 1726965371,
       "next_cert_issuable_on": 1685153524,
       "certs_received": {
         "josyaneperez": 1699129598,
@@ -137573,7 +140566,7 @@
     "Page": {
       "index": 10757,
       "owner_key": "CmpmEmNf78SJ1mBAYvwncNjjmNaVSsbTNBSagE57eBWg",
-      "balance": 283161,
+      "balance": 322847,
       "membership_expire_on": 1702055012,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -137622,7 +140615,7 @@
     "Linya": {
       "index": 11273,
       "owner_key": "Cn66v82pVZBSzciX9ZQSMT4HPXGrncQHNYTi5hKHCL1J",
-      "balance": 592283,
+      "balance": 631969,
       "membership_expire_on": 1705393599,
       "next_cert_issuable_on": 1684544477,
       "certs_received": {
@@ -137660,7 +140653,7 @@
     "magali89": {
       "index": 13036,
       "owner_key": "CnBkJvATG9N3sfLrXvA1L6BU1KnPH7NUKkF8yedf4r12",
-      "balance": 431058,
+      "balance": 470744,
       "membership_expire_on": 1718989552,
       "next_cert_issuable_on": 1690825303,
       "certs_received": {
@@ -137674,7 +140667,7 @@
     "Logan": {
       "index": 3853,
       "owner_key": "CnGbcFkGJipqunxEavF178Wg1XwChHz8KfaND67nSDte",
-      "balance": 1050369,
+      "balance": 1070055,
       "membership_expire_on": 1706050734,
       "next_cert_issuable_on": 1679034147,
       "certs_received": {
@@ -137691,7 +140684,7 @@
     "Ercitap": {
       "index": 13149,
       "owner_key": "CnN6X99cemDS93ZbwQFZSFJHRvxC7gXWBq5BQeBUJWzC",
-      "balance": 53400,
+      "balance": 93086,
       "membership_expire_on": 1720099881,
       "next_cert_issuable_on": 1689929269,
       "certs_received": {
@@ -137705,7 +140698,7 @@
     "Jesael": {
       "index": 10794,
       "owner_key": "CnNttAqjuYD8fLV63rJcq9t4gEHq5gBez2eCtsgBaBLs",
-      "balance": 520219,
+      "balance": 599905,
       "membership_expire_on": 1702235496,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -137721,7 +140714,7 @@
     "Guilou19": {
       "index": 8322,
       "owner_key": "CnS7ytcoik3JsEzcm22ZVRoUZyyWoBJuueL6qjiyFyzB",
-      "balance": 407746,
+      "balance": 447432,
       "membership_expire_on": 1712167349,
       "next_cert_issuable_on": 1680682011,
       "certs_received": {
@@ -137751,9 +140744,9 @@
     "esterdg": {
       "index": 12064,
       "owner_key": "CnXFV6jbLVc1EzVWGyT9zVfQUiiFEqiqRDweKoRpm4j5",
-      "balance": 101643,
+      "balance": 92829,
       "membership_expire_on": 1710551120,
-      "next_cert_issuable_on": 1689016031,
+      "next_cert_issuable_on": 1695127517,
       "certs_received": {
         "Silvi": 1748125239,
         "SantiTrinquete": 1742120372,
@@ -137764,13 +140757,14 @@
         "Abejitajaimita": 1746761953,
         "Munillerro": 1742480141,
         "YUKO": 1742151711,
-        "VibrandoEsencia": 1742164335
+        "VibrandoEsencia": 1742164335,
+        "Marijopelirroja": 1757143719
       }
     },
     "donelapatte": {
       "index": 8039,
       "owner_key": "CnYgTcu7ii7C1hxoWSymtsoeDg584MLxt5vPeuUygrCT",
-      "balance": 308562,
+      "balance": 213248,
       "membership_expire_on": 1708895132,
       "next_cert_issuable_on": 1655975893,
       "certs_received": {
@@ -137787,9 +140781,9 @@
     "diamantbleu": {
       "index": 6468,
       "owner_key": "CngRYHNAXZ2atN8t5eZWQ8ZeSvRHF9Wwjg3jFXx6tJpo",
-      "balance": 290519,
-      "membership_expire_on": 1697150858,
-      "next_cert_issuable_on": 1688908989,
+      "balance": 287205,
+      "membership_expire_on": 1725190448,
+      "next_cert_issuable_on": 1696243911,
       "certs_received": {
         "darlanc": 1702100957,
         "RaieManta": 1703110039,
@@ -137806,7 +140800,7 @@
     "StephaneHensen": {
       "index": 10862,
       "owner_key": "CnjLtfjpFp3PvrMufCAZDY9cdYmSBWkoy34VtwYytcT5",
-      "balance": 277689,
+      "balance": 317375,
       "membership_expire_on": 1702505756,
       "next_cert_issuable_on": 1679551723,
       "certs_received": {
@@ -137840,28 +140834,25 @@
     "Cecilelaurent": {
       "index": 5798,
       "owner_key": "CnwL1bqWTM5w1xS6qJadauWhsM8sB5MxvAQpBeWJJt6c",
-      "balance": 656967,
+      "balance": 686653,
       "membership_expire_on": 1720831676,
       "next_cert_issuable_on": 1669112444,
       "certs_received": {
         "Hades": 1727567663,
         "Majoli34": 1729660319,
-        "Roco": 1696283560,
-        "Soyouz": 1696278829,
-        "Jihi": 1696278829,
+        "Fleurdelotus": 1757201686,
         "juliette": 1732142461,
-        "Tiptaptop": 1696365345,
-        "labomarjo": 1696284951,
-        "LydiaRoche": 1696278501
+        "Fannouch": 1757047727
       }
     },
     "astridVB": {
       "index": 12886,
       "owner_key": "Co1Pw8s9iG2NwSZZCk3M2UnEWZxxpJfW1hBYDo5AP4Hu",
-      "balance": 85372,
+      "balance": 165058,
       "membership_expire_on": 1718125563,
       "next_cert_issuable_on": 1690604410,
       "certs_received": {
+        "Etipol61": 1757443144,
         "PascalEnden": 1749752741,
         "ericve": 1749841544,
         "WhiteLily": 1749767228,
@@ -137879,17 +140870,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1638455292,
       "certs_received": {
-        "SantoS": 1701566440,
-        "RaphaelleEva": 1693954903,
-        "Matthias": 1693952110,
-        "annefreda": 1693951527,
-        "BrigitteBaron": 1693951527
+        "SantoS": 1701566440
       }
     },
     "Edith3": {
       "index": 6409,
       "owner_key": "CoBN4uqiEfBSGWXmv3V9f2133BxqJpyBgpn1qHXSU7c4",
-      "balance": 940049,
+      "balance": 979735,
       "membership_expire_on": 1704018955,
       "next_cert_issuable_on": 1648743411,
       "certs_received": {
@@ -137906,9 +140893,9 @@
     "Petitlutin": {
       "index": 7706,
       "owner_key": "CoCpjELTgPGsQSr5apzcUMra97x8o1ZAMn22MSmPksA8",
-      "balance": 604237,
+      "balance": 643923,
       "membership_expire_on": 1711274551,
-      "next_cert_issuable_on": 1681631956,
+      "next_cert_issuable_on": 1694422751,
       "certs_received": {
         "Caco": 1723074674,
         "LuciaM": 1746486639,
@@ -137926,7 +140913,7 @@
     "roudoudou": {
       "index": 6608,
       "owner_key": "CoFAW8DxZUWr3VhYDWvfB7JTp2JG8JkQMKeP3SQHBr2H",
-      "balance": 550327,
+      "balance": 590013,
       "membership_expire_on": 1705776820,
       "next_cert_issuable_on": 1657528783,
       "certs_received": {
@@ -137957,7 +140944,7 @@
     "ValerieSoufflier": {
       "index": 8961,
       "owner_key": "CoJ5utJtb8VTrkNJr3wDBZmXEsu3SZ1rbH9s132sDsgt",
-      "balance": 253841,
+      "balance": 293527,
       "membership_expire_on": 1715082340,
       "next_cert_issuable_on": 1667071757,
       "certs_received": {
@@ -137981,7 +140968,7 @@
     "mariaelisa": {
       "index": 11503,
       "owner_key": "CofMfAMVaSTyEKxGyz5XS6CkaCE4iwXKhPFgphERHmgf",
-      "balance": 419621,
+      "balance": 459307,
       "membership_expire_on": 1705921481,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -138011,7 +140998,7 @@
     "Pamusanjo": {
       "index": 12312,
       "owner_key": "ConMJDyKvs4uno93i96n9x2z58FKrkDhHAc3GxKC2vGP",
-      "balance": 226756,
+      "balance": 266442,
       "membership_expire_on": 1711241896,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -138035,23 +141022,29 @@
     "pat26": {
       "index": 7689,
       "owner_key": "Corxa3Goh7azKaEFhwxdXi2xiw1iDN7hKGZN7nBGHZAQ",
-      "balance": 388888,
+      "balance": 400574,
       "membership_expire_on": 1707671214,
-      "next_cert_issuable_on": 1690869721,
+      "next_cert_issuable_on": 1696291796,
       "certs_received": {
         "vlareynie26": 1712801541,
+        "Ninamaste": 1756967400,
+        "Cristal38": 1757548213,
         "Tico": 1712790601,
+        "Didier2665": 1756682666,
+        "Floclochette": 1756686072,
         "JeanClaudePaulRobert": 1712789282,
         "ClauTie26": 1712878073,
+        "JEF33": 1756944027,
         "EDiet": 1739857610,
         "Claudio26": 1712934828,
-        "Luviam": 1712870368
+        "Luviam": 1712870368,
+        "BenoitC54": 1757100575
       }
     },
     "SylvieC": {
       "index": 7564,
       "owner_key": "Cp1wtUrXqSTuhWGmJdNRtincCzvPdHSyNQ3LSzAPq5jw",
-      "balance": 326786,
+      "balance": 366472,
       "membership_expire_on": 1709064902,
       "next_cert_issuable_on": 1670821377,
       "certs_received": {
@@ -138085,7 +141078,7 @@
     "Lucfromearth": {
       "index": 6462,
       "owner_key": "Cp8UpndUFzaGC3QztjXPGdaAouwqPGQ3Go2d7RWcTRFr",
-      "balance": 553957,
+      "balance": 593643,
       "membership_expire_on": 1704810894,
       "next_cert_issuable_on": 1649080428,
       "certs_received": {
@@ -138115,23 +141108,23 @@
     "EmileMACRAIGNE": {
       "index": 4307,
       "owner_key": "CpC1S5LgjopPNE5VXbx5X33RMErEiDg9mTK41ZvmTvV8",
-      "balance": 1005770,
+      "balance": 1045456,
       "membership_expire_on": 1702987788,
-      "next_cert_issuable_on": 1685331815,
+      "next_cert_issuable_on": 1695774063,
       "certs_received": {
         "TheodoreMACRAIGNE": 1697154672,
         "AnneAmbles": 1733126591,
         "CelesteLeBars": 1735292251,
         "Lydiabloch": 1733126591,
         "JeandMeryMAYOPARRA": 1734549421,
-        "SteveMacraigne": 1697156010,
+        "SteveMacraigne": 1758818414,
         "Katell": 1735592284
       }
     },
     "Musique33": {
       "index": 8936,
       "owner_key": "CpCUrmKa7ubnAwUpEt8zcUF5D6hSe3swsRAnqumh5Zz7",
-      "balance": 306793,
+      "balance": 346479,
       "membership_expire_on": 1716331678,
       "next_cert_issuable_on": 1686882341,
       "certs_received": {
@@ -138148,9 +141141,9 @@
     "Artemys": {
       "index": 13018,
       "owner_key": "CpGZLQvnKhqwYUCmCGLsjwm7VayGAHBQGHXTBRk3N2uX",
-      "balance": 157152,
+      "balance": 245338,
       "membership_expire_on": 1719101538,
-      "next_cert_issuable_on": 1692699416,
+      "next_cert_issuable_on": 1696651615,
       "certs_received": {
         "ChristopheG25": 1750664956,
         "Valerie25": 1750694854,
@@ -138163,7 +141156,7 @@
     "PedroAlkymia": {
       "index": 12977,
       "owner_key": "CpTDwJ2HqxtAxcUAL2zwnkHzXrcGdR8JLn33Sw5RUEFe",
-      "balance": 360224,
+      "balance": 428910,
       "membership_expire_on": 1718662592,
       "next_cert_issuable_on": 1691500168,
       "certs_received": {
@@ -138191,9 +141184,9 @@
     "Rolande": {
       "index": 11925,
       "owner_key": "CpXy21njUXrWKgRpWfhXHovziB72waVPMGEThMBUBGMT",
-      "balance": 168233,
+      "balance": 207919,
       "membership_expire_on": 1708620473,
-      "next_cert_issuable_on": 1679453120,
+      "next_cert_issuable_on": 1692896437,
       "certs_received": {
         "Loulou09": 1740180541,
         "Gentil09": 1740181242,
@@ -138207,17 +141200,17 @@
     "Tontonmika": {
       "index": 3508,
       "owner_key": "Cpb5A44RMg6atgceQyLULiBDfGMM3947dwPxtELKV4tB",
-      "balance": 406913,
-      "membership_expire_on": 1696783098,
-      "next_cert_issuable_on": 1692510030,
+      "balance": 286483,
+      "membership_expire_on": 1725244334,
+      "next_cert_issuable_on": 1693839165,
       "certs_received": {
         "ClaireAzur": 1707596349,
         "Tchois": 1724307463,
-        "Delfe": 1694729452,
         "pfouque": 1715026985,
         "FabriceIrissou": 1718690592,
         "ClaireSMV": 1697166299,
-        "S-H": 1697702511
+        "S-H": 1697702511,
+        "lily06": 1756801934
       }
     },
     "Pyves": {
@@ -138239,7 +141232,7 @@
     "wacHs": {
       "index": 12870,
       "owner_key": "CpfQRzAiePHuQ94ZUXFLabAURPgK2b6DQhDm6KX6Dr4L",
-      "balance": 83440,
+      "balance": 123126,
       "membership_expire_on": 1717340462,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -138257,8 +141250,8 @@
     "Gluecksblume": {
       "index": 9566,
       "owner_key": "CpgQnw63HrvG4KDx9cbHhwk3V7mdTCtKWDAz7coQvcE1",
-      "balance": 367583,
-      "membership_expire_on": 1694548618,
+      "balance": 407269,
+      "membership_expire_on": 1725547981,
       "next_cert_issuable_on": 1683291539,
       "certs_received": {
         "Jolanda_Sonne": 1726611951,
@@ -138273,7 +141266,7 @@
     "MartinFleuri": {
       "index": 612,
       "owner_key": "CphKMu6AFNSpYRh6k29XdB4nxyCqpgQf2QFpgZyhv9G7",
-      "balance": 1890872,
+      "balance": 1930558,
       "membership_expire_on": 1713706024,
       "next_cert_issuable_on": 1661517230,
       "certs_received": {
@@ -138292,7 +141285,7 @@
     "Aquarelle": {
       "index": 10909,
       "owner_key": "CphPGvkVy7rGR8Y9sWqXk1MxKD9xPPaWLZ7qRztUFire",
-      "balance": 207745,
+      "balance": 247431,
       "membership_expire_on": 1698408140,
       "next_cert_issuable_on": 1680468586,
       "certs_received": {
@@ -138308,9 +141301,9 @@
     "bellis": {
       "index": 4305,
       "owner_key": "Cphipi7ZzgEck2ZX55hmxtmsNQtYgBBBewg1apDGtcvu",
-      "balance": 715205,
-      "membership_expire_on": 1695896490,
-      "next_cert_issuable_on": 1671446016,
+      "balance": 754891,
+      "membership_expire_on": 1726532662,
+      "next_cert_issuable_on": 1695047062,
       "certs_received": {
         "Maaude09": 1732235305,
         "Seve": 1729747867,
@@ -138323,7 +141316,7 @@
     "laviedefiou": {
       "index": 11159,
       "owner_key": "CpjcpJWVaL4CwJNjkgDN5MaCMbStzxfmTd2tK9GhNUBU",
-      "balance": 322332,
+      "balance": 362018,
       "membership_expire_on": 1704728992,
       "next_cert_issuable_on": 1678202444,
       "certs_received": {
@@ -138339,7 +141332,7 @@
     "QuantumB": {
       "index": 7881,
       "owner_key": "CpoKyuLJeQsonHCuCJTLQ4Cn3DTeEaaTwoXWEnFWL7QH",
-      "balance": 531823,
+      "balance": 571509,
       "membership_expire_on": 1712010570,
       "next_cert_issuable_on": 1688478430,
       "certs_received": {
@@ -138375,15 +141368,16 @@
     "Zenobie": {
       "index": 6515,
       "owner_key": "CpqZZf1zy6NCzL98Y5aPD5LgDZWiHFfmcvxSErieE5hW",
-      "balance": 922032,
-      "membership_expire_on": 1699628837,
-      "next_cert_issuable_on": 1693132546,
+      "balance": 961718,
+      "membership_expire_on": 1726764586,
+      "next_cert_issuable_on": 1695278986,
       "certs_received": {
         "ChristopheG25": 1754505613,
         "ElieLombard": 1703389116,
         "IsaM": 1714290463,
         "JusteAlex": 1721605978,
         "EricSIMON": 1754440848,
+        "Mavag": 1758322457,
         "Tell": 1712022566,
         "Valerie25": 1754440848,
         "Joailes38": 1702774035,
@@ -138402,7 +141396,7 @@
     "Anton": {
       "index": 2965,
       "owner_key": "Cpupn9YEXMVdffJcuBbFnmV2VKrqv2YZW2Rvc9d3BCxm",
-      "balance": 1311864,
+      "balance": 1351550,
       "membership_expire_on": 1723899885,
       "next_cert_issuable_on": 1651835659,
       "certs_received": {
@@ -138420,7 +141414,7 @@
     "Gerrit": {
       "index": 11833,
       "owner_key": "CpvLqo1Fm7eRJkdUN76epryPtpDWciydFR7XBrZFCw7v",
-      "balance": 194205,
+      "balance": 233891,
       "membership_expire_on": 1708888394,
       "next_cert_issuable_on": 1679650916,
       "certs_received": {
@@ -138438,7 +141432,7 @@
     "PinetFrancis": {
       "index": 12507,
       "owner_key": "CqBR6j8TSDFPWViJu1A4hUoFzY4LfbzN7WavzP1ZnfWR",
-      "balance": 133296,
+      "balance": 172982,
       "membership_expire_on": 1714499555,
       "next_cert_issuable_on": 1684225563,
       "certs_received": {
@@ -138461,15 +141455,16 @@
     "Chencho": {
       "index": 8257,
       "owner_key": "CqNnt9YuLzQpuQSgtxYWwtQrVSUd6to2AVwVwhDzuhsY",
-      "balance": 299019,
+      "balance": 215505,
       "membership_expire_on": 1711589818,
-      "next_cert_issuable_on": 1666063568,
+      "next_cert_issuable_on": 1695260063,
       "certs_received": {
         "bbqueen": 1716859562,
         "Josepeuta": 1715564992,
         "droiam": 1716510316,
         "Gloriosa": 1715566391,
         "Performance": 1716825156,
+        "Amapolasilvestre": 1759371943,
         "Raffaellaiorio": 1716435025,
         "Eugenia1976": 1716848810,
         "ChrisW": 1716608437,
@@ -138483,9 +141478,9 @@
     "Gitty": {
       "index": 12599,
       "owner_key": "CqR3TaNiG6CQUidyhy83QxQbu7ArNtr5VWKecoKR1WaN",
-      "balance": 156642,
+      "balance": 192135,
       "membership_expire_on": 1711543116,
-      "next_cert_issuable_on": 1693241130,
+      "next_cert_issuable_on": 1696583356,
       "certs_received": {
         "Jens777": 1755093416,
         "MKC": 1755716390,
@@ -138493,15 +141488,18 @@
         "SoniaMallorca": 1746599337,
         "majo": 1746211551,
         "catalinons": 1746323020,
+        "Ingrid": 1757580229,
         "Felicia": 1746407904,
         "danielali": 1746642691,
+        "Kurako": 1757924007,
+        "SoniaElena": 1759643277,
         "Zauberkeks": 1746578541
       }
     },
     "Thierry-07": {
       "index": 12257,
       "owner_key": "CqcLtx45phaJU7CvYZ4SfUc5cJjTtsirCmtCFftQ2U3Y",
-      "balance": 156996,
+      "balance": 196682,
       "membership_expire_on": 1711491885,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -138515,7 +141513,7 @@
     "RosaChristina": {
       "index": 8507,
       "owner_key": "CqjRdHCw8sZ3v1nscqXUrGwJu8yR3WKVnGgMBTmqxk3w",
-      "balance": 369777,
+      "balance": 409463,
       "membership_expire_on": 1711353710,
       "next_cert_issuable_on": 1686318940,
       "certs_received": {
@@ -138541,7 +141539,7 @@
     "Licorne6": {
       "index": 5165,
       "owner_key": "CqnK5tZE3ZXqVuoqHT4LjiWgDnaM8EW7dqH3NwUGuWQk",
-      "balance": 217749,
+      "balance": 217435,
       "membership_expire_on": 1710449469,
       "next_cert_issuable_on": 1688874198,
       "certs_received": {
@@ -138568,7 +141566,7 @@
     "Nourviolon5378": {
       "index": 13206,
       "owner_key": "CqrLvtKd4VEgE5cCF5Svv8LeKzC4T9WHnhgCHrEUoZz6",
-      "balance": 63788,
+      "balance": 103474,
       "membership_expire_on": 1721247846,
       "next_cert_issuable_on": 1691478066,
       "certs_received": {
@@ -138583,7 +141581,7 @@
     "Navarrovi": {
       "index": 11001,
       "owner_key": "CqtJPne9W574ZKAtoCmz4uyfz739kYtKcUA1qvZx4YWc",
-      "balance": 180158,
+      "balance": 141544,
       "membership_expire_on": 1703076714,
       "next_cert_issuable_on": 1678427840,
       "certs_received": {
@@ -138599,7 +141597,7 @@
     "JeanLucGAUTHIER": {
       "index": 6195,
       "owner_key": "CqtvAtdxmAejycyHr5DfTSSq1PJAeLs2R8pg33WurWMo",
-      "balance": 2054606,
+      "balance": 2094292,
       "membership_expire_on": 1719167550,
       "next_cert_issuable_on": 1675571728,
       "certs_received": {
@@ -138642,27 +141640,20 @@
       "balance": 452913,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1664606653,
-      "certs_received": {
-        "Blutch": 1693865564
-      }
+      "certs_received": {}
     },
     "Pilar": {
       "index": 5781,
       "owner_key": "CqxWdRjGw2T4espcyEoQrnXSFBt3b3PSaAMMmiqAniJg",
-      "balance": 811135,
+      "balance": 824321,
       "membership_expire_on": 1719757038,
       "next_cert_issuable_on": 1689330658,
       "certs_received": {
         "Amiel": 1731907654,
         "PierreTransformant": 1717259573,
         "Solesan": 1735033827,
-        "Fabi26": 1696462030,
-        "Andre208": 1693939860,
         "PierrePierreR": 1754501933,
-        "PatHamster": 1694848440,
         "fanfan": 1722574894,
-        "HAMSTERDAME": 1694903148,
-        "Calakendi": 1694405755,
         "Icejona": 1736378756,
         "Insa": 1721370517,
         "TailleDouce": 1739777101,
@@ -138676,9 +141667,9 @@
     "MaitePG76": {
       "index": 10774,
       "owner_key": "Cr8DBDkge7P5gakZQqN3HmKcF15uBMsP6KHHAcdW1jnk",
-      "balance": 257502,
+      "balance": 294888,
       "membership_expire_on": 1702056063,
-      "next_cert_issuable_on": 1683816886,
+      "next_cert_issuable_on": 1696259842,
       "certs_received": {
         "Pasadena": 1733768892,
         "Wynfyd": 1733638365,
@@ -138691,8 +141682,8 @@
     "Papycouleur": {
       "index": 9638,
       "owner_key": "Cr9B6XQ9k5b3LbRH4GpAE9dhww67DZXMrF6tCJSjubbp",
-      "balance": 363645,
-      "membership_expire_on": 1695162863,
+      "balance": 383937,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Mystiik": 1726900397,
@@ -138722,9 +141713,9 @@
     "IgnaceDdCh": {
       "index": 10319,
       "owner_key": "CrBTrBjDBnBLwJPAsn5xuf4hqW85cfYihMn6WDWqvVZ3",
-      "balance": 282695,
-      "membership_expire_on": 1699233738,
-      "next_cert_issuable_on": 1671609334,
+      "balance": 322381,
+      "membership_expire_on": 1726964731,
+      "next_cert_issuable_on": 1695472099,
       "certs_received": {
         "SOPHRO": 1730962382,
         "Dinahlonge71": 1731391913,
@@ -138737,7 +141728,7 @@
     "Krikiribes": {
       "index": 11303,
       "owner_key": "CrBru94Qsp8An9BJDjacKUDsiKoDLkdM5pYbSitXgK5c",
-      "balance": 216883,
+      "balance": 256569,
       "membership_expire_on": 1705576821,
       "next_cert_issuable_on": 1685339894,
       "certs_received": {
@@ -138754,7 +141745,7 @@
     "LiliRose": {
       "index": 2398,
       "owner_key": "CrBt2roxhJ1NnVcUyDVuG3Vfyh4kBBwwh3uj8iLceY5",
-      "balance": 248800,
+      "balance": 288486,
       "membership_expire_on": 1699624325,
       "next_cert_issuable_on": 1689508637,
       "certs_received": {
@@ -138824,7 +141815,7 @@
     "HorsCadre": {
       "index": 9751,
       "owner_key": "CraC3yWLY5GPisF3kbMe7qersiNRinsTJNHej9P4hp7M",
-      "balance": 359369,
+      "balance": 399055,
       "membership_expire_on": 1723252533,
       "next_cert_issuable_on": 1668343634,
       "certs_received": {
@@ -138841,7 +141832,7 @@
     "Montsecrii": {
       "index": 7071,
       "owner_key": "CriiF3LqU6PPru5URJ3Xh78kMw8qS6B6YVDY3S7LV1K6",
-      "balance": 417676,
+      "balance": 456128,
       "membership_expire_on": 1721395239,
       "next_cert_issuable_on": 1659020988,
       "certs_received": {
@@ -138856,7 +141847,7 @@
     "Salik": {
       "index": 12815,
       "owner_key": "CrpTikoPiSg2H9UxpFSpDgQVZEmnCceQa2or1XHGeYQF",
-      "balance": 115316,
+      "balance": 155002,
       "membership_expire_on": 1715442245,
       "next_cert_issuable_on": 1692426277,
       "certs_received": {
@@ -138872,27 +141863,30 @@
     "Val79": {
       "index": 7779,
       "owner_key": "CrtNqxRKHeyiyhoLf26Sx6MGPZt7GMkCmsvJFcLstyuh",
-      "balance": 660910,
+      "balance": 714896,
       "membership_expire_on": 1712007008,
-      "next_cert_issuable_on": 1666314559,
+      "next_cert_issuable_on": 1695718756,
       "certs_received": {
         "fredo79": 1713240771,
+        "NathydeSainteVerge": 1757797132,
         "Mobilhomme": 1713034706,
         "Mozart85": 1728851107,
         "Chazy": 1712961063,
         "Siellevie": 1713148993,
         "Muktananda": 1712990256,
+        "Laburg79": 1758427519,
         "ADD": 1715136507
       }
     },
     "EglantineSQ": {
       "index": 11718,
       "owner_key": "CruYSypeTC5fALNpowaHPXGqoNwJepbLdsoJBpC423A6",
-      "balance": 148469,
+      "balance": 199655,
       "membership_expire_on": 1708284575,
       "next_cert_issuable_on": 1682215737,
       "certs_received": {
         "JoelleSQ": 1742257229,
+        "lydiemdb": 1759289668,
         "mayushi": 1739907050,
         "PierrePierreR": 1739859065,
         "YohanH": 1739907050,
@@ -138921,7 +141915,7 @@
     "WylliamQuerido": {
       "index": 12896,
       "owner_key": "Cs7fTFmGntQmDFdrGCC8oJHVR7t6SfGK56t4Nk1vs42r",
-      "balance": 83736,
+      "balance": 123422,
       "membership_expire_on": 1713232636,
       "next_cert_issuable_on": 1687231984,
       "certs_received": {
@@ -138935,7 +141929,7 @@
     "Grazy": {
       "index": 12534,
       "owner_key": "CsFY8Z6Jeurke6gFBejqFEKrc3sH4Ye31FnE76XeTJ8e",
-      "balance": 179592,
+      "balance": 327278,
       "membership_expire_on": 1714759136,
       "next_cert_issuable_on": 1685505816,
       "certs_received": {
@@ -138949,8 +141943,8 @@
     "sostroug": {
       "index": 9768,
       "owner_key": "CsQpR3wdQTpD3TejrA4VMcgAroGSmM6oN8ESgH4n8gHK",
-      "balance": 391386,
-      "membership_expire_on": 1696117478,
+      "balance": 423526,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683301823,
       "certs_received": {
         "Laureline": 1727677702,
@@ -138975,7 +141969,7 @@
     "Lorpp": {
       "index": 6919,
       "owner_key": "CsZPT5FTHJjzguFdSh4cCDjJUmVeUSujvg3s4n6mwDNW",
-      "balance": 864570,
+      "balance": 954256,
       "membership_expire_on": 1707484059,
       "next_cert_issuable_on": 1652480020,
       "certs_received": {
@@ -139020,9 +142014,9 @@
     "thierryR51": {
       "index": 4826,
       "owner_key": "CsmiUYuGyStuqGQ2CM8TkczCMWZahhxZwEtPqzcxw3eQ",
-      "balance": 1026694,
+      "balance": 1066380,
       "membership_expire_on": 1702832027,
-      "next_cert_issuable_on": 1688654472,
+      "next_cert_issuable_on": 1696567345,
       "certs_received": {
         "Voyance51Paula": 1752802518,
         "CyrilPommier": 1738459053,
@@ -139034,13 +142028,12 @@
         "Bengo": 1744128805,
         "EveMahe": 1739486506,
         "Badiane": 1743701497,
-        "Sunrise": 1693980055,
         "virelangue": 1736914496,
         "Pascaleg": 1737517373,
-        "CClement": 1697257173,
+        "CClement": 1759732202,
         "AnneAmbles": 1698099963,
         "MyriamL": 1717014890,
-        "liberte55": 1697619665,
+        "liberte55": 1759690517,
         "GwenolaLef": 1753156476,
         "Lydiabloch": 1698100213,
         "phil3455": 1732148861,
@@ -139059,7 +142052,6 @@
         "Claire": 1738483363,
         "Colaga": 1734586491,
         "Freti73": 1734712065,
-        "letoilebleue": 1694497108,
         "jjberte": 1711227523,
         "hypericum": 1745774061,
         "OValReiki": 1723822401,
@@ -139080,7 +142072,7 @@
     "Erika": {
       "index": 11776,
       "owner_key": "Ct37x1h5rbrh442uN2Z8V5Q4h2oB5EuVeFn8cb237PYG",
-      "balance": 263941,
+      "balance": 277261,
       "membership_expire_on": 1708471735,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -139097,7 +142089,7 @@
     "Bibi0631": {
       "index": 9739,
       "owner_key": "Ct3RkqXYRG62mpFZVzR899iXozPgyjkWD554piuyzaYY",
-      "balance": 355173,
+      "balance": 394859,
       "membership_expire_on": 1722459042,
       "next_cert_issuable_on": 1690973442,
       "certs_received": {
@@ -139113,7 +142105,7 @@
     "rbregage52": {
       "index": 8044,
       "owner_key": "Ct7hsWMkCNPZfhjGkJ8XQKSjWiHum25MiEwy6ZEDGpLA",
-      "balance": 507511,
+      "balance": 547197,
       "membership_expire_on": 1711053295,
       "next_cert_issuable_on": 1670734093,
       "certs_received": {
@@ -139135,9 +142127,9 @@
     "chouchoustrol43": {
       "index": 4801,
       "owner_key": "Ct9TLPpuxfPbjh119WTZUQ3VSAx3rV552hhgbEsQnEMB",
-      "balance": 759989,
+      "balance": 800575,
       "membership_expire_on": 1706371242,
-      "next_cert_issuable_on": 1635043625,
+      "next_cert_issuable_on": 1695208779,
       "certs_received": {
         "VirginMarcCptMembre": 1742850029,
         "Sand": 1747289234,
@@ -139165,7 +142157,7 @@
     "KokLine": {
       "index": 2484,
       "owner_key": "CtKCQcvZY4MfUJfSPWgUQ2vXV8bG3w9ZR2zDjDwpcore",
-      "balance": 1246300,
+      "balance": 1285986,
       "membership_expire_on": 1723754133,
       "next_cert_issuable_on": 1668220494,
       "certs_received": {
@@ -139191,7 +142183,7 @@
     "Leila": {
       "index": 6577,
       "owner_key": "CthzaDP2qHt55hyPdbnQL9hTEWVULJWXqYW99Hrts2Ed",
-      "balance": 451971,
+      "balance": 491657,
       "membership_expire_on": 1700150580,
       "next_cert_issuable_on": 1655561040,
       "certs_received": {
@@ -139208,9 +142200,9 @@
     "Titouan": {
       "index": 2366,
       "owner_key": "CtovCH1D3xvNgpvqbjASnmAw9rsBioiYQuZUdSwvR4aF",
-      "balance": 1258901,
-      "membership_expire_on": 1693600721,
-      "next_cert_issuable_on": 1688375306,
+      "balance": 1241087,
+      "membership_expire_on": 1725194975,
+      "next_cert_issuable_on": 1694936681,
       "certs_received": {
         "PatrickFlouriot": 1725500109,
         "Tidus": 1747513201,
@@ -139229,9 +142221,9 @@
     "Cat45190": {
       "index": 13134,
       "owner_key": "CtqjSv1CwJwAfqVHckTiv3S7mKYBG6vKFFx7gERSq4GL",
-      "balance": 129170,
+      "balance": 168856,
       "membership_expire_on": 1719245220,
-      "next_cert_issuable_on": 1693563530,
+      "next_cert_issuable_on": 1696075252,
       "certs_received": {
         "TiboDom": 1752109334,
         "Mathdom": 1752109052,
@@ -139246,8 +142238,8 @@
     "MarionDrn": {
       "index": 6128,
       "owner_key": "CtwUiLeRomrvNoNG6ixkPhyr15RQ6BmVcQVYkaynWqFT",
-      "balance": 707371,
-      "membership_expire_on": 1695158091,
+      "balance": 727663,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1640186189,
       "certs_received": {
         "daryl": 1700439972,
@@ -139263,7 +142255,7 @@
     "Benji": {
       "index": 9204,
       "owner_key": "CtxFkukhmxvFo72GGyLgWuVPcenMcJQgNJ3DycoVuBVp",
-      "balance": 345509,
+      "balance": 373987,
       "membership_expire_on": 1718490781,
       "next_cert_issuable_on": 1688929885,
       "certs_received": {
@@ -139282,7 +142274,7 @@
     "laIsa": {
       "index": 5327,
       "owner_key": "CtxdazXnPzFEcMHDrTZxhPABbGz7vVUUwP78JQHygBWM",
-      "balance": 258707,
+      "balance": 207303,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1665941500,
       "certs_received": {
@@ -139293,9 +142285,9 @@
     "Amaraya": {
       "index": 9141,
       "owner_key": "Cu3mptiKqqBYdm1ZxE2M5yzJ16UcysHDGLKg5H5NZMSo",
-      "balance": 240737,
+      "balance": 212223,
       "membership_expire_on": 1717758332,
-      "next_cert_issuable_on": 1688119652,
+      "next_cert_issuable_on": 1694603997,
       "certs_received": {
         "Manu_El": 1737365344,
         "Cordeliaze": 1722804678,
@@ -139303,6 +142295,7 @@
         "Vicon2": 1740683185,
         "Javilion": 1732605541,
         "corinne13me": 1732761745,
+        "Sarieluz": 1759053189,
         "Alegria": 1722977299,
         "MaraVilla": 1738783423,
         "Sohan": 1736911491,
@@ -139336,7 +142329,7 @@
     "mylene11200": {
       "index": 10125,
       "owner_key": "Cu5HE1CDC1p34gKKaj7h3SuZUdhFk4jipHHQXxDHaNkM",
-      "balance": 434021,
+      "balance": 473707,
       "membership_expire_on": 1698181340,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -139368,7 +142361,7 @@
     "Claripenagos": {
       "index": 11563,
       "owner_key": "CuE5mCTTEw5aebmmsjaFr4avYXCqpPjuhPuAF3JRsnLj",
-      "balance": 151626,
+      "balance": 154212,
       "membership_expire_on": 1705768648,
       "next_cert_issuable_on": 1683816559,
       "certs_received": {
@@ -139398,9 +142391,9 @@
     "Liliwasabi": {
       "index": 7135,
       "owner_key": "CuT3p1tDudPurTaiWxzG9Jzo4druKzHBzCEVcyWxGiVj",
-      "balance": 680003,
+      "balance": 719689,
       "membership_expire_on": 1707442164,
-      "next_cert_issuable_on": 1675956564,
+      "next_cert_issuable_on": 1695566186,
       "certs_received": {
         "Damien": 1707948802,
         "anouchka": 1718731201,
@@ -139411,6 +142404,7 @@
         "EliseL": 1718604240,
         "FrancoisNas": 1708124485,
         "DavidB": 1706597155,
+        "Happyculteur": 1758674590,
         "BorisPuyet": 1750932068,
         "isanaturo07": 1704754217,
         "MargheB": 1709756700,
@@ -139420,7 +142414,7 @@
     "JR34": {
       "index": 13284,
       "owner_key": "CuY48MpQG7bH8CgTtGJTHAMp6yhaxLUbqWTmgQiyRAZ7",
-      "balance": 33108,
+      "balance": 72794,
       "membership_expire_on": 1720330053,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -139432,11 +142426,25 @@
         "jeanine65": 1752642306
       }
     },
+    "Venusia26": {
+      "index": 13735,
+      "owner_key": "CuYSbFMfnDfQbmVwTybFHSHvrE3hK2QHQCrJMzc1HsBV",
+      "balance": 97858,
+      "membership_expire_on": 1727649738,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "vlareynie26": 1759512127,
+        "Bil26": 1759207338,
+        "Reumy": 1759283143,
+        "EDiet": 1759301923,
+        "VincentMercier": 1759297294
+      }
+    },
     "AL1XPOMM1ER": {
       "index": 9609,
       "owner_key": "CuYihto33BrzZFhPT3jxE7MaUDYZ1gVu7Tjgf3t4r6zj",
-      "balance": 365763,
-      "membership_expire_on": 1694041868,
+      "balance": 372171,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681436668,
       "certs_received": {
         "CyrilPommier": 1726896132,
@@ -139450,9 +142458,9 @@
     "Eiokka": {
       "index": 555,
       "owner_key": "CuZ7z7E92ziHpsa1bVduzYMj7kyBAWfrSsXZL9iRUu9n",
-      "balance": 1879359,
+      "balance": 1700105,
       "membership_expire_on": 1700956718,
-      "next_cert_issuable_on": 1680764887,
+      "next_cert_issuable_on": 1695021346,
       "certs_received": {
         "GenevLeb": 1700383759,
         "DonQuiche": 1702356366,
@@ -139460,15 +142468,16 @@
         "RonanGLEMAIN": 1700455835,
         "Anton": 1702422098,
         "Maaltir": 1700774208,
-        "cass1": 1698898280
+        "AmelieBroudissou": 1758064546,
+        "cass1": 1757808583
       }
     },
     "SeedFamily": {
       "index": 10095,
       "owner_key": "Cuh5KHaUH1JCD9SGTsdnPg8F5bpUaoCyr7L3EU7Ty6E1",
-      "balance": 323329,
+      "balance": 313915,
       "membership_expire_on": 1724361304,
-      "next_cert_issuable_on": 1685709438,
+      "next_cert_issuable_on": 1694582311,
       "certs_received": {
         "GUL40_Fr1": 1729548643,
         "AnaMery": 1732302264,
@@ -139493,13 +142502,14 @@
         "Alextraordinario": 1736222760,
         "AylaSatyaSangat": 1729709134,
         "PatriciaSalud": 1748100929,
+        "Martuki": 1757624291,
         "Kol": 1739906478
       }
     },
     "Annankha": {
       "index": 10346,
       "owner_key": "CuvNu57wYMv2RiX9EKgE2oof86NXF51WpkU2MbnB2vLd",
-      "balance": 329436,
+      "balance": 369122,
       "membership_expire_on": 1699903365,
       "next_cert_issuable_on": 1692506687,
       "certs_received": {
@@ -139521,7 +142531,7 @@
     "Clod": {
       "index": 12548,
       "owner_key": "CuybCe27eqmMUrN887J9yw1RXFTpGgEDhHrFhFgFgXnW",
-      "balance": 147274,
+      "balance": 186960,
       "membership_expire_on": 1711886322,
       "next_cert_issuable_on": 1686742551,
       "certs_received": {
@@ -139552,7 +142562,7 @@
     "AliceCtln": {
       "index": 5641,
       "owner_key": "Cv5e7rWsvXqtXptaTnAQszSqhP4gqCLQSCm3WKjLhfyQ",
-      "balance": 762311,
+      "balance": 720311,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1681029728,
       "certs_received": {
@@ -139580,9 +142590,9 @@
     "mylenealexandre": {
       "index": 10995,
       "owner_key": "CvEA16cNrKA6dTKc7qTgDg7Uo1KVk4XzekNgSfi5Czvw",
-      "balance": 182217,
+      "balance": 222103,
       "membership_expire_on": 1701349321,
-      "next_cert_issuable_on": 1686550848,
+      "next_cert_issuable_on": 1694422751,
       "certs_received": {
         "LuciaM": 1738914829,
         "Gigimit57": 1734738173,
@@ -139627,7 +142637,7 @@
     "MORA": {
       "index": 7813,
       "owner_key": "CveyKjNxwSSy25uWbNGF7VshXZzTnrt6o9MTSF7QArae",
-      "balance": 418597,
+      "balance": 458283,
       "membership_expire_on": 1721157042,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -139641,7 +142651,7 @@
     "SueLeyva": {
       "index": 13092,
       "owner_key": "Cvf44r2WhCfC6psxo3WhJUqzCbJcweDCLgyQsWK1BWsr",
-      "balance": 22528,
+      "balance": 118734,
       "membership_expire_on": 1718826255,
       "next_cert_issuable_on": 1693309647,
       "certs_received": {
@@ -139698,8 +142708,8 @@
     "Bastet": {
       "index": 10083,
       "owner_key": "Cvn8aq7R6bDXWqmhK4RFEUPgM2jjJcEDzMgR5jtYiUY7",
-      "balance": 329957,
-      "membership_expire_on": 1696505647,
+      "balance": 367487,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668821758,
       "certs_received": {
         "hydromel": 1732944589,
@@ -139717,9 +142727,9 @@
     "HViegas": {
       "index": 12487,
       "owner_key": "CvnVpEbkoMWjZdHDu3xVnjQ6R18AZ1mdsey4e1kJFtby",
-      "balance": 136332,
+      "balance": 176018,
       "membership_expire_on": 1714012247,
-      "next_cert_issuable_on": 1689416498,
+      "next_cert_issuable_on": 1696132633,
       "certs_received": {
         "Ferpires": 1752805123,
         "FranciscoVenda": 1749270391,
@@ -139737,8 +142747,8 @@
     "Ceres_Atenea": {
       "index": 9621,
       "owner_key": "Cvwpe7Wuj6CjjgBxaDj5pYHMyZkX8rcqobH1bp2RqWCk",
-      "balance": 172182,
-      "membership_expire_on": 1694733332,
+      "balance": 150914,
+      "membership_expire_on": 1727433728,
       "next_cert_issuable_on": 1688823132,
       "certs_received": {
         "almadeser": 1754031966,
@@ -139789,7 +142799,7 @@
     "Claire73": {
       "index": 8593,
       "owner_key": "CwA7kcCKdTRzz7Ezf8ZnQ6SLYAAccdj7ew3qQmpBzCjr",
-      "balance": 310760,
+      "balance": 286446,
       "membership_expire_on": 1718456849,
       "next_cert_issuable_on": 1688656972,
       "certs_received": {
@@ -139810,7 +142820,7 @@
     "Bastan": {
       "index": 7953,
       "owner_key": "CwAPz1kDB7cPB3jHRKChPnhsZ1hS4XUwDfTQ3nKkoM3H",
-      "balance": 385769,
+      "balance": 425455,
       "membership_expire_on": 1718205542,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -139826,7 +142836,7 @@
     "martine97150": {
       "index": 11166,
       "owner_key": "CwFpfwtm89dDUL6g2Wj7tDRUW37sT3jJGhUVXnPj3kSY",
-      "balance": 172132,
+      "balance": 207318,
       "membership_expire_on": 1701143911,
       "next_cert_issuable_on": 1683403033,
       "certs_received": {
@@ -139847,7 +142857,7 @@
     "MayuB": {
       "index": 7630,
       "owner_key": "CwQfSbhHAkcHzKvEpDFkd1Y8WARoNyR9NdWTzi5oxaKs",
-      "balance": 548143,
+      "balance": 587829,
       "membership_expire_on": 1709047391,
       "next_cert_issuable_on": 1681303495,
       "certs_received": {
@@ -139881,9 +142891,9 @@
     "GeraldineBenard": {
       "index": 13321,
       "owner_key": "CwZuwn1FBY89s5C31sBmL57bLeaAZydc2pkaw1Sb3tpp",
-      "balance": 26700,
+      "balance": 66386,
       "membership_expire_on": 1722459533,
-      "next_cert_issuable_on": 1693119272,
+      "next_cert_issuable_on": 1693783839,
       "certs_received": {
         "alaintorres": 1754458860,
         "Pocpoc": 1754244881,
@@ -139906,7 +142916,6 @@
         "Yamaneko": 1699305687,
         "WenWen": 1699306019,
         "ChristelleHerbagemembre": 1701472889,
-        "Fredlassave": 1694375099,
         "ofontes": 1698721025,
         "Kounty": 1699304162
       }
@@ -139914,7 +142923,7 @@
     "C13Confianza": {
       "index": 7937,
       "owner_key": "CwvWSRveFJk75x8XVwsPG5g1n1NK1Gx7JbdsiNrby2VY",
-      "balance": 243861,
+      "balance": 283547,
       "membership_expire_on": 1709166471,
       "next_cert_issuable_on": 1683625246,
       "certs_received": {
@@ -139941,7 +142950,7 @@
     "RaphaelCinelli": {
       "index": 1910,
       "owner_key": "Cwz6BveEcBK39XrCJmdefND7zD5BjRZU7cmmoHEnNLAD",
-      "balance": 1674821,
+      "balance": 1714507,
       "membership_expire_on": 1702906259,
       "next_cert_issuable_on": 1646312416,
       "certs_received": {
@@ -139956,7 +142965,7 @@
     "DO58": {
       "index": 12744,
       "owner_key": "Cx6h6CRPmfj8B6PLgkC8V6A79Dy1BT7eYTLD7SK4ZhD4",
-      "balance": 130164,
+      "balance": 159850,
       "membership_expire_on": 1716654823,
       "next_cert_issuable_on": 1687324739,
       "certs_received": {
@@ -139970,7 +142979,7 @@
     "YoanRousselle": {
       "index": 6556,
       "owner_key": "Cx7ufYwE7xXT12T7NDKg8bUZ3TqpZKbFsXvkiZFHVAWz",
-      "balance": 475181,
+      "balance": 514867,
       "membership_expire_on": 1711905773,
       "next_cert_issuable_on": 1684728672,
       "certs_received": {
@@ -139984,9 +142993,9 @@
     "Brit971": {
       "index": 11489,
       "owner_key": "CxAwJ3BTyAponvvn2LHQqbV8svJ6LM1NqAXn864aGJaD",
-      "balance": 109980,
+      "balance": 82966,
       "membership_expire_on": 1706942779,
-      "next_cert_issuable_on": 1685864541,
+      "next_cert_issuable_on": 1693845092,
       "certs_received": {
         "Nadou971": 1738754996,
         "Veroniquez": 1738757980,
@@ -140007,7 +143016,7 @@
     "Marcelle73": {
       "index": 7303,
       "owner_key": "CxU565zx3N1DLkf6b5NkXcfnSnminbDJkkMygEoB1rXu",
-      "balance": 54468,
+      "balance": 94154,
       "membership_expire_on": 1709831822,
       "next_cert_issuable_on": 1689229497,
       "certs_received": {
@@ -140029,7 +143038,7 @@
     "Dolfine": {
       "index": 3058,
       "owner_key": "CxWGA39twcJWkVjqdNWLVy9nVj8CcEPL1yHyJZhjEjSp",
-      "balance": 1434256,
+      "balance": 1473942,
       "membership_expire_on": 1702597520,
       "next_cert_issuable_on": 1682157608,
       "certs_received": {
@@ -140039,7 +143048,7 @@
         "Pepita": 1749770777,
         "lelefontes": 1701150618,
         "Yanae": 1699652244,
-        "ofontes": 1701140209,
+        "ofontes": 1758516614,
         "Pichotilha": 1700206566,
         "stephanoel": 1699852179
       }
@@ -140047,7 +143056,7 @@
     "geusette": {
       "index": 11891,
       "owner_key": "CxYPRRr5wc6wTvDcUUATnPXjeT1C6GgdWE8TQXZVxiDZ",
-      "balance": 199469,
+      "balance": 239155,
       "membership_expire_on": 1709338926,
       "next_cert_issuable_on": 1687155065,
       "certs_received": {
@@ -140066,7 +143075,7 @@
     "YannickGuennou": {
       "index": 5293,
       "owner_key": "CxiLdU5nWUAGhy9JCnCUX2tYFSfKQ5qfsLZGAhDBicE1",
-      "balance": 642869,
+      "balance": 682555,
       "membership_expire_on": 1717618565,
       "next_cert_issuable_on": 1686300377,
       "certs_received": {
@@ -140077,7 +143086,6 @@
         "JeanMarcBuge": 1749970476,
         "PierreAubert": 1747374507,
         "Pectine": 1740520830,
-        "AurelienBois": 1695093897,
         "GeraldineGarrigues": 1707601203,
         "Lucianael": 1729473752,
         "annefreda": 1721149183
@@ -140086,7 +143094,7 @@
     "LaurenceM": {
       "index": 6448,
       "owner_key": "CxmjDyA98TZHfeV4wWTXA1UvdpsEcv15DmXjMhuohPnK",
-      "balance": 514271,
+      "balance": 553957,
       "membership_expire_on": 1700226100,
       "next_cert_issuable_on": 1690254352,
       "certs_received": {
@@ -140112,9 +143120,9 @@
     "Flandelila": {
       "index": 3821,
       "owner_key": "CxtwEBeAjjXbDm9gVXRoCNmG3sEuGxewhSwKfiHB5c2K",
-      "balance": 617159,
+      "balance": 656845,
       "membership_expire_on": 1704759744,
-      "next_cert_issuable_on": 1680487276,
+      "next_cert_issuable_on": 1696662703,
       "certs_received": {
         "Eveilducoeur": 1722491493,
         "MarcoSko": 1743045397,
@@ -140132,11 +143140,11 @@
         "Anamaya": 1719949283,
         "Orage43": 1737348072,
         "WOODManuPOTTER": 1719957503,
-        "Orchys": 1696097160,
         "Gigimit57": 1730676529,
         "CedrickPiwo": 1728437737,
         "ptitevero": 1699583691,
-        "lamouette": 1695591347,
+        "lamouette": 1758477572,
+        "chouchoustrol43": 1758251979,
         "fabienne": 1720039930,
         "FERRATONCristina": 1728517818,
         "annievg": 1719087214,
@@ -140151,8 +143159,8 @@
     "JoW": {
       "index": 6049,
       "owner_key": "Cy3XB5MNUrFAqqwaq3FKeSAGEsjnZFknYL1N7mL9tYau",
-      "balance": 674223,
-      "membership_expire_on": 1695663452,
+      "balance": 700973,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681206714,
       "certs_received": {
         "yekapharoah": 1699056128,
@@ -140179,7 +143187,7 @@
     "Duke": {
       "index": 2545,
       "owner_key": "Cy49SCD2S9x6KFc8Jf9hypAXHn2SiSKF5B3xsdSgeXt2",
-      "balance": 456003,
+      "balance": 281889,
       "membership_expire_on": 1704346240,
       "next_cert_issuable_on": 1686561972,
       "certs_received": {
@@ -140199,7 +143207,7 @@
     "Do11": {
       "index": 11183,
       "owner_key": "Cy8FpqkHHFe7kvXgZEuzUbTScUtnZQa1HqLhDzcv4HzF",
-      "balance": 252214,
+      "balance": 291900,
       "membership_expire_on": 1703443309,
       "next_cert_issuable_on": 1689864133,
       "certs_received": {
@@ -140220,11 +143228,10 @@
     "ZinzinGroues": {
       "index": 3920,
       "owner_key": "CyE22FChkdLKPSfvtCttTusLPdXhmb5zAtjopefRXT72",
-      "balance": 186629,
+      "balance": 226315,
       "membership_expire_on": 1718198644,
       "next_cert_issuable_on": 1691650558,
       "certs_received": {
-        "ChristianDelaunay": 1696369713,
         "Cilla": 1740533545,
         "Steph50": 1742926263,
         "Martial50": 1740535890,
@@ -140246,7 +143253,7 @@
     "madeleine": {
       "index": 7546,
       "owner_key": "CyEPGUiy2Gi7PWxWbBThFTE2htjrLpcfoxHs7F1CqnC4",
-      "balance": 644449,
+      "balance": 684135,
       "membership_expire_on": 1700522409,
       "next_cert_issuable_on": 1650511354,
       "certs_received": {
@@ -140284,7 +143291,7 @@
     "Oiseauclown": {
       "index": 6571,
       "owner_key": "Cye6LwvRdsy4PDWbeb5TZKEyfofEkhCr9xzV29CR8Nr2",
-      "balance": 428491,
+      "balance": 468177,
       "membership_expire_on": 1697994264,
       "next_cert_issuable_on": 1683943201,
       "certs_received": {
@@ -140299,9 +143306,9 @@
     "Thito": {
       "index": 9893,
       "owner_key": "CygZuAN616oEeNKSYdVmBU3jcXE1MzanqS2wmrbLJA7s",
-      "balance": 190324,
+      "balance": 189410,
       "membership_expire_on": 1723664524,
-      "next_cert_issuable_on": 1688379598,
+      "next_cert_issuable_on": 1696723856,
       "certs_received": {
         "LosMundosdeKrull": 1739677492,
         "Wynfyd": 1749310933,
@@ -140339,9 +143346,9 @@
     "LaetitiaPavesi": {
       "index": 8729,
       "owner_key": "CymTUJruinC2rPQUnM64cugbL4mRvThmwK9X9HNMcF38",
-      "balance": 401551,
+      "balance": 458237,
       "membership_expire_on": 1714139405,
-      "next_cert_issuable_on": 1677566327,
+      "next_cert_issuable_on": 1696142062,
       "certs_received": {
         "SophieB": 1727468353,
         "Chatounet": 1740213653,
@@ -140369,7 +143376,7 @@
     "KungFury": {
       "index": 2444,
       "owner_key": "CyzZtaopzYj75G2t51A2U89eit98gTfshyZ5jmuBVXft",
-      "balance": 776683,
+      "balance": 816369,
       "membership_expire_on": 1711710764,
       "next_cert_issuable_on": 1662811498,
       "certs_received": {
@@ -140385,12 +143392,13 @@
     "Angele73": {
       "index": 12265,
       "owner_key": "Cz4KVEmbr25YosY52pRF4JLKGEGbUnwgA7j49Uk7bj9z",
-      "balance": 150496,
+      "balance": 175448,
       "membership_expire_on": 1711835403,
-      "next_cert_issuable_on": 1687519714,
+      "next_cert_issuable_on": 1695627571,
       "certs_received": {
         "EUREKA": 1743705506,
         "JanineBoitel": 1743704222,
+        "ChristianeClavelier": 1758060711,
         "MartineBuhrig": 1743975212,
         "Aliyoyo": 1752090566,
         "Benoa421": 1743965201,
@@ -140401,7 +143409,7 @@
     "Kuro": {
       "index": 11884,
       "owner_key": "Cz4fZXNTUbPobHFYqRxbaP8BBnRUSobGKUHGG85Memh8",
-      "balance": 189969,
+      "balance": 229655,
       "membership_expire_on": 1709649549,
       "next_cert_issuable_on": 1686660316,
       "certs_received": {
@@ -140425,8 +143433,8 @@
     "MoniqueStJean": {
       "index": 9633,
       "owner_key": "Cz8oV9rSUZvLvjiNcQeqvKH5kubhLxu3sTAckh2ygHMj",
-      "balance": 357104,
-      "membership_expire_on": 1695151265,
+      "balance": 377396,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670482941,
       "certs_received": {
         "HelloSunshine": 1727060273,
@@ -140439,7 +143447,7 @@
     "BRIDGET": {
       "index": 2064,
       "owner_key": "CzE44NLBz8Jk1WPSz4p8Ay714AjooyW7dCRcuHYxccQ7",
-      "balance": 1485304,
+      "balance": 1524990,
       "membership_expire_on": 1701908411,
       "next_cert_issuable_on": 1673965762,
       "certs_received": {
@@ -140455,7 +143463,7 @@
     "Beata": {
       "index": 6437,
       "owner_key": "CzELDyGEaXyhhj7upUVEJYprtwRxiFqc974Uwco3zGz7",
-      "balance": 604063,
+      "balance": 643749,
       "membership_expire_on": 1698274074,
       "next_cert_issuable_on": 1686389587,
       "certs_received": {
@@ -140490,7 +143498,7 @@
     "SylvieDici": {
       "index": 9438,
       "owner_key": "CzMYYc2532bXvUwvLEgjmQYDrr4hhjQPbcbi8SajL1gf",
-      "balance": 189601,
+      "balance": 225287,
       "membership_expire_on": 1715614054,
       "next_cert_issuable_on": 1693138383,
       "certs_received": {
@@ -140512,7 +143520,7 @@
     "Marieb67": {
       "index": 13291,
       "owner_key": "CzPC3dkYsAws1Gu4DbpaPkZmemt7uGucT2wCMbNoKpZw",
-      "balance": 32940,
+      "balance": 62626,
       "membership_expire_on": 1722355069,
       "next_cert_issuable_on": 1691028153,
       "certs_received": {
@@ -140526,7 +143534,7 @@
     "Fabienne04": {
       "index": 8717,
       "owner_key": "CzWKe1Dmcn6o3w7yhCwYeyLVCcZBQPiDtxJUFms1Y2Np",
-      "balance": 381532,
+      "balance": 421218,
       "membership_expire_on": 1721523692,
       "next_cert_issuable_on": 1661422017,
       "certs_received": {
@@ -140541,7 +143549,7 @@
     "Rejouine": {
       "index": 11302,
       "owner_key": "CzXuEKduHHVj8T91VqSXJWcwZdTBnoBaHDg4eca9a8Ra",
-      "balance": 275565,
+      "balance": 245251,
       "membership_expire_on": 1705716882,
       "next_cert_issuable_on": 1674544961,
       "certs_received": {
@@ -140561,14 +143569,7 @@
       "balance": 426775,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1636609329,
-      "certs_received": {
-        "RaphaelleEva": 1695538128,
-        "AurelienBois": 1695277718,
-        "GeraldineGarrigues": 1695284260,
-        "Dolfine": 1695281467,
-        "Coco": 1695609558,
-        "KaraMonnerville": 1695538128
-      }
+      "certs_received": {}
     },
     "Bylbondrums": {
       "index": 6924,
@@ -140589,10 +143590,11 @@
     "s00999": {
       "index": 3701,
       "owner_key": "CziEgFsmiuGWvhU7gHUfifDphjHYLH9wYBwKodDcuySA",
-      "balance": 2045303,
-      "membership_expire_on": 1700610388,
-      "next_cert_issuable_on": 1688221255,
+      "balance": 2088289,
+      "membership_expire_on": 1727538637,
+      "next_cert_issuable_on": 1696322233,
       "certs_received": {
+        "gberdal": 1758332345,
         "Renzo": 1747233158,
         "Benvaudeurs": 1736968923,
         "Cle": 1727452360,
@@ -140623,21 +143625,24 @@
         "Shaypalgv": 1733282185,
         "Fred": 1750138452,
         "Guillermo89": 1755007544,
+        "clairetango": 1759427286,
         "Lylie_Bulle": 1746755244,
         "BrunoCarone": 1731516791,
+        "CatherineBerdal": 1758344424,
         "Ninette89": 1717025598,
         "Mia": 1735975075,
         "hypericum": 1749630974,
         "Keramina51": 1721370068,
         "Samadhi": 1707457250,
         "Celib": 1740265458,
+        "Marino45": 1758524862,
         "Gclaire": 1721692928
       }
     },
     "AlexisCharrier": {
       "index": 8772,
       "owner_key": "CznmsVKQ2owcAsWRjGo6MHKV3v5yR1Sq3DMFfGMywcR5",
-      "balance": 457308,
+      "balance": 496994,
       "membership_expire_on": 1717614700,
       "next_cert_issuable_on": 1657107258,
       "certs_received": {
@@ -140658,7 +143663,7 @@
     "Coro90": {
       "index": 10480,
       "owner_key": "CzqyqyRHnfpKpa1TJbMqMPENDsdoCPjfkkrKaLu6m8W1",
-      "balance": 125605,
+      "balance": 162891,
       "membership_expire_on": 1700684621,
       "next_cert_issuable_on": 1686831892,
       "certs_received": {
@@ -140679,13 +143684,14 @@
     "FabienneParienti": {
       "index": 8190,
       "owner_key": "CzvjfUz5oKzJRV3KN287o9rY4QTZ3o6vquZvGKytwQNx",
-      "balance": 466919,
+      "balance": 496605,
       "membership_expire_on": 1709944928,
       "next_cert_issuable_on": 1688647602,
       "certs_received": {
         "fdrubigny": 1714706507,
         "Robin_et_Odile": 1713321380,
         "NathalieCatelin": 1715468236,
+        "CelineKa": 1758167948,
         "SylvieDelage": 1714802008,
         "Rajesh": 1743871904,
         "Ethersource83": 1716436386
@@ -140702,9 +143708,9 @@
     "Galacta": {
       "index": 9767,
       "owner_key": "D18H8x77NZ5J61TnDyAeDm2dRyrjAafvckA3jvr5uebm",
-      "balance": 308655,
+      "balance": 347841,
       "membership_expire_on": 1724105120,
-      "next_cert_issuable_on": 1691146821,
+      "next_cert_issuable_on": 1695565134,
       "certs_received": {
         "chantelavie": 1732408580,
         "DitchB": 1727842690,
@@ -140732,7 +143738,7 @@
     "mimitoutvabien": {
       "index": 4027,
       "owner_key": "D18ihMjXRL32VVJmxYD3f3wDR4eBz28tgufAhsPUgrkq",
-      "balance": 1183344,
+      "balance": 1223030,
       "membership_expire_on": 1718308459,
       "next_cert_issuable_on": 1692412218,
       "certs_received": {
@@ -140762,7 +143768,7 @@
     "Emeline": {
       "index": 6726,
       "owner_key": "D1KnpavwzKxd6r3jkj7FbpZAdMzN8UUgDbxRiGmzFoj",
-      "balance": 624057,
+      "balance": 663743,
       "membership_expire_on": 1702480577,
       "next_cert_issuable_on": 1684897594,
       "certs_received": {
@@ -140788,9 +143794,9 @@
     "RussoDavid13": {
       "index": 9109,
       "owner_key": "D1St5yZDmr18mvuTJuiHx2avqeKoGfP4r4YfjUMV43am",
-      "balance": 387695,
+      "balance": 427381,
       "membership_expire_on": 1719852430,
-      "next_cert_issuable_on": 1685286034,
+      "next_cert_issuable_on": 1693813769,
       "certs_received": {
         "Amiel": 1745622685,
         "MAGSENS": 1722761455,
@@ -140809,6 +143815,20 @@
         "Mianjeke": 1722661859
       }
     },
+    "Borzine": {
+      "index": 13663,
+      "owner_key": "D1UwrnE34sdgjGwncTDtWbLiM2Q1ix4Ceq82aYwwTnVm",
+      "balance": 12936,
+      "membership_expire_on": 1722026824,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "chantelavie": 1757472519,
+        "Yorick": 1758300275,
+        "Galacta": 1758608334,
+        "Colaga": 1758609117,
+        "Buffle": 1757809089
+      }
+    },
     "Cassarclaude": {
       "index": 6827,
       "owner_key": "D1VN2KheYzWz3s8217YwpyYKm5Gag4YuUvayho2bSbbR",
@@ -140826,7 +143846,7 @@
     "Maicafeliz": {
       "index": 10158,
       "owner_key": "D1gtRZUfgHQtwAzoXYNKbbKU6dZwnfgwApZf1iS81bNA",
-      "balance": 146644,
+      "balance": 166330,
       "membership_expire_on": 1723927155,
       "next_cert_issuable_on": 1672530900,
       "certs_received": {
@@ -140851,7 +143871,7 @@
     "ADELE": {
       "index": 12419,
       "owner_key": "D1j4LpN7RAfqy5u6qr26L5aTwnSFcrFYLwE9JYuU66E1",
-      "balance": 149908,
+      "balance": 189594,
       "membership_expire_on": 1711892803,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -140867,7 +143887,7 @@
     "Epicurom": {
       "index": 7182,
       "owner_key": "D1jMCmRyvvZmGnZhrXhdBJAyricbvWT63eZWuvjhdRo7",
-      "balance": 557009,
+      "balance": 596695,
       "membership_expire_on": 1708508982,
       "next_cert_issuable_on": 1677025342,
       "certs_received": {
@@ -140882,7 +143902,7 @@
     "Ondine": {
       "index": 11432,
       "owner_key": "D1jdmrLboxqrdp5DTQkoYmjkrrzn2ko6NZ7eRqEtSmCL",
-      "balance": 329216,
+      "balance": 361902,
       "membership_expire_on": 1706317874,
       "next_cert_issuable_on": 1692689714,
       "certs_received": {
@@ -140904,8 +143924,8 @@
     "Manounou84": {
       "index": 3409,
       "owner_key": "D1nXGSuYDYvu5tP2XtXtyUhwjvqSXfZP31RjRFbPizTK",
-      "balance": 869006,
-      "membership_expire_on": 1696198146,
+      "balance": 902224,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1665387287,
       "certs_received": {
         "Lol": 1727452360,
@@ -140925,8 +143945,20 @@
       "balance": 451148,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
+      "certs_received": {}
+    },
+    "NancyC": {
+      "index": 13508,
+      "owner_key": "D1opuuCr83jkuSSNvmNfzdkXsyqv9RaZGPPFkzwmboQN",
+      "balance": 39088,
+      "membership_expire_on": 1723249540,
+      "next_cert_issuable_on": 1694529508,
       "certs_received": {
-        "Mariekette": 1693808424
+        "IbonNakin": 1757023952,
+        "LeireArias": 1757030041,
+        "Jontxu67": 1757022493,
+        "Roberto_Oraa_79_DDYG": 1757061114,
+        "Jhonnier": 1757085429
       }
     },
     "AudreyBordas": {
@@ -140948,7 +143980,7 @@
     "Lalouise": {
       "index": 10715,
       "owner_key": "D23VRRpscn6LZwVBnzQwbcNEwcNgc9SkwktWvH2vmeBK",
-      "balance": 321338,
+      "balance": 361024,
       "membership_expire_on": 1701806672,
       "next_cert_issuable_on": 1692343288,
       "certs_received": {
@@ -140971,7 +144003,7 @@
     "Neliksaurus": {
       "index": 12666,
       "owner_key": "D2A5BVauMbjPX5SK63fuc5svoqwJVDNfJjCoJnKxC3Wg",
-      "balance": 122876,
+      "balance": 62562,
       "membership_expire_on": 1715349696,
       "next_cert_issuable_on": 1685167554,
       "certs_received": {
@@ -140986,9 +144018,9 @@
     "mastres": {
       "index": 6366,
       "owner_key": "D2GRBwjrREWgrP1DgnHwx9Tqs4o53gvGYVmJUqXk3ZAN",
-      "balance": 16808,
+      "balance": 13094,
       "membership_expire_on": 1723073541,
-      "next_cert_issuable_on": 1689097137,
+      "next_cert_issuable_on": 1696142062,
       "certs_received": {
         "xandraAritzkuren": 1719421139,
         "Cordeliaze": 1702100485,
@@ -141025,7 +144057,7 @@
     "BienvenueDavid": {
       "index": 7815,
       "owner_key": "D2HjQq46DQC49uyyP5d4rHHVmW6s9JxYQDwk5WsLyK8C",
-      "balance": 169679,
+      "balance": 209365,
       "membership_expire_on": 1712779699,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -141040,7 +144072,7 @@
     "CamillaPessi": {
       "index": 12844,
       "owner_key": "D2PQxZBQ9YtKGVemy4yZDg78Wj9S9gyWC3zSsr61cNb6",
-      "balance": 104612,
+      "balance": 144298,
       "membership_expire_on": 1717696297,
       "next_cert_issuable_on": 1687238627,
       "certs_received": {
@@ -141063,12 +144095,13 @@
     "Gibaud_Charles": {
       "index": 3175,
       "owner_key": "D2QFtD7Z7fSkppEw1F5NhPEn93QR5M6916umZf9sVhT3",
-      "balance": 1436196,
+      "balance": 1475882,
       "membership_expire_on": 1722005480,
       "next_cert_issuable_on": 1650641799,
       "certs_received": {
         "MichLang": 1717286682,
         "Gabriel": 1702101405,
+        "PhilChamp": 1758530924,
         "AlexandreB": 1702093765,
         "Steph_and_me": 1702104933,
         "Faridalwest": 1702100485
@@ -141085,7 +144118,7 @@
     "elbab": {
       "index": 3930,
       "owner_key": "D2cybwjjduN16tdQo94biUf4pJ2bpGSHP4TkYcGXvE3h",
-      "balance": 1046285,
+      "balance": 1085971,
       "membership_expire_on": 1724942631,
       "next_cert_issuable_on": 1633778591,
       "certs_received": {
@@ -141099,8 +144132,8 @@
     "Jojo": {
       "index": 381,
       "owner_key": "D2fZ1oB2tvebznM6WtmkVaCGyuGDUjWPxsB4SbDjG1kF",
-      "balance": 1752464,
-      "membership_expire_on": 1696726639,
+      "balance": 1792150,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1639389742,
       "certs_received": {
         "EricPetit": 1701284671,
@@ -141113,9 +144146,9 @@
     "PiNguyen": {
       "index": 114,
       "owner_key": "D2meevcAHFTS2gQMvmRW5Hzi25jDdikk4nC4u1FkwRaU",
-      "balance": 421184,
+      "balance": 760870,
       "membership_expire_on": 1710527758,
-      "next_cert_issuable_on": 1693008180,
+      "next_cert_issuable_on": 1695783101,
       "certs_received": {
         "JessyRipert": 1702939512,
         "Crystal": 1710219039,
@@ -141149,12 +144182,13 @@
         "lilithdu34": 1737915614,
         "Attilax": 1738960376,
         "Maaltir": 1745432260,
+        "ofontes": 1755549614,
         "Tiffany": 1739940308,
         "AurelieDouay": 1728118937,
         "annefreda": 1710207732,
         "Krugor": 1718340769,
         "Hdsaf": 1740462746,
-        "Misspio": 1694838518,
+        "danieln": 1759016487,
         "Gclaire": 1708209612,
         "psycotox80": 1702937358,
         "Kol": 1721082282,
@@ -141167,7 +144201,7 @@
     "DelfeWutao88": {
       "index": 7463,
       "owner_key": "D2mkpcszSgdudvgGqh8acRLp1Rbc5ad1chqnxVctdvFv",
-      "balance": 621755,
+      "balance": 661441,
       "membership_expire_on": 1709772091,
       "next_cert_issuable_on": 1678286757,
       "certs_received": {
@@ -141185,7 +144219,7 @@
     "FANY": {
       "index": 9119,
       "owner_key": "D2oUZD32crDWDRwa8Gd4ebPAprBS5st3te9omm6RV8Zn",
-      "balance": 268072,
+      "balance": 307758,
       "membership_expire_on": 1724522667,
       "next_cert_issuable_on": 1666084831,
       "certs_received": {
@@ -141205,7 +144239,7 @@
     "JFCap": {
       "index": 9064,
       "owner_key": "D2p4jKTsTmA7YixV6F5MWdunLgaxN1h8VoLsnUbyxXB5",
-      "balance": 403714,
+      "balance": 443400,
       "membership_expire_on": 1723242491,
       "next_cert_issuable_on": 1659341027,
       "certs_received": {
@@ -141219,7 +144253,7 @@
     "Lydie": {
       "index": 5998,
       "owner_key": "D2sxv6Lqh7ZdZb3doeeSBLXe8pyYxhuaKfCBTn9nDSKA",
-      "balance": 661121,
+      "balance": 700807,
       "membership_expire_on": 1697404420,
       "next_cert_issuable_on": 1665919692,
       "certs_received": {
@@ -141269,13 +144303,12 @@
     "NOE974": {
       "index": 3786,
       "owner_key": "D39d7PJmDMaG7BPGE1Y2jAChZYQLjdVkmRUwMmD7PMsg",
-      "balance": 629139,
+      "balance": 668825,
       "membership_expire_on": 1713706551,
       "next_cert_issuable_on": 1684117895,
       "certs_received": {
         "mimone974": 1717546457,
         "LenaSuryMangas": 1718840545,
-        "Laetitia97421": 1696676289,
         "BabethMangas": 1710272705,
         "Cindy974": 1722020516,
         "Gaia5": 1708096753,
@@ -141283,9 +144316,7 @@
         "LILOU974": 1722694694,
         "Brunov974": 1753988686,
         "frantzsury": 1709060823,
-        "Evan97421": 1695705054,
         "Myriam97410": 1747753954,
-        "Alicia97421": 1695705313,
         "Bastien97432": 1749315932,
         "Aeden974": 1725215332,
         "pampermacole": 1716005696,
@@ -141295,9 +144326,9 @@
     "Shaypalgv": {
       "index": 8194,
       "owner_key": "D3EAhZwd1NZNFBGRCsbipyr5QXqpW7TePwdnRo56h5H4",
-      "balance": 191347,
+      "balance": 286033,
       "membership_expire_on": 1711127470,
-      "next_cert_issuable_on": 1693469786,
+      "next_cert_issuable_on": 1695641599,
       "certs_received": {
         "Icaunaise": 1717453751,
         "444": 1753679606,
@@ -141325,10 +144356,12 @@
         "MarinaM": 1735459516,
         "Pashi": 1727815093,
         "Vameca": 1726636342,
+        "Flobleu": 1758074939,
         "ortie": 1716098632,
         "Luna": 1748299812,
         "s00999": 1716105475,
         "Stranger": 1732137265,
+        "Framboise89": 1756601239,
         "Guillermo89": 1744354541,
         "Cassie": 1720764289,
         "Lylie_Bulle": 1741020406,
@@ -141343,7 +144376,7 @@
     "Jaco": {
       "index": 7036,
       "owner_key": "D3GzjxCrYf97hAg1ikcNHA86moy921juhA4P1XFL4zrF",
-      "balance": 580339,
+      "balance": 620025,
       "membership_expire_on": 1706356861,
       "next_cert_issuable_on": 1654612159,
       "certs_received": {
@@ -141357,7 +144390,7 @@
     "StephanieAusten": {
       "index": 11393,
       "owner_key": "D3N6hhW81D7TrLpo5dmuQECDKoSpifJPWkSKBGtsKDpc",
-      "balance": 217793,
+      "balance": 257479,
       "membership_expire_on": 1706399689,
       "next_cert_issuable_on": 1681017424,
       "certs_received": {
@@ -141374,7 +144407,7 @@
     "Yannick68": {
       "index": 11985,
       "owner_key": "D3PLSnCEMpJwqi97EcZcQe956Mb8JtS3zkQw9gvCXr3M",
-      "balance": 181798,
+      "balance": 221484,
       "membership_expire_on": 1705804372,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -141390,9 +144423,9 @@
     "Anou": {
       "index": 10811,
       "owner_key": "D3QU2rX3r9Srw7KANZkrzYrVD8Uqy23gZdbKZavfJ2xM",
-      "balance": 161455,
+      "balance": 114541,
       "membership_expire_on": 1702338062,
-      "next_cert_issuable_on": 1691220653,
+      "next_cert_issuable_on": 1693925641,
       "certs_received": {
         "Domiremi": 1733960392,
         "Chrisma1957": 1736028513,
@@ -141414,8 +144447,8 @@
     "Maceo17": {
       "index": 6491,
       "owner_key": "D3XLGynbdjoM36ZQByf8WcgVMCVTnHVd26zqVyLtUqip",
-      "balance": 662733,
-      "membership_expire_on": 1698974875,
+      "balance": 702419,
+      "membership_expire_on": 1726183666,
       "next_cert_issuable_on": 1687619744,
       "certs_received": {
         "Mariefleur": 1703463091,
@@ -141430,30 +144463,25 @@
     "DidierPapillon": {
       "index": 5778,
       "owner_key": "D3at3YebNRE6T7ow9k9P7yRQXZEpUVc9iF4zc4DQ7heL",
-      "balance": 914355,
+      "balance": 976401,
       "membership_expire_on": 1717781708,
-      "next_cert_issuable_on": 1693125474,
+      "next_cert_issuable_on": 1695953666,
       "certs_received": {
         "DBuxerolle": 1747190788,
         "Stephaneon": 1716002467,
-        "paidge": 1696393333,
-        "ChristianDelaunay": 1696368022,
+        "ChristianDelaunay": 1759544731,
         "GaryGrandin": 1742016690,
-        "mimi": 1697861475,
+        "mimi": 1759113957,
         "LENOU61": 1701496913,
         "Quentinterriers": 1740344034,
-        "MariPotter": 1696368560,
         "LucetteTerriers": 1740463443,
-        "Scott76": 1696639550,
         "ghyom": 1736210061,
         "MHL": 1707852377,
         "Sylvieb": 1707712086,
         "MaXXaM": 1719432039,
-        "NicolasFloquet": 1696374033,
         "Filou": 1751324098,
         "JulienGermain": 1736580526,
         "Cleo59": 1751784824,
-        "ZinzinGroues": 1696369408,
         "PascaleRoncoroni": 1753947303,
         "MessagereDeLumiere": 1710031158,
         "patkar": 1716788449,
@@ -141463,8 +144491,7 @@
         "llecoeur": 1717720032,
         "NathalieBuxerolle": 1740394340,
         "legeneralmidi": 1718479436,
-        "Freco": 1696393833,
-        "katou": 1696374033,
+        "Freco": 1759218277,
         "CelineDeNosCampagnes": 1716362302,
         "GuillaumeCapsowl": 1709086794,
         "Fabienne76": 1712692333
@@ -141485,7 +144512,7 @@
     "Leonardo": {
       "index": 12307,
       "owner_key": "D3g46g3b3wk4agDRY1G5YSeztTZ4zcaLgaPqjBEgZDAc",
-      "balance": 169624,
+      "balance": 199310,
       "membership_expire_on": 1712436737,
       "next_cert_issuable_on": 1682513079,
       "certs_received": {
@@ -141500,9 +144527,9 @@
     "ji_emme": {
       "index": 315,
       "owner_key": "D3krfq6J9AmfpKnS3gQVYoy7NzGCc61vokteTS8LJ4YH",
-      "balance": 622505,
-      "membership_expire_on": 1702003338,
-      "next_cert_issuable_on": 1690992241,
+      "balance": 717191,
+      "membership_expire_on": 1726964398,
+      "next_cert_issuable_on": 1695622592,
       "certs_received": {
         "Natalya71": 1730009609,
         "SvetRuskof": 1710578899,
@@ -141553,7 +144580,7 @@
     "MarieJo": {
       "index": 8132,
       "owner_key": "D3nK3wG7XPTvhbHgUAmUorq1vpi4FRY9UX55Zq2swZNT",
-      "balance": 497154,
+      "balance": 536840,
       "membership_expire_on": 1715470535,
       "next_cert_issuable_on": 1654431397,
       "certs_received": {
@@ -141577,13 +144604,16 @@
     "lomwi": {
       "index": 7166,
       "owner_key": "D3vcsNLgAM4Vx8E8WaN9C6DMvsAxz1ahroL6VUkwdzFP",
-      "balance": 396419,
+      "balance": 436105,
       "membership_expire_on": 1704398062,
-      "next_cert_issuable_on": 1675509238,
+      "next_cert_issuable_on": 1696330068,
       "certs_received": {
         "ISABELLEDR": 1707032829,
+        "stella": 1759541565,
         "Mia81": 1709175000,
         "Georges": 1707095684,
+        "stinchri": 1759094057,
+        "BeaOups81": 1759381467,
         "Choukie": 1707162361,
         "Vy81": 1707105093,
         "Chouan": 1707031507,
@@ -141593,7 +144623,7 @@
     "Nono13": {
       "index": 10814,
       "owner_key": "D3wgNYYpYmNjEmWzPEjpmjhwSEbq1M17CPXpccFmsD9o",
-      "balance": 286925,
+      "balance": 326611,
       "membership_expire_on": 1701466724,
       "next_cert_issuable_on": 1677123889,
       "certs_received": {
@@ -141604,10 +144634,32 @@
         "Elodea": 1733024565
       }
     },
+    "Vivant3000": {
+      "index": 13556,
+      "owner_key": "D3wo1wGSnTe1g4cNkgUrNwLsnwbzAbKXexCu3Kpjicmx",
+      "balance": 81270,
+      "membership_expire_on": 1725630758,
+      "next_cert_issuable_on": 1694680268,
+      "certs_received": {
+        "Cygogne22": 1757193032,
+        "Tidus": 1757192713,
+        "AlexHalley": 1759179543,
+        "MaryK": 1757192404,
+        "etrehumainJordan92i": 1757192713,
+        "Sainte-Russie": 1757569140,
+        "jeanneymar": 1757481033,
+        "Migus01": 1757559354,
+        "YANNIERRE": 1757189390,
+        "Titus": 1757191489,
+        "adamscurtis": 1757453771,
+        "Merlindoc": 1757464298,
+        "LudovicMJC": 1757572519
+      }
+    },
     "Dujardin": {
       "index": 4145,
       "owner_key": "D3z61zsCEakWpq1wsM3DXh1r8BTquNPYLpcHQhdg2aas",
-      "balance": 422062,
+      "balance": 461748,
       "membership_expire_on": 1698859678,
       "next_cert_issuable_on": 1662980979,
       "certs_received": {
@@ -141623,7 +144675,7 @@
     "fredbo": {
       "index": 12380,
       "owner_key": "D41ZMqwreLcTkBeYrALg6zxvoqupbBgQsf9Xtnrx3gXd",
-      "balance": 114780,
+      "balance": 144466,
       "membership_expire_on": 1713455529,
       "next_cert_issuable_on": 1691224146,
       "certs_received": {
@@ -141638,7 +144690,7 @@
     "Haritza": {
       "index": 12482,
       "owner_key": "D469p3Evb5ihg2b5f9rtjwF7q7RkNMxZjjVaRpY2Pf4j",
-      "balance": 33300,
+      "balance": 67986,
       "membership_expire_on": 1714225223,
       "next_cert_issuable_on": 1687162045,
       "certs_received": {
@@ -141652,9 +144704,9 @@
     "Floalchimistefee": {
       "index": 4021,
       "owner_key": "D47KeYWWZcgauWxiNeDqbKBtKMHdqtMy9x4hjT1quzk4",
-      "balance": 600557,
+      "balance": 614371,
       "membership_expire_on": 1714054055,
-      "next_cert_issuable_on": 1681826494,
+      "next_cert_issuable_on": 1696775800,
       "certs_received": {
         "VirginieGautier": 1717526296,
         "gabindom": 1733981946,
@@ -141685,7 +144737,7 @@
     "Nicolas_Boyer": {
       "index": 4228,
       "owner_key": "D47YXKduXftAHFaM8qxctwCarjfxXox6sB2EKjgxkaJ9",
-      "balance": 795883,
+      "balance": 856929,
       "membership_expire_on": 1712500657,
       "next_cert_issuable_on": 1684811771,
       "certs_received": {
@@ -141694,7 +144746,8 @@
         "Tissilia": 1744071238,
         "FredTahiti": 1744069941,
         "Cathou": 1749514596,
-        "SyoulAnuanua": 1744072219
+        "SyoulAnuanua": 1744072219,
+        "olive2ola": 1757380300
       }
     },
     "Margarita": {
@@ -141724,7 +144777,7 @@
     "Swan": {
       "index": 7782,
       "owner_key": "D4QqVj3LzK8tHdzb2gxG3aX7d2qftcYDKhAMmos1a4Bt",
-      "balance": 340354,
+      "balance": 380040,
       "membership_expire_on": 1722340737,
       "next_cert_issuable_on": 1660660412,
       "certs_received": {
@@ -141751,10 +144804,8 @@
       "owner_key": "D4V1tUiaw64uS8bFLAofuQ1MjiMSQzrqGBdr9NxvSxfK",
       "balance": 611726,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632734265,
-      "certs_received": {
-        "FlorentLucien": 1695891985
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "BenjaminBouguier": {
       "index": 1849,
@@ -141767,7 +144818,7 @@
     "Lililanguage": {
       "index": 6972,
       "owner_key": "D4m4A1cuSMXHGWCEubGB8as8CvhgdGBqa376kWf6twG4",
-      "balance": 307614,
+      "balance": 347300,
       "membership_expire_on": 1704835015,
       "next_cert_issuable_on": 1670661481,
       "certs_received": {
@@ -141786,7 +144837,7 @@
     "Mounette26": {
       "index": 10192,
       "owner_key": "D4s3aN1eUzLdi6pDzfru9SRZgSFmSzAuyGPVWsRCQk77",
-      "balance": 319167,
+      "balance": 358853,
       "membership_expire_on": 1698274478,
       "next_cert_issuable_on": 1670249161,
       "certs_received": {
@@ -141800,7 +144851,7 @@
     "FreeLight": {
       "index": 9945,
       "owner_key": "D4sVetULazF4r7J5haA6ASX1wBM4NwfgERrj3UpNBTrz",
-      "balance": 382447,
+      "balance": 422133,
       "membership_expire_on": 1697469484,
       "next_cert_issuable_on": 1682175930,
       "certs_received": {
@@ -141810,13 +144861,14 @@
         "Diogox51": 1728962020,
         "Sandylore": 1729026885,
         "AmandineMuller": 1739124645,
+        "Keramina51": 1757226203,
         "Martienne": 1737008962
       }
     },
     "Alex89": {
       "index": 7304,
       "owner_key": "D4tkg2e2AkrMa7WBSfQvJbKBb81kuDustsgMj7wLqsww",
-      "balance": 466915,
+      "balance": 506601,
       "membership_expire_on": 1704889759,
       "next_cert_issuable_on": 1661685667,
       "certs_received": {
@@ -141846,7 +144898,7 @@
     "Almerinda": {
       "index": 11972,
       "owner_key": "D55pQfgmiX4qybnyop1jGZeXwhP9wYnULXmTQsno9RZP",
-      "balance": 144008,
+      "balance": 183694,
       "membership_expire_on": 1710274315,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -141860,8 +144912,8 @@
     "JulieAlohaRieffel": {
       "index": 6131,
       "owner_key": "D5GmrPNG4deJSwLobfSwrqHLvav8dQmWrstCxZ66fwKQ",
-      "balance": 615487,
-      "membership_expire_on": 1694476127,
+      "balance": 627235,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1667636015,
       "certs_received": {
         "Filico04": 1699693459,
@@ -141874,7 +144926,7 @@
     "Tatia": {
       "index": 3529,
       "owner_key": "D5Gx5Q84kgkXedRGfGZ7fyEQjcHQEcUgb5hjDd3TFH2k",
-      "balance": 1164635,
+      "balance": 1145257,
       "membership_expire_on": 1708741554,
       "next_cert_issuable_on": 1666110320,
       "certs_received": {
@@ -141902,7 +144954,7 @@
     "Maevaf": {
       "index": 7268,
       "owner_key": "D5dCprLU6H3vPRMSrN4ajd57PMoXYE5gCndxekETCyse",
-      "balance": 244345,
+      "balance": 234031,
       "membership_expire_on": 1708889311,
       "next_cert_issuable_on": 1671081392,
       "certs_received": {
@@ -141925,7 +144977,7 @@
     "galinette84": {
       "index": 6417,
       "owner_key": "D5hcdBGuU3tj5Yg5fYfLUK1dvuenMM6AGTSTQo36o3cS",
-      "balance": 631069,
+      "balance": 670755,
       "membership_expire_on": 1700875837,
       "next_cert_issuable_on": 1667194048,
       "certs_received": {
@@ -141943,8 +144995,8 @@
     "floriane11": {
       "index": 3194,
       "owner_key": "D5sfs9mXLL924U3v5kPzGU6p4K5d7QT36ZdFVae7iqX1",
-      "balance": 999046,
-      "membership_expire_on": 1700691343,
+      "balance": 38732,
+      "membership_expire_on": 1727226413,
       "next_cert_issuable_on": 1679228655,
       "certs_received": {
         "hibiscus11": 1732251000,
@@ -141958,7 +145010,7 @@
     "Cerceline974": {
       "index": 8251,
       "owner_key": "D5zha2mzjpRmLKQiCEzoqiK8BQXRprciEjAxhxaFWDVK",
-      "balance": 978946,
+      "balance": 998632,
       "membership_expire_on": 1713363615,
       "next_cert_issuable_on": 1686534568,
       "certs_received": {
@@ -141989,7 +145041,7 @@
     "LEZARD": {
       "index": 10567,
       "owner_key": "D616dDQrcttpYNRfmeco23C7RPVj64G4GqeivDUzCYQM",
-      "balance": 293751,
+      "balance": 333437,
       "membership_expire_on": 1700353048,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -142000,6 +145052,25 @@
         "computer-tingly-gothic": 1731910648
       }
     },
+    "MuleRetive": {
+      "index": 13487,
+      "owner_key": "D64BEGPkmsrpM1M2FGittzFapaX1duB9W2Y6Jbt8ucCy",
+      "balance": 176710,
+      "membership_expire_on": 1724588958,
+      "next_cert_issuable_on": 1695969060,
+      "certs_received": {
+        "DyanZan_Gce": 1756836931,
+        "Coco-B": 1756960496,
+        "123Marie": 1756406193,
+        "Fannyhihihi": 1756200278,
+        "AnaisLicorne": 1756177515,
+        "RobinRoni": 1756200278,
+        "Gawawelle": 1756151128,
+        "Omshanti": 1756849579,
+        "NolanRoni": 1756177515,
+        "CoralieM": 1759386602
+      }
+    },
     "lauhhann": {
       "index": 3197,
       "owner_key": "D68EcHtiDh1LF74TaNhmZd9R242L8xUbCREM6PS36F3H",
@@ -142029,9 +145100,9 @@
     "Deo2004": {
       "index": 4069,
       "owner_key": "D6JckYVoeeR96QtQ1xhS51bgPGQM3k1zaJmWsAgWWhT2",
-      "balance": 914461,
-      "membership_expire_on": 1698357183,
-      "next_cert_issuable_on": 1686754260,
+      "balance": 954147,
+      "membership_expire_on": 1726873435,
+      "next_cert_issuable_on": 1695816019,
       "certs_received": {
         "Iris": 1729320270,
         "Pensey20": 1749797809,
@@ -142062,7 +145133,7 @@
     "MPZ": {
       "index": 11966,
       "owner_key": "D6TtgLJUrMw7mN7hXNYwugPAhSiCpLuguTNvkes8HKkX",
-      "balance": 189556,
+      "balance": 229242,
       "membership_expire_on": 1710181732,
       "next_cert_issuable_on": 1683988845,
       "certs_received": {
@@ -142076,7 +145147,7 @@
     "Reinetre": {
       "index": 11476,
       "owner_key": "D6uPSKtDkjgTd2iWyqtokjyauAc6YwcvpsFoQsbRynaE",
-      "balance": 243180,
+      "balance": 306866,
       "membership_expire_on": 1706978990,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -142119,8 +145190,8 @@
     "jfb56410": {
       "index": 6593,
       "owner_key": "D76mz8AqBoLDjmWThySFPBgsw5PbGpEo2ftu72VbL57h",
-      "balance": 1099447,
-      "membership_expire_on": 1699123107,
+      "balance": 1139133,
+      "membership_expire_on": 1727526700,
       "next_cert_issuable_on": 1668529587,
       "certs_received": {
         "YLD56460": 1726903493,
@@ -142147,7 +145218,7 @@
     "EnderWither": {
       "index": 5206,
       "owner_key": "D79azGRnaCVUdHmPNzisi1zwH7oZVm9RUv7oVWeFvCxt",
-      "balance": 701011,
+      "balance": 740697,
       "membership_expire_on": 1709250551,
       "next_cert_issuable_on": 1688827235,
       "certs_received": {
@@ -142170,14 +145241,15 @@
     "Mazurka": {
       "index": 11958,
       "owner_key": "D79wJHD5GuRFBxZsmSTQVd6uoPmqVyW3HmTPmucraKM6",
-      "balance": 108091,
+      "balance": 105631,
       "membership_expire_on": 1710110919,
-      "next_cert_issuable_on": 1693305166,
+      "next_cert_issuable_on": 1695685057,
       "certs_received": {
         "ericve": 1750281264,
         "FabienneM": 1749581987,
         "Paslake": 1741741276,
         "jerometiny": 1754073709,
+        "dblg06": 1756871598,
         "AlphaCentauri": 1749760244,
         "simonelion": 1752381415,
         "evitam": 1754952156,
@@ -142235,7 +145307,7 @@
     "MAIMEE": {
       "index": 3143,
       "owner_key": "D7cAYU5ovgHho1XMMApgXor3FX8fyTcem6yGPirouJPH",
-      "balance": 1294270,
+      "balance": 1333956,
       "membership_expire_on": 1705433894,
       "next_cert_issuable_on": 1690094369,
       "certs_received": {
@@ -142250,7 +145322,7 @@
     "ValerieOcean": {
       "index": 8925,
       "owner_key": "D7d28NttXATeXn3etSJRFzrK8i4nd9An3hJUU2ua4pAb",
-      "balance": 195394,
+      "balance": 218280,
       "membership_expire_on": 1716150514,
       "next_cert_issuable_on": 1682358318,
       "certs_received": {
@@ -142268,7 +145340,7 @@
     "Souffle": {
       "index": 11676,
       "owner_key": "D7eQKos45cXRtp7yhB9vwZuUw51PaRCDGm55CkTVoss1",
-      "balance": 163854,
+      "balance": 203540,
       "membership_expire_on": 1707229542,
       "next_cert_issuable_on": 1680760960,
       "certs_received": {
@@ -142285,8 +145357,8 @@
     "CelineDiFa": {
       "index": 9704,
       "owner_key": "D7fEHfZGPVcvbTiddLnpXJ3m2FJ9bq6GyNZ57e5ityDi",
-      "balance": 363409,
-      "membership_expire_on": 1695512972,
+      "balance": 388003,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673154895,
       "certs_received": {
         "DETTE": 1727370604,
@@ -142303,25 +145375,26 @@
     "JeanTibou": {
       "index": 5442,
       "owner_key": "D7gmppgG48t2ndn4Nsx5XKBp94pTEw93mKppgD7qkEAR",
-      "balance": 921875,
+      "balance": 961561,
       "membership_expire_on": 1712673471,
-      "next_cert_issuable_on": 1693467810,
+      "next_cert_issuable_on": 1696124596,
       "certs_received": {
         "Flocon": 1754858263,
         "Etipol61": 1724294133,
         "Mattice": 1732855134,
         "MarieBouny": 1756232484,
         "laulotte": 1701648123,
-        "EricSIMON": 1699491913,
+        "EricSIMON": 1759114695,
+        "Ju73": 1756652115,
         "Kouleurs": 1745129606,
         "gege110560": 1731193215,
         "Jjacq07": 1721843149,
+        "Pizzawallas": 1757012000,
         "Lotus75": 1703811102,
         "Anamaya": 1753118942,
         "MARY30": 1714149875,
         "izotoad38": 1708377660,
         "Numerosympa": 1716317724,
-        "phil3455": 1694749524,
         "SophieR73": 1709102717,
         "Diessanne": 1714719922,
         "Jmharmo73": 1707957971,
@@ -142330,7 +145403,7 @@
         "lamouette": 1705120929,
         "Cathykty": 1706763145,
         "melusine": 1697688475,
-        "Coco46": 1695762090,
+        "Coco46": 1757351643,
         "Anne-Pierre": 1754863401,
         "lagoet73": 1703820707,
         "Sevdiesse": 1753048052,
@@ -142340,9 +145413,7 @@
         "Meryazel": 1727316539,
         "maglieres": 1697261835,
         "Myriam1912": 1751996149,
-        "LaurentM": 1711775488,
-        "Spiranne": 1695156889,
-        "FredB": 1695690029
+        "LaurentM": 1711775488
       }
     },
     "PasKale": {
@@ -142374,7 +145445,7 @@
     "Mireille": {
       "index": 8244,
       "owner_key": "D7wHLEfQL8wanxvwRZkXdW6TxgMsgVJvNZLDvMUr5eo1",
-      "balance": 480146,
+      "balance": 519832,
       "membership_expire_on": 1713311748,
       "next_cert_issuable_on": 1668414395,
       "certs_received": {
@@ -142389,9 +145460,9 @@
     "Omar": {
       "index": 8021,
       "owner_key": "D7xGhuL3vgBhMBVtj1Fp6sTXcjccbwez4U6nZ8AH3sBp",
-      "balance": 114506,
+      "balance": 24734,
       "membership_expire_on": 1711488634,
-      "next_cert_issuable_on": 1689688073,
+      "next_cert_issuable_on": 1689880374,
       "certs_received": {
         "bbqueen": 1720816244,
         "Simplementemaria": 1714868125,
@@ -142412,7 +145483,7 @@
     "frida": {
       "index": 9610,
       "owner_key": "D7zXigSh4YzYmxsKvnytCFfDh8JWYYM6PQzg9xTqpUzb",
-      "balance": 96663,
+      "balance": 36349,
       "membership_expire_on": 1719044126,
       "next_cert_issuable_on": 1687912324,
       "certs_received": {
@@ -142430,9 +145501,9 @@
     "danieledonis": {
       "index": 8817,
       "owner_key": "D81f6CpqUfZDhnge6Y3rUM1LQqcPRncHi1nuzKKj1wyj",
-      "balance": 379822,
+      "balance": 419508,
       "membership_expire_on": 1716131096,
-      "next_cert_issuable_on": 1674115351,
+      "next_cert_issuable_on": 1696345716,
       "certs_received": {
         "xavislow": 1728421218,
         "Niky": 1720031425,
@@ -142441,6 +145512,7 @@
         "Wellno1": 1723175012,
         "animos_fortis": 1729016521,
         "Chiara123": 1720044614,
+        "Marco": 1759421217,
         "Lunartemisia": 1720024598,
         "gbalbosole": 1720044805,
         "devatajib": 1720044614
@@ -142449,7 +145521,7 @@
     "Mimine": {
       "index": 11292,
       "owner_key": "D8BwkcHGa5yRaXznp8vZSBE6Z2P31QKtgnrzNHLTnsA2",
-      "balance": 202524,
+      "balance": 242210,
       "membership_expire_on": 1705782251,
       "next_cert_issuable_on": 1684960552,
       "certs_received": {
@@ -142471,7 +145543,7 @@
     "hallalla": {
       "index": 11080,
       "owner_key": "D8JcudoLyUcH5JKSa7vQdyBgWe9mY2ot1rkcvj8BZSN3",
-      "balance": 14682,
+      "balance": 8368,
       "membership_expire_on": 1703848000,
       "next_cert_issuable_on": 1692461474,
       "certs_received": {
@@ -142496,7 +145568,7 @@
     "Patou33": {
       "index": 10768,
       "owner_key": "D8KiaD32MmfPCY7KLVoDfzZSMoeE5J23kLPWwtWVcPXg",
-      "balance": 270602,
+      "balance": 310288,
       "membership_expire_on": 1701986059,
       "next_cert_issuable_on": 1681736035,
       "certs_received": {
@@ -142525,9 +145597,9 @@
     "Jacklynn": {
       "index": 10731,
       "owner_key": "D8VNZg7dknhJaVFfXeCibYBYvx5ffttBRt1MQhzyrY6H",
-      "balance": 457079,
-      "membership_expire_on": 1701703946,
-      "next_cert_issuable_on": 1689561587,
+      "balance": 496765,
+      "membership_expire_on": 1728241441,
+      "next_cert_issuable_on": 1696755841,
       "certs_received": {
         "Chantal": 1739819538,
         "Flocon": 1747000683,
@@ -142556,9 +145628,9 @@
     "Anolisbaladin": {
       "index": 10654,
       "owner_key": "D8X7AHic51BNKawChetAF8Dzue3g1WkKBLvS2PbZLZeJ",
-      "balance": 288821,
+      "balance": 328507,
       "membership_expire_on": 1701388869,
-      "next_cert_issuable_on": 1689492830,
+      "next_cert_issuable_on": 1694837465,
       "certs_received": {
         "NancyAlexia": 1733156395,
         "Laeti": 1741068226,
@@ -142576,9 +145648,9 @@
     "AnneHH": {
       "index": 11619,
       "owner_key": "D8XS4WZgDdkVtLNA9JWVhNRyJ6S1Y9BdSYXZXdHY1pQW",
-      "balance": 171942,
+      "balance": 217628,
       "membership_expire_on": 1707412947,
-      "next_cert_issuable_on": 1691121721,
+      "next_cert_issuable_on": 1696299245,
       "certs_received": {
         "Crystal": 1741757661,
         "Philp": 1738972861,
@@ -142601,13 +145673,13 @@
     "Gail": {
       "index": 6558,
       "owner_key": "D8jaxZeYrJdZX4Ei2MXpkLLk1siygpoXkYt4dgxQxXmy",
-      "balance": 543442,
+      "balance": 583128,
       "membership_expire_on": 1700448036,
       "next_cert_issuable_on": 1685418718,
       "certs_received": {
         "djam": 1703561254,
         "Nathawie": 1702876394,
-        "Helenep": 1699935890,
+        "Helenep": 1757690808,
         "Millefeuille": 1724600110,
         "BernardJoseph": 1700531757,
         "Piraculteur": 1699934659,
@@ -142617,23 +145689,23 @@
     "DanieleBachere": {
       "index": 796,
       "owner_key": "D8tdGM3w8szJmGc1vfVmkNwbeNUn2inajbgba2sZkApE",
-      "balance": 1428893,
-      "membership_expire_on": 1696209738,
+      "balance": 1462111,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668419245,
       "certs_received": {
         "Celiane": 1744046566,
         "Julia": 1700689693,
+        "1000i100": 1757661670,
         "MAximeGhesquiere": 1706546551,
         "Pol": 1710451822,
         "Virginie_alternativ": 1705996925,
-        "Tchekoff": 1705687871,
-        "Lea": 1693520641
+        "Tchekoff": 1705687871
       }
     },
     "Keverineke": {
       "index": 11221,
       "owner_key": "D99SJbBTGS8JgsxAw29ZNiyAKNtoGwWbLoKio2iAUuZx",
-      "balance": 242637,
+      "balance": 282323,
       "membership_expire_on": 1705018110,
       "next_cert_issuable_on": 1681038935,
       "certs_received": {
@@ -142664,7 +145736,6 @@
       "next_cert_issuable_on": 1667482969,
       "certs_received": {
         "FLORESTRELA": 1727758595,
-        "1000i100": 1695280830,
         "GildasMalassinet": 1721292010,
         "paidge": 1713405518,
         "Jeangraine": 1720668249,
@@ -142692,9 +145763,9 @@
     "Ori2604": {
       "index": 7541,
       "owner_key": "D9N5i2ii9foyXnS81rXLBob2hvbPaWkCGfdu996HiCzn",
-      "balance": 330403,
+      "balance": 276089,
       "membership_expire_on": 1706906658,
-      "next_cert_issuable_on": 1692794427,
+      "next_cert_issuable_on": 1695558214,
       "certs_received": {
         "Milan": 1709443666,
         "SophieB": 1727636559,
@@ -142722,9 +145793,9 @@
     "CarmenAlonso": {
       "index": 6335,
       "owner_key": "D9NEA2HJDfyhenorXP48idrJsdDDW78U2SR2YZNxrb3F",
-      "balance": 657497,
+      "balance": 490183,
       "membership_expire_on": 1720286901,
-      "next_cert_issuable_on": 1691132991,
+      "next_cert_issuable_on": 1695129244,
       "certs_received": {
         "MilaChavez": 1701806244,
         "Mariefleur": 1752255261,
@@ -142732,6 +145803,7 @@
         "Pocpoc": 1752251890,
         "MartineRivat": 1752359774,
         "Bettylisameli": 1701986997,
+        "GeraldineBenard": 1756827039,
         "rjblein": 1701828863,
         "CHANTALE": 1701906916,
         "MoniqueBlein": 1701830234,
@@ -142741,7 +145813,7 @@
     "Stephmaya": {
       "index": 12637,
       "owner_key": "D9PUfo6BUfm3J2rdtFnTqWRiWDj83jRstu4JkAH4WLWt",
-      "balance": 131480,
+      "balance": 171166,
       "membership_expire_on": 1715201413,
       "next_cert_issuable_on": 1688513799,
       "certs_received": {
@@ -142755,7 +145827,7 @@
     "xabi09": {
       "index": 9285,
       "owner_key": "D9QEcDgDBDhA1r16wh7shMhcttSH9qQSU4uXRuYMdGkp",
-      "balance": 346409,
+      "balance": 386095,
       "membership_expire_on": 1719949295,
       "next_cert_issuable_on": 1676700356,
       "certs_received": {
@@ -142791,9 +145863,9 @@
     "WANMAR": {
       "index": 10527,
       "owner_key": "D9aGRqvXoFLeMxGz1ig6VkFi5LSanbZpFLmZwL3EvvkA",
-      "balance": 243885,
-      "membership_expire_on": 1700842514,
-      "next_cert_issuable_on": 1692524614,
+      "balance": 275870,
+      "membership_expire_on": 1727468862,
+      "next_cert_issuable_on": 1694431073,
       "certs_received": {
         "Mica52": 1745344795,
         "CeHunin": 1732388687,
@@ -142828,18 +145900,14 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1678288105,
       "certs_received": {
-        "adridu38": 1695504847,
         "SandRA": 1705047320,
         "Anamaya": 1703192685,
-        "blondety": 1695452940,
         "ANTISPASMODIC": 1704271686,
         "Joailes38": 1702435484,
         "MioPalmon988": 1709393606,
-        "Guillaumebodhi": 1695757055,
         "LibertyFran": 1702012271,
         "liligouchi": 1739316054,
-        "Monaco73": 1697518295,
-        "LaurentM": 1695440161
+        "Monaco73": 1697518295
       }
     },
     "charles": {
@@ -142856,8 +145924,8 @@
     "Gold144": {
       "index": 9760,
       "owner_key": "DAEo3hDtYAdW8E6eFCRGSdVihLH1MjLFh8MJhV6UiVo1",
-      "balance": 618919,
-      "membership_expire_on": 1696271242,
+      "balance": 653215,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675083986,
       "certs_received": {
         "Abrialys": 1734329828,
@@ -142879,7 +145947,7 @@
     "Serena7naturezas": {
       "index": 12830,
       "owner_key": "DALtVsuHJwuFtGfHLqeRVyG4Jvb2LttordFd4yZZP1Pg",
-      "balance": 98680,
+      "balance": 138366,
       "membership_expire_on": 1717206533,
       "next_cert_issuable_on": 1687257079,
       "certs_received": {
@@ -142889,19 +145957,21 @@
         "MiguelHappyFamily": 1748795248,
         "RafaMalheiro": 1749068070,
         "JorgeDraven": 1749068070,
-        "JoaoLestro": 1749253897
+        "JoaoLestro": 1749253897,
+        "AnaIsis7animais": 1758267657
       }
     },
     "ROVER5537": {
       "index": 8008,
       "owner_key": "DANEJUy9wHUFU1fjDiAbAxaU3uV6uUhcA9g3Vxqk35Nb",
-      "balance": 178230,
+      "balance": 228370,
       "membership_expire_on": 1709501200,
-      "next_cert_issuable_on": 1692026844,
+      "next_cert_issuable_on": 1696547640,
       "certs_received": {
         "Midorela": 1752014858,
         "nashira": 1720200370,
         "Claudia63": 1737277429,
+        "ibisio": 1757684486,
         "Tibo0720": 1753554075,
         "Naho": 1746667508,
         "Annae": 1734480616,
@@ -142945,9 +146015,9 @@
     "Francki": {
       "index": 3907,
       "owner_key": "DASkrAbWmeqRoUR2eqcdX4sHrvjnuCU7fPf4zwps86CV",
-      "balance": 149865,
+      "balance": 189551,
       "membership_expire_on": 1711480377,
-      "next_cert_issuable_on": 1689396412,
+      "next_cert_issuable_on": 1696749947,
       "certs_received": {
         "Gemeff": 1745264151,
         "MayaPTT": 1754508091,
@@ -142955,7 +146025,6 @@
         "Vigo": 1721010747,
         "DavidMRT": 1754509622,
         "Cathy31": 1750655652,
-        "Nadette": 1695356170,
         "Nadou": 1750827750,
         "Pichotilha": 1719529792,
         "Peps": 1721275026
@@ -142972,7 +146041,7 @@
     "Rami": {
       "index": 8954,
       "owner_key": "DAgP4xj9P8LD9fXWCeRCDa9s2n6R67D7x3mhAMUkZjcA",
-      "balance": 81344,
+      "balance": 121030,
       "membership_expire_on": 1715356634,
       "next_cert_issuable_on": 1681942883,
       "certs_received": {
@@ -142991,7 +146060,7 @@
     "Gioia": {
       "index": 11954,
       "owner_key": "DAh2yc1qVwSdeWYyvsgG8J8TfNtshCTXSr2pZwudDLN5",
-      "balance": 180974,
+      "balance": 220660,
       "membership_expire_on": 1706925441,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -143013,8 +146082,8 @@
     "Yanoc": {
       "index": 2497,
       "owner_key": "DAo5uAKKZyFiBvKe9J6FcQu4FxA8Lg5AqckzHqyJ2hyP",
-      "balance": 953232,
-      "membership_expire_on": 0,
+      "balance": 903324,
+      "membership_expire_on": 1727036563,
       "next_cert_issuable_on": 1677646183,
       "certs_received": {
         "Ganben": 1731785358,
@@ -143031,13 +146100,14 @@
     "Krikri": {
       "index": 5177,
       "owner_key": "DApst7ioPNGYH3312THbCK3iQ8eH5VoHxU81L5AWbpwz",
-      "balance": 756311,
+      "balance": 795997,
       "membership_expire_on": 1709665044,
       "next_cert_issuable_on": 1686187113,
       "certs_received": {
         "Audreylasa": 1721560381,
         "MikaYeel": 1720787805,
         "LaeVie": 1746600012,
+        "CyrilCuisin": 1758667909,
         "Ofildevie": 1712602775,
         "Stef": 1748150434,
         "NicolasCanzian": 1744815835,
@@ -143045,16 +146115,15 @@
         "CorinneBaro": 1701727867,
         "TerrasFranck": 1712465265,
         "Jarrive": 1733982828,
-        "fredswing": 1695539973,
         "stephanoel": 1696881557
       }
     },
     "DeboraTavares": {
       "index": 11967,
       "owner_key": "DArQq8BPVu3mUkqgrMzdAUhwTzto7tfXYPEKUbDzwnDq",
-      "balance": 141188,
+      "balance": 180874,
       "membership_expire_on": 1710187936,
-      "next_cert_issuable_on": 1687779087,
+      "next_cert_issuable_on": 1695305675,
       "certs_received": {
         "Ferpires": 1741744288,
         "DoisLobos": 1746000652,
@@ -143065,28 +146134,33 @@
         "lurdespinho": 1741744915,
         "Shankarina": 1741824994,
         "otto": 1747345465,
+        "RafaMalheiro": 1757663831,
+        "DivinaC": 1757281653,
         "Hardass": 1754124077,
         "SaoSampaio": 1748598682,
+        "Rahhui": 1757790958,
         "GodofredoBaltazar": 1748892598,
         "JorgeDraven": 1755748993,
         "Cristetapaixao": 1741752999,
         "AnaPires": 1749933543,
         "RosaAlvesPinho": 1741747071,
-        "jsoutelinho": 1746650334
+        "jsoutelinho": 1746650334,
+        "ElisabeteMartins": 1757663486
       }
     },
     "CecileBeaulieu": {
       "index": 12677,
       "owner_key": "DAuYyXNA4jbRYv3615n81tJw3xxLrkuierNV5Ectx7mP",
-      "balance": 61208,
+      "balance": 90894,
       "membership_expire_on": 1715523982,
-      "next_cert_issuable_on": 1692894966,
+      "next_cert_issuable_on": 1695610094,
       "certs_received": {
         "MIDO": 1747371709,
         "Artdevivre": 1752345527,
         "IsabellePriou": 1747388141,
         "cpriou11": 1747363612,
         "VeroniqueMaessen": 1747327940,
+        "JunOr11": 1759554064,
         "Malouve": 1755805934,
         "SergeUme": 1747327940,
         "FranckAubert": 1754711258
@@ -143122,7 +146196,7 @@
     "damiengrava": {
       "index": 11261,
       "owner_key": "DBZrievaNpvee6dcnTfNzLQE6Gcs6EsF2mC5U9TL78Xr",
-      "balance": 236565,
+      "balance": 276251,
       "membership_expire_on": 1704313370,
       "next_cert_issuable_on": 1680945948,
       "certs_received": {
@@ -143137,8 +146211,8 @@
     "Jaher974": {
       "index": 6072,
       "owner_key": "DBcDHcsgiAgugzT4hyT2k8R3dch645bkSqZPhFnJV6iK",
-      "balance": 775064,
-      "membership_expire_on": 1701698351,
+      "balance": 814750,
+      "membership_expire_on": 1728159102,
       "next_cert_issuable_on": 1686476958,
       "certs_received": {
         "Zoul": 1710565681,
@@ -143150,14 +146224,14 @@
         "Aliko": 1713386783,
         "Cindy974": 1699932037,
         "gabyjoce974": 1747763067,
-        "Brunov974": 1699759840,
+        "Brunov974": 1758933764,
         "PlanchaudAndree": 1749678080,
         "Cerceline974": 1747764847,
         "Myriam97410": 1733260912,
         "EmiAp974": 1719670665,
         "MyrtilleMyriam": 1714770599,
         "Roswell": 1699827179,
-        "pampermacole": 1699934387,
+        "pampermacole": 1758035979,
         "Nath": 1699878082
       }
     },
@@ -143172,10 +146246,11 @@
     "Paola": {
       "index": 6806,
       "owner_key": "DBgJpBWVHA2WcXCVuTB4qTGj4wWzZqsR6JUV4DMdBoDC",
-      "balance": 950000,
-      "membership_expire_on": 1701384649,
-      "next_cert_issuable_on": 1691816647,
+      "balance": 1255606,
+      "membership_expire_on": 1727961935,
+      "next_cert_issuable_on": 1696476693,
       "certs_received": {
+        "Rebirth35": 1759533069,
         "sylviewolf": 1732682286,
         "Libertiste": 1733087532,
         "ChrisTof": 1717529088,
@@ -143220,6 +146295,7 @@
         "annievg": 1718604542,
         "Dodjay": 1706502609,
         "tradit": 1729053802,
+        "ElodieB": 1757789536,
         "zaza": 1706586696,
         "hypericum": 1753476605,
         "EleFarru79": 1732689878,
@@ -143241,7 +146317,7 @@
     "Princessfritz": {
       "index": 10462,
       "owner_key": "DBj1tRAzVWesEWteZNhBKXbSruQnhzyoRT57aCMNzNJq",
-      "balance": 205964,
+      "balance": 245650,
       "membership_expire_on": 1699304794,
       "next_cert_issuable_on": 1675407595,
       "certs_received": {
@@ -143278,7 +146354,7 @@
     "Lolycat": {
       "index": 11755,
       "owner_key": "DC6N45ujSSGH9HUwzXsAzNRRh6UnNXpAyvPZbp7g7vTk",
-      "balance": 182500,
+      "balance": 159686,
       "membership_expire_on": 1708801892,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -143293,7 +146369,7 @@
     "Barylium253": {
       "index": 10762,
       "owner_key": "DCH82e9Cgit3qkjCxWbaRW5FFU77nwuzGXpY78dZA6px",
-      "balance": 297102,
+      "balance": 336788,
       "membership_expire_on": 1698144141,
       "next_cert_issuable_on": 1671174581,
       "certs_received": {
@@ -143309,7 +146385,7 @@
     "Bidouille": {
       "index": 11659,
       "owner_key": "DCK3VjxtpadkbxKUBmmbCR6nBRwBsjGkXqxbzt8LZJcj",
-      "balance": 182353,
+      "balance": 196039,
       "membership_expire_on": 1707777357,
       "next_cert_issuable_on": 1693189612,
       "certs_received": {
@@ -143350,9 +146426,9 @@
     "Agnes5629": {
       "index": 7773,
       "owner_key": "DCSZyGhomHyDcKViYDDABAm5WqtUrKXgE965bSuB394E",
-      "balance": 526982,
+      "balance": 566668,
       "membership_expire_on": 1705853523,
-      "next_cert_issuable_on": 1691733325,
+      "next_cert_issuable_on": 1695993809,
       "certs_received": {
         "absalon2": 1716944083,
         "CatherineMontpellier": 1726035876,
@@ -143388,9 +146464,9 @@
     "Tchara06": {
       "index": 8613,
       "owner_key": "DCxN1hfDXp1cYMxDQULdYPxNCm4q38CUmYozcpaWtF1D",
-      "balance": 441540,
+      "balance": 497226,
       "membership_expire_on": 1715165177,
-      "next_cert_issuable_on": 1690197784,
+      "next_cert_issuable_on": 1696251709,
       "certs_received": {
         "Luciole": 1719154460,
         "NAGIOWOTALA": 1718482638,
@@ -143402,6 +146478,7 @@
         "Solian": 1740008911,
         "Centifolia": 1719083310,
         "PorteduCiel": 1717918264,
+        "Tontonmika": 1756882365,
         "BrigitteLaRoque": 1730997089,
         "emaublanc": 1739860256,
         "Hdsaf": 1735004119,
@@ -143411,7 +146488,7 @@
     "tuan": {
       "index": 861,
       "owner_key": "DD469NepQXpFv3XcQKg675baUCJPZj2BhYPjJTgguzgg",
-      "balance": 347518,
+      "balance": 347618,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {}
@@ -143427,7 +146504,7 @@
     "Martaina": {
       "index": 10418,
       "owner_key": "DDFTFmaCRofiXQjwZF93i1XmaSQhj6oemUQwk6RCRicA",
-      "balance": 249200,
+      "balance": 287086,
       "membership_expire_on": 1697926441,
       "next_cert_issuable_on": 1673180288,
       "certs_received": {
@@ -143445,7 +146522,7 @@
     "Bde": {
       "index": 6843,
       "owner_key": "DDJyFGXK1Tu1KAa3m4sDmRK1c8ARQYufLsKK69wge1Rx",
-      "balance": 1067796,
+      "balance": 1107482,
       "membership_expire_on": 1700077117,
       "next_cert_issuable_on": 1681120863,
       "certs_received": {
@@ -143477,13 +146554,14 @@
     "ManuelVillalejos": {
       "index": 10733,
       "owner_key": "DDKqDwJNfJ2EddVLnoSmPy3GqGfMB2NrPertD45YCPuz",
-      "balance": 220220,
+      "balance": 127906,
       "membership_expire_on": 1701635847,
-      "next_cert_issuable_on": 1676032832,
+      "next_cert_issuable_on": 1694081584,
       "certs_received": {
         "Aguas": 1733262355,
         "LaMatriarcaToro": 1733215602,
         "EstherVM": 1733193723,
+        "lolicirera": 1756772789,
         "MaEstherG1": 1733214217,
         "RobertoG1": 1733501732,
         "Juanmatierraplana": 1733269675,
@@ -143501,7 +146579,7 @@
     "MireilleHardy": {
       "index": 10045,
       "owner_key": "DDQZT933C8DqHC6adUGqzYYU5Xn2BRKq8kMQNqvGXwXp",
-      "balance": 341875,
+      "balance": 381561,
       "membership_expire_on": 1697498404,
       "next_cert_issuable_on": 1681189386,
       "certs_received": {
@@ -143521,16 +146599,14 @@
       "balance": 393028,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "JulienLecaille": 1696531825
-      }
+      "certs_received": {}
     },
     "Roberto_Oraa_79_DDYG": {
       "index": 9794,
       "owner_key": "DDYGqG781taUzHarHYw6o3bWfQrbj8oXbUfBMtH5jotN",
-      "balance": 55725,
+      "balance": 64411,
       "membership_expire_on": 1721876295,
-      "next_cert_issuable_on": 1692434346,
+      "next_cert_issuable_on": 1694797025,
       "certs_received": {
         "Silvi": 1740783629,
         "Vichara": 1727769885,
@@ -143586,24 +146662,24 @@
     "Mathieuf": {
       "index": 4280,
       "owner_key": "DDvZzdFEXKohz9uq1S2Ahwx9d3HWgVtu9FPuhAYeMsWP",
-      "balance": 973106,
+      "balance": 1012792,
       "membership_expire_on": 1701370807,
       "next_cert_issuable_on": 1670743238,
       "certs_received": {
+        "Georges_M_mbr": 1758069623,
         "Coeur83": 1711234913,
         "CathyZen": 1702692318,
         "NeyKrom": 1732928407,
         "Sandrine-": 1736833287,
-        "JeanMarieTUBOEUF": 1713988845,
-        "FVK": 1696722079
+        "JeanMarieTUBOEUF": 1713988845
       }
     },
     "Georges": {
       "index": 6135,
       "owner_key": "DDzB2AXbu6WLGVPhaCoN1CBZFpqjM37s14oBGfLs5Ahp",
-      "balance": 1333443,
+      "balance": 1368129,
       "membership_expire_on": 1723251872,
-      "next_cert_issuable_on": 1689756794,
+      "next_cert_issuable_on": 1695830462,
       "certs_received": {
         "Abrialys": 1736633787,
         "Hectonath": 1714258435,
@@ -143628,10 +146704,11 @@
         "ji_emme": 1699677569,
         "Sandrabacq": 1716255690,
         "Choukie": 1740814022,
+        "Margauxgau": 1759155873,
         "VeroniqueV": 1711596009,
         "AngelS": 1726598792,
         "Klerkival": 1700803616,
-        "LeoLiens": 1700291732,
+        "LeoLiens": 1758404798,
         "Sha": 1738377039,
         "VeroniqueB": 1714876580,
         "ayrose": 1745879018,
@@ -143646,7 +146723,7 @@
     "Lud": {
       "index": 7755,
       "owner_key": "DE24AopZr2iNvozTK21jE9jAF5mN6i2w3zHqRsnM7oiK",
-      "balance": 601228,
+      "balance": 640914,
       "membership_expire_on": 1707167549,
       "next_cert_issuable_on": 1662605189,
       "certs_received": {
@@ -143699,7 +146776,7 @@
     "Helsephine": {
       "index": 7895,
       "owner_key": "DE7jh7AfSRZCfyJeDhnVJEQwT59pL6f5i4JKRtEgGgF3",
-      "balance": 363474,
+      "balance": 403160,
       "membership_expire_on": 1710268362,
       "next_cert_issuable_on": 1685848341,
       "certs_received": {
@@ -143725,7 +146802,7 @@
     "criblet": {
       "index": 11433,
       "owner_key": "DE8bSvVuGTsU9Kfy5G5b1uUwA6bFecTReybv9WtJw6K9",
-      "balance": 150216,
+      "balance": 189902,
       "membership_expire_on": 1703784896,
       "next_cert_issuable_on": 1688613806,
       "certs_received": {
@@ -143752,10 +146829,11 @@
     "Mamarion": {
       "index": 13435,
       "owner_key": "DEHe8XM6GTPnc1sDnCMArtorwsqwNn4jx2vXARKjAZt7",
-      "balance": 44576,
+      "balance": 138092,
       "membership_expire_on": 1721670455,
-      "next_cert_issuable_on": 1693492702,
+      "next_cert_issuable_on": 1696557175,
       "certs_received": {
+        "sarahmagicienne": 1759388916,
         "Delfe": 1756012572,
         "LibelluleNoe": 1756431028,
         "JohannFox": 1753228613,
@@ -143784,7 +146862,7 @@
     "Guito": {
       "index": 9415,
       "owner_key": "DEQ4puwbhSYoQPr6nZTmuVd22cJLhdL5Kerpmj8UUxDa",
-      "balance": 148126,
+      "balance": 187812,
       "membership_expire_on": 1724523025,
       "next_cert_issuable_on": 1666084831,
       "certs_received": {
@@ -143814,8 +146892,8 @@
     "Nataloche65": {
       "index": 10725,
       "owner_key": "DERzseG6QMmAVUfFt2TPmTUmLSXbfnoXNrFG7E4ySdzs",
-      "balance": 243779,
-      "membership_expire_on": 1701484810,
+      "balance": 283465,
+      "membership_expire_on": 1728081103,
       "next_cert_issuable_on": 1688729872,
       "certs_received": {
         "Liah": 1733199020,
@@ -143832,8 +146910,8 @@
     "fabienne": {
       "index": 6584,
       "owner_key": "DEZJQiDhz6yc5eUoB8mgsDFtYvbXKLiWgPtD3gJFUDUb",
-      "balance": 585529,
-      "membership_expire_on": 1699535155,
+      "balance": 627215,
+      "membership_expire_on": 1725913163,
       "next_cert_issuable_on": 1677485814,
       "certs_received": {
         "Monette": 1744441355,
@@ -143854,7 +146932,7 @@
     "Essence22": {
       "index": 7954,
       "owner_key": "DEZnxQn847XF1b8LjZCjzTs8dp77w5PUCHzf29SiaF12",
-      "balance": 761772,
+      "balance": 763458,
       "membership_expire_on": 1710769936,
       "next_cert_issuable_on": 1687875899,
       "certs_received": {
@@ -143884,9 +146962,9 @@
     "Laurahedrosa": {
       "index": 8114,
       "owner_key": "DEcB7BJqZykkM1noAXdtpWohrtf7ZjqNttgVcCjS8Ltr",
-      "balance": 382895,
+      "balance": 368935,
       "membership_expire_on": 1710960492,
-      "next_cert_issuable_on": 1678093677,
+      "next_cert_issuable_on": 1695391641,
       "certs_received": {
         "Aatma": 1714755936,
         "CarmeCastineira": 1741583424,
@@ -143902,10 +146980,11 @@
     "Flo05": {
       "index": 10061,
       "owner_key": "DEekXGVbgqjxpSWxDxJ13qiPx5STKZ52PK3XYe5dRdxE",
-      "balance": 580616,
+      "balance": 532302,
       "membership_expire_on": 1724705668,
       "next_cert_issuable_on": 1693213887,
       "certs_received": {
+        "BrunoB974": 1757438702,
         "MicheleTampon974": 1728959658,
         "ClaireM97410": 1728929590,
         "NnattNature": 1746653523,
@@ -143924,9 +147003,9 @@
     "Fif": {
       "index": 13360,
       "owner_key": "DEkHJbrVEscwJCxG6JpD5mXEXYRpgm3tRMTCReNjors8",
-      "balance": 20592,
+      "balance": 60278,
       "membership_expire_on": 1723399064,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694426828,
       "certs_received": {
         "Vanthegreat": 1754961423,
         "Afreekash": 1754967921,
@@ -143941,16 +147020,18 @@
     "loirisa": {
       "index": 11866,
       "owner_key": "DEuQ7z8weQHRht57zts46E34ojKCvLF6KDGMkwALE874",
-      "balance": 107937,
+      "balance": 134623,
       "membership_expire_on": 1706361216,
-      "next_cert_issuable_on": 1691070115,
+      "next_cert_issuable_on": 1694951093,
       "certs_received": {
         "Holistique": 1740465247,
         "FabFabounette": 1754546090,
         "Charbel45": 1748844463,
+        "TiboDom": 1758258091,
         "Rom1": 1741047650,
         "Nelmotard58": 1740465247,
         "PatrickREVIF": 1746246608,
+        "ChristianeBleuj": 1757997365,
         "Cat45190": 1753485721,
         "ManuMarguerite": 1741158182,
         "Ludivine85": 1739837771,
@@ -143961,7 +147042,7 @@
     "LeBeauSerge": {
       "index": 11825,
       "owner_key": "DEuZYfhxuNADau1agmfxF1aSrRqkAdhDCeiew4SAGMcP",
-      "balance": 204205,
+      "balance": 243891,
       "membership_expire_on": 1707425174,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -143975,7 +147056,7 @@
     "ctingbull": {
       "index": 760,
       "owner_key": "DEzMpU3gojXC1bhabEbbhEDgd6imNjCCANYGXmh2cSJW",
-      "balance": 1885937,
+      "balance": 1925623,
       "membership_expire_on": 1720959498,
       "next_cert_issuable_on": 1689473898,
       "certs_received": {
@@ -143990,7 +147071,7 @@
     "Ellana": {
       "index": 12033,
       "owner_key": "DF5QpJexqVLg3MNnQiB1od9XCGhDPV1wvFQeF6UAEf6e",
-      "balance": 182261,
+      "balance": 221947,
       "membership_expire_on": 1709764662,
       "next_cert_issuable_on": 1683595585,
       "certs_received": {
@@ -144015,7 +147096,7 @@
     "Riado44": {
       "index": 8333,
       "owner_key": "DFB9S2nGiQGN9wfauxuhqEp3dQvfEBwaYVJjdMzzyteR",
-      "balance": 414620,
+      "balance": 454306,
       "membership_expire_on": 1710171002,
       "next_cert_issuable_on": 1689481684,
       "certs_received": {
@@ -144030,7 +147111,7 @@
     "PascalB": {
       "index": 7107,
       "owner_key": "DFBcfgt2cXwWdBckQKKrKyMA8pmpPomwRF9h3SCRS8DC",
-      "balance": 578129,
+      "balance": 617815,
       "membership_expire_on": 1706366251,
       "next_cert_issuable_on": 1660228277,
       "certs_received": {
@@ -144052,8 +147133,8 @@
     "Fredki": {
       "index": 10765,
       "owner_key": "DFGFjDfs7HVqChgGgY1Aq4TrWftzJmnYqPeco467hPjF",
-      "balance": 282102,
-      "membership_expire_on": 1700534057,
+      "balance": 304888,
+      "membership_expire_on": 1727086775,
       "next_cert_issuable_on": 1681303140,
       "certs_received": {
         "Natalya71": 1733472676,
@@ -144075,7 +147156,7 @@
     "LesChiffons2genie": {
       "index": 3060,
       "owner_key": "DFK9gNgk2y2JrxXBPKYuob5gKoTP4jQ9oXtm5E4Yvg1U",
-      "balance": 516173,
+      "balance": 555859,
       "membership_expire_on": 1702868648,
       "next_cert_issuable_on": 1673439938,
       "certs_received": {
@@ -144092,7 +147173,7 @@
     "DanielaEG": {
       "index": 9630,
       "owner_key": "DFKDqotm2Sx7B32UgXnmd1BmNqpMRgmyBG5wJADk2ZAj",
-      "balance": 187031,
+      "balance": 226717,
       "membership_expire_on": 1721666682,
       "next_cert_issuable_on": 1693029069,
       "certs_received": {
@@ -144108,6 +147189,7 @@
         "GRUKSY": 1748814940,
         "SurfinMaya": 1726940758,
         "Marinasanjose": 1753929417,
+        "SalviaPerez": 1759005664,
         "sarava": 1751594436
       }
     },
@@ -144136,7 +147218,7 @@
     "animos_fortis": {
       "index": 8808,
       "owner_key": "DFc7RbXjbcRoeNvrqYYkMZ1Ge7Ux8qNvkL13dWSGskVe",
-      "balance": 305627,
+      "balance": 345313,
       "membership_expire_on": 1719255230,
       "next_cert_issuable_on": 1668860696,
       "certs_received": {
@@ -144154,9 +147236,9 @@
     "Tiburon": {
       "index": 9045,
       "owner_key": "DFcpncLHCRnTGjexizXfY2dYYqsTH1rWzPz5UwXKR42J",
-      "balance": 412329,
+      "balance": 452015,
       "membership_expire_on": 1721569764,
-      "next_cert_issuable_on": 1662034794,
+      "next_cert_issuable_on": 1694014727,
       "certs_received": {
         "bbqueen": 1719872998,
         "Performance": 1720903769,
@@ -144170,7 +147252,7 @@
     "YasminLibertad": {
       "index": 10379,
       "owner_key": "DFfHMsXZELvpeWMKCdP41giuvaD7z2jJvswZEA7EWxF",
-      "balance": 257068,
+      "balance": 308254,
       "membership_expire_on": 1698628635,
       "next_cert_issuable_on": 1680018761,
       "certs_received": {
@@ -144189,9 +147271,9 @@
     "Serguei": {
       "index": 8096,
       "owner_key": "DFg9DHy4SACgMiNKJ1vDoo4K7c1Z4bPAtvdkBztx5HgY",
-      "balance": 476423,
+      "balance": 514909,
       "membership_expire_on": 1716658538,
-      "next_cert_issuable_on": 1679991070,
+      "next_cert_issuable_on": 1694360367,
       "certs_received": {
         "NataNieves": 1748475765,
         "Bricedonnadieu26": 1715726941,
@@ -144209,7 +147291,7 @@
     "DomVie": {
       "index": 7179,
       "owner_key": "DFm2xFCm4AqxZ7N2ekVGvnLnE7anbGcbbZrSrGXuPjdv",
-      "balance": 582195,
+      "balance": 621881,
       "membership_expire_on": 1705434310,
       "next_cert_issuable_on": 1690722091,
       "certs_received": {
@@ -144218,6 +147300,7 @@
         "Keriadenn": 1709104102,
         "ZinzinGroues": 1709160281,
         "SylvieM35": 1724913660,
+        "Pascal35800": 1756238824,
         "katou": 1709160281,
         "Fred2Rennes": 1709424859
       }
@@ -144225,7 +147308,7 @@
     "Zox": {
       "index": 13293,
       "owner_key": "DFxhPCYL6MTLoP8VdxHQzHzh3KTMQUQVngVqS4sCJd8P",
-      "balance": 76872,
+      "balance": 116558,
       "membership_expire_on": 1720984544,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -144247,7 +147330,7 @@
     "IsabelleM": {
       "index": 6155,
       "owner_key": "DG25YkudR19PZfNTirRpXFspBMTESPXDEgncM5F9EvWa",
-      "balance": 784602,
+      "balance": 824288,
       "membership_expire_on": 1720529590,
       "next_cert_issuable_on": 1683888524,
       "certs_received": {
@@ -144276,7 +147359,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1636864860,
       "certs_received": {
-        "ArnaudFleuri": 1696130413,
         "Fannyhihihi": 1709110529,
         "JoW": 1699806714
       }
@@ -144284,7 +147366,7 @@
     "ALPIGirou": {
       "index": 10307,
       "owner_key": "DGHjzoi43SNfTPq5ixK6Y9M96gGrwvUzJ8cTZq3SCo8P",
-      "balance": 333355,
+      "balance": 373041,
       "membership_expire_on": 1699216622,
       "next_cert_issuable_on": 1681976025,
       "certs_received": {
@@ -144300,9 +147382,9 @@
     "HebraudH": {
       "index": 7558,
       "owner_key": "DGP1rCJnwiWu3MEi9d6cxrnxtiMN5c3vU7rf8TDxHgyh",
-      "balance": 419286,
+      "balance": 458972,
       "membership_expire_on": 1706182692,
-      "next_cert_issuable_on": 1687665025,
+      "next_cert_issuable_on": 1695800928,
       "certs_received": {
         "absalon2": 1712250201,
         "Sev": 1726870257,
@@ -144331,7 +147413,7 @@
     "Monika": {
       "index": 12805,
       "owner_key": "DGQC53xxNUsHaz9F4xScyWo8Vo4rSJGJrKMJDPrqFq19",
-      "balance": 121124,
+      "balance": 160810,
       "membership_expire_on": 1716668142,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -144345,7 +147427,7 @@
     "Sabi": {
       "index": 8726,
       "owner_key": "DGR5yxwFom3tFk3bAN1TWsGSRVp3MoDfmXFE8Awerox1",
-      "balance": 204471,
+      "balance": 244158,
       "membership_expire_on": 1714641382,
       "next_cert_issuable_on": 1683636736,
       "certs_received": {
@@ -144373,8 +147455,8 @@
     "Amo": {
       "index": 9468,
       "owner_key": "DGRR4apNh46JnVhRT551wGPh4BidunVNKQjahMuVm9oE",
-      "balance": 391491,
-      "membership_expire_on": 1693848389,
+      "balance": 395763,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668933486,
       "certs_received": {
         "JohnBzz": 1725600294,
@@ -144396,10 +147478,11 @@
     "FERRATONCristina": {
       "index": 5918,
       "owner_key": "DGVDM224fkrNL8pfFNTRaefK7e98qVCW98kSbhDutjwZ",
-      "balance": 651282,
-      "membership_expire_on": 0,
+      "balance": 687764,
+      "membership_expire_on": 1725320534,
       "next_cert_issuable_on": 1684138225,
       "certs_received": {
+        "MarcoSko": 1756961522,
         "CorinnePatris": 1712178152,
         "stephanieguillem": 1698107580,
         "Maminou13": 1741735475,
@@ -144407,7 +147490,6 @@
         "NouvelAnge": 1741747071,
         "Papillote": 1742576807,
         "Guillemyannick": 1698196920,
-        "PhilippeGuillemant": 1695170330,
         "Flandelila": 1729622033,
         "StephaneLONGUET": 1698022602,
         "GeraldineDiss": 1698025660
@@ -144424,7 +147506,7 @@
     "Usoa": {
       "index": 12762,
       "owner_key": "DGh6g5AwGvMU2fujvCoGpm6H9iWbNU5jeznsY5WAYvmj",
-      "balance": 100610,
+      "balance": 140296,
       "membership_expire_on": 1716588886,
       "next_cert_issuable_on": 1689560857,
       "certs_received": {
@@ -144439,7 +147521,7 @@
     "HanspremDaniela": {
       "index": 11363,
       "owner_key": "DGqpWkD57ExARYhLDW6uoS1Kdd15VNJJXFNxdEHy4HrH",
-      "balance": 171870,
+      "balance": 180956,
       "membership_expire_on": 1705354360,
       "next_cert_issuable_on": 1691257625,
       "certs_received": {
@@ -144460,9 +147542,9 @@
     "Galadriel": {
       "index": 7243,
       "owner_key": "DGrC3KLvAzywseXf88BUCq5HEUsSkfxXNd7AFNzCgiSj",
-      "balance": 54252,
+      "balance": 347738,
       "membership_expire_on": 1704342972,
-      "next_cert_issuable_on": 1688996310,
+      "next_cert_issuable_on": 1696228098,
       "certs_received": {
         "LosMundosdeKrull": 1735658405,
         "kapis": 1727474631,
@@ -144474,6 +147556,7 @@
         "isabelha": 1708293702,
         "GabrielCohergne": 1724395966,
         "EliBenifato": 1709059166,
+        "valeria": 1757697974,
         "CarmenOurense": 1749958991,
         "MaraVilla": 1721973753,
         "CarlitaFish": 1750725833,
@@ -144521,7 +147604,7 @@
     "Mattraw": {
       "index": 12416,
       "owner_key": "DGxzoPqVQLjyotnJmCR9i9sPvSZWAMYc1FSMnCuMwZT8",
-      "balance": 163908,
+      "balance": 203594,
       "membership_expire_on": 1712019993,
       "next_cert_issuable_on": 1692620936,
       "certs_received": {
@@ -144568,7 +147651,7 @@
     "FannyLequerrec": {
       "index": 630,
       "owner_key": "DHQSVLv6CAfBHeQkfx325vijh5dcNkjAgK9x2nCNzPyR",
-      "balance": 1861181,
+      "balance": 1900867,
       "membership_expire_on": 1720116728,
       "next_cert_issuable_on": 1671955961,
       "certs_received": {
@@ -144621,19 +147704,21 @@
     "Helo-ise": {
       "index": 11653,
       "owner_key": "DHmv7bnTfDtCgetiz2gFqH4WwY4c1LLW1Ku68MZE2v3j",
-      "balance": 197972,
+      "balance": 187658,
       "membership_expire_on": 1706121440,
-      "next_cert_issuable_on": 1692924392,
+      "next_cert_issuable_on": 1695791048,
       "certs_received": {
         "Flohubert": 1745789617,
         "Carolit": 1751955861,
         "Bernardfrennet": 1754251128,
+        "Isabeau": 1757404897,
         "Poesy": 1739382065,
         "PierreHarrewyn": 1744853667,
         "Asthenie": 1739385892,
         "Eden07": 1743156954,
         "Camizot": 1738732713,
         "Loup": 1738883367,
+        "Mer-lin": 1759212742,
         "Fanchon": 1738990725,
         "jospiritus": 1751955861,
         "Helver": 1744665577
@@ -144658,7 +147743,7 @@
     "Hardass": {
       "index": 12976,
       "owner_key": "DHuk6jpHx9qAeVVTasYVyhrB3zEKWktFnpLZ4p2MrQQ5",
-      "balance": 80624,
+      "balance": 120310,
       "membership_expire_on": 1718234707,
       "next_cert_issuable_on": 1691080877,
       "certs_received": {
@@ -144675,7 +147760,7 @@
     "biquette22": {
       "index": 10225,
       "owner_key": "DHvpw3QCNv3wAirXNenhSXL4FLt6vBvb8DXr4XKxmJMF",
-      "balance": 345990,
+      "balance": 385676,
       "membership_expire_on": 1699104382,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -144699,7 +147784,7 @@
     "Aragorn": {
       "index": 12640,
       "owner_key": "DJEGorqVUjPoqNgLCzrdTqRVm1NQyr7inwjj2y8FW9Sx",
-      "balance": 116412,
+      "balance": 156098,
       "membership_expire_on": 1714757540,
       "next_cert_issuable_on": 1685965901,
       "certs_received": {
@@ -144714,7 +147799,7 @@
     "pedroponte": {
       "index": 12437,
       "owner_key": "DJGHfMH47ogAw2aKr4qBokNYd4goWHYy6ZrLAAQFYook",
-      "balance": 132968,
+      "balance": 172654,
       "membership_expire_on": 1713616516,
       "next_cert_issuable_on": 1693195624,
       "certs_received": {
@@ -144722,10 +147807,12 @@
         "DoisLobos": 1753654460,
         "Judit137": 1745049674,
         "PatriciaDoVale": 1751764822,
+        "artenomar": 1756360185,
         "Newo": 1745135648,
         "lurdespinho": 1751997726,
         "NevFreeman": 1745192605,
         "MiguelHappyFamily": 1745264151,
+        "SaoSampaio": 1758536048,
         "Rahhui": 1749688612,
         "JorgeDraven": 1745048847,
         "JoaoLestro": 1752122357,
@@ -144738,7 +147825,7 @@
     "puysolar": {
       "index": 12898,
       "owner_key": "DJT9w9LS8VuWuTbmdDvaxCEYjnAGs5v5d8KEahJMvhSB",
-      "balance": 351336,
+      "balance": 498522,
       "membership_expire_on": 1716941793,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -144752,8 +147839,8 @@
     "isajouetbelle": {
       "index": 10852,
       "owner_key": "DJWfiyeP35fadZe1n5ga7YAK5KJKAcB71Ud45xkqRmp3",
-      "balance": 179148,
-      "membership_expire_on": 1700768924,
+      "balance": 216934,
+      "membership_expire_on": 1727445845,
       "next_cert_issuable_on": 1685505444,
       "certs_received": {
         "Lotus1304": 1750801509,
@@ -144770,12 +147857,13 @@
     "GaelleGayatri": {
       "index": 10518,
       "owner_key": "DJoxzoPTJLhqNb6bpT8aBRLkW7WjoX3UJopUj6c6rgEs",
-      "balance": 296928,
+      "balance": 336614,
       "membership_expire_on": 1700935550,
       "next_cert_issuable_on": 1676538612,
       "certs_received": {
         "Colibris": 1732508052,
         "NoellieDelande": 1732495002,
+        "prevotfran5310": 1759606320,
         "MichelCoomans5575": 1732493150,
         "xaviercdb": 1732515155,
         "Ysa1471": 1732499706,
@@ -144786,7 +147874,7 @@
     "LaMas": {
       "index": 10936,
       "owner_key": "DJpC7GsTAocHYBzJAGWTAmc76WAPd9pHp1heApogi5oD",
-      "balance": 326553,
+      "balance": 289239,
       "membership_expire_on": 1703110991,
       "next_cert_issuable_on": 1684498272,
       "certs_received": {
@@ -144842,7 +147930,7 @@
     "Djupacabra": {
       "index": 9384,
       "owner_key": "DJu1BLuPYYixxcKnJTav7MkTXcN5h7waA71KMy4fmmoK",
-      "balance": 196754,
+      "balance": 236440,
       "membership_expire_on": 1722348802,
       "next_cert_issuable_on": 1682423727,
       "certs_received": {
@@ -144860,9 +147948,9 @@
     "Mikhaella3448": {
       "index": 1224,
       "owner_key": "DJuQJJ5vscZihS6Vga8JDMRUiKe4EaXsiB6GMMbzQoSz",
-      "balance": 1600838,
+      "balance": 1647092,
       "membership_expire_on": 1724201298,
-      "next_cert_issuable_on": 1692715698,
+      "next_cert_issuable_on": 1695135679,
       "certs_received": {
         "Johan": 1706303021,
         "Fleurdevie": 1710027025,
@@ -144880,6 +147968,7 @@
         "BRIGITTE2019": 1733504059,
         "Eauvive": 1708745332,
         "JPGRAU": 1720037037,
+        "Valoo": 1756946620,
         "captain": 1732672154,
         "Dodjay": 1745773273,
         "PascalGuillemain": 1710725675,
@@ -144893,7 +147982,7 @@
     "EmmaCp": {
       "index": 8267,
       "owner_key": "DJurB7TqQXeBoZFSNeC9nbjGZmqRyuyWtyGEEGtrjRxP",
-      "balance": 288230,
+      "balance": 327916,
       "membership_expire_on": 1709749940,
       "next_cert_issuable_on": 1662992676,
       "certs_received": {
@@ -144914,7 +148003,7 @@
     "MorpheusTrinity": {
       "index": 11951,
       "owner_key": "DJxcYo47DiwUEgAVcd3S1FDHr9cRF7WnxhNAeyiNfrjt",
-      "balance": 140634,
+      "balance": 180320,
       "membership_expire_on": 1709730563,
       "next_cert_issuable_on": 1687347555,
       "certs_received": {
@@ -144929,21 +148018,22 @@
     "ollo": {
       "index": 4213,
       "owner_key": "DK1nH5m1s3ouQQoyneyrMrVzt5Ccd5wmqBuvEH2bmYVV",
-      "balance": 665363,
-      "membership_expire_on": 1694183769,
+      "balance": 697573,
+      "membership_expire_on": 1726415551,
       "next_cert_issuable_on": 1681139568,
       "certs_received": {
         "lanoire": 1728537158,
-        "Marinalouette": 1696558453,
+        "Enialeh": 1757970063,
+        "Goldy": 1758173506,
         "Maaude09": 1725742268,
-        "bellis": 1696487023,
+        "bellis": 1758090262,
         "SandraC": 1726689426
       }
     },
     "OliVia": {
       "index": 7348,
       "owner_key": "DK3ccZ9qRMoybEtiiEDYMikDvL8wTr3dh9sG5Jq3G81V",
-      "balance": 429205,
+      "balance": 468891,
       "membership_expire_on": 1705205655,
       "next_cert_issuable_on": 1681312833,
       "certs_received": {
@@ -144991,7 +148081,7 @@
     "Waldmeister": {
       "index": 6340,
       "owner_key": "DKdyBR8QFVz4eUmb4WjTJYFuEnZFLgAFvQnaYqR44TTf",
-      "balance": 488266,
+      "balance": 527952,
       "membership_expire_on": 1715360529,
       "next_cert_issuable_on": 1639290280,
       "certs_received": {
@@ -145005,7 +148095,7 @@
     "PlumeBleue": {
       "index": 2985,
       "owner_key": "DKrPKCW4rLWzyewkbSd1R76rdydmHHy5ygqf2SEf9oKE",
-      "balance": 863888,
+      "balance": 903574,
       "membership_expire_on": 1704725995,
       "next_cert_issuable_on": 1636634369,
       "certs_received": {
@@ -145020,26 +148110,29 @@
     "Jdbetoile": {
       "index": 6349,
       "owner_key": "DKvbxj3GhfKstRjJY8eBHy2HE2fm8BEEL4DZM1N9s76w",
-      "balance": 1827925,
+      "balance": 1849611,
       "membership_expire_on": 1724158539,
-      "next_cert_issuable_on": 1677147340,
+      "next_cert_issuable_on": 1695885588,
       "certs_received": {
+        "DyanZan_Gce": 1758302236,
         "clfouillet": 1702199683,
-        "CaroleFabre": 1702177562,
+        "CaroleFabre": 1757977036,
         "VeroDeJetsDoux": 1721369193,
         "Quintescence": 1742504864,
         "yolayne": 1714939860,
         "coeurbijoux": 1702355844,
-        "Natte444": 1702241597,
-        "denizen": 1702088787
+        "Natte444": 1758585780,
+        "denizen": 1757794343,
+        "SYLVER": 1758159983,
+        "Ouest_Cristal8": 1758611489
       }
     },
     "Monhommelibre": {
       "index": 7502,
       "owner_key": "DL5nXSfw4jH9JQTSR6fEk9e69o1SiUk9cH36M6SpjVV9",
-      "balance": 317653,
+      "balance": 357339,
       "membership_expire_on": 1706806604,
-      "next_cert_issuable_on": 1675969402,
+      "next_cert_issuable_on": 1695255116,
       "certs_received": {
         "Beasejour": 1711620119,
         "Inilaya11": 1711620475,
@@ -145057,16 +148150,17 @@
     "denizen": {
       "index": 4671,
       "owner_key": "DL8PjbJ28ehxj4hJBRLfmY5KovHsrjbAhcHNjM8YGzzM",
-      "balance": 960190,
+      "balance": 1000656,
       "membership_expire_on": 1705800084,
-      "next_cert_issuable_on": 1692403922,
+      "next_cert_issuable_on": 1694751143,
       "certs_received": {
         "DyanZan_Gce": 1749195291,
         "fdrubigny": 1740772630,
         "ClaireMonde": 1700964887,
         "clfouillet": 1743924558,
         "b_presles": 1747035525,
-        "CaroleFabre": 1699219930,
+        "CaroleFabre": 1757977036,
+        "paidge": 1756928903,
         "JeanChristopheSekinger": 1755619979,
         "Pierroots": 1700775264,
         "etsaman": 1746917319,
@@ -145074,8 +148168,8 @@
         "Sofiachante": 1721078317,
         "Quintescence": 1742504198,
         "NadineGS": 1735095909,
-        "Natte444": 1699137128,
-        "Jdbetoile": 1702424124,
+        "Natte444": 1758586421,
+        "Jdbetoile": 1758041878,
         "Attilax": 1746983646,
         "Sandy": 1755735909,
         "Ouest_Cristal8": 1750721499,
@@ -145085,7 +148179,7 @@
     "Clau29": {
       "index": 6510,
       "owner_key": "DLDPTrbuzz3psnRiuBKXMhUGRbfwdb15Ts9dr4rR7jCo",
-      "balance": 620749,
+      "balance": 665435,
       "membership_expire_on": 1699960707,
       "next_cert_issuable_on": 1677164997,
       "certs_received": {
@@ -145104,18 +148198,22 @@
     "albalibre": {
       "index": 8843,
       "owner_key": "DLFiBhxd6yMeM7KusAttGJ7N1eC2UqqVDdJcPNLptrst",
-      "balance": 81893,
+      "balance": 54379,
       "membership_expire_on": 1718380171,
-      "next_cert_issuable_on": 1693131592,
+      "next_cert_issuable_on": 1695109949,
       "certs_received": {
         "Silvibenedet": 1735517689,
         "Eiutim": 1728251927,
         "Urbez": 1726851565,
+        "DominiqueCuvelier": 1757452938,
         "AlbaMur": 1742499487,
         "carmenchu_almacristal": 1729039666,
         "Naymar": 1725311331,
+        "faraona": 1755028822,
+        "valeria": 1757697445,
         "MaiteTudela": 1743098746,
         "AngieantesGeles": 1728147666,
+        "Isabella": 1757448930,
         "Marta-Raksha": 1735835996,
         "Mariaje": 1756254232,
         "llanero": 1720247690,
@@ -145175,14 +148273,15 @@
     "VICTORF": {
       "index": 11700,
       "owner_key": "DLMo7ypKPhnnCnR29b4MZJHS2vYYrzG6yFTEBrp65YRk",
-      "balance": 107096,
+      "balance": 100132,
       "membership_expire_on": 1707878193,
-      "next_cert_issuable_on": 1693131906,
+      "next_cert_issuable_on": 1696164138,
       "certs_received": {
         "roberplantas": 1741167434,
         "Damaso": 1746948252,
         "carmenchu_almacristal": 1740039825,
         "Jai": 1747711998,
+        "PedroX": 1759010121,
         "Belobal": 1753416705,
         "Abejitajaimita": 1756175106,
         "AlGabal": 1739436193,
@@ -145194,6 +148293,7 @@
         "Alberto": 1739998913,
         "GRUKSY": 1739991860,
         "BruBraveLez": 1739438468,
+        "JaviVega": 1757879482,
         "Kol": 1747941660
       }
     },
@@ -145218,7 +148318,7 @@
     "Ecureuil": {
       "index": 11492,
       "owner_key": "DLTMEkFhRkCpZiPfQMNncLoTCqPF5DhjRfUQCz9qcN9w",
-      "balance": 200180,
+      "balance": 239866,
       "membership_expire_on": 1707175113,
       "next_cert_issuable_on": 1681969683,
       "certs_received": {
@@ -145252,8 +148352,8 @@
     "JeanD07": {
       "index": 6147,
       "owner_key": "DLXxZ6shCHkC5J8vLC3iVYW89BanaEMyKfpdz3h3fteh",
-      "balance": 674581,
-      "membership_expire_on": 1699890675,
+      "balance": 714267,
+      "membership_expire_on": 1727133539,
       "next_cert_issuable_on": 1693026907,
       "certs_received": {
         "Nathalie_Robin": 1754240440,
@@ -145274,13 +148374,15 @@
     "SaoSampaio": {
       "index": 11262,
       "owner_key": "DLby9RTn1Q2L2S3NeaVkU9iKk53GizdRK9DnS1uHWJ4A",
-      "balance": 238542,
+      "balance": 338228,
       "membership_expire_on": 1704498767,
-      "next_cert_issuable_on": 1691137391,
+      "next_cert_issuable_on": 1696216675,
       "certs_received": {
+        "Ferpires": 1757239238,
         "DoisLobos": 1744223661,
         "Temarante": 1738787900,
         "Palladium13": 1736805074,
+        "FranciscoVenda": 1757695741,
         "Minita": 1753094087,
         "Kristo": 1736805074,
         "Judit137": 1747259715,
@@ -145295,6 +148397,7 @@
         "NevFreeman": 1746584234,
         "FerSar": 1745653209,
         "Yohan": 1736586464,
+        "RafaMalheiro": 1757663831,
         "Zephyr01": 1736806624,
         "Sonic": 1747818836,
         "DivinaC": 1747559395,
@@ -145308,6 +148411,7 @@
         "Bilitice": 1736819107,
         "diogocsc": 1744694364,
         "JorgeDraven": 1755749244,
+        "CovaDidier": 1756998523,
         "SandraHeleno": 1738538750,
         "Naneff": 1746596982,
         "Fauna": 1750297797,
@@ -145327,14 +148431,15 @@
     "cricri": {
       "index": 13226,
       "owner_key": "DLhPCwd7PkX1RooNShGFTZyMDD8UXqCDh8St4eSznb1U",
-      "balance": 44252,
+      "balance": 51438,
       "membership_expire_on": 1720660428,
-      "next_cert_issuable_on": 1693314700,
+      "next_cert_issuable_on": 1695988532,
       "certs_received": {
         "PhilippeLafontaine": 1753763027,
         "MarieMas": 1753268207,
         "MarieF68": 1754850399,
         "Carinelechelle": 1753217597,
+        "morimontj": 1756832157,
         "Katecat": 1753259803,
         "Didiamm": 1752292666,
         "Bilou": 1753246063,
@@ -145344,7 +148449,7 @@
     "Soleildesiles": {
       "index": 11392,
       "owner_key": "DLtnucG5FoWt3gQBdupRRNpCHs5YXnDfD1PAdy1F3rhr",
-      "balance": 145352,
+      "balance": 185038,
       "membership_expire_on": 1706277092,
       "next_cert_issuable_on": 1681418171,
       "certs_received": {
@@ -145355,10 +148460,25 @@
         "Brig": 1738045287
       }
     },
+    "Kanea4598": {
+      "index": 13709,
+      "owner_key": "DLwZUL5TANti8hivGt5QXjbKMZm9RLDCddCTPkHaJpEo",
+      "balance": 19968,
+      "membership_expire_on": 1727304113,
+      "next_cert_issuable_on": 1696404626,
+      "certs_received": {
+        "Gscarabbe": 1759276786,
+        "Jeff7791": 1759205391,
+        "Mathdom": 1759290929,
+        "jm45orl": 1759261491,
+        "Faquantharmonie": 1759038682,
+        "GMokeur": 1759364571
+      }
+    },
     "Claudia61": {
       "index": 11846,
       "owner_key": "DLwmLyKp8WaRE8kyHn8vkmGQxVZnroR6LfMWbmyc4Z4o",
-      "balance": 106646,
+      "balance": 146332,
       "membership_expire_on": 1709175253,
       "next_cert_issuable_on": 1691414333,
       "certs_received": {
@@ -145375,22 +148495,24 @@
     "Marco": {
       "index": 8621,
       "owner_key": "DLyBFNsSdsj4DpUqKbrdCJLV99AQ2EYVRxZ3itNHyVp5",
-      "balance": 360616,
+      "balance": 372802,
       "membership_expire_on": 1717498077,
-      "next_cert_issuable_on": 1668669544,
+      "next_cert_issuable_on": 1696378017,
       "certs_received": {
         "xavislow": 1718411332,
         "Paolagrazia": 1718431648,
         "Melanina": 1718411673,
         "Joe71": 1718470734,
         "Wellno1": 1718508270,
+        "danieledonis": 1759388916,
+        "Antaryas": 1759387203,
         "CrisDellaTana": 1754197509
       }
     },
     "Roimain": {
       "index": 4911,
       "owner_key": "DM2JeCHNghqUPuFig1FjAZHAufQx5pKKDsyQPzDiFacH",
-      "balance": 742717,
+      "balance": 782403,
       "membership_expire_on": 1710425100,
       "next_cert_issuable_on": 1690424701,
       "certs_received": {
@@ -145406,7 +148528,7 @@
     "Jolly04": {
       "index": 12118,
       "owner_key": "DM5pRJJ7Xy32nkG6GQii2UfrazGcYYyUrwPn3fVqeGd2",
-      "balance": 180212,
+      "balance": 219898,
       "membership_expire_on": 1710168729,
       "next_cert_issuable_on": 1682431857,
       "certs_received": {
@@ -145430,7 +148552,7 @@
     "CdB": {
       "index": 11311,
       "owner_key": "DMDQRj2uoJNgN4nM9LswbUqXx9s4iM7ntaUpESQb1goG",
-      "balance": 253006,
+      "balance": 292692,
       "membership_expire_on": 1705437489,
       "next_cert_issuable_on": 1683425004,
       "certs_received": {
@@ -145438,6 +148560,7 @@
         "Malomalo": 1737400991,
         "jacquesdutron1325": 1738175369,
         "bcoomans": 1737268401,
+        "prevotfran5310": 1759189477,
         "MichelCoomans5575": 1737505001,
         "Frbo25": 1737503582
       }
@@ -145445,17 +148568,16 @@
     "Vicky": {
       "index": 2229,
       "owner_key": "DMEnjPuVeZNrZgZNnfBPyCwv4JqLzEpZr6CkqVHv9bJz",
-      "balance": 1504822,
+      "balance": 1544508,
       "membership_expire_on": 1703271037,
       "next_cert_issuable_on": 1670176405,
       "certs_received": {
-        "Stessy": 1694903148,
         "Mollie": 1728703164,
         "Christian30": 1723091013,
         "Didierlife84": 1697742677,
         "Christine13": 1751055694,
         "Floravie": 1717221221,
-        "MoulinMuriel": 1695808753,
+        "MoulinMuriel": 1757752043,
         "ChristopheRobine": 1744740040,
         "lamouette": 1730706337,
         "romane": 1742692058,
@@ -145466,9 +148588,9 @@
     "bettyfree": {
       "index": 10359,
       "owner_key": "DMSCa4BtDLNhPppjqGfTdn1ekASARhCZY7z9HTNGKcZ7",
-      "balance": 329077,
+      "balance": 368763,
       "membership_expire_on": 1699919823,
-      "next_cert_issuable_on": 1690032666,
+      "next_cert_issuable_on": 1693368073,
       "certs_received": {
         "marcile": 1750838134,
         "MicheleVanLil": 1738310962,
@@ -145488,10 +148610,11 @@
     "SylvainDeCadix": {
       "index": 13059,
       "owner_key": "DMVHbioZoLVBzzucZDVYhSXyjxTWT2VXjZc4Piwn3SfA",
-      "balance": 84420,
+      "balance": 163706,
       "membership_expire_on": 1719627871,
-      "next_cert_issuable_on": 1688969843,
+      "next_cert_issuable_on": 1696348067,
       "certs_received": {
+        "SophSav": 1757628343,
         "Claudius12": 1754893144,
         "KIRPI": 1751253997,
         "Egopode": 1751335114,
@@ -145503,7 +148626,7 @@
     "Chamath": {
       "index": 8182,
       "owner_key": "DMePZf5MPme7svthAVxT2ArynBFfCcxDuZMtqqUshF7k",
-      "balance": 410974,
+      "balance": 450660,
       "membership_expire_on": 1716635816,
       "next_cert_issuable_on": 1663600932,
       "certs_received": {
@@ -145589,22 +148712,25 @@
     "Omshanti": {
       "index": 12695,
       "owner_key": "DNG2HkyumK2FuD3UNLz3PLAiP2bKhRKdkg8LMGW9Qg7E",
-      "balance": 91072,
+      "balance": 130758,
       "membership_expire_on": 1712684622,
-      "next_cert_issuable_on": 1692585578,
+      "next_cert_issuable_on": 1694245364,
       "certs_received": {
         "DaniailesA": 1753225768,
+        "LibelluleNoe": 1756949647,
+        "JeanneFlowJ": 1759649169,
         "Coco-B": 1744869694,
         "KitKat": 1744869694,
         "Dada313": 1744869694,
         "Mistigri": 1747187663,
-        "JoW": 1744245001
+        "JoW": 1744245001,
+        "MuleRetive": 1756850207
       }
     },
     "AnjeLaur": {
       "index": 9030,
       "owner_key": "DNU6raKppz4vHYrHGJmxN9apzU1s84DRfGB1VrAJ13kn",
-      "balance": 327335,
+      "balance": 367021,
       "membership_expire_on": 1718214466,
       "next_cert_issuable_on": 1689302327,
       "certs_received": {
@@ -145696,7 +148822,7 @@
     "huit": {
       "index": 7887,
       "owner_key": "DP7xixLKkB2j84XY3hWVuHsGPWDKQmjeHwLRW92nKW4M",
-      "balance": 517123,
+      "balance": 556809,
       "membership_expire_on": 1709729197,
       "next_cert_issuable_on": 1681311557,
       "certs_received": {
@@ -145712,8 +148838,8 @@
     "CikalaHanwi": {
       "index": 4376,
       "owner_key": "DPD1W3PE3QfeeYPk7RFxMoAD6oxV9JNJsmjZesWcNsS",
-      "balance": 228750,
-      "membership_expire_on": 1695895087,
+      "balance": 257656,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1674412135,
       "certs_received": {
         "WamniyomniWaste": 1733968772,
@@ -145728,7 +148854,7 @@
     "Loulou13": {
       "index": 6635,
       "owner_key": "DPDTXwU97P37hJap9HrXfYpfjCuAyCBeLPEtqGNdSyU9",
-      "balance": 664092,
+      "balance": 703778,
       "membership_expire_on": 1703765716,
       "next_cert_issuable_on": 1665136670,
       "certs_received": {
@@ -145772,7 +148898,7 @@
     "xaviercdb": {
       "index": 8311,
       "owner_key": "DPKTF3vSssWtKoqaY9DcWtCVpc82wym4FViuejmdM7SU",
-      "balance": 485491,
+      "balance": 525177,
       "membership_expire_on": 1715041109,
       "next_cert_issuable_on": 1683555509,
       "certs_received": {
@@ -145800,9 +148926,9 @@
     "CorinneCoco": {
       "index": 6166,
       "owner_key": "DPsePHQXaBsci2aftTUngz6mszt9GgZmHComtG3p9ju3",
-      "balance": 682861,
+      "balance": 722547,
       "membership_expire_on": 1725046984,
-      "next_cert_issuable_on": 1693561384,
+      "next_cert_issuable_on": 1693561756,
       "certs_received": {
         "Sev": 1717029030,
         "AmeHC": 1713827238,
@@ -145814,8 +148940,8 @@
         "Did-yeah": 1723139219,
         "lilithdu34": 1700327123,
         "chane": 1705697739,
-        "AuFilDuTemps": 1700116804,
-        "Fleur": 1700117751,
+        "AuFilDuTemps": 1756620276,
+        "Fleur": 1756947407,
         "MatHC": 1756604584,
         "Damery": 1700258525,
         "Sandy": 1700966762,
@@ -145825,7 +148951,7 @@
     "gcabay": {
       "index": 749,
       "owner_key": "DPuUt1PZLwhRVmbvBCtKE3Wc4gzYZfzYCXjX2nau2SPj",
-      "balance": 2011641,
+      "balance": 2051327,
       "membership_expire_on": 1710179932,
       "next_cert_issuable_on": 1678751175,
       "certs_received": {
@@ -145855,7 +148981,7 @@
     "Claude25": {
       "index": 13137,
       "owner_key": "DQ8p5K7xGTJnzgTuCmjj79Ehi9sqYL5BeWCwU7EPVo1N",
-      "balance": 54468,
+      "balance": 94154,
       "membership_expire_on": 1720057388,
       "next_cert_issuable_on": 1690100111,
       "certs_received": {
@@ -145877,7 +149003,7 @@
     "Magi": {
       "index": 9155,
       "owner_key": "DQDqZ4MJMkbQmddvsCTUSbEdFPVYGzkN6K5or9kgmjSk",
-      "balance": 156972,
+      "balance": 191318,
       "membership_expire_on": 1717605621,
       "next_cert_issuable_on": 1692691292,
       "certs_received": {
@@ -145895,7 +149021,7 @@
     "sarahpetitetincelle": {
       "index": 7121,
       "owner_key": "DQdKPoQsh65YAHmH1iSJ3RM6cQEAF5jnTeMz6H9qriz5",
-      "balance": 442916,
+      "balance": 482602,
       "membership_expire_on": 1718809709,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -145909,9 +149035,9 @@
     "stinchri": {
       "index": 11305,
       "owner_key": "DQgen5nhyntG7SvFiipaVuAY98dZCpCAZzyCgBxH6YJb",
-      "balance": 236565,
+      "balance": 276251,
       "membership_expire_on": 1704555238,
-      "next_cert_issuable_on": 1676534812,
+      "next_cert_issuable_on": 1696422147,
       "certs_received": {
         "SvetRuskof": 1740016454,
         "ISABELLEDR": 1737481598,
@@ -145926,7 +149052,7 @@
     "pythagore": {
       "index": 11468,
       "owner_key": "DQvxYSuHHBUEjrVSMchssw6SJB1mZQZCrnGKHuGLePfS",
-      "balance": 306939,
+      "balance": 346625,
       "membership_expire_on": 1706230338,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -145945,9 +149071,9 @@
     "LaurenceRose": {
       "index": 6389,
       "owner_key": "DQx3jUgoEJ1ebcfjcqmd2aXFbpjCfesnm4vAHRuprrBP",
-      "balance": 194370,
+      "balance": 234156,
       "membership_expire_on": 1707848284,
-      "next_cert_issuable_on": 1688355648,
+      "next_cert_issuable_on": 1693364696,
       "certs_received": {
         "ClaireMussault": 1701297207,
         "Plantalarose": 1701299412,
@@ -145964,13 +149090,7 @@
       "balance": 743975,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Crystal": 1693962283,
-        "AnneChaimbault": 1694069475,
-        "EvaSorel": 1694069759,
-        "LaurenceDavid": 1694231598,
-        "Omkara": 1694388164
-      }
+      "certs_received": {}
     },
     "Phantomm": {
       "index": 9078,
@@ -145990,9 +149110,9 @@
     "Fee2rien": {
       "index": 7830,
       "owner_key": "DR7UyGd6PGtsbEdpq8HAhFWoyCiLqZdTrvgADNTAPKBV",
-      "balance": 380378,
+      "balance": 410064,
       "membership_expire_on": 1709999687,
-      "next_cert_issuable_on": 1692459660,
+      "next_cert_issuable_on": 1694480217,
       "certs_received": {
         "Icaunaise": 1716092342,
         "gui_tooun": 1712621871,
@@ -146013,7 +149133,7 @@
     "numabella": {
       "index": 8667,
       "owner_key": "DR836iQMVzCSwAYXLxTinZLKwfT4j28abPZSACBfBnEh",
-      "balance": 106800,
+      "balance": 146486,
       "membership_expire_on": 1716396202,
       "next_cert_issuable_on": 1667965147,
       "certs_received": {
@@ -146044,9 +149164,9 @@
     "MarieG46": {
       "index": 9520,
       "owner_key": "DRBPy9MRACoGNLjSiV3zafvyC8BVSeneLxQ78KxGtSgE",
-      "balance": 263787,
+      "balance": 159773,
       "membership_expire_on": 1722039998,
-      "next_cert_issuable_on": 1682494267,
+      "next_cert_issuable_on": 1696227621,
       "certs_received": {
         "Clau": 1726034953,
         "JoelleSQ": 1739850831,
@@ -146072,15 +149192,14 @@
       "certs_received": {
         "KeshavaDasi": 1722966285,
         "Caroshakti": 1722086592,
-        "FrancoiseRangla974": 1722966285,
-        "Lucile974": 1695935689
+        "FrancoiseRangla974": 1722966285
       }
     },
     "Mcb": {
       "index": 9957,
       "owner_key": "DRE2Xhq9oXPi4KSkNsZj9Qcjvy3U5RqPwbRdeyghycox",
-      "balance": 259572,
-      "membership_expire_on": 1697407945,
+      "balance": 283758,
+      "membership_expire_on": 1727030091,
       "next_cert_issuable_on": 1687007218,
       "certs_received": {
         "lumirose": 1729035933,
@@ -146130,18 +149249,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1668329165,
       "certs_received": {
-        "Yannis": 1694308022,
-        "LionLDouNIo": 1731608206,
-        "EveMahe": 1694406461,
-        "lune": 1694399441,
-        "KumaNinja": 1694399441,
-        "loup12": 1694469281
+        "LionLDouNIo": 1731608206
       }
     },
     "Cywil": {
       "index": 101,
       "owner_key": "DRX9XJWwkweZ8risyFwCmoz9LR61Rod9Ha6U1134VsXw",
-      "balance": 1343142,
+      "balance": 1382828,
       "membership_expire_on": 1721161283,
       "next_cert_issuable_on": 1686292689,
       "certs_received": {
@@ -146162,7 +149276,7 @@
     "Delma": {
       "index": 4363,
       "owner_key": "DRbMahDkwexaGouTiPWAETBQK9KX9uHYvTK9npLbJ1yD",
-      "balance": 926252,
+      "balance": 965938,
       "membership_expire_on": 1706213454,
       "next_cert_issuable_on": 1675675609,
       "certs_received": {
@@ -146179,7 +149293,7 @@
     "Madjo": {
       "index": 7077,
       "owner_key": "DReF2a2QB9qLSKk3mQSJ79yNZgbLt8Lr6yLi8e21Rb4N",
-      "balance": 467948,
+      "balance": 507634,
       "membership_expire_on": 1716078248,
       "next_cert_issuable_on": 1655702295,
       "certs_received": {
@@ -146202,7 +149316,7 @@
     "valeriehermans": {
       "index": 12399,
       "owner_key": "DRn1A3uCoqgxjmsJuckTFS2BHg241GyYuTWKS9kJo6oo",
-      "balance": 142044,
+      "balance": 181730,
       "membership_expire_on": 1713396473,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -146216,7 +149330,7 @@
     "JulieZ": {
       "index": 11795,
       "owner_key": "DRpWawpKLztYkVfwaKqZeEYzF7sVxyH5hsid9cjyUrkF",
-      "balance": 232382,
+      "balance": 272068,
       "membership_expire_on": 1707271230,
       "next_cert_issuable_on": 1680015673,
       "certs_received": {
@@ -146231,7 +149345,7 @@
     "Isabellanyssens": {
       "index": 10660,
       "owner_key": "DRpvVNBYt3rA41AgH36Do6B4ZTnTHmC3aXGsMY9uXoib",
-      "balance": 427956,
+      "balance": 467642,
       "membership_expire_on": 1700052014,
       "next_cert_issuable_on": 1670378419,
       "certs_received": {
@@ -146250,20 +149364,14 @@
       "balance": 306368,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "hibiscus11": 1695703284,
-        "AlexDurain": 1695880572,
-        "ElisaDunNotreMonde": 1695682188,
-        "Moineau": 1695530881,
-        "danielbo": 1695703519
-      }
+      "certs_received": {}
     },
     "levanne": {
       "index": 13247,
       "owner_key": "DRsHgPm6mfAaRwfnSYwMj25YZ5JCg34JNytAk55NMFaN",
-      "balance": 37280,
+      "balance": 76566,
       "membership_expire_on": 1720812502,
-      "next_cert_issuable_on": 1692541605,
+      "next_cert_issuable_on": 1696424805,
       "certs_received": {
         "SophieRita": 1752619197,
         "DomVe": 1753213553,
@@ -146278,7 +149386,7 @@
     "alerce": {
       "index": 10745,
       "owner_key": "DRvocEHTGjFskZ4a9hQU583ehJKQWqSvkeRyiAgYVVpT",
-      "balance": 275420,
+      "balance": 315106,
       "membership_expire_on": 1701963384,
       "next_cert_issuable_on": 1682335255,
       "certs_received": {
@@ -146295,7 +149403,7 @@
     "SandGoss": {
       "index": 12292,
       "owner_key": "DS5C7hRRtNtkFJMeJxPyZ9oMU4eEA1XLSuMJrQXPwYn5",
-      "balance": 176892,
+      "balance": 216578,
       "membership_expire_on": 1711927658,
       "next_cert_issuable_on": 1688246014,
       "certs_received": {
@@ -146309,7 +149417,7 @@
     "Pierrotesla": {
       "index": 6953,
       "owner_key": "DS7yQMD6kXfRZVhrGdxXB8ivEGTRjqSwXcbx9LG975Pa",
-      "balance": 592439,
+      "balance": 632125,
       "membership_expire_on": 1704377944,
       "next_cert_issuable_on": 1653023562,
       "certs_received": {
@@ -146323,7 +149431,7 @@
     "Corinne-Lara": {
       "index": 11810,
       "owner_key": "DSDfVZE9MqXDbJ7N9cE5bv3T3AK7c6dcZNj2LdWVfhjY",
-      "balance": 254580,
+      "balance": 284266,
       "membership_expire_on": 1708471735,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -146339,7 +149447,7 @@
     "mariac": {
       "index": 11251,
       "owner_key": "DSEG6bVXYihuNZBR68M5oFuEBpv8Wjo15iy1hzLGSbkW",
-      "balance": 214611,
+      "balance": 254297,
       "membership_expire_on": 1705334682,
       "next_cert_issuable_on": 1683802262,
       "certs_received": {
@@ -146373,7 +149481,7 @@
     "MamSy84": {
       "index": 8309,
       "owner_key": "DSQJEu9Ti4ymLwEQp77br6LgvPkBHJmD3MfLs8iso1YH",
-      "balance": 107042,
+      "balance": 109728,
       "membership_expire_on": 1711898127,
       "next_cert_issuable_on": 1678519665,
       "certs_received": {
@@ -146389,7 +149497,7 @@
     "MayaK": {
       "index": 12023,
       "owner_key": "DSVZbYDyrQLTY68ECAn9NmZAoDQdzv8sguSe4tw5a33y",
-      "balance": 164629,
+      "balance": 204315,
       "membership_expire_on": 1710517492,
       "next_cert_issuable_on": 1682329506,
       "certs_received": {
@@ -146405,7 +149513,7 @@
     "PierreA": {
       "index": 11162,
       "owner_key": "DSWz9SCnaeGRgNqNGoSgwReLwhKnJbxv6A2m1BoQVo6y",
-      "balance": 144432,
+      "balance": 184118,
       "membership_expire_on": 1702910872,
       "next_cert_issuable_on": 1682058560,
       "certs_received": {
@@ -146434,11 +149542,26 @@
         "Titus": 1697842111
       }
     },
+    "veroniquedresselaers": {
+      "index": 13502,
+      "owner_key": "DSh8rDsFU2yBs5BTZYT2SEY3sxb6L25KacAiUgQi3Mpa",
+      "balance": 11356,
+      "membership_expire_on": 1725454400,
+      "next_cert_issuable_on": 1695119921,
+      "certs_received": {
+        "SabinePennese": 1757032022,
+        "SeanB": 1757023952,
+        "DitchB": 1757023228,
+        "MaryBricteux": 1757023228,
+        "SashaB": 1757023952,
+        "Matedi23": 1757033377
+      }
+    },
     "Theomnipower": {
       "index": 9687,
       "owner_key": "DShtRR5NXGT9vvEHYxLouM1Mvm2kHj9diJTegauQh3fJ",
-      "balance": 367409,
-      "membership_expire_on": 1695762617,
+      "balance": 407095,
+      "membership_expire_on": 1727355372,
       "next_cert_issuable_on": 1673089264,
       "certs_received": {
         "Rhodiola73": 1727321280,
@@ -146454,9 +149577,9 @@
     "Liandou": {
       "index": 8606,
       "owner_key": "DSm5s2oHo75gTchpfR5vXsZgXQEcsfcq4te7SFEfRCM3",
-      "balance": 1051769,
+      "balance": 1226975,
       "membership_expire_on": 1716759957,
-      "next_cert_issuable_on": 1689758264,
+      "next_cert_issuable_on": 1689935478,
       "certs_received": {
         "Noelia": 1718836512,
         "GuillemDVL": 1733331709,
@@ -146470,10 +149593,27 @@
         "moincagranada": 1716499689
       }
     },
+    "Aldebaran": {
+      "index": 13601,
+      "owner_key": "DSquSZZ3NAafGvifHzquS6YUqioXGizkdE3AtWEp5Q6R",
+      "balance": 13962,
+      "membership_expire_on": 1725296832,
+      "next_cert_issuable_on": 1696417581,
+      "certs_received": {
+        "CelineVivante": 1757447558,
+        "LutziaZ": 1757794810,
+        "Antoine45": 1757831303,
+        "ALLine": 1757712801,
+        "Delfine": 1757909572,
+        "Carole45": 1757975957,
+        "NadiaNadodu": 1758052281,
+        "GalanD7745": 1757455447
+      }
+    },
     "Paolo": {
       "index": 4934,
       "owner_key": "DSrd7mfaYh8Lkpsi7EWaywEpEMBjqw8muUHSX2EgMpto",
-      "balance": 846089,
+      "balance": 885775,
       "membership_expire_on": 1715706350,
       "next_cert_issuable_on": 1678066187,
       "certs_received": {
@@ -146511,10 +149651,11 @@
     "Aneferse": {
       "index": 10392,
       "owner_key": "DT3XdbwYjFerJV8Z5xwApJeizZueErsaResmVerLYP6S",
-      "balance": 175702,
-      "membership_expire_on": 1700095791,
-      "next_cert_issuable_on": 1691400887,
+      "balance": 210388,
+      "membership_expire_on": 1727103670,
+      "next_cert_issuable_on": 1695618669,
       "certs_received": {
+        "Glorieta": 1756958893,
         "CrisBB": 1747551503,
         "Vichara": 1731693018,
         "roberplantas": 1733176369,
@@ -146557,7 +149698,7 @@
     "OdileArgentier": {
       "index": 10079,
       "owner_key": "DTKzyHNvryZXmhitjfFtkwzc7HcFTieWRdJkEmDiTFkt",
-      "balance": 331757,
+      "balance": 371443,
       "membership_expire_on": 1698240820,
       "next_cert_issuable_on": 1667824759,
       "certs_received": {
@@ -146571,7 +149712,7 @@
     "JuanK": {
       "index": 4973,
       "owner_key": "DTRD1hL83GdkxDG3yJNJcqGZwvdjEmy77EA2HiQn2pwJ",
-      "balance": 431125,
+      "balance": 401625,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -146589,7 +149730,7 @@
     "VioletteL": {
       "index": 9240,
       "owner_key": "DTSHZjM1f1ey9L1qk7X18U6BFetDe41BzDiYvmqYyiDt",
-      "balance": 403013,
+      "balance": 442699,
       "membership_expire_on": 1722162113,
       "next_cert_issuable_on": 1686913796,
       "certs_received": {
@@ -146631,9 +149772,9 @@
     "Ravintsara": {
       "index": 8865,
       "owner_key": "DTm2vaoLuaqUZmVijEo7LbATtLCxFeXB3ZZy834eNAga",
-      "balance": 389351,
+      "balance": 350937,
       "membership_expire_on": 1717334572,
-      "next_cert_issuable_on": 1688656177,
+      "next_cert_issuable_on": 1696079487,
       "certs_received": {
         "NopamasYC": 1729358528,
         "Malene": 1729666203,
@@ -146642,11 +149783,13 @@
         "Drissa81": 1738834873,
         "Tell": 1720586557,
         "PascalPapouscal": 1720859317,
+        "Elody": 1759169703,
         "Papouscal": 1739422922,
         "Gabrimiel": 1720570166,
         "LibertyFran": 1721416739,
         "ALFONSILaurent": 1744519663,
         "Artemizia": 1741770129,
+        "Jacklynn": 1759799041,
         "cecile_voiron": 1736894391,
         "Laurent-de-Moirans": 1720724661,
         "JBM": 1720576275
@@ -146655,7 +149798,7 @@
     "Jarich": {
       "index": 11227,
       "owner_key": "DTzNxXzdxe6JZnJ1jJdUcmh7kfa5MDt8ZUvEDk5HYgcT",
-      "balance": 259978,
+      "balance": 243864,
       "membership_expire_on": 1705285390,
       "next_cert_issuable_on": 1692851135,
       "certs_received": {
@@ -146673,22 +149816,21 @@
     "TiJus": {
       "index": 4645,
       "owner_key": "DU4knA6DQLL5ojySfUsiDKjKDLSGvwfQ3ZL1HNzcCeFw",
-      "balance": 1303629,
-      "membership_expire_on": 1695868422,
+      "balance": 1332535,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
         "Beasejour": 1727427764,
         "Artnow": 1722654642,
         "mamierabelle": 1744869694,
         "Trevaly": 1739870779,
-        "CorentinLMR": 1695696469,
         "Hamidov51": 1718517202
       }
     },
     "AgnesMareau": {
       "index": 7056,
       "owner_key": "DU8gv4MZarp21u5UwqZhCHoaRN8C6YYQ66eLim4V7piZ",
-      "balance": 278297,
+      "balance": 302983,
       "membership_expire_on": 1703792733,
       "next_cert_issuable_on": 1672307500,
       "certs_received": {
@@ -146723,7 +149865,7 @@
     "JacquesMorot": {
       "index": 827,
       "owner_key": "DUNkpKX69ZwhHWTdz1AQ9uubSScZZZ8tSwcdqfXeVHnU",
-      "balance": 1829560,
+      "balance": 1869246,
       "membership_expire_on": 1723568759,
       "next_cert_issuable_on": 1685058178,
       "certs_received": {
@@ -146737,7 +149879,7 @@
     "peterDUQASC": {
       "index": 12506,
       "owner_key": "DUQASCnXkGdUKMpXoDuKEgDpAGqjuZgu2QYRacGjSNN9",
-      "balance": 130296,
+      "balance": 169982,
       "membership_expire_on": 1714541877,
       "next_cert_issuable_on": 1685770863,
       "certs_received": {
@@ -146755,8 +149897,8 @@
     "LoriC7": {
       "index": 9658,
       "owner_key": "DUVjus51fDFs83TbDNsGrZV4ouC6iBEAXiSKnvczNigA",
-      "balance": 361527,
-      "membership_expire_on": 1694699704,
+      "balance": 376479,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Sissi71": 1726708865,
@@ -146769,7 +149911,7 @@
     "Nathalou": {
       "index": 13005,
       "owner_key": "DUX3afM63mzDE2mU6fskGUCi23ju6wMEXGFMjDUY8A16",
-      "balance": 63012,
+      "balance": 90518,
       "membership_expire_on": 1719259189,
       "next_cert_issuable_on": 1688980225,
       "certs_received": {
@@ -146783,9 +149925,9 @@
     "Shivabelle": {
       "index": 9420,
       "owner_key": "DUaoSw9X2UB6uBP7zft8j8Bwk7zUzMxCVYwYa9WRsWDW",
-      "balance": 246846,
+      "balance": 286532,
       "membership_expire_on": 1721048495,
-      "next_cert_issuable_on": 1693054388,
+      "next_cert_issuable_on": 1695202750,
       "certs_received": {
         "Estela": 1735508857,
         "SophSav": 1725508902,
@@ -146793,6 +149935,7 @@
         "Cristol-Iquid": 1725433522,
         "Anam": 1756344052,
         "MeliCP": 1727290938,
+        "GanTao": 1756268729,
         "NadineGS": 1725331527,
         "YOSOYLUZ": 1740953939,
         "Licorne6": 1725331356,
@@ -146828,7 +149971,7 @@
     "IsabelleANGE": {
       "index": 5261,
       "owner_key": "DUmceEX1zXP3AohMrUemY6RxV1nSc943Rwc1CtZo1NfC",
-      "balance": 561121,
+      "balance": 600807,
       "membership_expire_on": 1716918165,
       "next_cert_issuable_on": 1685432565,
       "certs_received": {
@@ -146866,7 +150009,7 @@
     "Tissia": {
       "index": 6917,
       "owner_key": "DVBRBpcA2vJPLtoad9pFiNd6JrAKYx9L5rh21MpH7fDJ",
-      "balance": 340783,
+      "balance": 412809,
       "membership_expire_on": 1702649863,
       "next_cert_issuable_on": 1688384159,
       "certs_received": {
@@ -146902,19 +150045,20 @@
     "TailleDouce": {
       "index": 5526,
       "owner_key": "DVVaFwZNivDpzPUTDrUihpjQjKouSHxkZYkDDxmt2nt6",
-      "balance": 368840,
+      "balance": 408526,
       "membership_expire_on": 1713224521,
-      "next_cert_issuable_on": 1692676703,
+      "next_cert_issuable_on": 1694932285,
       "certs_received": {
+        "MignoletEmmanuel": 1757196823,
         "Ashawik": 1740512627,
         "Berniebx": 1736307681,
         "AmeSurTerre": 1737934519,
         "AlphaCentauri": 1737408869,
+        "oliviersimonon": 1758082608,
         "NathalieBolly": 1703483901,
         "JulienBolly": 1705340165,
         "CapuChoeur": 1698827515,
         "ChristineV": 1747347275,
-        "LaurentVanEeckhout": 1694282621,
         "Sottay": 1734670999,
         "Jujupapa": 1736145996,
         "Rezette": 1736146374,
@@ -146959,7 +150103,7 @@
     "Mee": {
       "index": 11463,
       "owner_key": "DVnwMVTeSzciz9PVekrGhifFsCAgjPHdNCcm7pngwXBb",
-      "balance": 221739,
+      "balance": 261425,
       "membership_expire_on": 1706311064,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -146975,7 +150119,7 @@
     "Lot": {
       "index": 10143,
       "owner_key": "DVo56KQ6NcDUUoMBHCEcGcpUEY5feWGviiLKA2RQLGFr",
-      "balance": 324956,
+      "balance": 364642,
       "membership_expire_on": 1698717524,
       "next_cert_issuable_on": 1677993296,
       "certs_received": {
@@ -146992,8 +150136,8 @@
     "Anamanla972": {
       "index": 4423,
       "owner_key": "DVrpFxno3SRuDeDv4GqMUCFcdv2GixjoLxTBcDNQ5kxy",
-      "balance": 924453,
-      "membership_expire_on": 1695742419,
+      "balance": 964139,
+      "membership_expire_on": 1726961254,
       "next_cert_issuable_on": 1681818070,
       "certs_received": {
         "fdrubigny": 1731018548,
@@ -147010,11 +150154,12 @@
     "Evelyne1805": {
       "index": 11414,
       "owner_key": "DVtzeJgxhaNNcmL192YPqLtZZxmeZQy1KTYVVYprMd64",
-      "balance": 89798,
+      "balance": 205584,
       "membership_expire_on": 1706186711,
       "next_cert_issuable_on": 1692597293,
       "certs_received": {
         "Nagual": 1737793108,
+        "GanTao": 1753152043,
         "LaurenceDavid": 1744325763,
         "MoonVelvet": 1738265580,
         "Tifenn": 1737794317,
@@ -147035,7 +150180,7 @@
     "Lamychorise": {
       "index": 6180,
       "owner_key": "DW5fDZujsgVFEtuj8p82KNon96BUsNQA5f8sDeyp5Q4a",
-      "balance": 626582,
+      "balance": 666268,
       "membership_expire_on": 1699882202,
       "next_cert_issuable_on": 1673400350,
       "certs_received": {
@@ -147054,7 +150199,7 @@
     "Grisou1250": {
       "index": 2681,
       "owner_key": "DW6tkA45kqCbzHyKJy45V7SARgR8Wzg2aY5qAk725b8n",
-      "balance": 1115820,
+      "balance": 1155506,
       "membership_expire_on": 1716303205,
       "next_cert_issuable_on": 1685160388,
       "certs_received": {
@@ -147069,7 +150214,7 @@
     "Zaza974": {
       "index": 11172,
       "owner_key": "DWLRrhoxKsHDuzBShbBM2uuBwQJffgjjh4JJhTB31Kga",
-      "balance": 157214,
+      "balance": 196900,
       "membership_expire_on": 1701468319,
       "next_cert_issuable_on": 1678796103,
       "certs_received": {
@@ -147085,13 +150230,13 @@
     "SarahAchalafin": {
       "index": 5917,
       "owner_key": "DWNSzhBbHH5Prwp9whKvsv2hRcE8SG3HeYxAFPZjHPEg",
-      "balance": 687764,
+      "balance": 727450,
       "membership_expire_on": 1721723516,
-      "next_cert_issuable_on": 1655534000,
+      "next_cert_issuable_on": 1696184878,
       "certs_received": {
         "JessyRipert": 1714088149,
         "Zoezion": 1697774161,
-        "kuluk": 1698359745,
+        "kuluk": 1756763250,
         "Ccecile": 1716794858,
         "Fabi26": 1715298815,
         "Pilar": 1708499272,
@@ -147100,7 +150245,7 @@
         "Uranie": 1697734156,
         "daufun": 1697763420,
         "FREZA": 1716259228,
-        "KarineKala": 1697757394,
+        "KarineKala": 1758357401,
         "DiesseSophie": 1697735091,
         "psycotox80": 1715045252
       }
@@ -147108,7 +150253,7 @@
     "FloraSinecaster": {
       "index": 6887,
       "owner_key": "DWPnDgPUgtY3A2AZMTvocxUBNQossuB3V8AxmzdZmT8t",
-      "balance": 481571,
+      "balance": 521257,
       "membership_expire_on": 1717014385,
       "next_cert_issuable_on": 1646043251,
       "certs_received": {
@@ -147122,12 +150267,13 @@
     "ElvieLloret": {
       "index": 12361,
       "owner_key": "DWSnjJh7BA5CWDiwecVWaziCBAxUeQ8GE6zs2U3eGtKV",
-      "balance": 590816,
+      "balance": 789502,
       "membership_expire_on": 1713176311,
       "next_cert_issuable_on": 1690211925,
       "certs_received": {
         "DomRomy20": 1748647542,
         "LeDemineur21": 1744836717,
+        "MicheleSauterey": 1757474273,
         "Sanashitaka": 1750654717,
         "Dom": 1744815426,
         "FabriceSeguin": 1744826970,
@@ -147141,8 +150287,8 @@
     "awtodd": {
       "index": 9755,
       "owner_key": "DWXPx9YeBL52TKjk2NV4ko82uyB9Rjf1yj4fWHCwKGAy",
-      "balance": 349114,
-      "membership_expire_on": 1695664642,
+      "balance": 375864,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "arkanoid3275": 1727665412,
@@ -147155,7 +150301,7 @@
     "Etienne32": {
       "index": 11928,
       "owner_key": "DWisH1ZNhadZWCo4VJq9eGeaux5VAsm4YgxP5CGbuYxJ",
-      "balance": 208733,
+      "balance": 248419,
       "membership_expire_on": 1710080378,
       "next_cert_issuable_on": 1679905797,
       "certs_received": {
@@ -147192,7 +150338,7 @@
     "PedroRodriguezRodriguezCriptana": {
       "index": 7814,
       "owner_key": "DWoq1FFLZkDeGH4EqCz454AC5UFY9jKpKHSrBbmqSxbU",
-      "balance": 420929,
+      "balance": 460615,
       "membership_expire_on": 1711206107,
       "next_cert_issuable_on": 1659286489,
       "certs_received": {
@@ -147208,7 +150354,7 @@
     "BAYAmudra": {
       "index": 11480,
       "owner_key": "DWwYVy8J2N3wtRRq2p3RNt5MqunvEiJKmpR3XHsE5exW",
-      "balance": 516492,
+      "balance": 555978,
       "membership_expire_on": 1702477922,
       "next_cert_issuable_on": 1692796080,
       "certs_received": {
@@ -147264,7 +150410,7 @@
     "Lunartemisia": {
       "index": 7562,
       "owner_key": "DX7UxQ3DHEt1Nyp6MhH7LhFyFGWQJ8ebyFbyEEyKzCcc",
-      "balance": 467598,
+      "balance": 507284,
       "membership_expire_on": 1710357172,
       "next_cert_issuable_on": 1661700211,
       "certs_received": {
@@ -147287,9 +150433,9 @@
     "VeroDieu": {
       "index": 11504,
       "owner_key": "DX7o8Jr8RvZzKL6NjJT5oFfZDWAG9qYcQKdFoRrwzt4d",
-      "balance": 141755,
+      "balance": 181441,
       "membership_expire_on": 1706531993,
-      "next_cert_issuable_on": 1692424751,
+      "next_cert_issuable_on": 1693023775,
       "certs_received": {
         "ValerieArtsetsens": 1753653994,
         "BricePedrono": 1738349599,
@@ -147304,7 +150450,7 @@
       "owner_key": "DXAoiVP6poAwNhS3uDUMpMqMhSqawC5TKNFkbBEwB4hp",
       "balance": 469517,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632792796,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Lunaloca": 1703385457
       }
@@ -147314,7 +150460,7 @@
       "owner_key": "DXF5FnVDnnwrvEJqTynxfCv5o2o8id9henmzKZw319Qh",
       "balance": 1252574,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631253703,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "GaiaBonheur": {
@@ -147333,12 +150479,7 @@
       "balance": 558168,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1638373039,
-      "certs_received": {
-        "AndreHattermann": 1695850523,
-        "Amandine": 1695937011,
-        "clairesz": 1695601847,
-        "lousyet": 1693642154
-      }
+      "certs_received": {}
     },
     "twix_bis": {
       "index": 2735,
@@ -147354,7 +150495,7 @@
     "Patt07": {
       "index": 12432,
       "owner_key": "DXReJ82EUrYywfBae2sf5uEw9g1LLwurXuWJjfVZRGM9",
-      "balance": 137772,
+      "balance": 177458,
       "membership_expire_on": 1711383529,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -147369,7 +150510,7 @@
     "nitnelav": {
       "index": 6523,
       "owner_key": "DXTEa2eGM8mvNXz3t29BAVss9ckGYXJKGh69e2oSgEsi",
-      "balance": 1544336,
+      "balance": 1584022,
       "membership_expire_on": 1701869976,
       "next_cert_issuable_on": 1656210334,
       "certs_received": {
@@ -147390,7 +150531,7 @@
     "Ioane": {
       "index": 1924,
       "owner_key": "DXaREXYSiHqnqx9PwW9xzp5P2sw1nr3zzcB6tPTw82Qs",
-      "balance": 1795288,
+      "balance": 1834974,
       "membership_expire_on": 1717597793,
       "next_cert_issuable_on": 1678201133,
       "certs_received": {
@@ -147404,9 +150545,9 @@
     "Did-yeah": {
       "index": 8742,
       "owner_key": "DXfNQAczLrxfJJaYh9H8ntNE6dkZeygfMKcYTNTnhLpy",
-      "balance": 678910,
+      "balance": 718596,
       "membership_expire_on": 1718237957,
-      "next_cert_issuable_on": 1693407173,
+      "next_cert_issuable_on": 1696217429,
       "certs_received": {
         "Val48": 1719887166,
         "Sev": 1724290841,
@@ -147420,6 +150561,7 @@
         "JJP": 1735434576,
         "JuanLu": 1727419757,
         "Florencefleur": 1719790204,
+        "Diessanne": 1759128817,
         "CorinneCoco": 1719878513,
         "fredpel": 1719859866,
         "lilithdu34": 1719859866,
@@ -147432,7 +150574,7 @@
     "JeremyBemon": {
       "index": 4441,
       "owner_key": "DXkNEco6QhxT2497hrWyrbfq4AHHDS5QH3YwWqq7sRRr",
-      "balance": 602235,
+      "balance": 641921,
       "membership_expire_on": 1701138580,
       "next_cert_issuable_on": 1692430453,
       "certs_received": {
@@ -147452,7 +150594,7 @@
     "Lukaslyam2212": {
       "index": 8655,
       "owner_key": "DXnrX3rYQoHCFjRWJzK6dYHV2knb1Js3pJhnbi9gaGFU",
-      "balance": 456148,
+      "balance": 495834,
       "membership_expire_on": 1718901396,
       "next_cert_issuable_on": 1670124426,
       "certs_received": {
@@ -147474,9 +150616,9 @@
     "Francinedefossa": {
       "index": 13004,
       "owner_key": "DXvsW1c4i7ZREZNpQ1Up3kWdcaF5WpTw4fDicBkgaioN",
-      "balance": 71488,
+      "balance": 33974,
       "membership_expire_on": 1719325565,
-      "next_cert_issuable_on": 1692105608,
+      "next_cert_issuable_on": 1694340743,
       "certs_received": {
         "nio": 1750917810,
         "Niranjana": 1750955802,
@@ -147488,9 +150630,9 @@
     "ChaGaia5926": {
       "index": 8771,
       "owner_key": "DXxWTfmxhdbnwP5GqHSkDLqxrXs4JCZ94CJEhiTpriWU",
-      "balance": 439359,
+      "balance": 488545,
       "membership_expire_on": 1713571341,
-      "next_cert_issuable_on": 1691677773,
+      "next_cert_issuable_on": 1695258524,
       "certs_received": {
         "Lol": 1729148797,
         "Elimarine": 1718604240,
@@ -147509,7 +150651,7 @@
     "Rosacide": {
       "index": 11658,
       "owner_key": "DXxeTqcThKTNFc81FqJLdxpVAQwtU9KoDCnuzpi3Tms3",
-      "balance": 206913,
+      "balance": 246599,
       "membership_expire_on": 1708178686,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -147528,10 +150670,30 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Sol-Eric": {
+      "index": 13532,
+      "owner_key": "DYECCMqtKw2ZsMosDUCTHpz7KcTgmczG7NnWJrzN82bb",
+      "balance": 74152,
+      "membership_expire_on": 1723559485,
+      "next_cert_issuable_on": 1696422147,
+      "certs_received": {
+        "RomainKornig": 1758668710,
+        "Bambou": 1758047181,
+        "Nounouche": 1758134862,
+        "Tell": 1756700628,
+        "Chiara07": 1756836931,
+        "LibertyFran": 1758094056,
+        "CorinneBaro": 1757059206,
+        "PorteduCiel": 1756971727,
+        "BenoitFrancou": 1757114170,
+        "Chiron": 1759547876,
+        "CoralieROI": 1757575942
+      }
+    },
     "RonanLB": {
       "index": 12881,
       "owner_key": "DYGBzk3MbDotsWZM9g9mE7m93gj7m3A93Sb5PsgMBxGx",
-      "balance": 60872,
+      "balance": 100558,
       "membership_expire_on": 1714848480,
       "next_cert_issuable_on": 1687401295,
       "certs_received": {
@@ -147545,15 +150707,16 @@
     "Sandrabacq": {
       "index": 8064,
       "owner_key": "DYMC4kbes4TCRZnsjqiquC9TGHLnsUQ7FMK9UDjr444k",
-      "balance": 924009,
+      "balance": 924195,
       "membership_expire_on": 1710236160,
-      "next_cert_issuable_on": 1687150104,
+      "next_cert_issuable_on": 1695810022,
       "certs_received": {
         "Velotibi": 1750301953,
         "laurienza": 1715151724,
         "Ajna21": 1720924572,
         "Raphaelle": 1714602310,
         "BriceV": 1714602310,
+        "Ofildevie": 1758921696,
         "Estellea": 1742968266,
         "Gold144": 1730785241,
         "Georges": 1714605728,
@@ -147564,7 +150727,7 @@
     "Mystere": {
       "index": 4607,
       "owner_key": "DYTd5edAeyq8PLAVM2BtVQGUUMocBbo3mKnTCyp6Xtgn",
-      "balance": 764513,
+      "balance": 804199,
       "membership_expire_on": 1700744268,
       "next_cert_issuable_on": 1680908495,
       "certs_received": {
@@ -147608,13 +150771,14 @@
     "adepetigny": {
       "index": 2708,
       "owner_key": "DYp5xaBE2xwcKwGiQtRdJhNknzsFSs9bmBUwrjs3LFik",
-      "balance": 1297530,
+      "balance": 1337216,
       "membership_expire_on": 1724173527,
       "next_cert_issuable_on": 1633864211,
       "certs_received": {
-        "Anthonycormier": 1696742963,
+        "Anthonycormier": 1756658848,
         "Droudrou": 1696792699,
         "CharlesAbecassis": 1696919880,
+        "Clr44": 1759289668,
         "Jinomusic": 1720199319,
         "Maaltir": 1755729242,
         "Maia": 1755797632,
@@ -147624,7 +150788,7 @@
     "StefTouet": {
       "index": 4953,
       "owner_key": "DYqkPpTxt5e3hWiZtbsofMoiRZpsnQ4gY2f7XFMdyLj1",
-      "balance": 410329,
+      "balance": 450015,
       "membership_expire_on": 1709832143,
       "next_cert_issuable_on": 1689514074,
       "certs_received": {
@@ -147644,8 +150808,8 @@
     "Pizzacoca": {
       "index": 2396,
       "owner_key": "DYusBPkCoesdapjoSJDbK1YNgX8zSB86bVjXUABFk1Fm",
-      "balance": 1023783,
-      "membership_expire_on": 0,
+      "balance": 1046381,
+      "membership_expire_on": 1726497574,
       "next_cert_issuable_on": 1663430613,
       "certs_received": {
         "HgO": 1719343173,
@@ -147661,9 +150825,9 @@
     "Kaya971Wolf": {
       "index": 8493,
       "owner_key": "DZ5pVyR3RFEoo9JZoYxDiH8hgXHjutSYiVfcS6treQZL",
-      "balance": 273335,
+      "balance": 54621,
       "membership_expire_on": 1713900189,
-      "next_cert_issuable_on": 1686587774,
+      "next_cert_issuable_on": 1696500484,
       "certs_received": {
         "Beasejour": 1718336593,
         "LazareT": 1723433606,
@@ -147675,6 +150839,7 @@
         "harry974": 1720692739,
         "Zara97": 1741303355,
         "Shana_B": 1725818757,
+        "fabiolino": 1757462065,
         "celineR": 1719730838,
         "Tchois": 1721258220,
         "Fan971": 1718916692,
@@ -147723,7 +150888,7 @@
     "Colombe3": {
       "index": 6611,
       "owner_key": "DZ8LFCgvacdVWLoccxLTAzorQTXLiN59HF2cooty6uRc",
-      "balance": 583148,
+      "balance": 622834,
       "membership_expire_on": 1705181888,
       "next_cert_issuable_on": 1663596148,
       "certs_received": {
@@ -147738,7 +150903,7 @@
     "AliceLouve07": {
       "index": 7351,
       "owner_key": "DZFYkGwyrt4FMxAsxK4NKRRKTKGSEhRMkLEmt4bSuw1h",
-      "balance": 499817,
+      "balance": 539503,
       "membership_expire_on": 1707499237,
       "next_cert_issuable_on": 1657027573,
       "certs_received": {
@@ -147758,8 +150923,8 @@
     "Ronan": {
       "index": 9804,
       "owner_key": "DZJFuZdEtSSWAzK9XeSSjSbgCcqs1Qe3MUAdxiqwdxVK",
-      "balance": 351237,
-      "membership_expire_on": 1695819857,
+      "balance": 380143,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683553606,
       "certs_received": {
         "PatrickFlouriot": 1727381285,
@@ -147773,13 +150938,12 @@
     "Crealine": {
       "index": 2702,
       "owner_key": "DZUUMZJofDt6em4N7Bcyv3MW9tUq7trouuWwgg5HNRxP",
-      "balance": 1272146,
+      "balance": 1311832,
       "membership_expire_on": 1714027488,
       "next_cert_issuable_on": 1682647364,
       "certs_received": {
         "SophSav": 1697874605,
         "Hava_bien": 1709420369,
-        "verolodeve": 1694886236,
         "ValerieOrvain": 1701045284,
         "lul": 1749239613,
         "Val34": 1745647994,
@@ -147789,8 +150953,8 @@
     "YvesMarieValladon": {
       "index": 2421,
       "owner_key": "DZX7VFuFbCLw1UUrbitKfWA8aQGPgsMBvVFRhgLTFtU1",
-      "balance": 861996,
-      "membership_expire_on": 1699474680,
+      "balance": 901682,
+      "membership_expire_on": 1726064828,
       "next_cert_issuable_on": 1691455464,
       "certs_received": {
         "1000i100": 1731489684,
@@ -147805,8 +150969,8 @@
     "Melanoche38": {
       "index": 6260,
       "owner_key": "DZej41LVkQ3MhJCRyqWYteAqZVuEa6dFkaG2psa3xeqX",
-      "balance": 672741,
-      "membership_expire_on": 1700220681,
+      "balance": 712427,
+      "membership_expire_on": 1728071638,
       "next_cert_issuable_on": 1654944773,
       "certs_received": {
         "perenoel": 1701137250,
@@ -147820,12 +150984,11 @@
     "Redgg": {
       "index": 1451,
       "owner_key": "DZjXTMkjLobUvmQzMwP1cHX3kNFF6DfETFSQaBhZ5uxQ",
-      "balance": 955465,
-      "membership_expire_on": 1700614265,
+      "balance": 985449,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1690418178,
       "certs_received": {
         "Fisso": 1733792557,
-        "Fleur-du-renouveau": 1695935689,
         "HugoTrentesaux": 1701281875,
         "gpsqueeek": 1727145275,
         "FilouLibre59": 1732871172
@@ -147834,14 +150997,15 @@
     "Antaryas": {
       "index": 9194,
       "owner_key": "DZkCHi52VPNc2qwy4C1VJr1McfrUjdrwU8kkasoSKLka",
-      "balance": 388359,
+      "balance": 367670,
       "membership_expire_on": 1719864284,
-      "next_cert_issuable_on": 1667953889,
+      "next_cert_issuable_on": 1696344003,
       "certs_received": {
         "GabriellaFugazzotto": 1723415755,
         "senigen": 1723424118,
         "danieledonis": 1723407007,
         "animos_fortis": 1723408986,
+        "Marco": 1759387000,
         "Susannabiodanza": 1723503185,
         "Mike_Z": 1723519785
       }
@@ -147849,7 +151013,7 @@
     "sanka82": {
       "index": 10744,
       "owner_key": "DZqUAA3epNuzByTtzfa39SW1pWuBJH7YWj9E7goVemM7",
-      "balance": 284220,
+      "balance": 323906,
       "membership_expire_on": 1701447119,
       "next_cert_issuable_on": 1686149898,
       "certs_received": {
@@ -147863,13 +151027,14 @@
     "TelleFicelle": {
       "index": 10129,
       "owner_key": "DZrUKurWhd12dxPsueNG8FSK4tSQJfKoPAhW4JL46icK",
-      "balance": 405716,
-      "membership_expire_on": 1696178847,
+      "balance": 438934,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "RequistonAude": 1730092733,
         "Eli": 1727742722,
         "MaelysV": 1730168877,
+        "estherwalther26": 1759177471,
         "Alisce": 1730588129,
         "Nadesdja": 1730092036,
         "LeonV": 1730224994,
@@ -147881,7 +151046,7 @@
     "ClairePastor": {
       "index": 7173,
       "owner_key": "DZt4sdCufRniHgMLb1PpfQynTNyNHp4GDighNZFfonGP",
-      "balance": 523239,
+      "balance": 562925,
       "membership_expire_on": 1711464908,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -147895,9 +151060,9 @@
     "chapo": {
       "index": 13239,
       "owner_key": "DZyTq68tvXFd1NtcJbBCByqvCKMKqusbgexH7e6LUgHy",
-      "balance": 42859,
+      "balance": 79045,
       "membership_expire_on": 1720415485,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696309449,
       "certs_received": {
         "Pocahontas": 1753467901,
         "LaSoyeFee": 1753467224,
@@ -147910,7 +151075,7 @@
     "Gus": {
       "index": 10089,
       "owner_key": "DZz4PFBLnfZ4iZ9HwA2chJXLn44VxSog8FFe8e6DwfYP",
-      "balance": 178798,
+      "balance": 218484,
       "membership_expire_on": 1697404842,
       "next_cert_issuable_on": 1667381372,
       "certs_received": {
@@ -147935,11 +151100,12 @@
     "Summerinfinity": {
       "index": 1516,
       "owner_key": "DaAuDZ53NYWDosQAonjsq3Q699QGMZ1V9zsUWuNxV84P",
-      "balance": 1532906,
+      "balance": 1572592,
       "membership_expire_on": 1719320702,
       "next_cert_issuable_on": 1691583735,
       "certs_received": {
         "absalon2": 1699412946,
+        "Yassin": 1757734534,
         "ContrePropagande": 1751046926,
         "JeanLucCrcfx": 1728005032,
         "AnnikOutside": 1719155984,
@@ -147952,7 +151118,7 @@
     "christinejeannin26": {
       "index": 13119,
       "owner_key": "DaH82PUewqkbisNQK7PVq8oi5KUs8YU2f8ScFR3pPYEm",
-      "balance": 62372,
+      "balance": 102058,
       "membership_expire_on": 1720368065,
       "next_cert_issuable_on": 1689997617,
       "certs_received": {
@@ -147966,7 +151132,7 @@
     "DominiqueDoppagne": {
       "index": 334,
       "owner_key": "DahnJaWAjXy74Sc8fE2SxtnPTirMxXrQy6vVicz2oA1Y",
-      "balance": 2154117,
+      "balance": 2193803,
       "membership_expire_on": 1723199825,
       "next_cert_issuable_on": 1643520673,
       "certs_received": {
@@ -147981,8 +151147,8 @@
     "Louise21": {
       "index": 10554,
       "owner_key": "DanFyfgDGbbbW82Kz3noyTQNyzsezkAbWhXGm6J3g2qJ",
-      "balance": 299810,
-      "membership_expire_on": 1700359915,
+      "balance": 339496,
+      "membership_expire_on": 1727381957,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Dom26": 1732564308,
@@ -147995,7 +151161,7 @@
     "Bouanito": {
       "index": 6439,
       "owner_key": "DaprZAkA1jAmsqt5AjtEUSnHakEQJsVBaaptUYznTLE7",
-      "balance": 614328,
+      "balance": 654014,
       "membership_expire_on": 1698543152,
       "next_cert_issuable_on": 1671342987,
       "certs_received": {
@@ -148034,7 +151200,7 @@
     "CARLO": {
       "index": 11356,
       "owner_key": "DatcGurMprti6Wy7v3VpB9nqBiiG7tLZEShqEHADAxWG",
-      "balance": 242329,
+      "balance": 282015,
       "membership_expire_on": 1705445675,
       "next_cert_issuable_on": 1674992956,
       "certs_received": {
@@ -148050,7 +151216,7 @@
     "Didiamm": {
       "index": 11798,
       "owner_key": "Db2RZTVkPtFDdUaZqinboK2K8w9dcUHkB569NnsxG72q",
-      "balance": 166323,
+      "balance": 206009,
       "membership_expire_on": 1707941992,
       "next_cert_issuable_on": 1689249466,
       "certs_received": {
@@ -148083,7 +151249,7 @@
     "Isalct81": {
       "index": 6398,
       "owner_key": "Db6LcEYzXcCK8H4ZodesfhVGbdnsp4x2sXZirG2Byxct",
-      "balance": 348393,
+      "balance": 388079,
       "membership_expire_on": 1710175992,
       "next_cert_issuable_on": 1679558877,
       "certs_received": {
@@ -148109,7 +151275,7 @@
     "SaskiaRelker": {
       "index": 12109,
       "owner_key": "DbJVcDaFMUxTNA6CiGN5TsZfCDbLAE7eSMd1m9vvcvss",
-      "balance": 275880,
+      "balance": 315566,
       "membership_expire_on": 1710190250,
       "next_cert_issuable_on": 1680011586,
       "certs_received": {
@@ -148123,8 +151289,8 @@
     "Alhambra6": {
       "index": 4373,
       "owner_key": "DbKFtuDCvAu1XM4CL6Zdo34ChbDsadLC4GWFPiqe12tN",
-      "balance": 867065,
-      "membership_expire_on": 1696200612,
+      "balance": 900283,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1687784202,
       "certs_received": {
         "Nanoo": 1717390585,
@@ -148165,7 +151331,7 @@
     "filosteo": {
       "index": 6981,
       "owner_key": "DbhdQWh8iAwo4dQM4o11CLeH7csF5yv2BwpapheYarCS",
-      "balance": 181795,
+      "balance": 245681,
       "membership_expire_on": 1702407269,
       "next_cert_issuable_on": 1692348607,
       "certs_received": {
@@ -148182,13 +151348,14 @@
         "tomval83": 1708035279,
         "FleurChenot": 1755293153,
         "Val83": 1725855034,
-        "Elodea": 1708070025
+        "Elodea": 1708070025,
+        "ElvireDracenie": 1758384306
       }
     },
     "Arippocampe": {
       "index": 13093,
       "owner_key": "Dbs6e71phStc2jqfheqAgi4Fkee5khf7tzFR3H1nT69k",
-      "balance": 59008,
+      "balance": 98694,
       "membership_expire_on": 1719278005,
       "next_cert_issuable_on": 1693011964,
       "certs_received": {
@@ -148210,9 +151377,9 @@
     "Carolune": {
       "index": 8987,
       "owner_key": "Dc7AzeXwPkJn8FwtvWokw6gw3ENHHfhiFk1nxTyNze4W",
-      "balance": 375839,
+      "balance": 355525,
       "membership_expire_on": 1718722815,
-      "next_cert_issuable_on": 1665296806,
+      "next_cert_issuable_on": 1694337418,
       "certs_received": {
         "FRANCINE79": 1721206632,
         "monique79": 1721524950,
@@ -148264,7 +151431,7 @@
     "Mat_RB": {
       "index": 8809,
       "owner_key": "DcMDXKSb4Y3JeZwtziJmkxgPx4YjmzcLVPxjkDH8oXki",
-      "balance": 330557,
+      "balance": 370243,
       "membership_expire_on": 1714857341,
       "next_cert_issuable_on": 1657811469,
       "certs_received": {
@@ -148280,7 +151447,7 @@
     "NoaChereau": {
       "index": 3898,
       "owner_key": "DcQXayNBqbPK2Qwiz52x6AGhkpwPkRHnM4iKLtYykRxn",
-      "balance": 682192,
+      "balance": 721878,
       "membership_expire_on": 1718099310,
       "next_cert_issuable_on": 1688343274,
       "certs_received": {
@@ -148304,15 +151471,15 @@
     "SOLARIS333": {
       "index": 6095,
       "owner_key": "DcXj3fai4Fv52H96fedsR5oKz6xDAsSd1Cws2bCDYyWc",
-      "balance": 791255,
-      "membership_expire_on": 1696532989,
+      "balance": 820161,
+      "membership_expire_on": 1727703891,
       "next_cert_issuable_on": 1673590587,
       "certs_received": {
         "CELIOCTAVE": 1699221005,
         "PaulusMagnus": 1700002711,
-        "YIKING": 1699208836,
+        "YIKING": 1759512804,
         "LucileFeuilleau": 1737273184,
-        "toutoune2189": 1700080282,
+        "toutoune2189": 1759719377,
         "Nounoursgt8946": 1699677569,
         "Sebeq33": 1699220457,
         "brunos": 1699677239
@@ -148336,7 +151503,7 @@
     "PeterKD": {
       "index": 7474,
       "owner_key": "DcikEQLGRXjMCThVzYVk8QneZkpeBJbdpxpzBzqfURW6",
-      "balance": 609704,
+      "balance": 649390,
       "membership_expire_on": 1710262416,
       "next_cert_issuable_on": 1654852966,
       "certs_received": {
@@ -148358,6 +151525,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "JoseAntonio": {
+      "index": 13668,
+      "owner_key": "DcvDnJDwdmub5QYAFEptodK4vuyqseWTHuV6TjVDrfRS",
+      "balance": 70858,
+      "membership_expire_on": 1727107030,
+      "next_cert_issuable_on": 1695990600,
+      "certs_received": {
+        "Vida": 1758849954,
+        "anaoj": 1758749594,
+        "fasesdalua08": 1758686661,
+        "SandraHeleno": 1758669734,
+        "Joaquim": 1758831913
+      }
+    },
     "Dodolaventure": {
       "index": 8111,
       "owner_key": "Dd2kaRY4gVyobjPhC2NrRwsF9zGcHNnunJyB8dfeb9vj",
@@ -148374,10 +151555,27 @@
         "Carima": 1714247763
       }
     },
+    "Sigrid": {
+      "index": 13645,
+      "owner_key": "DdA83THi8rrtMCT8323qr1QkuCvMMhq26CCNjP7UQ29g",
+      "balance": 59042,
+      "membership_expire_on": 1726773615,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Kaikus": 1758490519,
+        "Nobby": 1759626092,
+        "majo": 1758659685,
+        "heinz": 1758489085,
+        "Chrisandre": 1758425689,
+        "Gitty": 1759626556,
+        "Ralf": 1758479672,
+        "SoniaElena": 1758431369
+      }
+    },
     "Patricia369": {
       "index": 7744,
       "owner_key": "DdGmRA5grdgBrXsmiLWhkgdasCgYnWjWVmXXMhABqVGa",
-      "balance": 424584,
+      "balance": 464270,
       "membership_expire_on": 1708885344,
       "next_cert_issuable_on": 1677829342,
       "certs_received": {
@@ -148396,7 +151594,7 @@
     "Rockwater": {
       "index": 3038,
       "owner_key": "DdQPhFCZLz4bTx658CzsaLnnwmVnu6UZGV56BBYpM3nf",
-      "balance": 1000,
+      "balance": 6300,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {}
@@ -148404,7 +151602,7 @@
     "Celinette": {
       "index": 9050,
       "owner_key": "DdQyhgifTsv2EAJgBeK2GaatckeCk8uQSndUwfd2QQWr",
-      "balance": 411040,
+      "balance": 440726,
       "membership_expire_on": 1715903714,
       "next_cert_issuable_on": 1667390010,
       "certs_received": {
@@ -148445,7 +151643,7 @@
     "Evelyne": {
       "index": 4108,
       "owner_key": "DdZHwAbohMFMDRpb12piuGLGGSAZsVuEykdERSKY4Srb",
-      "balance": 88404,
+      "balance": 8090,
       "membership_expire_on": 1716297701,
       "next_cert_issuable_on": 1677331680,
       "certs_received": {
@@ -148462,8 +151660,8 @@
     "ChristopheB": {
       "index": 10479,
       "owner_key": "DdiDWW4bx8JGtJTgXjmMn5bXDBjKRX21EgBeGudFKQ6a",
-      "balance": 300105,
-      "membership_expire_on": 1696107812,
+      "balance": 332245,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "SebastienTimbre": 1732299635,
@@ -148477,7 +151675,7 @@
     "Monchatonetoile": {
       "index": 1906,
       "owner_key": "DdkRDV7ZnGR358wagNMoUgzPfS8eLq7wB9R9K6g1LUZi",
-      "balance": 1422015,
+      "balance": 1461701,
       "membership_expire_on": 1705958774,
       "next_cert_issuable_on": 1680525681,
       "certs_received": {
@@ -148495,7 +151693,7 @@
     "Rajendra": {
       "index": 11908,
       "owner_key": "DdvALKjmQeXiY6xqQ9hy8dYzVZbKnhVUwmaeMksxiY2Z",
-      "balance": 622641,
+      "balance": 624527,
       "membership_expire_on": 1709299320,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -148519,14 +151717,14 @@
     "MariantoniaHuguet": {
       "index": 5379,
       "owner_key": "DdxDdqEcdiubs7e98SLKPuG7z29NhD6r2duQbDUsnLLR",
-      "balance": 29223,
+      "balance": 94526,
       "membership_expire_on": 1713297112,
-      "next_cert_issuable_on": 1692786497,
+      "next_cert_issuable_on": 1693671328,
       "certs_received": {
         "Truca": 1752193992,
         "mafalda": 1750141015,
         "BlancaFlow": 1755918531,
-        "Libertad22": 1698390128,
+        "Libertad22": 1756506282,
         "Xiscos": 1734071064,
         "catalinons": 1742145008,
         "Thor": 1745503511,
@@ -148541,25 +151739,25 @@
     "Lilinico": {
       "index": 5486,
       "owner_key": "De157odrryQyVALJFF1CwPE1vfXn2U9PTtDuH5fxtgNg",
-      "balance": 966393,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1644297917,
+      "balance": 987923,
+      "membership_expire_on": 1726527481,
+      "next_cert_issuable_on": 1695044081,
       "certs_received": {
         "Unicorn": 1705280066,
         "ElieLombard": 1704568562,
-        "BrigitteW": 1696487023,
+        "BrigitteW": 1759817204,
         "Mia81": 1705702650,
+        "Maquilleuse": 1759442612,
         "Patricia": 1707911063,
         "VeroniqueV": 1707355359,
         "amandine": 1704488047,
-        "Chrysalide": 1695858061,
-        "CovaDidier": 1699829937
+        "CovaDidier": 1759387881
       }
     },
     "Lana": {
       "index": 6574,
       "owner_key": "De8U5WjWuFhndrTE54Vb9SRxjL4MpUruqbvpbrMm2wCH",
-      "balance": 599271,
+      "balance": 638957,
       "membership_expire_on": 1699281093,
       "next_cert_issuable_on": 1659945008,
       "certs_received": {
@@ -148586,7 +151784,7 @@
     "LohanM": {
       "index": 11000,
       "owner_key": "DeCaz5ABCFdgjqjxQ3SBgV1mh7Te9M7v7U9uBPccEKYw",
-      "balance": 295049,
+      "balance": 334735,
       "membership_expire_on": 1702235496,
       "next_cert_issuable_on": 1678146373,
       "certs_received": {
@@ -148600,7 +151798,7 @@
     "MireilleMC": {
       "index": 1149,
       "owner_key": "DeG1C6U1JwCSnfmzyjXn3Zdwth4asRkezu3gbuQ8QAzg",
-      "balance": 1682664,
+      "balance": 1722350,
       "membership_expire_on": 1721291287,
       "next_cert_issuable_on": 1689805687,
       "certs_received": {
@@ -148636,7 +151834,7 @@
     "Steph63": {
       "index": 10943,
       "owner_key": "DeTAN2h92hGPEScgNSpXFfHSDhwZe8cjvwmBWyhTbenL",
-      "balance": 277300,
+      "balance": 157986,
       "membership_expire_on": 1701184026,
       "next_cert_issuable_on": 1687615415,
       "certs_received": {
@@ -148652,7 +151850,7 @@
     "sanete": {
       "index": 11734,
       "owner_key": "Deafdmc7teS9NRKAtMUZLeZ6b12uUhj3aVzM9fHdeH4V",
-      "balance": 201618,
+      "balance": 241304,
       "membership_expire_on": 1704727623,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -148666,9 +151864,9 @@
     "Cosmic-Clara": {
       "index": 3759,
       "owner_key": "DekwAvjc8kHCukPg3DwoXcXd7cGqttowAXT9aJe9dCkf",
-      "balance": 726826,
+      "balance": 726827,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631173693,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "neo9": 1698966146,
         "Lili21": 1699950998
@@ -148685,10 +151883,11 @@
     "Carocreative": {
       "index": 12797,
       "owner_key": "Df5wQGQWDFK7aJsKLdUnvcYbLevxGbJJ4ZctVs5GJruc",
-      "balance": 94720,
+      "balance": 127206,
       "membership_expire_on": 1717182908,
-      "next_cert_issuable_on": 1687765579,
+      "next_cert_issuable_on": 1694683901,
       "certs_received": {
+        "martinfray": 1757750895,
         "Helsephine": 1748891541,
         "JMa": 1748891541,
         "Mazarine07": 1748891318,
@@ -148699,8 +151898,8 @@
     "MireilleTouet": {
       "index": 4517,
       "owner_key": "Df8F3uCojr2amTpFJdxx5LvmVAPwVZ3PKWmNjgAVGACY",
-      "balance": 713440,
-      "membership_expire_on": 1696284368,
+      "balance": 713126,
+      "membership_expire_on": 1726246725,
       "next_cert_issuable_on": 1689513027,
       "certs_received": {
         "Eleonora": 1710641632,
@@ -148732,9 +151931,9 @@
     "PascaleRoncoroni": {
       "index": 171,
       "owner_key": "DfAT7wGnRG4c3vnCDSfF5CW8HkwLRL6bMb1ykQPiAgCX",
-      "balance": 66320,
+      "balance": 118000,
       "membership_expire_on": 1717370518,
-      "next_cert_issuable_on": 1693018590,
+      "next_cert_issuable_on": 1696556452,
       "certs_received": {
         "SylvieBeaumontPerron": 1710478133,
         "FLORESTRELA": 1713414671,
@@ -148744,7 +151943,6 @@
         "CatherineSengel": 1705298237,
         "FarcyAdeline": 1730409165,
         "EricPetit": 1711344196,
-        "theresecaillere": 1696545849,
         "Gregory": 1746077501,
         "maryline61": 1710534580,
         "GaelleLC": 1732160525,
@@ -148753,7 +151951,7 @@
         "LuciaKorosiova": 1730457751,
         "GaryGrandin": 1730332690,
         "OlDog": 1701121966,
-        "mimi": 1694579795,
+        "mimi": 1757715181,
         "AtmaRajpreet": 1732068222,
         "Cheminons": 1713038391,
         "gerardchavanon": 1720904366,
@@ -148786,10 +151984,12 @@
         "nox": 1743611420,
         "Kaminmine": 1718214975,
         "AtmaRajprem": 1732067851,
-        "DidierPapillon": 1698487027,
+        "DidierPapillon": 1756678349,
         "MessagereDeLumiere": 1699477076,
+        "CarolAmethyste": 1758670427,
         "ThibaudLibre": 1716270144,
         "RichardGhislaine": 1706168831,
+        "ElisaDesFougeres": 1758736350,
         "GenevieveLagrange": 1734223883,
         "Albassierseverine": 1754620056,
         "NathalieBuxerolle": 1747282195,
@@ -148806,7 +152006,7 @@
     "tinje": {
       "index": 13426,
       "owner_key": "DfCjDUA3wWgm4bPAUyjnJjA6yaDSnbZdaQ3T1bC8tCrD",
-      "balance": 69544,
+      "balance": 178230,
       "membership_expire_on": 1722461071,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -148820,9 +152020,9 @@
     "voironnaise": {
       "index": 8377,
       "owner_key": "DfFMaRXboKbbHjka1gMzToEYKyAyt5xxT6RFrc7owp8t",
-      "balance": 489236,
+      "balance": 528922,
       "membership_expire_on": 1711411735,
-      "next_cert_issuable_on": 1683554478,
+      "next_cert_issuable_on": 1696254878,
       "certs_received": {
         "Yume": 1717187302,
         "Mavag": 1716871680,
@@ -148852,7 +152052,7 @@
     "ElisabethMoreil": {
       "index": 10482,
       "owner_key": "DffkDoop2baEwiLgc6SjCXALALoVjqhZDRvrd2JWHcx4",
-      "balance": 238846,
+      "balance": 214532,
       "membership_expire_on": 1724380566,
       "next_cert_issuable_on": 1691576856,
       "certs_received": {
@@ -148864,6 +152064,7 @@
         "Loup": 1730683980,
         "Gnome": 1740891692,
         "Fanchon": 1731714199,
+        "Mauve": 1758154869,
         "Maud": 1738003440,
         "ben078m": 1730710415
       }
@@ -148874,9 +152075,7 @@
       "balance": 1223820,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "gerard94": 1693727412
-      }
+      "certs_received": {}
     },
     "Seraphine07": {
       "index": 5845,
@@ -148895,8 +152094,8 @@
     "FrancoisMORIGNY": {
       "index": 10224,
       "owner_key": "Dfr2TV17oV2hjfWLBEGsSeuLbznPChZFHypBQYfTaXM4",
-      "balance": 375133,
-      "membership_expire_on": 1698104682,
+      "balance": 414819,
+      "membership_expire_on": 1725925397,
       "next_cert_issuable_on": 1668314709,
       "certs_received": {
         "Jade971": 1730923269,
@@ -148921,7 +152120,7 @@
     "Leela": {
       "index": 8494,
       "owner_key": "DfyZ4KxzNypPwQQfdVUw62aXkyajSwSYBEPgLzLDLmoJ",
-      "balance": 424768,
+      "balance": 464454,
       "membership_expire_on": 1720727528,
       "next_cert_issuable_on": 1668165198,
       "certs_received": {
@@ -148931,13 +152130,14 @@
         "RaphaelleEva": 1717949992,
         "Omkara": 1717547653,
         "annefreda": 1722618118,
-        "KaraMonnerville": 1717949992
+        "KaraMonnerville": 1717949992,
+        "BrigitteBaron": 1755755256
       }
     },
     "Kimedo": {
       "index": 12524,
       "owner_key": "Dg5r3we4A72KRhv7Wz6YYkdzBww7Jq9U5BQ99rVfSxyP",
-      "balance": 130364,
+      "balance": 170050,
       "membership_expire_on": 1711980525,
       "next_cert_issuable_on": 1683976874,
       "certs_received": {
@@ -148956,26 +152156,22 @@
     "ClementineLaborderie": {
       "index": 5692,
       "owner_key": "DgA2QXNcG6Bacyo7HFXwJeUmEJktPEC3RXcvEPvwoibd",
-      "balance": 606935,
-      "membership_expire_on": 1718323811,
+      "balance": 637997,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1687160129,
       "certs_received": {
         "Delphdele": 1701566049,
         "Helenep": 1750325389,
-        "kosnik": 1693599956,
-        "darben87": 1694834909,
         "Papy89": 1750203329,
-        "hocine": 1696021917,
-        "Parhit": 1699260003,
-        "tipi": 1694678224
+        "Parhit": 1699260003
       }
     },
     "Juliefab91": {
       "index": 13377,
       "owner_key": "DgFGBfDxtV4mmFxCwKrv1t5uFVGW9rMBA8KjEKtPMsv6",
-      "balance": 315020,
+      "balance": 354706,
       "membership_expire_on": 1719005314,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696243270,
       "certs_received": {
         "Katiecat": 1755067508,
         "CnouFoss": 1755320218,
@@ -149034,7 +152230,7 @@
     "Philaloe": {
       "index": 11194,
       "owner_key": "DgeEi2191N9TwbjiuZ1NGE7exNKR87DS65qcNz58XMb6",
-      "balance": 202335,
+      "balance": 242021,
       "membership_expire_on": 1704987165,
       "next_cert_issuable_on": 1692959092,
       "certs_received": {
@@ -149062,18 +152258,12 @@
       "balance": 381464,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Droudrou": 1695185230,
-        "Maimouna": 1695700781,
-        "Clr44": 1695185230,
-        "Shai": 1695198124,
-        "Maia": 1695185789
-      }
+      "certs_received": {}
     },
     "Nathdebe": {
       "index": 10783,
       "owner_key": "DgpEaaTcJn4ofhtTe1w9Jhp3Pbe5tTVBsKF5voeuPdxa",
-      "balance": 292543,
+      "balance": 332229,
       "membership_expire_on": 1702047941,
       "next_cert_issuable_on": 1680752451,
       "certs_received": {
@@ -149113,7 +152303,7 @@
     "alidjaaaaan": {
       "index": 12959,
       "owner_key": "Dgym5qnXpPuGF21wZxeSrJ84b8MwKAVTMFTVrq1TNoAY",
-      "balance": 75260,
+      "balance": 114946,
       "membership_expire_on": 1715638496,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -149127,9 +152317,9 @@
     "Thomas": {
       "index": 5082,
       "owner_key": "Dh38eWrYQ7fjGxnZA7Dr5KjooDZcjpsshtTGrK1d8Goq",
-      "balance": 48165,
+      "balance": 9851,
       "membership_expire_on": 1706978226,
-      "next_cert_issuable_on": 1688073823,
+      "next_cert_issuable_on": 1694058563,
       "certs_received": {
         "Stevia30120": 1749403294,
         "jeanferreira": 1751824345,
@@ -149154,7 +152344,6 @@
       "certs_received": {
         "daryl": 1697057743,
         "Boussaakat-hich": 1697417270,
-        "Ruby": 1696211449,
         "Pascale72": 1697353329,
         "JeromeCoste": 1697437521,
         "NadiaPaillard": 1697338201,
@@ -149162,10 +152351,25 @@
         "Sylvere72": 1697269780
       }
     },
+    "Fredvanluik": {
+      "index": 13523,
+      "owner_key": "DhAjAubzgeeLneePRQcUHPyDxdH4xFdTJaiJ3b3yBTbp",
+      "balance": 32210,
+      "membership_expire_on": 1723997378,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "DomVe": 1757316932,
+        "EmmaD": 1757196823,
+        "Sisi": 1756120226,
+        "Gioelina": 1757237968,
+        "Lieve": 1757187310,
+        "Phenix": 1757186950
+      }
+    },
     "lorine_pitigliani": {
       "index": 4980,
       "owner_key": "DhBZXEAwJ63zfjvojtwbvqqEg6iNZveL7o6gXNUkHXW1",
-      "balance": 867845,
+      "balance": 907531,
       "membership_expire_on": 1712076953,
       "next_cert_issuable_on": 1666579565,
       "certs_received": {
@@ -149180,7 +152384,7 @@
     "mamilaine43": {
       "index": 10243,
       "owner_key": "DhDGC3kavy8srxtUmxGs9C5Q2uTPuuHjb3cZpV28VHtY",
-      "balance": 312490,
+      "balance": 352176,
       "membership_expire_on": 1699279633,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -149198,9 +152402,9 @@
     "ChristopheVolckaert": {
       "index": 6739,
       "owner_key": "DhKR63Qm7SmHTN8yw4zBgSKwBm2Zzmwycb2w7A5YLHLR",
-      "balance": 396582,
+      "balance": 353768,
       "membership_expire_on": 1712223608,
-      "next_cert_issuable_on": 1687866943,
+      "next_cert_issuable_on": 1696292048,
       "certs_received": {
         "Marjorie": 1705913080,
         "CatherineMonastirieff": 1744953680,
@@ -149211,13 +152415,14 @@
         "Nadia": 1706146558,
         "MinaManar": 1746148570,
         "Joa-KimTiago": 1705896723,
-        "Mmemonica": 1750911468
+        "Mmemonica": 1750911468,
+        "SylvieL": 1759275256
       }
     },
     "marmotte32": {
       "index": 3173,
       "owner_key": "DhMho3VLDG8pKiVHurUREqGRWiD3UW233ufgp9Peykws",
-      "balance": 1079258,
+      "balance": 1118944,
       "membership_expire_on": 1711387733,
       "next_cert_issuable_on": 1686551069,
       "certs_received": {
@@ -149252,7 +152457,7 @@
     "fredpel": {
       "index": 7039,
       "owner_key": "DhP31qtd14Brtgy3Br9T7XJVYca8wBVvUEjvkzKWHmzf",
-      "balance": 463839,
+      "balance": 503525,
       "membership_expire_on": 1708083888,
       "next_cert_issuable_on": 1692839452,
       "certs_received": {
@@ -149295,15 +152500,19 @@
     "JEF33": {
       "index": 10433,
       "owner_key": "DhZamDXz6RUwAoSirwJGLpF3yyByPAMPYSF2gsVzcuau",
-      "balance": 276282,
-      "membership_expire_on": 1700356463,
-      "next_cert_issuable_on": 1691414333,
+      "balance": 276968,
+      "membership_expire_on": 1727804610,
+      "next_cert_issuable_on": 1696318805,
       "certs_received": {
         "vlareynie26": 1731988801,
         "Dom26": 1731971767,
         "Tico": 1731998729,
+        "Nagoa": 1759432238,
         "ClauTie26": 1731999353,
         "corelia": 1748755357,
+        "pat26": 1756944495,
+        "Hera": 1759241653,
+        "Claudio26": 1759351962,
         "Luviam": 1754453203,
         "BenoitC54": 1731917515
       }
@@ -149311,7 +152520,7 @@
     "Theresa51": {
       "index": 5915,
       "owner_key": "DhdFKwjooMVMR27UNy9ngF3KmSKcfesrpQBBuKnUwGdV",
-      "balance": 159141,
+      "balance": 198827,
       "membership_expire_on": 1697544986,
       "next_cert_issuable_on": 1646563840,
       "certs_received": {
@@ -149335,7 +152544,7 @@
     "AmaNacer": {
       "index": 9967,
       "owner_key": "Di2WKXAcPbUDj1vh99djbdph5kR3RqGbADaYxTRczHPy",
-      "balance": 283379,
+      "balance": 295065,
       "membership_expire_on": 1725033994,
       "next_cert_issuable_on": 1693548394,
       "certs_received": {
@@ -149387,7 +152596,7 @@
     "Floweranne": {
       "index": 674,
       "owner_key": "DiKrvNE8RteVYrEzyBHU1vUDHLAs6b4YWaQ9n7t4T5cq",
-      "balance": 917720,
+      "balance": 957406,
       "membership_expire_on": 1699030869,
       "next_cert_issuable_on": 1658878151,
       "certs_received": {
@@ -149410,7 +152619,7 @@
     "Leon26": {
       "index": 12084,
       "owner_key": "DiQFVcK1u79RzNBtKy9n8ikdBywFnq3JJtTKiyhrzP7G",
-      "balance": 273024,
+      "balance": 312710,
       "membership_expire_on": 1710090170,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -149424,13 +152633,14 @@
     "SabineB": {
       "index": 12214,
       "owner_key": "DiVVFHFZCkrXFEwCzjQ24w7wa54x6uvUzpN2P9bpvAdQ",
-      "balance": 192200,
+      "balance": 204886,
       "membership_expire_on": 1712144734,
-      "next_cert_issuable_on": 1684078405,
+      "next_cert_issuable_on": 1694323065,
       "certs_received": {
         "Domusol": 1743530476,
         "ElaineDana": 1743487848,
         "Annae": 1743453778,
+        "Gillo75": 1757832103,
         "Lazuly": 1743454608,
         "TribuRaph": 1743454048,
         "IsaPetitsBonheurs": 1743453778
@@ -149439,18 +152649,20 @@
     "LeprivierLunel": {
       "index": 5331,
       "owner_key": "DiYBuQ43d2vMeozsuMgpXizAyvs4EjER2Zq6VZorCfND",
-      "balance": 251525,
+      "balance": 291211,
       "membership_expire_on": 1715017521,
-      "next_cert_issuable_on": 1683533701,
+      "next_cert_issuable_on": 1692896437,
       "certs_received": {
         "Asterix": 1731520769,
         "Loulou09": 1699851863,
+        "GeraldineLeprivier": 1755939637,
         "PatrickRO": 1745380026,
         "pascaldedomptail": 1701134096,
         "ptitechaise": 1698363642,
         "Gentil09": 1697411257,
         "AlbinS": 1697835379,
-        "myriamdevivegnis": 1693784979,
+        "PhilippeRomanin": 1755939637,
+        "Rolande": 1755939637,
         "Timtitou": 1699294602,
         "bibilapomme09": 1698364007
       }
@@ -149458,7 +152670,7 @@
     "CLARANO": {
       "index": 8428,
       "owner_key": "DibN9BUDcefem5g2uFnJuX1kySEA1xaAHjYC31JTYEEJ",
-      "balance": 39802,
+      "balance": 29512,
       "membership_expire_on": 1711577929,
       "next_cert_issuable_on": 1680092329,
       "certs_received": {
@@ -149481,7 +152693,7 @@
     "Tanda": {
       "index": 7515,
       "owner_key": "DidjpsN8bb8U87C9WCn9ZYpfUmhNnDJ9H4fVaLWzzEuq",
-      "balance": 525551,
+      "balance": 565237,
       "membership_expire_on": 1711384117,
       "next_cert_issuable_on": 1652927095,
       "certs_received": {
@@ -149498,25 +152710,26 @@
     "fanfan77": {
       "index": 5434,
       "owner_key": "Die2jZExBEsaws7pazujPsNtHc5DbLZsR6B54RnhFJvU",
-      "balance": 374741,
-      "membership_expire_on": 0,
+      "balance": 353365,
+      "membership_expire_on": 1727619871,
       "next_cert_issuable_on": 1682853413,
       "certs_received": {
         "capricorne": 1739424153,
         "jma": 1741765945,
         "EmiRobin": 1710351687,
-        "Zenobie": 1743187784
+        "Zenobie": 1743187784,
+        "Coco46": 1759444212,
+        "christine": 1757048550
       }
     },
     "louison": {
       "index": 3076,
       "owner_key": "Digh5QrtP8eWZtLF1iQYGM1bKyZmr9PFixfFvY96vB7y",
-      "balance": 1111708,
-      "membership_expire_on": 1695386837,
+      "balance": 1120252,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1663947954,
       "certs_received": {
         "CorinneE": 1726984795,
-        "Pol": 1694199483,
         "l4rt1st-1nc0nnu": 1701060303,
         "alexparmentier": 1701838766,
         "NeoFlod": 1726972567
@@ -149525,7 +152738,7 @@
     "Graziella": {
       "index": 12091,
       "owner_key": "Dijsqh68nwhD36e7vFMPYBYKESrDHYdmYCoc7vfXPpaZ",
-      "balance": 160948,
+      "balance": 183434,
       "membership_expire_on": 1709923050,
       "next_cert_issuable_on": 1688436590,
       "certs_received": {
@@ -149542,7 +152755,7 @@
     "Stranger": {
       "index": 10296,
       "owner_key": "DirDzRub5tNCoVVsxneH7sbRPdageQPefG5bnC7RaJJq",
-      "balance": 300654,
+      "balance": 340340,
       "membership_expire_on": 1696974956,
       "next_cert_issuable_on": 1679663451,
       "certs_received": {
@@ -149561,7 +152774,7 @@
     "Spartaco": {
       "index": 9033,
       "owner_key": "DishwkmsYa3xD1sKQ2PGKHaHjmBYz7Y4Rpvx8PcJLaD6",
-      "balance": 354035,
+      "balance": 393721,
       "membership_expire_on": 1718148916,
       "next_cert_issuable_on": 1670822544,
       "certs_received": {
@@ -149580,7 +152793,7 @@
     "Kumbaya": {
       "index": 8269,
       "owner_key": "DiyEas3i4WB1ayAQuoZFUosPEmWyYdx692B3kt2xXGTp",
-      "balance": 436644,
+      "balance": 476330,
       "membership_expire_on": 1713661284,
       "next_cert_issuable_on": 1655811141,
       "certs_received": {
@@ -149596,7 +152809,7 @@
     "MonicaMargarida": {
       "index": 12980,
       "owner_key": "Dj4kfgTirCiX4GrzdCQRhaznFbAwG5VsLCxb4tGxYqMZ",
-      "balance": 81624,
+      "balance": 121310,
       "membership_expire_on": 1718668576,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -149613,7 +152826,7 @@
     "Meatball": {
       "index": 12926,
       "owner_key": "Dj6LV9RwiDX1MsMYWup7Y5jEhSjxyeB7Ke2ovc5VKH95",
-      "balance": 82732,
+      "balance": 122418,
       "membership_expire_on": 1717713716,
       "next_cert_issuable_on": 1687568875,
       "certs_received": {
@@ -149637,9 +152850,9 @@
     "rjblein": {
       "index": 3299,
       "owner_key": "DjBK2wxHb6LURxpqA62cAJp7JGAUrwx1PYMqywVfg5kL",
-      "balance": 1377153,
+      "balance": 1416839,
       "membership_expire_on": 1723393423,
-      "next_cert_issuable_on": 1689089685,
+      "next_cert_issuable_on": 1696214929,
       "certs_received": {
         "nenuphar": 1703182765,
         "VincentDethier": 1742267631,
@@ -149667,34 +152880,31 @@
     "Lorraine83": {
       "index": 5626,
       "owner_key": "DjGNKvyWYkKo2c5KBZTxDCT22kV7WUGx9brqahDp1oKw",
-      "balance": 810303,
+      "balance": 1088989,
       "membership_expire_on": 1713312094,
-      "next_cert_issuable_on": 1686304977,
+      "next_cert_issuable_on": 1694275581,
       "certs_received": {
         "MilaChavez": 1736051370,
         "Unicorn": 1748629721,
+        "Carole26": 1757353608,
         "JeanLucCrcfx": 1735887821,
-        "dom34": 1693616236,
         "Mika83": 1747779284,
-        "Canardargent": 1693845436,
         "filosteo": 1708949315,
-        "tomval83": 1693845436,
         "FleurChenot": 1754889437,
-        "Elouane": 1693846281
+        "LilianeFaure": 1757366265
       }
     },
     "toutestjoli34": {
       "index": 6011,
       "owner_key": "DjGVTDE8j5A6NUb1VDuBvyxMRzWyNxvBVGiYSx4M92Hp",
-      "balance": 820075,
-      "membership_expire_on": 1693566241,
-      "next_cert_issuable_on": 1679619215,
+      "balance": 792285,
+      "membership_expire_on": 1725730321,
+      "next_cert_issuable_on": 1695086110,
       "certs_received": {
         "Natalia": 1743789193,
         "Lisa34": 1738299346,
         "Mmu34": 1736060989,
-        "Sophie_Jiyu": 1695584727,
-        "droopy": 1695756585,
+        "Mystic": 1758493705,
         "Helene-petiteriviere": 1714968466,
         "Libellule34": 1699514875,
         "montgo34": 1726150603,
@@ -149702,8 +152912,7 @@
         "SOLEIA": 1732682871,
         "Cat": 1709515543,
         "SIMONEANTONELLI": 1729122822,
-        "Petitcolin": 1696018989,
-        "Eauvive": 1695585011,
+        "Eauvive": 1757290453,
         "Elpheblanche": 1697574124,
         "deuxmains": 1711765456,
         "Luckyluke": 1735796714,
@@ -149713,7 +152922,7 @@
     "Vio": {
       "index": 7572,
       "owner_key": "DjKSCWMxuUoYvtUYSFpy788keaLjnUBSbYuY6eooVouo",
-      "balance": 444211,
+      "balance": 483897,
       "membership_expire_on": 1710271703,
       "next_cert_issuable_on": 1680259550,
       "certs_received": {
@@ -149732,7 +152941,7 @@
     "Danielle97450": {
       "index": 12919,
       "owner_key": "DjRgVqMPjek8GU4W5FRVD2KPcVd7amdwdSNSbE5tvoaV",
-      "balance": 285900,
+      "balance": 325586,
       "membership_expire_on": 1717818948,
       "next_cert_issuable_on": 1688937594,
       "certs_received": {
@@ -149763,9 +152972,9 @@
     "Karinette": {
       "index": 10717,
       "owner_key": "Dji5fbQ6tXRcaiWxAiscQokKHZWihrtRsdRmZfZ325a3",
-      "balance": 125338,
+      "balance": 172024,
       "membership_expire_on": 1698887750,
-      "next_cert_issuable_on": 1680678292,
+      "next_cert_issuable_on": 1696273713,
       "certs_received": {
         "Ecoeducacteur": 1746497868,
         "Luluzlb": 1733053099,
@@ -149779,7 +152988,7 @@
     "Menou26": {
       "index": 10009,
       "owner_key": "Djk1FhakvXUWUg3XiNtwqDvTmnFiE9JRhZw8K3GvZpYu",
-      "balance": 335052,
+      "balance": 374738,
       "membership_expire_on": 1697839165,
       "next_cert_issuable_on": 1668435786,
       "certs_received": {
@@ -149793,7 +153002,7 @@
     "Andy": {
       "index": 8805,
       "owner_key": "DjrnrpR5SqiPpC8oR7w2W6UNi6wz3F8AcUvPX8geKM3r",
-      "balance": 367188,
+      "balance": 406874,
       "membership_expire_on": 1724006900,
       "next_cert_issuable_on": 1672307855,
       "certs_received": {
@@ -149831,12 +153040,14 @@
     "Silvia": {
       "index": 13456,
       "owner_key": "DkDaDaCYuTC3YxLDMMmyS3GkxXri7WHk7cPkXSS3hdCn",
-      "balance": 102615,
+      "balance": 168613,
       "membership_expire_on": 1723244973,
-      "next_cert_issuable_on": 1693320333,
+      "next_cert_issuable_on": 1695612733,
       "certs_received": {
         "Kaikus": 1756107335,
+        "JOANETA": 1756602657,
         "catalinons": 1756193624,
+        "Thor": 1758770121,
         "MargalidaJeronia": 1756174473,
         "Tonibarri": 1756357900,
         "SoniaElena": 1756148324
@@ -149845,7 +153056,7 @@
     "MARIE-PIERRE": {
       "index": 9934,
       "owner_key": "DkEW5ZYnwF1PgiFeT3LRvNZyf14Tj1svnpZHTHqxSHiu",
-      "balance": 322050,
+      "balance": 419636,
       "membership_expire_on": 1723764079,
       "next_cert_issuable_on": 1692278479,
       "certs_received": {
@@ -149870,25 +153081,20 @@
     "Dionysos": {
       "index": 5754,
       "owner_key": "DkHKGspHYXL5uwB9nxNkEMSyGgbiwKUkianjyQeCbLjs",
-      "balance": 1213657,
+      "balance": 1253343,
       "membership_expire_on": 1709913440,
       "next_cert_issuable_on": 1684756261,
       "certs_received": {
-        "olione": 1693872176,
         "Solesan": 1700546203,
         "BricePassarotto": 1747800851,
-        "fredux": 1694662242,
         "Yukulele": 1710965447,
         "Lisediez": 1710818208,
         "CatherineWilkin": 1732750297,
         "RinoN": 1739513164,
-        "tierce": 1694066817,
         "oaktree": 1697945599,
-        "Calakendi": 1695950922,
         "GeneBe": 1703383155,
         "Eve": 1702068900,
         "AnemoneSyl": 1707532483,
-        "Patoun": 1695654141,
         "SimonLefort": 1704255924,
         "Juju": 1698714807,
         "Ninon914": 1714664851
@@ -149905,18 +153111,23 @@
     "Jhonnier": {
       "index": 13301,
       "owner_key": "DkKyByr6ctR469AsPogToYxWF7CW4XLdqbKRRyAZvGV1",
-      "balance": 11504,
+      "balance": 126958,
       "membership_expire_on": 1721588405,
-      "next_cert_issuable_on": 1693067358,
+      "next_cert_issuable_on": 1695216278,
       "certs_received": {
         "omm": 1754180591,
         "EstefaniaSainz": 1754148922,
+        "Meg": 1758474622,
+        "YagoMago": 1758589031,
         "IbonNakin": 1754191250,
+        "Aiz": 1759322621,
         "edubotaoo": 1754808312,
         "LeireArias": 1755558623,
         "Roberto_Oraa_79_DDYG": 1754118228,
         "LuFortes": 1754162995,
+        "Ekane": 1757537732,
         "Peter": 1754206382,
+        "IbanNikolai": 1756880963,
         "ABuenVivir": 1754189219
       }
     },
@@ -149931,9 +153142,9 @@
     "Salome971": {
       "index": 12034,
       "owner_key": "DkaAZN7nDGNZ3WHK6YZLZ92jNxALM7zLy6RUQi94Tz3r",
-      "balance": 175461,
+      "balance": 207147,
       "membership_expire_on": 1710378127,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693579304,
       "certs_received": {
         "Veroniquez": 1741938468,
         "Luluzlb": 1741938756,
@@ -149945,7 +153156,7 @@
     "luisdhoz": {
       "index": 10874,
       "owner_key": "DkcQzXJSQkRXneh3oDAki6rHf8wbCgzNfkn5sxEXeX6A",
-      "balance": 240189,
+      "balance": 279875,
       "membership_expire_on": 1702412743,
       "next_cert_issuable_on": 1689479104,
       "certs_received": {
@@ -149979,12 +153190,11 @@
     "Transchene": {
       "index": 707,
       "owner_key": "DkeWrnYEejAXzAADDY92Qv6UoAS5uJHW3kWLmkNYjATu",
-      "balance": 2458581,
+      "balance": 1906167,
       "membership_expire_on": 1699485835,
       "next_cert_issuable_on": 1668000520,
       "certs_received": {
         "Julia": 1730893878,
-        "1000i100": 1695280830,
         "Schinzy": 1738725149,
         "DanieleBachere": 1712879280,
         "Ginger": 1730656466,
@@ -149994,7 +153204,7 @@
     "Elisamary": {
       "index": 6678,
       "owner_key": "DkhDmrCyBDR1QTH2qohX3wUrEDKZh1VbobBAzM3Zwhqf",
-      "balance": 621329,
+      "balance": 661015,
       "membership_expire_on": 1701206993,
       "next_cert_issuable_on": 1669721393,
       "certs_received": {
@@ -150014,8 +153224,8 @@
     "Clement": {
       "index": 407,
       "owner_key": "DkxEVUZu4U14iVgHFtz8SJKZA7YMG78EJHL6sHv7Hnyc",
-      "balance": 1926267,
-      "membership_expire_on": 1696545464,
+      "balance": 1963797,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670291519,
       "certs_received": {
         "FarcyAdeline": 1731908240,
@@ -150029,9 +153239,9 @@
     "Amankosmos": {
       "index": 8298,
       "owner_key": "Dm2cEh8AfkTotsVSSVLNQPoBxYmYcnJpWF12jiJtrZjw",
-      "balance": 372602,
+      "balance": 337288,
       "membership_expire_on": 1710873076,
-      "next_cert_issuable_on": 1692707751,
+      "next_cert_issuable_on": 1695212912,
       "certs_received": {
         "DaniailesA": 1715152983,
         "JeanChristopheSekinger": 1755752686,
@@ -150041,47 +153251,39 @@
         "HereitiBernard": 1743605765,
         "JoW": 1715204755,
         "SamsFactory": 1715149064,
-        "eln": 1754721818
+        "eln": 1754721818,
+        "MargueriteD33": 1759115437
       }
     },
     "Alicia05": {
       "index": 5631,
       "owner_key": "Dm5QfVKAy5DVArKUDrSyVpe3Vg2dfsGPSzxY847tqxGt",
-      "balance": 747931,
+      "balance": 787617,
       "membership_expire_on": 1724787198,
-      "next_cert_issuable_on": 1693301598,
+      "next_cert_issuable_on": 1695434372,
       "certs_received": {
         "Katiecat": 1750030194,
         "Minouche": 1748738542,
-        "LilyroseMarcherat": 1693622245,
         "Laureline": 1749484899,
-        "Zephy": 1693704468,
+        "Zephy": 1757744271,
         "Maelline": 1749485105,
         "RemiLG": 1706682449,
         "gaellemarcherat": 1754349112,
-        "ChristopheRobine": 1749675011,
-        "SolennLG": 1693704468
+        "ChristopheRobine": 1749675011
       }
     },
     "melanie_zen974": {
       "index": 5671,
       "owner_key": "DmASmyPye5NAmHa6CFzt9TMwgkUXC2Wo6BZP7CdVLWWc",
-      "balance": 727410,
-      "membership_expire_on": 1699374369,
+      "balance": 742362,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1634469086,
-      "certs_received": {
-        "Tonychevalier974": 1694880507,
-        "HoareauJulianne974": 1694780575,
-        "Kiara974": 1694749524,
-        "Roswell": 1694749272,
-        "FredericAmany974": 1694787239,
-        "Francois974": 1694750730
-      }
+      "certs_received": {}
     },
     "Cath08": {
       "index": 7311,
       "owner_key": "DmJjs9gapZmtVrzX57kdS8M8JD7vqNB8gDWD5v3hrU9f",
-      "balance": 896613,
+      "balance": 936300,
       "membership_expire_on": 1705583989,
       "next_cert_issuable_on": 1680011586,
       "certs_received": {
@@ -150107,7 +153309,7 @@
     "flo45": {
       "index": 12872,
       "owner_key": "DmQK1CbVUBZqJxVyKUhMh1BGmRPJJG8PyqiF9bZGniJh",
-      "balance": 145440,
+      "balance": 185126,
       "membership_expire_on": 1718135982,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -150144,7 +153346,7 @@
     "Celline": {
       "index": 3452,
       "owner_key": "DmZWjF8FcRfa6JpxtvKsmZoPnzJ5eg2JVLMqrsbgCXEY",
-      "balance": 975670,
+      "balance": 1015356,
       "membership_expire_on": 1702437127,
       "next_cert_issuable_on": 1675392764,
       "certs_received": {
@@ -150159,9 +153361,9 @@
     "Remi70290": {
       "index": 9773,
       "owner_key": "DmhVxF3z3ekAcK3gjjW1RJeGGVU4JjhNH5DqVXFQ3Adm",
-      "balance": 339524,
+      "balance": 387110,
       "membership_expire_on": 1722705200,
-      "next_cert_issuable_on": 1690105800,
+      "next_cert_issuable_on": 1694477075,
       "certs_received": {
         "ChristopheG25": 1745383474,
         "Wiwi": 1727423672,
@@ -150205,17 +153407,14 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1644474787,
       "certs_received": {
-        "Princesse": 1694133596,
         "Laula": 1717967394,
-        "PatrickGilles": 1696095808,
-        "Nomadanne": 1693984434,
         "Alain-Plantes": 1717966873
       }
     },
     "IluhDharmi": {
       "index": 6152,
       "owner_key": "DnQZA5dQkDRP5tXKujC6LGJRJvFxcXpQxZzcJizAFMtB",
-      "balance": 460203,
+      "balance": 485889,
       "membership_expire_on": 1722658030,
       "next_cert_issuable_on": 1685031665,
       "certs_received": {
@@ -150241,30 +153440,38 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Paul-B": 1713243943,
-        "Spyou": 1696550270
+        "Paul-B": 1713243943
+      }
+    },
+    "Tienno": {
+      "index": 13515,
+      "owner_key": "DnrDgLfS31nVrTS7RHyNnbDuiG2B9tUHV9J9p9wogD1C",
+      "balance": 27278,
+      "membership_expire_on": 1725537284,
+      "next_cert_issuable_on": 1695039408,
+      "certs_received": {
+        "GautierEthan": 1757138902,
+        "Sandra": 1757141466,
+        "Smarxzie": 1757141466,
+        "ChantAloha": 1757098608,
+        "Hugwilder": 1757104323,
+        "Ciel": 1757130746
       }
     },
     "Eva": {
       "index": 5713,
       "owner_key": "Do1HRGyf5GGzPH2FBdrWPZrYpm3CFQBjTfc3E4bJqtNP",
-      "balance": 943706,
+      "balance": 968392,
       "membership_expire_on": 1711975952,
       "next_cert_issuable_on": 1674897681,
       "certs_received": {
         "AnneB": 1735410736,
-        "Topolinos": 1695233143,
         "Damien": 1705898416,
-        "Sophie": 1695536396,
         "JESS": 1717872002,
-        "lindanas": 1695269760,
-        "pepelepue17": 1695191337,
-        "Reumy": 1695198927,
         "EliseL": 1718430668,
         "MilieLibre": 1732183884,
         "Mik974": 1734406491,
         "Titi974": 1734406873,
-        "FrancoisNas": 1695272887,
         "Flo07": 1713263716,
         "Stephio": 1702201215,
         "Liliwasabi": 1719638786,
@@ -150277,9 +153484,9 @@
     "BeaOups81": {
       "index": 11425,
       "owner_key": "Do3CWdv3srzKCwSqTkQ3RnDRdYuyXwRuTZiPWdex9y9j",
-      "balance": 271621,
+      "balance": 311307,
       "membership_expire_on": 1706310550,
-      "next_cert_issuable_on": 1689405448,
+      "next_cert_issuable_on": 1696415124,
       "certs_received": {
         "MarieL81": 1738091490,
         "Chtmosaik": 1738121434,
@@ -150294,8 +153501,8 @@
     "Eleonore88": {
       "index": 9745,
       "owner_key": "Do5jNJDXmJdMGJKgWBnYUthsxJCG3A23NjAZw1s9tGde",
-      "balance": 661373,
-      "membership_expire_on": 1694286192,
+      "balance": 682843,
+      "membership_expire_on": 1727292681,
       "next_cert_issuable_on": 1688699527,
       "certs_received": {
         "MarineDR": 1731342722,
@@ -150307,7 +153514,8 @@
         "Audr3y": 1727891049,
         "Syldess": 1727489898,
         "OValReiki": 1727578354,
-        "Nono51": 1727576808
+        "Nono51": 1727576808,
+        "Martienne": 1757917863
       }
     },
     "jpd": {
@@ -150321,7 +153529,7 @@
     "JF62": {
       "index": 8927,
       "owner_key": "Do8ozSRYVd8wQyJXjRnt2Gnfx1WJAs8b1BeGm9hLGXgP",
-      "balance": 433319,
+      "balance": 473005,
       "membership_expire_on": 1720733286,
       "next_cert_issuable_on": 1670637656,
       "certs_received": {
@@ -150339,11 +153547,10 @@
     "poka": {
       "index": 61,
       "owner_key": "Do99s6wQR2JLfhirPdpAERSjNbmjjECzGxHNJMiNKT3P",
-      "balance": 1157683,
+      "balance": 1202709,
       "membership_expire_on": 1700347489,
       "next_cert_issuable_on": 1682076035,
       "certs_received": {
-        "kapis": 1693611561,
         "Martino": 1727828842,
         "tuxmain": 1740880520,
         "paidge": 1713405518,
@@ -150366,12 +153573,13 @@
     "LeonV": {
       "index": 3640,
       "owner_key": "Do9xDGd93EnFme5kL1NV1RmYSsQmvy1gTPGLNSMEAmrY",
-      "balance": 794431,
+      "balance": 834117,
       "membership_expire_on": 1701792050,
       "next_cert_issuable_on": 1693396828,
       "certs_received": {
         "AnnaM": 1714350472,
         "Lecuyer89": 1727065230,
+        "RobertW34": 1757064944,
         "ChristineAndre": 1707407388,
         "LilyroseMarcherat": 1709155643,
         "Bricedonnadieu26": 1707330605,
@@ -150389,7 +153597,7 @@
     "Claiwe": {
       "index": 7181,
       "owner_key": "DoDNfyRHx7UKJGt7fh8bbBKd5zM9r67XLmTj45HrZ2ex",
-      "balance": 469835,
+      "balance": 509521,
       "membership_expire_on": 1704645752,
       "next_cert_issuable_on": 1660972416,
       "certs_received": {
@@ -150417,18 +153625,20 @@
     "Benoa421": {
       "index": 10843,
       "owner_key": "DoRaxruBypMLGSKAuKcnHnzZwsZMDaTFz6wk5ELfprtu",
-      "balance": 285571,
+      "balance": 320357,
       "membership_expire_on": 1702591867,
-      "next_cert_issuable_on": 1693212075,
+      "next_cert_issuable_on": 1693734400,
       "certs_received": {
         "JanineBoitel": 1745477743,
         "cedre": 1734150752,
+        "Marianb": 1758223797,
         "Mam": 1749625116,
         "MayaDN": 1734153934,
         "ChristianMichelChampon": 1734167031,
         "Angele73": 1745734815,
         "raphyduck": 1750790770,
         "RomaneDN": 1734153934,
+        "iserunelosangE": 1756850207,
         "AnneBoisjoli": 1745699905,
         "Tito": 1734152815
       }
@@ -150436,7 +153646,7 @@
     "Valie77": {
       "index": 11322,
       "owner_key": "DobSy8ANowvKrcMJSXb8RuB3baB8Q1UbjdKGFkpZU1uP",
-      "balance": 360975,
+      "balance": 400661,
       "membership_expire_on": 1705277189,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -150470,15 +153680,16 @@
     "Daniele8": {
       "index": 10797,
       "owner_key": "DonAUCnhwrAtv2cENdarKbBRgyfJDs7jhzMwi74HSYzB",
-      "balance": 373083,
-      "membership_expire_on": 1700259481,
-      "next_cert_issuable_on": 1690217103,
+      "balance": 406769,
+      "membership_expire_on": 1726792829,
+      "next_cert_issuable_on": 1696262494,
       "certs_received": {
         "StephanieLumiere": 1747804285,
         "PhilippeLafontaine": 1742107775,
         "feesfleurs": 1739933919,
         "Kryszu": 1733867516,
         "MarieMas": 1754498664,
+        "Augusta24": 1757866915,
         "Barbatruc": 1747187907,
         "Diane": 1742795878,
         "IsadeSpa": 1733893655,
@@ -150498,9 +153709,9 @@
     "Myriam97410": {
       "index": 5920,
       "owner_key": "DovEkiVVZFfGNUBerwabRtU4SVTD35hZU1J5doXf5uGq",
-      "balance": 837900,
+      "balance": 921086,
       "membership_expire_on": 1719307071,
-      "next_cert_issuable_on": 1688929885,
+      "next_cert_issuable_on": 1694404358,
       "certs_received": {
         "CelineMinamba974": 1698193448,
         "absalon2": 1700848376,
@@ -150532,6 +153743,7 @@
         "Flo05": 1739296315,
         "Militaire19977": 1720981549,
         "Danielle97450": 1750208953,
+        "mdanielle97430": 1755196743,
         "Reine97418": 1736362941,
         "Lea974": 1724425322,
         "Bastien97432": 1718047604,
@@ -150544,7 +153756,8 @@
         "Eddy974": 1697550406,
         "Marcus_974": 1731076041,
         "FredericAmany974": 1697418213,
-        "Ginee974": 1737838569
+        "Ginee974": 1737838569,
+        "Wendy97418": 1758121225
       }
     },
     "Laurence971": {
@@ -150565,7 +153778,7 @@
     "ANLO": {
       "index": 6926,
       "owner_key": "DpBwhM7eocmUJwYyrg5rYmuy2ovp92KhTiCcBP7zPZk8",
-      "balance": 597524,
+      "balance": 637210,
       "membership_expire_on": 1707919274,
       "next_cert_issuable_on": 1689292660,
       "certs_received": {
@@ -150581,7 +153794,7 @@
     "ElricdeBelen": {
       "index": 10897,
       "owner_key": "DpERWZ9KuK1MZpKdTZQMjKhphZLzMuTvrg3ZTqBS2SXi",
-      "balance": 138240,
+      "balance": 125926,
       "membership_expire_on": 1702741727,
       "next_cert_issuable_on": 1687240908,
       "certs_received": {
@@ -150593,10 +153806,12 @@
         "Scilla": 1743904333,
         "Mika83": 1734402816,
         "Chanchan": 1734634947,
+        "Tchara06": 1756921807,
         "tomval83": 1736229115,
         "DanieleSenegasTrobadorenca": 1734422360,
         "Hdsaf": 1734381937,
-        "Val83": 1734410259
+        "Val83": 1734410259,
+        "ElvireDracenie": 1757045572
       }
     },
     "LiberoSalvo": {
@@ -150654,29 +153869,32 @@
     "EDiet": {
       "index": 7690,
       "owner_key": "DpvB2bQfn7KiM5gdnFuR3jEYt2KzPs9D8bsupAnFoGvd",
-      "balance": 527735,
+      "balance": 561999,
       "membership_expire_on": 1708300010,
-      "next_cert_issuable_on": 1693444450,
+      "next_cert_issuable_on": 1696258723,
       "certs_received": {
+        "Bil26": 1758952000,
         "FrankMonmagnon": 1712990917,
         "Marie-Claire": 1712890024,
         "pat26": 1739228814,
         "Metark": 1712967298,
         "Funny": 1713036530,
         "Luviam": 1756230619,
-        "FranckVal": 1713040221
+        "FranckVal": 1713040221,
+        "BenoitC54": 1759456595
       }
     },
     "Rahhui": {
       "index": 11537,
       "owner_key": "Dq4UGEwzSWhNVXV7TQH9kgpncmSbCSBoGJgTRWyMkLwY",
-      "balance": 325556,
+      "balance": 327492,
       "membership_expire_on": 1707143723,
-      "next_cert_issuable_on": 1693363262,
+      "next_cert_issuable_on": 1696604837,
       "certs_received": {
         "SandrineMala": 1745212000,
         "Temarante": 1738647572,
         "FatimaDonoso": 1755931690,
+        "FranciscoVenda": 1758348875,
         "Minita": 1753093248,
         "MagusAmadeus": 1749252577,
         "Judit137": 1748760673,
@@ -150700,6 +153918,7 @@
         "DivinaC": 1753256188,
         "criscoutinho": 1752255261,
         "JoseGoncalvesPinto": 1741226182,
+        "DeboraTavares": 1758348875,
         "pedroponte": 1748548303,
         "SaoSampaio": 1746649315,
         "diogocsc": 1748759215,
@@ -150707,6 +153926,7 @@
         "DavidJorge": 1750545514,
         "SandraHeleno": 1744611846,
         "PenaBranca": 1755058635,
+        "Kian": 1759442612,
         "ManuelSoares": 1746598911,
         "ChrisAll": 1739085473
       }
@@ -150714,10 +153934,11 @@
     "Orakulo": {
       "index": 10390,
       "owner_key": "Dq7C7XJnXwxcz3qHmr32YLDhGR3auYFnBUyCVwpvbN43",
-      "balance": 160604,
+      "balance": 11590,
       "membership_expire_on": 1724419806,
-      "next_cert_issuable_on": 1693375167,
+      "next_cert_issuable_on": 1695136315,
       "certs_received": {
+        "Glorieta": 1756958893,
         "EstefaniaSainz": 1755987087,
         "Lurtxu": 1731472420,
         "Meg": 1754716599,
@@ -150725,6 +153946,7 @@
         "AlGabal": 1731441056,
         "MAIKA": 1731442488,
         "edubotaoo": 1737514215,
+        "Jokin": 1757423038,
         "Navarrovi": 1741471040,
         "EduZapping": 1731442488,
         "BruBraveLez": 1731443662
@@ -150749,7 +153971,7 @@
     "Lucharbour": {
       "index": 5250,
       "owner_key": "DqFkyxzKyy74jDN7QWDWD3LHYGLeyQnxSXJCKEEuvWZu",
-      "balance": 750953,
+      "balance": 790639,
       "membership_expire_on": 1713706024,
       "next_cert_issuable_on": 1656102622,
       "certs_received": {
@@ -150763,7 +153985,7 @@
     "ManuMarguerite": {
       "index": 11079,
       "owner_key": "DqZvLMYDJhh8Tcw4NsjVDKw8nPzkkZZLNY2wy5X7Vde3",
-      "balance": 222663,
+      "balance": 229149,
       "membership_expire_on": 1704155839,
       "next_cert_issuable_on": 1692370441,
       "certs_received": {
@@ -150803,7 +154025,7 @@
     "PascalinePacati": {
       "index": 7227,
       "owner_key": "DqyuN1PcSRySXJPY9ePHN9nqTnKeFhpNwctVcgjfbM96",
-      "balance": 516405,
+      "balance": 556091,
       "membership_expire_on": 1703755775,
       "next_cert_issuable_on": 1667825008,
       "certs_received": {
@@ -150825,7 +154047,7 @@
     "PaulinePolka": {
       "index": 10569,
       "owner_key": "DqyyAN6T9TQ52ERd91gQyEtNU2DouyBKQMHcyni2RC92",
-      "balance": 156351,
+      "balance": 140037,
       "membership_expire_on": 1699659056,
       "next_cert_issuable_on": 1689583582,
       "certs_received": {
@@ -150841,7 +154063,7 @@
     "NadiaDonceel": {
       "index": 11614,
       "owner_key": "Dr5cM23PZtjzdXkuwMgTecJF1Nihg2ro7AYJGngBUPpK",
-      "balance": 318199,
+      "balance": 357885,
       "membership_expire_on": 1703027280,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -150858,7 +154080,7 @@
     "MovingPT": {
       "index": 13231,
       "owner_key": "DrQaLNYy99mmQ1dsBQtK39TDHYFt5BSTmNc5GR1jKWow",
-      "balance": 158124,
+      "balance": 23294,
       "membership_expire_on": 1718061022,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -150867,6 +154089,7 @@
         "VivienProuvot": 1753293580,
         "Fred": 1752629715,
         "SyoulAnuanua": 1750544660,
+        "hypericum": 1758000607,
         "SergeUme": 1753034870
       }
     },
@@ -150879,14 +154102,13 @@
       "certs_received": {
         "Libertiste": 1733085174,
         "Caroleluciole": 1697693946,
-        "Cat": 1749775977,
-        "Oce": 1695070255
+        "Cat": 1749775977
       }
     },
     "TheoLeo": {
       "index": 10175,
       "owner_key": "Drd4zN1xRhxxxyadYUjR26VxF1wnpe1XcFnT3fEBTsWQ",
-      "balance": 350695,
+      "balance": 390381,
       "membership_expire_on": 1698171425,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -150900,7 +154122,7 @@
     "Annebelair": {
       "index": 8571,
       "owner_key": "DreKMWwFNAYBVuzbu3nBs5hoaRW96BgymNhUe7vfgix6",
-      "balance": 626191,
+      "balance": 665877,
       "membership_expire_on": 1718918200,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -150915,17 +154137,15 @@
     "jnaroun": {
       "index": 1814,
       "owner_key": "DrhPKtJzuj5eNYsLxN9YYd1SPtTx3A2RnrVggcbrTFNT",
-      "balance": 1171024,
+      "balance": 1210710,
       "membership_expire_on": 1711594299,
-      "next_cert_issuable_on": 1689262250,
+      "next_cert_issuable_on": 1694244526,
       "certs_received": {
-        "Aude49": 1694346407,
         "Zazou": 1699547954,
-        "LuciaKorosiova": 1696582719,
         "caprose": 1700009753,
         "AlainLeThomas": 1736273745,
-        "TaaniTheophile": 1695839432,
-        "Jean": 1700723347,
+        "TaaniTheophile": 1758584859,
+        "Jean": 1758585780,
         "DominiqueRoudiere": 1733866900
       }
     },
@@ -150940,7 +154160,7 @@
     "Taiko": {
       "index": 12822,
       "owner_key": "DruvXU2ACXo4feLLKYkWkpHjQr191fm4mhx1bsawDhi9",
-      "balance": 73748,
+      "balance": 113434,
       "membership_expire_on": 1717521109,
       "next_cert_issuable_on": 1686189494,
       "certs_received": {
@@ -150954,7 +154174,7 @@
     "Galuel": {
       "index": 16,
       "owner_key": "Ds1z6Wd8hNTexBoo3LVG2oXLZN4dC9ZWxoWwnDbF1NEW",
-      "balance": 1033337,
+      "balance": 1073023,
       "membership_expire_on": 1708117097,
       "next_cert_issuable_on": 1687943965,
       "certs_received": {
@@ -150966,7 +154186,6 @@
         "fatimaespoir": 1712366812,
         "Thatoo": 1744335677,
         "gerard94": 1739674697,
-        "Emille974": 1693626787,
         "Hdsaf": 1724777117,
         "Profil": 1753044648
       }
@@ -150974,7 +154193,7 @@
     "lilasoleil": {
       "index": 12617,
       "owner_key": "Ds5ip8nWvQxAGvu1yqwkW9JMTtfhEHwwvB8sDtLXMeCS",
-      "balance": 118548,
+      "balance": 158234,
       "membership_expire_on": 1712696225,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -151002,23 +154221,25 @@
     "Fred": {
       "index": 879,
       "owner_key": "DsEx1pS33vzYZg4MroyBV9hCw98j1gtHEhwiZ5tK7ech",
-      "balance": 2687611,
-      "membership_expire_on": 1717251102,
-      "next_cert_issuable_on": 1692624640,
+      "balance": 2785325,
+      "membership_expire_on": 1728173707,
+      "next_cert_issuable_on": 1695103290,
       "certs_received": {
         "Eiutim": 1698796473,
         "ClaireMonde": 1698301037,
         "GUL40_Fr1": 1729297359,
         "Junouille": 1719745873,
+        "HugoTrentesaux": 1757093370,
         "LionLDouNIo": 1752630416,
         "nathanaelf": 1747331519,
         "CORBIERESchristine": 1726090626,
         "Pac": 1704232901,
         "Pini": 1751166998,
         "darben87": 1734936924,
-        "Pascale72": 1694457697,
+        "Pascale72": 1756884355,
         "CharlesCros": 1748369608,
         "Aneuf": 1720986573,
+        "boilloszekfamily": 1759787180,
         "FredTahiti": 1726696423,
         "ChristopheRobine": 1725325891,
         "scanlegentil": 1738624589,
@@ -151034,7 +154255,6 @@
         "SyoulAnuanua": 1726594007,
         "ofontes": 1755549887,
         "Tiffany": 1739940308,
-        "ValyChev": 1694227138,
         "VitoAndersen": 1745938647,
         "FredB": 1721458388
       }
@@ -151042,7 +154262,7 @@
     "Ysa1471": {
       "index": 7127,
       "owner_key": "DsG5SgTnrATVobf2Z5mqT92D3472kPZGvV7SBxVhiv7v",
-      "balance": 589145,
+      "balance": 628831,
       "membership_expire_on": 1702901720,
       "next_cert_issuable_on": 1679738022,
       "certs_received": {
@@ -151064,9 +154284,9 @@
     "YATO": {
       "index": 13444,
       "owner_key": "DsHYputD7RWjYQmrsG2HXmGoCiVPJGTwjPUWXbL6mSvN",
-      "balance": 106920,
+      "balance": 516606,
       "membership_expire_on": 1724524510,
-      "next_cert_issuable_on": 1693533398,
+      "next_cert_issuable_on": 1694415782,
       "certs_received": {
         "Cristal38": 1756157785,
         "Corine": 1756172118,
@@ -151095,7 +154315,7 @@
     "EricLGM": {
       "index": 10463,
       "owner_key": "DsMZgUtKuqNSCcDPQkzDt3ZTdYpo7BkKNof2Rsn35ZZh",
-      "balance": 302164,
+      "balance": 341850,
       "membership_expire_on": 1699721778,
       "next_cert_issuable_on": 1669639671,
       "certs_received": {
@@ -151114,15 +154334,12 @@
       "balance": 400768,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "PatrickGilles": 1696095808,
-        "CorentinLMR": 1695835271
-      }
+      "certs_received": {}
     },
     "Liebamiranda": {
       "index": 9321,
       "owner_key": "DsQ8mbCy4N7sVB4TZvNKraZ7UgjS8GBsMStDb1zk3Cjy",
-      "balance": 235124,
+      "balance": 244460,
       "membership_expire_on": 1718154443,
       "next_cert_issuable_on": 1688020362,
       "certs_received": {
@@ -151173,7 +154390,7 @@
     "Alinelm": {
       "index": 12177,
       "owner_key": "DsWSTDC4X2cRoZBwa4LUX66j8L9qMfPTbyW1hfbQMRAh",
-      "balance": 164472,
+      "balance": 204158,
       "membership_expire_on": 1711757534,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -151189,7 +154406,7 @@
     "saray": {
       "index": 11127,
       "owner_key": "Dsd7SQFYhkchfsB8M3kK5TQoPyvdHdJfdaSyG4euo9uq",
-      "balance": 86200,
+      "balance": 71186,
       "membership_expire_on": 1704512144,
       "next_cert_issuable_on": 1687283866,
       "certs_received": {
@@ -151217,8 +154434,8 @@
     "clo": {
       "index": 9558,
       "owner_key": "Dsnsa5kSpTftutg2et7MLPyuNvWL4GCDVbJLZ1EVPg3K",
-      "balance": 369983,
-      "membership_expire_on": 1694793258,
+      "balance": 386003,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1663499790,
       "certs_received": {
         "will46": 1726542259,
@@ -151253,18 +154470,14 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1643933140,
       "certs_received": {
-        "Truca": 1695408097,
         "Xisca": 1707116127,
-        "JOANETA": 1704486436,
-        "Brahmaya": 1693790507,
-        "Pasteta": 1693613557,
-        "eno": 1693613557
+        "JOANETA": 1704486436
       }
     },
     "Guerrier9": {
       "index": 2847,
       "owner_key": "DsrryNVBEFKQbHF8kZFWdLtk3PnvGZUirTKRLrQ7PcCX",
-      "balance": 109827,
+      "balance": 0,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {}
@@ -151272,12 +154485,13 @@
     "CTL": {
       "index": 4795,
       "owner_key": "Dsz43SpLEBn7THooyWyxsuy1kTkkjoqXpZVdug23hRTh",
-      "balance": 394663,
-      "membership_expire_on": 1699962104,
-      "next_cert_issuable_on": 1693299985,
+      "balance": 348749,
+      "membership_expire_on": 1726417685,
+      "next_cert_issuable_on": 1696648095,
       "certs_received": {
         "Benvaudeurs": 1708291282,
         "rockwater": 1721667922,
+        "Vanthegreat": 1757469538,
         "Aeladaulne": 1721843149,
         "ChristopheCompere": 1752016470,
         "NoraMaela": 1701104768,
@@ -151287,6 +154501,7 @@
         "amandinehinnekens": 1721193701,
         "BobMarchand": 1719887166,
         "MarieFrance": 1723848281,
+        "MarcelDoppagne": 1758484304,
         "Magli": 1723299645,
         "Numerosympa": 1725160490,
         "phil3455": 1715013405,
@@ -151303,11 +154518,13 @@
         "LaurenceM": 1723328338,
         "Vio": 1728346368,
         "Colaga": 1722469090,
+        "NatNaelle": 1757453771,
         "jipitou": 1721583597,
         "Mireilleplantessauvages": 1728989501,
         "pampermacole": 1701725542,
         "AnemoneSyl": 1724025702,
-        "Stelzchantal": 1720684282
+        "Stelzchantal": 1720684282,
+        "iafu": 1756429109
       }
     },
     "Gabriela": {
@@ -151323,9 +154540,9 @@
     "Pogona": {
       "index": 6652,
       "owner_key": "Dt8cvuTrb9MmbuXRCtmWvJ2yuuX2AjA4BWjkNYyFKLG3",
-      "balance": 197752,
-      "membership_expire_on": 1700256901,
-      "next_cert_issuable_on": 1689827396,
+      "balance": 83438,
+      "membership_expire_on": 1727620522,
+      "next_cert_issuable_on": 1696241809,
       "certs_received": {
         "NaneDeProvence": 1740959484,
         "Volatiana": 1734295097,
@@ -151344,10 +154561,25 @@
         "tatinetteb": 1705267587
       }
     },
+    "MARIEFRANCE": {
+      "index": 13625,
+      "owner_key": "DtEpmM4hL8wEzKa9kAx3WtPoFwvdBjVowACZgJpqnGJR",
+      "balance": 31448,
+      "membership_expire_on": 1725396699,
+      "next_cert_issuable_on": 1696322538,
+      "certs_received": {
+        "corinneclem": 1758420243,
+        "Katiecat": 1758477298,
+        "NadineRzd": 1758420952,
+        "Mesamours84": 1758270636,
+        "ChaGaia5926": 1758301724,
+        "Alicia05": 1758477572
+      }
+    },
     "Afrikuki": {
       "index": 12324,
       "owner_key": "DtF22K4QT8Hxj8hQ9629HhXbX8Mqp5zPb3vQsBw4ntqm",
-      "balance": 91488,
+      "balance": 131174,
       "membership_expire_on": 1712802783,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -151370,9 +154602,9 @@
     "SylvieM35": {
       "index": 7369,
       "owner_key": "DtJcU8stxzhLXB8nsbEzwFAHSBqRpC6sZUSZV62egLDa",
-      "balance": 380583,
+      "balance": 399269,
       "membership_expire_on": 1702695529,
-      "next_cert_issuable_on": 1690097874,
+      "next_cert_issuable_on": 1695020032,
       "certs_received": {
         "Rebirth35": 1743280827,
         "Francoeur": 1708031736,
@@ -151381,6 +154613,7 @@
         "Keriadenn": 1707542310,
         "Diessanne": 1752214412,
         "DomVie": 1710804729,
+        "Pascal35800": 1758673851,
         "CarolAmethyste": 1720668249,
         "CatCats": 1733788201,
         "Smart35": 1734149858,
@@ -151392,7 +154625,7 @@
     "Kikeloyola": {
       "index": 10308,
       "owner_key": "DtKKRggXsZZd2H4CR7uwyAAy3qPv5nVroF9hbxQBjDHK",
-      "balance": 377337,
+      "balance": 415023,
       "membership_expire_on": 1699475131,
       "next_cert_issuable_on": 1678515377,
       "certs_received": {
@@ -151408,9 +154641,9 @@
     "Michel1955": {
       "index": 7763,
       "owner_key": "DtPiQBoJbjCdku5mWkzoohGBF7LrqTxM6VfTiZgJL8cA",
-      "balance": 514106,
+      "balance": 553792,
       "membership_expire_on": 1710350365,
-      "next_cert_issuable_on": 1692762734,
+      "next_cert_issuable_on": 1695974908,
       "certs_received": {
         "Katou": 1713111139,
         "Gerg": 1712952517,
@@ -151425,22 +154658,27 @@
     "hazed": {
       "index": 128,
       "owner_key": "DtTUqkSwAVUuxqx3ohx2zceehXaSkoPx6t61MeYA4Dqr",
-      "balance": 1115647,
-      "membership_expire_on": 1701344634,
-      "next_cert_issuable_on": 1692261133,
+      "balance": 1009933,
+      "membership_expire_on": 1728234420,
+      "next_cert_issuable_on": 1696214929,
       "certs_received": {
         "LoupBlanc": 1725332473,
         "DanWF": 1717986198,
         "FenderChristophe": 1717971366,
+        "Dorf67": 1758160260,
         "batata": 1732056050,
         "ENO": 1725767723,
         "FabieChou": 1733696577,
         "Cyanescens": 1737794586,
         "kalimheros": 1715592659,
+        "feedbefore": 1758046932,
         "Als_67": 1733382160,
         "Natheidi": 1713758432,
+        "Manebaz": 1759790917,
         "seb2nor12": 1735186233,
+        "Simone": 1759821469,
         "FranZi": 1712178725,
+        "Sebel1": 1758155737,
         "LaBriseglace": 1737146649,
         "hypericum": 1710643543,
         "BertrandCGO": 1707292114,
@@ -151456,7 +154694,7 @@
     "MariaLabru": {
       "index": 11189,
       "owner_key": "DtUuT7wniLoPdHmT26jbPQ91MA9BVK2XcKNqoCycZuiN",
-      "balance": 152255,
+      "balance": 191941,
       "membership_expire_on": 1705015912,
       "next_cert_issuable_on": 1680519877,
       "certs_received": {
@@ -151475,9 +154713,9 @@
     "Escoufle": {
       "index": 11167,
       "owner_key": "DtcyezhtdWZNVZe2sARBGm2jus8XUqttckbaubxMH5B8",
-      "balance": 242532,
+      "balance": 281218,
       "membership_expire_on": 1702588441,
-      "next_cert_issuable_on": 1690431135,
+      "next_cert_issuable_on": 1695727548,
       "certs_received": {
         "LaGoudale": 1736136319,
         "Chrisbgs": 1736212971,
@@ -151492,9 +154730,9 @@
     "ChantAloha": {
       "index": 7159,
       "owner_key": "DteswPziWu3jYbZ3TQivikVzuQokTYtvowbAWQsepYM5",
-      "balance": 11660,
-      "membership_expire_on": 1700229334,
-      "next_cert_issuable_on": 1692762233,
+      "balance": 29738,
+      "membership_expire_on": 1726610631,
+      "next_cert_issuable_on": 1696562335,
       "certs_received": {
         "Stejulemont": 1709180196,
         "Alfybe": 1709249167,
@@ -151528,9 +154766,9 @@
     "Christie21160": {
       "index": 10784,
       "owner_key": "DtgZN8w5PVzzb5rNYETPPccyfzYTwQ8XLuXPznhdCegq",
-      "balance": 235243,
+      "balance": 159629,
       "membership_expire_on": 1702235766,
-      "next_cert_issuable_on": 1679403069,
+      "next_cert_issuable_on": 1696253245,
       "certs_received": {
         "LeDemineur21": 1733817326,
         "Elorac": 1733793642,
@@ -151543,7 +154781,7 @@
     "AudreyWhatt": {
       "index": 10198,
       "owner_key": "Dtw6JLtzXViBkWJGGoerM2BuWYgVMsTJzCuVL1n78MPu",
-      "balance": 160555,
+      "balance": 200241,
       "membership_expire_on": 1698788668,
       "next_cert_issuable_on": 1677557785,
       "certs_received": {
@@ -151561,8 +154799,8 @@
     "Maite5": {
       "index": 4251,
       "owner_key": "DtzrTrLF1QhRnneJbRgksQmUR3VQwCYkUkt3G61SDthN",
-      "balance": 934750,
-      "membership_expire_on": 0,
+      "balance": 950436,
+      "membership_expire_on": 1725060096,
       "next_cert_issuable_on": 1677418633,
       "certs_received": {
         "Mike": 1708998266,
@@ -151575,7 +154813,7 @@
     "Cath": {
       "index": 4256,
       "owner_key": "Du1A1BSMLHrsKsyqDaw6atuLzFarwpr6NGEj88VpBn3M",
-      "balance": 872963,
+      "balance": 974792,
       "membership_expire_on": 1715727032,
       "next_cert_issuable_on": 1692263350,
       "certs_received": {
@@ -151591,6 +154829,7 @@
         "Faquantharmonie": 1731182251,
         "Tifenn": 1736925529,
         "Chrissbrl": 1733336832,
+        "veracachan": 1759335248,
         "Badiane94": 1728160861,
         "Myka": 1704426412,
         "RadissonMarie": 1736023401,
@@ -151601,9 +154840,9 @@
     "AgnesdArpajon": {
       "index": 8615,
       "owner_key": "Du66Au8g16gC8YJPcEAYx14J35m4wYETLcCEqDNrrsNQ",
-      "balance": 306572,
+      "balance": 325776,
       "membership_expire_on": 1707325767,
-      "next_cert_issuable_on": 1690886217,
+      "next_cert_issuable_on": 1694141366,
       "certs_received": {
         "Leprofdebatterie": 1719042879,
         "quiligus": 1719087514,
@@ -151658,7 +154897,7 @@
     "Grace": {
       "index": 4140,
       "owner_key": "DuTtmqYCgekX2vBGYYegqgvuEmvT8bZPJkkCbBeMWoLf",
-      "balance": 913664,
+      "balance": 888350,
       "membership_expire_on": 1707861079,
       "next_cert_issuable_on": 1670312422,
       "certs_received": {
@@ -151668,6 +154907,7 @@
         "Marianoconcentrado": 1730358025,
         "MaraVilla": 1728002750,
         "Quantumsinergy": 1731782844,
+        "JerryBB": 1756818191,
         "NancyOrtiz": 1710148551,
         "elmau": 1721011595,
         "cpriou11": 1739232159,
@@ -151684,7 +154924,7 @@
     "Murielle": {
       "index": 12048,
       "owner_key": "DuW1uEvtiCm7yQ4nhCR88ATNinkCacrLHTYD5TwLVyqz",
-      "balance": 186202,
+      "balance": 225888,
       "membership_expire_on": 1708482562,
       "next_cert_issuable_on": 1681320498,
       "certs_received": {
@@ -151699,7 +154939,7 @@
     "Mathys": {
       "index": 12680,
       "owner_key": "DuYUwskSpoSSoPmDNJYttD2MTw81kn31rkoEuLAamCJZ",
-      "balance": 8408,
+      "balance": 16642,
       "membership_expire_on": 1713761712,
       "next_cert_issuable_on": 1691579810,
       "certs_received": {
@@ -151713,13 +154953,14 @@
     "AnneLaure971": {
       "index": 13045,
       "owner_key": "DudLsRjPBQ7Q7nYiztwSTqXK6h83iR2bGVC9HzUS96ea",
-      "balance": 117848,
+      "balance": 144834,
       "membership_expire_on": 1719679537,
-      "next_cert_issuable_on": 1689945456,
+      "next_cert_issuable_on": 1693733336,
       "certs_received": {
         "Miriam3": 1751335628,
         "SalinJL": 1751241117,
         "Perrine971": 1751368608,
+        "Soum86": 1756799520,
         "CaroleM971": 1751248048,
         "Brig": 1751366652,
         "Corinnedeshaies": 1751242823,
@@ -151746,7 +154987,7 @@
     "Toki": {
       "index": 9044,
       "owner_key": "DuhnZUivS2xxYHb1jzKgx4Zu97ADfyhvCKtghAAD59dM",
-      "balance": 92234,
+      "balance": 125420,
       "membership_expire_on": 1716810823,
       "next_cert_issuable_on": 1690600505,
       "certs_received": {
@@ -151771,7 +155012,7 @@
     "Helder": {
       "index": 11266,
       "owner_key": "DukkVGptp4SUyffJisJWUc8M3Nfz1tQiHQTS8rvuu4GA",
-      "balance": 108774,
+      "balance": 135644,
       "membership_expire_on": 1705264257,
       "next_cert_issuable_on": 1683716867,
       "certs_received": {
@@ -151789,14 +155030,12 @@
       "balance": 1233741,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1635562412,
-      "certs_received": {
-        "domenechmanu": 1695310563
-      }
+      "certs_received": {}
     },
     "ShantiPraviira": {
       "index": 9003,
       "owner_key": "Dv4UjCAyuQFRKoc49FkjRYYV6jJZay7rEzCSKKnGX2xb",
-      "balance": 99892,
+      "balance": 136578,
       "membership_expire_on": 1715871054,
       "next_cert_issuable_on": 1689564718,
       "certs_received": {
@@ -151826,7 +155065,7 @@
     "Javier_tozudo": {
       "index": 9975,
       "owner_key": "Dv8w6bX6PXYyNMusnTAEsD74iGpwgiTGc3YPMyg3WEbW",
-      "balance": 268512,
+      "balance": 308198,
       "membership_expire_on": 1697637319,
       "next_cert_issuable_on": 1671547314,
       "certs_received": {
@@ -151841,7 +155080,7 @@
     "CoeurGaia90": {
       "index": 8950,
       "owner_key": "DvBfMGNh9hpkr7gWwm5VLxbAdKoR7Na6RBJdg1xdVwGj",
-      "balance": 429692,
+      "balance": 469378,
       "membership_expire_on": 1719268732,
       "next_cert_issuable_on": 1689781056,
       "certs_received": {
@@ -151866,23 +155105,26 @@
     "LOLOBOBO11": {
       "index": 3034,
       "owner_key": "DvCD7bn9quQJpmfPEsq1Y3fRDPAezyimkMoJvKyCVFGF",
-      "balance": 381516,
+      "balance": 421202,
       "membership_expire_on": 1700062060,
-      "next_cert_issuable_on": 1676292336,
+      "next_cert_issuable_on": 1694141366,
       "certs_received": {
         "nashira": 1704473455,
+        "Choupinette": 1758082095,
         "LauQui": 1702173160,
         "Danahe": 1697861239,
         "OlivierRed": 1704756566,
         "Anita": 1736714639,
         "Latinalize333": 1704431979,
-        "HenriRGN": 1736714639
+        "HenriRGN": 1736714639,
+        "Guerriere8": 1758522660,
+        "Monok": 1758082095
       }
     },
     "FredericMiquel": {
       "index": 3599,
       "owner_key": "DvPrYHvsa3QKRXpB3ULNvqGK8d2hJ9HfL9B7FCKvRhs7",
-      "balance": 846119,
+      "balance": 885805,
       "membership_expire_on": 1700082504,
       "next_cert_issuable_on": 1688990253,
       "certs_received": {
@@ -151902,7 +155144,7 @@
     "Artetklo": {
       "index": 10888,
       "owner_key": "DvaKBJSDaxXvE1Knk1uRHS9pdqdNGGuRQmPYwRyRSTY8",
-      "balance": 340624,
+      "balance": 380310,
       "membership_expire_on": 1702146243,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -151916,7 +155158,7 @@
     "youlens38": {
       "index": 8250,
       "owner_key": "DvcNa71TPhTAn8Vwf1RAqrQ3J9FsU3SyML4MgSTTvjtd",
-      "balance": 488746,
+      "balance": 528432,
       "membership_expire_on": 1714784044,
       "next_cert_issuable_on": 1656416198,
       "certs_received": {
@@ -151938,14 +155180,15 @@
     "CathD": {
       "index": 10203,
       "owner_key": "Dvu4TLan2FQuWgcHaCBaurDkHYwtuvbVXR3XLjhx94dm",
-      "balance": 48982,
-      "membership_expire_on": 1698968028,
-      "next_cert_issuable_on": 1693522026,
+      "balance": 493468,
+      "membership_expire_on": 1725878122,
+      "next_cert_issuable_on": 1695954617,
       "certs_received": {
         "HeleneBaconnier": 1730683980,
         "lydiemdb": 1730689157,
         "Hebou": 1733806052,
         "PierrePierreR": 1730714055,
+        "FredTahiti": 1757381808,
         "Gaelducausse": 1730682905,
         "LydieG": 1747071194,
         "SarahWEISS": 1730699815,
@@ -151956,7 +155199,7 @@
     "mdanielle97430": {
       "index": 13046,
       "owner_key": "DvvMi9EFbJRNfY1XfNpjRGrwq3bb2cVy51hVYgp8fuxN",
-      "balance": 164148,
+      "balance": 170834,
       "membership_expire_on": 1718194666,
       "next_cert_issuable_on": 1692153855,
       "certs_received": {
@@ -151974,7 +155217,7 @@
     "BenjiMarti": {
       "index": 5208,
       "owner_key": "DvwmeMC4Vr7cv81fFka1jKzWfv4srGSuEzBwmxuRxUFD",
-      "balance": 686909,
+      "balance": 726595,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1684458894,
       "certs_received": {
@@ -152001,7 +155244,7 @@
     "Natou13": {
       "index": 8911,
       "owner_key": "Dw25JK7kNLMMEc3SambghiKHua7DxU5QHxeDuAkJN5nk",
-      "balance": 382145,
+      "balance": 421831,
       "membership_expire_on": 1719024708,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -152016,8 +155259,8 @@
     "Marieboucle": {
       "index": 9622,
       "owner_key": "Dw3CoQYHj8qarTqVcgAciDksSieMxtA2LHPUWk4ejkMs",
-      "balance": 439904,
-      "membership_expire_on": 1695226677,
+      "balance": 461264,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681703954,
       "certs_received": {
         "Maryc": 1726793458,
@@ -152041,7 +155284,7 @@
       "owner_key": "Dw4qQKkpZcQSQLAzHiwEWMrmRYdgss5pL6q4CgWSAzNW",
       "balance": 742393,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631019707,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Pol": 1709289262
       }
@@ -152049,8 +155292,8 @@
     "Clam7": {
       "index": 9534,
       "owner_key": "Dw62CTUQAVp2fDtDVZK2fxpyMANkdf6HVbtdTwwJ32v4",
-      "balance": 372085,
-      "membership_expire_on": 1693673409,
+      "balance": 374221,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683988116,
       "certs_received": {
         "DaniailesA": 1725238699,
@@ -152066,7 +155309,7 @@
     "Maeva": {
       "index": 12693,
       "owner_key": "Dw7VkqweTNJji7cd2bXdL1fZFDzXHVVwC9H2GEfPJzjt",
-      "balance": 136072,
+      "balance": 175758,
       "membership_expire_on": 1715727032,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -152088,7 +155331,7 @@
     "sarahvive": {
       "index": 12189,
       "owner_key": "DwFCoHAtge7Ljmo5xcR4KGzgi9sZvkg5J4CjrGfCDviu",
-      "balance": 131964,
+      "balance": 171650,
       "membership_expire_on": 1711673017,
       "next_cert_issuable_on": 1692542922,
       "certs_received": {
@@ -152103,7 +155346,7 @@
     "Maxhans": {
       "index": 5416,
       "owner_key": "DwMyQYKdGhYfJkT5b8fG6hQtfLk3dRRgScdtB5Nq57EY",
-      "balance": 651915,
+      "balance": 691601,
       "membership_expire_on": 1699886062,
       "next_cert_issuable_on": 1678179986,
       "certs_received": {
@@ -152127,16 +155370,24 @@
     "VeroD": {
       "index": 6482,
       "owner_key": "DwXZ46tksrFMKXXz9vi6KiBo3pZAFxC2gErrbJaBDnaJ",
-      "balance": 843009,
-      "membership_expire_on": 1694480114,
-      "next_cert_issuable_on": 1683535661,
-      "certs_received": {
+      "balance": 859069,
+      "membership_expire_on": 1727897353,
+      "next_cert_issuable_on": 1696589842,
+      "certs_received": {
+        "Valentino": 1759754889,
+        "Beatricebia": 1759629238,
+        "Ashawik": 1759719858,
+        "Charista": 1759755217,
+        "Osmoze": 1759716481,
         "TribuRaph": 1698750324,
+        "Tiziano": 1759755548,
+        "Val1695": 1759754889,
         "Calakendi": 1699815966,
         "WANMAR": 1746588061,
         "ChristineB": 1703538880,
         "GeneVieve": 1698531690,
         "Patoun": 1699069739,
+        "CarmenCosta": 1759690232,
         "Maudinettepouetpouet": 1703116214,
         "Ninon914": 1703103747
       }
@@ -152144,7 +155395,7 @@
     "DannyDadoune": {
       "index": 4550,
       "owner_key": "DwdWAs4c6oDCfHqcF6HSj1U6s2HJQvPMS7mbezRiCZcU",
-      "balance": 588602,
+      "balance": 628288,
       "membership_expire_on": 1724368522,
       "next_cert_issuable_on": 1678370410,
       "certs_received": {
@@ -152160,8 +155411,8 @@
     "Orquiepanda": {
       "index": 3092,
       "owner_key": "Dwg9GkzVAQAbKgFkgEGRRhLhJH7dL9vu2dK7GiaeDi8R",
-      "balance": 723813,
-      "membership_expire_on": 1694221526,
+      "balance": 732357,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1687513455,
       "certs_received": {
         "NicolasPepin": 1747585952,
@@ -152181,7 +155432,7 @@
     "Anethetserpolet": {
       "index": 8166,
       "owner_key": "Dwoyb3tZ3T6EzfW4S4cfX8QvmmyE9CKEWj4u36NbwM7z",
-      "balance": 524086,
+      "balance": 563772,
       "membership_expire_on": 1715252262,
       "next_cert_issuable_on": 1678515036,
       "certs_received": {
@@ -152201,18 +155452,27 @@
       "owner_key": "DwwbzyxKUbdqpVqxW9RVjLQEFCVe9wJwrUNR3b8CjnPE",
       "balance": 354644,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631504663,
-      "certs_received": {
-        "Plantalarose": 1693515551
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "Guerriere8": {
       "index": 2807,
       "owner_key": "Dx1QJq6zCGTRSCfjAoVzDQfnd1TAuaXr3Y4SnDAzi6J9",
-      "balance": 184033,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 0,
-      "certs_received": {}
+      "balance": 668426,
+      "membership_expire_on": 1720982881,
+      "next_cert_issuable_on": 1696300649,
+      "certs_received": {
+        "Lune": 1757281653,
+        "nashira": 1757269070,
+        "Choupinette": 1757184566,
+        "LelievreJulia": 1757281653,
+        "Anita": 1757184566,
+        "Melwin": 1757281653,
+        "HenriRGN": 1757184198,
+        "LOLOBOBO11": 1757184566,
+        "Monok": 1757184566,
+        "VeroniqueB": 1757195907
+      }
     },
     "nejmababouche": {
       "index": 2356,
@@ -152225,7 +155485,7 @@
     "RobinV": {
       "index": 10364,
       "owner_key": "DxCsjuRQA3GYuxtPzLLwAFtWK6qkkKroaJk4qcEUqsdU",
-      "balance": 282518,
+      "balance": 322204,
       "membership_expire_on": 1699389027,
       "next_cert_issuable_on": 1679043170,
       "certs_received": {
@@ -152260,13 +155520,13 @@
     "KTPower": {
       "index": 5186,
       "owner_key": "DxgJKWFFDYUg2FTnWBYgbrbhwwQV6pZFPDAWyGUEYMh3",
-      "balance": 806101,
+      "balance": 795887,
       "membership_expire_on": 1713267322,
       "next_cert_issuable_on": 1670517738,
       "certs_received": {
-        "JulienAmory": 1693763736,
         "YvelineMNC": 1733870651,
         "ThomasGr": 1733870651,
+        "Aveline": 1759421987,
         "olivierdeschamp": 1733576991,
         "marieange": 1744835810,
         "Marjo": 1744869348
@@ -152275,7 +155535,7 @@
     "Amach": {
       "index": 10813,
       "owner_key": "DxykttMgjunVTqRbYRBhnrh3BMTHj8TnsibNZZJwRpb4",
-      "balance": 283925,
+      "balance": 323611,
       "membership_expire_on": 1701047413,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -152290,9 +155550,9 @@
     "Daurelia": {
       "index": 11593,
       "owner_key": "Dy6f4piKb3WVN7EFoWErefyZJsxedNFkBFHbaCfb3fRt",
-      "balance": 217167,
+      "balance": 256853,
       "membership_expire_on": 1707666536,
-      "next_cert_issuable_on": 1691928871,
+      "next_cert_issuable_on": 1696424513,
       "certs_received": {
         "Kalior": 1755130958,
         "Fox": 1739398910,
@@ -152300,6 +155560,7 @@
         "IsadeSpa": 1739380725,
         "MichelCoomans5575": 1754425200,
         "Philaloe": 1739559625,
+        "Coolga5575": 1759359479,
         "Corentine": 1739419771,
         "Domi-Merlinou": 1740196561,
         "Elodie2706": 1739422922
@@ -152324,9 +155585,9 @@
     "bobbie": {
       "index": 10879,
       "owner_key": "DyKKs3YstynNzhBaVX8p7aAp8qtyft46BYeqgmP6y7aU",
-      "balance": 276689,
+      "balance": 316375,
       "membership_expire_on": 1702248452,
-      "next_cert_issuable_on": 1672575054,
+      "next_cert_issuable_on": 1694908621,
       "certs_received": {
         "NancyAlexia": 1734398798,
         "Paslake": 1734319094,
@@ -152340,7 +155601,7 @@
     "Noebono": {
       "index": 9108,
       "owner_key": "DyKZ73b8xo15DdSzz5re3egZmDkwiNWEh5NoAAgsGsSP",
-      "balance": 415127,
+      "balance": 454813,
       "membership_expire_on": 1719783925,
       "next_cert_issuable_on": 1692250526,
       "certs_received": {
@@ -152358,7 +155619,7 @@
     "Cleg": {
       "index": 11746,
       "owner_key": "DyRaryMZiDr7uvaDDLPWHQ5NngzM1h8okFBzzuqUHQWg",
-      "balance": 265559,
+      "balance": 305245,
       "membership_expire_on": 1708453664,
       "next_cert_issuable_on": 1687870064,
       "certs_received": {
@@ -152372,7 +155633,7 @@
     "Cordula": {
       "index": 12675,
       "owner_key": "DycebTS2KkexocoxyrJLrNkwc7G4rqxZTC5udXUN89Z1",
-      "balance": 122008,
+      "balance": 161694,
       "membership_expire_on": 1715864730,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -152387,18 +155648,16 @@
     "BRIGITTE2019": {
       "index": 2541,
       "owner_key": "Dyg3TwhoCntiadoGWNcbxZo5Gd1DBrQzTz4du239tDhs",
-      "balance": 906920,
+      "balance": 936606,
       "membership_expire_on": 1707301073,
-      "next_cert_issuable_on": 1688515748,
+      "next_cert_issuable_on": 1694839945,
       "certs_received": {
-        "Libertiste": 1696534532,
         "nadinegil": 1751499573,
         "DidierDavid": 1703040572,
         "BrigitteW": 1701226153,
         "mhdesert": 1699266996,
         "Alter2021_83": 1701662502,
         "Helene-petiteriviere": 1702619786,
-        "Hassina": 1696382075,
         "loveinagain81": 1701528719,
         "Caroleluciole": 1707506986,
         "DominiquePROUVIER-ARNAUD": 1721760729,
@@ -152407,16 +155666,14 @@
         "Coiflibre": 1725843792,
         "Elpheblanche": 1723439985,
         "Olivier34500": 1698463890,
-        "mat14": 1696375833,
         "DanieleSenegasTrobadorenca": 1734032982,
-        "Parpalhon": 1694544808,
         "Fabricealexandre": 1733595075
       }
     },
     "mathieuBize": {
       "index": 47,
       "owner_key": "DymYJziyjC9pyupKNxT9iukEKrnFSGNCLnxFQtSWJSg5",
-      "balance": 183789,
+      "balance": 343475,
       "membership_expire_on": 1710086091,
       "next_cert_issuable_on": 1692803249,
       "certs_received": {
@@ -152432,7 +155689,7 @@
         "tuxmain": 1716923554,
         "paidge": 1711082350,
         "Ju73": 1724963968,
-        "Vivakvo": 1695572215,
+        "Vivakvo": 1756835648,
         "HugoTrentesaux": 1716923829,
         "Josepeuta": 1725464327,
         "Lascapi": 1711397264,
@@ -152459,22 +155716,20 @@
         "Michel1955": 1744251463,
         "Margauxgau": 1717344280,
         "tuttle": 1743208586,
-        "Cathy31": 1695441726,
         "VeroniqueV": 1756002113,
         "Marionrosa": 1713116117,
         "hocine": 1699079270,
         "hayssam": 1732267055,
         "ElenaMavida": 1706945486,
         "Fanou": 1735116092,
-        "sarava": 1741411584,
-        "Glass": 1695599518
+        "sarava": 1741411584
       }
     },
     "NEMETONA34": {
       "index": 6539,
       "owner_key": "DyrUZK84P1AmzRaUzZkFFL3pLZrYSitjauHQ16S2ZEV8",
-      "balance": 299281,
-      "membership_expire_on": 1700928918,
+      "balance": 285467,
+      "membership_expire_on": 1727726666,
       "next_cert_issuable_on": 1687156594,
       "certs_received": {
         "absalon2": 1703829058,
@@ -152512,25 +155767,19 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1660357783,
       "certs_received": {
-        "Bcabon": 1696618366,
         "gabindom": 1701658007,
-        "MarieLaureGruauGeslot": 1696233735,
-        "PhilippeGruau": 1696234358,
         "Sylroc77": 1698516053,
-        "AnneAmbles": 1696406244,
-        "SergeMascaro": 1696311370,
         "IsaLecot": 1734741629,
         "LucileFeuilleau": 1711674531,
         "PascalinePacati": 1710995980,
         "LenaTriB": 1710995980,
-        "Miryanon": 1696465554,
         "ChantAlGuet": 1720570166
       }
     },
     "LilaLeBars": {
       "index": 1584,
       "owner_key": "DzCQWzubpKiPvkUGvcPfAkWYRv2Dufriqp2BSjo1hq9T",
-      "balance": 1651075,
+      "balance": 1690761,
       "membership_expire_on": 1699993398,
       "next_cert_issuable_on": 1675089001,
       "certs_received": {
@@ -152546,7 +155795,7 @@
     "JOY": {
       "index": 12068,
       "owner_key": "DzLYdUEFXnLCaRRLQSnXvXhq2mE7mJ2dcfZVgj8FUWtV",
-      "balance": 174084,
+      "balance": 213770,
       "membership_expire_on": 1709664040,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -152573,7 +155822,7 @@
     "Pado": {
       "index": 10334,
       "owner_key": "DzQhcWt6x1KJ5cE938gkRWxywa7k3GJdoFLsC5Wv7PRv",
-      "balance": 139695,
+      "balance": 179381,
       "membership_expire_on": 1699709155,
       "next_cert_issuable_on": 1691411104,
       "certs_received": {
@@ -152589,20 +155838,18 @@
     "MessagereDeLumiere": {
       "index": 5748,
       "owner_key": "DzREQvJgy3SA6f2QWndEi3M5DvKhDRxLBuncDJNjQn3j",
-      "balance": 1049727,
+      "balance": 1055935,
       "membership_expire_on": 1722950191,
-      "next_cert_issuable_on": 1690187866,
+      "next_cert_issuable_on": 1695616485,
       "certs_received": {
         "DBuxerolle": 1745708377,
-        "nathaliemineau": 1695022226,
         "EricPetit": 1752881591,
         "Gaelle": 1756537160,
         "GaryGrandin": 1744395385,
         "mimi": 1750222721,
-        "FrancoisBaloche": 1695001451,
+        "FrancoisBaloche": 1757611234,
         "LENOU61": 1733210068,
         "laurence66": 1714175401,
-        "simonelion": 1696013472,
         "LucetteTerriers": 1727243578,
         "JosianeSochon": 1713758432,
         "JulienGermain": 1699079270,
@@ -152618,10 +155865,8 @@
         "GenevieveLagrange": 1711156862,
         "Albassierseverine": 1730397456,
         "Keramina51": 1717516904,
-        "YanickChareille": 1696183255,
         "AngesRio": 1734040572,
         "MicheleChaplain": 1710385600,
-        "EdithSineux": 1696028046,
         "CelineDeNosCampagnes": 1705103012,
         "BernadetteLerat": 1701564696,
         "ChristineBriquet": 1711759169
@@ -152630,9 +155875,9 @@
     "jge": {
       "index": 11687,
       "owner_key": "DzRR1Ngioqufzfnxf5sRzB8XYcVuKQaHjeV6Qdj2FDWw",
-      "balance": 160241,
+      "balance": 39147,
       "membership_expire_on": 1704455687,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694135604,
       "certs_received": {
         "MadV77": 1736803959,
         "oliver2410june": 1738899366,
@@ -152653,9 +155898,9 @@
     "MorganV74": {
       "index": 11129,
       "owner_key": "DzV9eWwhNBw5G2JSURMYx1rzEqqYEVB7dqmZXzbW8giR",
-      "balance": 252450,
+      "balance": 274136,
       "membership_expire_on": 1704570762,
-      "next_cert_issuable_on": 1687011648,
+      "next_cert_issuable_on": 1693898618,
       "certs_received": {
         "BALOU73": 1736132464,
         "Doudou73": 1736132464,
@@ -152667,7 +155912,7 @@
     "patkar": {
       "index": 1733,
       "owner_key": "DzYWv6xDcCh6HtihbKoHUhm3uVjcWzGUDGYKdfK3e5Cy",
-      "balance": 1663977,
+      "balance": 1705663,
       "membership_expire_on": 1699193499,
       "next_cert_issuable_on": 1680246678,
       "certs_received": {
@@ -152694,7 +155939,7 @@
     "MahyLuna": {
       "index": 12236,
       "owner_key": "DzqGZ4DN78YnZ6gaihkPEsFQsAUgYDiP3jxUFjt2ePVL",
-      "balance": 779164,
+      "balance": 818850,
       "membership_expire_on": 1710992153,
       "next_cert_issuable_on": 1681282563,
       "certs_received": {
@@ -152710,24 +155955,27 @@
     "MIG": {
       "index": 2855,
       "owner_key": "Dzwg6MHfJFuU7AMEgSRCqgQHKWR1itTcpw41A3LUEnTJ",
-      "balance": 1427600,
+      "balance": 1467286,
       "membership_expire_on": 1697924484,
       "next_cert_issuable_on": 1688654921,
       "certs_received": {
+        "IsaForest": 1757790623,
         "LaurenceIG": 1729586860,
         "Jean-ClaudeG": 1736070948,
+        "Essitam": 1757662064,
+        "MrViguier": 1757665789,
         "armoni": 1698022045,
         "CVM": 1697822034,
-        "Pommedapi": 1696578820,
+        "NEMBC": 1757666198,
         "zabel": 1729843111
       }
     },
     "Coco46": {
       "index": 2720,
       "owner_key": "E12h484EbbdQ3DofzohxTJ1AE7EHQKKiLvrGz2pgrLBP",
-      "balance": 455301,
+      "balance": 395675,
       "membership_expire_on": 1706790283,
-      "next_cert_issuable_on": 1691248331,
+      "next_cert_issuable_on": 1696401012,
       "certs_received": {
         "looie": 1741663755,
         "Chantal": 1706774244,
@@ -152741,15 +155989,16 @@
         "AtmaRajpreet": 1745957407,
         "Carolina73": 1717049557,
         "Tell": 1728455922,
-        "Anamaya": 1697991218,
+        "Anamaya": 1759459509,
         "Joailes38": 1705352470,
         "Matteo": 1726852564,
         "Alexis05": 1714510887,
         "LibertyFran": 1705445426,
         "AtmaRajprem": 1745957407,
         "Zenobie": 1742411375,
-        "JeanTibou": 1697176469,
+        "JeanTibou": 1757700413,
         "Max": 1714499771,
+        "christine": 1757018733,
         "Barbapapa": 1731001879,
         "Josetre": 1706836445,
         "LaurentM": 1698805185,
@@ -152768,13 +156017,14 @@
     "Mer-lin": {
       "index": 11743,
       "owner_key": "E13CMkoViSVgh3Le1iLo5zfydawaT8E3U2pmx5AF5YsR",
-      "balance": 191618,
+      "balance": 181304,
       "membership_expire_on": 1706120902,
-      "next_cert_issuable_on": 1692924392,
+      "next_cert_issuable_on": 1696169542,
       "certs_received": {
         "Zap": 1739424357,
         "Flohubert": 1745789617,
         "Bernardfrennet": 1754251128,
+        "Isabeau": 1757404897,
         "Asthenie": 1739385892,
         "Eden07": 1742626694,
         "Camizot": 1738732713,
@@ -152786,7 +156036,7 @@
     "VeroVey": {
       "index": 3929,
       "owner_key": "E15hFTfvdEegyGCPptrBmvaJYrW3UFvatz6aZeJQ4WDr",
-      "balance": 431223,
+      "balance": 470909,
       "membership_expire_on": 1719513741,
       "next_cert_issuable_on": 1677229343,
       "certs_received": {
@@ -152814,7 +156064,7 @@
     "Livio": {
       "index": 9594,
       "owner_key": "E1CWavatWt4eEnrApj7As3roGorEh4rZhtnJgqtvMVQV",
-      "balance": 284022,
+      "balance": 323708,
       "membership_expire_on": 1722181800,
       "next_cert_issuable_on": 1669000012,
       "certs_received": {
@@ -152828,7 +156078,7 @@
     "jessicadupont": {
       "index": 11347,
       "owner_key": "E1LZK1jymJJAw3H9Qsxzm7KJ3pCRvitoyspVb3mpKjX9",
-      "balance": 262329,
+      "balance": 302015,
       "membership_expire_on": 1705346242,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -152842,6 +156092,20 @@
         "MissVegetal": 1737784795
       }
     },
+    "Martine88": {
+      "index": 13680,
+      "owner_key": "E1U5zS6NfJcXi4TWt6DAU1zBbDjWJahy8fqBLYoc7EV2",
+      "balance": 26702,
+      "membership_expire_on": 1726922304,
+      "next_cert_issuable_on": 1696502840,
+      "certs_received": {
+        "CowboyPierre": 1758952348,
+        "LadyGes": 1758568628,
+        "Malouve": 1758908857,
+        "Cocoyarouge": 1759075214,
+        "Bounty": 1758525480
+      }
+    },
     "ETH4N0L": {
       "index": 653,
       "owner_key": "E1aRJqRDjX78g9Cvmj1463vsuAs6thdwQPDLd86nVNZK",
@@ -152853,7 +156117,7 @@
     "Lajose2023": {
       "index": 11648,
       "owner_key": "E1aVo3osPQix8Y4LBF2xiaE8y5KWpKveDJyDLCxQurr",
-      "balance": 51872,
+      "balance": 91558,
       "membership_expire_on": 1708046215,
       "next_cert_issuable_on": 1680330167,
       "certs_received": {
@@ -152870,7 +156134,7 @@
     "Ziza": {
       "index": 12388,
       "owner_key": "E1cW2ZnoyHcpYUeTb4uTRLLszyD7cnfGL6Eoh7WALRf5",
-      "balance": 146112,
+      "balance": 175798,
       "membership_expire_on": 1713467644,
       "next_cert_issuable_on": 1684200588,
       "certs_received": {
@@ -152884,9 +156148,9 @@
     "Framboise89": {
       "index": 8462,
       "owner_key": "E1gup1P7sXqJSF1Mfue3kAXpq8VyaaRW6zuGY4fNyDV9",
-      "balance": 340934,
+      "balance": 380620,
       "membership_expire_on": 1717973065,
-      "next_cert_issuable_on": 1693557689,
+      "next_cert_issuable_on": 1693558039,
       "certs_received": {
         "Icaunaise": 1717453276,
         "gui_tooun": 1716521426,
@@ -152905,7 +156169,7 @@
     "philippeneau": {
       "index": 10848,
       "owner_key": "E1mF6dy4SzmUCu1VmZzjnx3yHDPkA1UsEm9UgbUM17uz",
-      "balance": 259148,
+      "balance": 298834,
       "membership_expire_on": 1701467465,
       "next_cert_issuable_on": 1671445678,
       "certs_received": {
@@ -152920,9 +156184,9 @@
     "Patrice": {
       "index": 9249,
       "owner_key": "E1xqcLAmSd23T6Q1BmNicmcSM2SoGgjLcBpDx6qMLB4v",
-      "balance": 344962,
+      "balance": 383648,
       "membership_expire_on": 1718038028,
-      "next_cert_issuable_on": 1681709362,
+      "next_cert_issuable_on": 1694421673,
       "certs_received": {
         "Monette": 1741459971,
         "Azucena": 1721550341,
@@ -152945,7 +156209,7 @@
     "AlineLarvet": {
       "index": 7437,
       "owner_key": "E27MpStUgRsVDVx8HQAcD7PZ5ARtsej7wZB33gzNgPBu",
-      "balance": 669950,
+      "balance": 709636,
       "membership_expire_on": 1704040269,
       "next_cert_issuable_on": 1652354575,
       "certs_received": {
@@ -152959,18 +156223,19 @@
     "ChristineB": {
       "index": 6426,
       "owner_key": "E29riVm5u4Tmtb8xUFgq7RMdqDjmXC1PiLFqiiyCtQVA",
-      "balance": 96575,
+      "balance": 136261,
       "membership_expire_on": 1720133202,
       "next_cert_issuable_on": 1686751967,
       "certs_received": {
         "Ashawik": 1716588578,
+        "Marylin": 1757455447,
         "NAMA-STE": 1712453751,
         "morimontj": 1754806263,
         "Brigitte45": 1712446209,
         "Sottay": 1701758974,
         "Lando": 1698778258,
         "GeneBe": 1700522422,
-        "Juju": 1698805909,
+        "Juju": 1759468291,
         "Ninon914": 1752946343,
         "JGlExplorateur": 1701110168
       }
@@ -152978,7 +156243,7 @@
     "Reine97418": {
       "index": 11014,
       "owner_key": "E2LDuaEMtiq5LSDyjv8RxPZx2J4u9gi4GWP6ed8zTrYj",
-      "balance": 2070899,
+      "balance": 2226085,
       "membership_expire_on": 1701082882,
       "next_cert_issuable_on": 1681787330,
       "certs_received": {
@@ -153003,7 +156268,7 @@
     "Petitezoe": {
       "index": 11599,
       "owner_key": "E2Rd79Et2Jr9UwdcgziDsL5EXUHxa2FKuhatRUhRHaLG",
-      "balance": 187008,
+      "balance": 226694,
       "membership_expire_on": 1706814230,
       "next_cert_issuable_on": 1682218949,
       "certs_received": {
@@ -153022,12 +156287,27 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Lilou-Rose": {
+      "index": 13507,
+      "owner_key": "E2UPcjcEAQMa5g1ao2b7cWqFW2UKH8gpNJQkymmPDcoH",
+      "balance": 39850,
+      "membership_expire_on": 1724716560,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Virginie": 1756274160,
+        "Marino": 1757052754,
+        "Samsan": 1756274412,
+        "Violetta": 1756364483,
+        "MelR": 1757482997,
+        "Diamant": 1756279029
+      }
+    },
     "DanJoue": {
       "index": 1831,
       "owner_key": "E2UrHk2JsQ8WqG3nEosGTArn2SRmEgzucZpjMjtbCuGM",
-      "balance": 546562,
+      "balance": 460108,
       "membership_expire_on": 1718322984,
-      "next_cert_issuable_on": 1693126487,
+      "next_cert_issuable_on": 1695808437,
       "certs_received": {
         "Tahiti": 1729393757,
         "ingrid": 1730750148,
@@ -153035,11 +156315,11 @@
         "kytiu": 1715276360,
         "LauQui": 1755105450,
         "MARTIGOUGOUGNETTE": 1738699038,
+        "AnneLaroche": 1759286684,
         "GENEV": 1730062989,
         "Clement66": 1750288737,
         "Monique2605": 1705646557,
         "loveinagain81": 1753740728,
-        "dtarcz": 1694637661,
         "Licorne6": 1698266939,
         "floriane11": 1742271855,
         "Gold144": 1730950901,
@@ -153073,8 +156353,8 @@
     "BrigitteLaRoque": {
       "index": 6367,
       "owner_key": "E2iepmVZQ4K46QnrD3W4UeAuPzTqALPe2Kotf4DPxKuJ",
-      "balance": 1334434,
-      "membership_expire_on": 1698496322,
+      "balance": 1374120,
+      "membership_expire_on": 1726782720,
       "next_cert_issuable_on": 1669738965,
       "certs_received": {
         "pacifikveronique": 1707770753,
@@ -153093,9 +156373,9 @@
     "LuciaEstElle": {
       "index": 12467,
       "owner_key": "E2mv5avwGyJyMMHjrjJgTPc1MourGYgYxoGMSfDnAAez",
-      "balance": 133339,
+      "balance": 167525,
       "membership_expire_on": 1709128619,
-      "next_cert_issuable_on": 1690337725,
+      "next_cert_issuable_on": 1696252438,
       "certs_received": {
         "FenderChristophe": 1744674047,
         "ENO": 1745646986,
@@ -153108,19 +156388,22 @@
     "danielali": {
       "index": 12152,
       "owner_key": "E2tbxSGihgAkKS7Qb3fGCgV2ERnnax8WV9U9HmzQwjuc",
-      "balance": 70410,
+      "balance": 77491,
       "membership_expire_on": 1711277987,
-      "next_cert_issuable_on": 1692008963,
+      "next_cert_issuable_on": 1695214891,
       "certs_received": {
         "MKC": 1754425613,
         "Nobby": 1748669327,
         "SoniaMallorca": 1742872631,
         "majo": 1742836279,
+        "Miguela": 1757872105,
         "catalinons": 1743100947,
+        "Thor": 1758322457,
         "Brahmaya": 1743533213,
         "Apurajarras": 1742862604,
         "YOSOYLUZ": 1743143065,
         "Felicia": 1742859366,
+        "Sigrid61": 1757184566,
         "Gitty": 1749075741,
         "Sabi": 1742840819,
         "ICIELA": 1751994256,
@@ -153152,7 +156435,7 @@
     "Ecrin": {
       "index": 12457,
       "owner_key": "E3B16m8UUgrg6B6hq1cKwRbrV7mVjJUVT6wjYBVugBQG",
-      "balance": 135636,
+      "balance": 175322,
       "membership_expire_on": 1711909411,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -153167,7 +156450,7 @@
     "Bizou": {
       "index": 3094,
       "owner_key": "E3CvpuBT1PzN7RRn9wMcfmTgM1hEXT6SdjBGJEV5VFrP",
-      "balance": 952528,
+      "balance": 992214,
       "membership_expire_on": 1719575494,
       "next_cert_issuable_on": 1642599908,
       "certs_received": {
@@ -153181,7 +156464,7 @@
     "Piermich": {
       "index": 12150,
       "owner_key": "E3HhSW9piUNabZYMdb1qstRmjvDMDPsZ2zbu2URHwcBv",
-      "balance": 174108,
+      "balance": 213794,
       "membership_expire_on": 1710417083,
       "next_cert_issuable_on": 1683074669,
       "certs_received": {
@@ -153195,7 +156478,7 @@
     "LenaTriB": {
       "index": 7168,
       "owner_key": "E3JodA3cVsqijKyHfuxbGTeb6HhB2t3gKJLJRGpz1XrG",
-      "balance": 500203,
+      "balance": 539889,
       "membership_expire_on": 1717581929,
       "next_cert_issuable_on": 1667825008,
       "certs_received": {
@@ -153227,17 +156510,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Crystal": 1696010113,
-        "AnneChaimbault": 1696464720,
-        "ChriSchoettel": 1697393467,
-        "LaurenceDavid": 1695882571,
-        "amaterra": 1696659891
+        "ChriSchoettel": 1697393467
       }
     },
     "Tonibarri": {
       "index": 7249,
       "owner_key": "E3W34gn7FEbkYPLmwfsLLwUxEhCCVnVEteE9FYCaURQU",
-      "balance": 429875,
+      "balance": 469562,
       "membership_expire_on": 1703939501,
       "next_cert_issuable_on": 1693314700,
       "certs_received": {
@@ -153262,7 +156541,7 @@
     "JDLepage-Guichard": {
       "index": 1854,
       "owner_key": "E3ckHc5JhYgeSqFz2sRFYGX8zWAE4W9TFdf6PCqjfdt3",
-      "balance": 1053864,
+      "balance": 1093550,
       "membership_expire_on": 1713379528,
       "next_cert_issuable_on": 1689744392,
       "certs_received": {
@@ -153285,8 +156564,8 @@
     "Fleur49": {
       "index": 9224,
       "owner_key": "E3fhacYetqUvTeAY7P3kvbYC5CuSN8J2CSHC97jqrrtX",
-      "balance": 360895,
-      "membership_expire_on": 0,
+      "balance": 370597,
+      "membership_expire_on": 1727527121,
       "next_cert_issuable_on": 1669340592,
       "certs_received": {
         "MathieuDebray": 1722043075,
@@ -153308,9 +156587,9 @@
     "Juanmatierraplana": {
       "index": 9302,
       "owner_key": "E3pPCm4qGNa5LcN4tJPHVR1DVRuDLKiFr7SdohzcRy66",
-      "balance": 211430,
+      "balance": 241116,
       "membership_expire_on": 1721591952,
-      "next_cert_issuable_on": 1691079954,
+      "next_cert_issuable_on": 1695376868,
       "certs_received": {
         "Aguas": 1733612824,
         "LaMatriarcaToro": 1738804815,
@@ -153322,12 +156601,16 @@
         "lolicirera": 1753149552,
         "yoelijomivida": 1738038820,
         "Madreselva": 1724178240,
+        "ManuGi": 1757306716,
+        "virginiaoreoro": 1759007385,
         "Cafecadiz": 1724122355,
         "SharonPeregrina": 1735597221,
         "KepaBai": 1735091719,
         "RobertoG1": 1735221976,
         "ManuelVillalejos": 1733624197,
         "AinaraNutri": 1735962971,
+        "MACANATURE": 1757746305,
+        "mellamanhernan": 1757305225,
         "GojiBerry": 1740032233,
         "BaniKrban": 1738957635,
         "ALEGRIAUNIVERSAL": 1739258656
@@ -153344,7 +156627,7 @@
     "Dem": {
       "index": 9238,
       "owner_key": "E3uEBVJouX8sqmfuRFCVyFz79sUiLro7jJbxXgJveaSp",
-      "balance": 181054,
+      "balance": 220740,
       "membership_expire_on": 1722704615,
       "next_cert_issuable_on": 1692009156,
       "certs_received": {
@@ -153360,30 +156643,28 @@
     "ZZR": {
       "index": 3967,
       "owner_key": "E3uz5LB4vJmqgvKrEU3PN1yWMYHawStkYL53pvL4XChe",
-      "balance": 1096174,
+      "balance": 1096074,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1656865903,
       "certs_received": {
         "Chantal": 1710363445,
-        "Foxy": 1694841785,
-        "gaellemarcherat": 1693556136,
         "Calinka07": 1709458554,
-        "CHANTALE": 1700543494,
-        "Milenie26": 1696477526
+        "CHANTALE": 1700543494
       }
     },
     "FEUERFRAU": {
       "index": 12203,
       "owner_key": "E3xcZXASh8xjfHrC2h7pmZxQR3ec8ZNWcJGVVNUNufMx",
-      "balance": 55412,
+      "balance": 35200,
       "membership_expire_on": 1711563228,
-      "next_cert_issuable_on": 1691887072,
+      "next_cert_issuable_on": 1696652779,
       "certs_received": {
         "SoniaMallorca": 1745378667,
         "majo": 1743131944,
         "Petrosilius": 1743653157,
         "aurel": 1743600157,
         "Sergio": 1745744947,
+        "Dom67": 1759512804,
         "catalinons": 1745729392,
         "Ilka": 1745744473,
         "ChristineRenier": 1748997153,
@@ -153402,9 +156683,9 @@
     "Eauvive": {
       "index": 1102,
       "owner_key": "E3xrsFzU88ht8eYUrpiSkm3sreAFadmyvmfzzatpqjdA",
-      "balance": 987824,
+      "balance": 1023510,
       "membership_expire_on": 1708529634,
-      "next_cert_issuable_on": 1693210696,
+      "next_cert_issuable_on": 1695134809,
       "certs_received": {
         "edouardletigre": 1715677731,
         "Lisa34": 1714678892,
@@ -153438,6 +156719,7 @@
         "DanJoue": 1721714903,
         "Max": 1748970758,
         "Amberle34500": 1719547118,
+        "captain": 1758408928,
         "Philae": 1700772800,
         "Olivier34500": 1706219033,
         "Christophe-C": 1722805965,
@@ -153464,7 +156746,7 @@
     "Florelep": {
       "index": 12491,
       "owner_key": "E41L7vB2U2z7H2mWQaByeFoztjm5TaRnJyTkopnyG2Z2",
-      "balance": 133364,
+      "balance": 173050,
       "membership_expire_on": 1712697088,
       "next_cert_issuable_on": 1683612728,
       "certs_received": {
@@ -153500,11 +156782,15 @@
     "Gigi": {
       "index": 2077,
       "owner_key": "E4JAKRZvpfVNTzS6dtmRR7oWvRyatJLdUFE3fSw38jKh",
-      "balance": 878060,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632817289,
+      "balance": 899590,
+      "membership_expire_on": 1724271159,
+      "next_cert_issuable_on": 1695210111,
       "certs_received": {
-        "floriane11": 1733386537
+        "Katou": 1757206634,
+        "Choupinette": 1758080867,
+        "HenriRGN": 1758080666,
+        "floriane11": 1733386537,
+        "Monok": 1758080867
       }
     },
     "EricBrunet": {
@@ -153514,21 +156800,18 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Clochette": 1693957424,
         "Gedege": 1700748738
       }
     },
     "loulou46": {
       "index": 4287,
       "owner_key": "E4Sqmim3mTdTSgEhuXxi4bK4rSkRC8zpTFA1dsQ5AsrG",
-      "balance": 991496,
-      "membership_expire_on": 0,
+      "balance": 1023706,
+      "membership_expire_on": 1725641344,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
-        "Adri46": 1694051130,
         "will46": 1744869694,
         "dineflore": 1744869694,
-        "Jcteulier": 1693687599,
         "malou": 1744869694,
         "azylis": 1744869694,
         "Vony": 1715980232,
@@ -153540,7 +156823,7 @@
     "JaviGuelo": {
       "index": 11070,
       "owner_key": "E4VC1zm8a6tPqYcicz9QW51hJEmCu6uPnuDpke8xTgVT",
-      "balance": 263804,
+      "balance": 303490,
       "membership_expire_on": 1703975902,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -153564,9 +156847,9 @@
     "Jim974": {
       "index": 10651,
       "owner_key": "E4jXBJbQhsfH5N9j4kLcquMyvZKNxsHJWpNZGQeTyQoD",
-      "balance": 225456,
+      "balance": 255142,
       "membership_expire_on": 1700843128,
-      "next_cert_issuable_on": 1682040910,
+      "next_cert_issuable_on": 1695452111,
       "certs_received": {
         "ChristineNoelle": 1747625027,
         "Vero": 1732407775,
@@ -153582,7 +156865,7 @@
     "Surikat": {
       "index": 13241,
       "owner_key": "E4ojhoHrtgSst4yLjhjNhhEPRGex5Rkadj7p8apvkJrV",
-      "balance": 33448,
+      "balance": 73134,
       "membership_expire_on": 1721696287,
       "next_cert_issuable_on": 1691500925,
       "certs_received": {
@@ -153593,12 +156876,27 @@
         "EricSamsa": 1753395051
       }
     },
+    "LyneMP": {
+      "index": 13715,
+      "owner_key": "E4pLEtwrtSdr8SHNDoCRrTncehPo9kBngTGqCBzE5jJo",
+      "balance": 12368,
+      "membership_expire_on": 1725916031,
+      "next_cert_issuable_on": 1696384705,
+      "certs_received": {
+        "StephanieLumiere": 1759294570,
+        "SophieRita": 1759369725,
+        "Inanna": 1759293190,
+        "RudyMathey": 1759293190,
+        "Katecat": 1759295638,
+        "Daniele8": 1759305694
+      }
+    },
     "LarissaLora": {
       "index": 13044,
       "owner_key": "E4weSx9xtUB9KGBqSifDjUcq1i8E72ALKVhKpbNcJmb6",
-      "balance": 33548,
+      "balance": 36834,
       "membership_expire_on": 1719749882,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695124748,
       "certs_received": {
         "ASHNUBAN": 1751401467,
         "ChantAloha": 1751309017,
@@ -153611,7 +156909,7 @@
     "ChristianeBarry": {
       "index": 12435,
       "owner_key": "E4xBssrUZgbZn3BNT53Z92bxVaBJgxJTaRZP8bK4PAcx",
-      "balance": 137772,
+      "balance": 177458,
       "membership_expire_on": 1712263141,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -153633,7 +156931,7 @@
     "Steph01300": {
       "index": 10756,
       "owner_key": "E51msMAostoCjmYomPNPM4KSGkid5gizZfqbJ83xqqtK",
-      "balance": 288161,
+      "balance": 327847,
       "membership_expire_on": 1700504284,
       "next_cert_issuable_on": 1670755615,
       "certs_received": {
@@ -153655,7 +156953,7 @@
     "Patnature": {
       "index": 12724,
       "owner_key": "E5J7U6Ko6hH5Pjv9MLoCPsWUBcavZvfoaFLxbrzWQTFL",
-      "balance": 109100,
+      "balance": 148786,
       "membership_expire_on": 1716143384,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -153669,8 +156967,8 @@
     "Choukie": {
       "index": 6332,
       "owner_key": "E5Lv9d5P2G7L7VzyeLj939d1EJdSwQvSS8hyVReMSyTf",
-      "balance": 545523,
-      "membership_expire_on": 1696946533,
+      "balance": 585209,
+      "membership_expire_on": 1727226117,
       "next_cert_issuable_on": 1680273907,
       "certs_received": {
         "Abrialys": 1755241215,
@@ -153693,7 +156991,7 @@
     "CocoP": {
       "index": 8465,
       "owner_key": "E5VhBx6VeDix4dm3xz62exXAYwXjCpTKfJppWtcHmSGk",
-      "balance": 521530,
+      "balance": 561216,
       "membership_expire_on": 1712881676,
       "next_cert_issuable_on": 1662533914,
       "certs_received": {
@@ -153711,7 +157009,7 @@
     "JulienLecaille": {
       "index": 661,
       "owner_key": "E5WJKCswK7kYxSirSSXkLJuLnJp1RZ37qRqUytEJWK7R",
-      "balance": 1753802,
+      "balance": 1793488,
       "membership_expire_on": 1713912017,
       "next_cert_issuable_on": 1665558054,
       "certs_received": {
@@ -153729,7 +157027,7 @@
     "Nawak": {
       "index": 7356,
       "owner_key": "E5aAUYhmiCUZa8musTGDNRpfByHLDCw1JTv1HXLN3T6E",
-      "balance": 452207,
+      "balance": 491893,
       "membership_expire_on": 1719842640,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -153743,7 +157041,7 @@
     "Ahimsa73": {
       "index": 12263,
       "owner_key": "E5asjnt33vCpk1ifdiKDCDRUsxn9sP9jJK5MhUgyMsY9",
-      "balance": 33647,
+      "balance": 73333,
       "membership_expire_on": 1711807580,
       "next_cert_issuable_on": 1683556812,
       "certs_received": {
@@ -153760,9 +157058,9 @@
     "Kurako": {
       "index": 13022,
       "owner_key": "E5faEfQ3Tkhj8Nz2TmWkeB5T8FzrwimJ5NiEkTqfPvJc",
-      "balance": 63784,
+      "balance": 84354,
       "membership_expire_on": 1718557096,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694880807,
       "certs_received": {
         "Nobby": 1750184426,
         "SoniaMallorca": 1750758258,
@@ -153774,7 +157072,7 @@
     "soizh": {
       "index": 2530,
       "owner_key": "E5g1zGG1SnTGFHeZDQt9WKaeXkqHtBWY16p5vYziXwTK",
-      "balance": 1160091,
+      "balance": 1199777,
       "membership_expire_on": 1710350365,
       "next_cert_issuable_on": 1684309778,
       "certs_received": {
@@ -153807,14 +157105,15 @@
     "Barbara7": {
       "index": 5859,
       "owner_key": "E62fz2wpi3zcQVEgV7ebrktxH6crzU8K1ZiQZJVkKPJz",
-      "balance": 65736,
-      "membership_expire_on": 1697547433,
-      "next_cert_issuable_on": 1689175249,
+      "balance": 105422,
+      "membership_expire_on": 1726610052,
+      "next_cert_issuable_on": 1694576388,
       "certs_received": {
-        "absalon2": 1697657164,
+        "absalon2": 1756740442,
         "JMF": 1697352321,
         "Sev": 1697676037,
         "patriziatavormina": 1697701432,
+        "Chris7": 1757112442,
         "manguitou": 1697649053,
         "Edith3": 1708534950,
         "Eauvive": 1708531472,
@@ -153825,8 +157124,8 @@
     "Lili": {
       "index": 10295,
       "owner_key": "E6519V7Bkj4G4F4KskZ2bDXE2Xeujt9TV2SkAmzm1kgB",
-      "balance": 363154,
-      "membership_expire_on": 1696271898,
+      "balance": 397450,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "MathieuDebray": 1732493150,
@@ -153842,9 +157141,9 @@
     "krischamp": {
       "index": 1780,
       "owner_key": "E6A56qC5VZHfNj6dhMePD5Z8j4GDcVkiWkYABVBaALrL",
-      "balance": 1449313,
+      "balance": 1488999,
       "membership_expire_on": 1704407886,
-      "next_cert_issuable_on": 1652198453,
+      "next_cert_issuable_on": 1693572251,
       "certs_received": {
         "TomAs": 1702375285,
         "Cathlon": 1738720516,
@@ -153882,13 +157181,17 @@
     "MFF": {
       "index": 5823,
       "owner_key": "E6RPN4BuJJHd4S3Bezgkbfb893ehcxzvaQFmJ8GwWjPH",
-      "balance": 366841,
-      "membership_expire_on": 1694945183,
-      "next_cert_issuable_on": 1684903172,
+      "balance": 406527,
+      "membership_expire_on": 1725989112,
+      "next_cert_issuable_on": 1695220194,
       "certs_received": {
-        "JMF": 1697175938,
+        "absalon2": 1757602793,
+        "JMF": 1757570733,
         "Sev": 1697143187,
+        "CatherineMontpellier": 1757548213,
         "Stevia30120": 1697180510,
+        "VeroniqueTouron": 1757572708,
+        "Barbara7": 1757619588,
         "AuFilDuTemps": 1697314158,
         "Damery": 1697161663
       }
@@ -153896,8 +157199,8 @@
     "vielclaudie": {
       "index": 10836,
       "owner_key": "E6Rb5Zok2ctwpRaXDBHsVTn1GdZh7UWJHMr2PLCEdrAq",
-      "balance": 287866,
-      "membership_expire_on": 1697574586,
+      "balance": 312552,
+      "membership_expire_on": 1727905609,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "DanielPGT": 1733545306,
@@ -153910,7 +157213,7 @@
     "DameGinette": {
       "index": 11360,
       "owner_key": "E6SmrT6L9iDbxggTtj4x4EYrtugNQ9pjuHfB8nDaRx1p",
-      "balance": 308514,
+      "balance": 518200,
       "membership_expire_on": 1702055435,
       "next_cert_issuable_on": 1683764554,
       "certs_received": {
@@ -153928,8 +157231,8 @@
     "GXIST": {
       "index": 4304,
       "owner_key": "E6TxyvZADB8EwcaDhFsLTeqniGt8NpYpDpMBvdB86DCP",
-      "balance": 812952,
-      "membership_expire_on": 1693693089,
+      "balance": 815088,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683986716,
       "certs_received": {
         "hibiscus11": 1733115734,
@@ -153946,9 +157249,9 @@
     "Roland": {
       "index": 12519,
       "owner_key": "E6VP4B61TZ6jHqWpZbK5qdVyzGMvVQNv5pjKM6XC7WGC",
-      "balance": 188528,
+      "balance": 201714,
       "membership_expire_on": 1713791781,
-      "next_cert_issuable_on": 1690013452,
+      "next_cert_issuable_on": 1694246444,
       "certs_received": {
         "Crystal": 1745403871,
         "Celang": 1746997751,
@@ -153977,8 +157280,8 @@
     "MamieGAUMONT": {
       "index": 9713,
       "owner_key": "E6d9kZmabWKQ7swwn4qJAHzaaMAg4QC6npJa8a3BQ9Ku",
-      "balance": 358450,
-      "membership_expire_on": 1695165399,
+      "balance": 378742,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Mystiik": 1727372877,
@@ -153993,14 +157296,15 @@
     "Manebaz": {
       "index": 12624,
       "owner_key": "E6gJpE4HX7Po1xEZBNuj7iMwBcRgmdmD2N2sqnmFrHAu",
-      "balance": 148349,
+      "balance": 178135,
       "membership_expire_on": 1714057498,
-      "next_cert_issuable_on": 1691240537,
+      "next_cert_issuable_on": 1696747717,
       "certs_received": {
         "LoupBlanc": 1754283202,
         "virginie": 1746501241,
         "Dorf67": 1753910389,
         "ENO": 1746492108,
+        "feedbefore": 1758046932,
         "Kheoppe": 1745621065,
         "hazed": 1746315591,
         "Hera": 1746168927,
@@ -154010,7 +157314,7 @@
     "Liliane50974": {
       "index": 7419,
       "owner_key": "E6poPUuK5pgFYx9gukaAEHi25zrMcfs9syaSTWxuFi14",
-      "balance": 814941,
+      "balance": 854627,
       "membership_expire_on": 1708418383,
       "next_cert_issuable_on": 1676933321,
       "certs_received": {
@@ -154045,13 +157349,13 @@
       "owner_key": "E74WjpsA6E14hBaumdMJ1MyaGjTzSQtpM2gSZVfWz2Jf",
       "balance": 281765,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1633632749,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "TatieDanielle07": {
       "index": 6835,
       "owner_key": "E7CRWNRuBzSfRov5QwiUSpTkhkRD5EjpR9ucUirkoz9i",
-      "balance": 597420,
+      "balance": 637106,
       "membership_expire_on": 1706656840,
       "next_cert_issuable_on": 1650197110,
       "certs_received": {
@@ -154069,7 +157373,7 @@
     "LenaB": {
       "index": 1696,
       "owner_key": "E7KeCdDSFb7aPC1aRzaPnx69ChPSwnLYiiDZZqAngoxP",
-      "balance": 37380,
+      "balance": 77066,
       "membership_expire_on": 1700146771,
       "next_cert_issuable_on": 1686491184,
       "certs_received": {
@@ -154092,7 +157396,7 @@
     "Els777": {
       "index": 10823,
       "owner_key": "E7NXxK2JsQtGQupDqHeaMdvUP7kPAhw5Jy2vUkZGKtwP",
-      "balance": 278925,
+      "balance": 318611,
       "membership_expire_on": 1702130454,
       "next_cert_issuable_on": 1671951478,
       "certs_received": {
@@ -154107,8 +157411,8 @@
     "MIKISXM": {
       "index": 10616,
       "owner_key": "E7RBKBPQwWX6gkDa9b183mKhyybScrgNTqqfQRoTUdPf",
-      "balance": 143133,
-      "membership_expire_on": 1699388325,
+      "balance": 175819,
+      "membership_expire_on": 1725815110,
       "next_cert_issuable_on": 1685084552,
       "certs_received": {
         "Zara97": 1740869483,
@@ -154130,7 +157434,7 @@
     "MIMIIG81": {
       "index": 10137,
       "owner_key": "E7TnZPtYVsAS6X2KL64QDyRHDniT41Yzjctdxw263zYJ",
-      "balance": 381313,
+      "balance": 420999,
       "membership_expire_on": 1697476787,
       "next_cert_issuable_on": 1689401786,
       "certs_received": {
@@ -154152,7 +157456,7 @@
     "Domi83": {
       "index": 12555,
       "owner_key": "E7VAZQ2ea4s3v5MuHcCCLSA37xzSrFBC82bkp6w73wUC",
-      "balance": 134456,
+      "balance": 174142,
       "membership_expire_on": 1714555554,
       "next_cert_issuable_on": 1690890605,
       "certs_received": {
@@ -154175,9 +157479,9 @@
     "Pamelaayurveda": {
       "index": 13063,
       "owner_key": "E7byzFBKEbLHnKjRFRg8sD7LdZRQ8jkJMLutfkV8SBqS",
-      "balance": 28892,
+      "balance": 22148,
       "membership_expire_on": 1718585668,
-      "next_cert_issuable_on": 1691976937,
+      "next_cert_issuable_on": 1696243270,
       "certs_received": {
         "ChristelR": 1750192575,
         "Gazaile": 1750395499,
@@ -154185,13 +157489,14 @@
         "sro": 1750361272,
         "LaFeeClochette": 1750146687,
         "Josephine60310": 1750375563,
+        "Solight777": 1758614263,
         "SauvageNoble": 1750576451
       }
     },
     "Pioupioutte": {
       "index": 10460,
       "owner_key": "E7fkhjXi1z5LDnH1YzkzZQMhi1Wehxn6gecBFn7WMSDV",
-      "balance": 574264,
+      "balance": 613950,
       "membership_expire_on": 1699880616,
       "next_cert_issuable_on": 1680343845,
       "certs_received": {
@@ -154225,9 +157530,9 @@
     "BeatricePieper": {
       "index": 5820,
       "owner_key": "E7m6N5W8NJx6C9gorqBJr5Ne85PtReSniinELXgrRPAy",
-      "balance": 161767,
+      "balance": 61453,
       "membership_expire_on": 1718551218,
-      "next_cert_issuable_on": 1688611027,
+      "next_cert_issuable_on": 1696261304,
       "certs_received": {
         "kapis": 1697226923,
         "Cholo": 1750884151,
@@ -154246,7 +157551,7 @@
         "Josepeuta": 1704163378,
         "Baba": 1734583035,
         "LI21": 1712776298,
-        "MacaMartin": 1697226640,
+        "MacaMartin": 1757217509,
         "PabloLykos": 1732668799,
         "Ayllon": 1697236626,
         "Toniojacobo": 1751646295,
@@ -154286,9 +157591,9 @@
     "Sylvieswing82": {
       "index": 5927,
       "owner_key": "E83z6zFLPRrTgersQBVq5woy2tNk5d7ApzqHe4QZNrJr",
-      "balance": 1428747,
+      "balance": 1490433,
       "membership_expire_on": 1720823571,
-      "next_cert_issuable_on": 1692763714,
+      "next_cert_issuable_on": 1696059166,
       "certs_received": {
         "Gerg": 1699927984,
         "Fleur-du-renouveau": 1697784585,
@@ -154314,9 +157619,9 @@
     "bea": {
       "index": 9218,
       "owner_key": "E855XhtBbpxo7KMccPiPrMpmfoANHvZMqe3vHKrw1Kkg",
-      "balance": 357861,
+      "balance": 397547,
       "membership_expire_on": 1721250659,
-      "next_cert_issuable_on": 1668051545,
+      "next_cert_issuable_on": 1695260893,
       "certs_received": {
         "Intercanvi": 1723334759,
         "ManelG": 1723708528,
@@ -154332,7 +157637,7 @@
     "superjmt": {
       "index": 4730,
       "owner_key": "E85h58XCzRf8BNyKLTN6YiiFhKkZ7xQvc2oKsR78yMLx",
-      "balance": 819728,
+      "balance": 859414,
       "membership_expire_on": 1705868382,
       "next_cert_issuable_on": 1674358823,
       "certs_received": {
@@ -154356,7 +157661,7 @@
     "Gontzal": {
       "index": 9291,
       "owner_key": "E8E97hf8syzvYSb5PYvHuriHkViJowcSaxUnguBSf56Q",
-      "balance": 296184,
+      "balance": 328394,
       "membership_expire_on": 1720544668,
       "next_cert_issuable_on": 1682928817,
       "certs_received": {
@@ -154388,7 +157693,7 @@
     "Ver36": {
       "index": 13026,
       "owner_key": "E8Jv3qss4sVawe6CEagNwSxJ1rRhdLi72rsmXq2pVR77",
-      "balance": 61284,
+      "balance": 97770,
       "membership_expire_on": 1719582072,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -154410,7 +157715,7 @@
     "fraisedetihange": {
       "index": 8412,
       "owner_key": "E8Y9KRnAB5yFHnPNF6SLMyHvYCBhNKC92kVBfihVpoz3",
-      "balance": 392639,
+      "balance": 432325,
       "membership_expire_on": 1722373883,
       "next_cert_issuable_on": 1678112644,
       "certs_received": {
@@ -154426,7 +157731,7 @@
     "raynald07": {
       "index": 7667,
       "owner_key": "E8gxQ3uziuHsoby3GqJJPzPE5dufwzPuo1e69uRM5Dki",
-      "balance": 526990,
+      "balance": 566676,
       "membership_expire_on": 1706476825,
       "next_cert_issuable_on": 1665200270,
       "certs_received": {
@@ -154443,13 +157748,16 @@
     "Margaux776901": {
       "index": 10311,
       "owner_key": "E8skszE37NN6gZsZnrvpAv5foGZv4ESEtNPWCbjfnMuL",
-      "balance": 320202,
-      "membership_expire_on": 1699736437,
-      "next_cert_issuable_on": 1692494974,
+      "balance": 359888,
+      "membership_expire_on": 1727191695,
+      "next_cert_issuable_on": 1695803027,
       "certs_received": {
         "cedre": 1731299429,
+        "jaya": 1758835204,
         "Tatiana": 1731297129,
         "ceti12": 1731296159,
+        "yanis07": 1758835470,
+        "CatPMt": 1757960056,
         "Ninou01": 1731348467,
         "gallatinov": 1731301502
       }
@@ -154479,7 +157787,7 @@
     "Romie": {
       "index": 7415,
       "owner_key": "E91ePzXqkJsG7Qc1HXQfJN8kqknDMJsiwtiQHboTPM2",
-      "balance": 555059,
+      "balance": 594745,
       "membership_expire_on": 1707575550,
       "next_cert_issuable_on": 1662472276,
       "certs_received": {
@@ -154504,7 +157812,7 @@
     "Nathalie": {
       "index": 6283,
       "owner_key": "E93LUkEEVr1jZcwi11Ci87YDq3nK1fNJsq4oxHAqQ4WV",
-      "balance": 670657,
+      "balance": 710343,
       "membership_expire_on": 1700674836,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -154518,7 +157826,7 @@
     "Jeff19320": {
       "index": 8852,
       "owner_key": "E94uakJNwLovMiduB5ahdsZKbXKJT8Uj6GoZcUh6q55D",
-      "balance": 435006,
+      "balance": 474692,
       "membership_expire_on": 1709526183,
       "next_cert_issuable_on": 1680534393,
       "certs_received": {
@@ -154533,7 +157841,7 @@
     "Astroctor": {
       "index": 8550,
       "owner_key": "E95hRonSc9jNv98pDCjN6HE1saeB633mkcdQwrAQNth5",
-      "balance": 373776,
+      "balance": 413462,
       "membership_expire_on": 1723645659,
       "next_cert_issuable_on": 1655776843,
       "certs_received": {
@@ -154549,8 +157857,8 @@
     "marienarjoux": {
       "index": 3696,
       "owner_key": "E9A2QqwBjXJshLw2Zv6RthV16tJT69DbxxeNd5sXUaKd",
-      "balance": 1091149,
-      "membership_expire_on": 1694791321,
+      "balance": 1107169,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1646878953,
       "certs_received": {
         "Underscore": 1698200335,
@@ -154567,7 +157875,7 @@
     "Gnome": {
       "index": 10748,
       "owner_key": "E9GSXi1fXrWYhGn28YCaFoJSPnBoQ9Sidh82BzSBX5uK",
-      "balance": 283161,
+      "balance": 322847,
       "membership_expire_on": 1701825474,
       "next_cert_issuable_on": 1680613998,
       "certs_received": {
@@ -154583,7 +157891,7 @@
     "Smayah": {
       "index": 6963,
       "owner_key": "E9Png1JdJSmhYVb6DCtqTHCLXJ6cypX229dxADqQRwFS",
-      "balance": 332033,
+      "balance": 371719,
       "membership_expire_on": 1698408619,
       "next_cert_issuable_on": 1683843696,
       "certs_received": {
@@ -154615,9 +157923,9 @@
     "Marwen": {
       "index": 9879,
       "owner_key": "E9aAsExjgBBoj3euG3T1Di9R3Eh7zqnvV2T6AGQGy1Q4",
-      "balance": 54257,
-      "membership_expire_on": 1696287458,
-      "next_cert_issuable_on": 1682437199,
+      "balance": 19443,
+      "membership_expire_on": 1725126162,
+      "next_cert_issuable_on": 1693640264,
       "certs_received": {
         "Bogart": 1728614080,
         "mae": 1728590777,
@@ -154658,7 +157966,7 @@
     "AlenaClam": {
       "index": 8802,
       "owner_key": "E9tC8z7ksiHzWqLavCtUT9Vhf2w5Cm598ibe2gFnS9oQ",
-      "balance": 446706,
+      "balance": 486392,
       "membership_expire_on": 1713741711,
       "next_cert_issuable_on": 1663670688,
       "certs_received": {
@@ -154672,7 +157980,7 @@
     "Katmanda1": {
       "index": 8649,
       "owner_key": "E9vymKMarUiGZSKALt3j5oqpLArbdzx1fRHtqyeieLv3",
-      "balance": 517667,
+      "balance": 557353,
       "membership_expire_on": 1714541667,
       "next_cert_issuable_on": 1683056277,
       "certs_received": {
@@ -154690,40 +157998,40 @@
     "lilithdu34": {
       "index": 1880,
       "owner_key": "E9zscftrAswWYZwAm7o3YK4nD1cXmKdJBeX2r3D9zk7d",
-      "balance": 693501,
+      "balance": 720687,
       "membership_expire_on": 1714214474,
-      "next_cert_issuable_on": 1693398833,
+      "next_cert_issuable_on": 1696724374,
       "certs_received": {
         "Stessy": 1737741948,
         "nashira": 1735847557,
         "Bambou": 1717149541,
-        "AmeHC": 1701245401,
+        "AmeHC": 1756604584,
         "LouiseRun": 1706425506,
         "Ludolol13200": 1750725484,
         "issandrol": 1709095176,
+        "Luc": 1756882124,
         "Murmure": 1717982555,
         "LouisanneRun": 1706339967,
         "Vievillejp": 1710446555,
         "Florencefleur": 1722141929,
-        "ClaudeM": 1693678316,
         "NeyKrom": 1710975946,
         "MoulinMuriel": 1755033738,
         "HenriCotonnec": 1737173159,
         "Agnes5629": 1714978386,
         "CorinneCoco": 1700881809,
-        "twix_bis": 1694459463,
         "Did-yeah": 1723585831,
         "fredpel": 1708803119,
         "Sandrine-": 1716585391,
         "FloP": 1714866205,
         "MatHC": 1700883345,
+        "Sandy": 1758132748,
         "ChristineWilloth26": 1718900101
       }
     },
     "Deepti": {
       "index": 11048,
       "owner_key": "EA6t41tM3XKCebrVuownY5G4wb7T6EXybFfRq5FASJMf",
-      "balance": 269372,
+      "balance": 309058,
       "membership_expire_on": 1703598159,
       "next_cert_issuable_on": 1689044465,
       "certs_received": {
@@ -154738,7 +158046,7 @@
     "Attilax": {
       "index": 948,
       "owner_key": "EAHgNyYsxmS7YSfuQsEzEWwKnD2UyMzwVTuBnstMSk3e",
-      "balance": 472000,
+      "balance": 511986,
       "membership_expire_on": 1710683144,
       "next_cert_issuable_on": 1693067358,
       "certs_received": {
@@ -154778,8 +158086,8 @@
     "Melek": {
       "index": 6423,
       "owner_key": "EANViFVQXVWhAa3e78AdWJAx1nVPZmzyyRbyr9HomgRA",
-      "balance": 638027,
-      "membership_expire_on": 1700215829,
+      "balance": 677713,
+      "membership_expire_on": 1726617315,
       "next_cert_issuable_on": 1674393856,
       "certs_received": {
         "ChristelleRousseau": 1703022534,
@@ -154794,7 +158102,7 @@
     "Michelet16": {
       "index": 6096,
       "owner_key": "EAXyBQ6rWUwNYdxnU9nWC7nQU7EVksHFWMnQgnU64VsS",
-      "balance": 423718,
+      "balance": 463404,
       "membership_expire_on": 1720032879,
       "next_cert_issuable_on": 1656492355,
       "certs_received": {
@@ -154818,7 +158126,7 @@
       "owner_key": "EAZCYbWzqSnCCpgWPtme7e8kctEHsZ7EeURYR7V4ggJX",
       "balance": 638664,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632886710,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "simone_c86": 1697072426
       }
@@ -154826,7 +158134,7 @@
     "liligouchi": {
       "index": 11451,
       "owner_key": "EAdec7EHndjhDB4YwWjEU8HYs4LB69EkSf3KnUGBZowa",
-      "balance": 525298,
+      "balance": 564984,
       "membership_expire_on": 1702142411,
       "next_cert_issuable_on": 1678273292,
       "certs_received": {
@@ -154849,7 +158157,7 @@
     "AurelieMarie": {
       "index": 11493,
       "owner_key": "EAoAo3aK8jvb7ERj49g6KjtNnvncvk1idUEXkhH15s9S",
-      "balance": 133080,
+      "balance": 172766,
       "membership_expire_on": 1707077035,
       "next_cert_issuable_on": 1684931298,
       "certs_received": {
@@ -154863,7 +158171,7 @@
     "Sidonie67": {
       "index": 2404,
       "owner_key": "EAqPgdcyRC1SexgttgdBH8HxSV2gcksPgPk1Ji54aPGY",
-      "balance": 1162949,
+      "balance": 1462949,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1665061929,
       "certs_received": {
@@ -154876,13 +158184,14 @@
     "Marieannick": {
       "index": 11911,
       "owner_key": "EAsUfhKR8A35prqoy1rKAFHSDco88FLyMab3xBHexXqM",
-      "balance": 240666,
+      "balance": 260352,
       "membership_expire_on": 1709476481,
-      "next_cert_issuable_on": 1690728921,
+      "next_cert_issuable_on": 1695638755,
       "certs_received": {
         "Matris35": 1750148054,
         "Jerome035": 1741380244,
         "Rebirth35": 1741381339,
+        "Pascale72": 1756700628,
         "CarolAmethyste": 1750800513,
         "Yann35": 1741469402,
         "JeanJoel35": 1741421643,
@@ -154892,7 +158201,7 @@
     "Lea974": {
       "index": 9281,
       "owner_key": "EAy8MBSNA4P5NQQk3QigXT4DzLMesqmZDiRjQw1ThC7s",
-      "balance": 458809,
+      "balance": 478495,
       "membership_expire_on": 1719612027,
       "next_cert_issuable_on": 1690066311,
       "certs_received": {
@@ -154918,7 +158227,7 @@
     "JuanAntonioSanJose": {
       "index": 13091,
       "owner_key": "EAyq5u6vHAZFM5go5bEneHH2jKzDqcNFSLauPAacjc8X",
-      "balance": 88208,
+      "balance": 120694,
       "membership_expire_on": 1720051091,
       "next_cert_issuable_on": 1690772308,
       "certs_received": {
@@ -154942,7 +158251,7 @@
       "owner_key": "EAzvBgu534ZfQ4bwi6icKK6MyuFSFvUnGARGEThT8Hx8",
       "balance": 696063,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1633491846,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "LauQui": 1704165392
       }
@@ -154956,22 +158265,16 @@
       "certs_received": {
         "MarineDR": 1717190241,
         "Jiji": 1713068782,
-        "DelphineDietsch": 1695959763,
-        "Martine51": 1695918800,
         "Eric": 1703116561,
         "Ded": 1716993138,
-        "Olacelou": 1696315179,
         "Luna": 1719781064,
-        "thierryR51": 1695886218,
-        "Syldess": 1696210286,
-        "FatimaMIEL51": 1696215946,
         "Titine": 1712294314
       }
     },
     "IRA": {
       "index": 11868,
       "owner_key": "EB6jswmYX9stSH5eMJeBcKBSaru716woqX9jsMfyGrRY",
-      "balance": 160028,
+      "balance": 170214,
       "membership_expire_on": 1709300646,
       "next_cert_issuable_on": 1688442051,
       "certs_received": {
@@ -154986,7 +158289,7 @@
     "didseize": {
       "index": 11028,
       "owner_key": "EB883GCi9wx6HsVdq6rCYm4YDgAXJZM4y69CCPZhw6C3",
-      "balance": 241981,
+      "balance": 281667,
       "membership_expire_on": 1703622530,
       "next_cert_issuable_on": 1677232334,
       "certs_received": {
@@ -155017,12 +158320,11 @@
     "Hakim31": {
       "index": 954,
       "owner_key": "EBCfsfrwp2c4Ad119irv3eiDjn4msh4W2brRx2CLKWM2",
-      "balance": 1436520,
+      "balance": 1476206,
       "membership_expire_on": 1706343111,
       "next_cert_issuable_on": 1658650264,
       "certs_received": {
-        "jfa": 1696548750,
-        "Vivakvo": 1694928430,
+        "Vivakvo": 1755143265,
         "MarliMarl": 1709443086,
         "hv23": 1706305863,
         "_Wapetoooooooo_": 1707011604,
@@ -155034,9 +158336,9 @@
     "Titus": {
       "index": 2825,
       "owner_key": "EBE9wtQREgFwR9Z5nGXc8MWnye6cpSgE7LQuiDJGgymv",
-      "balance": 1511439,
+      "balance": 2105177,
       "membership_expire_on": 1708124188,
-      "next_cert_issuable_on": 1692688887,
+      "next_cert_issuable_on": 1694148289,
       "certs_received": {
         "Hugues35": 1728931017,
         "Cygogne22": 1747512823,
@@ -155052,6 +158354,7 @@
         "Migus01": 1746932912,
         "YANNIERRE": 1751397255,
         "Kilibix": 1737400991,
+        "Vivant3000": 1757723468,
         "Kimedo": 1746410480,
         "GeoTT": 1741046620,
         "adamscurtis": 1740701028,
@@ -155064,11 +158367,10 @@
     "Olipez": {
       "index": 244,
       "owner_key": "EBFTCrrTTSR4HqBkP5s84UJjVCUKCVfZAA4LbtsDbYPf",
-      "balance": 1935501,
-      "membership_expire_on": 1722432389,
+      "balance": 1954725,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1671167287,
       "certs_received": {
-        "Damien": 1695089417,
         "anouchka": 1734206685,
         "Reumy": 1723487688,
         "Pruls": 1723825902,
@@ -155078,13 +158380,12 @@
     "Guillemette": {
       "index": 299,
       "owner_key": "EBGeL7dNSa44Cb4YHph9NG5wcLmRDYRseNbGLLN4SQBs",
-      "balance": 1747728,
+      "balance": 1787414,
       "membership_expire_on": 1715049568,
       "next_cert_issuable_on": 1671517728,
       "certs_received": {
         "GUL40_Fr1": 1715727651,
         "GUL40_L21": 1715199799,
-        "Kali": 1693991051,
         "GUL40_K1r": 1715199799,
         "LaurenceIG": 1750811627,
         "ThomasBourdon": 1710385224,
@@ -155107,7 +158408,7 @@
     "JMa": {
       "index": 10951,
       "owner_key": "EBTUqNYArxJMj69GPmSP9yAG2GVd2XDdsn8wtq163xEu",
-      "balance": 279394,
+      "balance": 319080,
       "membership_expire_on": 1703025046,
       "next_cert_issuable_on": 1687921117,
       "certs_received": {
@@ -155134,14 +158435,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1639022694,
       "certs_received": {
-        "dondiego78": 1703250798,
-        "Chlea2010": 1696686808
+        "dondiego78": 1703250798
       }
     },
     "Framb": {
       "index": 10478,
       "owner_key": "EBZ9XCk3eodYubcu9qEEfR2TbdaWBZDy3qGkY6ZZCS8j",
-      "balance": 338805,
+      "balance": 378491,
       "membership_expire_on": 1700687372,
       "next_cert_issuable_on": 1676032832,
       "certs_received": {
@@ -155165,9 +158465,9 @@
     "MariaDiniz": {
       "index": 11586,
       "owner_key": "EBiDnp47j9ykuBsWHNsBjCpMBpBcPSVWCnwthpmSBfBe",
-      "balance": 197267,
+      "balance": 161453,
       "membership_expire_on": 1707481810,
-      "next_cert_issuable_on": 1686587774,
+      "next_cert_issuable_on": 1696485025,
       "certs_received": {
         "YugavanOrloff": 1739145505,
         "LionelJ": 1739394643,
@@ -155180,7 +158480,7 @@
     "Charlon": {
       "index": 11300,
       "owner_key": "EBuN4ArwVExCzLCydqbN4Q5ZMjw1oxFkevn75BJ3vNw6",
-      "balance": 298020,
+      "balance": 337706,
       "membership_expire_on": 1704069748,
       "next_cert_issuable_on": 1679930842,
       "certs_received": {
@@ -155194,19 +158494,18 @@
     "Noa07": {
       "index": 5831,
       "owner_key": "EC5Hj8yqVyFX38nkSf8ctS2psgDW3X2Fk9yEgNEWbYgA",
-      "balance": 595699,
+      "balance": 635385,
       "membership_expire_on": 1721164246,
-      "next_cert_issuable_on": 1665991187,
+      "next_cert_issuable_on": 1696035233,
       "certs_received": {
-        "tiphaine": 1696728813,
         "Philippe26": 1699685768,
         "berlumi": 1715148398,
         "arfocine": 1696816394,
         "Laurentld": 1696816394,
         "thieARD07": 1697123953,
-        "Reumy": 1696557892,
         "poselongueP": 1715147088,
         "DCat": 1708457030,
+        "Jmbe": 1759592193,
         "SylvainGabarrou": 1701382378,
         "Naxaia13": 1724781456,
         "Claire": 1715150806,
@@ -155230,7 +158529,7 @@
     "guillaumemn": {
       "index": 2119,
       "owner_key": "EC8LnWERvFQXA9Ld1ApfQ247GAEGpohjVneN5UgZsKEN",
-      "balance": 480946,
+      "balance": 520632,
       "membership_expire_on": 1700302731,
       "next_cert_issuable_on": 1640233579,
       "certs_received": {
@@ -155246,7 +158545,7 @@
     "MikeH2000": {
       "index": 11380,
       "owner_key": "ECDEQYtX5pstYbUvCvHEHXjCrUoZgaLmkHUHMTmHKTUX",
-      "balance": 229152,
+      "balance": 268838,
       "membership_expire_on": 1703380029,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -155261,8 +158560,8 @@
     "crisleon": {
       "index": 10713,
       "owner_key": "ECGtwE3pT8U8DP15Aq6AuWA5b9GfowUt87oTuPnYxa4e",
-      "balance": 77475,
-      "membership_expire_on": 1701368472,
+      "balance": 81661,
+      "membership_expire_on": 1727803505,
       "next_cert_issuable_on": 1688744926,
       "certs_received": {
         "Nounoune": 1747187663,
@@ -155286,7 +158585,7 @@
     "Simounet": {
       "index": 1359,
       "owner_key": "ECThqQieuhGy9JUHNRYHAL1FQeDweeW47JCQN59xH2oQ",
-      "balance": 1558854,
+      "balance": 1598540,
       "membership_expire_on": 1715948627,
       "next_cert_issuable_on": 1657950477,
       "certs_received": {
@@ -155300,8 +158599,8 @@
     "flo": {
       "index": 4419,
       "owner_key": "ECY2LzykCpGV69nxSv6ZgbLMdTi8cnMC2WxVWoJytyCA",
-      "balance": 955565,
-      "membership_expire_on": 1696517841,
+      "balance": 993095,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668176993,
       "certs_received": {
         "GuyPeq11": 1703108842,
@@ -155327,9 +158626,9 @@
     "franktransition34": {
       "index": 3897,
       "owner_key": "ECbQAbFAkEN6XwHPyNjX9TnBpfyG3dnADnrygQr496r3",
-      "balance": 1272675,
+      "balance": 1302361,
       "membership_expire_on": 1709847048,
-      "next_cert_issuable_on": 1679454058,
+      "next_cert_issuable_on": 1693303959,
       "certs_received": {
         "Helene-petiteriviere": 1698018359,
         "AnneLP": 1721981324,
@@ -155349,7 +158648,7 @@
     "K_Reine": {
       "index": 13278,
       "owner_key": "ECgK7VYVefni4gFamrdQpz5ziNhcjrtU3dK5Jn1yvrkK",
-      "balance": 38326,
+      "balance": 76012,
       "membership_expire_on": 1722290971,
       "next_cert_issuable_on": 1693554452,
       "certs_received": {
@@ -155391,7 +158690,7 @@
     "Juliasonrisas": {
       "index": 12897,
       "owner_key": "EDB7chzCBdtUCnqFZquVeto4a65FjeRkPrqcV8NwVbTx",
-      "balance": 149836,
+      "balance": 188522,
       "membership_expire_on": 1718387724,
       "next_cert_issuable_on": 1693003787,
       "certs_received": {
@@ -155408,7 +158707,7 @@
     "Mer": {
       "index": 11771,
       "owner_key": "EDCE7mMqvMUiajBCRKMNm2CXaxrqvgNzm477GyJL52HX",
-      "balance": 132341,
+      "balance": 152027,
       "membership_expire_on": 1708979953,
       "next_cert_issuable_on": 1682352133,
       "certs_received": {
@@ -155434,7 +158733,7 @@
     "Annie73": {
       "index": 7537,
       "owner_key": "EDKbuWaqcRNw3rqVQfvPVrGD28s9AeNCZ9w9wu5ndFRn",
-      "balance": 54468,
+      "balance": 94154,
       "membership_expire_on": 1709831822,
       "next_cert_issuable_on": 1689229201,
       "certs_received": {
@@ -155457,7 +158756,7 @@
     "Anya": {
       "index": 1644,
       "owner_key": "EDYctDBVchAMQvNY6jDaqAhgtH2E6E3hfiVuZB3dn4He",
-      "balance": 1366025,
+      "balance": 1405711,
       "membership_expire_on": 1710809944,
       "next_cert_issuable_on": 1679326498,
       "certs_received": {
@@ -155467,7 +158766,6 @@
         "fbuland": 1726328905,
         "BenoitFeryn": 1707061367,
         "Matograine": 1723782082,
-        "JacquesMorot": 1694798299,
         "Zheny": 1723251695,
         "jytou": 1721076040,
         "yannig": 1746665413,
@@ -155478,7 +158776,7 @@
     "AliDoria": {
       "index": 10097,
       "owner_key": "EDjbeqYayNXFh7pSqym5VDx1xmsqTJnjDgkGs1EtSZ6C",
-      "balance": 250939,
+      "balance": 290625,
       "membership_expire_on": 1722040874,
       "next_cert_issuable_on": 1667829143,
       "certs_received": {
@@ -155493,9 +158791,9 @@
     "Flore66": {
       "index": 4257,
       "owner_key": "EDkoKdUipKBBbrNZgpJRSKnuVL6KbbpWjuv9rCzUAL89",
-      "balance": 268631,
+      "balance": 282317,
       "membership_expire_on": 1717422169,
-      "next_cert_issuable_on": 1681740035,
+      "next_cert_issuable_on": 1694096972,
       "certs_received": {
         "ARFbea": 1726946154,
         "Leprofdebatterie": 1727736447,
@@ -155513,7 +158811,7 @@
     "OtreB": {
       "index": 9649,
       "owner_key": "EDp6Lmu7k1xCpJdMbYX4kHjsnvNWDtYv3azp8L7dbjUi",
-      "balance": 430546,
+      "balance": 432832,
       "membership_expire_on": 1719224154,
       "next_cert_issuable_on": 1688804461,
       "certs_received": {
@@ -155566,7 +158864,7 @@
     "VictorDevora": {
       "index": 11839,
       "owner_key": "EE1KL4rGSHUowepWc8giKLwbY913p8wRFinu9244SorD",
-      "balance": 176405,
+      "balance": 115091,
       "membership_expire_on": 1709336378,
       "next_cert_issuable_on": 1689938842,
       "certs_received": {
@@ -155591,17 +158889,30 @@
       "balance": 1416566,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
+      "certs_received": {}
+    },
+    "JoOli": {
+      "index": 13547,
+      "owner_key": "EE33vP958K7DDRpwdZwRGx8SC9AtKqeYiwyt6w3RKiqk",
+      "balance": 29006,
+      "membership_expire_on": 1725899542,
+      "next_cert_issuable_on": 0,
       "certs_received": {
-        "OlivierLa": 1693695204
+        "BudFox": 1757458032,
+        "lumirose": 1757459954,
+        "BOUbou007": 1757525984,
+        "Pakatiwa": 1757521011,
+        "PatHamster": 1757464298
       }
     },
     "DBrrull": {
       "index": 12962,
       "owner_key": "EE6GXNZRBznorev4149Pkcspp9U2P3V5giWpGofQk8hY",
-      "balance": 33692,
+      "balance": 33378,
       "membership_expire_on": 1718907026,
-      "next_cert_issuable_on": 1691584124,
+      "next_cert_issuable_on": 1696344441,
       "certs_received": {
+        "Zap": 1757146650,
         "philboybada63": 1750630378,
         "Nataliedanseencouple": 1750630378,
         "SylvieT": 1750462851,
@@ -155630,7 +158941,7 @@
     "Zheny": {
       "index": 209,
       "owner_key": "EEGWnG8wagKKxaReUCPnGWDrYGTDzfJ3gf5Xjryn1gWv",
-      "balance": 1556030,
+      "balance": 1595716,
       "membership_expire_on": 1702590291,
       "next_cert_issuable_on": 1660208495,
       "certs_received": {
@@ -155652,7 +158963,7 @@
     "couetmikael": {
       "index": 7223,
       "owner_key": "EEdCsFLAes5mLgg53RCz3hyyUnDB3GTQ6rRHykrQP1Ek",
-      "balance": 457937,
+      "balance": 497623,
       "membership_expire_on": 1704624976,
       "next_cert_issuable_on": 1688866436,
       "certs_received": {
@@ -155693,7 +159004,7 @@
     "Sandsao": {
       "index": 10476,
       "owner_key": "EEqfsTt8fzAZypoRBAotPMFPrY4vvh3aJTTYRPyM5rbi",
-      "balance": 400105,
+      "balance": 439791,
       "membership_expire_on": 1700494473,
       "next_cert_issuable_on": 1669646678,
       "certs_received": {
@@ -155707,7 +159018,7 @@
     "Danie45": {
       "index": 11123,
       "owner_key": "EExQkLkoSuMHVGH5YVPJ4HZZ6zquZMbTfeyrygMWgJjU",
-      "balance": 183986,
+      "balance": 186672,
       "membership_expire_on": 1704475660,
       "next_cert_issuable_on": 1690945037,
       "certs_received": {
@@ -155731,7 +159042,7 @@
     "ClaudeSwan": {
       "index": 13299,
       "owner_key": "EEzeedyUWBY7NhcPDudeBfDDsSi9Pd3v8BUjYaSuQ1E8",
-      "balance": 35972,
+      "balance": 75658,
       "membership_expire_on": 1721309013,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -155778,7 +159089,7 @@
     "tomangel": {
       "index": 7742,
       "owner_key": "EFDV6uBnqUYr6VjhTcRK2CZHRSgXhS4jRHopk9nebpL6",
-      "balance": 595059,
+      "balance": 634745,
       "membership_expire_on": 1715376024,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -155792,9 +159103,9 @@
     "BenNature": {
       "index": 6640,
       "owner_key": "EFDbRF7inU73NKTHhovLjJ1dpF63bjackdMNgSkmpNnJ",
-      "balance": 344663,
-      "membership_expire_on": 1699297969,
-      "next_cert_issuable_on": 1679006944,
+      "balance": 375805,
+      "membership_expire_on": 1726496639,
+      "next_cert_issuable_on": 1695011039,
       "certs_received": {
         "JessyRipert": 1705605285,
         "Bich": 1710207470,
@@ -155824,7 +159135,7 @@
     "Elpelu": {
       "index": 9476,
       "owner_key": "EFKs37vhCCKmAzQkzKQPnKmnx5vxENsb9KnrtkphM5sJ",
-      "balance": 377618,
+      "balance": 438308,
       "membership_expire_on": 1723861405,
       "next_cert_issuable_on": 1685417636,
       "certs_received": {
@@ -155833,6 +159144,7 @@
         "Vichara": 1725835996,
         "Alfonso": 1725582023,
         "Lurtxu": 1735593487,
+        "SantiTrinquete": 1759361803,
         "Mimi5691": 1735404198,
         "LysVida": 1744764330,
         "Leia": 1725558437,
@@ -155859,7 +159171,7 @@
     "MaiS": {
       "index": 10528,
       "owner_key": "EFP8PKDeJF4ErEoZRBG6SK117JQjgpvX6xta1SgvvXSY",
-      "balance": 251338,
+      "balance": 301024,
       "membership_expire_on": 1700670266,
       "next_cert_issuable_on": 1676163700,
       "certs_received": {
@@ -155871,6 +159183,7 @@
         "ElyneT": 1737080947,
         "KarinePapin": 1732483903,
         "Lapinou": 1736805074,
+        "Jadom": 1759553015,
         "sens": 1732511154,
         "Mashpro": 1754551818
       }
@@ -155878,9 +159191,9 @@
     "Pituverduras": {
       "index": 13423,
       "owner_key": "EFQ6NMEHQm66Gvbv5tyM5zDu1ghRGqsAbriLVwxGjYMF",
-      "balance": 642662,
+      "balance": 818448,
       "membership_expire_on": 1724343596,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693810762,
       "certs_received": {
         "MonyKan": 1755927196,
         "Anam": 1755906509,
@@ -155892,17 +159205,14 @@
     "PatrickGilles": {
       "index": 4799,
       "owner_key": "EFSm7XFEeJv8ox2mehvWb7nNwVpWFsZmmmjN9Ka6WapN",
-      "balance": 900115,
+      "balance": 939801,
       "membership_expire_on": 1714751781,
       "next_cert_issuable_on": 1690956912,
       "certs_received": {
         "Aude49": 1748121282,
-        "Princesse": 1694133596,
         "Sylvie": 1753597598,
-        "Lavoixdesquatrevents": 1696022848,
         "Helene09": 1718518071,
         "JeandMeryMAYOPARRA": 1734549889,
-        "Nomadanne": 1693984737,
         "AbelGilles": 1748121001,
         "Cath44": 1753339339
       }
@@ -155910,7 +159220,7 @@
     "romane": {
       "index": 3254,
       "owner_key": "EFXSocS3FoTXjQ4S6eGS3KC3JmuH3TrVKBB9oihNMkc5",
-      "balance": 1208121,
+      "balance": 1247807,
       "membership_expire_on": 1709913440,
       "next_cert_issuable_on": 1679648858,
       "certs_received": {
@@ -155927,12 +159237,11 @@
     "Annachronik": {
       "index": 4007,
       "owner_key": "EFYC5yFiB7A1jzbFxZCj7RMVaW6NY2QpsKMaAJqum3ZP",
-      "balance": 1319007,
+      "balance": 1358693,
       "membership_expire_on": 1718456849,
       "next_cert_issuable_on": 1673248252,
       "certs_received": {
         "AtmaRajpreet": 1744084575,
-        "Mhjo": 1693816059,
         "AtmaRajprem": 1744084575,
         "Krikri": 1747283788,
         "GaelleMry": 1725760345,
@@ -155942,7 +159251,7 @@
     "Lucide": {
       "index": 13287,
       "owner_key": "EFZmst3poXRTCdmEV1pcoimcDNarVB5dPtfvwmp4Lcju",
-      "balance": 14540,
+      "balance": 54226,
       "membership_expire_on": 1722457257,
       "next_cert_issuable_on": 1693235588,
       "certs_received": {
@@ -155956,7 +159265,7 @@
     "Romarin": {
       "index": 10141,
       "owner_key": "EFfQcy1aGcBJznQGWMeFBCtC8wXnAYcMiw3K7ULZN2vT",
-      "balance": 312562,
+      "balance": 352248,
       "membership_expire_on": 1698190722,
       "next_cert_issuable_on": 1692892648,
       "certs_received": {
@@ -155976,7 +159285,7 @@
     "natacha-b": {
       "index": 12508,
       "owner_key": "EFfjVurJN6TVYaw6oT5GGhrZ4jbadM38PSzDkkbmRRB2",
-      "balance": 130296,
+      "balance": 169982,
       "membership_expire_on": 1714419255,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -155991,7 +159300,7 @@
     "Barbarie-Crespin": {
       "index": 9574,
       "owner_key": "EG1Muy7oGgCtGTsWrU2YqdcpimvFLTv5K9UigWUZETMF",
-      "balance": 583336,
+      "balance": 602022,
       "membership_expire_on": 1719667535,
       "next_cert_issuable_on": 1688193937,
       "certs_received": {
@@ -156018,7 +159327,7 @@
     "Geo": {
       "index": 3998,
       "owner_key": "EGAdF2xEukrfVKTM3nUHC8xg3u3HR5BxE41C24iwgMxc",
-      "balance": 710953,
+      "balance": 660953,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -156059,7 +159368,7 @@
     "dadagu31": {
       "index": 13198,
       "owner_key": "EGh2ZKPToM3V8p7EVrBhJG5DnazHNKP8hWBaeDwQEHYC",
-      "balance": 44856,
+      "balance": 84542,
       "membership_expire_on": 1721438388,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -156090,7 +159399,7 @@
     "Cathy974": {
       "index": 11071,
       "owner_key": "EGpkgce64LVYnCoCEgCHpUyHpvUdC5iNCse4BkMBWxGM",
-      "balance": 251804,
+      "balance": 291490,
       "membership_expire_on": 1703778038,
       "next_cert_issuable_on": 1676726357,
       "certs_received": {
@@ -156113,8 +159422,8 @@
     "Padme": {
       "index": 10195,
       "owner_key": "EGwdvJLCfH9uvCynhXn6FCu77pBcb6HoCT2ru8v3EddM",
-      "balance": 91321,
-      "membership_expire_on": 1698896827,
+      "balance": 144307,
+      "membership_expire_on": 1725911437,
       "next_cert_issuable_on": 1693472135,
       "certs_received": {
         "Nounoune": 1737076790,
@@ -156133,6 +159442,7 @@
         "Erikpm": 1747277219,
         "crisleon": 1733431806,
         "Rares": 1749369596,
+        "carmenpeluquera": 1754971084,
         "Micha": 1735763682,
         "Merlinor": 1740245012,
         "noemi": 1745039831,
@@ -156148,8 +159458,8 @@
     "Chantal04": {
       "index": 6687,
       "owner_key": "EH2JvA8SSzrQRgVCjDWBJYk8fUjLJ2GQ6APwZ6soYoh3",
-      "balance": 593429,
-      "membership_expire_on": 1701463015,
+      "balance": 633115,
+      "membership_expire_on": 1728138699,
       "next_cert_issuable_on": 1670083391,
       "certs_received": {
         "MarcoSko": 1704831723,
@@ -156177,7 +159487,7 @@
     "Stephanie-dev-premila": {
       "index": 13300,
       "owner_key": "EH9tAPLVa5fYyYyJbZdbKvfy1tyUmx2rCaGUtyYuKttf",
-      "balance": 42904,
+      "balance": 82590,
       "membership_expire_on": 1721915107,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -156191,7 +159501,7 @@
     "Claire": {
       "index": 4071,
       "owner_key": "EHD8f9qZGjpLRG62sDjRbvfRcWU8yaQgU2GYDxyGo1Nh",
-      "balance": 949837,
+      "balance": 989523,
       "membership_expire_on": 1724069986,
       "next_cert_issuable_on": 1682312607,
       "certs_received": {
@@ -156223,9 +159533,9 @@
     "Malice26": {
       "index": 6126,
       "owner_key": "EHDTm5PBbXvtnuGCYL8bh34GCh7HhZLE6yvAT1aBSQZN",
-      "balance": 564542,
+      "balance": 604228,
       "membership_expire_on": 1701624954,
-      "next_cert_issuable_on": 1690871994,
+      "next_cert_issuable_on": 1694694887,
       "certs_received": {
         "Foxy": 1733883265,
         "Pocpoc": 1753287030,
@@ -156246,9 +159556,9 @@
     "MelR": {
       "index": 8004,
       "owner_key": "EHFGcm6xSGfqdM5pUZnUUyFTkMn1AADBmDMmRptKjvXC",
-      "balance": 495915,
+      "balance": 535601,
       "membership_expire_on": 1709735932,
-      "next_cert_issuable_on": 1692545792,
+      "next_cert_issuable_on": 1694439797,
       "certs_received": {
         "Virginie": 1745640361,
         "Aeladaulne": 1714878390,
@@ -156266,7 +159576,7 @@
     "Sireline": {
       "index": 9770,
       "owner_key": "EHH2d6ookAV2m9z8z5Akg8ceZEuV1DguGsj9QW9nxztR",
-      "balance": 234823,
+      "balance": 230509,
       "membership_expire_on": 1724880309,
       "next_cert_issuable_on": 1688395516,
       "certs_received": {
@@ -156289,7 +159599,7 @@
     "lucioles": {
       "index": 6667,
       "owner_key": "EHJCNPNYzsnnAhKoBNTD88wvcV6Gmv7exKzkti8EVPT1",
-      "balance": 632039,
+      "balance": 671725,
       "membership_expire_on": 1707937964,
       "next_cert_issuable_on": 1684047444,
       "certs_received": {
@@ -156311,7 +159621,7 @@
     "Isabesencial": {
       "index": 12271,
       "owner_key": "EHNGJHZjArpSAiHKDR4fhGnvEJBf8mQiCrEq1Y6YNEED",
-      "balance": 33528,
+      "balance": 29714,
       "membership_expire_on": 1710985238,
       "next_cert_issuable_on": 1690640224,
       "certs_received": {
@@ -156338,7 +159648,7 @@
     "Reno04": {
       "index": 3657,
       "owner_key": "EHVvKkwGTBxnkuRM97tz7jibQWK74i3ysQ5v3ibBJZTv",
-      "balance": 729483,
+      "balance": 769169,
       "membership_expire_on": 1706293055,
       "next_cert_issuable_on": 1674807455,
       "certs_received": {
@@ -156366,9 +159676,7 @@
       "balance": 241391,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "mathieuBize": 1693958482
-      }
+      "certs_received": {}
     },
     "maya26": {
       "index": 1374,
@@ -156381,9 +159689,9 @@
     "GeoTT": {
       "index": 11090,
       "owner_key": "EHsoES6pnrYjbAnQGhaW2QPUNEvYsRufsP7tWTpxk3rb",
-      "balance": 493750,
+      "balance": 539040,
       "membership_expire_on": 1701952343,
-      "next_cert_issuable_on": 1691872473,
+      "next_cert_issuable_on": 1695746873,
       "certs_received": {
         "Rebirth35": 1753717334,
         "Tidus": 1741224414,
@@ -156396,6 +159704,7 @@
         "Mariekali": 1734766758,
         "CristalCeleste": 1738144482,
         "Titus": 1741226182,
+        "CarolAmethyste": 1759123957,
         "Moi_C_Olivier": 1740812591,
         "Tepa": 1733982525,
         "Damery": 1735851069
@@ -156420,15 +159729,16 @@
     "SteffiH": {
       "index": 11471,
       "owner_key": "EHvha8DH8RuQZSx4rXdu8N4QrbN8YN2s7YoLAr55g5wr",
-      "balance": 147239,
+      "balance": 229425,
       "membership_expire_on": 1706293571,
-      "next_cert_issuable_on": 1690182568,
+      "next_cert_issuable_on": 1693658653,
       "certs_received": {
         "StephanieLumiere": 1755931690,
         "RosyRio": 1747863845,
         "Carine888": 1742953957,
         "JanineBoitel": 1745737181,
         "PhilippeLafontaine": 1737851912,
+        "Inanna": 1758486543,
         "Cath38": 1737952210,
         "farahmiftah": 1738180198,
         "Augusta24": 1753827282,
@@ -156441,7 +159751,7 @@
     "ohardy": {
       "index": 9983,
       "owner_key": "EHywcuFxb84EsEm2caXVXtywbwJNUfoU9f5o1XWuTHSK",
-      "balance": 369170,
+      "balance": 408856,
       "membership_expire_on": 1697141676,
       "next_cert_issuable_on": 1680952267,
       "certs_received": {
@@ -156458,7 +159768,7 @@
     "LuFortes": {
       "index": 11686,
       "owner_key": "EJ5AaGADAAdCbBeJVYQEHzMFkkhs3m7D7xLH1meUFdig",
-      "balance": 146026,
+      "balance": 171912,
       "membership_expire_on": 1708267096,
       "next_cert_issuable_on": 1692458519,
       "certs_received": {
@@ -156467,11 +159777,13 @@
         "JaviEsko": 1747296704,
         "IbonNakin": 1747324348,
         "EvcomServiciosInformaticos": 1744869694,
+        "LeireArias": 1759111563,
         "gaia": 1740001286,
         "JosunePP": 1740001578,
         "Jontxu67": 1740004193,
         "Navarrovi": 1740002228,
         "Roberto_Oraa_79_DDYG": 1739908966,
+        "Jhonnier": 1756626549,
         "Noxtan": 1740261039,
         "Peter": 1739948609,
         "IbanNikolai": 1747420676,
@@ -156482,14 +159794,16 @@
     "salamandre": {
       "index": 6193,
       "owner_key": "EJ92kYtxJ7svp8nk6Q9LzCfiJxw8PPFXoFetzKmX7DNT",
-      "balance": 472019,
+      "balance": 492705,
       "membership_expire_on": 1713117556,
-      "next_cert_issuable_on": 1689931283,
+      "next_cert_issuable_on": 1696218731,
       "certs_received": {
+        "Math007": 1759519893,
         "Gregory2pj5": 1700457746,
         "CRey": 1700709380,
         "Samuel77": 1700937520,
         "colinuxCanut2": 1752808259,
+        "Tchid": 1759261491,
         "Didierlife84": 1700694169,
         "Jenn84": 1706427672,
         "lamouette": 1700328969,
@@ -156501,7 +159815,7 @@
     "lumi": {
       "index": 781,
       "owner_key": "EJAg5tDo4zgAjR9rSa5aRYFXkWCoX2dFFd7tmMj1PNry",
-      "balance": 380370,
+      "balance": 370056,
       "membership_expire_on": 1717960756,
       "next_cert_issuable_on": 1690291889,
       "certs_received": {
@@ -156515,7 +159829,6 @@
         "Matograine": 1702266710,
         "LaurenceM": 1745390856,
         "Zheny": 1706239002,
-        "jytou": 1695449844,
         "Karinedu21": 1713807139,
         "ChristineWilloth26": 1719121543,
         "OLDBLACK84": 1733622482
@@ -156524,7 +159837,7 @@
     "Levrier": {
       "index": 11830,
       "owner_key": "EJBGQ1CRqnhNWXLCueRhz3agATp6gaYArk7BwGPL3bta",
-      "balance": 197205,
+      "balance": 236891,
       "membership_expire_on": 1707134465,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -156559,9 +159872,9 @@
     "labomarjo": {
       "index": 4898,
       "owner_key": "EJYiE8pnwgCPH9ASowtJdnbmV6yPVJ2nXbwyJ9jraMgp",
-      "balance": 726887,
+      "balance": 766573,
       "membership_expire_on": 1708825682,
-      "next_cert_issuable_on": 1686568824,
+      "next_cert_issuable_on": 1696503387,
       "certs_received": {
         "HazaiIsambert": 1705477917,
         "Hades": 1698470883,
@@ -156578,9 +159891,9 @@
     "toutoune2189": {
       "index": 4682,
       "owner_key": "EJnnSbwzZfi5KN24yqKdM9ePderw2T3daJQavkZDVoMT",
-      "balance": 1675277,
+      "balance": 2114963,
       "membership_expire_on": 1704132819,
-      "next_cert_issuable_on": 1688367287,
+      "next_cert_issuable_on": 1696676177,
       "certs_received": {
         "Camomillefv": 1751409062,
         "Bobyv": 1751410487,
@@ -156592,6 +159905,7 @@
         "Spyou": 1736106946,
         "ortie": 1735959191,
         "Nounoursgt8946": 1736019829,
+        "Guillermo89": 1758882784,
         "Cassie": 1751407647,
         "Mia": 1751407166,
         "Atua": 1737403354,
@@ -156617,7 +159931,7 @@
     "edugaske": {
       "index": 8332,
       "owner_key": "EK1dCSLQLhwvqhb9n1uuji7t892aV3J6ZxeMFsoe1pT9",
-      "balance": 480821,
+      "balance": 504337,
       "membership_expire_on": 1716643316,
       "next_cert_issuable_on": 1679804213,
       "certs_received": {
@@ -156656,7 +159970,7 @@
     "Atman": {
       "index": 9471,
       "owner_key": "EK76xRvyyaEYJsQp3S7SVsG1eXBFEEvxc6it3uGh7dCk",
-      "balance": 182006,
+      "balance": 199792,
       "membership_expire_on": 1721008120,
       "next_cert_issuable_on": 1683885713,
       "certs_received": {
@@ -156692,9 +160006,9 @@
     "JoelynaSiret": {
       "index": 12827,
       "owner_key": "EK7CvW8hg4imrxJY5HXdXB3ghXBidyXwMwwLND2KSbKh",
-      "balance": 109848,
+      "balance": 139634,
       "membership_expire_on": 1717540440,
-      "next_cert_issuable_on": 1688367723,
+      "next_cert_issuable_on": 1692368502,
       "certs_received": {
         "IsabellePriou": 1749142718,
         "cpriou11": 1749161876,
@@ -156703,6 +160017,21 @@
         "FranckAubert": 1749161876
       }
     },
+    "Guismau": {
+      "index": 13697,
+      "owner_key": "EKMKA9URCBM6W2HGWLT1xRmpH46npAqWuTbigwTtVpW6",
+      "balance": 7546,
+      "membership_expire_on": 1725046984,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Lys2703": 1758601684,
+        "nathanaelf": 1759274860,
+        "Caladestel": 1758602775,
+        "Spirulina": 1758600623,
+        "Ori2604": 1758601414,
+        "Happyculteur": 1758674944
+      }
+    },
     "pierre": {
       "index": 2442,
       "owner_key": "EKRvob51mp5dFSPQdzCQJtU2Q7wWXgLNJruLi3RKcaxn",
@@ -156714,11 +160043,11 @@
     "Eliasmurcia": {
       "index": 5136,
       "owner_key": "EKTVGcWnSBsbxu14sEZt9oTVQ3tKjmHh3S2ty2Qfzznv",
-      "balance": 640034,
+      "balance": 679720,
       "membership_expire_on": 1710333945,
       "next_cert_issuable_on": 1693547377,
       "certs_received": {
-        "Libertad22": 1698390128,
+        "Libertad22": 1756506535,
         "simone_c86": 1741913122,
         "VictorTorre": 1716057200,
         "Nieves": 1749429517,
@@ -156746,7 +160075,7 @@
     "chrisaiki": {
       "index": 9501,
       "owner_key": "EKXy8PFPkxKav63fzr2UduAaafZo2aX6Y5ofa5z7HgVH",
-      "balance": 314773,
+      "balance": 354459,
       "membership_expire_on": 1721825769,
       "next_cert_issuable_on": 1693045057,
       "certs_received": {
@@ -156765,7 +160094,7 @@
     "JaclineCha": {
       "index": 8041,
       "owner_key": "EKYNRtyUsk36WYfpHwFreHJ8zd79LA3S4E2NtwLp34nL",
-      "balance": 505562,
+      "balance": 545248,
       "membership_expire_on": 1714763697,
       "next_cert_issuable_on": 1654139876,
       "certs_received": {
@@ -156779,7 +160108,7 @@
     "JorgHoche": {
       "index": 10486,
       "owner_key": "EKZC3ynMVgYohtHhP4ahYwyWoYpwF2M4543RHCtKt2NH",
-      "balance": 309046,
+      "balance": 348732,
       "membership_expire_on": 1700347489,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -156794,15 +160123,18 @@
     "sowelo": {
       "index": 4895,
       "owner_key": "EKbm3XPk6Atf8w2qpv6ecX2zD7gNGyAGVWwK7bfEfr1u",
-      "balance": 867540,
+      "balance": 907226,
       "membership_expire_on": 1713280885,
       "next_cert_issuable_on": 1690343487,
       "certs_received": {
         "Fiorenza11": 1701811557,
+        "ChristianM": 1757701742,
         "Do11": 1742775541,
         "annefreda": 1741776403,
-        "Beluganne": 1694835209,
-        "Talia": 1737038643
+        "Beluganne": 1758931236,
+        "Talia": 1737038643,
+        "BrigitteBaron": 1757541771,
+        "birgittat": 1757568228
       }
     },
     "godie": {
@@ -156816,7 +160148,7 @@
     "LucasRisselin": {
       "index": 12110,
       "owner_key": "EKdNRXyBrdhosfaeMyWXFgHNmHXzdyfbarGrpshRtxtA",
-      "balance": 172980,
+      "balance": 212666,
       "membership_expire_on": 1710778897,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -156838,7 +160170,7 @@
     "CamilleBodinBaudry": {
       "index": 12986,
       "owner_key": "EKiDHy8CgYTqK7Cx3Fq1pBfANJ74aKPCMR4HFtxysGmy",
-      "balance": 71556,
+      "balance": 111242,
       "membership_expire_on": 1717535524,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -156853,7 +160185,7 @@
     "Ilena": {
       "index": 12842,
       "owner_key": "ELAguFrXjGwVD55zQTcbFJZL9ZtBoKSQy2NbYQcW3vEL",
-      "balance": 92880,
+      "balance": 132566,
       "membership_expire_on": 1715541615,
       "next_cert_issuable_on": 1691421254,
       "certs_received": {
@@ -156867,9 +160199,9 @@
     "Nomadanne": {
       "index": 5567,
       "owner_key": "ELQ8965LaM6kLcqbMNewZCVp5HQ1NgTbjAvsoHQsRATc",
-      "balance": 803053,
+      "balance": 842739,
       "membership_expire_on": 1714752941,
-      "next_cert_issuable_on": 1685077265,
+      "next_cert_issuable_on": 1693564598,
       "certs_received": {
         "Aude49": 1748452290,
         "Princesse": 1747983020,
@@ -156884,8 +160216,8 @@
     "EricRogerGarcia": {
       "index": 9673,
       "owner_key": "ELSM8fzU6KeoNkV1zBsDX7UuUHC9KPitzXE5bGZ1wYgk",
-      "balance": 308900,
-      "membership_expire_on": 1695756469,
+      "balance": 336728,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1686732777,
       "certs_received": {
         "PatrickFlouriot": 1727315285,
@@ -156920,9 +160252,9 @@
     "manonf": {
       "index": 12183,
       "owner_key": "ELWyPXNjaqZHuWoSRjSVrKsDX4GqSoU5c2tvYN5WUMYn",
-      "balance": 142404,
+      "balance": 167090,
       "membership_expire_on": 1709646474,
-      "next_cert_issuable_on": 1687912324,
+      "next_cert_issuable_on": 1693702476,
       "certs_received": {
         "Mamouchka": 1741237491,
         "Mag9": 1741242793,
@@ -156934,7 +160266,7 @@
     "Rollniak": {
       "index": 1431,
       "owner_key": "ELeac1wWHmbC9MusyWmtqTJGdvM2FiuVm4N2AXqdfEDv",
-      "balance": 1073453,
+      "balance": 1113139,
       "membership_expire_on": 1723725347,
       "next_cert_issuable_on": 1655099033,
       "certs_received": {
@@ -156950,7 +160282,7 @@
     "AinaraNutri": {
       "index": 9774,
       "owner_key": "ELgLKjkhyukXQa8zVUYemrL5Tdmt1HWixuP8SnP8Aa2G",
-      "balance": 181684,
+      "balance": 113870,
       "membership_expire_on": 1722533406,
       "next_cert_issuable_on": 1687966000,
       "certs_received": {
@@ -156997,7 +160329,7 @@
     "SylviedEtampes": {
       "index": 10148,
       "owner_key": "ELz2x33G9jrXE2E28HZZHaqqDrM7yeVAgYU44H5b7zey",
-      "balance": 348631,
+      "balance": 389395,
       "membership_expire_on": 1698103914,
       "next_cert_issuable_on": 1667586615,
       "certs_received": {
@@ -157012,13 +160344,14 @@
     "Clo": {
       "index": 10219,
       "owner_key": "EM6qWttev74fhT5EzoixtTSRvy39m9g1yPvtxuTTj527",
-      "balance": 261649,
-      "membership_expire_on": 1698355019,
-      "next_cert_issuable_on": 1688220523,
+      "balance": 245835,
+      "membership_expire_on": 1726523066,
+      "next_cert_issuable_on": 1696080500,
       "certs_received": {
         "Icaunaise": 1730003338,
         "Lovylou": 1746644470,
         "Cyrius666": 1735036832,
+        "VBVF": 1759123452,
         "NathNath": 1745379802,
         "Etolol": 1745820797,
         "Chene": 1730012636,
@@ -157029,13 +160362,14 @@
         "Shaypalgv": 1741893831,
         "Lylie_Bulle": 1741020406,
         "Ninette89": 1742417431,
-        "OlivierRichard": 1737784795
+        "OlivierRichard": 1737784795,
+        "naturel89": 1757463723
       }
     },
     "ulu": {
       "index": 9028,
       "owner_key": "EMG5ATN8Fr4YxUeKQUJJEjJwQ6AvYLgoA3CUd1gfh2AA",
-      "balance": 49076,
+      "balance": 88762,
       "membership_expire_on": 1720042385,
       "next_cert_issuable_on": 1680061137,
       "certs_received": {
@@ -157064,7 +160398,7 @@
     "SylvainPhok": {
       "index": 8451,
       "owner_key": "EMJZmYwcNQ1XAzy9ZoW5LYRRoT3TiMifhBNjgUHxxWM4",
-      "balance": 461930,
+      "balance": 501616,
       "membership_expire_on": 1710686896,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -157079,7 +160413,7 @@
     "Claudio": {
       "index": 5048,
       "owner_key": "EMLSqfBvKxUh441eeZDHEUAjW9HuShcjLT6G7yvXpvHD",
-      "balance": 864262,
+      "balance": 903948,
       "membership_expire_on": 1713868677,
       "next_cert_issuable_on": 1682840756,
       "certs_received": {
@@ -157104,7 +160438,7 @@
     "Stephanie0023": {
       "index": 10790,
       "owner_key": "EMNcRNyB5TNohXUf4bgX89ui1s1L3hVSu8NqS4fCMVQH",
-      "balance": 251602,
+      "balance": 278788,
       "membership_expire_on": 1702163244,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -157120,9 +160454,9 @@
     "Andre": {
       "index": 13217,
       "owner_key": "EMPqAFRyVQBhizk3tzghvQJbq2ZfBma8xUHTwAdN8ESV",
-      "balance": 86086,
+      "balance": 103837,
       "membership_expire_on": 1721403604,
-      "next_cert_issuable_on": 1692763714,
+      "next_cert_issuable_on": 1694142360,
       "certs_received": {
         "Jens777": 1752456286,
         "majo": 1752735459,
@@ -157149,7 +160483,7 @@
     "Mabelle": {
       "index": 5099,
       "owner_key": "EMY9DARYuPss3Jq3wmyksB2Q7zY4KfjFiLzfyN3cCYF",
-      "balance": 1464167,
+      "balance": 1503853,
       "membership_expire_on": 1712619379,
       "next_cert_issuable_on": 1690017559,
       "certs_received": {
@@ -157165,7 +160499,7 @@
     "OlivierDubigeon": {
       "index": 11856,
       "owner_key": "EMYhmapwuuucsEwtTps1j2yUSALetGt7csXzK4Ch8Us4",
-      "balance": 192087,
+      "balance": 231773,
       "membership_expire_on": 1709144705,
       "next_cert_issuable_on": 1686282729,
       "certs_received": {
@@ -157179,19 +160513,14 @@
     "Celuiquicrelamehaute": {
       "index": 5775,
       "owner_key": "EMYkH5MEZYN44cqCM8QVAySVmBYMKXrq4pZQYvrUgH61",
-      "balance": 718387,
-      "membership_expire_on": 1720134466,
+      "balance": 752683,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689575135,
       "certs_received": {
         "ClaireMonde": 1698300716,
-        "LaDaube": 1696132995,
         "RosadoraLafee": 1699912177,
-        "JerryBB": 1696138372,
-        "Holotopia": 1696285740,
         "DavidB": 1697131082,
-        "GeraldineGarrigues": 1696211449,
-        "Fred": 1754254992,
-        "HelenDuceau": 1696140670
+        "Fred": 1754254992
       }
     },
     "PGIB": {
@@ -157205,11 +160534,12 @@
     "Gerardl": {
       "index": 5592,
       "owner_key": "EMtoPtpCLRRcWdMPFM7Yq5EN7Ah5xNAZ8FrpyAjXTPHB",
-      "balance": 616577,
+      "balance": 656263,
       "membership_expire_on": 1717807129,
       "next_cert_issuable_on": 1688802015,
       "certs_received": {
         "myt": 1755217637,
+        "Isa85190791": 1758270636,
         "CedricC": 1751733375,
         "Pascale72": 1753754516,
         "guillaumed": 1751619118,
@@ -157235,7 +160565,7 @@
     "Unika": {
       "index": 7669,
       "owner_key": "EMuHaqYzUqyn9FyByVUxsikFxRJKEfRAiAJnq9zhAdkT",
-      "balance": 655490,
+      "balance": 695176,
       "membership_expire_on": 1710772645,
       "next_cert_issuable_on": 1653973194,
       "certs_received": {
@@ -157262,8 +160592,8 @@
     "BertilleB": {
       "index": 9743,
       "owner_key": "EMxddoE2MYFZ2raD2KJeZRKV98Y7FRvCUc6AQSU62AYj",
-      "balance": 309173,
-      "membership_expire_on": 1696029957,
+      "balance": 340235,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1679400497,
       "certs_received": {
         "ISAM71": 1727633985,
@@ -157289,7 +160619,7 @@
     "dronda": {
       "index": 11920,
       "owner_key": "EN2pM7vBT8GpYBzF1Ts3YtHgHqvcB16xtLVgUqoAgvyS",
-      "balance": 265792,
+      "balance": 297978,
       "membership_expire_on": 1709226868,
       "next_cert_issuable_on": 1680359795,
       "certs_received": {
@@ -157304,7 +160634,7 @@
     "Rares": {
       "index": 12558,
       "owner_key": "EN3LvSpUcksPqAcDXRpnSKYC5fg73AbXBXFegsncn4az",
-      "balance": 441656,
+      "balance": 441242,
       "membership_expire_on": 1711656778,
       "next_cert_issuable_on": 1686326396,
       "certs_received": {
@@ -157324,17 +160654,15 @@
     "Demosthene": {
       "index": 3195,
       "owner_key": "EN7gCZ4HGi4NzEQb4Gv23sCZesNZ2DjMDg1eqS8i9EQW",
-      "balance": 1215176,
+      "balance": 1254862,
       "membership_expire_on": 1720880811,
       "next_cert_issuable_on": 1693470666,
       "certs_received": {
         "Underscore": 1698199965,
         "ChristelR": 1733434867,
-        "Niamor": 1696026555,
-        "FrancoisW": 1695541363,
         "sro": 1719627491,
         "dianto": 1707796192,
-        "Vivakvo": 1697877406,
+        "Vivakvo": 1757976494,
         "OlivierLa": 1722530673,
         "Milo": 1736991286,
         "AnneLadragonitta": 1727808145,
@@ -157357,12 +160685,10 @@
     "CVM": {
       "index": 3596,
       "owner_key": "ENCzfzBvBEdGrXe9edw51gpfdEpWwJb18ivLK7BfzTuv",
-      "balance": 968700,
+      "balance": 1008386,
       "membership_expire_on": 1710965465,
-      "next_cert_issuable_on": 1689953373,
+      "next_cert_issuable_on": 1694015240,
       "certs_received": {
-        "Soyouz": 1696190720,
-        "Jihi": 1696287569,
         "ElioIG": 1750904531,
         "LaurenceIG": 1751146400,
         "Jean-ClaudeG": 1736070948,
@@ -157375,7 +160701,6 @@
         "Vertsauvage": 1734884794,
         "Nico34": 1755125854,
         "Aaricia": 1736974872,
-        "LydiaRoche": 1696231770,
         "Somano": 1730425942,
         "Ddeellpphhiinnee": 1715843139
       }
@@ -157383,10 +160708,11 @@
     "Lnbanor": {
       "index": 8328,
       "owner_key": "ENEXgUpVXz2aGLKpHtq6dojJLjDeBGsWuQgsCc6aGMP",
-      "balance": 82540,
+      "balance": 122226,
       "membership_expire_on": 1710992153,
-      "next_cert_issuable_on": 1688054400,
+      "next_cert_issuable_on": 1692896437,
       "certs_received": {
+        "Jsln6289": 1758731540,
         "django": 1753868190,
         "valentinekaya": 1751098666,
         "marinetfrommars": 1715887618,
@@ -157405,9 +160731,9 @@
     "Mat971": {
       "index": 12163,
       "owner_key": "ENJRyJg837BWZTskZffDdhi6VVScE5rudfLKAtED6kLU",
-      "balance": 1004340,
+      "balance": 1059026,
       "membership_expire_on": 1711411087,
-      "next_cert_issuable_on": 1692730801,
+      "next_cert_issuable_on": 1694034047,
       "certs_received": {
         "ThomasFilsduVent": 1743159401,
         "wopat": 1753574195,
@@ -157423,7 +160749,7 @@
     "MissSophie": {
       "index": 4713,
       "owner_key": "ENQSHzUjrx9pNfARz6kPVfAtmxfpRhE7qexfSZJD4ym3",
-      "balance": 1158174,
+      "balance": 1197860,
       "membership_expire_on": 1704603586,
       "next_cert_issuable_on": 1686733541,
       "certs_received": {
@@ -157442,7 +160768,7 @@
     "paloute38": {
       "index": 10937,
       "owner_key": "ENW5YEKsHMDBc2dv8tQENpkNY8T8QtqVSYcynPNvsj58",
-      "balance": 848453,
+      "balance": 888139,
       "membership_expire_on": 1702946577,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -157456,7 +160782,7 @@
     "SKOSA": {
       "index": 11003,
       "owner_key": "ENbBqrohTrTHyrc93cqPWXbNPz7rb58VZBzUU8wtJ8v2",
-      "balance": 2885593,
+      "balance": 3286779,
       "membership_expire_on": 1703025046,
       "next_cert_issuable_on": 1692020954,
       "certs_received": {
@@ -157481,10 +160807,11 @@
     "CharlesD": {
       "index": 5298,
       "owner_key": "ENcS2KfirWyRSDB41WFuXcRM8EFG57VGuhu4NR9qBxyd",
-      "balance": 894781,
+      "balance": 934467,
       "membership_expire_on": 1714645268,
-      "next_cert_issuable_on": 1692172565,
+      "next_cert_issuable_on": 1694413942,
       "certs_received": {
+        "AgnesFerey": 1757041360,
         "WhiteWolf": 1749965159,
         "JeePofMars": 1751151519,
         "Lila": 1749965416,
@@ -157545,7 +160872,7 @@
     "POULflo": {
       "index": 11979,
       "owner_key": "EPAKX2B4XniDLGYymsDytK9KFdvcLnMbpxhxMdG7RF3J",
-      "balance": 182556,
+      "balance": 222242,
       "membership_expire_on": 1707671719,
       "next_cert_issuable_on": 1685972097,
       "certs_received": {
@@ -157580,21 +160907,19 @@
     "hinalola": {
       "index": 2240,
       "owner_key": "EPppAbxVVtFLJ8CrfXajC6FPyoSLq5pDxw78wZQ142eA",
-      "balance": 997580,
-      "membership_expire_on": 1715788198,
+      "balance": 1024330,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1656032283,
       "certs_received": {
         "Wilouchou": 1748492608,
         "Danysa": 1747450940,
-        "haddock": 1695677869,
-        "MarieHappy": 1748737535,
-        "FilouLibre59": 1695690029
+        "MarieHappy": 1748737535
       }
     },
     "FanfanJub": {
       "index": 3577,
       "owner_key": "EPr63nucLuKKtCxudy3ivitKnL5wRqxUipu5eDSnaCJR",
-      "balance": 1016224,
+      "balance": 1055910,
       "membership_expire_on": 1706995312,
       "next_cert_issuable_on": 1680611054,
       "certs_received": {
@@ -157603,7 +160928,6 @@
         "daryl": 1714431942,
         "Tchois": 1737103643,
         "Patmos": 1720448107,
-        "LaureFemmeVanne": 1696233513,
         "Cha": 1712696677,
         "Luxdemessis": 1712453466,
         "fluidlog": 1720852627,
@@ -157629,7 +160953,7 @@
     "GEANTBEAR": {
       "index": 7713,
       "owner_key": "EPuE3hy7aWmws8QHoJJrcjtsoLM9LRMmt1sLVCgAZqVD",
-      "balance": 541786,
+      "balance": 581472,
       "membership_expire_on": 1709073532,
       "next_cert_issuable_on": 1658752700,
       "certs_received": {
@@ -157659,7 +160983,7 @@
     "Aitziber": {
       "index": 9032,
       "owner_key": "EQ458rsqZpUEVjNJmewEzaidW6N19daJSt8nW8dbshyq",
-      "balance": 341426,
+      "balance": 381112,
       "membership_expire_on": 1717518141,
       "next_cert_issuable_on": 1675787461,
       "certs_received": {
@@ -157679,9 +161003,9 @@
     "christianmermeladas": {
       "index": 12650,
       "owner_key": "EQ4YWWQyyDSULQqEDS85jgocNUDvWNy1afC69VSMCrPu",
-      "balance": 353830,
+      "balance": 423316,
       "membership_expire_on": 1715261353,
-      "next_cert_issuable_on": 1692328818,
+      "next_cert_issuable_on": 1694696231,
       "certs_received": {
         "ClaudiaR": 1746930496,
         "EcoKim": 1747249383,
@@ -157719,9 +161043,9 @@
     "fasesdalua08": {
       "index": 12082,
       "owner_key": "EQU8THC2x39PuHU215KSKf6jzupvfxHsc94jtG6SwHCj",
-      "balance": 666536,
+      "balance": 746722,
       "membership_expire_on": 1710902095,
-      "next_cert_issuable_on": 1687973197,
+      "next_cert_issuable_on": 1695643461,
       "certs_received": {
         "jvinagre": 1747614427,
         "Yohan": 1742598184,
@@ -157735,9 +161059,9 @@
     "NolanRoni": {
       "index": 6412,
       "owner_key": "EQUqGFR93g2mckzwHQtBdRyenAfNm3cmN9jKoLcHDYzg",
-      "balance": 606289,
+      "balance": 645975,
       "membership_expire_on": 1724204152,
-      "next_cert_issuable_on": 1692718552,
+      "next_cert_issuable_on": 1694754715,
       "certs_received": {
         "Tot16": 1753226477,
         "DaniailesA": 1712210264,
@@ -157758,6 +161082,7 @@
         "RobinRoni": 1700707119,
         "MartinFleuri": 1702586179,
         "AlexisCharrier": 1720150458,
+        "MuleRetive": 1759012260,
         "VanessaVigier": 1709743633,
         "Michelet16": 1701508132
       }
@@ -157773,7 +161098,7 @@
     "alexeictk": {
       "index": 10727,
       "owner_key": "EQrVPDDzd6NWUo6Ep66UvzZ2t2NAjznBt1p3cXFZ9nCE",
-      "balance": 289279,
+      "balance": 328965,
       "membership_expire_on": 1701112198,
       "next_cert_issuable_on": 1670574885,
       "certs_received": {
@@ -157797,11 +161122,12 @@
     "Ladgege": {
       "index": 9358,
       "owner_key": "EQzaj7fpy9UCgLMxCcsAPrFZm3qmCgzFYKy51cUT4yB9",
-      "balance": 375715,
+      "balance": 350401,
       "membership_expire_on": 1720601863,
-      "next_cert_issuable_on": 1689204416,
+      "next_cert_issuable_on": 1696791904,
       "certs_received": {
         "toypurina": 1736400336,
+        "florian": 1757196823,
         "FredTahiti": 1724048270,
         "Geronymo88": 1724516634,
         "Jb11": 1724053244,
@@ -157813,9 +161139,9 @@
     "Marie51": {
       "index": 12228,
       "owner_key": "ER1fXrRZi1pFhFwuiLESdDofX5yNr1KgYnFYqgLcAYG2",
-      "balance": 173232,
+      "balance": 204918,
       "membership_expire_on": 1712180364,
-      "next_cert_issuable_on": 1684154437,
+      "next_cert_issuable_on": 1696690789,
       "certs_received": {
         "CHLOE51": 1743739692,
         "Yannick51200": 1743745185,
@@ -157827,29 +161153,32 @@
     "Syldess": {
       "index": 5697,
       "owner_key": "ER4Tzv8pEZM97ZRcgjuXGmnpXPXq2qEzwGXHLotRDnwK",
-      "balance": 354222,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1683285353,
+      "balance": 306364,
+      "membership_expire_on": 1725738943,
+      "next_cert_issuable_on": 1696681940,
       "certs_received": {
+        "MarineDR": 1756540286,
+        "Gabriel51": 1756110962,
         "Christelle51": 1746662687,
-        "DelphineDietsch": 1695097648,
-        "Martine51": 1694924059,
+        "Martine51": 1756110962,
         "Elie88": 1699409469,
+        "Louloutte1402": 1756785988,
+        "Sunrise": 1756359895,
         "CharlineNature": 1736799042,
         "Benbeck": 1743439490,
         "liberte55": 1698114762,
+        "GwenolaLef": 1759271767,
         "Diogox51": 1710819805,
-        "Cyril52": 1694848440,
         "Audr3y": 1729994955,
-        "thierryR51": 1694327559,
-        "FatimaMIEL51": 1694401786,
-        "Furiforce": 1725402862
+        "Furiforce": 1725402862,
+        "Jean-Phi": 1756786929,
+        "Martienne": 1755494912
       }
     },
     "Thibana": {
       "index": 11426,
       "owner_key": "ER6ohiQ6NKNiEhXhfXsEM9iKvMmVWpPS55JXAJnUN5Vq",
-      "balance": 225975,
+      "balance": 265661,
       "membership_expire_on": 1706321343,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -157874,10 +161203,11 @@
     "VALVALO": {
       "index": 4987,
       "owner_key": "ERKU3nhjUSv9gtgVL2bZQoVMn3iJ5QbUcQdbFiSpWQWo",
-      "balance": 628505,
+      "balance": 641191,
       "membership_expire_on": 1703775395,
-      "next_cert_issuable_on": 1688181717,
+      "next_cert_issuable_on": 1696427022,
       "certs_received": {
+        "MaryMarie": 1759185262,
         "Harmony": 1739443948,
         "nirma": 1711061582,
         "ChristineMontpellier": 1740462070,
@@ -157889,7 +161219,7 @@
     "WenWen": {
       "index": 3519,
       "owner_key": "ERY5nHVvV6sPZbnA4kvCNCeEMMNZK5pNcod73YL8owYB",
-      "balance": 301675,
+      "balance": 341361,
       "membership_expire_on": 1703979772,
       "next_cert_issuable_on": 1685369041,
       "certs_received": {
@@ -157906,9 +161236,9 @@
     "Hera": {
       "index": 6014,
       "owner_key": "ERiwbwCfUVPz9uHpX4Q3DvjCbd2s7wwMfqSz8QUo2J1L",
-      "balance": 806979,
-      "membership_expire_on": 1697762670,
-      "next_cert_issuable_on": 1689747505,
+      "balance": 841165,
+      "membership_expire_on": 1726189550,
+      "next_cert_issuable_on": 1696198453,
       "certs_received": {
         "FrancisBperso": 1751352958,
         "NatGordon": 1737537854,
@@ -157921,6 +161251,7 @@
         "Kheoppe": 1731897000,
         "Alisce": 1752723633,
         "Lea8": 1698944569,
+        "CarmenAlonso": 1758172444,
         "Luviam": 1699163804,
         "Piraculteur": 1749098928,
         "BenoitDoutreleau-avec-un-chapeau-sur-le-i": 1698881734
@@ -157929,7 +161260,7 @@
     "SimonDominique": {
       "index": 6488,
       "owner_key": "ERqHzoeLidvwvddQQ4LLTVzrYxnhoY6CSKTuATBUDA9n",
-      "balance": 591275,
+      "balance": 630961,
       "membership_expire_on": 1696870720,
       "next_cert_issuable_on": 1669981365,
       "certs_received": {
@@ -157944,7 +161275,7 @@
     "AntoineF-R": {
       "index": 13260,
       "owner_key": "ES1zsWVG3tqE9H9GxwpzRiTZTb2S5T7etTmHFZtZSSDE",
-      "balance": 38312,
+      "balance": 77998,
       "membership_expire_on": 1719137523,
       "next_cert_issuable_on": 1690704751,
       "certs_received": {
@@ -157958,7 +161289,7 @@
     "Ricou": {
       "index": 10870,
       "owner_key": "ES7b2KrfnKVXQmTknsuEE3eTSASGrPp8v2YDE1ZaMFLs",
-      "balance": 181648,
+      "balance": 196834,
       "membership_expire_on": 1702396795,
       "next_cert_issuable_on": 1691220414,
       "certs_received": {
@@ -157982,13 +161313,13 @@
       "owner_key": "ESGSm8gtdwjk9fwoEBhm4hjnasUWSRKoCKqPmVU6qnGq",
       "balance": 610944,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632792071,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "BaptistedeVendee": {
       "index": 8086,
       "owner_key": "ESHGvMXxLofW3GZf5Uz3QSucN7CgZRDCDcLppBx1MdHF",
-      "balance": 401358,
+      "balance": 441044,
       "membership_expire_on": 1711125839,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -158004,7 +161335,7 @@
     "Aquila": {
       "index": 9209,
       "owner_key": "ESHJuco9aSbixVJeduMHF7PMWo661dk3JYCEy3Bgpzdv",
-      "balance": 278566,
+      "balance": 318252,
       "membership_expire_on": 1716746610,
       "next_cert_issuable_on": 1685261255,
       "certs_received": {
@@ -158037,7 +161368,7 @@
     "Celyann": {
       "index": 11190,
       "owner_key": "ESNPMQ9Maa5phjXAknDhbR2e8mUYHAeqdqi4ZbopwSRN",
-      "balance": 247155,
+      "balance": 286841,
       "membership_expire_on": 1704897769,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -158052,7 +161383,7 @@
     "AileeSavannah": {
       "index": 13216,
       "owner_key": "EScXtWoH7qHyNRxb8KL9EoFzDYJ37rnMoHtULScDYyCr",
-      "balance": 103220,
+      "balance": 142906,
       "membership_expire_on": 1720785156,
       "next_cert_issuable_on": 1692436326,
       "certs_received": {
@@ -158067,9 +161398,9 @@
     "Margauxgau": {
       "index": 7681,
       "owner_key": "EScpZRQf5iUXjPD6hwERjAKom9fzRm5jkRFmeZJrfJs2",
-      "balance": 1264997,
+      "balance": 1034283,
       "membership_expire_on": 1706876387,
-      "next_cert_issuable_on": 1693548047,
+      "next_cert_issuable_on": 1696112673,
       "certs_received": {
         "Jeratik": 1712121366,
         "nashira": 1744643608,
@@ -158083,6 +161414,7 @@
         "Ju73": 1726107798,
         "JessyC": 1732044185,
         "GuyPeq11": 1742528818,
+        "Hermione43": 1755938166,
         "Violette33": 1733613035,
         "Bea813": 1733886009,
         "Mayo": 1736967140,
@@ -158104,6 +161436,7 @@
         "jardin": 1747968874,
         "DBize": 1742080921,
         "ji_emme": 1730922320,
+        "Georges": 1758873662,
         "mathieuBize": 1717570867,
         "DanJoue": 1730437781,
         "soizh": 1717279537,
@@ -158119,6 +161452,7 @@
         "MarcArdeneus": 1733268717,
         "Lama": 1752628312,
         "Tito": 1738440293,
+        "Caromarina": 1756856592,
         "Wipsita": 1721252191,
         "Annastro81": 1744996472,
         "FredB": 1719386762
@@ -158127,7 +161461,7 @@
     "cecile_voiron": {
       "index": 8445,
       "owner_key": "EShmEg7psX9ssSc3NQRTdpfmyovg5GMqA46K1TkjNn4D",
-      "balance": 356376,
+      "balance": 341562,
       "membership_expire_on": 1710104360,
       "next_cert_issuable_on": 1681440844,
       "certs_received": {
@@ -158144,7 +161478,7 @@
     "LaMarie12": {
       "index": 7834,
       "owner_key": "ESqTyowMZCPmqBD59LZ4AK5qu6fm39de8CxjFfeL1ZeQ",
-      "balance": 521327,
+      "balance": 561013,
       "membership_expire_on": 1704813868,
       "next_cert_issuable_on": 1652518801,
       "certs_received": {
@@ -158159,7 +161493,7 @@
     "Wolf": {
       "index": 214,
       "owner_key": "ESqt83dppjtGbsg35SgJdsu6igC2Kj4Q3kNJKbKEz1Vw",
-      "balance": 1697379,
+      "balance": 1737065,
       "membership_expire_on": 1706328643,
       "next_cert_issuable_on": 1685961867,
       "certs_received": {
@@ -158176,7 +161510,7 @@
     "BeatriceSam": {
       "index": 6358,
       "owner_key": "ESw71XMk6VA3kSAx7cu1DxMYygWiPd6WyVmCrpzT1QpB",
-      "balance": 783785,
+      "balance": 826471,
       "membership_expire_on": 1700610076,
       "next_cert_issuable_on": 1678112644,
       "certs_received": {
@@ -158205,12 +161539,13 @@
     "ElisabethNyons": {
       "index": 2157,
       "owner_key": "ET1zFZGr1MDoy7CW7kZmLNp3gAoDghvEXWyvTTAGFy4d",
-      "balance": 1523362,
+      "balance": 1563048,
       "membership_expire_on": 1705433266,
-      "next_cert_issuable_on": 1693012570,
+      "next_cert_issuable_on": 1696248044,
       "certs_received": {
         "mipimichel": 1753863305,
         "michaelopdenacker": 1696897690,
+        "JeanLucCrcfx": 1759785522,
         "AnnieFortin": 1738727234,
         "simeon26": 1742605493,
         "Calinka07": 1740468174,
@@ -158243,9 +161578,9 @@
     "Pascal35800": {
       "index": 13262,
       "owner_key": "ETDLehWoKpd88bo2GdymbiN1TjzMcTfEJVyBhsqaFJgh",
-      "balance": 61244,
+      "balance": 120930,
       "membership_expire_on": 1721393570,
-      "next_cert_issuable_on": 1693195624,
+      "next_cert_issuable_on": 1695630651,
       "certs_received": {
         "Shandra": 1753743234,
         "DomVie": 1753214837,
@@ -158257,12 +161592,11 @@
     "Pruls": {
       "index": 1045,
       "owner_key": "ETF1DcWxrgxnMGkkQVTvCTctscUGzgBZeBLCn978zFDm",
-      "balance": 753007,
+      "balance": 772693,
       "membership_expire_on": 1714761020,
       "next_cert_issuable_on": 1688694237,
       "certs_received": {
         "OlivierHovasse": 1720221258,
-        "MamieCrypto": 1695237501,
         "Franzbar": 1752802518,
         "AnneAmbles": 1746317655,
         "Sybille": 1744416765,
@@ -158273,7 +161607,7 @@
     "Annie31": {
       "index": 12400,
       "owner_key": "ETQFW5mAkixFAh8PCGCNPDfhr2Tx5RXkaQbrhVL7MnMe",
-      "balance": 737888,
+      "balance": 672574,
       "membership_expire_on": 1712750838,
       "next_cert_issuable_on": 1691383296,
       "certs_received": {
@@ -158289,15 +161623,16 @@
     "Giselegarreau": {
       "index": 13415,
       "owner_key": "ETYFyJ9P4e8v8MbgUNoeB22vSGb1sCQCZRGtY9AX9ob3",
-      "balance": 212880,
+      "balance": 252566,
       "membership_expire_on": 1723846945,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693903420,
       "certs_received": {
         "CValentine": 1755418397,
         "GhislaineChartier": 1755451100,
         "Bastien-29": 1755545614,
         "Filou": 1755413314,
         "Cleo59": 1755791671,
+        "pomal": 1757405291,
         "DaRocha": 1755450568,
         "CCecile": 1755474551
       }
@@ -158305,7 +161640,7 @@
     "Aliciagrandpierre": {
       "index": 10327,
       "owner_key": "ETZoUvfygAA4BtUdSCn7zK91MAFS16rcYgaP2kRqX83H",
-      "balance": 386336,
+      "balance": 426022,
       "membership_expire_on": 1699365917,
       "next_cert_issuable_on": 1686964330,
       "certs_received": {
@@ -158338,7 +161673,7 @@
     "tuttle": {
       "index": 4451,
       "owner_key": "ETgwb4oeQYNmgt36RR8uXKqQ8UNhjWUAHGco4TUcofQb",
-      "balance": 188852,
+      "balance": 46385,
       "membership_expire_on": 1723251655,
       "next_cert_issuable_on": 1692259358,
       "certs_received": {
@@ -158419,7 +161754,7 @@
     "Tita83": {
       "index": 10574,
       "owner_key": "EUP9gJaB4GpaSDvj7GCC1BxbGwLya8oFw4WWUxVsEC5L",
-      "balance": 306751,
+      "balance": 346437,
       "membership_expire_on": 1697212775,
       "next_cert_issuable_on": 1669881745,
       "certs_received": {
@@ -158451,7 +161786,7 @@
     "ValV": {
       "index": 9034,
       "owner_key": "EUh7XU49KTae3C2NK1CFNBcJWyrVc1bhXWueYeZ1eAyE",
-      "balance": 319577,
+      "balance": 344263,
       "membership_expire_on": 1716683991,
       "next_cert_issuable_on": 1685198391,
       "certs_received": {
@@ -158474,7 +161809,7 @@
     "Nessya": {
       "index": 12688,
       "owner_key": "EUkpbwef9jGqeLJFYCQGKcQrzSarS1rzxh3cTEVpYZb4",
-      "balance": 152840,
+      "balance": 192526,
       "membership_expire_on": 1715540723,
       "next_cert_issuable_on": 1685057729,
       "certs_received": {
@@ -158498,8 +161833,8 @@
     "SylvieClementPons": {
       "index": 10360,
       "owner_key": "EUqiyRieM4ySxw1eSF2K1SRCYVNJQZ1hp3JL1mH73YaE",
-      "balance": 290018,
-      "membership_expire_on": 1699828677,
+      "balance": 274704,
+      "membership_expire_on": 1727445845,
       "next_cert_issuable_on": 1691150435,
       "certs_received": {
         "SylC185-2": 1731523687,
@@ -158514,7 +161849,7 @@
     "JPGRAU": {
       "index": 1234,
       "owner_key": "EUtwKWNPACnCjANvqV2YZz87yqbYmijiyy9gW3jKwJwv",
-      "balance": 1683473,
+      "balance": 1723159,
       "membership_expire_on": 1709845125,
       "next_cert_issuable_on": 1679486847,
       "certs_received": {
@@ -158533,7 +161868,7 @@
     "Cathy31": {
       "index": 4875,
       "owner_key": "EUy49d9zxCpD3gThSoR1x6eY8dPTz5QXdLD6SBPVo4yd",
-      "balance": 928020,
+      "balance": 967706,
       "membership_expire_on": 1705270136,
       "next_cert_issuable_on": 1687612452,
       "certs_received": {
@@ -158541,7 +161876,6 @@
         "Mylene": 1751783918,
         "JoBe22": 1706898229,
         "Choco": 1733385147,
-        "Nadette": 1695355533,
         "hocine": 1704694948,
         "Sircheyram": 1731553242
       }
@@ -158549,7 +161883,7 @@
     "ALAYA": {
       "index": 12162,
       "owner_key": "EUyrDucDrGkAoth3yN2vwbHxCkdk7A3B7SwA76gfrtEF",
-      "balance": 168540,
+      "balance": 208226,
       "membership_expire_on": 1711137535,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -158564,12 +161898,12 @@
     "JBlot": {
       "index": 5711,
       "owner_key": "EV4FppEhpRrLTy7SnN5q8v7PPgbYTqmsRYrjpHKEUerJ",
-      "balance": 706457,
-      "membership_expire_on": 1721562876,
+      "balance": 733217,
+      "membership_expire_on": 1727100330,
       "next_cert_issuable_on": 1656947133,
       "certs_received": {
         "PhilippeGua53": 1742368446,
-        "Tatane": 1695173523,
+        "AlainLebrun": 1759097757,
         "AnneAmbles": 1751615689,
         "VanessaVigier": 1705178176,
         "littlegreg": 1755512355
@@ -158578,7 +161912,7 @@
     "EstienneDunord": {
       "index": 12,
       "owner_key": "EV4yZXAgmDd9rMsRCSH2MK7RHWty7CDB9tmHku3iRnEB",
-      "balance": 1473264,
+      "balance": 1497950,
       "membership_expire_on": 1724886887,
       "next_cert_issuable_on": 1674269764,
       "certs_received": {
@@ -158598,7 +161932,7 @@
       "owner_key": "EVC8bKi3ihZ7mKxxEM7WpG7aQD27Euv4WHP7Z3LHHrin",
       "balance": 699854,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631375904,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "Gregoire": 1705701174
       }
@@ -158606,9 +161940,9 @@
     "nathinfi": {
       "index": 6836,
       "owner_key": "EVFjHMPfUGVyNdvqXGSnA45jd1x6V8RkVqqgoZdHoifs",
-      "balance": 552543,
-      "membership_expire_on": 1699786336,
-      "next_cert_issuable_on": 1679220081,
+      "balance": 592229,
+      "membership_expire_on": 1727697282,
+      "next_cert_issuable_on": 1696729508,
       "certs_received": {
         "Alfybe": 1705627735,
         "Chabe13": 1730168877,
@@ -158627,7 +161961,7 @@
     "Yan_Vilain": {
       "index": 8738,
       "owner_key": "EVKur3EFE2RwHFTSx5W2QJpT93enH9C6TgSvoPXhmFXE",
-      "balance": 448185,
+      "balance": 487871,
       "membership_expire_on": 1719240301,
       "next_cert_issuable_on": 1674912947,
       "certs_received": {
@@ -158649,9 +161983,9 @@
     "MarieCho": {
       "index": 13210,
       "owner_key": "EVL6p843wdzqLkwDYxjHqzgiAzgC3fd5dRr1ANVc55cU",
-      "balance": 53588,
+      "balance": 93274,
       "membership_expire_on": 1716821753,
-      "next_cert_issuable_on": 1693149779,
+      "next_cert_issuable_on": 1693150201,
       "certs_received": {
         "jaya": 1748413121,
         "yanis07": 1753121897,
@@ -158664,7 +161998,7 @@
     "ColetteHenkes": {
       "index": 2345,
       "owner_key": "EVU8oVH1zBZwUXJKts76FQ2waWu9PqsSyQRjV9cMMu2c",
-      "balance": 1538043,
+      "balance": 1576729,
       "membership_expire_on": 1715084693,
       "next_cert_issuable_on": 1683826082,
       "certs_received": {
@@ -158678,8 +162012,8 @@
     "Rumper": {
       "index": 8545,
       "owner_key": "EVbBgi2uVZCJj6isLpuC67JzFx48njJ1xUS2itCMfqnc",
-      "balance": 432303,
-      "membership_expire_on": 0,
+      "balance": 434345,
+      "membership_expire_on": 1725735697,
       "next_cert_issuable_on": 1663207401,
       "certs_received": {
         "LaurePollantru": 1718388203,
@@ -158693,8 +162027,8 @@
     "Elviraabel": {
       "index": 10266,
       "owner_key": "EVhotJqRRcAs55QFBrJCbgjqfgNbbeHx4q27noC8tyPC",
-      "balance": 158072,
-      "membership_expire_on": 1699013554,
+      "balance": 415569,
+      "membership_expire_on": 1728227922,
       "next_cert_issuable_on": 1685760992,
       "certs_received": {
         "davidalvarez": 1751474400,
@@ -158709,9 +162043,9 @@
     "Bench": {
       "index": 12199,
       "owner_key": "EVjZBZ6SttECahGYDRTgBa1oVEufAuDmghnr1EbwUa4E",
-      "balance": 161268,
+      "balance": 200954,
       "membership_expire_on": 1711546737,
-      "next_cert_issuable_on": 1691918533,
+      "next_cert_issuable_on": 1694426584,
       "certs_received": {
         "Vanthegreat": 1743280827,
         "Afreekash": 1743116820,
@@ -158723,9 +162057,9 @@
     "DavidBay": {
       "index": 1917,
       "owner_key": "EVji29ZDuFdLUixVp9va3WKC4hT7sayzTsVvBhmQ2yHU",
-      "balance": 2426666,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1654823817,
+      "balance": 2456740,
+      "membership_expire_on": 1725878544,
+      "next_cert_issuable_on": 1694393760,
       "certs_received": {
         "SolangeAIME": 1735666168,
         "Henri31": 1735676015,
@@ -158774,7 +162108,7 @@
       "owner_key": "EVsKxe8ZevTm7wpzECcxcvkdS6WBLCGJeQUrtB7hFLZs",
       "balance": 606912,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632141492,
+      "next_cert_issuable_on": 0,
       "certs_received": {
         "HeleneMillardet": 1716923829,
         "Cywil": 1713993475
@@ -158783,9 +162117,9 @@
     "Pieter-LucvanNikkel": {
       "index": 11049,
       "owner_key": "EVsp5tc4rtL6pAbo21ABQLdojNRMi7qsGf1V5gfgn7dF",
-      "balance": 262122,
+      "balance": 314508,
       "membership_expire_on": 1703865042,
-      "next_cert_issuable_on": 1692063922,
+      "next_cert_issuable_on": 1696671505,
       "certs_received": {
         "Fleur-du-renouveau": 1735461399,
         "DomVe": 1735450518,
@@ -158794,7 +162128,8 @@
         "Denis": 1735454361,
         "Mahj": 1735493392,
         "Vinciane": 1748847655,
-        "She8": 1745027002
+        "She8": 1745027002,
+        "MinaManar": 1759099654
       }
     },
     "fredurb1": {
@@ -158808,7 +162143,7 @@
     "Ceceliberte": {
       "index": 7091,
       "owner_key": "EVuzFiiBXsA7jKBgnVJfZdecVzQhsNp8hKTDjc9otTcH",
-      "balance": 478671,
+      "balance": 498357,
       "membership_expire_on": 1702094259,
       "next_cert_issuable_on": 1684547062,
       "certs_received": {
@@ -158838,7 +162173,7 @@
     "bike13500": {
       "index": 3812,
       "owner_key": "EW1yzzsrmag11iuPaA6oeYEWPA5TFpKj2WX2pJTCfCnd",
-      "balance": 885675,
+      "balance": 925361,
       "membership_expire_on": 1712180579,
       "next_cert_issuable_on": 1691426091,
       "certs_received": {
@@ -158859,7 +162194,7 @@
     "Lilbel": {
       "index": 8364,
       "owner_key": "EW56VunHUU5xVM9GRiysg67q2cJ7cUXHcy6FCxQA9Auf",
-      "balance": 497787,
+      "balance": 537473,
       "membership_expire_on": 1709508677,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -158910,7 +162245,7 @@
     "KlimkaPomevor": {
       "index": 11057,
       "owner_key": "EWbusR7cs9xp9Yu8aF7HukW4ZFrUQUMYBxWm66nXvE3X",
-      "balance": 261263,
+      "balance": 300949,
       "membership_expire_on": 1702946757,
       "next_cert_issuable_on": 1691382000,
       "certs_received": {
@@ -158926,7 +162261,7 @@
     "Boutfeu": {
       "index": 8699,
       "owner_key": "EWdR4NhDAoCkiRJG53fL3H8cW2KWP3vjNvucdgETsceL",
-      "balance": 456494,
+      "balance": 496180,
       "membership_expire_on": 1715525439,
       "next_cert_issuable_on": 1680442497,
       "certs_received": {
@@ -158951,11 +162286,13 @@
     "Badiane94": {
       "index": 9795,
       "owner_key": "EWjJUsQ8AbFQPzeiDTmiTBc2v4cQkvWGFfyQ9WU18L8i",
-      "balance": 236724,
-      "membership_expire_on": 1695751935,
-      "next_cert_issuable_on": 1679578941,
+      "balance": 276410,
+      "membership_expire_on": 1727347965,
+      "next_cert_issuable_on": 1696404626,
       "certs_received": {
+        "maud": 1759036023,
         "FleurdeLupin": 1727814219,
+        "Jujudu94500": 1759048168,
         "gerard94": 1728075441,
         "menfin": 1728076485,
         "Cath": 1727382838,
@@ -158965,7 +162302,7 @@
     "Energie": {
       "index": 1808,
       "owner_key": "EWoBd1uPyZm45RjLqidwmZEsPeWCA6KPszi6W4yihLH3",
-      "balance": 946872,
+      "balance": 986558,
       "membership_expire_on": 1706874670,
       "next_cert_issuable_on": 1684842264,
       "certs_received": {
@@ -158982,7 +162319,7 @@
     "Enjoy91": {
       "index": 6130,
       "owner_key": "EWtBcBH3pti7LdZAZZS1Zi4EZk88UELBbFRVspM3bhin",
-      "balance": 767787,
+      "balance": 807473,
       "membership_expire_on": 1709847806,
       "next_cert_issuable_on": 1678362206,
       "certs_received": {
@@ -158998,7 +162335,7 @@
     "Annabel": {
       "index": 11557,
       "owner_key": "EWtTHEuuu9ksWXzXDTVKdN5gdvsU5sWSygUyxQq8sPRX",
-      "balance": 232385,
+      "balance": 252071,
       "membership_expire_on": 1707494992,
       "next_cert_issuable_on": 1684764222,
       "certs_received": {
@@ -159012,10 +162349,24 @@
         "Kalia": 1739724949
       }
     },
+    "CmoiNana": {
+      "index": 13605,
+      "owner_key": "EWygWmCd1nueoknTeoBc7b7ZnRd9uj3EayFgs9ZirSXh",
+      "balance": 48812,
+      "membership_expire_on": 1725561571,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "JOD77": 1758233006,
+        "Messangebleu77": 1757129653,
+        "jge": 1757178804,
+        "ussyplume": 1757916571,
+        "Cedric77": 1757122079
+      }
+    },
     "Laurebourrel": {
       "index": 9692,
       "owner_key": "EX4XUH3LrX3pgMJNx9MoytKYTmBFCaaJzZrxKX8viWBU",
-      "balance": 445759,
+      "balance": 485445,
       "membership_expire_on": 1724025870,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -159029,7 +162380,7 @@
     "Oceanis411": {
       "index": 6270,
       "owner_key": "EX7Uwnnuk8z4iCAeMsSj4jjis8bkbALyCDfuwahMmwX3",
-      "balance": 412115,
+      "balance": 451801,
       "membership_expire_on": 1722375501,
       "next_cert_issuable_on": 1691894853,
       "certs_received": {
@@ -159048,10 +162399,11 @@
     "DanyAiles": {
       "index": 12606,
       "owner_key": "EXH2mAtrZ3GXHziFDKadcst37k4t1TAEMKGqnhuZJqmD",
-      "balance": 59216,
+      "balance": 109902,
       "membership_expire_on": 1715262117,
       "next_cert_issuable_on": 1691226963,
       "certs_received": {
+        "Tembo": 1757724237,
         "Sam": 1746864521,
         "fredbo": 1746912841,
         "Nadia": 1746852756,
@@ -159077,7 +162429,7 @@
     "GaelleGillet": {
       "index": 3313,
       "owner_key": "EXJJjAEeb8GCp7keZGef8XuN2KuGXAiZGCi8Rvc1Geu",
-      "balance": 1260646,
+      "balance": 1300332,
       "membership_expire_on": 1704993499,
       "next_cert_issuable_on": 1673603223,
       "certs_received": {
@@ -159109,7 +162461,7 @@
     "Sergeboyer974": {
       "index": 4026,
       "owner_key": "EXQxYkR54SD3RUngyUfdGc9Hhu2GD1y2hsRLXNdCecgu",
-      "balance": 1311437,
+      "balance": 1351123,
       "membership_expire_on": 1713615463,
       "next_cert_issuable_on": 1678175839,
       "certs_received": {
@@ -159132,14 +162484,13 @@
         "EMILIENNE": 1705443797,
         "Tissilia": 1743204087,
         "ashka": 1721089636,
-        "LNlumi": 1695605427,
         "olive2ola": 1743204087
       }
     },
     "nana": {
       "index": 224,
       "owner_key": "EXTQUm5MjdWcLWNR7gLs1oEJ2Pu8MYTd7asu9tjowNHE",
-      "balance": 665768,
+      "balance": 705454,
       "membership_expire_on": 1716422672,
       "next_cert_issuable_on": 1689524205,
       "certs_received": {
@@ -159154,7 +162505,7 @@
     "VeroniqueV": {
       "index": 6244,
       "owner_key": "EXcyQ63amHcC9AbAMd6Tn7nrMRg29Gz9jjTaJPQpw1DE",
-      "balance": 1297024,
+      "balance": 1289710,
       "membership_expire_on": 1723412543,
       "next_cert_issuable_on": 1692958913,
       "certs_received": {
@@ -159192,7 +162543,7 @@
     "SabineDefoort": {
       "index": 12901,
       "owner_key": "EXphYV9j4AE1ij5nUjFyPEJjKoaJ1DrjPBbgxeyudiZq",
-      "balance": 88736,
+      "balance": 128422,
       "membership_expire_on": 1717887982,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -159206,9 +162557,9 @@
     "Colaga": {
       "index": 6222,
       "owner_key": "EXr3j5M1V7NVRpSoavZD467fehw1HbPFufzA5Bqkucfp",
-      "balance": 511239,
+      "balance": 573003,
       "membership_expire_on": 1721143669,
-      "next_cert_issuable_on": 1692885679,
+      "next_cert_issuable_on": 1696172329,
       "certs_received": {
         "CyrilPommier": 1733201553,
         "CathyCat": 1742948713,
@@ -159278,7 +162629,7 @@
     "Bambi972": {
       "index": 7637,
       "owner_key": "EYRD5BQqWdQdbU1o1b1hdjwKHHVefUHTtbsG1hCF5tBs",
-      "balance": 517740,
+      "balance": 557426,
       "membership_expire_on": 1711029892,
       "next_cert_issuable_on": 1654504453,
       "certs_received": {
@@ -159292,9 +162643,9 @@
     "Totoro": {
       "index": 6618,
       "owner_key": "EYULRq8RAkP6nQjyEVkG8W7RvihX3wDQG1fQrK97Bufd",
-      "balance": 1095746,
-      "membership_expire_on": 1697856993,
-      "next_cert_issuable_on": 1692673694,
+      "balance": 510780,
+      "membership_expire_on": 1725299369,
+      "next_cert_issuable_on": 1695960985,
       "certs_received": {
         "CatherinePerma": 1704855669,
         "Temarante": 1732750297,
@@ -159328,6 +162679,7 @@
         "Eric-Frodon86": 1740528748,
         "Eleonore": 1717648196,
         "kikilulu": 1711066754,
+        "Bikoucel86": 1756872740,
         "Muktananda": 1704855669,
         "Emilioleheros": 1719516223,
         "Peter06": 1745991913,
@@ -159347,7 +162699,7 @@
     "AlainGirard": {
       "index": 2490,
       "owner_key": "EYasrFRvcjLBhNEMQYNthe5HETdXYGNVZTM6J1ianW9f",
-      "balance": 1608622,
+      "balance": 1648308,
       "membership_expire_on": 1711039516,
       "next_cert_issuable_on": 1683203408,
       "certs_received": {
@@ -159382,7 +162734,7 @@
     "Olivia_C": {
       "index": 12873,
       "owner_key": "EYga96BUmi7fG2x4yFqubxWUZYjLzh37NGztTEotz6BD",
-      "balance": 135440,
+      "balance": 175126,
       "membership_expire_on": 1717841774,
       "next_cert_issuable_on": 1688047528,
       "certs_received": {
@@ -159403,7 +162755,7 @@
     "cedricEolix": {
       "index": 8136,
       "owner_key": "EYktCZZe1MSWeQEkymtWPrMMdYUijMfxZAAKfjKPRF4r",
-      "balance": 388606,
+      "balance": 428292,
       "membership_expire_on": 1723565011,
       "next_cert_issuable_on": 1669210238,
       "certs_received": {
@@ -159443,7 +162795,7 @@
     "She8": {
       "index": 12276,
       "owner_key": "EYrQroQqi4U94Za1DPLFYhRLkN462ytCEZet5xfVeNub",
-      "balance": 208680,
+      "balance": 203066,
       "membership_expire_on": 1710785040,
       "next_cert_issuable_on": 1681983802,
       "certs_received": {
@@ -159459,7 +162811,7 @@
     "Mimage": {
       "index": 5246,
       "owner_key": "EYtaCpjQDyu9cV6CL7YjaiSNezuJx2omKaF74sAow9yC",
-      "balance": 1232596,
+      "balance": 1318422,
       "membership_expire_on": 1709746011,
       "next_cert_issuable_on": 1676550831,
       "certs_received": {
@@ -159477,7 +162829,7 @@
     "Petitloup": {
       "index": 13408,
       "owner_key": "EZ1cvxBjU7ZWyeZ6svmewzUG3thDg482sqxjyeiaLzjR",
-      "balance": 16748,
+      "balance": 56434,
       "membership_expire_on": 1722591322,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -159491,7 +162843,7 @@
     "CYRIAK07": {
       "index": 5262,
       "owner_key": "EZ3byoQfQbAQuDUanDtKAHACAK7MQwqdRhhZgDRkqu6t",
-      "balance": 844669,
+      "balance": 884355,
       "membership_expire_on": 1711548274,
       "next_cert_issuable_on": 1690082875,
       "certs_received": {
@@ -159512,7 +162864,7 @@
     "Agnes07": {
       "index": 3189,
       "owner_key": "EZ768DFUuK1VsLJMnzCwyjT9aMrvafUXSZ4v1jy6Mn6b",
-      "balance": 1294210,
+      "balance": 1333896,
       "membership_expire_on": 1716219046,
       "next_cert_issuable_on": 1642491471,
       "certs_received": {
@@ -159526,13 +162878,13 @@
     "Coiflibre": {
       "index": 6213,
       "owner_key": "EZDxupyp79Dgin4Pmgf1zpzgHitWasM1EZxK7AKbNeFz",
-      "balance": 991951,
-      "membership_expire_on": 1694286192,
+      "balance": 1077365,
+      "membership_expire_on": 1726178842,
       "next_cert_issuable_on": 1667259749,
       "certs_received": {
-        "hibiscus11": 1696808302,
+        "hibiscus11": 1757736767,
         "LolieRu": 1697594242,
-        "danielbo": 1697773222,
+        "danielbo": 1757740387,
         "MARTIGOUGOUGNETTE": 1724470381,
         "Helene-petiteriviere": 1697858364,
         "BRIGITTE2019": 1697588184,
@@ -159543,8 +162895,8 @@
     "Sebmaubert": {
       "index": 6226,
       "owner_key": "EZQkWtoFBkW9ksc6ywQQyxCvGjuAkU61Un5jWqPxYTBM",
-      "balance": 681909,
-      "membership_expire_on": 1694648322,
+      "balance": 695793,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1654925042,
       "certs_received": {
         "Robisar": 1698047112,
@@ -159561,7 +162913,7 @@
     "Noel": {
       "index": 9175,
       "owner_key": "EZU9JofdvPhpRMLSKRuPsoyLKspczwpLeM5XvrmE6qeD",
-      "balance": 280332,
+      "balance": 400018,
       "membership_expire_on": 1720351756,
       "next_cert_issuable_on": 1681114397,
       "certs_received": {
@@ -159578,7 +162930,7 @@
     "Habibati": {
       "index": 5353,
       "owner_key": "EZWLWpETpGqXMtuNBvq9RmEEjviG596is2hjG5LNzoWJ",
-      "balance": 753897,
+      "balance": 793583,
       "membership_expire_on": 1712718824,
       "next_cert_issuable_on": 1688107388,
       "certs_received": {
@@ -159603,9 +162955,9 @@
     "Chaweyane": {
       "index": 6466,
       "owner_key": "EZabBt92TF9YJuN6crbA435NzV46QPw7gqhqgkDdt1AD",
-      "balance": 1237689,
-      "membership_expire_on": 1701046333,
-      "next_cert_issuable_on": 1669302776,
+      "balance": 1277375,
+      "membership_expire_on": 1727905609,
+      "next_cert_issuable_on": 1696420009,
       "certs_received": {
         "DaniailesA": 1706496492,
         "Amymary": 1713723339,
@@ -159614,7 +162966,7 @@
         "FrancoisSchlesser": 1702275842,
         "Elisourire": 1704337973,
         "Philosourire": 1711562766,
-        "LolaS": 1702274784,
+        "LolaS": 1759214679,
         "VanessaVigier": 1702951429,
         "Cecile26": 1708301828,
         "BernardJoseph": 1702244676
@@ -159623,7 +162975,7 @@
     "terraalta": {
       "index": 10670,
       "owner_key": "EZbxfyfmdABYrXwyCeYmaNVTYg1G1pMgBzJGN7q9FLTm",
-      "balance": 133687,
+      "balance": 97373,
       "membership_expire_on": 1701563119,
       "next_cert_issuable_on": 1670250612,
       "certs_received": {
@@ -159639,7 +162991,7 @@
     "Gil84": {
       "index": 6281,
       "owner_key": "EZhSTRt7sbvqhdgQBxE7pWx7jDmrCiwC5e8sB3Q3CnTf",
-      "balance": 667641,
+      "balance": 707327,
       "membership_expire_on": 1696939943,
       "next_cert_issuable_on": 1670046720,
       "certs_received": {
@@ -159690,8 +163042,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1657527159,
       "certs_received": {
-        "ValerieOrvain": 1698201063,
-        "bertha": 1694189980
+        "ValerieOrvain": 1698201063
       }
     },
     "Lanza": {
@@ -159712,7 +163063,7 @@
     "Nezpal": {
       "index": 6713,
       "owner_key": "EaBvyYSaV3R6jkYjGY7WHPVkDRooHmkQ8dF1vwYAG8ib",
-      "balance": 619599,
+      "balance": 659285,
       "membership_expire_on": 1698870367,
       "next_cert_issuable_on": 1651655750,
       "certs_received": {
@@ -159735,7 +163086,7 @@
     "jeanyves60": {
       "index": 11272,
       "owner_key": "EaDyqW7CbufvPEKLvGiM6xX2CyTqob51hQGjSr1DR4RJ",
-      "balance": 222883,
+      "balance": 262569,
       "membership_expire_on": 1705506367,
       "next_cert_issuable_on": 1690603277,
       "certs_received": {
@@ -159765,7 +163116,7 @@
     "Youn": {
       "index": 1549,
       "owner_key": "EaQnGXDkuRWH11gf5C7LzMqy7cPJv1RnmXEKK7CqHfFd",
-      "balance": 1685575,
+      "balance": 1725261,
       "membership_expire_on": 1701388314,
       "next_cert_issuable_on": 1682824309,
       "certs_received": {
@@ -159783,11 +163134,12 @@
     "Ralf": {
       "index": 12372,
       "owner_key": "EaSMNLL5VGACfAHM8eUmyVpJrR4EdhApQw73ahD4Lpai",
-      "balance": 346867,
+      "balance": 276669,
       "membership_expire_on": 1713015503,
-      "next_cert_issuable_on": 1691990914,
+      "next_cert_issuable_on": 1695436472,
       "certs_received": {
         "Kaikus": 1744585873,
+        "Matthias2405": 1757372710,
         "SoniaMallorca": 1754812085,
         "majo": 1744567330,
         "Ghostdog": 1755666473,
@@ -159803,15 +163155,16 @@
         "Andre": 1753313601,
         "tuttle": 1744607289,
         "SoniaElena": 1751775678,
-        "jagrau": 1744869348
+        "jagrau": 1744869348,
+        "Miko58": 1759623087
       }
     },
     "Vertumne": {
       "index": 11232,
       "owner_key": "EaSoBGaQNZjY2SGd9NqoAst23EJtqJzg9FmVm9fqXJQ7",
-      "balance": 942358,
+      "balance": 1101940,
       "membership_expire_on": 1701460139,
-      "next_cert_issuable_on": 1692792876,
+      "next_cert_issuable_on": 1693839638,
       "certs_received": {
         "venusienne": 1736900153,
         "IrisBleu": 1733635670,
@@ -159820,6 +163173,7 @@
         "sylvine": 1736895573,
         "yannlefranco": 1736922870,
         "KarineForest": 1734486354,
+        "Louisbeth": 1758754456,
         "HugoWeber": 1737055099,
         "EricSamsa": 1736900153,
         "vene": 1736903159
@@ -159828,7 +163182,7 @@
     "alex88": {
       "index": 9816,
       "owner_key": "EaV9zYwXC75NwvaJCWSr8wc8GZDK1TrDPDWVZEUp6ftZ",
-      "balance": 307269,
+      "balance": 319955,
       "membership_expire_on": 1723158713,
       "next_cert_issuable_on": 1691683700,
       "certs_received": {
@@ -159851,7 +163205,7 @@
     "dalidani": {
       "index": 10890,
       "owner_key": "EaWbGF6NRhLqm3kMktNG7KkyKLHCiatYqYbHPb9TaDeu",
-      "balance": 264930,
+      "balance": 304616,
       "membership_expire_on": 1702513078,
       "next_cert_issuable_on": 1671414550,
       "certs_received": {
@@ -159866,7 +163220,7 @@
     "helenede3": {
       "index": 9897,
       "owner_key": "EahHLazzNuXwaeqz41PZeAQkpKL9QWrfRpYSf7vBzxHy",
-      "balance": 332524,
+      "balance": 372210,
       "membership_expire_on": 1697046408,
       "next_cert_issuable_on": 1673676339,
       "certs_received": {
@@ -159880,13 +163234,14 @@
     "Faridalwest": {
       "index": 3713,
       "owner_key": "EajsSYNMUhCZ6QRuQdYepkxV5UK5siNPkZAKFP3bdWpx",
-      "balance": 1098592,
+      "balance": 1038278,
       "membership_expire_on": 1718546980,
-      "next_cert_issuable_on": 1690085102,
+      "next_cert_issuable_on": 1692894966,
       "certs_received": {
         "DanielVienne": 1717652325,
         "ImbertPaul13": 1710368709,
         "Maaude09": 1718175055,
+        "DavidMontpellier": 1758490134,
         "Venusienne": 1717578780,
         "Steph_and_me": 1702104933,
         "Gibaud_Charles": 1702090338,
@@ -159897,9 +163252,9 @@
     "Nounoursgt8946": {
       "index": 4716,
       "owner_key": "EarsgLfLT8bNrTXZ5PnCa8rbJytZjwdsXvhs3X67tJSa",
-      "balance": 945148,
+      "balance": 984834,
       "membership_expire_on": 1704204974,
-      "next_cert_issuable_on": 1688572489,
+      "next_cert_issuable_on": 1696421108,
       "certs_received": {
         "ThomasDesaunay": 1735853002,
         "LiliMag": 1737680968,
@@ -159911,6 +163266,7 @@
         "SOLARIS333": 1735975771,
         "Melek": 1737437056,
         "toutoune2189": 1751360371,
+        "Guillermo89": 1759466003,
         "Mia": 1737890805,
         "Atua": 1737403354,
         "Sebeq33": 1736043153,
@@ -159936,7 +163292,7 @@
     "Anaagua": {
       "index": 10865,
       "owner_key": "EbAej4PrCHGNd62bzqGxLquHvg7mZ3AemC4675E1eXnc",
-      "balance": 94997,
+      "balance": 91643,
       "membership_expire_on": 1701663744,
       "next_cert_issuable_on": 1684858293,
       "certs_received": {
@@ -159975,7 +163331,7 @@
     "Kolbak-1": {
       "index": 9059,
       "owner_key": "EbAttDWdr2Sj4pnb2hnw14RHFaUKGYG37gpkXztRiAmP",
-      "balance": 397598,
+      "balance": 437284,
       "membership_expire_on": 1721679638,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -159989,7 +163345,7 @@
     "Mel73": {
       "index": 4408,
       "owner_key": "EbDmsrAzjLbyiv6aca879CmTEZktbPKAHnMAduWRwkEk",
-      "balance": 54468,
+      "balance": 94154,
       "membership_expire_on": 1705606915,
       "next_cert_issuable_on": 1689229201,
       "certs_received": {
@@ -160012,7 +163368,7 @@
     "Lyo": {
       "index": 11850,
       "owner_key": "EbNoD3V6HoxMnxiCMgLsrFR1BziEsbLMzc3Hj2L5cmHC",
-      "balance": 188146,
+      "balance": 227832,
       "membership_expire_on": 1709422385,
       "next_cert_issuable_on": 1688746388,
       "certs_received": {
@@ -160029,7 +163385,7 @@
     "FullMoon": {
       "index": 7727,
       "owner_key": "EbQDxyVJuac4YnSS17GyeUMECVLpGtcyFDFHfyZRra7i",
-      "balance": 630086,
+      "balance": 669772,
       "membership_expire_on": 1709481037,
       "next_cert_issuable_on": 1671620995,
       "certs_received": {
@@ -160046,8 +163402,8 @@
     "ElodieAndouque": {
       "index": 9554,
       "owner_key": "EbXYivvDJNbHDU8fUNz3SuUTk7W2X6Yc7fHAXiCepMag",
-      "balance": 389983,
-      "membership_expire_on": 1693750940,
+      "balance": 424329,
+      "membership_expire_on": 1725729250,
       "next_cert_issuable_on": 1666234815,
       "certs_received": {
         "CHRISTIANE": 1725930527,
@@ -160068,7 +163424,7 @@
     "Sonja": {
       "index": 12799,
       "owner_key": "EbczpsjHT8PhbQzv3jKzVnBiyL2vAKUwP3ndiALCPpbf",
-      "balance": 101351,
+      "balance": 141037,
       "membership_expire_on": 1716986907,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -160082,7 +163438,7 @@
     "BrittM": {
       "index": 11935,
       "owner_key": "EbhJtiE3bRFozvACcq7WhCP7WRYu1B7Jv9yvHK86CURT",
-      "balance": 185674,
+      "balance": 225360,
       "membership_expire_on": 1709413283,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -160116,10 +163472,24 @@
         "loulouchantes": 1716424566
       }
     },
+    "LadyGes": {
+      "index": 13526,
+      "owner_key": "Ebu4nQDdbvZjcWY4qSDtd2uSkz2ZmQPy7Z75hG9k5rnH",
+      "balance": 36610,
+      "membership_expire_on": 1725476720,
+      "next_cert_issuable_on": 1695525428,
+      "certs_received": {
+        "Etoiledunord": 1757283700,
+        "JunOr11": 1757045116,
+        "AnnieP38": 1757180343,
+        "RejjeR": 1757039156,
+        "Bounty": 1757039561
+      }
+    },
     "7Daniel": {
       "index": 7619,
       "owner_key": "EbvVLiyBHcW8PmfXd7ghWLhBoxdkmH7sqFDxDx4hicqd",
-      "balance": 532243,
+      "balance": 571929,
       "membership_expire_on": 1708257008,
       "next_cert_issuable_on": 1690088107,
       "certs_received": {
@@ -160138,15 +163508,16 @@
     "ValTayie": {
       "index": 13236,
       "owner_key": "EbyGCs5Kp3dyMKpAR9KduddJmJswqnPCnaXQhkai6vjM",
-      "balance": 50828,
+      "balance": 76014,
       "membership_expire_on": 1720894566,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696166956,
       "certs_received": {
         "SophieDeprez": 1752799259,
         "JulieS": 1752709202,
         "Osmoze": 1752737833,
         "ElaineDana": 1753131581,
         "Goldwing": 1753673978,
+        "MikaPac": 1757669570,
         "Patoun": 1752735459
       }
     },
@@ -160161,7 +163532,7 @@
     "boniface": {
       "index": 8676,
       "owner_key": "EbzPdXvabowedaA71mZFTtyi3qwdsQ6NpiU6Hv7ApR14",
-      "balance": 456165,
+      "balance": 495851,
       "membership_expire_on": 1712578956,
       "next_cert_issuable_on": 1666262335,
       "certs_received": {
@@ -160180,7 +163551,7 @@
     "JeanPiano": {
       "index": 12578,
       "owner_key": "Ec3EFyNRRD9GAsTRD4DABRkoQnpPENt6iHUnAffsQVrK",
-      "balance": 123888,
+      "balance": 3574,
       "membership_expire_on": 1712849255,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -160210,7 +163581,7 @@
     "Daviddej": {
       "index": 7490,
       "owner_key": "EcMypF3rqgAG7xjUx2CywNnAx1ZXniCquiU1HND7Wr5o",
-      "balance": 548653,
+      "balance": 588339,
       "membership_expire_on": 1703985407,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -160228,12 +163599,14 @@
     "Rezette": {
       "index": 7306,
       "owner_key": "EcNDeRquk23UBnyQSa2Zo7QmRR7SqukDdA1gqZp49yB8",
-      "balance": 556073,
+      "balance": 588259,
       "membership_expire_on": 1703098537,
-      "next_cert_issuable_on": 1673103174,
+      "next_cert_issuable_on": 1694257503,
       "certs_received": {
+        "FabiH": 1757349785,
         "CapuChoeur": 1709714333,
         "AmandineDupret": 1710553148,
+        "Albert": 1756853012,
         "fanfan": 1756535902,
         "HAMSTERDAME": 1710280606,
         "Pierrotesla": 1709881167,
@@ -160244,9 +163617,9 @@
     "JunOr11": {
       "index": 13372,
       "owner_key": "EcSEdCyM5jYmE3gUtADHoTNy6jecAUhK259cdySRxtx5",
-      "balance": 23688,
+      "balance": 62374,
       "membership_expire_on": 1722189577,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696510864,
       "certs_received": {
         "MIDO": 1755143562,
         "Etoiledunord": 1755220483,
@@ -160255,6 +163628,20 @@
         "RejjeR": 1755196432
       }
     },
+    "JoRraGor": {
+      "index": 13659,
+      "owner_key": "EcTrWQ3hAvNmEeN5bAb2zirDzG4rYBasAyarNvXZhsqC",
+      "balance": 47436,
+      "membership_expire_on": 1727052596,
+      "next_cert_issuable_on": 1696576305,
+      "certs_received": {
+        "MAIKA": 1758662871,
+        "Aneferse": 1758661869,
+        "Ekane": 1758612013,
+        "EduZapping": 1758661869,
+        "ABuenVivir": 1758768734
+      }
+    },
     "lajardiniere": {
       "index": 4665,
       "owner_key": "EcWbAi2ET7Njjh4GZLYyd2uWEDWXPQ9AWGFkXD6oc6c2",
@@ -160280,7 +163667,7 @@
     "LiamF": {
       "index": 2346,
       "owner_key": "EcitxS1joYBSxgTAWis39Lk34GBWuyHsx86Ej1KZCKWW",
-      "balance": 1056546,
+      "balance": 1096232,
       "membership_expire_on": 1714218243,
       "next_cert_issuable_on": 1671102841,
       "certs_received": {
@@ -160295,7 +163682,7 @@
     "Loulou82": {
       "index": 6778,
       "owner_key": "Ecp5kLeeZjM82Q6HNUPqkAm3VNhH1KuYMuGtuuP3QbJj",
-      "balance": 556873,
+      "balance": 596559,
       "membership_expire_on": 1701643953,
       "next_cert_issuable_on": 1670201120,
       "certs_received": {
@@ -160318,7 +163705,7 @@
     "Feva": {
       "index": 13150,
       "owner_key": "Ed9QF8pJ5YkNf9mBVx5KmPsGDA1rnqyofxRqrK6uXd5Z",
-      "balance": 71900,
+      "balance": 111586,
       "membership_expire_on": 1720658788,
       "next_cert_issuable_on": 1690175452,
       "certs_received": {
@@ -160333,8 +163720,8 @@
     "S0raya": {
       "index": 5836,
       "owner_key": "Ed9w1WTa5DmgJCdB1ow4TThveSSSdy1NzQG6NpuHghiM",
-      "balance": 370939,
-      "membership_expire_on": 0,
+      "balance": 420625,
+      "membership_expire_on": 1725110287,
       "next_cert_issuable_on": 1665101739,
       "certs_received": {
         "nashira": 1697392713,
@@ -160350,15 +163737,13 @@
       "owner_key": "EdA7ek6oMw7zNgatwyzLZ9jUFbLFYc23gg3N8rqCPobG",
       "balance": 374772,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1630894891,
-      "certs_received": {
-        "KM974": 1694647686
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "donald1972": {
       "index": 11212,
       "owner_key": "EdFN9YB5xorYLKfsSibee4q59B61fLWEGXxpG3e9iA9N",
-      "balance": 246037,
+      "balance": 285723,
       "membership_expire_on": 1703771176,
       "next_cert_issuable_on": 1682049322,
       "certs_received": {
@@ -160372,8 +163757,8 @@
     "melall": {
       "index": 104,
       "owner_key": "EdJdKBJNbz5fiEBMXyXCrAbWd644wVu6S1pmTpybFKWn",
-      "balance": 2342942,
-      "membership_expire_on": 1698457506,
+      "balance": 2382628,
+      "membership_expire_on": 1725578551,
       "next_cert_issuable_on": 1687185038,
       "certs_received": {
         "NataNieves": 1716658018,
@@ -160386,7 +163771,7 @@
     "Neosoleil": {
       "index": 13203,
       "owner_key": "EdMRcX2EvFaDAUeEhCu6gmZvn5NyFbk68j4zftF7RfE2",
-      "balance": 187284,
+      "balance": 219494,
       "membership_expire_on": 1716645280,
       "next_cert_issuable_on": 1691742764,
       "certs_received": {
@@ -160405,11 +163790,17 @@
     "OdileJacquemet": {
       "index": 5251,
       "owner_key": "EdQLZ51fi2p7AcDyFoBi5hWkuwEf2g3oBpxjgsZQZZoQ",
-      "balance": 777465,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1683771315,
+      "balance": 898995,
+      "membership_expire_on": 1722433831,
+      "next_cert_issuable_on": 1695106551,
       "certs_received": {
-        "Loic": 1743992571
+        "Loic": 1743992571,
+        "Numerosympa": 1758081605,
+        "EveC": 1759633391,
+        "Maquilleuse": 1758087792,
+        "EleaLAROSE": 1758089311,
+        "Lando": 1757523417,
+        "Loupdaame": 1757523417
       }
     },
     "AnneRoret": {
@@ -160423,21 +163814,23 @@
     "KIAWE": {
       "index": 12721,
       "owner_key": "EdYmSRZb9cuEK4WxkcvYQCfK8Z6HbakcnhhtQ3SsBPWB",
-      "balance": 106068,
+      "balance": 145754,
       "membership_expire_on": 1716057147,
-      "next_cert_issuable_on": 1693450251,
+      "next_cert_issuable_on": 1695125585,
       "certs_received": {
         "DomMembre": 1747615066,
         "DomVe": 1747615066,
         "GeraldS": 1747723446,
+        "Bichounette": 1758305411,
         "Nyriel": 1747942835,
-        "Antares13": 1747615389
+        "Antares13": 1747615389,
+        "Patfil": 1758908857
       }
     },
     "Marysecpa": {
       "index": 6272,
       "owner_key": "EdafGL89iGzQoR8mRHM1T7HQ9EpqjAC9HvAWZhJsR44M",
-      "balance": 565907,
+      "balance": 612593,
       "membership_expire_on": 1720132462,
       "next_cert_issuable_on": 1681224289,
       "certs_received": {
@@ -160463,7 +163856,7 @@
     "NoemiGonce": {
       "index": 13204,
       "owner_key": "EdbUUXNCAPbbvED9WUmLz5jXxWQgPR8MDev4kVgA1gV3",
-      "balance": 54888,
+      "balance": 94574,
       "membership_expire_on": 1720320872,
       "next_cert_issuable_on": 1690884691,
       "certs_received": {
@@ -160478,7 +163871,7 @@
     "Jackyboisset": {
       "index": 9453,
       "owner_key": "EddYyKq1xHmonFDe2PnpARd3a6fNap34mLGpBXPr3joW",
-      "balance": 387652,
+      "balance": 427348,
       "membership_expire_on": 1722868234,
       "next_cert_issuable_on": 1691382634,
       "certs_received": {
@@ -160503,9 +163896,9 @@
     "Hagakure88": {
       "index": 11881,
       "owner_key": "Edeb6sbPXGtnTpHwj3nopK6VE1L5DJjkXmd4m6Ut7WEG",
-      "balance": 190169,
+      "balance": 229855,
       "membership_expire_on": 1709477826,
-      "next_cert_issuable_on": 1687609039,
+      "next_cert_issuable_on": 1695288015,
       "certs_received": {
         "DomMembre": 1741221401,
         "DomVe": 1741221401,
@@ -160518,9 +163911,9 @@
     "Teriiehina": {
       "index": 10328,
       "owner_key": "Ediq6BB38imRL8thmDfeJApURmJGdHV1K4UB7nZjPuRY",
-      "balance": 334836,
-      "membership_expire_on": 1698974376,
-      "next_cert_issuable_on": 1676557834,
+      "balance": 343522,
+      "membership_expire_on": 1725854941,
+      "next_cert_issuable_on": 1696433407,
       "certs_received": {
         "Aryana": 1731112059,
         "rosydailleurs": 1730608787,
@@ -160530,6 +163923,20 @@
         "SyoulAnuanua": 1730792749
       }
     },
+    "Gerard-Michel-3": {
+      "index": 13652,
+      "owner_key": "EdnHRfDYM1XLCntUjAZrXJYLLzAMHU2Pnx7kz8orMyNd",
+      "balance": 13914,
+      "membership_expire_on": 1726956010,
+      "next_cert_issuable_on": 1696053270,
+      "certs_received": {
+        "Icaunaise": 1758696165,
+        "Chene": 1758697028,
+        "YIKING": 1758516350,
+        "Joss": 1758520666,
+        "Shaypalgv": 1758684799
+      }
+    },
     "Jaune51": {
       "index": 5061,
       "owner_key": "EdxUJjPWzaeFpX6a4L5n4p9hGRU4JkroCRTjEcDnnhkg",
@@ -160548,10 +163955,25 @@
         "Sailorcherry": 1740190978
       }
     },
+    "joli6": {
+      "index": 13478,
+      "owner_key": "EdxhLZNhjsYUAjKHjTodQy176FtxFD3L8ohRNgtBCXPi",
+      "balance": 36350,
+      "membership_expire_on": 1724282029,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Bigfourmi": 1756535902,
+        "FabiH": 1756250085,
+        "mimimonique": 1755928879,
+        "Sylcol": 1758387916,
+        "Colaga": 1756768005,
+        "descampsam": 1755935848
+      }
+    },
     "EvaForest": {
       "index": 4993,
       "owner_key": "EdzY9dTcUVxGCSo3Vm1cQchoHP8ph9AM4BeZs5eHXWNb",
-      "balance": 397612,
+      "balance": 437298,
       "membership_expire_on": 1703843206,
       "next_cert_issuable_on": 1682669585,
       "certs_received": {
@@ -160582,9 +164004,9 @@
     "Verozen": {
       "index": 9475,
       "owner_key": "Ee2EJF5oWSSzWjMAGQkETYkEJ4ct6wc6CsQXdsAPoWUx",
-      "balance": 503609,
+      "balance": 537191,
       "membership_expire_on": 1719326551,
-      "next_cert_issuable_on": 1693247046,
+      "next_cert_issuable_on": 1695602659,
       "certs_received": {
         "xandraAritzkuren": 1747985475,
         "NancyAlexia": 1725903587,
@@ -160610,6 +164032,7 @@
         "Bidouille": 1745531408,
         "Nadia": 1755242491,
         "Micha": 1754523783,
+        "Petfa": 1757175819,
         "Maraki": 1738734446,
         "JulieD": 1727751609,
         "loreak": 1745289383,
@@ -160620,7 +164043,7 @@
     "Nyckel": {
       "index": 155,
       "owner_key": "Ee2dEHjTXYyLeCDx9Tjcsui956VN34YDSP5TJtUkXudw",
-      "balance": 2678693,
+      "balance": 2718379,
       "membership_expire_on": 1717695295,
       "next_cert_issuable_on": 1686209695,
       "certs_received": {
@@ -160655,7 +164078,7 @@
     "Jarrive": {
       "index": 5461,
       "owner_key": "Ee3NJ8HaegWnRjkBDt2jYkCzzS5RNvNTzDSFDi2k6AKZ",
-      "balance": 67285,
+      "balance": 106971,
       "membership_expire_on": 1711757733,
       "next_cert_issuable_on": 1674104756,
       "certs_received": {
@@ -160673,7 +164096,7 @@
     "Jean-Michel-SICRE": {
       "index": 12664,
       "owner_key": "Ee6HxWPQuPYuKEqcBsS6gpDm46BvwR26tWwXc2sGVGDL",
-      "balance": 116276,
+      "balance": 155962,
       "membership_expire_on": 1715522487,
       "next_cert_issuable_on": 1688547279,
       "certs_received": {
@@ -160700,6 +164123,20 @@
         "AnneDo": 1714441058
       }
     },
+    "GillesDELAGE": {
+      "index": 13498,
+      "owner_key": "EeB9MTNhYd3pWCWxYrydHa3Rf3y3XNNfYtrP8WM8V9Sx",
+      "balance": 62024,
+      "membership_expire_on": 1725125066,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "FrancisBperso": 1756888599,
+        "TataCC": 1756965803,
+        "ChristianMichelChampon": 1756771224,
+        "Benoa421": 1756777600,
+        "YannYoga": 1756771806
+      }
+    },
     "VivianeDumon974": {
       "index": 3421,
       "owner_key": "EeBL2dLCFMQgjPP8rmV9RLex4cXVavKz9cmgkGMmjhbz",
@@ -160722,7 +164159,7 @@
     "cindybaudour": {
       "index": 12711,
       "owner_key": "EeFeAXbNwLkViNRDqm6Z8dxmdoTdgkw3D5tgTGyGkcha",
-      "balance": 333397,
+      "balance": 373083,
       "membership_expire_on": 1715037404,
       "next_cert_issuable_on": 1686627445,
       "certs_received": {
@@ -160741,7 +164178,7 @@
     "Bastien97432": {
       "index": 8211,
       "owner_key": "EeJ9K1pBLufo1cse6wZ3QjUfC1Hay6XfgRCxu8bLG3kQ",
-      "balance": 492899,
+      "balance": 532585,
       "membership_expire_on": 1711409745,
       "next_cert_issuable_on": 1686272732,
       "certs_received": {
@@ -160760,10 +164197,25 @@
         "Wendy97418": 1737496127
       }
     },
+    "DanSch": {
+      "index": 13477,
+      "owner_key": "EeJ9tYsfAzBVPRYXeGhoP29uawBuzXCxKjiyatGRxzuR",
+      "balance": 40518,
+      "membership_expire_on": 1724097830,
+      "next_cert_issuable_on": 1696249338,
+      "certs_received": {
+        "Andy34": 1756741044,
+        "Elascap": 1756095515,
+        "HebraudH": 1755657228,
+        "PATREN17": 1755660302,
+        "Capferret": 1756745676,
+        "CorineH34": 1755930799
+      }
+    },
     "Talie": {
       "index": 12344,
       "owner_key": "EeKr5AQrkcwfQ9MEpLt1epECAFtKxndrtMfgB1Bd1w1U",
-      "balance": 154384,
+      "balance": 194070,
       "membership_expire_on": 1712954770,
       "next_cert_issuable_on": 1681718159,
       "certs_received": {
@@ -160774,10 +164226,24 @@
         "fildeguitare": 1744675730
       }
     },
+    "Marik": {
+      "index": 13766,
+      "owner_key": "EeLtFbZHDTrS169ixJ2NxYYXSiwHNDWLYDGuxHXdJr3K",
+      "balance": 15140,
+      "membership_expire_on": 1727989271,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "AnneSophieConotte": 1759851135,
+        "AgnesJs": 1759791184,
+        "Sandrinew": 1759771275,
+        "Annae": 1759714705,
+        "LaurentVanEeckhout": 1759812178
+      }
+    },
     "MChrys": {
       "index": 11869,
       "owner_key": "EeNi39U8onMwyUvMMjWwNafDAy9ogtzM8TQtFdNVESRF",
-      "balance": 189528,
+      "balance": 229214,
       "membership_expire_on": 1708603939,
       "next_cert_issuable_on": 1680752451,
       "certs_received": {
@@ -160791,7 +164257,7 @@
     "Librerk": {
       "index": 8418,
       "owner_key": "EePyDkJSY445BiKK3PAevVpF86GKWGRjqR8n7yGJVRKz",
-      "balance": 348090,
+      "balance": 387776,
       "membership_expire_on": 1712314606,
       "next_cert_issuable_on": 1657529279,
       "certs_received": {
@@ -160807,7 +164273,7 @@
     "Annewhoupup": {
       "index": 11399,
       "owner_key": "EeQVAxxL8M13oqGQVRLymDQyLakFUTEqHhT8Bsvp68vN",
-      "balance": 229057,
+      "balance": 268743,
       "membership_expire_on": 1705620379,
       "next_cert_issuable_on": 1676541387,
       "certs_received": {
@@ -160821,7 +164287,7 @@
     "lousyet": {
       "index": 1829,
       "owner_key": "Eecptu1MqxchgVJ7NHbdUkQ33M7Jm5aCPKYjebHyTbbs",
-      "balance": 1038585,
+      "balance": 1078271,
       "membership_expire_on": 1720415485,
       "next_cert_issuable_on": 1666484844,
       "certs_received": {
@@ -160836,8 +164302,8 @@
     "NansMS": {
       "index": 9494,
       "owner_key": "Eeie6AMKZPHADsxSkwGrQQmHGV7ghzYj9t4rkYJAkqWB",
-      "balance": 329484,
-      "membership_expire_on": 1694089499,
+      "balance": 336960,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1679370417,
       "certs_received": {
         "EricSIMON": 1726021938,
@@ -160852,7 +164318,7 @@
     "chaussette": {
       "index": 2327,
       "owner_key": "EekPDFpNnD1USyKQTjEFwFszZXheSrK7QvmemCgxkfd3",
-      "balance": 869800,
+      "balance": 935486,
       "membership_expire_on": 1711648389,
       "next_cert_issuable_on": 1691498843,
       "certs_received": {
@@ -160870,7 +164336,7 @@
     "instanton43": {
       "index": 2976,
       "owner_key": "EenHZFkXoPFyQ48upBTiDmxs3U7knybQcruhxFBkRrU8",
-      "balance": 1144757,
+      "balance": 1184443,
       "membership_expire_on": 1701302598,
       "next_cert_issuable_on": 1680864311,
       "certs_received": {
@@ -160881,7 +164347,6 @@
         "Larz": 1732918920,
         "DameYouli": 1744603655,
         "LaMarie12": 1714701350,
-        "Pedrinho": 1695855013,
         "PatrickFreoua": 1723792244,
         "katou": 1736914992
       }
@@ -160889,7 +164354,7 @@
     "Abi": {
       "index": 2748,
       "owner_key": "EenhXU232thSNGASHPFPeVECy1L5dFNNcoQM1PkdEqrf",
-      "balance": 751982,
+      "balance": 791668,
       "membership_expire_on": 1705430682,
       "next_cert_issuable_on": 1677577363,
       "certs_received": {
@@ -160912,9 +164377,9 @@
     "Sylveescandorgue": {
       "index": 11603,
       "owner_key": "Eeq6ouPyGYh3Q3K3E7C6ZwuVdnSmD8Zc1h1NSw9ZZnJE",
-      "balance": 172208,
+      "balance": 166894,
       "membership_expire_on": 1707745962,
-      "next_cert_issuable_on": 1692787883,
+      "next_cert_issuable_on": 1693206885,
       "certs_received": {
         "ArletteM": 1739416718,
         "Lorahan": 1750394738,
@@ -160929,7 +164394,7 @@
     "HelenDuceau": {
       "index": 5323,
       "owner_key": "EerpUMt5Wxz5w9dMYY741TzisJg6wgudJ9ibeeEjyyxM",
-      "balance": 845213,
+      "balance": 884899,
       "membership_expire_on": 1715472997,
       "next_cert_issuable_on": 1685274740,
       "certs_received": {
@@ -160938,11 +164403,11 @@
         "Matymama": 1708136851,
         "Ramounichoux": 1751991566,
         "Marieclaude": 1733545829,
+        "Marie2puivert": 1757602793,
         "Bobydick": 1718924453,
         "Pectine": 1740338381,
         "thierry58": 1698782073,
         "AurelienBois": 1696751146,
-        "Celuiquicrelamehaute": 1696716254,
         "Sofi11": 1703662469
       }
     },
@@ -160957,7 +164422,7 @@
     "JuanPierre": {
       "index": 13297,
       "owner_key": "EeyhcHFtNJFhTa4XHXjCnszZQLVTtQFPHRKTZMm2oagL",
-      "balance": 13972,
+      "balance": 63658,
       "membership_expire_on": 1722476693,
       "next_cert_issuable_on": 1692744266,
       "certs_received": {
@@ -160972,7 +164437,7 @@
     "Maninarte": {
       "index": 13035,
       "owner_key": "Ef13Sp4wEeGQZ6MQjfdsjQtR8qHtKDqZebMvFdEfroJp",
-      "balance": 132616,
+      "balance": 169302,
       "membership_expire_on": 1718550436,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -161010,11 +164475,12 @@
     "NatNaelle": {
       "index": 7216,
       "owner_key": "Ef8CroN2szry7r66EPCyYyLh6utfiWuwbmcCXGKqy5dn",
-      "balance": 168002,
+      "balance": 339288,
       "membership_expire_on": 1704569666,
-      "next_cert_issuable_on": 1690887985,
+      "next_cert_issuable_on": 1694410571,
       "certs_received": {
         "Kouleurs": 1754079154,
+        "JerryBB": 1758590268,
         "Naho": 1741281456,
         "AmandineDupret": 1709678957,
         "MaDalton65": 1709433554,
@@ -161022,6 +164488,7 @@
         "daluz": 1709680464,
         "Vinciane": 1731620989,
         "Jessluciole": 1714552083,
+        "CTL": 1757475650,
         "JacquesGaetan": 1713828093,
         "Hadalem31": 1709577626,
         "Mae": 1709678957,
@@ -161031,7 +164498,7 @@
     "DeniseHovasse": {
       "index": 9047,
       "owner_key": "EfGuH2Hh6McaXCposSHtKvXVpZNF7bmgPq2B4Um7cGLz",
-      "balance": 442533,
+      "balance": 482219,
       "membership_expire_on": 1717588029,
       "next_cert_issuable_on": 1692584689,
       "certs_received": {
@@ -161044,6 +164511,7 @@
         "ArmandHovasse": 1729703255,
         "Rom1": 1722228556,
         "lelfedesboa": 1722201458,
+        "PaulineDebeure": 1756064638,
         "JeanDavidHovasse": 1729054505,
         "Alexag": 1722009668,
         "Bastian_Leguay": 1738705423,
@@ -161062,7 +164530,7 @@
     "Garance": {
       "index": 12288,
       "owner_key": "EfJDXEcU9z9ivBnsryXk7xevjZjCE8c3kEKCYax8rgVS",
-      "balance": 156860,
+      "balance": 196546,
       "membership_expire_on": 1712318651,
       "next_cert_issuable_on": 1683889471,
       "certs_received": {
@@ -161076,7 +164544,7 @@
     "ChristineOliveira": {
       "index": 3542,
       "owner_key": "EfYrNp5NpHQL4TDsCU5S8itT7dwXimxybgwAa6zPru6S",
-      "balance": 1747467,
+      "balance": 1807153,
       "membership_expire_on": 1710449276,
       "next_cert_issuable_on": 1658486154,
       "certs_received": {
@@ -161101,7 +164569,7 @@
     "lunadou": {
       "index": 10353,
       "owner_key": "EfYw3haPwi9foEavn1i7PXebsNc2DEwK3ktWPsfAxKMD",
-      "balance": 319077,
+      "balance": 358763,
       "membership_expire_on": 1699204353,
       "next_cert_issuable_on": 1685023077,
       "certs_received": {
@@ -161117,7 +164585,7 @@
     "Mamibio": {
       "index": 10628,
       "owner_key": "EfZ3EbdkK4783fjq1u6JAkYSVYgUQ6FGoCC2cdmQzVQU",
-      "balance": 304215,
+      "balance": 343901,
       "membership_expire_on": 1701383724,
       "next_cert_issuable_on": 1674906041,
       "certs_received": {
@@ -161143,8 +164611,8 @@
     "Fran444": {
       "index": 9602,
       "owner_key": "EfaGq1ACqZQf4VXu5wwr3s1ib7SP1r3oXSBr1iaWcGXB",
-      "balance": 386822,
-      "membership_expire_on": 1694976657,
+      "balance": 404978,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1664283834,
       "certs_received": {
         "Clarinette": 1726868925,
@@ -161157,7 +164625,7 @@
     "Laurent-de-Moirans": {
       "index": 6357,
       "owner_key": "EfiS1oPtjEpLYUJdkSPnxQ91zLKsFZ5WpEDFZMSmimm7",
-      "balance": 565377,
+      "balance": 571763,
       "membership_expire_on": 1703605548,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
@@ -161168,14 +164636,14 @@
         "thierry38": 1749277327,
         "ALFONSILaurent": 1756572361,
         "Ravintsara": 1729310894,
-        "VWAUMANS": 1698435657,
+        "VWAUMANS": 1755655430,
         "JBM": 1698429227
       }
     },
     "Regalli": {
       "index": 7802,
       "owner_key": "Eg5CCnRXwkHy1rqbxNs2txh4By2t9HDeBQMzVB6oKyek",
-      "balance": 275580,
+      "balance": 323266,
       "membership_expire_on": 1709684545,
       "next_cert_issuable_on": 1682546438,
       "certs_received": {
@@ -161197,8 +164665,8 @@
     "Loraine": {
       "index": 10013,
       "owner_key": "Eg7sabqDy8huyq3YccV9BjHvjm5XCq7rSQUftgfLhMKF",
-      "balance": 335052,
-      "membership_expire_on": 1697499981,
+      "balance": 374738,
+      "membership_expire_on": 1726091117,
       "next_cert_issuable_on": 1670419631,
       "certs_received": {
         "Niranjana": 1729097743,
@@ -161215,7 +164683,7 @@
     "AngelS": {
       "index": 8369,
       "owner_key": "EgLENQ3sVThpmabjWF2G9B4MDjzB7PdbvWqwFskD35sU",
-      "balance": 1904067,
+      "balance": 1943753,
       "membership_expire_on": 1711496866,
       "next_cert_issuable_on": 1680011266,
       "certs_received": {
@@ -161256,9 +164724,9 @@
     "Goldwing": {
       "index": 10730,
       "owner_key": "EgPwA8LQ9RT8iwYJdZCgkQTC7J6YohxYE8y4chNeYnwX",
-      "balance": 242591,
-      "membership_expire_on": 1701806672,
-      "next_cert_issuable_on": 1693065655,
+      "balance": 232777,
+      "membership_expire_on": 1728220851,
+      "next_cert_issuable_on": 1696166070,
       "certs_received": {
         "GastonL": 1756084214,
         "Piet": 1744330206,
@@ -161282,7 +164750,7 @@
     "Nadette": {
       "index": 5439,
       "owner_key": "EgTLi3TY9xyeaNiwzRnWzRSmD1ZpS1s4MkydRgDALbVG",
-      "balance": 975769,
+      "balance": 1015455,
       "membership_expire_on": 1719097891,
       "next_cert_issuable_on": 1657900999,
       "certs_received": {
@@ -161299,25 +164767,27 @@
     "MPaule": {
       "index": 12040,
       "owner_key": "EgcLKfbGNcn2qGhRciZGhmyVJidTizim5zpJP7z6w4SG",
-      "balance": 167179,
+      "balance": 206865,
       "membership_expire_on": 1710270023,
-      "next_cert_issuable_on": 1692423455,
+      "next_cert_issuable_on": 1695433040,
       "certs_received": {
         "TreenfolkG": 1742288547,
         "BrigitteB": 1742360631,
         "Barbatruc": 1741853654,
         "IsadeSpa": 1742331147,
+        "Muriel": 1759471479,
         "Selchy": 1742313517,
         "juliettesemilla": 1742331656,
-        "Kriss480": 1742193260
+        "Kriss480": 1742193260,
+        "Bilou": 1758857329
       }
     },
     "Kris_Izaratia": {
       "index": 7911,
       "owner_key": "EgdtAiGtq8rEJFHqoqyWoaExbqpHnBLkbRVR5rBw1p3L",
-      "balance": 167190,
+      "balance": 179310,
       "membership_expire_on": 1708810792,
-      "next_cert_issuable_on": 1691550734,
+      "next_cert_issuable_on": 1696138727,
       "certs_received": {
         "kapis": 1730501964,
         "Enara": 1726100324,
@@ -161377,7 +164847,7 @@
     "osavoyard": {
       "index": 7034,
       "owner_key": "Egrsy9xoQWLRdjPBsYon3yFHfQeHqeDjEb6RwVRVcsWi",
-      "balance": 618282,
+      "balance": 607968,
       "membership_expire_on": 1702414197,
       "next_cert_issuable_on": 1676890012,
       "certs_received": {
@@ -161395,7 +164865,7 @@
     "CuatroVistas": {
       "index": 11024,
       "owner_key": "EgvPmDA4auvy7pftHFBTJov7vtWHcmXBFtgXHAmkhcRc",
-      "balance": 175063,
+      "balance": 154623,
       "membership_expire_on": 1702670530,
       "next_cert_issuable_on": 1687178537,
       "certs_received": {
@@ -161410,7 +164880,7 @@
     "KiranGAUTHIER": {
       "index": 7625,
       "owner_key": "EgvfWqzHaHKPnKjzuCdhqWkiAvxMJpNMdKFXaJHPnXcz",
-      "balance": 521482,
+      "balance": 561168,
       "membership_expire_on": 1707056435,
       "next_cert_issuable_on": 1673178450,
       "certs_received": {
@@ -161432,12 +164902,13 @@
     "Valoo": {
       "index": 13095,
       "owner_key": "EhBW15M77wJJFEhJDpc4CC5ydHL1YeBjvPTDBnDowEzE",
-      "balance": 192908,
+      "balance": 281094,
       "membership_expire_on": 1715188692,
-      "next_cert_issuable_on": 1690985955,
+      "next_cert_issuable_on": 1694953507,
       "certs_received": {
         "Hava_bien": 1753152043,
         "Agidoo": 1747323413,
+        "Steph974": 1758075278,
         "Mikhaella3448": 1751047864,
         "Choukette": 1750266751,
         "Amberle34500": 1751848033,
@@ -161448,8 +164919,8 @@
     "Kiwano": {
       "index": 9572,
       "owner_key": "EhDKL4AsSZEkMwicd4VFQNqAqgc8CrbFvnEyfCFrkSQM",
-      "balance": 292096,
-      "membership_expire_on": 1694868755,
+      "balance": 309184,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683022405,
       "certs_received": {
         "hirondelle": 1729424180,
@@ -161480,7 +164951,7 @@
     "LobsangDawa": {
       "index": 12222,
       "owner_key": "EhHtmMFnfGDagbWGiNsZ561RNhkv3KQ7b53tqpwrLBhZ",
-      "balance": 438432,
+      "balance": 468118,
       "membership_expire_on": 1711731354,
       "next_cert_issuable_on": 1692700808,
       "certs_received": {
@@ -161489,6 +164960,7 @@
         "Moudom": 1755720489,
         "mimimonique": 1743719666,
         "Sylvieb": 1755743744,
+        "Ange4020": 1759376593,
         "Purcell": 1743724691,
         "Bebeth": 1755720790,
         "Lando": 1743724691,
@@ -161498,7 +164970,7 @@
     "Anne-Pierre": {
       "index": 5476,
       "owner_key": "EhJoivoL1GcvPY9tJuzaE8derybJ7bFEe3JgvQaT8BEo",
-      "balance": 787241,
+      "balance": 826927,
       "membership_expire_on": 1722204848,
       "next_cert_issuable_on": 1691820201,
       "certs_received": {
@@ -161521,7 +164993,7 @@
     "Sylvain2NC": {
       "index": 3474,
       "owner_key": "EhPT8naTt1hUQu9vbsPpj39XfH8DqpJE6p6khaF7HDdo",
-      "balance": 1313752,
+      "balance": 1353438,
       "membership_expire_on": 1703635509,
       "next_cert_issuable_on": 1674589989,
       "certs_received": {
@@ -161536,9 +165008,9 @@
     "Marionrosa": {
       "index": 7350,
       "owner_key": "EhRy1Zvq6DzEfGpnRLp5FQxUQ2C88sJC9GfSjsUoXjua",
-      "balance": 956142,
+      "balance": 975828,
       "membership_expire_on": 1710288997,
-      "next_cert_issuable_on": 1691289925,
+      "next_cert_issuable_on": 1696161309,
       "certs_received": {
         "Nanoo": 1721703603,
         "Cristol-Iquid": 1718058151,
@@ -161564,7 +165036,7 @@
     "CrackMalheiro05": {
       "index": 11851,
       "owner_key": "EhVusaUnvnqqJztB6cTSfkjcxUihjesbGUEUDZMTQ3ML",
-      "balance": 194146,
+      "balance": 233832,
       "membership_expire_on": 1709249047,
       "next_cert_issuable_on": 1687855863,
       "certs_received": {
@@ -161585,10 +165057,12 @@
         "DeboraTavares": 1750610692,
         "pedroponte": 1749889821,
         "JorgeDraven": 1743745865,
+        "JoaoLestro": 1757809089,
         "RosaAlvesPinho": 1741030572,
         "Naneff": 1740991775,
         "Fauna": 1750297797,
-        "Fa5": 1740981407
+        "Fa5": 1740981407,
+        "ElisabeteMartins": 1757196522
       }
     },
     "Sandelrio": {
@@ -161650,7 +165124,7 @@
     "biodomi": {
       "index": 11291,
       "owner_key": "Ehpwm83rEZxKj1CrRmJeAg3S5dt9r4fHCsr7iLQmwXnK",
-      "balance": 194624,
+      "balance": 234310,
       "membership_expire_on": 1701463250,
       "next_cert_issuable_on": 1691724822,
       "certs_received": {
@@ -161665,9 +165139,9 @@
     "Nathjeanson": {
       "index": 8663,
       "owner_key": "EhspSCSHyi1u1pL5Jsjj5TvHZav1waEbANQz2QZ68M1R",
-      "balance": 320092,
+      "balance": 334378,
       "membership_expire_on": 1714239143,
-      "next_cert_issuable_on": 1692963836,
+      "next_cert_issuable_on": 1694411096,
       "certs_received": {
         "Midorela": 1732253044,
         "NBes2022": 1744869694,
@@ -161686,7 +165160,7 @@
     "rosedessables": {
       "index": 11824,
       "owner_key": "Ehy2xtCNMYqzgkHf8rB4MRYZEtYARmRpurvSsKeqioBD",
-      "balance": 195264,
+      "balance": 234950,
       "membership_expire_on": 1708727183,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -161700,15 +165174,13 @@
     "Margaux": {
       "index": 5591,
       "owner_key": "EhzFZZWV44XdkoEwHTRkuuCQeZkbtMeiekPJ1tcy4dmA",
-      "balance": 639159,
+      "balance": 678845,
       "membership_expire_on": 1722687728,
       "next_cert_issuable_on": 1691202363,
       "certs_received": {
         "absalon2": 1755909659,
-        "ElieLombard": 1693675716,
-        "Axellerose": 1695793814,
+        "nashira": 1756837954,
         "Luc": 1754368959,
-        "Phen": 1694849842,
         "MarineJ": 1756261626,
         "Cigalou": 1751914701
       }
@@ -161716,7 +165188,7 @@
     "Prisc": {
       "index": 10702,
       "owner_key": "Ei3VcKfZXe2KjQYben29RmwJcLSwGqiTV7xh7x7WQsgS",
-      "balance": 150138,
+      "balance": 99824,
       "membership_expire_on": 1699136325,
       "next_cert_issuable_on": 1679468692,
       "certs_received": {
@@ -161733,7 +165205,7 @@
     "Rano": {
       "index": 7290,
       "owner_key": "EiDWbfX5UhEGjScE9Ks1K1nD8W5c7ZYpRz5naBaQdRL5",
-      "balance": 450040,
+      "balance": 489726,
       "membership_expire_on": 1709081236,
       "next_cert_issuable_on": 1658761932,
       "certs_received": {
@@ -161748,13 +165220,12 @@
     "Adelle": {
       "index": 3615,
       "owner_key": "EiJ1fX6wS4HnnzQ1BvhawQv8m4wgyZmKGbgzxJnJPitF",
-      "balance": 309862,
+      "balance": 349548,
       "membership_expire_on": 1718495460,
       "next_cert_issuable_on": 1654165304,
       "certs_received": {
         "MattD": 1703297936,
         "Mavag": 1706295234,
-        "Maxoud": 1696574066,
         "Isaeng": 1717022019,
         "ReMaLoup": 1701452653,
         "AdrienLenoble": 1717208504
@@ -161763,9 +165234,9 @@
     "CitizenP": {
       "index": 13419,
       "owner_key": "EiWSMUPiSUDUtDieFDjgvaxQEHssa9HZ6kUmBcuJtLP9",
-      "balance": 8922,
+      "balance": 30608,
       "membership_expire_on": 1723997378,
-      "next_cert_issuable_on": 1693323578,
+      "next_cert_issuable_on": 1693925872,
       "certs_received": {
         "rockwater": 1755555692,
         "CeHunin": 1755836489,
@@ -161779,7 +165250,7 @@
     "Logan974": {
       "index": 9162,
       "owner_key": "EiZNkiFXvprc5CeK4cQ2hukT9M11N9Cdme8mLJH3DLMv",
-      "balance": 320321,
+      "balance": 335007,
       "membership_expire_on": 1719255801,
       "next_cert_issuable_on": 1660206401,
       "certs_received": {
@@ -161796,7 +165267,7 @@
     "Bittor": {
       "index": 10240,
       "owner_key": "EiZUmhCzvk1qu5XDMYAEhRpozCCAWt6QP3k8PhVCa2iJ",
-      "balance": 357890,
+      "balance": 387576,
       "membership_expire_on": 1699293069,
       "next_cert_issuable_on": 1685535518,
       "certs_received": {
@@ -161817,7 +165288,7 @@
     "FrancisGonzalez": {
       "index": 11319,
       "owner_key": "EiZWibXsG1MN9wWbWmRorjxBnB785qiV36wFzMWf4SkZ",
-      "balance": 174363,
+      "balance": 204049,
       "membership_expire_on": 1705868696,
       "next_cert_issuable_on": 1687170940,
       "certs_received": {
@@ -161836,13 +165307,16 @@
     "Metark": {
       "index": 7191,
       "owner_key": "EiaifS5JifMusH6bEyQg4Rjrvwk3QEAs1cDsVCPjgdjg",
-      "balance": 575835,
+      "balance": 615521,
       "membership_expire_on": 1708398185,
       "next_cert_issuable_on": 1671545893,
       "certs_received": {
+        "Nadege26": 1759297687,
+        "Tico": 1759114192,
         "Laurentld": 1708801710,
         "MaxGay07": 1708741391,
         "ClauTie26": 1708733425,
+        "EDiet": 1758942520,
         "Hera": 1709569119,
         "FranckVal": 1708743226
       }
@@ -161850,7 +165324,7 @@
     "Brigitteb": {
       "index": 10898,
       "owner_key": "EiiBywPmrDVjQhhEyA9JSWAeryXekGTHVi1AX3v6QTrA",
-      "balance": 272571,
+      "balance": 312257,
       "membership_expire_on": 1702047941,
       "next_cert_issuable_on": 1679114408,
       "certs_received": {
@@ -161866,11 +165340,10 @@
     "Odette": {
       "index": 3264,
       "owner_key": "EiqLrxVzQBj9mfjRV4HZ8snBzTbcvkaEU8uZNU1P8k6i",
-      "balance": 834442,
+      "balance": 874128,
       "membership_expire_on": 1716850285,
       "next_cert_issuable_on": 1685757917,
       "certs_received": {
-        "Alinerv": 1695233871,
         "Marc135": 1748328067,
         "TataYoyo": 1748328067,
         "Hermione43": 1741910235,
@@ -161882,27 +165355,24 @@
     "Kiara974": {
       "index": 5073,
       "owner_key": "EiwF3oUvNaTycRfQLKxHrjcsv3PGUvdGp5GKiisP6NHA",
-      "balance": 847294,
+      "balance": 886981,
       "membership_expire_on": 1719419587,
-      "next_cert_issuable_on": 1687933987,
+      "next_cert_issuable_on": 1694129412,
       "certs_received": {
         "Gloria974": 1748746932,
         "Sorgentini": 1751779710,
         "SamuelPabloAlmonacid": 1750763489,
         "Betty": 1751595477,
         "Monik9366": 1741168774,
-        "melanie_zen974": 1695591917,
         "Roswell": 1744869694,
-        "FredericAmany974": 1749251959,
-        "Caroshakti": 1694353442,
-        "FrancoiseRangla974": 1695481170
+        "FredericAmany974": 1749251959
       }
     },
     "meisan": {
       "index": 9852,
       "owner_key": "Eixdstwww1NfaW2PgycTv5eREQ6ktQXxUjACRGqZCvSi",
-      "balance": 415701,
-      "membership_expire_on": 1695404713,
+      "balance": 439217,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "MarieOuf": 1727818992,
@@ -161915,7 +165385,7 @@
     "Maritxu": {
       "index": 7340,
       "owner_key": "Ej392BiCtChxxXQM48MwZ2pYnL3dgSmZU86YyBFMeLkA",
-      "balance": 194464,
+      "balance": 333554,
       "membership_expire_on": 1705776820,
       "next_cert_issuable_on": 1691995807,
       "certs_received": {
@@ -161961,6 +165431,7 @@
         "crisleon": 1734766308,
         "Elpelu": 1729665082,
         "AinaraNutri": 1750902570,
+        "Ely81": 1754962044,
         "Dayana": 1730613106,
         "Ekane": 1740952178,
         "Noxtan": 1719133394,
@@ -161987,7 +165458,7 @@
     "Lamu_vigo": {
       "index": 7137,
       "owner_key": "EjFCpYwSywgwCwVhWtdq4shLwgP5zaRSAAmSEfkc56Rf",
-      "balance": 546903,
+      "balance": 586589,
       "membership_expire_on": 1707747352,
       "next_cert_issuable_on": 1649076588,
       "certs_received": {
@@ -162002,16 +165473,32 @@
         "Nico34": 1755126359
       }
     },
+    "Chubby": {
+      "index": 13685,
+      "owner_key": "EjJt1EEQbWRrBX7QnvFU9KgghXSfwWYJLGJTXn2vr5SP",
+      "balance": 9692,
+      "membership_expire_on": 1727027553,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Sunshining": 1758741839,
+        "BrigitteB": 1759635564,
+        "Fennec": 1759122203,
+        "Gillette": 1759000761,
+        "ChantAloha": 1759122203,
+        "Basilous15": 1758823347
+      }
+    },
     "CelesteWH": {
       "index": 13385,
       "owner_key": "EjNW5DS7Ld4TzbQFNpwDd8iKc8k4YY9HHb3y54h5rcJd",
-      "balance": 19952,
+      "balance": 59638,
       "membership_expire_on": 1722898269,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696388073,
       "certs_received": {
         "DomMembre": 1755197908,
         "DomVe": 1755199165,
         "Dom67": 1754507791,
+        "Terenia2809": 1758583085,
         "GeraldS": 1755205001,
         "Antares13": 1755197626
       }
@@ -162019,7 +165506,7 @@
     "Chris38": {
       "index": 10117,
       "owner_key": "EjnX3qZJ9888y5ritgy9mEPiqhB8jBrf6J9SZHnfWs8c",
-      "balance": 334780,
+      "balance": 374466,
       "membership_expire_on": 1698194424,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -162033,7 +165520,7 @@
     "ANNICK": {
       "index": 12948,
       "owner_key": "Ejo26CVM7H9qQqxbZNyCLpooxCfkwQ51D4XATK1PevDz",
-      "balance": 77896,
+      "balance": 117582,
       "membership_expire_on": 1718798096,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -162056,7 +165543,7 @@
     "GinetteJub": {
       "index": 4528,
       "owner_key": "Ejs3wRW6oM4iKSCrp3F5ssdAX7oJGoqGvV3Tzv5dDz4F",
-      "balance": 970596,
+      "balance": 1010282,
       "membership_expire_on": 1704047633,
       "next_cert_issuable_on": 1675511758,
       "certs_received": {
@@ -162079,8 +165566,8 @@
     "Amaralar": {
       "index": 9814,
       "owner_key": "EjstoHC66vj6XWJ5xLMipf6QQGq7DkSUgRCJFuBNg8ia",
-      "balance": 83535,
-      "membership_expire_on": 1696090193,
+      "balance": 49075,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1688177372,
       "certs_received": {
         "Ovejaenrebelion": 1740603196,
@@ -162098,7 +165585,7 @@
     "Emma31": {
       "index": 985,
       "owner_key": "EjtKYRejCivQjHefDxj5C8pxHj87GqyNhkoeGxPjPRxQ",
-      "balance": 555505,
+      "balance": 595191,
       "membership_expire_on": 1700583020,
       "next_cert_issuable_on": 1686724593,
       "certs_received": {
@@ -162115,9 +165602,9 @@
     "Vinanssey15": {
       "index": 3648,
       "owner_key": "Eju9VxxSNQsnQPbumT8m4AEf1mpAx4h31XGGHe34c2Fm",
-      "balance": 1211294,
+      "balance": 1250980,
       "membership_expire_on": 1718239151,
-      "next_cert_issuable_on": 1674563326,
+      "next_cert_issuable_on": 1695816019,
       "certs_received": {
         "Pensey20": 1717134265,
         "Philippe26": 1718848162,
@@ -162130,13 +165617,12 @@
     "Corinne": {
       "index": 362,
       "owner_key": "EjwEC9SZUzHFSSYcjvaD3n5Yiwjf3sWjZVtSGsrjs4Qt",
-      "balance": 1686622,
-      "membership_expire_on": 1694095828,
+      "balance": 1694098,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1638125173,
       "certs_received": {
         "trezen": 1700860448,
         "Pblq_65": 1713028985,
-        "Guenoel": 1696546151,
         "ji_emme": 1701847518,
         "Cathy31": 1701245925
       }
@@ -162144,9 +165630,9 @@
     "Happyculteur": {
       "index": 5345,
       "owner_key": "EjwRfW6QFrLYW4GwssYkq13p8jY7WDHh9zNc8y4fHrwV",
-      "balance": 646866,
+      "balance": 686552,
       "membership_expire_on": 1714326815,
-      "next_cert_issuable_on": 1692432235,
+      "next_cert_issuable_on": 1695631744,
       "certs_received": {
         "JF13": 1753156476,
         "Manu_El": 1738831890,
@@ -162161,6 +165647,7 @@
         "Ecotros": 1733851689,
         "lisarosa": 1721513444,
         "Amaraya": 1736910710,
+        "Liliwasabi": 1758609386,
         "Annankha": 1754984861,
         "NoaChereau": 1721497524,
         "BertrandChereau": 1721497206,
@@ -162171,7 +165658,7 @@
     "carmenpeluquera": {
       "index": 13271,
       "owner_key": "EjxhwUDwNYYeBx8gQ2vxmFXvmU1BRU87eKo5WJu7CJW5",
-      "balance": 82826,
+      "balance": 132912,
       "membership_expire_on": 1722184122,
       "next_cert_issuable_on": 1691928220,
       "certs_received": {
@@ -162188,9 +165675,9 @@
     "DjaneDiveraine": {
       "index": 4082,
       "owner_key": "EjzbAhfTZSDtRmr8XZMBC7ZjowA5tDiD5iVHQZXpgDEV",
-      "balance": 844761,
+      "balance": 885425,
       "membership_expire_on": 1713574968,
-      "next_cert_issuable_on": 1684514970,
+      "next_cert_issuable_on": 1695759239,
       "certs_received": {
         "Beasejour": 1744956085,
         "fdrubigny": 1726173696,
@@ -162198,8 +165685,9 @@
         "Shana_B": 1701795635,
         "Tchois": 1730144092,
         "denkyemx": 1730084545,
+        "Rach": 1758787826,
         "Luxdemessis": 1710414889,
-        "Ingriddevendee": 1699349740,
+        "Ingriddevendee": 1758120499,
         "Perrine971": 1727780299,
         "JP-Rod": 1734670646,
         "bricodeur": 1733526141,
@@ -162219,7 +165707,7 @@
     "LindaRose": {
       "index": 8483,
       "owner_key": "Ek7x2tgab6MuTJdcvhAWCAAi1E95Nm4CRnSTm1UgWBvj",
-      "balance": 299879,
+      "balance": 375565,
       "membership_expire_on": 1715520187,
       "next_cert_issuable_on": 1675172037,
       "certs_received": {
@@ -162234,7 +165722,7 @@
     "Mara": {
       "index": 11912,
       "owner_key": "EkAAXKgRNtdNWoMiKfxqFMatnSgwC94cvjR9nFB7yZqe",
-      "balance": 187192,
+      "balance": 226878,
       "membership_expire_on": 1709560222,
       "next_cert_issuable_on": 1681391749,
       "certs_received": {
@@ -162250,7 +165738,7 @@
     "Argitxu": {
       "index": 10025,
       "owner_key": "EkB5RX7sSbWN7U7dQcm1MdXzh7W1ALASBmoNy7rKf4FN",
-      "balance": 445093,
+      "balance": 546679,
       "membership_expire_on": 1724595911,
       "next_cert_issuable_on": 1691585335,
       "certs_received": {
@@ -162259,7 +165747,8 @@
         "MAILURROZ": 1729468153,
         "Patry": 1729481720,
         "MARAL": 1729511128,
-        "Kris_Izaratia": 1729462060
+        "Kris_Izaratia": 1729462060,
+        "SalviaPerez": 1757270214
       }
     },
     "RaphaelRIVIERE": {
@@ -162273,7 +165762,7 @@
     "FLEURESSENCE": {
       "index": 11539,
       "owner_key": "EkEerJ684caM8f1bgsnK7U9hpkR6CV38WfbpDD9pSZnC",
-      "balance": 216444,
+      "balance": 256130,
       "membership_expire_on": 1706462815,
       "next_cert_issuable_on": 1676680059,
       "certs_received": {
@@ -162299,7 +165788,7 @@
     "RaPha": {
       "index": 11248,
       "owner_key": "EkTKN7RQx1L66joE3nMnCDFTtSvxCFbDJRbZCWWkgyq1",
-      "balance": 241960,
+      "balance": 281646,
       "membership_expire_on": 1703719910,
       "next_cert_issuable_on": 1675448109,
       "certs_received": {
@@ -162314,7 +165803,7 @@
     "Angedis": {
       "index": 12725,
       "owner_key": "EkYbWi8u1ijjqGaRykPBYju3cwezSSBmYUacuycYstUT",
-      "balance": 88550,
+      "balance": 128236,
       "membership_expire_on": 1715117859,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -162328,7 +165817,7 @@
     "RuthLibelulaAzul": {
       "index": 10114,
       "owner_key": "EkZe2hbFiEEH3wgtf6BUpqK9KbAr73VCF4LKvihB34wS",
-      "balance": 153531,
+      "balance": 241917,
       "membership_expire_on": 1724539208,
       "next_cert_issuable_on": 1693389238,
       "certs_received": {
@@ -162378,6 +165867,7 @@
         "RocioArmonia": 1741489806,
         "DonvinaM": 1747891466,
         "Miri741": 1734583420,
+        "AndresXaudi": 1756678973,
         "fania": 1730164297
       }
     },
@@ -162392,9 +165882,9 @@
     "Urantia": {
       "index": 11923,
       "owner_key": "EkkCVzno9oiHEnRZwt3desPecqKtBHdtzzGJQXpCUQLy",
-      "balance": 189633,
+      "balance": 231819,
       "membership_expire_on": 1709788331,
-      "next_cert_issuable_on": 1688380413,
+      "next_cert_issuable_on": 1695208779,
       "certs_received": {
         "Holistique": 1741414281,
         "Mathdom": 1756193401,
@@ -162409,7 +165899,7 @@
     "Yazella": {
       "index": 4310,
       "owner_key": "Ekm1t7w77871yjRkP5BTa1KZ2WdUY2K3JvJiNLXRfZvX",
-      "balance": 522049,
+      "balance": 465105,
       "membership_expire_on": 1705433468,
       "next_cert_issuable_on": 1675943707,
       "certs_received": {
@@ -162423,7 +165913,7 @@
     "BADD": {
       "index": 3448,
       "owner_key": "Ekq9tEn8gwmEi9qYkVM58Ew7cDoNaMPTBN8apKoyL52Q",
-      "balance": 815252,
+      "balance": 854938,
       "membership_expire_on": 1717162417,
       "next_cert_issuable_on": 1686570255,
       "certs_received": {
@@ -162439,7 +165929,7 @@
     "Raal": {
       "index": 10834,
       "owner_key": "EkynyA8iXeLhuTCvUgG6bNboNSgyNKRTeyFJf1htmzVX",
-      "balance": 102766,
+      "balance": 142452,
       "membership_expire_on": 1702493767,
       "next_cert_issuable_on": 1679881068,
       "certs_received": {
@@ -162455,6 +165945,21 @@
         "Fefy": 1734103359
       }
     },
+    "AnaEzko": {
+      "index": 13549,
+      "owner_key": "Em58An6NqsGtgm1wyixsuAuuqxAjE1kXqGHamajWCoee",
+      "balance": 25941,
+      "membership_expire_on": 1725998367,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "JaviEsko": 1757556962,
+        "MAIKA": 1757558933,
+        "Aneferse": 1757556962,
+        "Orakulo": 1757561763,
+        "Belebeltz": 1757559764,
+        "EduZapping": 1757556623
+      }
+    },
     "flox": {
       "index": 2968,
       "owner_key": "Em5dxcZz6sDrdFwuNsXfnie7Ee23MNBr7P3eJdHWt4xv",
@@ -162466,7 +165971,7 @@
     "SabineKern": {
       "index": 6516,
       "owner_key": "Em5enhpyeWqcLCLbnR5H8M2YnioVrN4pTquApMPgXgUS",
-      "balance": 617107,
+      "balance": 656793,
       "membership_expire_on": 1720800760,
       "next_cert_issuable_on": 1693375167,
       "certs_received": {
@@ -162485,7 +165990,7 @@
     "Toniv": {
       "index": 9261,
       "owner_key": "Em62P5jZSHimJHSyM5Mg7vDwjDWb1ALRo7S4SQSBUutg",
-      "balance": 338223,
+      "balance": 377909,
       "membership_expire_on": 1724522667,
       "next_cert_issuable_on": 1664113749,
       "certs_received": {
@@ -162502,9 +166007,9 @@
     "PatriciucaNina": {
       "index": 11484,
       "owner_key": "EmN7oqVWYh9sy9mRXhCRbwuBcBrPjJFpZ676q2DpdFSZ",
-      "balance": 139234,
+      "balance": 150154,
       "membership_expire_on": 1706753091,
-      "next_cert_issuable_on": 1683957483,
+      "next_cert_issuable_on": 1696322233,
       "certs_received": {
         "Malu": 1748712951,
         "Wynfyd": 1738742445,
@@ -162521,15 +166026,16 @@
     "Didy": {
       "index": 9073,
       "owner_key": "EmRAReXKsTyxMRLfdD5G46WBdM9thXBLrjVA9pt7z5YZ",
-      "balance": 150291,
+      "balance": 72377,
       "membership_expire_on": 1714570926,
-      "next_cert_issuable_on": 1686361739,
+      "next_cert_issuable_on": 1696531589,
       "certs_received": {
         "xandraAritzkuren": 1742951715,
         "arbocenc": 1719738351,
         "Wynfyd": 1734243307,
         "Yorch": 1722416039,
         "AlvaroFernandez": 1724022840,
+        "unica": 1757527782,
         "Montesclaros": 1737161231,
         "Pazuca": 1722374620,
         "Baba": 1732684722,
@@ -162559,7 +166065,7 @@
     "Leonce": {
       "index": 11398,
       "owner_key": "EmRnzsEDut42ffdgmTU97omXfndHh9xrvWGoPVySa1KF",
-      "balance": 228093,
+      "balance": 267779,
       "membership_expire_on": 1704494791,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -162573,7 +166079,7 @@
     "Mysteriade": {
       "index": 9616,
       "owner_key": "EmRxooWVHUCdjyFHPJQmGwCnZifHQdy3fVBxG7Boh8xi",
-      "balance": 360563,
+      "balance": 400249,
       "membership_expire_on": 1721161651,
       "next_cert_issuable_on": 1692409597,
       "certs_received": {
@@ -162593,7 +166099,7 @@
     "Saequitas": {
       "index": 13439,
       "owner_key": "EmSBcPsFv9rvF6aJiLyYVmCUPFqdiV96WCVT5y8Rb5Ps",
-      "balance": 6408,
+      "balance": 46094,
       "membership_expire_on": 1723760504,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -162609,7 +166115,7 @@
     "Bgo": {
       "index": 8265,
       "owner_key": "EmSiKfvhfuVf4JX1Rc3BHj3zTpMSHDA2AX2gfA1xuvu7",
-      "balance": 373045,
+      "balance": 412731,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1679464867,
       "certs_received": {
@@ -162635,9 +166141,9 @@
     "Mazarine07": {
       "index": 11067,
       "owner_key": "EmVwLNG1TE5C6vV49RzYCnbYJRAGVma4Ses1otwyeZc1",
-      "balance": 201604,
-      "membership_expire_on": 1700431386,
-      "next_cert_issuable_on": 1688018503,
+      "balance": 241290,
+      "membership_expire_on": 1727540419,
+      "next_cert_issuable_on": 1695553839,
       "certs_received": {
         "AKOUNAMATATA": 1748493765,
         "Helsephine": 1733354560,
@@ -162650,9 +166156,9 @@
     "CarolAmethyste": {
       "index": 7921,
       "owner_key": "EmaQm6VAs6cJxwEHgC5fvTVLusLpZmuyt21Wm1TNyV9G",
-      "balance": 118917,
+      "balance": 81400,
       "membership_expire_on": 1705242240,
-      "next_cert_issuable_on": 1692455914,
+      "next_cert_issuable_on": 1696080757,
       "certs_received": {
         "Matris35": 1753755125,
         "Jerome035": 1733849138,
@@ -162686,6 +166192,7 @@
         "RIKfontaine": 1720378269,
         "Chrissbrl": 1723306601,
         "Chanchan": 1741489313,
+        "PascaleRoncoroni": 1758685207,
         "SylvieM35": 1713637528,
         "Marieannick": 1750887191,
         "Abi": 1723754936,
@@ -162695,6 +166202,7 @@
         "CatCats": 1735097448,
         "Smart35": 1726034035,
         "Julien_Jardin": 1716967178,
+        "lamettrie": 1758916111,
         "Maaltir": 1714712873,
         "LionelB35": 1712621624,
         "Moi_C_Olivier": 1736891669,
@@ -162714,11 +166222,13 @@
     "Amaelle": {
       "index": 7417,
       "owner_key": "EmgSzbNmg4U6uA1SxRgYkDWHeRr5ULhFGqUwgzj3Dagc",
-      "balance": 459959,
+      "balance": 499645,
       "membership_expire_on": 1707672007,
-      "next_cert_issuable_on": 1684999199,
+      "next_cert_issuable_on": 1696482090,
       "certs_received": {
         "IsabelleF": 1711053046,
+        "LaurePollantru": 1758674944,
+        "Gregory": 1758674590,
         "metatisseuroccitanie": 1740214876,
         "Marionnette": 1732166180,
         "Cou-net": 1711083307,
@@ -162730,7 +166240,7 @@
     "Gabgab": {
       "index": 5904,
       "owner_key": "Emi5JyRdqfg2VZ8ZXjXN88u46p2e4DS71rDuNDrAa4NT",
-      "balance": 591379,
+      "balance": 631065,
       "membership_expire_on": 1708183843,
       "next_cert_issuable_on": 1641812469,
       "certs_received": {
@@ -162745,7 +166255,7 @@
     "YemayaPapillon": {
       "index": 8905,
       "owner_key": "Emzw7MDfd9F2B6CaZYvkHWsyaE5dgPtPK7QJSat9iPy",
-      "balance": 376841,
+      "balance": 526327,
       "membership_expire_on": 1715897305,
       "next_cert_issuable_on": 1692412507,
       "certs_received": {
@@ -162764,23 +166274,22 @@
     "Lulu": {
       "index": 4371,
       "owner_key": "EnBycZ5DhthfNo8ANQjMaYeKVJLZ13yww8ewU45fBhKn",
-      "balance": 955767,
-      "membership_expire_on": 1723136501,
+      "balance": 973923,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1635782967,
       "certs_received": {
         "Lonel": 1732566785,
         "Aneuf": 1732565706,
         "ChristopheRobine": 1731297129,
-        "Michellecuyer26": 1694979627,
         "Maddy": 1732566502
       }
     },
     "sylsi": {
       "index": 9899,
       "owner_key": "EnFY8qpBqMXTW3tSTv1mQea72qZbV82C2d39mrPTtue",
-      "balance": 234524,
+      "balance": 234210,
       "membership_expire_on": 1723213564,
-      "next_cert_issuable_on": 1680230262,
+      "next_cert_issuable_on": 1696293853,
       "certs_received": {
         "Aurelielight": 1727410059,
         "RosadoraLafee": 1727561786,
@@ -162793,7 +166302,7 @@
     "Nicolas80": {
       "index": 12242,
       "owner_key": "EnFfLNWnonXwxmzipLbbqa1fybSs7xdPoYhmbkMYzR3G",
-      "balance": 176124,
+      "balance": 205010,
       "membership_expire_on": 1712103812,
       "next_cert_issuable_on": 1683596354,
       "certs_received": {
@@ -162807,12 +166316,14 @@
     "CoeurdeRigole": {
       "index": 8610,
       "owner_key": "EnFpmG5nwqM8xNiPRG2ay8mmcwivwR3wnVLy1AvDC9rG",
-      "balance": 437457,
+      "balance": 358021,
       "membership_expire_on": 1720573794,
-      "next_cert_issuable_on": 1693494598,
+      "next_cert_issuable_on": 1696309795,
       "certs_received": {
+        "sarahmagicienne": 1757383943,
         "Rakairos": 1719040501,
         "TWAMEVA": 1719034509,
+        "LionLDouNIo": 1759308049,
         "MartinsE": 1719045711,
         "Guilou19": 1719035844,
         "Anethetserpolet": 1719037109,
@@ -162822,7 +166333,7 @@
     "KrolK": {
       "index": 12159,
       "owner_key": "EnH6VCbVEbGZjbpjMNwVqSCdNhjF3JKWJpLcrThE4Fus",
-      "balance": 175540,
+      "balance": 215226,
       "membership_expire_on": 1707848655,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -162836,8 +166347,8 @@
     "Lucianael": {
       "index": 1746,
       "owner_key": "EnKSvz9aa2nMqKa4fvYhtqugxqM4x7BgoCqR8Q6mjCBP",
-      "balance": 1701986,
-      "membership_expire_on": 1695173981,
+      "balance": 1735214,
+      "membership_expire_on": 1727275388,
       "next_cert_issuable_on": 1688097580,
       "certs_received": {
         "Plantalarose": 1745190973,
@@ -162855,7 +166366,7 @@
     "Lainocas": {
       "index": 13076,
       "owner_key": "EnQHQfWzNS3j9o7ZiqXcu9GmcCx557MQheixW6tcSmd8",
-      "balance": 66944,
+      "balance": 106630,
       "membership_expire_on": 1717707622,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -162883,7 +166394,7 @@
     "NathalieHavona": {
       "index": 11915,
       "owner_key": "EnX3RwVfevXgiJDhEcpe2jGPfd2AvWBwg63sEwE6k67a",
-      "balance": 179102,
+      "balance": 218788,
       "membership_expire_on": 1708440141,
       "next_cert_issuable_on": 1684315003,
       "certs_received": {
@@ -162899,7 +166410,7 @@
     "Sarjanet": {
       "index": 8901,
       "owner_key": "Enj3P5WMez6hoVizNABAEH1Ujk3Zn7Mi78dPKFJ81jww",
-      "balance": 156596,
+      "balance": 181292,
       "membership_expire_on": 1719313852,
       "next_cert_issuable_on": 1687848559,
       "certs_received": {
@@ -162918,9 +166429,9 @@
     "Pedropides": {
       "index": 7806,
       "owner_key": "Enj9oVb4otSzV6fbamaKKx6dF5pQJLZ4AaCUSoscaMn",
-      "balance": 175572,
+      "balance": 181958,
       "membership_expire_on": 1709313635,
-      "next_cert_issuable_on": 1666324085,
+      "next_cert_issuable_on": 1689908917,
       "certs_received": {
         "FredMonachil": 1721866660,
         "bbqueen": 1718501808,
@@ -162956,9 +166467,9 @@
     "Alem": {
       "index": 13266,
       "owner_key": "EoA1qLwDNZvaV8AzPkEjbLMh6nwDVY834Vkcvq29S1Yc",
-      "balance": 516038,
+      "balance": 555724,
       "membership_expire_on": 1720904720,
-      "next_cert_issuable_on": 1692082654,
+      "next_cert_issuable_on": 1695092890,
       "certs_received": {
         "Jerome035": 1753771755,
         "Rebirth35": 1753838162,
@@ -162971,9 +166482,9 @@
     "Juneve": {
       "index": 13312,
       "owner_key": "EoACJDWwa5acAYwa7PFbNuZixebfBBpnUYxeStQeKi1Q",
-      "balance": 41616,
+      "balance": 74802,
       "membership_expire_on": 1722520320,
-      "next_cert_issuable_on": 1691653099,
+      "next_cert_issuable_on": 1696254487,
       "certs_received": {
         "Re-belle": 1754334236,
         "Marieta": 1755749244,
@@ -162988,9 +166499,9 @@
     "Idurre": {
       "index": 11449,
       "owner_key": "EoE6b2Vv5nL5qG78qRqS7QHSX42wbUZEvqwD5mjpmdt7",
-      "balance": 125224,
+      "balance": 116610,
       "membership_expire_on": 1706847388,
-      "next_cert_issuable_on": 1692360956,
+      "next_cert_issuable_on": 1695210767,
       "certs_received": {
         "elenagrizzly": 1743319167,
         "Estela": 1738650534,
@@ -163002,6 +166513,7 @@
         "zintzo": 1741766854,
         "RayAmur": 1741310676,
         "Kiwi": 1746909430,
+        "Felipevida": 1758251979,
         "Sandrisha": 1738469521,
         "VictorDevora": 1741316492,
         "Atman": 1738393467,
@@ -163012,14 +166524,16 @@
     "SoniaElena": {
       "index": 13057,
       "owner_key": "EoLnSZ1J3zei2rX6aYC66K86uWc8fZSqCu5yMnSk4Xh5",
-      "balance": 307045,
+      "balance": 234365,
       "membership_expire_on": 1719408734,
-      "next_cert_issuable_on": 1693105124,
+      "next_cert_issuable_on": 1696600077,
       "certs_received": {
+        "Matthias2405": 1757372710,
         "CarmeCastineira": 1751309718,
         "heinz": 1753683424,
         "Miguela": 1751306420,
         "Thor": 1751163529,
+        "Heike07": 1758858959,
         "tuttle": 1751001960,
         "Ralf": 1751179413,
         "eno": 1751175050
@@ -163028,9 +166542,9 @@
     "Sycol": {
       "index": 8716,
       "owner_key": "EoQHaatP2kwxxNZg3FufobN5Vff4Yg9YJGE5AYUDaRo",
-      "balance": 419612,
+      "balance": 449298,
       "membership_expire_on": 1719618893,
-      "next_cert_issuable_on": 1662118351,
+      "next_cert_issuable_on": 1696607044,
       "certs_received": {
         "Briballe": 1719734280,
         "Falkena": 1719712436,
@@ -163044,7 +166558,7 @@
     "GenevieveMartignac": {
       "index": 7117,
       "owner_key": "EoXxVkJqccC9jEU1suDHzVw8eVqbztkwrhXqYg9fgzVx",
-      "balance": 787792,
+      "balance": 827478,
       "membership_expire_on": 1709157698,
       "next_cert_issuable_on": 1660203471,
       "certs_received": {
@@ -163059,7 +166573,7 @@
     "gallatinov": {
       "index": 8376,
       "owner_key": "EobREjbRoTjCsNBHnLYGnmRiZWGn2hCtWkP7d3X1Q7yS",
-      "balance": 464236,
+      "balance": 503922,
       "membership_expire_on": 1709730850,
       "next_cert_issuable_on": 1672360541,
       "certs_received": {
@@ -163089,20 +166603,18 @@
     "Max": {
       "index": 3044,
       "owner_key": "EonW3qK5j64qf3BkLGUYTnfN5LDLiWzYs85vpinQcueP",
-      "balance": 1136054,
+      "balance": 1175740,
       "membership_expire_on": 1715378405,
       "next_cert_issuable_on": 1691059266,
       "certs_received": {
         "Come": 1702594945,
         "AnnaLisa": 1715812948,
         "UNE": 1712029558,
-        "SabineD": 1696292006,
         "ALFA": 1717977224,
         "Camillou05": 1736759537,
         "mamieflo": 1701501745,
         "papistef": 1718143851,
         "Ju73": 1716185072,
-        "Sofiachante": 1696213225,
         "YOYO": 1736760162,
         "Lanaosteo": 1753492899,
         "Aveline": 1702958005,
@@ -163157,9 +166669,9 @@
     "Ely81": {
       "index": 8199,
       "owner_key": "EpCpif7LG7whHoQKuXcRqh6NdQaHsjknJ1MzcudRXVmu",
-      "balance": 310035,
+      "balance": 369721,
       "membership_expire_on": 1711765206,
-      "next_cert_issuable_on": 1693047674,
+      "next_cert_issuable_on": 1695257774,
       "certs_received": {
         "ChristelR": 1734052723,
         "HeleneL": 1716190133,
@@ -163180,7 +166692,7 @@
     "RichiRich": {
       "index": 11628,
       "owner_key": "EpEDX9QV18aN3vRUaiAjj492Pno9aNsKjrqDJvGKGpnq",
-      "balance": 210090,
+      "balance": 249776,
       "membership_expire_on": 1705247474,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -163197,19 +166709,17 @@
       "balance": 369789,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Loise": 1694442125
-      }
+      "certs_received": {}
     },
     "SophieR03": {
       "index": 6374,
       "owner_key": "EpJpDBaXVRzgZjp7dY3641Q8sQ6Nz3B1NBipddxLK4an",
-      "balance": 611901,
+      "balance": 651587,
       "membership_expire_on": 1699995872,
       "next_cert_issuable_on": 1671897040,
       "certs_received": {
         "YannPapaYal": 1701935485,
-        "PhilippeLogiaco": 1702230186,
+        "PhilippeLogiaco": 1758052281,
         "STELLA": 1702019045,
         "neo9": 1701664126,
         "jeanferreira": 1701254794,
@@ -163220,7 +166730,7 @@
     "LuisaOliveira": {
       "index": 7086,
       "owner_key": "EpLsRLemkr4hFVhiXHg3XNWN91YXHx2vtgLux12LHEQG",
-      "balance": 210277,
+      "balance": 172363,
       "membership_expire_on": 1705145969,
       "next_cert_issuable_on": 1686713044,
       "certs_received": {
@@ -163238,9 +166748,9 @@
     "Corinne_Sri": {
       "index": 12233,
       "owner_key": "EpVQtHspkH7orFQUPc8UE3cmzgucBUbM6CiREjLouFZf",
-      "balance": 155832,
+      "balance": 195528,
       "membership_expire_on": 1711324511,
-      "next_cert_issuable_on": 1681997224,
+      "next_cert_issuable_on": 1696004968,
       "certs_received": {
         "Gossein": 1743777114,
         "Philp": 1743661021,
@@ -163268,7 +166778,7 @@
     "ChristelleRAOUX": {
       "index": 12858,
       "owner_key": "EpYBQ6SvdnCZXg14zh8hiLWQCv1MHTm7kuBysh5jBgFC",
-      "balance": 241176,
+      "balance": 283562,
       "membership_expire_on": 1715299854,
       "next_cert_issuable_on": 1687160129,
       "certs_received": {
@@ -163285,7 +166795,7 @@
     "Nhelou22": {
       "index": 7483,
       "owner_key": "EpYpmDPR4WxDZ17BBtpJrBi2vLLwSbSPWq1JQuTb3iv1",
-      "balance": 456984,
+      "balance": 478990,
       "membership_expire_on": 1706107061,
       "next_cert_issuable_on": 1692319608,
       "certs_received": {
@@ -163305,13 +166815,14 @@
         "Vero32": 1730224345,
         "Emma31": 1710908102,
         "Somano": 1710897757,
-        "bert": 1710896624
+        "bert": 1710896624,
+        "Pipootz": 1755372959
       }
     },
     "Lapetitefeeclochette": {
       "index": 5980,
       "owner_key": "EpfUScW9gP84pkMH9Xw8dwM9ehhwaZJu5paP5u75VRUB",
-      "balance": 710841,
+      "balance": 750527,
       "membership_expire_on": 1699042304,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -163326,7 +166837,7 @@
     "Fara17": {
       "index": 616,
       "owner_key": "EpgZeL9Pts68uhZQ5Z6CHCHjfyiysqQULtvtXXJVPg2",
-      "balance": 1557537,
+      "balance": 1597223,
       "membership_expire_on": 1696796323,
       "next_cert_issuable_on": 1665310723,
       "certs_received": {
@@ -163341,24 +166852,25 @@
     "sandrinedesicy26": {
       "index": 10993,
       "owner_key": "EpnAZWx8yj53SE3yg7WxMNFdxXShNAcnJP9CWZLQAygL",
-      "balance": 273417,
-      "membership_expire_on": 1701383197,
-      "next_cert_issuable_on": 1693406831,
+      "balance": 305103,
+      "membership_expire_on": 1728260392,
+      "next_cert_issuable_on": 1696774531,
       "certs_received": {
         "Anne-SophieL88": 1735288946,
         "GuillaumeL88": 1733639047,
         "Yamu": 1734149078,
         "Serguei": 1734149078,
         "OrAnge": 1735011247,
+        "nicolascartiaux": 1758776733,
         "Skarlett": 1735011727
       }
     },
     "DanyNoisy": {
       "index": 10623,
       "owner_key": "EpxpthA6qEqUsSJxTCB1zpdEosckpuroHSsZe7yk21r3",
-      "balance": 286574,
+      "balance": 280260,
       "membership_expire_on": 1724946005,
-      "next_cert_issuable_on": 1693461059,
+      "next_cert_issuable_on": 1694347453,
       "certs_received": {
         "BrigitteBC": 1742282271,
         "jpeve": 1735789315,
@@ -163372,9 +166884,9 @@
     "Fullmoonlight": {
       "index": 6978,
       "owner_key": "Eq6X5XqRyMXcnBMoa5YbKnuuq4FJydD1L4CNgmz7kRpe",
-      "balance": 304140,
+      "balance": 343826,
       "membership_expire_on": 1705698843,
-      "next_cert_issuable_on": 1671960919,
+      "next_cert_issuable_on": 1696156256,
       "certs_received": {
         "Solesan": 1708081429,
         "Olilove": 1707928486,
@@ -163402,18 +166914,23 @@
     "Guillermo89": {
       "index": 11945,
       "owner_key": "EqCEUzspoTvbiJFywxXFHBGuYkn7r6zSD4CqzpvgCPEP",
-      "balance": 219174,
+      "balance": 247860,
       "membership_expire_on": 1708823914,
-      "next_cert_issuable_on": 1693108243,
+      "next_cert_issuable_on": 1696422803,
       "certs_received": {
+        "fournaise1": 1759464308,
         "Benvaudeurs": 1741986776,
         "Cathlon": 1740383041,
         "Cyrius666": 1751261846,
         "Isali": 1744763765,
+        "Xaby60": 1757882503,
         "Alchemist": 1740384960,
         "CecilePhoenix": 1746588976,
+        "Flobleu": 1758659001,
         "Spyou": 1741661696,
         "Shaypalgv": 1740383041,
+        "toutoune2189": 1758778479,
+        "Nounoursgt8946": 1759464308,
         "Ninette89": 1740383041,
         "AdeT": 1747604539,
         "brunos": 1740383282
@@ -163422,8 +166939,8 @@
     "christinemdu31g1": {
       "index": 9655,
       "owner_key": "EqNRV7fhejPXo6kW6VxXnMnYTJtHkav8rhh341A37yBp",
-      "balance": 372527,
-      "membership_expire_on": 1695663842,
+      "balance": 407901,
+      "membership_expire_on": 1727567874,
       "next_cert_issuable_on": 1669820422,
       "certs_received": {
         "sylvine": 1727216240,
@@ -163446,7 +166963,7 @@
     "johanna974": {
       "index": 4212,
       "owner_key": "EqY38WtPFg3wsayeMquJEf8aG52Pe4AArPH1vwpmJqbQ",
-      "balance": 388015,
+      "balance": 427701,
       "membership_expire_on": 1700593508,
       "next_cert_issuable_on": 1678870547,
       "certs_received": {
@@ -163463,7 +166980,7 @@
     "JudithEl": {
       "index": 4659,
       "owner_key": "EqdJqGWgDSHA6HCawHChicv9zvmThcueCvw1Zjk4bSWW",
-      "balance": 823703,
+      "balance": 863389,
       "membership_expire_on": 1700660890,
       "next_cert_issuable_on": 1672744435,
       "certs_received": {
@@ -163478,7 +166995,7 @@
     "DMNK26": {
       "index": 10882,
       "owner_key": "EqjE3HrYCwBvJxTmE19QBaATw3qGdySjKrYVpGpkHBFo",
-      "balance": 274689,
+      "balance": 314375,
       "membership_expire_on": 1702420702,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -163489,6 +167006,21 @@
         "Cinnabella": 1734327686
       }
     },
+    "Math": {
+      "index": 13620,
+      "owner_key": "EqmPtDRDUc65EZxi827FFBezxrnzmWmBTcnb6XmP1hur",
+      "balance": 47300,
+      "membership_expire_on": 1726683964,
+      "next_cert_issuable_on": 1695889737,
+      "certs_received": {
+        "Josemi108": 1758303263,
+        "Sorgentini": 1758336452,
+        "SamuelPabloAlmonacid": 1758422742,
+        "Elariel": 1758245950,
+        "Betty": 1758247201,
+        "Monik9366": 1758250533
+      }
+    },
     "TinkerBell81": {
       "index": 6362,
       "owner_key": "EqufCZNDGqzk5NeQ36WL4nqTghUYcwNFPBQdqpX6bxJu",
@@ -163529,9 +167061,9 @@
     "Keiro": {
       "index": 12362,
       "owner_key": "ErQs9i2XxcBgKjUMeYNTNa4GtEJCRQPPb8ck5GLLJZfR",
-      "balance": 345483,
+      "balance": 397869,
       "membership_expire_on": 1712792798,
-      "next_cert_issuable_on": 1686154023,
+      "next_cert_issuable_on": 1694021270,
       "certs_received": {
         "Simplementemaria": 1744831112,
         "Josepeuta": 1744389351,
@@ -163554,7 +167086,7 @@
     "RonMcBel": {
       "index": 7050,
       "owner_key": "ErViRx9XNeJrMsZoCHSHE73dUryNzpcbsHJgUTk47nfi",
-      "balance": 598297,
+      "balance": 637983,
       "membership_expire_on": 1705550866,
       "next_cert_issuable_on": 1681094105,
       "certs_received": {
@@ -163577,9 +167109,9 @@
     "marijobe": {
       "index": 12493,
       "owner_key": "ErYiTPKbHuUAjBAhFiJ6YeAkp5gmd1jLLhyd3diQvBC3",
-      "balance": 102044,
+      "balance": 85530,
       "membership_expire_on": 1714393565,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696778594,
       "certs_received": {
         "Enri": 1745979485,
         "Begotxu": 1746199826,
@@ -163601,7 +167133,7 @@
     "Frou3120": {
       "index": 7057,
       "owner_key": "ErZedK8AMNw8tD6QPe3EcbZFyZBrrgAtvPyPy61Hsykb",
-      "balance": 608297,
+      "balance": 647983,
       "membership_expire_on": 1706155938,
       "next_cert_issuable_on": 1691122591,
       "certs_received": {
@@ -163616,7 +167148,7 @@
     "SylvieDuCantal": {
       "index": 7345,
       "owner_key": "Ercn5NxALWNZdBnYFc7GsgpFpVkJeE8dZ3i2FEfY5QT3",
-      "balance": 605457,
+      "balance": 645143,
       "membership_expire_on": 1708228457,
       "next_cert_issuable_on": 1686296730,
       "certs_received": {
@@ -163640,8 +167172,8 @@
     "Clar44": {
       "index": 6117,
       "owner_key": "EroBPVSnkyhFkamWcNcAz8uY4JN4R8km3kuwkw5oLsAu",
-      "balance": 788285,
-      "membership_expire_on": 1695066062,
+      "balance": 820445,
+      "membership_expire_on": 1727218791,
       "next_cert_issuable_on": 1664188612,
       "certs_received": {
         "ClaireBrune": 1726471503,
@@ -163662,26 +167194,32 @@
     "seb2nor12": {
       "index": 10451,
       "owner_key": "EroXvaL3ZNC2SLUmLto8cDJhrHZu2FbuyKWeDzEeZGtu",
-      "balance": 229525,
-      "membership_expire_on": 1699193018,
-      "next_cert_issuable_on": 1692599338,
+      "balance": 229711,
+      "membership_expire_on": 1725625859,
+      "next_cert_issuable_on": 1696307418,
       "certs_received": {
         "EricMaillard": 1731857956,
         "LoupBlanc": 1731787731,
         "DanWF": 1730797073,
         "FenderChristophe": 1751347135,
         "MartiGraef": 1732080730,
+        "LaureHuber": 1758177140,
         "ENO": 1731794355,
+        "Dracaufeu1990": 1759281486,
         "Als_67": 1733382160,
+        "miel67": 1758179191,
         "hazed": 1730792749,
         "FranZi": 1730836266,
-        "Stefmaillard": 1731786328
+        "Sebel1": 1758154869,
+        "Stefmaillard": 1731786328,
+        "SylvieSpielmann": 1758690475,
+        "oyo": 1759004421
       }
     },
     "Tdelphine": {
       "index": 12683,
       "owner_key": "Es3dk6YprEu7pY8RouktYpNxv5btA8NyxKXnNxtViZCm",
-      "balance": 194856,
+      "balance": 203542,
       "membership_expire_on": 1715526920,
       "next_cert_issuable_on": 1684587191,
       "certs_received": {
@@ -163699,7 +167237,7 @@
     "Coquelicot43CM": {
       "index": 6971,
       "owner_key": "EsDqMxR5eaf3ixLvNnTwVfaZYxshkeWsE9Nq9nzXEN6L",
-      "balance": 584633,
+      "balance": 624319,
       "membership_expire_on": 1706392631,
       "next_cert_issuable_on": 1687406853,
       "certs_received": {
@@ -163718,7 +167256,7 @@
     "LaurentTherock": {
       "index": 13394,
       "owner_key": "EsGExWM2MDd9Q18SrNurYi4yURAc1QrrnUdLKEvocBqy",
-      "balance": 13816,
+      "balance": 53502,
       "membership_expire_on": 1723831866,
       "next_cert_issuable_on": 1693292779,
       "certs_received": {
@@ -163732,7 +167270,7 @@
     "GUL40_Mth": {
       "index": 8849,
       "owner_key": "EsLWd3mxdj2mt7Nj5g74QkVSLUGJYw6EtfDvmMunj8r5",
-      "balance": 430853,
+      "balance": 470539,
       "membership_expire_on": 1716414086,
       "next_cert_issuable_on": 1691395499,
       "certs_received": {
@@ -163752,8 +167290,8 @@
     "tigredefeu": {
       "index": 10173,
       "owner_key": "EsNXADPdt3cExMUkEgUc5fQKQUiPjpcZZZrkWxFaPX8M",
-      "balance": 339721,
-      "membership_expire_on": 1694549734,
+      "balance": 352537,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1678193357,
       "certs_received": {
         "StephaneMongeois": 1730266392,
@@ -163772,10 +167310,11 @@
     "AnnParisot": {
       "index": 13373,
       "owner_key": "EsP8aABCbXUgYxZEeLrfPf1518UCRGViE6wrNDnFJCJW",
-      "balance": 153388,
+      "balance": 196074,
       "membership_expire_on": 1722260005,
-      "next_cert_issuable_on": 1692885679,
+      "next_cert_issuable_on": 1696061254,
       "certs_received": {
+        "MurielleMuMu": 1758254676,
         "Malena58": 1753976744,
         "CaroJans": 1754781333,
         "Hernest": 1754628133,
@@ -163791,8 +167330,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1656040110,
       "certs_received": {
-        "jeanlucdonnadieu": 1695713534,
-        "BoYuexi": 1695714806,
         "Whyrelh": 1699674175,
         "Damery": 1697397872
       }
@@ -163800,9 +167337,9 @@
     "FranckDuhamel": {
       "index": 7142,
       "owner_key": "EsTB6XaJWw2ZLFznpaxxpy7ZLoKrynvq5RDRRvu2vjd5",
-      "balance": 512232,
+      "balance": 525578,
       "membership_expire_on": 1706111360,
-      "next_cert_issuable_on": 1662803104,
+      "next_cert_issuable_on": 1695616485,
       "certs_received": {
         "theresecaillere": 1708928917,
         "GaryGrandin": 1708589195,
@@ -163857,7 +167394,7 @@
     "EmmaMunck": {
       "index": 7161,
       "owner_key": "EspcSKTDQTCEUyVe7LPRJXakAmHPdMM82rwwZmQkzeqL",
-      "balance": 777919,
+      "balance": 817605,
       "membership_expire_on": 1706615276,
       "next_cert_issuable_on": 1646397224,
       "certs_received": {
@@ -163879,13 +167416,14 @@
     "AlexBOMI": {
       "index": 10963,
       "owner_key": "Esz1KX4j13wnSbFCwSvvs5fJwPrk3iuNPZkACGNMo7Gm",
-      "balance": 335635,
+      "balance": 361399,
       "membership_expire_on": 1702127461,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Montsin": 1734669636,
         "Montsant": 1734118939,
         "origens": 1734755244,
+        "kike": 1759102366,
         "Luallum": 1734668935,
         "SurfinMaya": 1734725638,
         "sarava": 1734665342
@@ -163894,7 +167432,7 @@
     "Genosa": {
       "index": 7172,
       "owner_key": "Et2PUH8tzbVKwnQiPtihGrhExkuh1xydCMhBgd1f6pqX",
-      "balance": 536469,
+      "balance": 576155,
       "membership_expire_on": 1706968072,
       "next_cert_issuable_on": 1679237956,
       "certs_received": {
@@ -163912,9 +167450,9 @@
     "Yanneuh": {
       "index": 9734,
       "owner_key": "EtFVHhmdUXxQko7TgXkEASZf4sJC9y5g59u3AXavwHF6",
-      "balance": 318872,
+      "balance": 358558,
       "membership_expire_on": 1724075760,
-      "next_cert_issuable_on": 1685266254,
+      "next_cert_issuable_on": 1695125311,
       "certs_received": {
         "petitetoile": 1727591686,
         "G21": 1746521751,
@@ -163940,7 +167478,7 @@
     "Isabailes": {
       "index": 4667,
       "owner_key": "EtTNFqL6jT9XCBR59auFBZNXTnU6GxDZ2TumrjNga4Yg",
-      "balance": 1377939,
+      "balance": 1417625,
       "membership_expire_on": 1711829280,
       "next_cert_issuable_on": 1664862563,
       "certs_received": {
@@ -163954,9 +167492,9 @@
     "Kitou971": {
       "index": 11538,
       "owner_key": "EtZQAL56DXGPk7rKxg1h7VomJPbeU2K6xnCHFamxEfae",
-      "balance": 166144,
+      "balance": 201630,
       "membership_expire_on": 1707103769,
-      "next_cert_issuable_on": 1692513585,
+      "next_cert_issuable_on": 1694063951,
       "certs_received": {
         "MaFleur": 1754643418,
         "Ormica": 1739067804,
@@ -163971,8 +167509,8 @@
     "DelphineLefevre": {
       "index": 10241,
       "owner_key": "EtZTwTNcdXHH5uk8YKofrzY9RdiG6Vsrq6DCz7ps6sSA",
-      "balance": 321990,
-      "membership_expire_on": 1698973387,
+      "balance": 361676,
+      "membership_expire_on": 1727443881,
       "next_cert_issuable_on": 1673358574,
       "certs_received": {
         "daryl": 1730538272,
@@ -164015,17 +167553,16 @@
     "domimeert": {
       "index": 3146,
       "owner_key": "EtgPTKTSfJJR5eTLWJYAjxJhDuSobhBykausRWZBpQqU",
-      "balance": 1431787,
+      "balance": 1431473,
       "membership_expire_on": 1699739226,
-      "next_cert_issuable_on": 1687400944,
+      "next_cert_issuable_on": 1694500554,
       "certs_received": {
-        "LiseBourdelle": 1698105067,
+        "LiseBourdelle": 1756274666,
         "hibiscus11": 1750638419,
         "AlexDurain": 1738725149,
         "ElisaDunNotreMonde": 1750543824,
         "LauQui": 1755105727,
         "Danahe": 1703191038,
-        "StephaneDunNotreMonde": 1695596633,
         "OlivierRed": 1751010708,
         "Natheo": 1751352958,
         "DanJoue": 1750446597
@@ -164034,7 +167571,7 @@
     "Mercejulia": {
       "index": 11178,
       "owner_key": "EtjMuTi65AQdAVw1Evmeto9u5wiTbD2aYBUc4jq52v4B",
-      "balance": 248114,
+      "balance": 287800,
       "membership_expire_on": 1704490861,
       "next_cert_issuable_on": 1675157952,
       "certs_received": {
@@ -164048,7 +167585,7 @@
     "fablin": {
       "index": 12131,
       "owner_key": "Etqi8XZpbSwAcC5pEUy9rvsU7XTwNeLzmem5dEHHTSA8",
-      "balance": 168744,
+      "balance": 208430,
       "membership_expire_on": 1710797034,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -164064,9 +167601,9 @@
     "CristinaAbella": {
       "index": 9110,
       "owner_key": "EttBYUH7RwDRkh2AgMD6YRUvaVCeWsrzn8dXUmGaMFHm",
-      "balance": 386561,
+      "balance": 469858,
       "membership_expire_on": 1720310341,
-      "next_cert_issuable_on": 1692343755,
+      "next_cert_issuable_on": 1694781535,
       "certs_received": {
         "JF13": 1729458220,
         "Cholo": 1749065437,
@@ -164093,10 +167630,13 @@
         "Saporteta": 1736561414,
         "Leia": 1722156780,
         "mae": 1722763957,
+        "edubotaoo": 1758230109,
         "Dixebral": 1724322543,
         "Amaletta": 1734846611,
+        "nussyna": 1757577413,
         "JUAN51": 1722197077,
         "Ailime": 1744129150,
+        "GeraldineGarrigues": 1759544461,
         "Thito": 1735982027,
         "Juliasonrisas": 1756046987,
         "Elpelu": 1748460836,
@@ -164106,6 +167646,7 @@
         "DOMIASTRO": 1738663436,
         "Fisioterapiasgg": 1735532057,
         "Marianfs": 1749444488,
+        "loreak": 1758165500,
         "BeatrizGG": 1755114402,
         "alberto_wabisabi": 1730945925,
         "AndresXaudi": 1756239911,
@@ -164116,9 +167657,9 @@
     "Hugwilder": {
       "index": 9674,
       "owner_key": "EttVgDVywUpwTfRygQ2hxFWQhWUSwbwAiYWJNGVFEXd",
-      "balance": 394168,
+      "balance": 420054,
       "membership_expire_on": 1721514707,
-      "next_cert_issuable_on": 1690028784,
+      "next_cert_issuable_on": 1696562732,
       "certs_received": {
         "TwentySeligUriel": 1727539097,
         "ChantAloha": 1739732062,
@@ -164134,10 +167675,11 @@
     "christophe73": {
       "index": 11231,
       "owner_key": "Eu7cLvPianqKkDTVbfHsxE6rS6Xss49LzNCvTDrfQ3xA",
-      "balance": 242919,
+      "balance": 282605,
       "membership_expire_on": 1704666960,
       "next_cert_issuable_on": 1674317085,
       "certs_received": {
+        "Crystale": 1759278278,
         "Yann73210": 1736399204,
         "Athena73": 1736899855,
         "MorganV74": 1736899558,
@@ -164148,7 +167690,7 @@
     "grenadille": {
       "index": 6662,
       "owner_key": "EuAXVYQD6cjejQbSJ76c3vWSSS1BYng41PXSGCRqQu92",
-      "balance": 607688,
+      "balance": 647374,
       "membership_expire_on": 1703889487,
       "next_cert_issuable_on": 1652268347,
       "certs_received": {
@@ -164181,7 +167723,7 @@
     "Nicologo": {
       "index": 12287,
       "owner_key": "EuHji9b7rTMm1mJXSXdceJi3tndirfp3om9WMoPZRxET",
-      "balance": 301442,
+      "balance": 341128,
       "membership_expire_on": 1712323745,
       "next_cert_issuable_on": 1682830413,
       "certs_received": {
@@ -164196,7 +167738,7 @@
     "KaynoK": {
       "index": 6745,
       "owner_key": "EuMFm3qdMGtdHqVNswFSLDoj2pevj4dBvE5jJYThADtA",
-      "balance": 597043,
+      "balance": 636729,
       "membership_expire_on": 1704997578,
       "next_cert_issuable_on": 1688397222,
       "certs_received": {
@@ -164213,7 +167755,7 @@
     "hocine": {
       "index": 1606,
       "owner_key": "EuTkhNstNS1mTKbb8i7pfPAd3TvDJikU5PHb7rwdJPxE",
-      "balance": 797696,
+      "balance": 837382,
       "membership_expire_on": 1717327976,
       "next_cert_issuable_on": 1687788978,
       "certs_received": {
@@ -164231,6 +167773,7 @@
         "RayMonde": 1726698468,
         "Poesy": 1715321236,
         "spherien": 1698715237,
+        "JerryBB": 1757860997,
         "Milo": 1706073340,
         "Fleurdusoleil": 1743790183,
         "Opti": 1697160731,
@@ -164238,10 +167781,8 @@
         "Nineige": 1735513775,
         "gpsqueeek": 1700716661,
         "Albertocc": 1724059645,
-        "myriamdevivegnis": 1696710985,
         "Natte444": 1720317390,
         "FrancoiseCombes": 1697917055,
-        "GeraldineGarrigues": 1696211449,
         "Krikri": 1712621371,
         "Waldmeister": 1702333480,
         "Redgg": 1726293234,
@@ -164250,7 +167791,6 @@
         "FranceAffidi": 1750611717,
         "PascalGuillemain": 1735270164,
         "annefreda": 1715838395,
-        "Glass": 1695599518,
         "katou": 1716073942,
         "fania": 1705493596
       }
@@ -164258,7 +167798,7 @@
     "ThibaudLibre": {
       "index": 4900,
       "owner_key": "Eud9B4K7kAuQMif2eHdakui289ExKhyZ1RnKPQrnDB7s",
-      "balance": 954911,
+      "balance": 994597,
       "membership_expire_on": 1718024061,
       "next_cert_issuable_on": 1686626268,
       "certs_received": {
@@ -164272,9 +167812,9 @@
     "Munay": {
       "index": 8668,
       "owner_key": "EufVQYTcpJ1e1vHJ5HVmVKMdmpAmTfcqDF5wsZfENwfw",
-      "balance": 503716,
+      "balance": 513402,
       "membership_expire_on": 1719313251,
-      "next_cert_issuable_on": 1675744700,
+      "next_cert_issuable_on": 1695999295,
       "certs_received": {
         "SandrineMala": 1719354868,
         "SandraFernandes": 1719419337,
@@ -164295,10 +167835,11 @@
     "Bzh38": {
       "index": 8786,
       "owner_key": "Euucy2hZdBqMiRJoVmHXboTbMVVFfrXEWy3mV4t9bapm",
-      "balance": 724598,
+      "balance": 871484,
       "membership_expire_on": 1718382084,
-      "next_cert_issuable_on": 1691135155,
+      "next_cert_issuable_on": 1694481483,
       "certs_received": {
+        "Zap": 1757528227,
         "FrancisBperso": 1740942704,
         "JusteAlex": 1724871824,
         "ChristianGrobostMembre": 1739677492,
@@ -164322,7 +167863,7 @@
     "Elpheblanche": {
       "index": 4066,
       "owner_key": "EuvAMbeMDMYNDoAVS9W3rn3ExAgu1ypVixw412hLq6Lg",
-      "balance": 525054,
+      "balance": 573740,
       "membership_expire_on": 1722038567,
       "next_cert_issuable_on": 1690552415,
       "certs_received": {
@@ -164340,7 +167881,7 @@
     "carineg": {
       "index": 6499,
       "owner_key": "Ev9T1sE8MjWuo7SQjKW7NFYPW5VSUxGpJ4TQgz4dDCqL",
-      "balance": 206893,
+      "balance": 226579,
       "membership_expire_on": 1700937762,
       "next_cert_issuable_on": 1683608050,
       "certs_received": {
@@ -164386,7 +167927,7 @@
     "Itsasos": {
       "index": 10584,
       "owner_key": "EvE7s6prY2UD2tdh2WFUkkGrjt5DQYWm6Nb5oH8G4Cxs",
-      "balance": 197151,
+      "balance": 236837,
       "membership_expire_on": 1701209644,
       "next_cert_issuable_on": 1669826238,
       "certs_received": {
@@ -164401,15 +167942,12 @@
     "Mdita": {
       "index": 514,
       "owner_key": "EvQwwkUWxXr3KMQKVVjoe4Vtwm1c6bPXR4wT9VD2virq",
-      "balance": 2021157,
-      "membership_expire_on": 1722371580,
+      "balance": 2050063,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1690885980,
       "certs_received": {
         "Snox": 1753929896,
-        "HeDog": 1695842981,
-        "BrewingDude": 1694584616,
         "Trinity": 1707430982,
-        "Paulart": 1694210454,
         "Fifou": 1723490537,
         "Attilax": 1719279905
       }
@@ -164429,6 +167967,20 @@
         "AnneT": 1721865304
       }
     },
+    "Gabriel74": {
+      "index": 13763,
+      "owner_key": "EvVaVtnAMKxPLVAjW73yYy6o8hqV8xybCQuF9Ggt4zPY",
+      "balance": 17000,
+      "membership_expire_on": 1727534964,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Crystal": 1759417239,
+        "Philp": 1759096972,
+        "Odilepicpic": 1759711726,
+        "AnneHH": 1759342445,
+        "MaGaliPette": 1759711022
+      }
+    },
     "EliottV": {
       "index": 2486,
       "owner_key": "EvaJsRPYw1cEVCksf3bQYoEMHu7bxWCQf2AVvSSKgC1K",
@@ -164448,7 +168000,7 @@
     "ThierryYo": {
       "index": 11085,
       "owner_key": "Evg9ntxz75NohRwhZCgkfvuz1f1Z2De7QzfswoEbDw49",
-      "balance": 260686,
+      "balance": 300372,
       "membership_expire_on": 1699966713,
       "next_cert_issuable_on": 1691585747,
       "certs_received": {
@@ -164478,25 +168030,20 @@
     "Murielg": {
       "index": 5830,
       "owner_key": "EvmxFHCciL1NpGdm47bC9K2QUH5Knbx6sJ3faE9n6GQX",
-      "balance": 648799,
-      "membership_expire_on": 1719086882,
+      "balance": 686329,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1663133627,
       "certs_received": {
-        "Nagual": 1693790902,
         "Chamax": 1697002576,
-        "Stephanos": 1696532863,
         "wopat": 1726279072,
         "Mazie1991": 1706740342,
-        "Dalilabaha": 1726012409,
-        "s00999": 1694135492,
-        "Herydanslanievre": 1696142921,
-        "MutatisMutandis": 1693520641
+        "Dalilabaha": 1726012409
       }
     },
     "Maiana": {
       "index": 7717,
       "owner_key": "EvoL8esD6Caci4CYyabwehJYyQaZGV8dZUjH9ZgRXVUZ",
-      "balance": 454375,
+      "balance": 487061,
       "membership_expire_on": 1712538458,
       "next_cert_issuable_on": 1688973538,
       "certs_received": {
@@ -164546,7 +168093,7 @@
     "Nono_2p": {
       "index": 7759,
       "owner_key": "EvrtEtR6LGZTRdovdHJqWscaAH34K6KXRjnJHkXKuak8",
-      "balance": 537533,
+      "balance": 577219,
       "membership_expire_on": 1705761444,
       "next_cert_issuable_on": 1652930371,
       "certs_received": {
@@ -164569,7 +168116,7 @@
     "Emilie65": {
       "index": 3008,
       "owner_key": "EvsCHhoPT63p1eiDXVRMkkQHrQFisA5xypqMnayXEugz",
-      "balance": 1186918,
+      "balance": 1226604,
       "membership_expire_on": 1702230043,
       "next_cert_issuable_on": 1670749896,
       "certs_received": {
@@ -164588,27 +168135,28 @@
     "kristo": {
       "index": 6137,
       "owner_key": "EvsrGzDwWg9eRSqaLUV3By1SX1S73iAvwU4x4A6rZ1Gp",
-      "balance": 648770,
+      "balance": 688456,
       "membership_expire_on": 1700876423,
       "next_cert_issuable_on": 1690449699,
       "certs_received": {
         "Charlene": 1699522271,
-        "Anamaya": 1700156183,
+        "Anamaya": 1758990767,
         "MargauxD": 1699521505,
         "ThibautDEPRET": 1752980436,
-        "JeanTibou": 1700159382,
+        "JeanTibou": 1758555693,
         "Sevdiesse": 1699522271
       }
     },
     "VeroniqueD": {
       "index": 12044,
       "owner_key": "EvwzikKbEQfiEcmECRofDaRpUa3mpS2VTrpEwF2BEEnk",
-      "balance": 194388,
+      "balance": 236387,
       "membership_expire_on": 1710602438,
-      "next_cert_issuable_on": 1693199827,
+      "next_cert_issuable_on": 1695733191,
       "certs_received": {
         "Gossein": 1745113056,
         "GautierDavid": 1742340564,
+        "CatPMt": 1756784999,
         "Olivier3574": 1742161778,
         "chrisaiki": 1742189804,
         "CarolAmethyste": 1747467789,
@@ -164621,8 +168169,8 @@
     "EstelleF": {
       "index": 2255,
       "owner_key": "EwAWhf7FDZpFYyEfd9tkHFRwQVxs3HLm7jDKbjw22ZnH",
-      "balance": 1084577,
-      "membership_expire_on": 1695123216,
+      "balance": 1104869,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689064982,
       "certs_received": {
         "cathyCH": 1731887086,
@@ -164657,7 +168205,7 @@
     "Felipe": {
       "index": 654,
       "owner_key": "EwXXo4YAG6BuNhifNZrMKAXNDXcYDhFWaZcSu5iZnSUX",
-      "balance": 1075505,
+      "balance": 1115191,
       "membership_expire_on": 1724721429,
       "next_cert_issuable_on": 1661561692,
       "certs_received": {
@@ -164675,8 +168223,8 @@
     "FlorilenePacati": {
       "index": 9801,
       "owner_key": "EwZjGoYmNw11nYFYkfLZSsXQXmopNRirDNPaDnHsbv5F",
-      "balance": 444747,
-      "membership_expire_on": 1696550227,
+      "balance": 482277,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668158690,
       "certs_received": {
         "gabindom": 1725120790,
@@ -164696,7 +168244,7 @@
     "Mamacoach": {
       "index": 11823,
       "owner_key": "Ewg4ZYgfRjcpGuq4LBXCDeVKVix458AxcAaUsSfQATF2",
-      "balance": 255264,
+      "balance": 294950,
       "membership_expire_on": 1706874109,
       "next_cert_issuable_on": 1677983600,
       "certs_received": {
@@ -164712,9 +168260,9 @@
     "BenoitFrancou": {
       "index": 1984,
       "owner_key": "Ewme9HPrrC6yEosQB9orAgGLge2t853n48BfQomc7mc4",
-      "balance": 1045121,
+      "balance": 1079807,
       "membership_expire_on": 1701526148,
-      "next_cert_issuable_on": 1682002256,
+      "next_cert_issuable_on": 1694070970,
       "certs_received": {
         "Carine888": 1720677022,
         "PascaleParis": 1733032160,
@@ -164737,7 +168285,7 @@
     "Hijma": {
       "index": 12752,
       "owner_key": "EwqKT15bdfyChcRBUWwquqMjgFGCFHUwvVV9wwwrpbeo",
-      "balance": 112528,
+      "balance": 152214,
       "membership_expire_on": 1715877678,
       "next_cert_issuable_on": 1685342142,
       "certs_received": {
@@ -164775,8 +168323,8 @@
     "juliettesemilla": {
       "index": 6518,
       "owner_key": "Ewyt9ekWbKT24JW3D63wAifrtNyf4mCVtQXotpXReBbh",
-      "balance": 520367,
-      "membership_expire_on": 1700041755,
+      "balance": 575053,
+      "membership_expire_on": 1726998496,
       "next_cert_issuable_on": 1679288456,
       "certs_received": {
         "jaenyph": 1703379767,
@@ -164799,12 +168347,13 @@
     "CatCats": {
       "index": 8797,
       "owner_key": "Ex7Yim3yv8oXoioXMszTrj1XFgXzu88AcCrxWZPAR8i6",
-      "balance": 457678,
+      "balance": 497364,
       "membership_expire_on": 1719282790,
       "next_cert_issuable_on": 1690096754,
       "certs_received": {
         "Kael": 1720230524,
         "SylvieM35": 1719378254,
+        "Pascal35800": 1758489085,
         "CarolAmethyste": 1720072839,
         "Maaltir": 1720143120,
         "LionelB35": 1719381846
@@ -164821,13 +168370,14 @@
     "PERSIFLEUR": {
       "index": 5309,
       "owner_key": "ExJUfEm75DZetPorMdT59T4uL85uSCcwTWR3WB3ZP4a4",
-      "balance": 368049,
-      "membership_expire_on": 0,
+      "balance": 273539,
+      "membership_expire_on": 1727814343,
       "next_cert_issuable_on": 1665658434,
       "certs_received": {
         "MurielLaragne": 1732315677,
         "Sofiachante": 1700279215,
         "Herminebzh": 1732398502,
+        "Aveline": 1759421987,
         "Brijt04": 1733815457
       }
     },
@@ -164839,10 +168389,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Aufildelavie": {
+      "index": 13736,
+      "owner_key": "ExTiDKoJhgSgqGfqFcB2beUFtMGh21YkCzqB6W4mcYQr",
+      "balance": 95373,
+      "membership_expire_on": 1727615512,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Cristol-Iquid": 1759197855,
+        "IrisBleu": 1759512804,
+        "CelineRenou": 1759276037,
+        "lto31": 1759196923,
+        "Marionrosa": 1759204509,
+        "PhilCominges": 1759365738
+      }
+    },
     "PaulaGarma": {
       "index": 11114,
       "owner_key": "ExU5P68ese1VwaqnkVwys81touxQzt2Pmz2KXUjwqxHK",
-      "balance": 264759,
+      "balance": 304445,
       "membership_expire_on": 1704210748,
       "next_cert_issuable_on": 1680344624,
       "certs_received": {
@@ -164860,24 +168425,30 @@
     "Nyriel": {
       "index": 12681,
       "owner_key": "ExW9pw9Rx8XpDx3DqX1UGQtnm4PDc1K2Zih3vZVqvMXz",
-      "balance": 100208,
+      "balance": 118794,
       "membership_expire_on": 1715899537,
-      "next_cert_issuable_on": 1692182713,
+      "next_cert_issuable_on": 1696218291,
       "certs_received": {
         "Lionel_Dechilly": 1747509891,
+        "Amethyste13": 1756767797,
         "DomMembre": 1747461899,
         "DomVe": 1747461604,
         "Dom67": 1749706740,
+        "Venceremos": 1757704438,
+        "Sisi": 1758445972,
         "CatherineAiless": 1754539443,
         "GeraldS": 1747464046,
         "Mohanad": 1752134952,
-        "Antares13": 1747461899
+        "ChantAloha": 1758562403,
+        "Antares13": 1747461899,
+        "MinaManar": 1757808583,
+        "Matedi23": 1758653025
       }
     },
     "Trich": {
       "index": 12439,
       "owner_key": "ExYARyvzCxke8UhEwr3mD3pJS9g4QjaH1WvCbNatn1qJ",
-      "balance": 137772,
+      "balance": 177458,
       "membership_expire_on": 1713490497,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -164901,7 +168472,7 @@
     "B-4": {
       "index": 10251,
       "owner_key": "ExjErJFYdjdLNNLipNifG13oQYACqW1PAaYN61ZUqfxM",
-      "balance": 274390,
+      "balance": 314076,
       "membership_expire_on": 1699381893,
       "next_cert_issuable_on": 1686016518,
       "certs_received": {
@@ -164921,7 +168492,7 @@
     "Plagneaux258": {
       "index": 9348,
       "owner_key": "ExjX4fGuUvi8fjaMDqLZSn7pNZ27eghh38YjhJp7JKxv",
-      "balance": 393735,
+      "balance": 433421,
       "membership_expire_on": 1721922330,
       "next_cert_issuable_on": 1691500168,
       "certs_received": {
@@ -164952,9 +168523,9 @@
     "Farinato": {
       "index": 6534,
       "owner_key": "ExxjiFChyC6Yj1BBmjUVGtiTEGh3VRhseyEyvCHg2aLc",
-      "balance": 438699,
-      "membership_expire_on": 1701127122,
-      "next_cert_issuable_on": 1689210063,
+      "balance": 423889,
+      "membership_expire_on": 1728230399,
+      "next_cert_issuable_on": 1696749177,
       "certs_received": {
         "absalon2": 1744255343,
         "RosaliaHall": 1703754559,
@@ -164978,6 +168549,7 @@
         "ShantiPraviira": 1746332263,
         "Ekane": 1749594487,
         "Ura": 1716773733,
+        "Kol": 1758437064,
         "fania": 1704965876
       }
     },
@@ -164992,7 +168564,7 @@
     "Hinata": {
       "index": 4025,
       "owner_key": "Ey1PhLQ5rPCuMLPozbWfJzTHhUSqqfca8xo1EMe4quLW",
-      "balance": 1047645,
+      "balance": 1087331,
       "membership_expire_on": 1699307649,
       "next_cert_issuable_on": 1633945355,
       "certs_received": {
@@ -165006,7 +168578,7 @@
     "TAMI": {
       "index": 12191,
       "owner_key": "Ey4ytcLgaarHy6NSc6ifmZr6cG7FF6MVuCtP7cpZ5mQG",
-      "balance": 188404,
+      "balance": 228090,
       "membership_expire_on": 1710270023,
       "next_cert_issuable_on": 1680596985,
       "certs_received": {
@@ -165035,9 +168607,9 @@
     "Steeve": {
       "index": 5466,
       "owner_key": "Ey7Z3kXGjxUpBruTwsSGuGgcBLk77pH6jzsgmFt92MMQ",
-      "balance": 90998,
+      "balance": 130684,
       "membership_expire_on": 1723315510,
-      "next_cert_issuable_on": 1689410258,
+      "next_cert_issuable_on": 1696424805,
       "certs_received": {
         "Trex": 1749168667,
         "Mayo": 1726639348,
@@ -165052,9 +168624,9 @@
     "Tranquillou": {
       "index": 7664,
       "owner_key": "Ey8BkWhethA3Fvj1vsWNNaCBXk17QQ91sqYB65pM7VY6",
-      "balance": 63705,
+      "balance": 40301,
       "membership_expire_on": 1708182652,
-      "next_cert_issuable_on": 1690372114,
+      "next_cert_issuable_on": 1694863546,
       "certs_received": {
         "jaenyph": 1733982828,
         "Rebel": 1721928889,
@@ -165098,7 +168670,7 @@
     "Copeau": {
       "index": 13014,
       "owner_key": "EyS6oyWaGRvPUf5TH6qQuQJAHWLHw9mwbbMnov7pJ3W7",
-      "balance": 93952,
+      "balance": 133638,
       "membership_expire_on": 1719412879,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -165113,7 +168685,7 @@
     "loupverdure21": {
       "index": 11751,
       "owner_key": "Eyks5yZBMoWmbFsKEHCb1orAQ4FE2axA9WHZ7LpQ1MVL",
-      "balance": 246559,
+      "balance": 276345,
       "membership_expire_on": 1708378477,
       "next_cert_issuable_on": 1686327160,
       "certs_received": {
@@ -165129,7 +168701,7 @@
     "JacoboF44": {
       "index": 5933,
       "owner_key": "EypeCDKkJanCQ4PjpK14ZkeaAGUjS1jKcwY3VcDs8Hei",
-      "balance": 713195,
+      "balance": 752881,
       "membership_expire_on": 1696785682,
       "next_cert_issuable_on": 1654588608,
       "certs_received": {
@@ -165174,9 +168746,9 @@
     "Santi_ajedrez": {
       "index": 10979,
       "owner_key": "Ez7gjm2YksLyEomhHT6jfFTfNro7MnPDWeNREQC2nZTi",
-      "balance": 61596,
+      "balance": 29380,
       "membership_expire_on": 1703179220,
-      "next_cert_issuable_on": 1693325892,
+      "next_cert_issuable_on": 1696743980,
       "certs_received": {
         "Noelia": 1734743495,
         "Ovejaenrebelion": 1734738173,
@@ -165191,15 +168763,34 @@
         "Martylove": 1746700088,
         "Iguana": 1743221911,
         "Amaralar": 1734821029,
+        "Farinato": 1759792377,
         "Fer": 1740791786,
         "Michaela1997": 1744263939,
         "elena": 1754461241,
         "Charo": 1734781411,
         "Arran": 1734765840,
         "MAC": 1734753548,
+        "AndresXaudi": 1759783362,
         "fania": 1734949853
       }
     },
+    "clairetango": {
+      "index": 13727,
+      "owner_key": "EzAqgQnKYEPM6UUUxzoyEbdvaXmcGLs9s8eRho2GX1V7",
+      "balance": 129390,
+      "membership_expire_on": 1727733329,
+      "next_cert_issuable_on": 1696384086,
+      "certs_received": {
+        "CaroJans": 1759351633,
+        "MarieAmelie": 1759294223,
+        "vibes": 1759383284,
+        "Patrick21": 1759294570,
+        "PascaleM": 1759387641,
+        "s00999": 1759365433,
+        "Christie21160": 1759296445,
+        "MarcJPG1": 1759390633
+      }
+    },
     "DavidRuiz": {
       "index": 4098,
       "owner_key": "EzEb7NJZ9gt4ttJ938FjaMHYyHhpQQfE34GHfQsbvXkh",
@@ -165211,7 +168802,7 @@
     "Smart35": {
       "index": 9237,
       "owner_key": "EzKhdX7w5yCDQtvXobXGZsczC46Jv7NHjioyztLq4d5T",
-      "balance": 243658,
+      "balance": 280344,
       "membership_expire_on": 1718638885,
       "next_cert_issuable_on": 1692455309,
       "certs_received": {
@@ -165222,6 +168813,7 @@
         "RIKfontaine": 1723957009,
         "SylvieM35": 1736282666,
         "CarolAmethyste": 1723882353,
+        "lamettrie": 1758148222,
         "Maaltir": 1723958088,
         "LionelB35": 1743348253,
         "VeroL": 1737410553
@@ -165230,15 +168822,17 @@
     "Guiomar": {
       "index": 10371,
       "owner_key": "EzNNxKkt89BzF5w3NMefxbyEMC9SnGahdJmdmsUt7zYm",
-      "balance": 105518,
-      "membership_expire_on": 1700063039,
-      "next_cert_issuable_on": 1692459660,
+      "balance": 72804,
+      "membership_expire_on": 1727620749,
+      "next_cert_issuable_on": 1693991380,
       "certs_received": {
         "Damaso": 1742341435,
         "carmenchu_almacristal": 1739990036,
         "AngieantesGeles": 1731635542,
+        "Belobal": 1759249446,
         "EstefaniaLopez": 1731630261,
         "Elenarepostera": 1731709101,
+        "Beica10es": 1759343391,
         "AliciaConsuelo": 1733363755,
         "Alberto": 1731629945,
         "LaChenille": 1753086588,
@@ -165256,9 +168850,9 @@
     "Lando": {
       "index": 5935,
       "owner_key": "EzZcKPU8Qigf697tVBZRB1Vk5wNBYMJijLCSaZodAtpx",
-      "balance": 1317182,
+      "balance": 1403525,
       "membership_expire_on": 1717336225,
-      "next_cert_issuable_on": 1691031511,
+      "next_cert_issuable_on": 1696673944,
       "certs_received": {
         "salmaluna": 1727901940,
         "JeromeCastel": 1698561162,
@@ -165275,6 +168869,7 @@
         "Maquilleuse": 1698458695,
         "Diogox51": 1718857387,
         "Sottay": 1701409920,
+        "ChristopheVolckaert": 1759335248,
         "RoxaneCastel": 1698561841,
         "hocine": 1721019126,
         "ChanaChan": 1754027245,
@@ -165298,7 +168893,7 @@
     "Kinana": {
       "index": 11488,
       "owner_key": "EzbBB9Qzs58pxBS8ZWshREoWJCaYF56ZPeL5ZwFyYPSv",
-      "balance": 143080,
+      "balance": 182766,
       "membership_expire_on": 1707062041,
       "next_cert_issuable_on": 1683250577,
       "certs_received": {
@@ -165316,8 +168911,8 @@
     "isafari": {
       "index": 9160,
       "owner_key": "EzbdyRin8jK2TUeTkcCqxYfsZBhYQpR2CUYLSP3Md4N",
-      "balance": 386408,
-      "membership_expire_on": 0,
+      "balance": 407938,
+      "membership_expire_on": 1726534592,
       "next_cert_issuable_on": 1660322230,
       "certs_received": {
         "Bourgoispat": 1723165081,
@@ -165338,8 +168933,8 @@
     "Klerkival": {
       "index": 1710,
       "owner_key": "EzkDvGGH73fiCoWyvKDNCHnrGTAJF8v8N2sYNRYzGt1b",
-      "balance": 371726,
-      "membership_expire_on": 1694960263,
+      "balance": 381412,
+      "membership_expire_on": 1726416544,
       "next_cert_issuable_on": 1686385454,
       "certs_received": {
         "Abrialys": 1734638566,
@@ -165382,7 +168977,7 @@
     "Goodlive": {
       "index": 10461,
       "owner_key": "EzqCRtBzAdVWeJTTsj5B2vdkfBRTQwcSHPyoAVcNHxG4",
-      "balance": 258823,
+      "balance": 298509,
       "membership_expire_on": 1700068071,
       "next_cert_issuable_on": 1676536169,
       "certs_received": {
@@ -165399,7 +168994,7 @@
     "EmiOne": {
       "index": 7169,
       "owner_key": "EzyHeXjkmT2wiBCHiszPncyHiDGAWdFLWesX75TK61wR",
-      "balance": 423019,
+      "balance": 474205,
       "membership_expire_on": 1706790283,
       "next_cert_issuable_on": 1688457240,
       "certs_received": {
@@ -165418,7 +169013,7 @@
     "astrid": {
       "index": 249,
       "owner_key": "F13aXKWQPGCjSQAxxTyJYyRyPm5SqzFSsYYWSDEQGi2A",
-      "balance": 1046250,
+      "balance": 1085936,
       "membership_expire_on": 1708575221,
       "next_cert_issuable_on": 1677089621,
       "certs_received": {
@@ -165435,23 +169030,19 @@
     "Llysa": {
       "index": 5659,
       "owner_key": "F14Skv6qVNzHuyMEWtha3wZz5ReDjvt4Pqm2cK4ULpp7",
-      "balance": 498426,
-      "membership_expire_on": 1693571180,
+      "balance": 507494,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1669378481,
       "certs_received": {
         "seb": 1703532683,
-        "Yseult-Echo": 1694316218,
-        "Ingriddevendee": 1693544026,
-        "Titem": 1694294221,
         "BisQI": 1705364226,
-        "IsabelleLR": 1693643559,
         "llecoeur": 1696902317
       }
     },
     "Chloeremy": {
       "index": 6273,
       "owner_key": "F15LV3xCQSHaCNJiq5MzJEvGNjs7UhkgYXaAuvFM3HCV",
-      "balance": 445614,
+      "balance": 485300,
       "membership_expire_on": 1699701233,
       "next_cert_issuable_on": 1656449994,
       "certs_received": {
@@ -165466,7 +169057,7 @@
     "Fatnapoupette": {
       "index": 10144,
       "owner_key": "F1CiZymzeZNR1x1eLwdihrfPEYSso1CJC73y96t8oDF1",
-      "balance": 276403,
+      "balance": 316089,
       "membership_expire_on": 1697480534,
       "next_cert_issuable_on": 1685370522,
       "certs_received": {
@@ -165482,7 +169073,7 @@
     "BIBI": {
       "index": 10508,
       "owner_key": "F1Ec5doeaVRJcSEn56wGiucZLGjQn2xqQBs5t9tm5zXZ",
-      "balance": 286987,
+      "balance": 326673,
       "membership_expire_on": 1700822235,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -165497,9 +169088,9 @@
     "Belebeltz": {
       "index": 12708,
       "owner_key": "F1Gj7i5i3SxbmFjXtrBJpPUcdkoPq5JGKRsMnqLMNz1i",
-      "balance": 79506,
+      "balance": 88192,
       "membership_expire_on": 1716036272,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694516564,
       "certs_received": {
         "JaviEsko": 1747614101,
         "MAIKA": 1747597893,
@@ -165511,7 +169102,7 @@
     "MaudPK": {
       "index": 7666,
       "owner_key": "F1MFDcYbut5an96cTB4DdS2bEUokZ8gRGenmMLFLkzPy",
-      "balance": 498678,
+      "balance": 538364,
       "membership_expire_on": 1714911633,
       "next_cert_issuable_on": 1683446925,
       "certs_received": {
@@ -165529,7 +169120,7 @@
     "alexia": {
       "index": 12545,
       "owner_key": "F1MspoYPFjztzeJSyC8ixXcz6tMbi7VLF6WtMtACG9T",
-      "balance": 479024,
+      "balance": 518710,
       "membership_expire_on": 1711380441,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -165543,8 +169134,8 @@
     "SophieDurand": {
       "index": 9538,
       "owner_key": "F1NzeT3PL8ViJveCa5XR5A2Tsaz1XSYuQ3LeVLReqeQM",
-      "balance": 372085,
-      "membership_expire_on": 1694042369,
+      "balance": 378493,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666346304,
       "certs_received": {
         "CyrilPommier": 1725674623,
@@ -165561,11 +169152,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1647602711,
       "certs_received": {
-        "FrankDeMey": 1694641814,
-        "peveilleau": 1695059564,
-        "MarieBertheRanwet": 1695102235,
-        "OlivierAuber": 1694377300,
-        "NirmalaMary": 1694501945,
         "GaelleHerbert": 1711648601,
         "Fredlassave": 1700545429,
         "EmmanuelOLIVIER": 1701577947
@@ -165574,7 +169160,7 @@
     "SophieT": {
       "index": 12425,
       "owner_key": "F1bEyFyWQH2WTxpRVnLjdvNSzsvmueyUwx2nf5yqHm44",
-      "balance": 150640,
+      "balance": 190326,
       "membership_expire_on": 1713479617,
       "next_cert_issuable_on": 1683036800,
       "certs_received": {
@@ -165589,7 +169175,7 @@
     "Babouche00": {
       "index": 6973,
       "owner_key": "F1s5c5Q3EMnkdMjXw6aLV5nUYDzh4ngtSuRcTCC5pV5m",
-      "balance": 548733,
+      "balance": 588419,
       "membership_expire_on": 1703087003,
       "next_cert_issuable_on": 1688112166,
       "certs_received": {
@@ -165609,7 +169195,7 @@
     "NathalieL": {
       "index": 4746,
       "owner_key": "F1sBGJF9KyivNpVhpvxE6rsojazGLWygcGNfmBnVsBXD",
-      "balance": 785241,
+      "balance": 824927,
       "membership_expire_on": 1704227362,
       "next_cert_issuable_on": 1672741762,
       "certs_received": {
@@ -165625,7 +169211,7 @@
     "PatriciaLAGIER": {
       "index": 12101,
       "owner_key": "F21Nm1wGAuySkg48Hm4NUbLVLQSnLGVHuS8njsPHKHyz",
-      "balance": 178148,
+      "balance": 217834,
       "membership_expire_on": 1710167323,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -165639,7 +169225,7 @@
     "Arloise10": {
       "index": 9757,
       "owner_key": "F2UTvtgTFBGfJrfHpyLUCjP9AJnY2FruTx4mP5mqkZnM",
-      "balance": 156114,
+      "balance": 195800,
       "membership_expire_on": 1723501812,
       "next_cert_issuable_on": 1684068341,
       "certs_received": {
@@ -165655,7 +169241,7 @@
     "BertrandChereau": {
       "index": 3915,
       "owner_key": "F2bMpCcWb4zVmjdZ2Cv4QCVye8tEz7b56Ztd9PB2Shiz",
-      "balance": 589787,
+      "balance": 629473,
       "membership_expire_on": 1718099310,
       "next_cert_issuable_on": 1688342634,
       "certs_received": {
@@ -165687,9 +169273,9 @@
     "AndreaFrance": {
       "index": 11344,
       "owner_key": "F2mdpj7p86JiXq9N47VpS4TpWoLQ5JszhzRBDJyVan9u",
-      "balance": 231229,
+      "balance": 270915,
       "membership_expire_on": 1706044748,
-      "next_cert_issuable_on": 1686843477,
+      "next_cert_issuable_on": 1696344681,
       "certs_received": {
         "Carole26": 1747796565,
         "DelphineA": 1737745481,
@@ -165716,7 +169302,7 @@
     "LydieG": {
       "index": 12323,
       "owner_key": "F2vghYB8jnGgBiHyB6F4n1YivTqRJ7xQfktx38b4TsG5",
-      "balance": 156388,
+      "balance": 174074,
       "membership_expire_on": 1712713734,
       "next_cert_issuable_on": 1684027994,
       "certs_received": {
@@ -165730,8 +169316,8 @@
     "JPQuinoa": {
       "index": 10046,
       "owner_key": "F32VhXNiLLgr4VuejPs7RVEBhmmuhdEx73BwyiPGSUHS",
-      "balance": 386875,
-      "membership_expire_on": 1696458827,
+      "balance": 423327,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670988878,
       "certs_received": {
         "MAGSENS": 1729596580,
@@ -165749,7 +169335,7 @@
     "MarieLaure": {
       "index": 10959,
       "owner_key": "F3CvnwfHYs7YJSBfwGsqo7FYGRB3usaSwkKCVDXDHwK7",
-      "balance": 266335,
+      "balance": 306021,
       "membership_expire_on": 1703028891,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -165765,7 +169351,7 @@
     "sylvielambert2403": {
       "index": 10072,
       "owner_key": "F3GEA52BZvA2KbDt49nmCEgznQgJuk8UJ7KiqSb5D5c1",
-      "balance": 331316,
+      "balance": 369002,
       "membership_expire_on": 1697928308,
       "next_cert_issuable_on": 1679614614,
       "certs_received": {
@@ -165779,9 +169365,9 @@
     "Julien_Jardin": {
       "index": 1084,
       "owner_key": "F3Lg14xqYEwqbeU6oV9N4LF923vyao3AyjMYKJy5CFMW",
-      "balance": 276193,
+      "balance": 344159,
       "membership_expire_on": 1724983911,
-      "next_cert_issuable_on": 1678963263,
+      "next_cert_issuable_on": 1696056454,
       "certs_received": {
         "Rebirth35": 1716452337,
         "Gregory": 1707374400,
@@ -165795,9 +169381,9 @@
     "LeoLiens": {
       "index": 5252,
       "owner_key": "F3P5yMmiT3E13k7E7XCNHWDCDgVbbXAi9DDC86umnhg3",
-      "balance": 864372,
+      "balance": 886058,
       "membership_expire_on": 1710031072,
-      "next_cert_issuable_on": 1666152592,
+      "next_cert_issuable_on": 1695361598,
       "certs_received": {
         "Juju2pom": 1705641103,
         "Hectonath": 1714258435,
@@ -165835,7 +169421,7 @@
     "Elen": {
       "index": 12674,
       "owner_key": "F3UaZjL8cxySvBQKfj6ShtMHrWKpiiFGdFQSmupbeCB7",
-      "balance": 122408,
+      "balance": 162094,
       "membership_expire_on": 1715691249,
       "next_cert_issuable_on": 1693060024,
       "certs_received": {
@@ -165850,7 +169436,7 @@
     "Aurelil": {
       "index": 8092,
       "owner_key": "F3aLqZ2YFCvJsGrT3g59Vj6C39rjTnnfKDu7UJnuAmXk",
-      "balance": 529361,
+      "balance": 569047,
       "membership_expire_on": 1711324511,
       "next_cert_issuable_on": 1681445267,
       "certs_received": {
@@ -165889,29 +169475,23 @@
     "Viceversa": {
       "index": 5718,
       "owner_key": "F3vr4M8oLQFzPcB4hRyET1pcTmnKNEeR6QGHSoZZxzrT",
-      "balance": 621977,
-      "membership_expire_on": 1702060137,
+      "balance": 635861,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1650881339,
       "certs_received": {
-        "Cordeliaze": 1694588729,
-        "arbocenc": 1694588729,
-        "carmela": 1694634826,
-        "LaCasaGran": 1694643185,
-        "Chilate": 1695580582,
-        "Dixebral": 1694767093,
         "Bee": 1701225549,
-        "Kris_Izaratia": 1715825234,
-        "urkobein": 1694660785
+        "Kris_Izaratia": 1715825234
       }
     },
     "Choukette": {
       "index": 10808,
       "owner_key": "F3whz1Q2p4QSpuq2VZALQJ4FAA545Xasismwe8dWe6GU",
-      "balance": 288425,
+      "balance": 378111,
       "membership_expire_on": 1702163244,
       "next_cert_issuable_on": 1687223551,
       "certs_received": {
         "Laurence": 1733725863,
+        "CaroleBroutin": 1759358706,
         "NanieLCK": 1733721343,
         "Libellule34": 1733728788,
         "DominiquePROUVIER-ARNAUD": 1733721343,
@@ -165931,9 +169511,9 @@
     "MACANATURE": {
       "index": 12791,
       "owner_key": "F4DFiZuxHK22PfuXcEGibQKt8x8KzRtZ4xyFo6BG6xqH",
-      "balance": 109324,
+      "balance": 163010,
       "membership_expire_on": 1717027784,
-      "next_cert_issuable_on": 1693115388,
+      "next_cert_issuable_on": 1695051778,
       "certs_received": {
         "Aguas": 1753990218,
         "Cordeliaze": 1752376669,
@@ -165941,7 +169521,10 @@
         "realbrucest": 1754245105,
         "Beasegovia": 1748718597,
         "Madreselva": 1748657879,
+        "ManuGi": 1757809089,
+        "virginiaoreoro": 1757459954,
         "MaEstherG1": 1753431997,
+        "Juanmatierraplana": 1758420068,
         "Keiro": 1749197223,
         "mellamanhernan": 1748655049,
         "MERYFITT": 1748632137
@@ -165972,9 +169555,9 @@
     "stephane32": {
       "index": 8646,
       "owner_key": "F4GpvT3Q1DzTnPLLFQ3ienJnkcxRPS87wSS2PbwEGtvm",
-      "balance": 547565,
+      "balance": 587251,
       "membership_expire_on": 1715628843,
-      "next_cert_issuable_on": 1687758309,
+      "next_cert_issuable_on": 1695541953,
       "certs_received": {
         "Mel76": 1728178887,
         "Fred72": 1728178390,
@@ -165991,7 +169574,7 @@
     "claudeartdeschoix": {
       "index": 11203,
       "owner_key": "F4Kx2ztQRGcCHKmw9YTDvhP7tTPdkRbNEAzxemJne2tS",
-      "balance": 251596,
+      "balance": 291282,
       "membership_expire_on": 1704719113,
       "next_cert_issuable_on": 1681697238,
       "certs_received": {
@@ -166005,7 +169588,7 @@
     "FannyPolet": {
       "index": 8347,
       "owner_key": "F4Q2tBqtoGU6j2osQf11hxKggtZRnE9Uwzm2jdGLPRA3",
-      "balance": 468389,
+      "balance": 508075,
       "membership_expire_on": 1713378416,
       "next_cert_issuable_on": 1684150928,
       "certs_received": {
@@ -166019,7 +169602,7 @@
     "JudyTrinity": {
       "index": 11865,
       "owner_key": "F4YH8oU5MHyyf9CiqE7DvJAd2C9zQGJCyreGttWh2i6E",
-      "balance": 142158,
+      "balance": 184344,
       "membership_expire_on": 1708349157,
       "next_cert_issuable_on": 1689930577,
       "certs_received": {
@@ -166036,7 +169619,7 @@
     "Ayrelibre": {
       "index": 11989,
       "owner_key": "F4coLq8cNZb3B5LSAfJpAfbGZqRgRoyjGBLMn1wLvK1A",
-      "balance": 220797,
+      "balance": 260483,
       "membership_expire_on": 1710288009,
       "next_cert_issuable_on": 1679727149,
       "certs_received": {
@@ -166052,7 +169635,7 @@
     "NicoNablast": {
       "index": 11581,
       "owner_key": "F4hVJkSir7b6VTjDghzrHLMUw1MZDrFMha3kCgLm1j2D",
-      "balance": 163267,
+      "balance": 202953,
       "membership_expire_on": 1706466414,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -166075,7 +169658,7 @@
     "BeneVM": {
       "index": 10729,
       "owner_key": "F4onX4P22iR82zUUNiyY9S4VvzyKTgWW5nyVTJNjPLEZ",
-      "balance": 65335,
+      "balance": 49421,
       "membership_expire_on": 1701747341,
       "next_cert_issuable_on": 1692939565,
       "certs_received": {
@@ -166094,7 +169677,7 @@
     "minas": {
       "index": 7805,
       "owner_key": "F4qfKPr6DTX7xVS3q2Dbr4fKB93NBf2An7kXFi2YNVcz",
-      "balance": 365763,
+      "balance": 362349,
       "membership_expire_on": 1707671719,
       "next_cert_issuable_on": 1670734355,
       "certs_received": {
@@ -166118,7 +169701,7 @@
     "Charles": {
       "index": 4726,
       "owner_key": "F4sJJo7pPZQYkPJoDmqpyNrxs8Mxs672Te8LxSsKc4GL",
-      "balance": 910761,
+      "balance": 950447,
       "membership_expire_on": 1701456727,
       "next_cert_issuable_on": 1670824316,
       "certs_received": {
@@ -166135,7 +169718,7 @@
     "bonohm05": {
       "index": 3390,
       "owner_key": "F4vX8CFvU8YM6SWEuPugGFutSfy5zrJnUb48wmeENePi",
-      "balance": 1287148,
+      "balance": 1326834,
       "membership_expire_on": 1699030869,
       "next_cert_issuable_on": 1656608852,
       "certs_received": {
@@ -166151,7 +169734,7 @@
     "LavierSophie": {
       "index": 11607,
       "owner_key": "F52KdVVzC6CLvhJayFwPvT71m164Q9fYZTKxR2YiC29j",
-      "balance": 224784,
+      "balance": 240470,
       "membership_expire_on": 1707742525,
       "next_cert_issuable_on": 1677936785,
       "certs_received": {
@@ -166169,7 +169752,7 @@
     "AudreyDilant": {
       "index": 8982,
       "owner_key": "F52x8nsmToEJe8mXZs2DWN9XVYmfXmpW5ZWiUf7e8qTW",
-      "balance": 347939,
+      "balance": 387625,
       "membership_expire_on": 1719132405,
       "next_cert_issuable_on": 1682361385,
       "certs_received": {
@@ -166199,12 +169782,26 @@
         "HeleneMirebeau": 1711698782
       }
     },
+    "Tunina": {
+      "index": 13559,
+      "owner_key": "F5BSKLdoyRDTNrownbxwmTwFoyToTam9Q7VYQsQ53Aei",
+      "balance": 33041,
+      "membership_expire_on": 1723242491,
+      "next_cert_issuable_on": 1695817609,
+      "certs_received": {
+        "Kaikus": 1757651073,
+        "Xisca": 1755046804,
+        "MargalidaJeronia": 1756020550,
+        "MariantoniaHuguet": 1755395128,
+        "tuttle": 1754809255
+      }
+    },
     "lamettrie": {
       "index": 13392,
       "owner_key": "F5F58B4cTMXfgQ1mEwiHCzbJJrTUpgP74cEq53wQwMLQ",
-      "balance": 21020,
+      "balance": 60706,
       "membership_expire_on": 1723313530,
-      "next_cert_issuable_on": 1693393305,
+      "next_cert_issuable_on": 1695872911,
       "certs_received": {
         "Olivier3574": 1755477793,
         "CarolAmethyste": 1755499114,
@@ -166224,21 +169821,14 @@
     "GeneVieve": {
       "index": 5614,
       "owner_key": "F5LYGebVSyacn9ZRHgysQgdNG3mroNN1M5C614fnZs1y",
-      "balance": 590174,
+      "balance": 629860,
       "membership_expire_on": 1720543563,
       "next_cert_issuable_on": 1687134498,
       "certs_received": {
         "Solesan": 1699863316,
-        "Danysa": 1695853601,
         "MarindChanti": 1714082309,
-        "Gami": 1693721895,
-        "FrankDeMey": 1694641814,
         "Charista": 1725557248,
-        "LaurentNeuville": 1693698800,
-        "AmandineDupret": 1693698800,
-        "MarieBertheRanwet": 1693847741,
         "Val1695": 1698951753,
-        "MinaManar": 1693706558,
         "Mireilleplantessauvages": 1753156476,
         "Patoun": 1699030515,
         "Mmemonica": 1744694107
@@ -166247,12 +169837,13 @@
     "lebonange": {
       "index": 12770,
       "owner_key": "F5NqKwassP1bkHLQGFWkWNaUk3FVR31AJAqPLT6vgp6a",
-      "balance": 100492,
+      "balance": 148278,
       "membership_expire_on": 1716831110,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694412512,
       "certs_received": {
         "FraBro": 1748465259,
         "Nouchka1": 1748495737,
+        "Shinix63": 1759815071,
         "CarBro": 1748465259,
         "freeman": 1748497693,
         "Clover": 1748494362
@@ -166269,7 +169860,7 @@
     "KillianPavy": {
       "index": 7140,
       "owner_key": "F5Uf5buDTbdVovcV2gSrPLjCLDte6tFaDc9yeesX9mWb",
-      "balance": 585712,
+      "balance": 625398,
       "membership_expire_on": 1704314723,
       "next_cert_issuable_on": 1665133742,
       "certs_received": {
@@ -166289,7 +169880,7 @@
     "Appolinedrt": {
       "index": 11548,
       "owner_key": "F5VL9EvzsDoip4Vr1VqmPTeqKUqZNPgBs5H7EYPjVgX2",
-      "balance": 215385,
+      "balance": 255071,
       "membership_expire_on": 1707139597,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -166311,7 +169902,7 @@
     "LaurentArno": {
       "index": 4856,
       "owner_key": "F5cYFZ4P8YmFnE7eyMTU8TCiuGSdF7cy9SvBGRSMTApY",
-      "balance": 894819,
+      "balance": 934505,
       "membership_expire_on": 1710982209,
       "next_cert_issuable_on": 1664293777,
       "certs_received": {
@@ -166352,6 +169943,21 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Josilin": {
+      "index": 13554,
+      "owner_key": "F5hTkmo8NJd8FxqYgWiabKAynkdPey7goVqVCaNDsMy1",
+      "balance": 29939,
+      "membership_expire_on": 1725996499,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Mianne": 1757620343,
+        "Merlinor": 1757620583,
+        "BeaC": 1757572519,
+        "Plume": 1757730555,
+        "Jadom": 1757606001,
+        "Janne": 1757555657
+      }
+    },
     "Vivi": {
       "index": 4755,
       "owner_key": "F5pL5W3FK4xGW1hBE6PUTHWSknqrhkpaCFfx56negyeo",
@@ -166367,7 +169973,7 @@
     "AlEgory": {
       "index": 12963,
       "owner_key": "F5sYpw8gZspjQLpipgT2XmaieTCuWgdGPcxVnh2n6aQu",
-      "balance": 123692,
+      "balance": 163378,
       "membership_expire_on": 1717878299,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -166392,7 +169998,7 @@
     "benoit": {
       "index": 6772,
       "owner_key": "F5zNFT4q3hY6S1erM72sJy8pVrQx7ZzjgB88PY1omD2q",
-      "balance": 581965,
+      "balance": 605851,
       "membership_expire_on": 1701774109,
       "next_cert_issuable_on": 1669083987,
       "certs_received": {
@@ -166411,7 +170017,7 @@
     "FrancoiseSinger": {
       "index": 8443,
       "owner_key": "F61spqUFz3QzvVMp2PDu2Ax6vbUs4wy2YogAdMqyKgyJ",
-      "balance": 512681,
+      "balance": 552367,
       "membership_expire_on": 1713176607,
       "next_cert_issuable_on": 1686464968,
       "certs_received": {
@@ -166439,7 +170045,7 @@
     "aya": {
       "index": 8779,
       "owner_key": "F6AmVLgjCh6tBWX8FiKx6B26zVfdNC9ncWA2WKDRkCzR",
-      "balance": 300204,
+      "balance": 339890,
       "membership_expire_on": 1719100102,
       "next_cert_issuable_on": 1691829072,
       "certs_received": {
@@ -166488,7 +170094,7 @@
     "Mar27114": {
       "index": 12313,
       "owner_key": "F6NPWyv6VoikrrrcHpsuaQcdQos96xHqqCryaUo3ZSKk",
-      "balance": 151656,
+      "balance": 191342,
       "membership_expire_on": 1712501574,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -166502,9 +170108,9 @@
     "Domino7": {
       "index": 10589,
       "owner_key": "F6NnP9dNRb9YwqiqWx1FHBmbW4cZ1zKDs1RfKKfvcKnZ",
-      "balance": 269322,
-      "membership_expire_on": 1700349476,
-      "next_cert_issuable_on": 1693266204,
+      "balance": 250508,
+      "membership_expire_on": 1727712279,
+      "next_cert_issuable_on": 1696244561,
       "certs_received": {
         "VeroRonsmans": 1732493150,
         "Chabe13": 1735371511,
@@ -166543,9 +170149,9 @@
     "miminanou": {
       "index": 12990,
       "owner_key": "F6hDZhiSnNy7VSu4EqpSsJFPQVJ4nBYqQJwqaDTZKskK",
-      "balance": 79488,
+      "balance": 117174,
       "membership_expire_on": 1719185687,
-      "next_cert_issuable_on": 1689586515,
+      "next_cert_issuable_on": 1693996361,
       "certs_received": {
         "SandyMenegazzi": 1750826332,
         "Diabolo": 1750892527,
@@ -166565,7 +170171,7 @@
     "melisse": {
       "index": 1630,
       "owner_key": "F6qgHjjf9rG9SMAZrXaQ5aEdbaHnQrGEp9dEQSnsP6FC",
-      "balance": 1477065,
+      "balance": 1516751,
       "membership_expire_on": 1710267394,
       "next_cert_issuable_on": 1682220424,
       "certs_received": {
@@ -166583,7 +170189,7 @@
     "Rafa": {
       "index": 7910,
       "owner_key": "F6vpQTPTXY8cXEXoecQqSSNcnH5yYJgPgBCmd7CRhbC8",
-      "balance": 458926,
+      "balance": 498622,
       "membership_expire_on": 1709863361,
       "next_cert_issuable_on": 1664498712,
       "certs_received": {
@@ -166618,7 +170224,7 @@
     "Sylvielaguepe": {
       "index": 11873,
       "owner_key": "F72rN6awtLzvxENwnetSuV37W6BgjiYpn16Ejekvydej",
-      "balance": 199728,
+      "balance": 239414,
       "membership_expire_on": 1708899969,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -166634,7 +170240,7 @@
     "Millefeuille": {
       "index": 8938,
       "owner_key": "F732uDZ6oJptCagJq5TdKFiEuXYweQogovhdPCsqCC1M",
-      "balance": 443043,
+      "balance": 482729,
       "membership_expire_on": 1718535770,
       "next_cert_issuable_on": 1665582115,
       "certs_received": {
@@ -166667,7 +170273,7 @@
     "Vivi83": {
       "index": 4246,
       "owner_key": "F7BfJ5xW9EGMWA7VG98pW4xiqbWok9Qjb8Q4ep8L1HcJ",
-      "balance": 914530,
+      "balance": 954216,
       "membership_expire_on": 1702807313,
       "next_cert_issuable_on": 1638096733,
       "certs_received": {
@@ -166678,6 +170284,22 @@
         "Sandrine-": 1731720390
       }
     },
+    "Benedruide": {
+      "index": 13656,
+      "owner_key": "F7P2Rugw9iLeH9tDJFpNMpj8zeN31cmivZPDZTHA6pin",
+      "balance": 43736,
+      "membership_expire_on": 1726325545,
+      "next_cert_issuable_on": 1696422370,
+      "certs_received": {
+        "Gazaile": 1757883145,
+        "libellulecreative": 1758350429,
+        "Galouprof": 1758659185,
+        "LaFeeClochette": 1758660226,
+        "St123": 1758657283,
+        "Picatch": 1758656851,
+        "Evanouche": 1758659001
+      }
+    },
     "MimiLiberty": {
       "index": 1936,
       "owner_key": "F7ZyzdEYvRjWNE6k5kbNLpdpp8cHxvh6QT1BtT4QRm9q",
@@ -166689,9 +170311,9 @@
     "Malouve": {
       "index": 13340,
       "owner_key": "F7oEcectNGNrMcenXdkhxAgeCLwPiKfk6ejEK4yxeJu6",
-      "balance": 40496,
+      "balance": 75182,
       "membership_expire_on": 1721244918,
-      "next_cert_issuable_on": 1692762734,
+      "next_cert_issuable_on": 1695865657,
       "certs_received": {
         "MIDO": 1754629380,
         "Etoiledunord": 1754710607,
@@ -166703,9 +170325,9 @@
     "Cybelle-Prune": {
       "index": 10199,
       "owner_key": "F7poppVvW2mzFpzXtuqDxm74QZp8PZUpi19UuiA9UQuB",
-      "balance": 373388,
-      "membership_expire_on": 1697498659,
-      "next_cert_issuable_on": 1692513224,
+      "balance": 460734,
+      "membership_expire_on": 1726608419,
+      "next_cert_issuable_on": 1696244348,
       "certs_received": {
         "rockwater": 1751041904,
         "DameBene": 1730496001,
@@ -166713,6 +170335,7 @@
         "FredEnergie": 1740949520,
         "Nouchka1": 1730500658,
         "Chabe13": 1754438144,
+        "Ashawik": 1758685207,
         "CaptainVic": 1730496001,
         "Tchoupi": 1730503425,
         "CapuChoeur": 1742255281,
@@ -166726,8 +170349,8 @@
     "Celinenaturo": {
       "index": 9676,
       "owner_key": "F7sh1ULhjg27wDxkgPBUi43DwF2jaYKPJU4JNYNJizyt",
-      "balance": 487548,
-      "membership_expire_on": 1694436555,
+      "balance": 499296,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "VeroniqueHonlet": 1726027056,
@@ -166740,7 +170363,7 @@
     "ClaraFeutrier": {
       "index": 11202,
       "owner_key": "F7sms5rYVEo3B3fxhDPQzvHoszQrSkMe5SYckvWaivAF",
-      "balance": 313096,
+      "balance": 372782,
       "membership_expire_on": 1700243424,
       "next_cert_issuable_on": 1678419183,
       "certs_received": {
@@ -166756,9 +170379,9 @@
     "Heloim": {
       "index": 13054,
       "owner_key": "F7xZZqqFds5EQ3NugFf7CRewyVbmSdtiehR5gy8wEUiT",
-      "balance": 65148,
+      "balance": 104834,
       "membership_expire_on": 1718751693,
-      "next_cert_issuable_on": 1690681289,
+      "next_cert_issuable_on": 1695894506,
       "certs_received": {
         "DomMembre": 1750543824,
         "DomVe": 1751064763,
@@ -166773,8 +170396,8 @@
     "Bibinette": {
       "index": 4477,
       "owner_key": "F7zwtgeaMNYnBQpmn85CNwLbeaSyvPjj2S77VhSJeAn9",
-      "balance": 638262,
-      "membership_expire_on": 1695769118,
+      "balance": 666090,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673090594,
       "certs_received": {
         "Enialeh": 1736125735,
@@ -166788,8 +170411,8 @@
     "michelxyzw": {
       "index": 10531,
       "owner_key": "F834hky3VMYAr1h7RmeEJ7DSzZHq7Zd6ugkQZY3oFjjU",
-      "balance": 631395,
-      "membership_expire_on": 1699959191,
+      "balance": 251081,
+      "membership_expire_on": 1727437565,
       "next_cert_issuable_on": 1678718270,
       "certs_received": {
         "Lisa34": 1730750374,
@@ -166804,7 +170427,7 @@
     "Mariepolecoeur": {
       "index": 13430,
       "owner_key": "F83bMPs2TWt8RsjBkTL9KfoTmQQsz8uLKKb5zBwHzMah",
-      "balance": 31776,
+      "balance": 86462,
       "membership_expire_on": 1724445405,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -166818,7 +170441,7 @@
     "RomeoB": {
       "index": 12835,
       "owner_key": "F8CG9Qd75pqVgiGxuNq4TuS2zSfTN5Wnc52FJjJmiGkY",
-      "balance": 89280,
+      "balance": 117766,
       "membership_expire_on": 1717516415,
       "next_cert_issuable_on": 1692542595,
       "certs_received": {
@@ -166835,9 +170458,9 @@
     "Maaltir": {
       "index": 2703,
       "owner_key": "F8DoNzvUb11EftKqsodEnuJBbJiPh5rt16z9dADCS2cK",
-      "balance": 375966,
-      "membership_expire_on": 1694174517,
-      "next_cert_issuable_on": 1692686042,
+      "balance": 409444,
+      "membership_expire_on": 1725738537,
+      "next_cert_issuable_on": 1696390031,
       "certs_received": {
         "Jerome035": 1734737154,
         "Rebirth35": 1716452105,
@@ -166848,16 +170471,17 @@
         "b_presles": 1697086648,
         "GautierDavid": 1730655731,
         "paidge": 1701387207,
+        "CnouFoss": 1758522331,
         "DonQuiche": 1720377941,
         "HugoTrentesaux": 1742494423,
         "Patlutine": 1701474092,
         "vincentux": 1709665333,
-        "Droudrou": 1695482329,
         "CaroKro": 1730655973,
         "Clauclo": 1736189062,
         "Beatrice": 1728853767,
         "Pini": 1751769007,
         "Pascale72": 1755417797,
+        "Linata": 1757479048,
         "aajaadee": 1724042416,
         "Magabonde": 1731892642,
         "Diessanne": 1751687506,
@@ -166878,6 +170502,7 @@
         "AmelieBroudissou": 1736466732,
         "Granxis8": 1741073602,
         "EliseNantes": 1701822473,
+        "Anne_Marquer": 1755808156,
         "DanIcare": 1730490554,
         "tatinetteb": 1755886190,
         "Yvv": 1742643708,
@@ -166887,13 +170512,14 @@
     "Liam97418": {
       "index": 12321,
       "owner_key": "F8Gz5fQbGy2smz236S23RLVUqfMFezdMnaJ15B2zBwCr",
-      "balance": 275088,
+      "balance": 335774,
       "membership_expire_on": 1712505850,
       "next_cert_issuable_on": 1687551311,
       "certs_received": {
         "bardone01": 1744218959,
         "BAMBAM": 1747920075,
         "Myriam97410": 1744145217,
+        "mdanielle97430": 1755196432,
         "Reine97418": 1744071238,
         "Bastien97432": 1744144878,
         "pampermacole": 1744423855,
@@ -166917,9 +170543,9 @@
     "ABLITERO": {
       "index": 10944,
       "owner_key": "F8Z9q16nwdeJhBnoZdwSvc9kxq4yLGaXFseyE9avXjxM",
-      "balance": 182195,
+      "balance": 99681,
       "membership_expire_on": 1703084690,
-      "next_cert_issuable_on": 1689050884,
+      "next_cert_issuable_on": 1694618093,
       "certs_received": {
         "xandraAritzkuren": 1734745860,
         "Adribirix": 1743044811,
@@ -166930,21 +170556,25 @@
         "Elenarepostera": 1734643982,
         "jilguero": 1736662803,
         "Abejitajaimita": 1746761540,
+        "botera75": 1759221883,
         "mariabiodanza": 1736194263,
         "Munillerro": 1734643982,
-        "YUKO": 1734650429
+        "YUKO": 1734650429,
+        "Alberto": 1758082608,
+        "Marijopelirroja": 1759817731
       }
     },
     "Eric-Frodon86": {
       "index": 11765,
       "owner_key": "F8hwJpToNWXsDjFPtNcuhXABwTWodPW11Xt2rGkYv41P",
-      "balance": 333655,
+      "balance": 377341,
       "membership_expire_on": 1708883143,
-      "next_cert_issuable_on": 1692684566,
+      "next_cert_issuable_on": 1695010788,
       "certs_received": {
         "Ivanof": 1743743722,
         "Speedy86": 1749939924,
         "Sylvia8636": 1740550095,
+        "PhilippeLogiaco": 1758050089,
         "LionLDouNIo": 1748755033,
         "Sylharmonie": 1740441798,
         "Imppao": 1740458603,
@@ -166961,9 +170591,9 @@
     "zenbio": {
       "index": 2736,
       "owner_key": "F8if4j8PeUXvzT7mJwEe6uAAimqiYmBQpbP3J3Yk6cmG",
-      "balance": 612692,
+      "balance": 689078,
       "membership_expire_on": 1715524555,
-      "next_cert_issuable_on": 1689754705,
+      "next_cert_issuable_on": 1696316035,
       "certs_received": {
         "RomainKornig": 1712200373,
         "CRey": 1703582680,
@@ -166981,8 +170611,9 @@
         "Elyzia84": 1729047919,
         "michaelopdenacker": 1699117945,
         "Christelle": 1713379240,
+        "Annick84": 1759792020,
         "papillon84": 1699559501,
-        "Didierlife84": 1693941187,
+        "RosadoraLafee": 1757280553,
         "Meiluce": 1728056656,
         "Wono": 1712093103,
         "Nellouche": 1718248750,
@@ -166993,12 +170624,11 @@
         "Avrila": 1705623321,
         "Flovie": 1723913336,
         "pfouque": 1714516338,
-        "lamouette": 1694802719,
+        "lamouette": 1757060186,
         "Dlies": 1712453751,
         "maceo": 1724587766,
         "laviedefiou": 1736459471,
         "Barylium253": 1734217781,
-        "Coco46": 1693812040,
         "salamandre": 1752974483,
         "Merlinor": 1747771150,
         "Patricia84": 1750063561,
@@ -167006,16 +170636,16 @@
         "ReMaLoup": 1750105453,
         "Joellebingo": 1706408608,
         "Jadom": 1748032701,
-        "CovaDidier": 1696233942,
+        "CovaDidier": 1759307011,
         "QuentinClement": 1745124004
       }
     },
     "louirit": {
       "index": 9318,
       "owner_key": "F8jweqSLd5h94B5Wrgt1mQ7JdX5oQM6Yks3MbcpetUKt",
-      "balance": 346856,
+      "balance": 383542,
       "membership_expire_on": 1719528589,
-      "next_cert_issuable_on": 1692619287,
+      "next_cert_issuable_on": 1693045057,
       "certs_received": {
         "ColetteNavaux": 1724537315,
         "pauldel": 1752903620,
@@ -167033,7 +170663,7 @@
     "georgeslumiere": {
       "index": 13090,
       "owner_key": "F8kyngV4S4LwzodJ6fJg1WDcvRepv1EYAgtkuZbASVrm",
-      "balance": 59808,
+      "balance": 99494,
       "membership_expire_on": 1719701994,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -167064,7 +170694,7 @@
     "Francois73": {
       "index": 11926,
       "owner_key": "F8qicy15diQCYNznCyHkcxQ5inoLfxbL3dtvn7hT23rb",
-      "balance": 174233,
+      "balance": 213919,
       "membership_expire_on": 1704848389,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -167089,7 +170719,7 @@
     "mariemanon": {
       "index": 4816,
       "owner_key": "F8wiZ7SCix7Gew2F7pkWoqKoHKzcXVtv1qCp8RJmovkS",
-      "balance": 935728,
+      "balance": 975414,
       "membership_expire_on": 1705606915,
       "next_cert_issuable_on": 1680658910,
       "certs_received": {
@@ -167110,8 +170740,8 @@
     "FrancoisLPSM": {
       "index": 11252,
       "owner_key": "F98mzk7cBjdqnrTWRyUn37yP1fCiDAKECFcu62gj4qjp",
-      "balance": 198621,
-      "membership_expire_on": 1701731913,
+      "balance": 238307,
+      "membership_expire_on": 1728151458,
       "next_cert_issuable_on": 1676046198,
       "certs_received": {
         "rockanneroll": 1736917894,
@@ -167124,8 +170754,8 @@
     "Laurette21": {
       "index": 9573,
       "owner_key": "F9B47zZ4VcoSvG8q2hC4hB9EDh82d6d4Y918vwwBVKW2",
-      "balance": 379432,
-      "membership_expire_on": 1694721472,
+      "balance": 394384,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1689842884,
       "certs_received": {
         "Jsln6289": 1726283063,
@@ -167147,15 +170777,11 @@
     "Moijune": {
       "index": 5867,
       "owner_key": "F9BTJuaqsT5wXZsyqeC95y1RKaHWbzwaf4NwK7bFb5pe",
-      "balance": 712099,
-      "membership_expire_on": 1696510384,
+      "balance": 734537,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1634981815,
       "certs_received": {
-        "Yipyip": 1697669431,
-        "tiphaine": 1695367924,
-        "STELLA": 1695440939,
-        "Spartacus": 1695367924,
-        "Mama63isa": 1695609133
+        "Yipyip": 1697669431
       }
     },
     "Sangelllo": {
@@ -167171,7 +170797,7 @@
     "Cassie": {
       "index": 8538,
       "owner_key": "F9FrRavPrA2MHAvVGGznQceQtT7wTQSboS1HTznNngb3",
-      "balance": 329675,
+      "balance": 273361,
       "membership_expire_on": 1711157552,
       "next_cert_issuable_on": 1690640224,
       "certs_received": {
@@ -167205,17 +170831,17 @@
     "SyoulAnuanua": {
       "index": 3935,
       "owner_key": "F9JEPzo3sE9LtVNx6u2EcriPzzgnbXtUnvUtjQRDcTeu",
-      "balance": 472262,
+      "balance": 432516,
       "membership_expire_on": 1707483777,
-      "next_cert_issuable_on": 1687501460,
+      "next_cert_issuable_on": 1695444128,
       "certs_received": {
         "GUL40_Fr1": 1729297359,
         "Tanita": 1726044130,
+        "Tchois": 1758931236,
         "rosydailleurs": 1724396356,
         "HugoTrentesaux": 1741835572,
         "SamuelPabloAlmonacid": 1727535860,
         "lydiemdb": 1750295211,
-        "Adri46": 1693875530,
         "Cissou": 1731881701,
         "Tissilia": 1746126593,
         "JerryBB": 1726631509,
@@ -167243,9 +170869,9 @@
     "Thiam": {
       "index": 13421,
       "owner_key": "F9QnNhxQQqtQoZR4FN5oJXvTrHPwycRXQGMTCZHeLQxT",
-      "balance": 206824,
+      "balance": 180510,
       "membership_expire_on": 1723922640,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694151865,
       "certs_received": {
         "AriahNarnia": 1755476614,
         "SionaJJJ": 1755475667,
@@ -167262,9 +170888,9 @@
     "Mido": {
       "index": 9186,
       "owner_key": "F9R3AdWM4xCyuPAk5exRyuiDcEQZJ2PVdanThoaG7Rv",
-      "balance": 772889,
+      "balance": 812575,
       "membership_expire_on": 1716254656,
-      "next_cert_issuable_on": 1691307954,
+      "next_cert_issuable_on": 1695098034,
       "certs_received": {
         "Silvibenedet": 1742441737,
         "MaudD": 1750132854,
@@ -167287,6 +170913,7 @@
         "Bea34": 1738201862,
         "CharlesCros": 1740515595,
         "loveinagain81": 1740943200,
+        "GanTao": 1753152043,
         "Iguana": 1739938021,
         "Florane": 1732586034,
         "BolidoC": 1730327128,
@@ -167306,7 +170933,7 @@
     "raphyduck": {
       "index": 12958,
       "owner_key": "F9SqroLdLQgXLecrZf9m2UPRAKwPToUvh9nPzwi4j757",
-      "balance": 72444,
+      "balance": 112130,
       "membership_expire_on": 1718633654,
       "next_cert_issuable_on": 1690952722,
       "certs_received": {
@@ -167321,17 +170948,16 @@
     "christine": {
       "index": 5670,
       "owner_key": "F9TH38Ya64w3HYXX4JiYeUeSka5sTdpd754GWjCXWzr9",
-      "balance": 800862,
-      "membership_expire_on": 1694473554,
-      "next_cert_issuable_on": 1674393856,
+      "balance": 775868,
+      "membership_expire_on": 1725375829,
+      "next_cert_issuable_on": 1694176374,
       "certs_received": {
         "adridu38": 1741151509,
+        "Kristo": 1757009322,
         "Bap": 1734487616,
-        "thierry38": 1694655640,
-        "fanfan77": 1695009811,
-        "BertrandL": 1694989218,
+        "Coco46": 1756918977,
         "AstridG": 1726289689,
-        "LaurentM": 1694447445,
+        "Fa5": 1757009322,
         "Gyom": 1735951455
       }
     },
@@ -167346,7 +170972,7 @@
     "Manutafalla": {
       "index": 11843,
       "owner_key": "F9WH2unXZKEcwLUVNZoiFR4wtXKNrA86BG55qcVMaEUT",
-      "balance": 213646,
+      "balance": 214532,
       "membership_expire_on": 1706739964,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -167360,11 +170986,12 @@
     "Bamboo": {
       "index": 13127,
       "owner_key": "F9di6LgWjYV9gXTXNZjs1xmrhvCDD8G2FMr5SoAXQ2qK",
-      "balance": 608452,
+      "balance": 537638,
       "membership_expire_on": 1719100317,
       "next_cert_issuable_on": 1690103076,
       "certs_received": {
         "Andou": 1752074323,
+        "MaureenDoucet": 1758617030,
         "HubuH": 1752610917,
         "ElodieMay": 1752034593,
         "DCat": 1752782345,
@@ -167390,7 +171017,7 @@
     "Miche3": {
       "index": 12953,
       "owner_key": "F9hNTc6RuUuKm4fzEoFq17iBunRnjvwrrDtub8Ljfeyx",
-      "balance": 75828,
+      "balance": 115514,
       "membership_expire_on": 1718924861,
       "next_cert_issuable_on": 1687773589,
       "certs_received": {
@@ -167407,11 +171034,12 @@
     "Lilo26": {
       "index": 11803,
       "owner_key": "F9qsmkmp3fYq8pe9bczpKqw8QTjVv7XFN79ZC3czYQSS",
-      "balance": 231107,
+      "balance": 271294,
       "membership_expire_on": 1709071773,
-      "next_cert_issuable_on": 1691065124,
+      "next_cert_issuable_on": 1696333393,
       "certs_received": {
         "Re-belle": 1755800029,
+        "MalvinaBoutot": 1758392275,
         "Mik974": 1740689123,
         "Titi974": 1740691530,
         "Didilou": 1741073170,
@@ -167433,7 +171061,7 @@
     "SophieP2007": {
       "index": 10431,
       "owner_key": "F9s8RfpRQsWyceqQqwi919v3x5MrmtdMkQSKDPFr4NYm",
-      "balance": 303282,
+      "balance": 342968,
       "membership_expire_on": 1700002383,
       "next_cert_issuable_on": 1676802952,
       "certs_received": {
@@ -167460,12 +171088,13 @@
     "Laurel": {
       "index": 11136,
       "owner_key": "F9xCBRRE1Lo6QTXptzFPSQi9htgMCHrEdUvbbX4bHmNo",
-      "balance": 134644,
+      "balance": 16330,
       "membership_expire_on": 1704250426,
       "next_cert_issuable_on": 1688875244,
       "certs_received": {
         "SaraRo": 1746692338,
         "Ainat255": 1736450554,
+        "KiiAymara": 1756860210,
         "Lemosque": 1745643569,
         "CarmeLilum": 1735808590,
         "YEROKI": 1736189384,
@@ -167478,7 +171107,7 @@
     "Muriellot": {
       "index": 12661,
       "owner_key": "FA3ynxsXuosUJvrrvPtowM5ncyavuxFcR6aGuPQQVmd9",
-      "balance": 310659,
+      "balance": 350345,
       "membership_expire_on": 1711481955,
       "next_cert_issuable_on": 1685602936,
       "certs_received": {
@@ -167492,7 +171121,7 @@
     "Alexzen": {
       "index": 10402,
       "owner_key": "FAB1Dh9VQZFvQavRAs79dJZ14J6Hh6sZUDLNd9KrvEcQ",
-      "balance": 286669,
+      "balance": 326355,
       "membership_expire_on": 1697161555,
       "next_cert_issuable_on": 1678086380,
       "certs_received": {
@@ -167520,24 +171149,26 @@
     "Ninoushka": {
       "index": 13283,
       "owner_key": "FARMhLNhyVGgfcjdEASfmkaix9PwnBeps5aaN5a53Ni3",
-      "balance": 21108,
+      "balance": 60794,
       "membership_expire_on": 1721829964,
-      "next_cert_issuable_on": 1691039915,
+      "next_cert_issuable_on": 1692894966,
       "certs_received": {
         "Zap": 1753487606,
         "Dams": 1753471068,
         "Lako": 1753576457,
+        "Poesy": 1758301217,
         "Camizot": 1753526777,
         "Loup": 1753417973,
         "Fanchon": 1753405747,
+        "Mauve": 1757380618,
         "Biou": 1753544390
       }
     },
     "CatherineCourjan": {
       "index": 6659,
       "owner_key": "FAXnunNuhWwkXbXw5dWEyNLvdBPa4evV2zDhUhrKtPVU",
-      "balance": 863911,
-      "membership_expire_on": 1699961607,
+      "balance": 907497,
+      "membership_expire_on": 1726421100,
       "next_cert_issuable_on": 1688643702,
       "certs_received": {
         "NathalieCokelaer": 1705351731,
@@ -167561,21 +171192,15 @@
     "PhilippLarsen": {
       "index": 5736,
       "owner_key": "FAdqrACecJc6v8XmYGxTsVhaAgSYZPozprBdxe712YN2",
-      "balance": 746971,
-      "membership_expire_on": 1695733097,
+      "balance": 774799,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1645679139,
-      "certs_received": {
-        "JacquelinePlan": 1695879678,
-        "Stevia30120": 1695964481,
-        "NGO": 1695859290,
-        "loup12": 1695844304,
-        "chronophonix": 1695844304
-      }
+      "certs_received": {}
     },
     "Fredamour": {
       "index": 7452,
       "owner_key": "FAjM1HDazDyZgp3YZx4r9LhB3z3uFJS2rq9PbKJryNqQ",
-      "balance": 479316,
+      "balance": 519002,
       "membership_expire_on": 1711071208,
       "next_cert_issuable_on": 1678935990,
       "certs_received": {
@@ -167599,7 +171224,7 @@
     "Geairare": {
       "index": 4327,
       "owner_key": "FAoVfzay6VG6SeJ8fQf5Jb8YP1YCsqvxEXNwk4DLVcBL",
-      "balance": 344701,
+      "balance": 353091,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1666270839,
       "certs_received": {
@@ -167610,7 +171235,7 @@
     "Dayana": {
       "index": 9684,
       "owner_key": "FAzN6SbvJ1LUiTEmvGgTQSDSYtyzB46rT5jDa9FqqEz6",
-      "balance": 80509,
+      "balance": 53195,
       "membership_expire_on": 1723372432,
       "next_cert_issuable_on": 1677219028,
       "certs_received": {
@@ -167635,7 +171260,7 @@
     "MamieChataigne": {
       "index": 11662,
       "owner_key": "FB2ZKWf2d6QAkvDnZEXPykrCEXfsZ2NBKGHz3U2Bfz1o",
-      "balance": 231913,
+      "balance": 271599,
       "membership_expire_on": 1707424116,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -167665,7 +171290,7 @@
     "isabo971": {
       "index": 12128,
       "owner_key": "FBAvr2U4gDmTjrzK4BL1Tdfv6RNXwCBWHA4qJF1TwwXF",
-      "balance": 297744,
+      "balance": 337430,
       "membership_expire_on": 1710452410,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -167695,7 +171320,7 @@
     "lagoet73": {
       "index": 6347,
       "owner_key": "FBcZSRyHNrFsyrNpBJ2XYBfWVqCkRYvX8SPk3S7L3XsX",
-      "balance": 640363,
+      "balance": 680049,
       "membership_expire_on": 1699109332,
       "next_cert_issuable_on": 1670817873,
       "certs_received": {
@@ -167731,9 +171356,9 @@
     "Rosiro": {
       "index": 10771,
       "owner_key": "FBembSU186aSSPZL3h3gjuhC2NQ1mTSJQYUFToh5wzi1",
-      "balance": 476952,
-      "membership_expire_on": 1701217946,
-      "next_cert_issuable_on": 1686452398,
+      "balance": 475638,
+      "membership_expire_on": 1727720313,
+      "next_cert_issuable_on": 1693718971,
       "certs_received": {
         "Rebel": 1733792557,
         "PascalEnden": 1749518944,
@@ -167742,6 +171367,7 @@
         "Fox": 1736386254,
         "Domij": 1733224912,
         "Warrior": 1743401739,
+        "janhsh": 1756243381,
         "remol": 1755368718,
         "Rserge": 1733725863,
         "phil": 1733547343,
@@ -167752,7 +171378,7 @@
     "mabboux": {
       "index": 11644,
       "owner_key": "FBfxjqPHPj4aXExwdtfGjN7oAyWPTcLkWE6DEJ5hcf1g",
-      "balance": 203504,
+      "balance": 244870,
       "membership_expire_on": 1707160743,
       "next_cert_issuable_on": 1676713124,
       "certs_received": {
@@ -167768,9 +171394,9 @@
     "Simone": {
       "index": 8991,
       "owner_key": "FBkQXjq9da46wjRYpV3twPdpVF3xDJGy563SXtjFf9Ad",
-      "balance": 217488,
+      "balance": 229574,
       "membership_expire_on": 1715618827,
-      "next_cert_issuable_on": 1686107651,
+      "next_cert_issuable_on": 1696778269,
       "certs_received": {
         "DanWF": 1746577216,
         "Cavalier07": 1721371996,
@@ -167789,7 +171415,7 @@
     "Bellizaza": {
       "index": 11621,
       "owner_key": "FBnjP9cVoQP4PB9UA31L2Bn66EqxrwzEtpn8ow6bFiet",
-      "balance": 210090,
+      "balance": 249776,
       "membership_expire_on": 1707230655,
       "next_cert_issuable_on": 1677504917,
       "certs_received": {
@@ -167803,7 +171429,7 @@
     "corinnecoccinelle": {
       "index": 13202,
       "owner_key": "FBzQRN9ov3V9nTC6cGUsq8YP2YhNeUmLWt46wwQFxj4P",
-      "balance": 43788,
+      "balance": 83474,
       "membership_expire_on": 1719701994,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -167818,7 +171444,7 @@
     "Gillou672": {
       "index": 12529,
       "owner_key": "FC3D6P8uGxD8yMyx8ovA5SWZc6sjscuduk35bXAoj4g2",
-      "balance": 99660,
+      "balance": 133346,
       "membership_expire_on": 1712162514,
       "next_cert_issuable_on": 1683666225,
       "certs_received": {
@@ -167834,10 +171460,11 @@
     "AmeliepE": {
       "index": 164,
       "owner_key": "FC3tn6Vr1XH1goxVa2vMFHeYnTCrWtBFMfkv6sVR8hJG",
-      "balance": 1917777,
-      "membership_expire_on": 1694872261,
+      "balance": 1934865,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1667571375,
       "certs_received": {
+        "daryl": 1757265024,
         "stephanechevreau": 1751259300,
         "KarimCorrandDubreil": 1698173632,
         "Pauline-Georges": 1698173942,
@@ -167850,9 +171477,9 @@
     "Ekane": {
       "index": 11590,
       "owner_key": "FC5yhCMyBoMrALBkGzcbVBPXDFQfPwByt6PhWpkPvZBm",
-      "balance": 200149,
+      "balance": 103835,
       "membership_expire_on": 1705942966,
-      "next_cert_issuable_on": 1692860225,
+      "next_cert_issuable_on": 1695568813,
       "certs_received": {
         "Cholo": 1753420875,
         "Artesanatacto": 1740768276,
@@ -167863,6 +171490,7 @@
         "Anam": 1739172449,
         "Belobal": 1754064551,
         "Aneyusta": 1739171980,
+        "EcoMary": 1756790323,
         "EstefaniaLopez": 1754774656,
         "MAIKA": 1756265290,
         "Montse": 1743354935,
@@ -167897,14 +171525,15 @@
     "LionelB35": {
       "index": 7469,
       "owner_key": "FC7yPYwkpZLVXCAm7YxDGV7E8jNrfbqhHEkHZmAKYMrp",
-      "balance": 548653,
+      "balance": 588339,
       "membership_expire_on": 1702574988,
-      "next_cert_issuable_on": 1690097874,
+      "next_cert_issuable_on": 1695040246,
       "certs_received": {
         "Francoeur": 1707551661,
         "YLD56460": 1734127353,
         "Keriadenn": 1708031914,
         "SylvieM35": 1711012994,
+        "Pascal35800": 1756919415,
         "CarolAmethyste": 1718133968,
         "CatCats": 1733787362,
         "Smart35": 1734149858,
@@ -167916,7 +171545,7 @@
     "jagrau": {
       "index": 8962,
       "owner_key": "FCAabVUAsFGMhscVFA4MKpy6fd8p1e2uuN3JG7F67kVJ",
-      "balance": 525463,
+      "balance": 531501,
       "membership_expire_on": 1713311748,
       "next_cert_issuable_on": 1681826148,
       "certs_received": {
@@ -167953,8 +171582,8 @@
     "DanaePaul": {
       "index": 10341,
       "owner_key": "FCDGGvsTSw1Fs31cg6cbvyWVEstDG9EZyy1mWQeLSc4K",
-      "balance": 236936,
-      "membership_expire_on": 1697939855,
+      "balance": 261622,
+      "membership_expire_on": 1725896696,
       "next_cert_issuable_on": 1683959464,
       "certs_received": {
         "Monette": 1731391913,
@@ -167968,7 +171597,7 @@
     "DOMN21": {
       "index": 9961,
       "owner_key": "FCEdBAN5vJeYDGJo3ZmbNaDJfdKDnhhSE5CvoimgAJJ1",
-      "balance": 335788,
+      "balance": 375474,
       "membership_expire_on": 1697404626,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -167984,7 +171613,7 @@
     "francoislibre": {
       "index": 8479,
       "owner_key": "FCHCfCD3uz8k29thHvr2pPgYZwibuP4noHVwTEPu5Aka",
-      "balance": 878773,
+      "balance": 936785,
       "membership_expire_on": 1711279364,
       "next_cert_issuable_on": 1686715554,
       "certs_received": {
@@ -168005,7 +171634,7 @@
     "mjbene84": {
       "index": 6951,
       "owner_key": "FCK1qgezvhnYRRm2QwgTo42aFAFndiJ1yaDvRnM8nQnX",
-      "balance": 576859,
+      "balance": 616545,
       "membership_expire_on": 1701597159,
       "next_cert_issuable_on": 1670111559,
       "certs_received": {
@@ -168025,7 +171654,7 @@
     "Eleonore": {
       "index": 8363,
       "owner_key": "FCQCGvHPSYtVgZdhyUH86954U5Bf6iRhU9YDRuhu2R8H",
-      "balance": 280855,
+      "balance": 322779,
       "membership_expire_on": 1708901281,
       "next_cert_issuable_on": 1692681929,
       "certs_received": {
@@ -168073,20 +171702,25 @@
     "Fanchon": {
       "index": 9921,
       "owner_key": "FCfuGAZcDHZ1wGSVTk28Wcbg459Wj4MucpVqKZsdP1Yi",
-      "balance": 260465,
+      "balance": 60151,
       "membership_expire_on": 1723164218,
-      "next_cert_issuable_on": 1693052845,
+      "next_cert_issuable_on": 1696221084,
       "certs_received": {
         "Zap": 1728089623,
         "Flohubert": 1745789617,
         "Api-aume": 1753288956,
         "Carolit": 1753213010,
         "Bernardfrennet": 1754251128,
+        "AnneSophieConotte": 1759253221,
         "Pandore": 1737263318,
+        "Isabeau": 1757404897,
         "Poesy": 1728078184,
+        "Ortie": 1759208101,
         "Leelith": 1744301629,
+        "Gillo75": 1759378657,
         "Camizot": 1737155996,
         "Loup": 1728078184,
+        "Ananda": 1757460301,
         "Emeline": 1728423176,
         "Helo-ise": 1742761725,
         "Mer-lin": 1742761304,
@@ -168094,6 +171728,7 @@
         "Colaga": 1741245644,
         "Efiletoile": 1756582772,
         "PremDas": 1752110870,
+        "Belle": 1758856438,
         "Peesse": 1728426711,
         "liliecharrier": 1753212743,
         "ben078m": 1729468480,
@@ -168103,8 +171738,8 @@
     "Fonzy": {
       "index": 9877,
       "owner_key": "FCgiQjHJd8Pu5ZYdh1x8pXDHfbuZCx5ZHZsD1onUD3jm",
-      "balance": 344583,
-      "membership_expire_on": 1694896690,
+      "balance": 361671,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "ManUtopiK": 1726454965,
@@ -168117,7 +171752,7 @@
     "Harry": {
       "index": 6080,
       "owner_key": "FCipjGMRAxVfe5uPzJ53vAxbmoJAAcktdi6adZuxbEaw",
-      "balance": 1166497,
+      "balance": 1206183,
       "membership_expire_on": 1697800928,
       "next_cert_issuable_on": 1669051962,
       "certs_received": {
@@ -168137,9 +171772,9 @@
     "Oscarsakura": {
       "index": 11680,
       "owner_key": "FCmZ4L1yzwVSjva8G33cKE4BvAjKrnae3qB3vhr5qgy5",
-      "balance": 70564,
+      "balance": 100250,
       "membership_expire_on": 1707567815,
-      "next_cert_issuable_on": 1692706297,
+      "next_cert_issuable_on": 1694010567,
       "certs_received": {
         "Justis": 1750459275,
         "ApanandoHerbas": 1743616880,
@@ -168158,11 +171793,13 @@
     "Nadia": {
       "index": 6460,
       "owner_key": "FCr3jU4HDePKixnQiMaprCFLyAeaU3wti4mgM5kH6Y8k",
-      "balance": 69257,
-      "membership_expire_on": 1698353283,
-      "next_cert_issuable_on": 1693183784,
+      "balance": 215221,
+      "membership_expire_on": 1725191398,
+      "next_cert_issuable_on": 1696609974,
       "certs_received": {
+        "AgnesJs": 1756610788,
         "MeliCP": 1720933937,
+        "Augusta24": 1759681792,
         "Fabi26": 1701482935,
         "Venceremos": 1724198378,
         "Denis": 1721002067,
@@ -168195,7 +171832,7 @@
     "Fer": {
       "index": 4864,
       "owner_key": "FCzEQ3gwWBAF3CXJK5JUDoFrGKvDeELrkPH8qFsEDAMS",
-      "balance": 359275,
+      "balance": 398961,
       "membership_expire_on": 1702443264,
       "next_cert_issuable_on": 1681801298,
       "certs_received": {
@@ -168211,7 +171848,7 @@
     "Freti73": {
       "index": 6025,
       "owner_key": "FD2aAhgz7gkgLZWg7MwhagFPv5HFDiDLZCpG9dnJsbec",
-      "balance": 903608,
+      "balance": 914794,
       "membership_expire_on": 1723731785,
       "next_cert_issuable_on": 1686743407,
       "certs_received": {
@@ -168241,9 +171878,9 @@
     "GerardoS": {
       "index": 8356,
       "owner_key": "FD3xAW7mbu4wPoGvLiVMxvkieTWW1skkJqjwJeTrrHPr",
-      "balance": 316622,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1655206956,
+      "balance": 346696,
+      "membership_expire_on": 1725738117,
+      "next_cert_issuable_on": 1694254467,
       "certs_received": {
         "Lorena": 1714886493,
         "mluque71": 1716848377,
@@ -168272,7 +171909,7 @@
     "Reginem": {
       "index": 10429,
       "owner_key": "FD9upEB9n2wBQqVHbTj7jdgrwdRSQnUQ4EPay3ojPuVk",
-      "balance": 273582,
+      "balance": 301268,
       "membership_expire_on": 1699884888,
       "next_cert_issuable_on": 1686573926,
       "certs_received": {
@@ -168286,7 +171923,7 @@
     "Jumy": {
       "index": 4243,
       "owner_key": "FDNZrudddpT6z8fFz5JfmBEMcrhh1akadjYdiyJiZPFv",
-      "balance": 1062551,
+      "balance": 1210037,
       "membership_expire_on": 1706363444,
       "next_cert_issuable_on": 1667553427,
       "certs_received": {
@@ -168300,8 +171937,8 @@
     "Bilitice": {
       "index": 10233,
       "owner_key": "FDQmvaySx7ruDtzk5MoDxLnNRP6DCUHGGmCurhYLN611",
-      "balance": 215590,
-      "membership_expire_on": 1695049151,
+      "balance": 255276,
+      "membership_expire_on": 1726657141,
       "next_cert_issuable_on": 1684024727,
       "certs_received": {
         "SandrineMala": 1730882127,
@@ -168321,9 +171958,9 @@
     "Naty31": {
       "index": 10419,
       "owner_key": "FDVGN8EAWUYnGX4HKtSmH5tWBYAXhN8Xj4a6h72esuoM",
-      "balance": 256189,
-      "membership_expire_on": 1700011673,
-      "next_cert_issuable_on": 1689955133,
+      "balance": 295875,
+      "membership_expire_on": 1726773415,
+      "next_cert_issuable_on": 1695823360,
       "certs_received": {
         "Choco": 1731963030,
         "Bea34": 1731789715,
@@ -168337,7 +171974,7 @@
     "loup9": {
       "index": 12480,
       "owner_key": "FDYnLv18tX2dxJX6dHbjgCt53rRumrRhAaXvY6PkT7zT",
-      "balance": 139500,
+      "balance": 179186,
       "membership_expire_on": 1710934864,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -168387,7 +172024,7 @@
     "ManuMuss": {
       "index": 3902,
       "owner_key": "FDg5QFx2qwrPLwyADqx8UhxKSNX1Dfa1o3BMgCB8a8ok",
-      "balance": 276827,
+      "balance": 316513,
       "membership_expire_on": 1709043385,
       "next_cert_issuable_on": 1672480051,
       "certs_received": {
@@ -168400,9 +172037,7 @@
         "gabyjoce974": 1717543681,
         "LILOU974": 1725061757,
         "MayaFoucaud": 1725929517,
-        "Evan97421": 1696674721,
         "NOE974": 1725060944,
-        "Alicia97421": 1696675949,
         "Cathy974": 1738418890,
         "pampermacole": 1717523907,
         "mancity08": 1723325004
@@ -168411,7 +172046,7 @@
     "PascalMeiller": {
       "index": 8112,
       "owner_key": "FDjuFEiBzEGqxJUYPiyThTnuBhYSw1arQ18cVb5Bgjnf",
-      "balance": 564432,
+      "balance": 571432,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1656075862,
       "certs_received": {
@@ -168435,18 +172070,13 @@
     "SamsFactory": {
       "index": 5660,
       "owner_key": "FDoixsSCwdpSc45ojwqj3ZivDc3UGbniHq7dGnZHGx1X",
-      "balance": 688957,
+      "balance": 728643,
       "membership_expire_on": 1720566884,
       "next_cert_issuable_on": 1689081564,
       "certs_received": {
-        "CatherinePerma": 1694574925,
-        "pierreM": 1694574925,
         "DaniailesA": 1715152983,
         "JulienVigier": 1705296145,
         "Ingriddevendee": 1700206566,
-        "fredo79": 1694574925,
-        "Jean-Michel_Filing": 1694574925,
-        "Titem": 1694578477,
         "RobinRoni": 1753228055,
         "BisQI": 1703131242,
         "JoW": 1715204755,
@@ -168465,7 +172095,7 @@
     "CrisDellaTana": {
       "index": 9070,
       "owner_key": "FDsABKmAWTEDnNrMgRY2yTVKGxtWSwnRuKTARLhgc2vd",
-      "balance": 30007,
+      "balance": 29693,
       "membership_expire_on": 1722440137,
       "next_cert_issuable_on": 1691154309,
       "certs_received": {
@@ -168480,22 +172110,24 @@
     "Monaco73": {
       "index": 4555,
       "owner_key": "FDwWWAtCTkW6JdHHVk5nTXt1WXjAZN7wseMcTLcAdRnk",
-      "balance": 793228,
-      "membership_expire_on": 0,
+      "balance": 826506,
+      "membership_expire_on": 1725401692,
       "next_cert_issuable_on": 1672283832,
       "certs_received": {
+        "SandRA": 1757130746,
         "MioPalmon988": 1712155468,
         "Bap": 1735784962,
         "Lucas_Desroches": 1735327328,
+        "christine": 1757219574,
         "LaurentM": 1737401606
       }
     },
     "Daibijoss": {
       "index": 11182,
       "owner_key": "FDxZJBCrGS9Sgskqtr5PMqERW4RbXDQToHhnW4TLzJbR",
-      "balance": 109014,
+      "balance": 126200,
       "membership_expire_on": 1704818903,
-      "next_cert_issuable_on": 1689178550,
+      "next_cert_issuable_on": 1694753932,
       "certs_received": {
         "Veroniquez": 1736498931,
         "Patmoy": 1736541106,
@@ -168508,7 +172140,7 @@
     "SoleilSoleil": {
       "index": 7076,
       "owner_key": "FDz1HDtqGvGokkHQ6Lq22oyt1QHpiPFSYmK9itaiDHc6",
-      "balance": 412344,
+      "balance": 452030,
       "membership_expire_on": 1709079669,
       "next_cert_issuable_on": 1664435101,
       "certs_received": {
@@ -168540,7 +172172,7 @@
     "Sabine82": {
       "index": 11524,
       "owner_key": "FE3EHsqbPwzVp38rjbvwiwwYkGA4deUzK6e6WJm9MKPH",
-      "balance": 227823,
+      "balance": 347509,
       "membership_expire_on": 1706558211,
       "next_cert_issuable_on": 1689653848,
       "certs_received": {
@@ -168594,14 +172226,13 @@
       "certs_received": {
         "Misslesfleurs": 1745117478,
         "jpeupagrando": 1745194112,
-        "Nadege": 1694496816,
         "Numerus47": 1723243759
       }
     },
     "FranZi": {
       "index": 7219,
       "owner_key": "FEFamRxy5wJYb3xPwDfqUVUugTSXkYeMxBDSPX8QRxSh",
-      "balance": 584209,
+      "balance": 623895,
       "membership_expire_on": 1707927813,
       "next_cert_issuable_on": 1667793066,
       "certs_received": {
@@ -168622,7 +172253,7 @@
     "Veroniquealycia": {
       "index": 10229,
       "owner_key": "FENpABZxd7bvSNdf2juSdGHshBJE4VcjSUkaeTeD3Qmb",
-      "balance": 453790,
+      "balance": 493476,
       "membership_expire_on": 1698103535,
       "next_cert_issuable_on": 1682416020,
       "certs_received": {
@@ -168643,9 +172274,9 @@
     "DavidSaintVoirin": {
       "index": 4264,
       "owner_key": "FEVukhJRxsBNRuevM6CfNiGuhhfxQYMUX6NbEvKNLkTM",
-      "balance": 959729,
-      "membership_expire_on": 1698329290,
-      "next_cert_issuable_on": 1681697625,
+      "balance": 999415,
+      "membership_expire_on": 1726676376,
+      "next_cert_issuable_on": 1695191335,
       "certs_received": {
         "OncleDave": 1731654635,
         "Isme": 1732353424,
@@ -168676,7 +172307,7 @@
     "CatherineDouchamps": {
       "index": 6624,
       "owner_key": "FEX2bmrEwKGhcVU4qRd3L6WjkVdZXzfGvrRySu7NEojp",
-      "balance": 608856,
+      "balance": 648542,
       "membership_expire_on": 1702655403,
       "next_cert_issuable_on": 1645934602,
       "certs_received": {
@@ -168692,7 +172323,7 @@
     "GodofredoBaltazar": {
       "index": 12785,
       "owner_key": "FEbHajKsJKr4qWgjDKBqN2uzBMofrBNEtT3MiVqYRbNp",
-      "balance": 105188,
+      "balance": 144874,
       "membership_expire_on": 1716342819,
       "next_cert_issuable_on": 1685849398,
       "certs_received": {
@@ -168708,9 +172339,9 @@
     "Fredlassave": {
       "index": 1908,
       "owner_key": "FEcfFyZuAMuCeqANo4U1iRdbwcr8BP2C5nfh42FP6GGG",
-      "balance": 1545733,
+      "balance": 1580899,
       "membership_expire_on": 1713870812,
-      "next_cert_issuable_on": 1692273031,
+      "next_cert_issuable_on": 1696585497,
       "certs_received": {
         "Choub": 1709528570,
         "Hestia": 1730687242,
@@ -168733,7 +172364,8 @@
         "ChristelleHerbagemembre": 1700543803,
         "ofontes": 1737478372,
         "Olivier31220": 1711172651,
-        "julthor": 1696719361,
+        "EricSamsa": 1759704567,
+        "julthor": 1759012260,
         "Kounty": 1744220845
       }
     },
@@ -168748,8 +172380,8 @@
     "RobinVanShoy": {
       "index": 9828,
       "owner_key": "FEgSaJZmjenKk3dc9PWdiyeifutgKbrRBVXtQ7HwjHLQ",
-      "balance": 348819,
-      "membership_expire_on": 1695851190,
+      "balance": 388505,
+      "membership_expire_on": 1725362687,
       "next_cert_issuable_on": 1686120582,
       "certs_received": {
         "Maryc": 1727839167,
@@ -168769,7 +172401,7 @@
     "Fukuchimio": {
       "index": 4740,
       "owner_key": "FEijuy96WEMYSdz2SjHBKY2wQAZJMfDf56t2vJksk6Ws",
-      "balance": 783673,
+      "balance": 823359,
       "membership_expire_on": 1703192363,
       "next_cert_issuable_on": 1671707001,
       "certs_received": {
@@ -168783,7 +172415,7 @@
     "jytou": {
       "index": 45,
       "owner_key": "FEkbc4BfJukSWnCU6Hed6dgwwTuPFTVdgz5LpL4iHr9J",
-      "balance": 974062,
+      "balance": 1013988,
       "membership_expire_on": 1710740972,
       "next_cert_issuable_on": 1691382843,
       "certs_received": {
@@ -168813,7 +172445,7 @@
     "RichardGhislaine": {
       "index": 6607,
       "owner_key": "FEuhmnB81z2kTNh5YaHgHCxtZ3tvgQ4fSX46vosWpkAx",
-      "balance": 394424,
+      "balance": 434110,
       "membership_expire_on": 1705361528,
       "next_cert_issuable_on": 1649344765,
       "certs_received": {
@@ -168834,9 +172466,9 @@
     "Agast": {
       "index": 12874,
       "owner_key": "FEv7V4XNUJtxppGvZgp7y5MfVngD3CzYjDcgfAT8d8Z1",
-      "balance": 112440,
+      "balance": 142126,
       "membership_expire_on": 1717558485,
-      "next_cert_issuable_on": 1692492740,
+      "next_cert_issuable_on": 1695549614,
       "certs_received": {
         "Beasejour": 1749724130,
         "Stella7": 1754633098,
@@ -168844,6 +172476,7 @@
         "Patmos": 1749724545,
         "Luxdemessis": 1749723316,
         "Bojenka58": 1750329666,
+        "Enric": 1758569543,
         "Hamidov51": 1749728360
       }
     },
@@ -168858,7 +172491,7 @@
     "MirV": {
       "index": 4652,
       "owner_key": "FF9g3TXm8RUGmFNSyLUUoEDZAHoNtKtQ2bErYhmzmbNz",
-      "balance": 878743,
+      "balance": 918429,
       "membership_expire_on": 1717812760,
       "next_cert_issuable_on": 1685962147,
       "certs_received": {
@@ -168876,9 +172509,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1648721922,
       "certs_received": {
-        "DelphineDietsch": 1693515024,
         "Ded": 1716735587,
-        "Sunrise": 1693980055,
         "Pascale72": 1702886832,
         "liberte55": 1698114762,
         "Diogox51": 1710819805,
@@ -168908,8 +172539,8 @@
     "Suki": {
       "index": 10041,
       "owner_key": "FFXLyzNKNmm2sSJ3CpU6WKe8k6uPnQkT2q41L4AE188u",
-      "balance": 355481,
-      "membership_expire_on": 1696545684,
+      "balance": 368367,
+      "membership_expire_on": 1725806492,
       "next_cert_issuable_on": 1670396703,
       "certs_received": {
         "salmaluna": 1729623411,
@@ -168923,7 +172554,7 @@
     "Raphael": {
       "index": 10553,
       "owner_key": "FFbyTwLp9gx8jR6vKPSZjrJcJyFRhzJ7xqJnVQ5NWyqh",
-      "balance": 294910,
+      "balance": 334596,
       "membership_expire_on": 1701042202,
       "next_cert_issuable_on": 1670572665,
       "certs_received": {
@@ -168938,7 +172569,7 @@
     "Mu84": {
       "index": 11145,
       "owner_key": "FFcK5nniEiWbEaDDNTL2xBBGRbozS4rT7K25HpNPz6x7",
-      "balance": 157891,
+      "balance": 91977,
       "membership_expire_on": 1703092410,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -168953,8 +172584,8 @@
     "CelestCU": {
       "index": 9797,
       "owner_key": "FFiaGjvcMbSey7JMhAQ8RwF2BnhRALrksDSNTKLJ6mcc",
-      "balance": 350937,
-      "membership_expire_on": 1695678834,
+      "balance": 377687,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "dch38": 1728094152,
@@ -168967,9 +172598,9 @@
     "Matthias": {
       "index": 2186,
       "owner_key": "FFo323Jy9CGryJ8H6VcimoCR2mhHRoez8suhNzSs1R77",
-      "balance": 943595,
+      "balance": 883281,
       "membership_expire_on": 1704475988,
-      "next_cert_issuable_on": 1691909167,
+      "next_cert_issuable_on": 1693815427,
       "certs_received": {
         "Fiorenza11": 1701811557,
         "Crystal": 1755414265,
@@ -168978,7 +172609,6 @@
         "ClaireMussault": 1699303033,
         "Celang": 1738457011,
         "Tania": 1720479522,
-        "ASHTARA": 1694818201,
         "marika8": 1702583718,
         "zadkiel": 1699553615,
         "Isabohin": 1741998874,
@@ -168992,9 +172622,9 @@
     "Efiletoile": {
       "index": 13458,
       "owner_key": "FFtCK2HKDaTQdec3hBPdYhsE6nsm4vVhYi7iqoxBP5T8",
-      "balance": 3204,
+      "balance": 42890,
       "membership_expire_on": 1724276428,
-      "next_cert_issuable_on": 1693539572,
+      "next_cert_issuable_on": 1693540229,
       "certs_received": {
         "PierreHarrewyn": 1755968324,
         "Camizot": 1755967973,
@@ -169006,14 +172636,17 @@
     "Micha": {
       "index": 10614,
       "owner_key": "FFvYimRzwNsKyXHopyoQsQWvHXCiGeeWiuARhjYGKUVs",
-      "balance": 145740,
-      "membership_expire_on": 1701123159,
-      "next_cert_issuable_on": 1691480583,
+      "balance": 72381,
+      "membership_expire_on": 1727635889,
+      "next_cert_issuable_on": 1696651070,
       "certs_received": {
         "Ghostdog": 1754809686,
+        "Randolf": 1758955709,
+        "ClaudiaR": 1757225301,
         "Josepeuta": 1752524884,
         "PepaCal": 1738617492,
         "luismo": 1739892623,
+        "Pippilotta": 1759384305,
         "Pit": 1732857242,
         "Montaraz": 1732770090,
         "Faquantharmonie": 1741147166,
@@ -169024,11 +172657,13 @@
         "crisleon": 1737017363,
         "Padme": 1735259236,
         "Verozen": 1755024753,
+        "seb2nor12": 1759350618,
         "Geli": 1754809686,
         "ICIELA": 1751529011,
         "Runa_81": 1740952178,
         "Isalanzarote": 1732754056,
         "loreak": 1732752103,
+        "Maribel": 1757387768,
         "Gclaire": 1741652168,
         "SolKolibri": 1737012557
       }
@@ -169036,7 +172671,7 @@
     "YazminLA": {
       "index": 11822,
       "owner_key": "FFvpzYJZSgUZ33xAWdkHTQ4cdFy23FqS8hzxZa1r15Cu",
-      "balance": 175564,
+      "balance": 215250,
       "membership_expire_on": 1708890527,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -169050,7 +172685,7 @@
     "titisand01": {
       "index": 10568,
       "owner_key": "FFxw9pxa3UFWUihUggSs3oHUfgGA4QNo28QRzw8fJ9EM",
-      "balance": 184148,
+      "balance": 217834,
       "membership_expire_on": 1701100221,
       "next_cert_issuable_on": 1691555391,
       "certs_received": {
@@ -169069,7 +172704,7 @@
     "ValeryGond": {
       "index": 7934,
       "owner_key": "FFzK1Lcme1drYXbhnLcUfPe6aoxxB1xDE5fmHfTXXgP4",
-      "balance": 530419,
+      "balance": 570105,
       "membership_expire_on": 1709071489,
       "next_cert_issuable_on": 1690720632,
       "certs_received": {
@@ -169086,7 +172721,7 @@
     "ClaireGL": {
       "index": 7310,
       "owner_key": "FG3tiqwq9ZL2tvMUKw7KWZB7UuEQqN8kcaPaw2BhQmzV",
-      "balance": 337625,
+      "balance": 377311,
       "membership_expire_on": 1711262381,
       "next_cert_issuable_on": 1663240109,
       "certs_received": {
@@ -169104,30 +172739,28 @@
     "VWAUMANS": {
       "index": 5712,
       "owner_key": "FGD8wTqLmr3YrVoDH9LLNWmTNX3F57ndP94ctx8XBonK",
-      "balance": 759345,
+      "balance": 762031,
       "membership_expire_on": 1724075126,
-      "next_cert_issuable_on": 1692614028,
+      "next_cert_issuable_on": 1696127286,
       "certs_received": {
+        "looie": 1759085132,
         "IsaM": 1708624844,
         "JusteAlex": 1704151418,
-        "BenjaminDAVID": 1695446591,
         "neo9": 1698966146,
         "Tell": 1710484347,
         "EmiRobin": 1708275596,
         "LibertyFran": 1702012588,
-        "thierry38": 1695460818,
+        "thierry38": 1758743371,
         "Unika": 1713938912,
-        "MSarrazin": 1701823060,
-        "JBM": 1695499906,
-        "LaurentM": 1695599518
+        "MSarrazin": 1701823060
       }
     },
     "adamscurtis": {
       "index": 11470,
       "owner_key": "FGJyX2b14m61akvcCZt2pJCxGQfwuk5RXfXkdUo9uDYQ",
-      "balance": 233774,
+      "balance": 279328,
       "membership_expire_on": 1704332111,
-      "next_cert_issuable_on": 1686726850,
+      "next_cert_issuable_on": 1694410571,
       "certs_received": {
         "Hugues35": 1738467693,
         "Cygogne22": 1754249015,
@@ -169140,15 +172773,16 @@
         "YANNIERRE": 1753132874,
         "Titus": 1746651250,
         "mariemanon": 1738697423,
-        "Fredlassave": 1741491634
+        "Fredlassave": 1741491634,
+        "Merlindoc": 1758146217
       }
     },
     "Nyttliv": {
       "index": 2773,
       "owner_key": "FGXxMVdQWXWZJ3LkqgRh25s8qeYd7xYgAQc5fk2Pg8pC",
-      "balance": 18757,
+      "balance": 54035,
       "membership_expire_on": 1712795580,
-      "next_cert_issuable_on": 1691314194,
+      "next_cert_issuable_on": 1696134058,
       "certs_received": {
         "Eli25": 1743747196,
         "AmNoh": 1724196201,
@@ -169187,7 +172821,6 @@
         "Permaterravie": 1740168731,
         "stephanoel": 1741641968,
         "psycotox80": 1716262213,
-        "Profil": 1695090480,
         "Misstic81": 1699084028
       }
     },
@@ -169214,7 +172847,7 @@
     "JambaudValerie": {
       "index": 13272,
       "owner_key": "FGhjsSuXgPRugZJnMxNpk1B4L7Mppp61BDrKy5qissw",
-      "balance": 62176,
+      "balance": 101862,
       "membership_expire_on": 1722274986,
       "next_cert_issuable_on": 1690945698,
       "certs_received": {
@@ -169228,7 +172861,7 @@
     "MichelT": {
       "index": 5226,
       "owner_key": "FGxjXsCvZpUXeUwoJvQhC9BP2Tgo3B5JDm4b3YAfUcXg",
-      "balance": 164375,
+      "balance": 204061,
       "membership_expire_on": 1699979079,
       "next_cert_issuable_on": 1692280585,
       "certs_received": {
@@ -169242,7 +172875,7 @@
     "MAULOVI": {
       "index": 9340,
       "owner_key": "FH3tLQeXmrAcYamxqKgnS8BLTqhk3S5bbAeDyjLxMRkd",
-      "balance": 153743,
+      "balance": 193429,
       "membership_expire_on": 1722181800,
       "next_cert_issuable_on": 1677404423,
       "certs_received": {
@@ -169273,7 +172906,7 @@
     "Loup13": {
       "index": 11762,
       "owner_key": "FHDHgS5zmYgajCzV5GzWdYmvpfMcNugHtHKXxzAMNfXw",
-      "balance": 198650,
+      "balance": 238336,
       "membership_expire_on": 1708301177,
       "next_cert_issuable_on": 1688349858,
       "certs_received": {
@@ -169297,7 +172930,7 @@
     "Venuzia69": {
       "index": 12332,
       "owner_key": "FHMSkuE38jir7LQk7cZ8kdzKJrU5RCftomzziGG6KxYZ",
-      "balance": 149520,
+      "balance": 189206,
       "membership_expire_on": 1712748202,
       "next_cert_issuable_on": 1683706188,
       "certs_received": {
@@ -169319,7 +172952,7 @@
     "danyblue": {
       "index": 12722,
       "owner_key": "FHPwgMoZ58VB41sn6EJY9L5vJHTwUxPBDbWLXgwoaic2",
-      "balance": 775068,
+      "balance": 814754,
       "membership_expire_on": 1716267617,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -169350,7 +172983,7 @@
     "IsalineG": {
       "index": 11276,
       "owner_key": "FHhVgfvr3MMeoQFHS7LtFCTmYuqUs178kUXUWJFNDwpc",
-      "balance": 201483,
+      "balance": 241169,
       "membership_expire_on": 1705451362,
       "next_cert_issuable_on": 1689833464,
       "certs_received": {
@@ -169366,11 +172999,25 @@
         "RomG": 1744044625
       }
     },
+    "LaurentBoutou": {
+      "index": 13499,
+      "owner_key": "FHnSRn4u12ywWdRY1JxiQB1P38hHgXYFjxEL45fdPCyM",
+      "balance": 77714,
+      "membership_expire_on": 1723827390,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Coidzikow": 1756076206,
+        "VeroniqueMaessen": 1756666362,
+        "SABine": 1756075741,
+        "SergeUme": 1757002160,
+        "Claudarc": 1756184426
+      }
+    },
     "DomiFLR": {
       "index": 9623,
       "owner_key": "FHnq3UisAsfiUkakoi8jz9GXcLmHy2z8P7DTeq4a42M7",
-      "balance": 365704,
-      "membership_expire_on": 1694942937,
+      "balance": 382792,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1664105311,
       "certs_received": {
         "PaulSavoielibre": 1726875056,
@@ -169398,9 +173045,9 @@
     "MaryseD": {
       "index": 10728,
       "owner_key": "FHtehtEnc5BCUZeLjoTpZQTXdQoE3EMrAwQN5eSE3BCR",
-      "balance": 414499,
-      "membership_expire_on": 1701012294,
-      "next_cert_issuable_on": 1693378116,
+      "balance": 479185,
+      "membership_expire_on": 1728047935,
+      "next_cert_issuable_on": 1696562732,
       "certs_received": {
         "AriahNarnia": 1733011281,
         "SionaJJJ": 1733184149,
@@ -169417,7 +173064,7 @@
     "Astera970": {
       "index": 5498,
       "owner_key": "FHwdaUhy67xjvA3DviS4SaFFCAY4fkNuyzkpKmxQGgAX",
-      "balance": 672099,
+      "balance": 710785,
       "membership_expire_on": 1699921386,
       "next_cert_issuable_on": 1691021043,
       "certs_received": {
@@ -169425,6 +173072,7 @@
         "WilfriedGuillemenet": 1753820992,
         "Coco46": 1754291531,
         "AngelS": 1737517373,
+        "Ely81": 1757662441,
         "Ciel": 1747457742
       }
     },
@@ -169455,15 +173103,17 @@
     "tinetine": {
       "index": 10789,
       "owner_key": "FJ4wcneJdw4xH9yo5n8aVRM6KL8qW1LGdyp2WAu1eR9E",
-      "balance": 237843,
+      "balance": 269229,
       "membership_expire_on": 1702139584,
       "next_cert_issuable_on": 1690868273,
       "certs_received": {
         "Carine888": 1733720601,
+        "BudFox": 1759796009,
         "AuroreMarie": 1733783146,
         "FrancoisFairon": 1733774443,
         "LaSoyeFee": 1733734849,
-        "fraisedetihange": 1733859787
+        "fraisedetihange": 1733859787,
+        "Mireilleplantessauvages": 1759307011
       }
     },
     "VirginiaWoolf": {
@@ -169516,8 +173166,8 @@
     "Amchar": {
       "index": 9642,
       "owner_key": "FJQLyWUNh6VnB9dFG9PnaNpAbqKDngDpbMGACXmuPRzk",
-      "balance": 362786,
-      "membership_expire_on": 1694520191,
+      "balance": 375602,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666012334,
       "certs_received": {
         "Nathaliefa": 1726720463,
@@ -169546,7 +173196,7 @@
     "TiffanyKalamityJane": {
       "index": 11520,
       "owner_key": "FJZ631emZKp9m9fUVxA2vJKCMGz22sVUkpkYWrceiKE6",
-      "balance": 585003,
+      "balance": 624689,
       "membership_expire_on": 1705515059,
       "next_cert_issuable_on": 1689082905,
       "certs_received": {
@@ -169566,9 +173216,9 @@
     "mardi11": {
       "index": 4854,
       "owner_key": "FJqcLvTF6rcx4FwxKHNdv6yxyYxUDULKeAbWLGyWwaud",
-      "balance": 714569,
+      "balance": 754255,
       "membership_expire_on": 1708955027,
-      "next_cert_issuable_on": 1686032786,
+      "next_cert_issuable_on": 1696239943,
       "certs_received": {
         "Chago": 1727581948,
         "Natalya71": 1731368199,
@@ -169583,8 +173233,8 @@
     "LECERFDominique": {
       "index": 10189,
       "owner_key": "FJzTPoNepmZwyrqsQxfPbBKzGPXgrs1d1Z6LcV4sdxPr",
-      "balance": 323167,
-      "membership_expire_on": 1699127904,
+      "balance": 342853,
+      "membership_expire_on": 1725827500,
       "next_cert_issuable_on": 1676953295,
       "certs_received": {
         "Feerique": 1730686033,
@@ -169597,7 +173247,7 @@
     "Trublion": {
       "index": 12334,
       "owner_key": "FK17m6bSKHrjixE1GkEdbhhRkHD1fHcTqW2oHepWN3he",
-      "balance": 148724,
+      "balance": 188410,
       "membership_expire_on": 1710875594,
       "next_cert_issuable_on": 1684293613,
       "certs_received": {
@@ -169619,7 +173269,7 @@
     "Dudaeterna": {
       "index": 13178,
       "owner_key": "FKB4T8WzEvkiBj1pobEWDKJ19uytqagtNovAhNCcm6st",
-      "balance": 83355,
+      "balance": 49201,
       "membership_expire_on": 1720716261,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -169633,7 +173283,7 @@
     "Leticia": {
       "index": 1939,
       "owner_key": "FKZzEppHg4L6UZsh6yXnFfG2RBDDySjm4ts9SqDjR8Vq",
-      "balance": 1550679,
+      "balance": 1590365,
       "membership_expire_on": 1723142728,
       "next_cert_issuable_on": 1691724145,
       "certs_received": {
@@ -169644,24 +173294,19 @@
         "AnneChaimbault": 1743403251,
         "Lys2703": 1725415289,
         "Matymama": 1708136851,
-        "CathyDebronde": 1695962954,
         "Plantalarose": 1707178267,
-        "Soyouz": 1696116942,
-        "Jihi": 1696116942,
-        "ASHTARA": 1694805906,
         "Lise": 1740454457,
         "LaurenceDavid": 1706843280,
         "SabineIsambert": 1698600680,
         "Aragorn": 1749009101,
         "annefreda": 1744082407,
-        "magicplanet88": 1741022074,
-        "SanjaAnanda": 1696118053
+        "magicplanet88": 1741022074
       }
     },
     "pytlin": {
       "index": 12396,
       "owner_key": "FKbHfXNLyMtVBLRFa46C7VWJRnWdhtSijE72zPP3cVzS",
-      "balance": 143106,
+      "balance": 182792,
       "membership_expire_on": 1708440931,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -169675,9 +173320,9 @@
     "MelliaGaia": {
       "index": 6028,
       "owner_key": "FKcNg92NQunZ3SUEezajn6LJQMbTYSEQkofaCN94SxF6",
-      "balance": 703519,
+      "balance": 743205,
       "membership_expire_on": 1718406814,
-      "next_cert_issuable_on": 1689909639,
+      "next_cert_issuable_on": 1694698066,
       "certs_received": {
         "Mariefleur": 1750718956,
         "licorne": 1745007621,
@@ -169706,7 +173351,7 @@
     "Marjo": {
       "index": 6396,
       "owner_key": "FKmFLQ5JMw5najnNeAnGV7hWYZ3WpDJ8Tv71L9b3dybc",
-      "balance": 431375,
+      "balance": 471061,
       "membership_expire_on": 1696815248,
       "next_cert_issuable_on": 1687269010,
       "certs_received": {
@@ -169754,8 +173399,8 @@
     "Micv": {
       "index": 9842,
       "owner_key": "FL9uvyfm68Jxv2VerBLouYbnkwfekb2o59VSctvMcd3E",
-      "balance": 347760,
-      "membership_expire_on": 1696373739,
+      "balance": 383134,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666427029,
       "certs_received": {
         "NathalieCatelin": 1727995143,
@@ -169768,9 +173413,9 @@
     "Lylie_Bulle": {
       "index": 11788,
       "owner_key": "FLBHM5o96D6iV9PrFxYEYQqGd5Jc1TydQ526UDFt25Pk",
-      "balance": 277082,
+      "balance": 301268,
       "membership_expire_on": 1707699706,
-      "next_cert_issuable_on": 1687945496,
+      "next_cert_issuable_on": 1696652188,
       "certs_received": {
         "SebastienCTL": 1742319002,
         "Malena58": 1751174720,
@@ -169783,6 +173428,7 @@
         "CecilePhoenix": 1751345567,
         "Melusoize": 1740339752,
         "YIKING": 1740376800,
+        "Christine1892": 1758143708,
         "s00999": 1749349115,
         "Shaypalgv": 1740378194,
         "Christie21160": 1742446269,
@@ -169798,8 +173444,8 @@
     "Antigone": {
       "index": 6668,
       "owner_key": "FLH9H3CkEA6G67J2wQtTPi9YuYdpi6bFRRaMTgC87nX1",
-      "balance": 624909,
-      "membership_expire_on": 1697219945,
+      "balance": 664395,
+      "membership_expire_on": 1726590622,
       "next_cert_issuable_on": 1642910591,
       "certs_received": {
         "GastonL": 1704615637,
@@ -169814,9 +173460,9 @@
     "BrunoCarone": {
       "index": 7899,
       "owner_key": "FLKdd6PzQVmRdwdCyzabNjjzheQKHNL7yFu3QHYC1FfT",
-      "balance": 426459,
+      "balance": 300332,
       "membership_expire_on": 1709305244,
-      "next_cert_issuable_on": 1682040910,
+      "next_cert_issuable_on": 1695724734,
       "certs_received": {
         "PhilippeGua53": 1726966846,
         "Forza_Mata": 1747509891,
@@ -169837,9 +173483,9 @@
     "Tinati": {
       "index": 8635,
       "owner_key": "FLKoQmPxa4UC2iDokNUDRcrSykCFzdiYLgCPQW7mADfq",
-      "balance": 413011,
+      "balance": 447697,
       "membership_expire_on": 1717969088,
-      "next_cert_issuable_on": 1689267036,
+      "next_cert_issuable_on": 1695003732,
       "certs_received": {
         "MADHU": 1733876585,
         "MaryBricteux": 1719195788,
@@ -169856,7 +173502,7 @@
     "MondeNeuf": {
       "index": 11924,
       "owner_key": "FLM1BgTHKRXL5VmASeSQJKtBiLi9gHuUdhcrTBaxeUSU",
-      "balance": 130733,
+      "balance": 120419,
       "membership_expire_on": 1708633158,
       "next_cert_issuable_on": 1680424102,
       "certs_received": {
@@ -169871,7 +173517,7 @@
     "Yeshe": {
       "index": 12938,
       "owner_key": "FLWC26x35aa4Ec7iMEL2U5QMS6KzCmgBsy7opFBtTUaN",
-      "balance": 66446,
+      "balance": 106132,
       "membership_expire_on": 1718492479,
       "next_cert_issuable_on": 1689838602,
       "certs_received": {
@@ -169886,9 +173532,9 @@
     "emboscada": {
       "index": 10399,
       "owner_key": "FLWJzM3y2h8N2BChdo1PLfypq2qJSwVNa21F37x55H53",
-      "balance": 94610,
-      "membership_expire_on": 1698346639,
-      "next_cert_issuable_on": 1687445610,
+      "balance": 83796,
+      "membership_expire_on": 1727288627,
+      "next_cert_issuable_on": 1696293022,
       "certs_received": {
         "Artesanatacto": 1740768545,
         "Wynfyd": 1731656633,
@@ -169933,7 +173579,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1660552124,
       "certs_received": {
-        "Anthonycormier": 1696742963,
         "Manoocha": 1704857595,
         "Chantal": 1705199201,
         "Riri": 1706818145,
@@ -169949,14 +173594,13 @@
         "pydaubord": 1712187332,
         "ChristopheRobine": 1704230394,
         "SarahAchalafin": 1698390128,
-        "GaiaBonheur": 1721242664,
-        "Celuiquicrelamehaute": 1696716518
+        "GaiaBonheur": 1721242664
       }
     },
     "Diego26": {
       "index": 12030,
       "owner_key": "FLjgZTaamWKtNGJb6sMExvmub5yX9KUkswdmbs1zac48",
-      "balance": 179261,
+      "balance": 160847,
       "membership_expire_on": 1710452686,
       "next_cert_issuable_on": 1688464034,
       "certs_received": {
@@ -169979,7 +173623,7 @@
     "jipitou": {
       "index": 2171,
       "owner_key": "FM1uSFaz1VSzL5a45cZFASYpbSWvYjVrHRc5obWyJNeA",
-      "balance": 1247545,
+      "balance": 1287231,
       "membership_expire_on": 1722313221,
       "next_cert_issuable_on": 1663653781,
       "certs_received": {
@@ -170002,7 +173646,7 @@
     "Aurora": {
       "index": 8995,
       "owner_key": "FMA99h1B71NZY3Anpe8esBcSVNmistMdYoJTupxgqeZy",
-      "balance": 72888,
+      "balance": 112574,
       "membership_expire_on": 1718889999,
       "next_cert_issuable_on": 1680404325,
       "certs_received": {
@@ -170020,7 +173664,7 @@
     "Maemae": {
       "index": 11681,
       "owner_key": "FMESK8Mo8DLGySNB75soKKEqhnUgkasYzzT5knJV745P",
-      "balance": 206913,
+      "balance": 246599,
       "membership_expire_on": 1707666173,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -170035,7 +173679,7 @@
     "ManonJagjeetkaur": {
       "index": 11983,
       "owner_key": "FMLU7PowKd22PSuNE6ZiLbbcJqpxiH6C2mdzteJ4b3Pw",
-      "balance": 181497,
+      "balance": 221183,
       "membership_expire_on": 1709386851,
       "next_cert_issuable_on": 1689064982,
       "certs_received": {
@@ -170043,7 +173687,8 @@
         "bienetreettao": 1741060074,
         "Josephine": 1740978076,
         "AtmaRajprem": 1740986576,
-        "Anne_Marquer": 1741910998
+        "Anne_Marquer": 1741910998,
+        "Susheela": 1757157959
       }
     },
     "Rolka": {
@@ -170057,7 +173702,7 @@
     "ken": {
       "index": 3120,
       "owner_key": "FMWM3EXyCchEivnN6S1KM2aHpDJdkpJWAoJHo6wR4Y1r",
-      "balance": 1247983,
+      "balance": 1284469,
       "membership_expire_on": 1720953364,
       "next_cert_issuable_on": 1670725692,
       "certs_received": {
@@ -170070,6 +173715,36 @@
         "steff": 1739280318
       }
     },
+    "Sebel1": {
+      "index": 13563,
+      "owner_key": "FMYWNpLvP4LTNdG7tV32wgmvKHuctQk48n2JScrNHsne",
+      "balance": 44770,
+      "membership_expire_on": 1724456907,
+      "next_cert_issuable_on": 1695112537,
+      "certs_received": {
+        "LaureHuber": 1757214875,
+        "Dracaufeu1990": 1756577065,
+        "Als_67": 1756340032,
+        "miel67": 1756800049,
+        "hazed": 1756771224,
+        "seb2nor12": 1756339214
+      }
+    },
+    "DenisH": {
+      "index": 13666,
+      "owner_key": "FMtWV5NFrwpdFnSmsmoi1cxH481fjBF8xBPrjPPubVSY",
+      "balance": 12936,
+      "membership_expire_on": 1726092269,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Julieb": 1758832637,
+        "MartineRivat": 1758148525,
+        "Phinou": 1757707466,
+        "rjblein": 1757711095,
+        "Malice26": 1757738087,
+        "MoniqueBlein": 1759022874
+      }
+    },
     "MarieP": {
       "index": 3393,
       "owner_key": "FMtj1wLdmeDMam6xoCasYsnmrAJsbzeHrzhN6mDeFG4E",
@@ -170089,14 +173764,13 @@
     "FREZA": {
       "index": 2462,
       "owner_key": "FMzLdfFWfTv1DaMb2T3XMrWLuHr17ZPif83cSKKQo7Wq",
-      "balance": 1279689,
+      "balance": 1219375,
       "membership_expire_on": 1708901281,
       "next_cert_issuable_on": 1693236071,
       "certs_received": {
         "JessyRipert": 1716409086,
         "dianto": 1716268867,
         "Soyouz": 1718422127,
-        "OlivierMaurice": 1694629598,
         "SarahAchalafin": 1716246514,
         "MireilleTouet": 1716251484,
         "psycotox80": 1716245377
@@ -170105,9 +173779,9 @@
     "Nakim": {
       "index": 12004,
       "owner_key": "FMzuMdqDbwTT5LqxnVVeWEVZsGP9uPtf7PKfHyJmH1RG",
-      "balance": 159687,
+      "balance": 156373,
       "membership_expire_on": 1710199746,
-      "next_cert_issuable_on": 1687532682,
+      "next_cert_issuable_on": 1695902400,
       "certs_received": {
         "susanarico": 1742078540,
         "Kouleurs": 1742027628,
@@ -170124,7 +173798,7 @@
     "ElricHovasse": {
       "index": 9343,
       "owner_key": "FN2tiXnXNCqYHkGtMsoKFE4PeDFyctWP2oRYe9Uo2Ak9",
-      "balance": 401003,
+      "balance": 440689,
       "membership_expire_on": 1719671805,
       "next_cert_issuable_on": 1692584689,
       "certs_received": {
@@ -170149,7 +173823,7 @@
     "LePhoenix70": {
       "index": 8189,
       "owner_key": "FN6JBybZL65JUhawGdPsdUgGbCe8hX3qBZHHRMyf31fd",
-      "balance": 477950,
+      "balance": 517636,
       "membership_expire_on": 1713903184,
       "next_cert_issuable_on": 1689938842,
       "certs_received": {
@@ -170180,7 +173854,7 @@
     "annievg": {
       "index": 3717,
       "owner_key": "FNAKgd32JmhPbwqHB8AEcS3xpY77GFmUnkkBrBdNViYa",
-      "balance": 1110990,
+      "balance": 1169676,
       "membership_expire_on": 1716555862,
       "next_cert_issuable_on": 1685072602,
       "certs_received": {
@@ -170201,7 +173875,7 @@
     "Daniellyson": {
       "index": 11290,
       "owner_key": "FNEVricG7W2BDMYSCx87h7LUJu2LvSRVfF4gFLCQiWEj",
-      "balance": 214524,
+      "balance": 254210,
       "membership_expire_on": 1705703774,
       "next_cert_issuable_on": 1686550238,
       "certs_received": {
@@ -170217,7 +173891,7 @@
     "LicorneG": {
       "index": 11764,
       "owner_key": "FNFFU2r3ddDqEaWDFrNpzQdTc5pM2sm243oyCvco5Fmj",
-      "balance": 203500,
+      "balance": 243186,
       "membership_expire_on": 1708815070,
       "next_cert_issuable_on": 1679126102,
       "certs_received": {
@@ -170231,13 +173905,14 @@
     "tereseta": {
       "index": 3855,
       "owner_key": "FNHUY3HWkPxPXKWFCf6pVRLcFnBW1FdTeEeCfS1SsJoH",
-      "balance": 80757,
+      "balance": 219585,
       "membership_expire_on": 1705662486,
-      "next_cert_issuable_on": 1684169659,
+      "next_cert_issuable_on": 1696322857,
       "certs_received": {
         "kapis": 1728531011,
         "xandraAritzkuren": 1735201913,
         "Manu_El": 1728009396,
+        "Ainat255": 1758133599,
         "carmela": 1749939924,
         "Aatma": 1745873613,
         "titix": 1747429813,
@@ -170252,14 +173927,15 @@
         "Bogart": 1707076677,
         "LI21": 1721667014,
         "Choco": 1727241807,
-        "JuanCapitan": 1695273236,
         "AnianaYpunto": 1732979569,
         "mae": 1725676136,
         "elmau": 1747379310,
         "Dixebral": 1726545692,
         "Poto": 1734118430,
+        "Folele": 1758746516,
         "scanlegentil": 1720144716,
         "Gamaliel": 1725911557,
+        "Sandrisha": 1757635394,
         "YOSOYLUZ": 1720920613,
         "VivienProuvot": 1721087374,
         "ATIKA": 1726504882,
@@ -170276,9 +173952,10 @@
         "Koldo": 1748917729,
         "Noxtan": 1733074305,
         "Rio": 1735197798,
+        "Runa_81": 1759524820,
         "ALEGRIAUNIVERSAL": 1735342262,
+        "Energiadelcorazon": 1758057332,
         "Isalanzarote": 1724027415,
-        "MAC": 1696640079,
         "sarava": 1731620639,
         "Kol": 1728177886,
         "SyBr": 1712820328,
@@ -170288,9 +173965,9 @@
     "olive2ola": {
       "index": 3099,
       "owner_key": "FNJaaKFnkmPdBzTZL4bjxt1SKjmAq4twQUEw6bw4v6y2",
-      "balance": 954707,
+      "balance": 939053,
       "membership_expire_on": 1715698254,
-      "next_cert_issuable_on": 1684049549,
+      "next_cert_issuable_on": 1694337100,
       "certs_received": {
         "Arianehiver": 1745001495,
         "Happily": 1700329361,
@@ -170303,7 +173980,6 @@
         "Gaelducausse": 1720739613,
         "AliceCtln": 1701726785,
         "Nicolas_Boyer": 1747854661,
-        "LNlumi": 1695605427,
         "SyoulAnuanua": 1745984840,
         "Kream": 1738715762,
         "ZizouTP": 1749513760,
@@ -170316,13 +173992,19 @@
     "Loupdaame": {
       "index": 6517,
       "owner_key": "FNLB13K1PXKPyaLJELEHnHZC7A6EYj6m6XeAAyKggqqg",
-      "balance": 467684,
+      "balance": 507370,
       "membership_expire_on": 1720895858,
-      "next_cert_issuable_on": 1689410258,
+      "next_cert_issuable_on": 1696673944,
       "certs_received": {
         "ThaisSander": 1698712257,
+        "Berniebx": 1758483151,
+        "YugavanOrloff": 1757800499,
+        "MagaliRegent": 1757805356,
+        "Avalon": 1757826306,
         "Numerosympa": 1701850426,
         "Dionysos": 1698711456,
+        "Colaga": 1757797132,
+        "OdileJacquemet": 1758149149,
         "Lando": 1698778874,
         "Colvert": 1727987940,
         "Juju": 1698714807,
@@ -170340,7 +174022,7 @@
     "CorinneB": {
       "index": 11101,
       "owner_key": "FNNSKk7utHznnmcBWxdL886TJzuLWymp85rhafUYnvWX",
-      "balance": 323527,
+      "balance": 363213,
       "membership_expire_on": 1703713918,
       "next_cert_issuable_on": 1676061412,
       "certs_received": {
@@ -170364,7 +174046,7 @@
     "MarcHebert": {
       "index": 1612,
       "owner_key": "FNZJeis4oKVK6K71GXcywqL7A4uCBf2toxqNTaVR3AY6",
-      "balance": 784311,
+      "balance": 823997,
       "membership_expire_on": 1722432618,
       "next_cert_issuable_on": 1691148530,
       "certs_received": {
@@ -170386,7 +174068,7 @@
     "Amberle34500": {
       "index": 1889,
       "owner_key": "FNfsjYbxaFcHBUYp3pFw88UZ6WZfRR3x5aZZZVSVYq3E",
-      "balance": 884032,
+      "balance": 901718,
       "membership_expire_on": 1702923732,
       "next_cert_issuable_on": 1688804833,
       "certs_received": {
@@ -170402,9 +174084,9 @@
     "ofontes": {
       "index": 865,
       "owner_key": "FNiPNV5Exu65L15jxUDQWfqU9pWgeF8P8hf3ecSEKNme",
-      "balance": 392387,
+      "balance": 432073,
       "membership_expire_on": 1718037555,
-      "next_cert_issuable_on": 1692506687,
+      "next_cert_issuable_on": 1695473414,
       "certs_received": {
         "JC-MUNIER": 1722904060,
         "Lunaloca": 1731703132,
@@ -170416,7 +174098,7 @@
         "AurelienPiton": 1728238756,
         "Mariel": 1703399213,
         "CyrilCuisin": 1711596358,
-        "JulieBen": 1702523877,
+        "JulieBen": 1758330611,
         "Sylbok": 1735047457,
         "GaelleHerbert": 1698388806,
         "PiNguyen": 1737452754,
@@ -170430,7 +174112,7 @@
     "MartaFu": {
       "index": 11184,
       "owner_key": "FNjGDQTCKC5YkBX9owjQ6gMjpiAS6vTNyq7s5RTdPgou",
-      "balance": 67314,
+      "balance": 107000,
       "membership_expire_on": 1704660620,
       "next_cert_issuable_on": 1687226026,
       "certs_received": {
@@ -170447,17 +174129,17 @@
     "Sandrine-": {
       "index": 2481,
       "owner_key": "FNjUBtXh28tGkvUeGMbtCDeZZZBLrcDEfyjg8d9xamhi",
-      "balance": 871414,
-      "membership_expire_on": 1700338255,
-      "next_cert_issuable_on": 1690188709,
+      "balance": 911100,
+      "membership_expire_on": 1727098333,
+      "next_cert_issuable_on": 1695614957,
       "certs_received": {
-        "Alinerv": 1695233618,
         "fdrubigny": 1746731765,
+        "Georges_M_mbr": 1758070023,
         "NansCoCreator": 1701233735,
         "jef": 1732498073,
         "Fledoux83": 1702836141,
-        "NeyKrom": 1694848975,
-        "Magvr": 1698194264,
+        "Magvr": 1757387169,
+        "pfouque": 1759004720,
         "PorteduCiel": 1706297985,
         "Mathieuf": 1733786438,
         "lilithdu34": 1711043383,
@@ -170471,7 +174153,7 @@
     "EmiAp974": {
       "index": 8659,
       "owner_key": "FNyRuAZn6f8mEpSyPi2MqLKzVtoEQZLwUCDhZbycvARq",
-      "balance": 316416,
+      "balance": 356102,
       "membership_expire_on": 1713975166,
       "next_cert_issuable_on": 1686642792,
       "certs_received": {
@@ -170523,24 +174205,29 @@
     "Vy81": {
       "index": 6476,
       "owner_key": "FPCJisiriC7ctukj9uxUSVv5tRHx1GQypbeQYB5NLeuR",
-      "balance": 767537,
-      "membership_expire_on": 1698245092,
-      "next_cert_issuable_on": 1677740694,
+      "balance": 807223,
+      "membership_expire_on": 1727542054,
+      "next_cert_issuable_on": 1696402317,
       "certs_received": {
         "SvetRuskof": 1703137331,
         "ISABELLEDR": 1703115883,
         "Danysa": 1702944144,
         "MarieL81": 1740783894,
+        "Meritxell81": 1759519174,
         "ACJune81": 1740164566,
         "NadineGS": 1703279363,
         "ATIKA": 1703102989,
-        "Choukie": 1703142158
+        "lomwi": 1759373268,
+        "stinchri": 1759465347,
+        "BeaOups81": 1759458324,
+        "Choukie": 1703142158,
+        "Chouan": 1759445173
       }
     },
     "EmiLheureux": {
       "index": 11173,
       "owner_key": "FPCRW2veCF74xJaZexW81qpyJJNhvcAXxLBvLRLuPyvA",
-      "balance": 433214,
+      "balance": 472900,
       "membership_expire_on": 1704840362,
       "next_cert_issuable_on": 1677040620,
       "certs_received": {
@@ -170556,7 +174243,7 @@
     "Lafeedesmers": {
       "index": 13029,
       "owner_key": "FPN7SzpHcRAzZ2zQxD1mphmKH68q9PCHB2Nof467tcBj",
-      "balance": 75384,
+      "balance": 115070,
       "membership_expire_on": 1719595552,
       "next_cert_issuable_on": 1692696370,
       "certs_received": {
@@ -170571,7 +174258,7 @@
     "gbalbosole": {
       "index": 8336,
       "owner_key": "FPPpS6Beu2K5eTSyWN1xFUG1e3iSCxdZShP1R2VCY64d",
-      "balance": 457537,
+      "balance": 497223,
       "membership_expire_on": 1718024387,
       "next_cert_issuable_on": 1666492541,
       "certs_received": {
@@ -170585,7 +174272,7 @@
     "rupestre": {
       "index": 11651,
       "owner_key": "FPWDNt4opfH1Rzb3wvx5VrYFbsEW4XgxBP2YJD3hxaqC",
-      "balance": 208827,
+      "balance": 248013,
       "membership_expire_on": 1706501313,
       "next_cert_issuable_on": 1679489615,
       "certs_received": {
@@ -170608,7 +174295,7 @@
     "veronique": {
       "index": 10396,
       "owner_key": "FPjqvNfhUZFNKzhnrC91XKpBFtWqgVsTCZ7dVYP6Yg3u",
-      "balance": 310400,
+      "balance": 350086,
       "membership_expire_on": 1700065831,
       "next_cert_issuable_on": 1675074116,
       "certs_received": {
@@ -170622,7 +174309,7 @@
     "ArenoFontaine": {
       "index": 10905,
       "owner_key": "FPoh5GeMRGTiXUXLuvoSzRDhFh5uHzT9bNhvzrgQQKS7",
-      "balance": 446630,
+      "balance": 486316,
       "membership_expire_on": 1702914095,
       "next_cert_issuable_on": 1691982485,
       "certs_received": {
@@ -170640,7 +174327,7 @@
     "Ivoire84": {
       "index": 6599,
       "owner_key": "FPs8CAnFNEvxMknQrsdW97ePhjXY3FX4UpE73YkkhnYD",
-      "balance": 553094,
+      "balance": 592780,
       "membership_expire_on": 1699439489,
       "next_cert_issuable_on": 1674286467,
       "certs_received": {
@@ -170654,6 +174341,20 @@
         "grenadille": 1715311547
       }
     },
+    "NadineLFA": {
+      "index": 13516,
+      "owner_key": "FPwdQhzoZFo7UnV4RJMEcrksZSjynpCaF6N4MKgwc9b1",
+      "balance": 248575,
+      "membership_expire_on": 1725490127,
+      "next_cert_issuable_on": 1694157284,
+      "certs_received": {
+        "Maaude09": 1757048145,
+        "AgnesdArpajon": 1757184566,
+        "Flore66": 1757140172,
+        "PatouneM91": 1757197385,
+        "Caro91": 1757093370
+      }
+    },
     "Batlebatt": {
       "index": 2341,
       "owner_key": "FPx61Q4NjJuT7UKKAN1qVhGYorQdHLe6pKmgbksTmSZz",
@@ -170681,9 +174382,9 @@
     "AimeeD73": {
       "index": 11147,
       "owner_key": "FPzk3K9b3zqXL6pDzFwP7HRUYaYntYWpDxB6yFxYRCYp",
-      "balance": 251391,
+      "balance": 291077,
       "membership_expire_on": 1704307450,
-      "next_cert_issuable_on": 1687011413,
+      "next_cert_issuable_on": 1693898388,
       "certs_received": {
         "puce": 1736212245,
         "Flocon": 1736150237,
@@ -170705,7 +174406,7 @@
     "Roselinesnault": {
       "index": 11400,
       "owner_key": "FQ3tzfjykthqAsfGGjcH6a948Gj8ThKPMMLcM4xDLAWn",
-      "balance": 248093,
+      "balance": 287779,
       "membership_expire_on": 1705242240,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -170722,9 +174423,9 @@
     "MikaNanda": {
       "index": 13230,
       "owner_key": "FQ5wk2U7nQCU25CvRwAwDS6MbDm4g1FHgisscV8NggCj",
-      "balance": 233900,
+      "balance": 273586,
       "membership_expire_on": 1721172377,
-      "next_cert_issuable_on": 1693289473,
+      "next_cert_issuable_on": 1693899253,
       "certs_received": {
         "Sylharmonie": 1752935984,
         "fredo79": 1753431109,
@@ -170739,7 +174440,7 @@
     "poupinette": {
       "index": 1126,
       "owner_key": "FQDruEVpn4vRk4sCY2qC2DcpAD4a2S1Psx466LfmTh2W",
-      "balance": 1765227,
+      "balance": 1804913,
       "membership_expire_on": 1722111388,
       "next_cert_issuable_on": 1647598165,
       "certs_received": {
@@ -170767,7 +174468,7 @@
     "Chabeauter": {
       "index": 7923,
       "owner_key": "FQLosST8b75NtcBENWMfp5vCki2oGKNjGXR8nY6YUwBV",
-      "balance": 445970,
+      "balance": 485656,
       "membership_expire_on": 1710980677,
       "next_cert_issuable_on": 1689988571,
       "certs_received": {
@@ -170777,6 +174478,7 @@
         "ChristopheD": 1714373795,
         "Babaroun": 1714699982,
         "Alphla": 1714362338,
+        "florian": 1758452458,
         "Sottay": 1714438539,
         "LudovicMJC": 1738367994,
         "Yolan": 1738172876
@@ -170808,7 +174510,7 @@
     "momarie": {
       "index": 10128,
       "owner_key": "FQNgp8PBaEeKyHGx7MgeZZcFV3tunPg4Lisw6ieg5dXD",
-      "balance": 281621,
+      "balance": 321307,
       "membership_expire_on": 1698275660,
       "next_cert_issuable_on": 1671027478,
       "certs_received": {
@@ -170823,8 +174525,8 @@
     "ArnaudLuc": {
       "index": 6198,
       "owner_key": "FQP47sEkQrNDmCLtSnkQ4Sycjpp8XVS2Y59BpvkkCXio",
-      "balance": 597274,
-      "membership_expire_on": 1696252155,
+      "balance": 601570,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1688571309,
       "certs_received": {
         "PatrickEtreSouverain": 1700877638,
@@ -170856,13 +174558,11 @@
     "Miryanon": {
       "index": 5057,
       "owner_key": "FQai1rqtJpjsmqUW7eiWkhiDhNYVamG7QoHZtGizgUSt",
-      "balance": 990885,
-      "membership_expire_on": 1712251944,
+      "balance": 1028415,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1682087061,
       "certs_received": {
         "AlainLebrun": 1743898240,
-        "LuciaKorosiova": 1696582312,
-        "MarieLaureGruauGeslot": 1696233942,
         "PhilippeGruau": 1697338550,
         "NicolasBriet": 1743807833,
         "Sebeq33": 1743611420
@@ -170871,7 +174571,7 @@
     "Alcalive": {
       "index": 2623,
       "owner_key": "FQdAJyePqGipp1FPRzqpEVaZeezuWkRjpcWBYpzE999k",
-      "balance": 720554,
+      "balance": 760240,
       "membership_expire_on": 1714997437,
       "next_cert_issuable_on": 1647227796,
       "certs_received": {
@@ -170880,14 +174580,14 @@
         "RayondeSoleil": 1701400158,
         "ji_emme": 1701667678,
         "PlumeBleue": 1698947603,
-        "Zoriko-J": 1694922884,
+        "Zoriko-J": 1758109869,
         "Pichotilha": 1703270231
       }
     },
     "Funny": {
       "index": 6977,
       "owner_key": "FQg7GBseuEeJi3MNAGwhGYWGw6dmvvqhpvxxtYxRsD7a",
-      "balance": 587178,
+      "balance": 626864,
       "membership_expire_on": 1707582741,
       "next_cert_issuable_on": 1668919442,
       "certs_received": {
@@ -170909,7 +174609,7 @@
     "Gaiabio": {
       "index": 11411,
       "owner_key": "FQkz5rPrTtU8XTAtTGjqASjNNfjCdJ7XUKzAUaAhpkUW",
-      "balance": 227134,
+      "balance": 266820,
       "membership_expire_on": 1706207825,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -170924,7 +174624,7 @@
     "AbbyL": {
       "index": 5326,
       "owner_key": "FQp9Vm1Nviy4jK8JkavBS5gkQCSx9HHEBd4nX3dJEQMc",
-      "balance": 841449,
+      "balance": 881135,
       "membership_expire_on": 1715036085,
       "next_cert_issuable_on": 1676128070,
       "certs_received": {
@@ -170958,7 +174658,7 @@
     "Lucastor": {
       "index": 10495,
       "owner_key": "FQuHtwCgW5FqucT5zgc5YVzMu9LDtLm6uuYFAR4xDTD4",
-      "balance": 191419,
+      "balance": 231105,
       "membership_expire_on": 1699888255,
       "next_cert_issuable_on": 1689000195,
       "certs_received": {
@@ -171013,7 +174713,7 @@
     "mi-ange": {
       "index": 13396,
       "owner_key": "FRFzo2sVkm1Qtht3fMrsMqYyxN48sESHs2LtPCWKgHrG",
-      "balance": 12916,
+      "balance": 52602,
       "membership_expire_on": 1723860197,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -171027,7 +174727,7 @@
     "Filoxe": {
       "index": 13153,
       "owner_key": "FRWLUmRL9Tg6BBbegnTFG2a4YQeLyqsMhBf1QZGqNbU2",
-      "balance": 77332,
+      "balance": 117018,
       "membership_expire_on": 1720392659,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -171041,7 +174741,7 @@
     "Fab34980": {
       "index": 11813,
       "owner_key": "FRaPNFLdeVqT11zSUhCpQ3HxdCyH93uju3wPDTckUHU2",
-      "balance": 195264,
+      "balance": 234950,
       "membership_expire_on": 1708874001,
       "next_cert_issuable_on": 1686739167,
       "certs_received": {
@@ -171056,22 +174756,18 @@
     "Mariposa": {
       "index": 5972,
       "owner_key": "FRmiFfLCWo6D1RF2NEJHC8BnqbDx6gxzVhSB4q2aTpAd",
-      "balance": 714001,
-      "membership_expire_on": 1695240538,
+      "balance": 735361,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1652322873,
       "certs_received": {
         "Ghadjo": 1703387242,
-        "karhoog": 1698888553,
-        "Neptune1306": 1696009492,
-        "Vievillejp": 1696011055,
-        "loulouchantes": 1696009176,
-        "SalleeJo": 1696011375
+        "karhoog": 1698888553
       }
     },
     "Craps73": {
       "index": 6737,
       "owner_key": "FRpfP1hd41x55BTLb2SckbvFbm3XKp9kFsSr3215mEaE",
-      "balance": 753257,
+      "balance": 792943,
       "membership_expire_on": 1699828399,
       "next_cert_issuable_on": 1690957881,
       "certs_received": {
@@ -171099,7 +174795,7 @@
     "diogocsc": {
       "index": 11731,
       "owner_key": "FRzRaCmTxxKE8tJKUTc9zJdWehsvvoQU4mTEtqh3p6YD",
-      "balance": 138883,
+      "balance": 178569,
       "membership_expire_on": 1707248453,
       "next_cert_issuable_on": 1688013211,
       "certs_received": {
@@ -171120,7 +174816,7 @@
     "ThierrybaladeG1": {
       "index": 12020,
       "owner_key": "FS7KQXUWmjJxdTQyC6UYLMdBbtpHV1CEDYwLE6PBqFxG",
-      "balance": 178320,
+      "balance": 218006,
       "membership_expire_on": 1710359532,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -171142,7 +174838,7 @@
     "Fleurdeschamps": {
       "index": 4010,
       "owner_key": "FSBquicJ6KVxZDfncXeVtQVnLBNbNq8X8UhpwNj9cgT1",
-      "balance": 631049,
+      "balance": 670735,
       "membership_expire_on": 1723892474,
       "next_cert_issuable_on": 1692409597,
       "certs_received": {
@@ -171160,7 +174856,7 @@
     "Tilmido7650": {
       "index": 12782,
       "owner_key": "FSC9fHdUxxndRYLfcawTTS3kwgs1C3o1A52iukXxoqVY",
-      "balance": 108256,
+      "balance": 147942,
       "membership_expire_on": 1716124906,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -171174,7 +174870,7 @@
     "MarieSophie": {
       "index": 11270,
       "owner_key": "FSG3ujvW52gfD4v5FooYjR8qCYa266pBbHygQvsY4yWd",
-      "balance": 255697,
+      "balance": 290883,
       "membership_expire_on": 1705131084,
       "next_cert_issuable_on": 1678137866,
       "certs_received": {
@@ -171197,10 +174893,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Miko58": {
+      "index": 13737,
+      "owner_key": "FSXmshkQGsAq7i5Z44jWQS9FzNnsjQLZRoFWK6RTKsT6",
+      "balance": 12312,
+      "membership_expire_on": 1727258930,
+      "next_cert_issuable_on": 1696579887,
+      "certs_received": {
+        "majo": 1758062799,
+        "Miguela": 1758569968,
+        "CleoL": 1759369725,
+        "Sigrid61": 1758172164,
+        "Ralf": 1758064546,
+        "MargoMallorca": 1758171885
+      }
+    },
     "Thierry347": {
       "index": 9986,
       "owner_key": "FSZUwAwJCN18WS5oc1AhdAkxsiuzUVU83mzZiC2NPPrP",
-      "balance": 313050,
+      "balance": 315736,
       "membership_expire_on": 1724548991,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -171222,7 +174933,7 @@
     "Dav119": {
       "index": 12978,
       "owner_key": "FSjXGnpwZCjkmfHqZM5r3s2BGjdjoHSSsnsR9GpXWJPk",
-      "balance": 148185,
+      "balance": 187871,
       "membership_expire_on": 1719192221,
       "next_cert_issuable_on": 1690351319,
       "certs_received": {
@@ -171238,7 +174949,7 @@
     "GAnnieC": {
       "index": 13263,
       "owner_key": "FSkdkMaVZ12QLt8B9ebNnPgvE42nVchaYYeuVHXGEfjh",
-      "balance": 36312,
+      "balance": 59458,
       "membership_expire_on": 1722038015,
       "next_cert_issuable_on": 1692234907,
       "certs_received": {
@@ -171253,14 +174964,16 @@
     "JulieEvrats": {
       "index": 11753,
       "owner_key": "FStdJbkMjuV6gs8p8P8fS6ukToqmtJFoev3gmB2o5g51",
-      "balance": 77600,
+      "balance": 165286,
       "membership_expire_on": 1708704861,
-      "next_cert_issuable_on": 1683086424,
+      "next_cert_issuable_on": 1696230869,
       "certs_received": {
+        "BOUbou007": 1759034374,
         "franmi": 1740419877,
         "AnnC57": 1740263604,
         "didseize": 1740275534,
         "Nathjeanson": 1740291189,
+        "Mmemonica": 1759295638,
         "MarieJacquet": 1740438238
       }
     },
@@ -171283,7 +174996,7 @@
     "thierrygirard": {
       "index": 10747,
       "owner_key": "FSydr9sKv1E9n9CzFfgTLenGoCg8bF4Mz416RTht4ing",
-      "balance": 394161,
+      "balance": 433847,
       "membership_expire_on": 1699922671,
       "next_cert_issuable_on": 1673606612,
       "certs_received": {
@@ -171299,7 +175012,7 @@
     "Maddy": {
       "index": 2753,
       "owner_key": "FTJABShT2uC6hdkwCgXvVEtmFLpkmpMfTW279dgiFgwg",
-      "balance": 1360116,
+      "balance": 1399802,
       "membership_expire_on": 1712490294,
       "next_cert_issuable_on": 1673927501,
       "certs_received": {
@@ -171313,35 +175026,31 @@
     "Julie": {
       "index": 3641,
       "owner_key": "FTKZt7LBgdRBj2DRTCMdq6QeZh2WtfR6qPf5NQ7AV1xG",
-      "balance": 1107391,
-      "membership_expire_on": 1695636852,
-      "next_cert_issuable_on": 1632812066,
+      "balance": 1133063,
+      "membership_expire_on": 0,
+      "next_cert_issuable_on": 0,
       "certs_received": {
-        "Nikos": 1695861924,
         "YoannMangue": 1749410735,
-        "Spyou": 1695960821,
-        "thomasensp": 1699577090,
-        "Sebeq33": 1695861924
+        "thomasensp": 1699577090
       }
     },
     "RitaWilson": {
       "index": 5753,
       "owner_key": "FTLofQ4MMjkZDSjCQtRfwAUJtBkYr9VTanNuvK3zDF7V",
-      "balance": 1713765,
+      "balance": 1833451,
       "membership_expire_on": 1724934059,
-      "next_cert_issuable_on": 1693449165,
+      "next_cert_issuable_on": 1695566996,
       "certs_received": {
         "Fiorenza11": 1701811557,
+        "Bich": 1758576149,
         "Crystal": 1756398453,
         "annicam": 1710219352,
         "Coidzikow": 1698794529,
         "ASHTARA": 1697369068,
-        "SylvieT": 1695777748,
+        "SylvieT": 1757231841,
         "CharlesCros": 1751401860,
         "marika8": 1717456627,
-        "EvaSorel": 1695741905,
-        "LaurenceDavid": 1695692305,
-        "Omkara": 1695742191,
+        "EvaSorel": 1756768005,
         "ChristinedelAude": 1711140605,
         "annefreda": 1715345330,
         "IsaDiavel": 1746408949
@@ -171350,7 +175059,7 @@
     "SophiePapillon": {
       "index": 13155,
       "owner_key": "FTRgAJVB6E45bJGXrW5QyX4p4pYkphmFmK58BcZhKF9L",
-      "balance": 51264,
+      "balance": 90950,
       "membership_expire_on": 1720696028,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -171374,7 +175083,7 @@
     "audleb": {
       "index": 11864,
       "owner_key": "FTV6aF4aZGP75L5e95qZNdKzj7Toi7afwqQTGStQ5HBa",
-      "balance": 198028,
+      "balance": 237714,
       "membership_expire_on": 1708278144,
       "next_cert_issuable_on": 1682841215,
       "certs_received": {
@@ -171405,7 +175114,7 @@
     "Jasmin": {
       "index": 11235,
       "owner_key": "FTmJiearCgmpDTZTcd8pZdN6MAujfHsAc5sn5Umgb4ZJ",
-      "balance": 242919,
+      "balance": 282605,
       "membership_expire_on": 1704495508,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -171435,7 +175144,7 @@
     "Hyperastre": {
       "index": 12601,
       "owner_key": "FTnU7qxwQRTp1AQXDGKy7Qg82NNdk9eoURbBH3ed9pRM",
-      "balance": 121752,
+      "balance": 161438,
       "membership_expire_on": 1715019944,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -171449,7 +175158,7 @@
     "GlouxJB": {
       "index": 1517,
       "owner_key": "FTsmzi5Hq3Y3cnVQLxERjKv32rGfBSMG4B5hsEsnAuZN",
-      "balance": 924846,
+      "balance": 964532,
       "membership_expire_on": 1719015610,
       "next_cert_issuable_on": 1660100680,
       "certs_received": {
@@ -171466,18 +175175,21 @@
     "Chouan": {
       "index": 6522,
       "owner_key": "FTuizYANUXotTao2SkyF65RtPRgqGgjbtU1DsYXVjoW",
-      "balance": 322076,
+      "balance": 331762,
       "membership_expire_on": 1706148816,
-      "next_cert_issuable_on": 1675485720,
+      "next_cert_issuable_on": 1696401973,
       "certs_received": {
         "Danysa": 1703355403,
+        "CHRISTIANE": 1759719377,
         "Myhia": 1738025118,
+        "Philibert": 1759463560,
         "NadineGS": 1705624863,
         "Meubleu": 1737745481,
         "Licorne6": 1703727577,
         "EnderWither": 1703648888,
         "Choukie": 1703965095,
-        "Nyttliv": 1703717613
+        "Nyttliv": 1703717613,
+        "Vy81": 1759445517
       }
     },
     "kyane": {
@@ -171491,7 +175203,7 @@
     "Selergo": {
       "index": 8525,
       "owner_key": "FTzHFcW32oCa4a4sWSbR23WKbXSpvDWzAMBiV4D6X6qY",
-      "balance": 468251,
+      "balance": 507937,
       "membership_expire_on": 1717716023,
       "next_cert_issuable_on": 1672841742,
       "certs_received": {
@@ -171508,8 +175220,8 @@
     "Sitifis": {
       "index": 3989,
       "owner_key": "FU1oVpCfX5N3SZy7SWTmtuBiA3kVGTRWg8Kd4NYe7nhP",
-      "balance": 1094794,
-      "membership_expire_on": 1694447243,
+      "balance": 1106542,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1658671281,
       "certs_received": {
         "noureddine31": 1721716865,
@@ -171522,9 +175234,9 @@
     "sylvainT": {
       "index": 5472,
       "owner_key": "FU7ipekv79XgASYFXQz6ZwwLLgKqRrrv4kKYrtiB25kq",
-      "balance": 731997,
+      "balance": 771683,
       "membership_expire_on": 1715356283,
-      "next_cert_issuable_on": 1675872731,
+      "next_cert_issuable_on": 1694604491,
       "certs_received": {
         "lou108": 1732952775,
         "SOROWE": 1702958709,
@@ -171535,14 +175247,13 @@
         "Cou-net": 1699142537,
         "Libreensoi": 1731489434,
         "Lilou05": 1733868855,
-        "ChoraMadera": 1696615602,
         "Metta": 1702865336
       }
     },
     "Netierras": {
       "index": 9196,
       "owner_key": "FU9derXxrkG4kAps65vLj8eN677TZAhbH5DqygbMdXSB",
-      "balance": 28749,
+      "balance": 68435,
       "membership_expire_on": 1722866679,
       "next_cert_issuable_on": 1675347259,
       "certs_received": {
@@ -171566,9 +175277,9 @@
     "Claudio26": {
       "index": 7204,
       "owner_key": "FUCypkfVcEBfXzXk7R7Lg26JFdeW14Uypz42omghsXTT",
-      "balance": 572093,
+      "balance": 611779,
       "membership_expire_on": 1705364543,
-      "next_cert_issuable_on": 1674697804,
+      "next_cert_issuable_on": 1696308762,
       "certs_received": {
         "Nounours26": 1750581986,
         "Puissancedivinenmarche": 1750394360,
@@ -171598,14 +175309,16 @@
     "Maia": {
       "index": 3567,
       "owner_key": "FUM6zkj8TMb2bvA9XHtyWPPJecsBi4D39D4kCMmF82Cm",
-      "balance": 622700,
+      "balance": 545646,
       "membership_expire_on": 1724239439,
-      "next_cert_issuable_on": 1692754432,
+      "next_cert_issuable_on": 1695995113,
       "certs_received": {
+        "Anthonycormier": 1756660676,
         "GenevLeb": 1748403779,
         "ClaireBrune": 1748382734,
         "DonQuiche": 1729637540,
         "Droudrou": 1701724007,
+        "CaroKro": 1759299572,
         "Marieleone": 1698385844,
         "steve": 1705985514,
         "Nelly86": 1749364729,
@@ -171623,7 +175336,7 @@
     "BrigitteNelly": {
       "index": 12281,
       "owner_key": "FUUm8FYPuKcVxUxcMDbheqLGiEPRrWDfykyXqjJNJTZ3",
-      "balance": 151660,
+      "balance": 155746,
       "membership_expire_on": 1711907550,
       "next_cert_issuable_on": 1686708796,
       "certs_received": {
@@ -171639,7 +175352,7 @@
     "JorickGAUTHIER": {
       "index": 7772,
       "owner_key": "FUdjZXycvYu4ZXzV8vSqrRgcTHKhd8eMXjCk4SJUTW5Q",
-      "balance": 521482,
+      "balance": 561168,
       "membership_expire_on": 1707055961,
       "next_cert_issuable_on": 1675570602,
       "certs_received": {
@@ -171660,9 +175373,9 @@
     "IsisKalinas": {
       "index": 9689,
       "owner_key": "FUhHvyFefqXp7NVxQaETCTePndG5U347Ah1r6T3nkHbU",
-      "balance": 273409,
+      "balance": 293095,
       "membership_expire_on": 1723519117,
-      "next_cert_issuable_on": 1682865140,
+      "next_cert_issuable_on": 1696162408,
       "certs_received": {
         "Veroniquez": 1726283063,
         "Patmoy": 1726133384,
@@ -171677,12 +175390,15 @@
     "CedricG": {
       "index": 12989,
       "owner_key": "FUmHjfnReYLh8Ho4FL8NAZs8mqmPRchn5baAbMfdZJzU",
-      "balance": 65456,
+      "balance": 105242,
       "membership_expire_on": 1717691567,
-      "next_cert_issuable_on": 1692939970,
+      "next_cert_issuable_on": 1696126760,
       "certs_received": {
+        "Papou": 1757540239,
+        "DomVe": 1758168785,
         "Krompo": 1748831949,
         "Steph41": 1749945324,
+        "Myosotis": 1757905498,
         "Maclockbinum": 1748831478,
         "Barbabulle73": 1748705802,
         "TheoVS": 1749791015,
@@ -171702,7 +175418,7 @@
     "j_Bernard_Vai": {
       "index": 508,
       "owner_key": "FUrRnbw9HtZy3x9weJgumr5iWBpGNHRG4Au2HmgKtpgA",
-      "balance": 1135403,
+      "balance": 1175089,
       "membership_expire_on": 1709823305,
       "next_cert_issuable_on": 1678808241,
       "certs_received": {
@@ -171713,17 +175429,36 @@
         "moincagranada": 1741680549
       }
     },
+    "Belerebel": {
+      "index": 13500,
+      "owner_key": "FUsWwMym1d2vNCtF2EUQbi1aQRfGcm1H147yWADj1yQu",
+      "balance": 74114,
+      "membership_expire_on": 1725034167,
+      "next_cert_issuable_on": 1695392949,
+      "certs_received": {
+        "Gregory": 1757470274,
+        "Bastien-29": 1756944495,
+        "Filou": 1756681603,
+        "Cleo59": 1756622147,
+        "Giselegarreau": 1756946620,
+        "pomal": 1757405291,
+        "DaRocha": 1756830030,
+        "CCecile": 1756677953
+      }
+    },
     "Luviam": {
       "index": 5922,
       "owner_key": "FUths75G6W6JxVQYWRg1yjxwrFrja5CyXLbp5FTJqG7L",
-      "balance": 563298,
+      "balance": 414984,
       "membership_expire_on": 1724456438,
-      "next_cert_issuable_on": 1693187419,
+      "next_cert_issuable_on": 1696485025,
       "certs_received": {
+        "feehalee": 1759535315,
         "EddyMannino": 1709232252,
         "thieARD07": 1698385222,
         "Francou42": 1740473023,
         "manguitou": 1698432184,
+        "EtK": 1757039978,
         "gaellemarcherat": 1698431941,
         "corelia": 1747293308,
         "arcenciel": 1742013106,
@@ -171737,7 +175472,7 @@
     "kikilulu": {
       "index": 6877,
       "owner_key": "FUuLjX6GmJdJiwh5ANC5wwgPrGfU8B7S66i69ekbsJVt",
-      "balance": 80379,
+      "balance": 68065,
       "membership_expire_on": 1702902013,
       "next_cert_issuable_on": 1692673694,
       "certs_received": {
@@ -171759,6 +175494,7 @@
         "Totoro": 1706409145,
         "Eric-Frodon86": 1744779440,
         "Eleonore": 1721529580,
+        "Bikoucel86": 1757707116,
         "Emilioleheros": 1720147990,
         "maritigrette": 1735346042
       }
@@ -171766,9 +175502,9 @@
     "Poutchy": {
       "index": 3028,
       "owner_key": "FUyL9Xten4ephnBvQSXbWDmaVs2zcFeMik9SC4jDVFL3",
-      "balance": 1325896,
+      "balance": 1380582,
       "membership_expire_on": 1721140596,
-      "next_cert_issuable_on": 1683801993,
+      "next_cert_issuable_on": 1696501531,
       "certs_received": {
         "MoniQ": 1716435293,
         "CarolineFrd": 1698364007,
@@ -171780,7 +175516,7 @@
     "Sietske": {
       "index": 12202,
       "owner_key": "FUzCZ5sSAyK1phEfTaPusAmGMfFSqoiyNjB2278WVVpA",
-      "balance": 237568,
+      "balance": 277254,
       "membership_expire_on": 1712003796,
       "next_cert_issuable_on": 1687685751,
       "certs_received": {
@@ -171799,9 +175535,9 @@
     "chane": {
       "index": 4784,
       "owner_key": "FUzgvFALRJsvakNyC7ErmR1enaFhQ6LRvsAGQsynQ7hP",
-      "balance": 1691387,
+      "balance": 1599673,
       "membership_expire_on": 1707575550,
-      "next_cert_issuable_on": 1657984319,
+      "next_cert_issuable_on": 1695535490,
       "certs_received": {
         "Bambou": 1712873382,
         "AmeHC": 1713826947,
@@ -171809,19 +175545,19 @@
         "Murmure": 1718988319,
         "JJP": 1728685498,
         "Florencefleur": 1738956338,
-        "ClaudeM": 1693678836,
         "Florane": 1707543561,
         "Agnes5629": 1715327293,
         "CorinneCoco": 1713825172,
         "Did-yeah": 1724585759,
         "lilithdu34": 1743225639,
-        "MatHC": 1713826368
+        "MatHC": 1713826368,
+        "Sandy": 1755390532
       }
     },
     "Heidiamarauna": {
       "index": 10676,
       "owner_key": "FV738e3BA3GPxG2ApM2wnH6mfr9UMTWbgXBCdYyCBFmb",
-      "balance": 366257,
+      "balance": 405943,
       "membership_expire_on": 1701609379,
       "next_cert_issuable_on": 1675153668,
       "certs_received": {
@@ -171838,7 +175574,7 @@
     "Petitepousse": {
       "index": 8662,
       "owner_key": "FVD1PuEQaycW9umCJ7cPEdhb5DyQ37eJ7EcjzXsy7u4H",
-      "balance": 599108,
+      "balance": 638794,
       "membership_expire_on": 1722034825,
       "next_cert_issuable_on": 1676443656,
       "certs_received": {
@@ -171850,6 +175586,20 @@
         "Aurore": 1719348975
       }
     },
+    "DidierHarmonie": {
+      "index": 13584,
+      "owner_key": "FVDdVPiZN1Lu1ebXxKxTs8UVC6JqSpcty6vECs7QLdQF",
+      "balance": 36238,
+      "membership_expire_on": 1726279387,
+      "next_cert_issuable_on": 1696053270,
+      "certs_received": {
+        "SophieDeprez": 1757956146,
+        "Domusol": 1758056148,
+        "etco": 1757989424,
+        "ElaineDana": 1757902008,
+        "ValTayie": 1757957784
+      }
+    },
     "Igor-MissTerre": {
       "index": 8745,
       "owner_key": "FVReDvCLfigbzrhvRPnXSTmAobVsXiMLVRPeo6iG2mQM",
@@ -171867,7 +175617,7 @@
     "nicoleC": {
       "index": 51,
       "owner_key": "FVUFRrk1K5TQGsY7PRLwqHgdHRoHrwb1hcucp4C2N5tD",
-      "balance": 1553163,
+      "balance": 1592849,
       "membership_expire_on": 1698479436,
       "next_cert_issuable_on": 1666996120,
       "certs_received": {
@@ -171890,9 +175640,9 @@
     "TCT60162": {
       "index": 11842,
       "owner_key": "FVYQW9iC82fZSgTZGcP5obKCPcUpzZmnvw6s2MRvuB7C",
-      "balance": 142622,
-      "membership_expire_on": 1708204129,
-      "next_cert_issuable_on": 1692189444,
+      "balance": 79908,
+      "membership_expire_on": 1727270704,
+      "next_cert_issuable_on": 1695544491,
       "certs_received": {
         "cyberio": 1740193221,
         "Mariekali": 1740287982,
@@ -171931,7 +175681,7 @@
     "Mariep": {
       "index": 6597,
       "owner_key": "FVftZqrZHmMoAmtBDrWo8doyoU3YVNrWMPKHqYj7WeE",
-      "balance": 634187,
+      "balance": 673873,
       "membership_expire_on": 1700781223,
       "next_cert_issuable_on": 1670734093,
       "certs_received": {
@@ -171959,7 +175709,7 @@
     "Rudyicisurterre": {
       "index": 9735,
       "owner_key": "FVq4BPhVyfJKNNcQLeKCnfbqNji17e7TRU3RKbjRrtx8",
-      "balance": 318104,
+      "balance": 348790,
       "membership_expire_on": 1722800557,
       "next_cert_issuable_on": 1691900934,
       "certs_received": {
@@ -171970,13 +175720,14 @@
         "TribuRaph": 1727685400,
         "Nadia": 1756226984,
         "Teddy": 1727587972,
+        "Mmemonica": 1754340287,
         "CarmenCosta": 1727633575
       }
     },
     "KillaB": {
       "index": 7570,
       "owner_key": "FVqaBWE7tX8QL6YAnQZgSo6fQAtXbSuq7U3m8aXGaLum",
-      "balance": 534926,
+      "balance": 574612,
       "membership_expire_on": 1710381444,
       "next_cert_issuable_on": 1677586735,
       "certs_received": {
@@ -172024,7 +175775,7 @@
     "YolandeB05": {
       "index": 10791,
       "owner_key": "FVrcDyCCXJD7EutmrCJKC72xzvc8M9dFnEWEUS5uuLrY",
-      "balance": 321043,
+      "balance": 360729,
       "membership_expire_on": 1702308702,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -172054,9 +175805,9 @@
     "AutomneIndien": {
       "index": 13109,
       "owner_key": "FW6t92YgXeobFb9q3AeKwViLxZGyLempsEEbu9LFWyqE",
-      "balance": 88040,
+      "balance": 107626,
       "membership_expire_on": 1719314497,
-      "next_cert_issuable_on": 1691811936,
+      "next_cert_issuable_on": 1695886089,
       "certs_received": {
         "Couleurs": 1751945128,
         "LaFeeClochette": 1750872402,
@@ -172069,9 +175820,9 @@
     "pomal": {
       "index": 1514,
       "owner_key": "FW6u2wKNdixNGLKJs2nAJbHLR8kiXHTXfyRN4h1kY5Wa",
-      "balance": 1145980,
+      "balance": 1162666,
       "membership_expire_on": 1716329202,
-      "next_cert_issuable_on": 1657107258,
+      "next_cert_issuable_on": 1694362091,
       "certs_received": {
         "Gregory": 1719123957,
         "xaviercc": 1740599404,
@@ -172084,15 +175835,12 @@
     "HerrW": {
       "index": 3067,
       "owner_key": "FW9PhnPkgjppqTb787XmTHuAvVyKPVYaM4XpKhiA8MrA",
-      "balance": 1167096,
+      "balance": 1174642,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1682604469,
       "certs_received": {
         "Marc135": 1697657164,
         "TataYoyo": 1697657164,
-        "Puppi": 1696292006,
-        "Reumy": 1696481301,
-        "Aibai": 1696292006,
         "ZZR": 1697657465
       }
     },
@@ -172121,9 +175869,9 @@
     "Mauve": {
       "index": 13317,
       "owner_key": "FWGgxLyeudrJVPFkfBwyJHcKaGetQjEbBFKyeb5sYgNR",
-      "balance": 53568,
+      "balance": 90254,
       "membership_expire_on": 1721573981,
-      "next_cert_issuable_on": 1692965776,
+      "next_cert_issuable_on": 1696244348,
       "certs_received": {
         "Zap": 1753993947,
         "Dams": 1754238089,
@@ -172134,6 +175882,7 @@
         "Ananda": 1754956027,
         "Mer-lin": 1753410271,
         "Ninoushka": 1754083115,
+        "Efiletoile": 1756583129,
         "Biou": 1754014857
       }
     },
@@ -172148,9 +175897,9 @@
     "Antares13": {
       "index": 12297,
       "owner_key": "FWL6ggWTEqeizdDVGEXwVetXffFgve6bHyCjkE3j5Vm6",
-      "balance": 192624,
+      "balance": 232310,
       "membership_expire_on": 1711463962,
-      "next_cert_issuable_on": 1692675547,
+      "next_cert_issuable_on": 1696214929,
       "certs_received": {
         "pastachutta1964": 1743023736,
         "DomMembre": 1743031731,
@@ -172160,6 +175909,7 @@
         "ChloeS": 1750068645,
         "GeraldS": 1750068645,
         "Barbabulle73": 1743024322,
+        "Mohanad": 1756174473,
         "Hagakure88": 1743024525,
         "Maribel": 1756507501
       }
@@ -172175,7 +175925,7 @@
     "Murielle44": {
       "index": 9068,
       "owner_key": "FWcjHAgi95F25aLdr6neCVgPED1s7FPC5kGB5tLDAxMF",
-      "balance": 255802,
+      "balance": 295488,
       "membership_expire_on": 1718326868,
       "next_cert_issuable_on": 1669171847,
       "certs_received": {
@@ -172190,8 +175940,8 @@
     "Cecile-Marga": {
       "index": 9598,
       "owner_key": "FWgbrz1NZTfirL7MdvaL4xwzCKFHQndTERMgD1jd8S5R",
-      "balance": 364822,
-      "membership_expire_on": 1694821187,
+      "balance": 380842,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1676697336,
       "certs_received": {
         "MicheleC": 1726852564,
@@ -172205,7 +175955,7 @@
     "doume": {
       "index": 12220,
       "owner_key": "FWh5ZahCVbh2Ed53fVY44LX4JKzKQHJyBU8z5XosqDVq",
-      "balance": 160200,
+      "balance": 199886,
       "membership_expire_on": 1707434476,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -172219,12 +175969,13 @@
     "MarieFrance31": {
       "index": 10160,
       "owner_key": "FWhRN9BSorAjgLxhvZQdaoxij2cJApPpbkR9pEigZ5pD",
-      "balance": 266544,
+      "balance": 306230,
       "membership_expire_on": 1724808888,
-      "next_cert_issuable_on": 1689953373,
+      "next_cert_issuable_on": 1694758197,
       "certs_received": {
         "Eliska31": 1730180809,
         "haddock": 1730455135,
+        "SittingSimon": 1759613308,
         "Essitam": 1728672708,
         "Bea34": 1728664753,
         "MrViguier": 1728672708,
@@ -172239,8 +175990,8 @@
     "Jana": {
       "index": 10637,
       "owner_key": "FWqP4Jxcqoz7crcymVbFPsvytahsuuMAyNjCyFnJECYw",
-      "balance": 156815,
-      "membership_expire_on": 1699661490,
+      "balance": 158501,
+      "membership_expire_on": 1727001521,
       "next_cert_issuable_on": 1683507258,
       "certs_received": {
         "roberplantas": 1733025919,
@@ -172261,8 +176012,8 @@
     "Aime": {
       "index": 9885,
       "owner_key": "FX4RxBARphe8nqRDobjZmNeV8qES9fegaBNMRZbGMZvL",
-      "balance": 104583,
-      "membership_expire_on": 1695561955,
+      "balance": 44269,
+      "membership_expire_on": 1726620409,
       "next_cert_issuable_on": 1685625600,
       "certs_received": {
         "heomonde": 1728009703,
@@ -172275,9 +176026,9 @@
     "Monok": {
       "index": 2876,
       "owner_key": "FX4u3HNh1x23tCsK5oKcnEmU7eMYjpPPxJgBCm7vCxAf",
-      "balance": 385237,
-      "membership_expire_on": 1699796796,
-      "next_cert_issuable_on": 1684388070,
+      "balance": 424923,
+      "membership_expire_on": 1726523066,
+      "next_cert_issuable_on": 1695038895,
       "certs_received": {
         "GENEV": 1733387692,
         "Monique2605": 1733387982,
@@ -172289,8 +176040,8 @@
     "KarlPrescott": {
       "index": 4474,
       "owner_key": "FXDCu18ZCkvEjJFYRfSqYpqPmfgAoQ961me6nUvtniW3",
-      "balance": 958466,
-      "membership_expire_on": 1699160226,
+      "balance": 988152,
+      "membership_expire_on": 1726021130,
       "next_cert_issuable_on": 1679461336,
       "certs_received": {
         "Beasejour": 1737873129,
@@ -172316,8 +176067,8 @@
     "ChanaChan": {
       "index": 9366,
       "owner_key": "FXGT9kL7EYe3QZDwCsYoLeJEeVJEAcX7sUG2YQXd2Axq",
-      "balance": 386787,
-      "membership_expire_on": 1721404567,
+      "balance": 426473,
+      "membership_expire_on": 1721409248,
       "next_cert_issuable_on": 1690984045,
       "certs_received": {
         "Amiel": 1724834636,
@@ -172342,7 +176093,7 @@
     "CHANTALE": {
       "index": 5940,
       "owner_key": "FXMf23hnkFBzFiAv16K4f4kq1Lk5HaXbrcbQgiTjdxNo",
-      "balance": 698169,
+      "balance": 737855,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1680402122,
       "certs_received": {
@@ -172359,7 +176110,7 @@
     "bassilian": {
       "index": 10750,
       "owner_key": "FXSWKfKpETD48iZMFAUmpfc8uQUmqNwnimz3J1mtRARk",
-      "balance": 184161,
+      "balance": 192847,
       "membership_expire_on": 1701720022,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -172374,7 +176125,7 @@
     "Ginger": {
       "index": 1408,
       "owner_key": "FXSjp91VB42KSnynHnHjdzHdZjgvVFoB3U65uYVffvre",
-      "balance": 1801077,
+      "balance": 1840763,
       "membership_expire_on": 1699098866,
       "next_cert_issuable_on": 1667766306,
       "certs_received": {
@@ -172399,7 +176150,7 @@
     "Evydanse": {
       "index": 6504,
       "owner_key": "FXbwPBYj4aW4kgGo1SNms4vLZNYKbUmmp5RNa1ovvK23",
-      "balance": 747691,
+      "balance": 787377,
       "membership_expire_on": 1702659002,
       "next_cert_issuable_on": 1677848928,
       "certs_received": {
@@ -172424,7 +176175,7 @@
     "Agnesa": {
       "index": 6384,
       "owner_key": "FXxb2nNqvqh2gmUWziM5DeQqgdJH9Wd4FbopvMWJKGJP",
-      "balance": 596697,
+      "balance": 636383,
       "membership_expire_on": 1707329647,
       "next_cert_issuable_on": 1690769929,
       "certs_received": {
@@ -172469,18 +176220,20 @@
     "captain": {
       "index": 8146,
       "owner_key": "FY4tHT4FL4ozSwhHX6o4BbzJYq1j4QVMaQGqX9d3UBET",
-      "balance": 496103,
+      "balance": 535789,
       "membership_expire_on": 1711200179,
-      "next_cert_issuable_on": 1679915134,
+      "next_cert_issuable_on": 1695365728,
       "certs_received": {
         "CaroleBroutin": 1716143201,
         "Lisa34": 1738746705,
+        "Mmu34": 1757808072,
         "droopy": 1716169336,
         "Helene-petiteriviere": 1727023787,
         "NDEPLOT": 1715409154,
         "Petitcolin": 1716440116,
         "Mikhaella3448": 1715836865,
         "toutestjoli34": 1729058121,
+        "Eauvive": 1757290182,
         "franktransition34": 1716220626
       }
     },
@@ -172495,9 +176248,9 @@
     "LISAZAZA": {
       "index": 4163,
       "owner_key": "FYDWgPy4YeHwxborUzLeZoujWPGUXfrL6j6kK1GJkXEE",
-      "balance": 1172151,
+      "balance": 1228980,
       "membership_expire_on": 1708044088,
-      "next_cert_issuable_on": 1688151003,
+      "next_cert_issuable_on": 1696529196,
       "certs_received": {
         "hibiscus11": 1731003856,
         "LolieRu": 1729751331,
@@ -172512,10 +176265,11 @@
     "CatherineBerdal": {
       "index": 9836,
       "owner_key": "FYLuL8rfg9B7H9X1vPjyeKBznjiv3zbhkGbS4FzFS1ec",
-      "balance": 202660,
+      "balance": 232346,
       "membership_expire_on": 1721779752,
-      "next_cert_issuable_on": 1691071000,
+      "next_cert_issuable_on": 1695301224,
       "certs_received": {
+        "gberdal": 1758081854,
         "Icaunaise": 1728065835,
         "Kimoto": 1727722065,
         "BHT": 1730356633,
@@ -172525,7 +176279,9 @@
         "Laulau77": 1727904979,
         "Chamax": 1727726486,
         "Chene": 1728106117,
+        "LNC89": 1758143182,
         "YvesP": 1746653523,
+        "s00999": 1758330226,
         "Smayah": 1727723440,
         "Ninette89": 1743793087
       }
@@ -172533,14 +176289,13 @@
     "Koldo": {
       "index": 5181,
       "owner_key": "FYPH8ZUPB9B4QFUYSXZoZZVpqH8rW6K7Pp7pPs8yccxJ",
-      "balance": 218402,
+      "balance": 259288,
       "membership_expire_on": 1708218798,
       "next_cert_issuable_on": 1688830628,
       "certs_received": {
         "kapis": 1745196051,
         "Jeratik": 1721320609,
         "Cordeliaze": 1704660706,
-        "mluque71": 1694476426,
         "Gery": 1719192116,
         "salmaluna": 1730083208,
         "carmela": 1749168667,
@@ -172550,7 +176305,6 @@
         "EricSIMON": 1708761699,
         "Nekane": 1721033485,
         "lanawin": 1712190833,
-        "LaCasaGran": 1694653006,
         "Tulsi": 1737907080,
         "sheveck": 1751229405,
         "timetale": 1714679757,
@@ -172575,7 +176329,6 @@
         "brufaganya": 1719191495,
         "Sophie_L": 1725391355,
         "killerkawasaki": 1725575413,
-        "Wellno1": 1694475346,
         "llanero": 1707555777,
         "laIsa": 1710641632,
         "AmaNacer": 1744533612,
@@ -172583,9 +176336,7 @@
         "tereseta": 1747212859,
         "Rio": 1697701432,
         "ElenaMavida": 1724179463,
-        "SurfinMaya": 1694855067,
         "Nadou": 1723537087,
-        "urkobein": 1694596017,
         "MAC": 1751685798,
         "sarava": 1722398290,
         "Amparo": 1710537320,
@@ -172595,7 +176346,7 @@
     "lovol": {
       "index": 4924,
       "owner_key": "FYU7S6dXe2ZdJyPAQKsfgf74nzvJprCT2XFX1wFKEpZS",
-      "balance": 100242,
+      "balance": 145128,
       "membership_expire_on": 1715959255,
       "next_cert_issuable_on": 1693308580,
       "certs_received": {
@@ -172604,9 +176355,11 @@
         "Sorgentini": 1749117371,
         "Helenep": 1737952210,
         "SamuelPabloAlmonacid": 1747468776,
+        "Effelmandy": 1756502200,
         "JerryBB": 1747892268,
         "Elariel": 1747485442,
         "Betty": 1753444393,
+        "LucasSebastianPerez": 1756268729,
         "Monik9366": 1748853412,
         "BernardJoseph": 1747876844,
         "littlegreg": 1747946372,
@@ -172616,11 +176369,10 @@
     "Cirelly": {
       "index": 312,
       "owner_key": "FYUrYgVcF9FHeQQkaAAGKGrhkcNvcD87tDWURvBeQV5A",
-      "balance": 1547586,
-      "membership_expire_on": 1694703414,
+      "balance": 1570084,
+      "membership_expire_on": 1727701948,
       "next_cert_issuable_on": 1671416704,
       "certs_received": {
-        "SophSav": 1696464198,
         "Anneuh": 1726938374,
         "Leon": 1752345527,
         "Juliette": 1752345527,
@@ -172648,7 +176400,7 @@
     "SisiV": {
       "index": 10333,
       "owner_key": "FYwsaeC2wBtPsRXZ8e4UyU7tcnY7AbuTVFkw5xwgXMTw",
-      "balance": 322236,
+      "balance": 361922,
       "membership_expire_on": 1698674104,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -172663,7 +176415,7 @@
     "Jean-Claude": {
       "index": 12515,
       "owner_key": "FYx8gsDjPrx2UNjFtXtu3vpq3fEKyaLPCZ81VftcC3eB",
-      "balance": 239128,
+      "balance": 278814,
       "membership_expire_on": 1713656514,
       "next_cert_issuable_on": 1689086428,
       "certs_received": {
@@ -172695,10 +176447,11 @@
     "ODINIE": {
       "index": 10455,
       "owner_key": "FZ5cKg22EQ93vXsbfCoD5TCUaRoGLL3Dyo3GDzx6KRPM",
-      "balance": 259123,
-      "membership_expire_on": 1700356864,
+      "balance": 280309,
+      "membership_expire_on": 1727714550,
       "next_cert_issuable_on": 1686042290,
       "certs_received": {
+        "Oietortue": 1759274860,
         "Cristal38": 1731958315,
         "Francou42": 1731918866,
         "thierry38": 1731919818,
@@ -172710,9 +176463,9 @@
     "gilkidom": {
       "index": 12207,
       "owner_key": "FZ7hYUMrKiFmfeR8rkMGKbgKAHnGW4RztJjkFriCDoKc",
-      "balance": 166200,
+      "balance": 195886,
       "membership_expire_on": 1711931440,
-      "next_cert_issuable_on": 1683072694,
+      "next_cert_issuable_on": 1696157195,
       "certs_received": {
         "Pocahontas": 1743611420,
         "LucAndre": 1743611420,
@@ -172724,9 +176477,9 @@
     "VincentMercier": {
       "index": 7550,
       "owner_key": "FZBYSroYdXs1L37WbRMeB3STqXxFP8tNe8NgXa2u4j1m",
-      "balance": 508235,
+      "balance": 522422,
       "membership_expire_on": 1708184140,
-      "next_cert_issuable_on": 1684462816,
+      "next_cert_issuable_on": 1696254094,
       "certs_received": {
         "FrancisBperso": 1750743618,
         "RomainKornig": 1744655951,
@@ -172746,7 +176499,7 @@
     "Casper": {
       "index": 8708,
       "owner_key": "FZJJA9XreC8zMQvFmwgdLM6niztMVk3e7UsRzA1LRpMB",
-      "balance": 447973,
+      "balance": 487660,
       "membership_expire_on": 1713955148,
       "next_cert_issuable_on": 1692860445,
       "certs_received": {
@@ -172762,7 +176515,7 @@
     "gxls95": {
       "index": 9907,
       "owner_key": "FZKC7hzCZ8ep7ma9XAcRrKxE6Te7dfhQQ9sjUtRitj1a",
-      "balance": 362465,
+      "balance": 402151,
       "membership_expire_on": 1697077257,
       "next_cert_issuable_on": 1666768524,
       "certs_received": {
@@ -172779,7 +176532,7 @@
     "SevCarbone": {
       "index": 4542,
       "owner_key": "FZUZ68Bu5jDGJLCgsEYQbJMoVu5P7rMVub5JgFSwxZNE",
-      "balance": 602529,
+      "balance": 642215,
       "membership_expire_on": 1712787492,
       "next_cert_issuable_on": 1688539771,
       "certs_received": {
@@ -172796,7 +176549,7 @@
     "Silver": {
       "index": 11111,
       "owner_key": "FZcCESvHWNeWNfJhUmorsLd7qxUx4AtXKAoa6HdKu9Rn",
-      "balance": 318609,
+      "balance": 358295,
       "membership_expire_on": 1703875001,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -172810,13 +176563,14 @@
     "PremDas": {
       "index": 7529,
       "owner_key": "FZkxdBu8FPASmZ9QDCNoTahfjobL6EXUwwJUqX51DerX",
-      "balance": 472021,
+      "balance": 511707,
       "membership_expire_on": 1708462437,
       "next_cert_issuable_on": 1689067670,
       "certs_received": {
         "GUL40_Fr1": 1712040879,
         "Aryana": 1728096592,
         "GUL40_L21": 1712041131,
+        "Poesy": 1757220970,
         "GUL40_K1r": 1712041131,
         "Heimdall": 1712042676,
         "Angie": 1718821043,
@@ -172835,8 +176589,8 @@
     "JSc": {
       "index": 6319,
       "owner_key": "FZupXGAtEY6MQgGJPAyqdAjRyZDnUHJKNWCUGVvyXCGK",
-      "balance": 865489,
-      "membership_expire_on": 1696158533,
+      "balance": 905175,
+      "membership_expire_on": 1727003630,
       "next_cert_issuable_on": 1683097397,
       "certs_received": {
         "Maryline": 1701221858,
@@ -172859,7 +176613,7 @@
     "SiLi": {
       "index": 11695,
       "owner_key": "FZxPkDQmg95ZciibAKnVFWsPdiVPW9kCWFxEDzKwFXkM",
-      "balance": 233495,
+      "balance": 323181,
       "membership_expire_on": 1708475704,
       "next_cert_issuable_on": 1691859780,
       "certs_received": {
@@ -172867,7 +176621,9 @@
         "NathMim": 1745174822,
         "Chrisma1957": 1747637288,
         "laurencef": 1755723305,
+        "Augusta24": 1757482111,
         "morimontj": 1740036008,
+        "Barbatruc": 1757908476,
         "ChrisMagi": 1740035351,
         "TribuRaph": 1747946072,
         "Katecat": 1747954079,
@@ -172881,7 +176637,7 @@
     "mathieuM": {
       "index": 1073,
       "owner_key": "FZz4z739rAfEamHwTrvCyfxsMa2Xi1bH4s3aNCmFo3p6",
-      "balance": 1229351,
+      "balance": 1269037,
       "membership_expire_on": 1719015361,
       "next_cert_issuable_on": 1665584216,
       "certs_received": {
@@ -172889,7 +176645,6 @@
         "DamienChretien": 1720461917,
         "Gaelle": 1703044559,
         "MariPotter": 1710102047,
-        "henrilarvaron": 1696462847,
         "AnneNanou": 1710016370,
         "GlouxJB": 1710011658
       }
@@ -172897,14 +176652,14 @@
     "fanfanjan": {
       "index": 6085,
       "owner_key": "Fa1WbVLLiHYdYM8n6MtWbcoE9Vai51zSZW9EK48X3htA",
-      "balance": 538717,
-      "membership_expire_on": 1698082191,
+      "balance": 538403,
+      "membership_expire_on": 1725908351,
       "next_cert_issuable_on": 1689866589,
       "certs_received": {
         "BlandineGABE": 1699925104,
-        "Ingriddevendee": 1699926101,
+        "Ingriddevendee": 1757465951,
         "Momosapiens": 1735890997,
-        "Sylmon": 1699924286,
+        "Sylmon": 1757465951,
         "IsabelleLR": 1699932271,
         "Cindy": 1699924286
       }
@@ -172912,7 +176667,7 @@
     "Sylphes": {
       "index": 10635,
       "owner_key": "Fa59DuFg7rLTMxQLweXGb42bhfSHKHEmwDVCRwidaCf3",
-      "balance": 292515,
+      "balance": 332201,
       "membership_expire_on": 1700180158,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -172924,12 +176679,26 @@
         "lecielestbleu": 1731743275
       }
     },
+    "Belle": {
+      "index": 13574,
+      "owner_key": "Fa5HZp9DoMnViEimDDGaL3bBbXn3eSd3576nrzH9gypH",
+      "balance": 39234,
+      "membership_expire_on": 1726327023,
+      "next_cert_issuable_on": 1696166356,
+      "certs_received": {
+        "PierreHarrewyn": 1757884896,
+        "Camizot": 1757884623,
+        "Helo-ise": 1757884623,
+        "Mer-lin": 1757884623,
+        "Fanchon": 1757884623
+      }
+    },
     "Kifgrave": {
       "index": 9380,
       "owner_key": "FaA282e3kxM56fmedTtgzMcd6v2igeLaPNuk73tfcaLd",
-      "balance": 389505,
+      "balance": 418691,
       "membership_expire_on": 1722555516,
-      "next_cert_issuable_on": 1663819579,
+      "next_cert_issuable_on": 1696571857,
       "certs_received": {
         "NanouB": 1725143026,
         "tangosol": 1756098929,
@@ -172951,7 +176720,7 @@
     "Sha": {
       "index": 10425,
       "owner_key": "FaFi5vo5kuEi8gucEayHB2WZh29hGyrUUDEAQSbStJ1w",
-      "balance": 601961,
+      "balance": 641647,
       "membership_expire_on": 1699195929,
       "next_cert_issuable_on": 1675334247,
       "certs_received": {
@@ -172968,7 +176737,7 @@
     "Dodjay": {
       "index": 1433,
       "owner_key": "FaKoxz7SSsa8rR7jWQaDjwFfxuqPC8c7EbTzLxWFRZJz",
-      "balance": 2498646,
+      "balance": 2538332,
       "membership_expire_on": 1702163997,
       "next_cert_issuable_on": 1683531137,
       "certs_received": {
@@ -173000,7 +176769,6 @@
         "Trayx": 1718747505,
         "CMJ34": 1714804554,
         "Paola": 1706941007,
-        "Eauvive": 1694812739,
         "JPGRAU": 1720037037,
         "annievg": 1718746482,
         "tradit": 1745774061,
@@ -173023,8 +176791,8 @@
     "Davidchab": {
       "index": 10263,
       "owner_key": "FaNmLdXDsUhLNJ4CSMd7jW89Qu3t1SJag3BGrCJKcTyu",
-      "balance": 313072,
-      "membership_expire_on": 1698876903,
+      "balance": 352758,
+      "membership_expire_on": 1726182483,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Clau": 1730661982,
@@ -173045,8 +176813,8 @@
     "Yoda13": {
       "index": 9579,
       "owner_key": "FagZVf2jBq29pp8Gg6tpoNYNZnGuYBCWsyGHWEk4DWZP",
-      "balance": 437691,
-      "membership_expire_on": 1694449068,
+      "balance": 449439,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1666508351,
       "certs_received": {
         "Selena": 1726717336,
@@ -173105,7 +176873,7 @@
     "CdeBger": {
       "index": 8287,
       "owner_key": "FbE5k5G4jy4ZZcuwsQ8uqdcDTfgbBz8Cc6qTssS1A91B",
-      "balance": 486893,
+      "balance": 526579,
       "membership_expire_on": 1709596356,
       "next_cert_issuable_on": 1674308014,
       "certs_received": {
@@ -173119,7 +176887,7 @@
     "devatajib": {
       "index": 7425,
       "owner_key": "FbMx3ST7gGiDXUehiwgSd3K4aSPa7tmcjeAMo2mnz19d",
-      "balance": 509872,
+      "balance": 549558,
       "membership_expire_on": 1708822148,
       "next_cert_issuable_on": 1664617503,
       "certs_received": {
@@ -173170,7 +176938,7 @@
     "TambourChaman": {
       "index": 6188,
       "owner_key": "FbedKAoBfkiWZjRNwXtch67odAykWrULW4f9ArUr53Ye",
-      "balance": 432495,
+      "balance": 472181,
       "membership_expire_on": 1719153125,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -173178,25 +176946,20 @@
         "Espritangel": 1698282266,
         "FranckBarbe": 1700887642,
         "KarineKala": 1699081361,
-        "FredericAmany974": 1700716661,
-        "DiesseSophie": 1696658049
+        "FredericAmany974": 1700716661
       }
     },
     "Cesarmour12": {
       "index": 5766,
       "owner_key": "Fbg9Hki2QFr4cL4cNWNwVwffirzfyTV6kposrcoRAwHW",
-      "balance": 595995,
+      "balance": 635681,
       "membership_expire_on": 1722619435,
       "next_cert_issuable_on": 1666762490,
       "certs_received": {
         "BlandineGABE": 1713647522,
         "seb": 1697493890,
-        "Niamor": 1695596876,
         "LydieParthenay": 1733184744,
-        "JohannFox": 1695801555,
         "Kittinyani": 1717546644,
-        "Ingriddevendee": 1695571300,
-        "fredo79": 1695866270,
         "Beatrice": 1712621624,
         "Valerieptjn17": 1718506951,
         "wopat": 1709601131,
@@ -173206,11 +176969,9 @@
         "Thierry17440": 1739607218,
         "Gus": 1730424572,
         "Chloeremy": 1710116160,
-        "SamsFactory": 1695525547,
         "Veroniquealycia": 1732319393,
         "Tsultrim21": 1729142611,
         "CoralieM": 1727819598,
-        "IJMah": 1694924059,
         "PeaceRisingLise": 1726869158,
         "Aurore": 1713601657
       }
@@ -173218,8 +176979,8 @@
     "ADN": {
       "index": 9909,
       "owner_key": "FbgwcyJZ116siTVJiACjVd89EbPA2FfAMgcxQW6J59eV",
-      "balance": 352955,
-      "membership_expire_on": 1696119646,
+      "balance": 385095,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Katiecat": 1727902150,
@@ -173232,7 +176993,7 @@
     "FRLavenier": {
       "index": 1704,
       "owner_key": "FbndS15XFQvg1yMDFVHGKXkwmhuT1Yqo36kKDwKsYdLM",
-      "balance": 1498996,
+      "balance": 1538682,
       "membership_expire_on": 1719666315,
       "next_cert_issuable_on": 1688180715,
       "certs_received": {
@@ -173246,7 +177007,7 @@
     "Figolu": {
       "index": 558,
       "owner_key": "FbqXKcame4dB4wwLDget3gnbPqjAEBCVFMUMFNisHW5r",
-      "balance": 1815143,
+      "balance": 1854829,
       "membership_expire_on": 1717871346,
       "next_cert_issuable_on": 1688215295,
       "certs_received": {
@@ -173300,9 +177061,9 @@
     "Alberto": {
       "index": 9215,
       "owner_key": "FcBqnhg3rSKT3qVfyUaJCtPX3G8DFgrA8S2nwhXVuCn9",
-      "balance": 415689,
+      "balance": 522175,
       "membership_expire_on": 1718837899,
-      "next_cert_issuable_on": 1693127402,
+      "next_cert_issuable_on": 1696052142,
       "certs_received": {
         "Urbez": 1725666148,
         "Damaso": 1733605218,
@@ -173310,17 +177071,22 @@
         "carmenchu_almacristal": 1739590589,
         "SantiTrinquete": 1736153886,
         "AngieantesGeles": 1729063012,
+        "PedroX": 1756848797,
         "Belobal": 1722269045,
         "AngelMacksimilia": 1744403832,
         "EstefaniaLopez": 1728965194,
         "AnianaYpunto": 1736888352,
         "Isabella": 1730997089,
         "Elenarepostera": 1738309686,
+        "jilguero": 1758725958,
+        "Abejitajaimita": 1756174792,
+        "Beica10es": 1758726339,
         "G1rgina": 1734688809,
         "AliciaConsuelo": 1734640435,
         "Diessanne": 1742633957,
         "MaEstherG1": 1737363585,
         "Mariaje": 1737330585,
+        "YUKO": 1756170832,
         "llanero": 1723189474,
         "KepaBai": 1736394454,
         "DanielaEG": 1738013361,
@@ -173339,7 +177105,7 @@
     "Fffhhh": {
       "index": 8508,
       "owner_key": "FcH67YqYsC16zDbvkwrggeSPf4fxEnUXrp8ydxcdnXaD",
-      "balance": 431377,
+      "balance": 471063,
       "membership_expire_on": 1708874353,
       "next_cert_issuable_on": 1656593780,
       "certs_received": {
@@ -173353,8 +177119,8 @@
     "Olivier31220": {
       "index": 1799,
       "owner_key": "FcL4LvjzfrjFcYrAyTn2EYaUNnDZtD6o9TJaC1SGgjer",
-      "balance": 1913905,
-      "membership_expire_on": 1696680897,
+      "balance": 1953591,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670171230,
       "certs_received": {
         "Choub": 1736217341,
@@ -173371,9 +177137,9 @@
     "VibrandoEsencia": {
       "index": 11604,
       "owner_key": "FcMQEX22fGLPzxLC1CHPXWDdzcG39HAkZ9sDXtcxwCbp",
-      "balance": 132969,
+      "balance": 175555,
       "membership_expire_on": 1707865322,
-      "next_cert_issuable_on": 1689079425,
+      "next_cert_issuable_on": 1694537029,
       "certs_received": {
         "xandraAritzkuren": 1739437727,
         "Urbez": 1739470396,
@@ -173385,7 +177151,8 @@
         "Elenarepostera": 1739477763,
         "jilguero": 1753112436,
         "Franviriato": 1747155833,
-        "esterdg": 1742782939
+        "esterdg": 1742782939,
+        "Marijopelirroja": 1758068799
       }
     },
     "jeanvivancos": {
@@ -173422,7 +177189,7 @@
     "Alextraordinario": {
       "index": 10973,
       "owner_key": "FcTa1YFwuhujLzLiQpwS6V55NgLoSfRi96F62JUs1Nym",
-      "balance": 221176,
+      "balance": 226362,
       "membership_expire_on": 1702762683,
       "next_cert_issuable_on": 1685709438,
       "certs_received": {
@@ -173440,7 +177207,7 @@
     "DimitriD": {
       "index": 4432,
       "owner_key": "FcXDUByqzfuTRNoxepQwcEiy4i73vZvxaPDKfNjiRDjR",
-      "balance": 973074,
+      "balance": 1012760,
       "membership_expire_on": 1704239114,
       "next_cert_issuable_on": 1677424248,
       "certs_received": {
@@ -173457,11 +177224,12 @@
     "Angeles": {
       "index": 10403,
       "owner_key": "FcYRkqw1pbbq434Lub6fuDUMtuj6DMQLwxYM2xto8SWg",
-      "balance": 203356,
-      "membership_expire_on": 1699307649,
-      "next_cert_issuable_on": 1675402104,
+      "balance": 375342,
+      "membership_expire_on": 1727122379,
+      "next_cert_issuable_on": 1695737421,
       "certs_received": {
         "agustinton": 1731520233,
+        "lolicirera": 1756774734,
         "Performance": 1731089771,
         "Arantzamar": 1731459815,
         "kin55puravida": 1731518307,
@@ -173474,7 +177242,7 @@
     "tradit": {
       "index": 2875,
       "owner_key": "FcgPxrJ9VB18jubgSfukzYXiScHQc3qGibFZjoavtf8X",
-      "balance": 860719,
+      "balance": 900405,
       "membership_expire_on": 1710801635,
       "next_cert_issuable_on": 1682730861,
       "certs_received": {
@@ -173482,7 +177250,7 @@
         "ThierryLacaze": 1743286289,
         "Cat": 1706062350,
         "Paola": 1729037421,
-        "Mikhaella3448": 1695366065,
+        "Mikhaella3448": 1757924007,
         "annievg": 1706405292,
         "PascalGuillemain": 1751922745
       }
@@ -173490,7 +177258,7 @@
     "GUL40_N1t1": {
       "index": 7108,
       "owner_key": "Fcipr3xKwMJ4SMzx8iRkjGVmSTMduVRdR6yB3YYuk6TC",
-      "balance": 499765,
+      "balance": 539451,
       "membership_expire_on": 1704047028,
       "next_cert_issuable_on": 1686150427,
       "certs_received": {
@@ -173515,7 +177283,7 @@
     "Gislaine974": {
       "index": 3271,
       "owner_key": "Fcn2jzsa6tKidkMgirXVhA211V6iPwYTtKCzGDuMeP3y",
-      "balance": 660492,
+      "balance": 700178,
       "membership_expire_on": 1720035388,
       "next_cert_issuable_on": 1687916032,
       "certs_received": {
@@ -173556,7 +177324,7 @@
     "MyrtilleMyriam": {
       "index": 7862,
       "owner_key": "FcvJKDqyGy4uGCiEyCacuUtQzX7DL38SDrataEzKm7Q6",
-      "balance": 243425,
+      "balance": 212611,
       "membership_expire_on": 1712578219,
       "next_cert_issuable_on": 1687510563,
       "certs_received": {
@@ -173574,6 +177342,7 @@
         "Jaher974": 1713306534,
         "Danielle97450": 1751980794,
         "Myriam97410": 1720557456,
+        "mdanielle97430": 1755196432,
         "Reine97418": 1737557495,
         "Jim974": 1744558501,
         "SoaEuphrasie": 1713994817,
@@ -173583,7 +177352,7 @@
     "FleurJ": {
       "index": 12489,
       "owner_key": "Fcz54jm8weGBrUqVYENJ2pZrhKXaLq95C1u7Y6kJqbho",
-      "balance": 137032,
+      "balance": 176718,
       "membership_expire_on": 1714338801,
       "next_cert_issuable_on": 1689660387,
       "certs_received": {
@@ -173614,7 +177383,7 @@
     "Ornechrist": {
       "index": 11444,
       "owner_key": "FdDEWcEU6VvwsGYfgWYnZmYxkksnYFtKGSt1Y6VAg3dq",
-      "balance": 223857,
+      "balance": 263543,
       "membership_expire_on": 1704227362,
       "next_cert_issuable_on": 1676379722,
       "certs_received": {
@@ -173629,7 +177398,7 @@
     "Pavelito": {
       "index": 10830,
       "owner_key": "FdGQpGVdX62UEQSBStFKydjHgEgN71dLvJnPCBN5z88T",
-      "balance": 275758,
+      "balance": 165444,
       "membership_expire_on": 1702146243,
       "next_cert_issuable_on": 1686315909,
       "certs_received": {
@@ -173646,7 +177415,7 @@
     "Theobaldor": {
       "index": 11336,
       "owner_key": "FdGY73m7FKvWChfkzh8RwJ967WtYFUZGSiuJBig5GPom",
-      "balance": 223388,
+      "balance": 263074,
       "membership_expire_on": 1705661213,
       "next_cert_issuable_on": 1690011363,
       "certs_received": {
@@ -173663,16 +177432,17 @@
     "ElodieB": {
       "index": 8090,
       "owner_key": "FdGymtPpo7UXmKBH72fh6QU8rNMhkt8H7wdBg9oSn3Da",
-      "balance": 72307,
+      "balance": 111993,
       "membership_expire_on": 1712615335,
-      "next_cert_issuable_on": 1659013634,
+      "next_cert_issuable_on": 1694746699,
       "certs_received": {
         "monphil": 1715834581,
         "Carolina73": 1715752441,
         "Valmo": 1722131455,
         "Cordia": 1715754411,
         "Calypso": 1715834756,
-        "LaChtiteGraine": 1715751639
+        "LaChtiteGraine": 1715751639,
+        "Paola": 1757797132
       }
     },
     "HeleneDV": {
@@ -173721,7 +177491,7 @@
     "Manou971": {
       "index": 12158,
       "owner_key": "FdbPpnCVeM7tauxTXAjHR9DuZN86qLps9YpwpW7DkNn5",
-      "balance": 515940,
+      "balance": 443426,
       "membership_expire_on": 1711472842,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -173735,9 +177505,9 @@
     "Bikoucel86": {
       "index": 13410,
       "owner_key": "Fde378f38P8MJ1aCr8qNAm3DspE8zjVxZRhFXrChkwKJ",
-      "balance": 102048,
+      "balance": 141734,
       "membership_expire_on": 1724155566,
-      "next_cert_issuable_on": 1693134715,
+      "next_cert_issuable_on": 1696597036,
       "certs_received": {
         "Joce78": 1755719599,
         "Speedy86": 1755717379,
@@ -173754,7 +177524,7 @@
     "Yakamakagruen": {
       "index": 10986,
       "owner_key": "FdeVqbLUu8khm7JNarrAw28g5ivWk97mAKCrcHz7R991",
-      "balance": 272876,
+      "balance": 312562,
       "membership_expire_on": 1703361862,
       "next_cert_issuable_on": 1681736961,
       "certs_received": {
@@ -173770,7 +177540,7 @@
     "Ura": {
       "index": 6613,
       "owner_key": "FdfaHQhajEXTWcbnUYLjTQgjo2S56syGUJgZrvvSxXwT",
-      "balance": 173377,
+      "balance": 167723,
       "membership_expire_on": 1706126747,
       "next_cert_issuable_on": 1689045593,
       "certs_received": {
@@ -173826,12 +177596,13 @@
     "ussyplume": {
       "index": 10996,
       "owner_key": "FdqYqxcMbvE5Us5MAcaNtNjwqM82v6TvWXV6HnV3LW7X",
-      "balance": 179805,
-      "membership_expire_on": 1701209210,
-      "next_cert_issuable_on": 1691743224,
+      "balance": 109491,
+      "membership_expire_on": 1728227617,
+      "next_cert_issuable_on": 1696742017,
       "certs_received": {
         "Yeskah": 1734076074,
         "MadV77": 1734499283,
+        "Murielle93": 1758515033,
         "Brigitte77": 1752515368,
         "gerard94": 1734496579,
         "77ZenAll": 1734039229,
@@ -173849,24 +177620,24 @@
     "zaza": {
       "index": 3027,
       "owner_key": "Fdzh4P4PLNm9QaW4iLKt6ug3VHHMsP7a2WX3yMpyfH7V",
-      "balance": 527677,
+      "balance": 567363,
       "membership_expire_on": 1707304514,
-      "next_cert_issuable_on": 1665313514,
+      "next_cert_issuable_on": 1694129930,
       "certs_received": {
         "Libertiste": 1698206956,
-        "Diego528": 1696371851,
         "Caroleluciole": 1698893712,
-        "Marcelin": 1701203007,
+        "Marcelin": 1757173130,
         "Paola": 1708317195,
-        "Parpalhon": 1694545099
+        "mat14": 1757173130,
+        "Parpalhon": 1757173130
       }
     },
     "Merlinor": {
       "index": 7560,
       "owner_key": "Fe5bYZJ46P8PGK3QK7HHtyX3Bshg6p8znnX7FFX7pqjA",
-      "balance": 263705,
+      "balance": 298061,
       "membership_expire_on": 1706446034,
-      "next_cert_issuable_on": 1692693823,
+      "next_cert_issuable_on": 1696084783,
       "certs_received": {
         "Amiel": 1721079958,
         "Mianne": 1707709216,
@@ -173907,9 +177678,9 @@
     "Basilous15": {
       "index": 6770,
       "owner_key": "FeKHjbVMp8rCt1WJZTg9u46n9hxpD6pRrtb1TW8U86gh",
-      "balance": 402468,
-      "membership_expire_on": 1696271571,
-      "next_cert_issuable_on": 1692769351,
+      "balance": 376155,
+      "membership_expire_on": 1727703449,
+      "next_cert_issuable_on": 1695780147,
       "certs_received": {
         "Stejulemont": 1705126663,
         "devihope": 1747558509,
@@ -173929,7 +177700,7 @@
     "Micaela": {
       "index": 9955,
       "owner_key": "FeRmkMeM1Ni7kQ2YMqnGPDLX7uX1TP3uDdRcvrKVFi9o",
-      "balance": 306288,
+      "balance": 345974,
       "membership_expire_on": 1696982421,
       "next_cert_issuable_on": 1679649530,
       "certs_received": {
@@ -173946,9 +177717,9 @@
     "PATREN17": {
       "index": 11671,
       "owner_key": "FecPfci5WCru4CSPRjgaT66ziV41hShMhAKbeWpTCEHx",
-      "balance": 207413,
+      "balance": 247099,
       "membership_expire_on": 1705957188,
-      "next_cert_issuable_on": 1693053863,
+      "next_cert_issuable_on": 1696048906,
       "certs_received": {
         "Richard": 1739560867,
         "Marie-Laure": 1737907080,
@@ -173960,9 +177731,9 @@
     "Cyrille": {
       "index": 6660,
       "owner_key": "FeewJpVxQj9NKsy59anJ4eeBpEtd8YHASV7LaE8PKmUk",
-      "balance": 301345,
+      "balance": 329031,
       "membership_expire_on": 1723917391,
-      "next_cert_issuable_on": 1692836798,
+      "next_cert_issuable_on": 1693791096,
       "certs_received": {
         "OlivierS57": 1705451853,
         "phildefer": 1711499021,
@@ -173973,6 +177744,7 @@
         "kalimheros": 1747205084,
         "Dracaufeu1990": 1756050007,
         "Zouzoute57": 1751556199,
+        "miel67": 1756801665,
         "Roimain": 1702593351,
         "oumba1000": 1705542172,
         "patochedu57m": 1752292666
@@ -173981,7 +177753,7 @@
     "AnaisB": {
       "index": 2593,
       "owner_key": "FejK3diAKxx1J1R51tguqdEZYDBk29ZiREVguckwhq4J",
-      "balance": 1006816,
+      "balance": 974616,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1676348304,
       "certs_received": {
@@ -174001,7 +177773,7 @@
     "Chriss": {
       "index": 7528,
       "owner_key": "FerZK3wbJigLyTMpaQJLQ4Bar7FVdtdpwiGg26EbhaVg",
-      "balance": 434783,
+      "balance": 474469,
       "membership_expire_on": 1704232130,
       "next_cert_issuable_on": 1676794164,
       "certs_received": {
@@ -174037,9 +177809,9 @@
     "DameCeline12": {
       "index": 11240,
       "owner_key": "FevXFQgZcdwh9nzrkJ5icR357YyuBKZTSAiDgsrZAqTp",
-      "balance": 585419,
+      "balance": 604105,
       "membership_expire_on": 1705092605,
-      "next_cert_issuable_on": 1684908873,
+      "next_cert_issuable_on": 1693963756,
       "certs_received": {
         "Bea29": 1736972011,
         "lydiemdb": 1739132180,
@@ -174049,6 +177821,7 @@
         "Gaelducausse": 1736672217,
         "AlexandraHovasse": 1737665437,
         "Pranam": 1750618389,
+        "Thomas": 1757100969,
         "CathD": 1756565226,
         "Ananda46": 1739002608,
         "CedricSQ": 1736651998,
@@ -174058,7 +177831,7 @@
     "PetraVaals": {
       "index": 10577,
       "owner_key": "FevnmmZHNEi6Z7VQDALtxcjqEB8ZaNyie6wF7zHo9JZ",
-      "balance": 292152,
+      "balance": 331838,
       "membership_expire_on": 1701212804,
       "next_cert_issuable_on": 1672912207,
       "certs_received": {
@@ -174074,8 +177847,8 @@
     "jeremiemaes": {
       "index": 2406,
       "owner_key": "Fevt3KiBVDd5fajuacM7VbJ57qMNVot44C8SpSR16d92",
-      "balance": 1654102,
-      "membership_expire_on": 1699583043,
+      "balance": 1606088,
+      "membership_expire_on": 1726695711,
       "next_cert_issuable_on": 1682922195,
       "certs_received": {
         "AlexDurain": 1738725149,
@@ -174084,14 +177857,13 @@
         "Fleurt11": 1745954292,
         "Bastien-29": 1742910890,
         "SophieMarsanne": 1746672907,
-        "domenechmanu": 1695310563,
         "sylviepl": 1748574823
       }
     },
     "Alejandrolpa": {
       "index": 11690,
       "owner_key": "FfDPKX5AqdtwSqGJtA8gXf2iPLNaCrwC6SUQ75rs3c8q",
-      "balance": 84393,
+      "balance": 85929,
       "membership_expire_on": 1708460169,
       "next_cert_issuable_on": 1688618912,
       "certs_received": {
@@ -174120,9 +177892,9 @@
     "AnnickBoubounelle": {
       "index": 2006,
       "owner_key": "FfJwKbREuMYkUfCAAavFyou8ZtvJDwETPXxgjtZL8uQy",
-      "balance": 752662,
+      "balance": 792548,
       "membership_expire_on": 1706620039,
-      "next_cert_issuable_on": 1679229193,
+      "next_cert_issuable_on": 1695786259,
       "certs_received": {
         "PhilippeGua53": 1742368136,
         "ElodieV": 1735760155,
@@ -174132,13 +177904,14 @@
         "AnaisLicorne": 1709317864,
         "JeandMeryMAYOPARRA": 1734549421,
         "JBlot": 1719990333,
-        "Milinette16": 1704680508
+        "Milinette16": 1704680508,
+        "MathildeB": 1758874282
       }
     },
     "AnnaBella": {
       "index": 13166,
       "owner_key": "FfKKfHCSDgxrfYePm1hSanwmqFEeJaF68ekeHgyqcwgz",
-      "balance": 57232,
+      "balance": 91918,
       "membership_expire_on": 1720736775,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -174231,7 +178004,7 @@
     "amandine": {
       "index": 4274,
       "owner_key": "Fg4hC716oqpnxhjPhPebnuMq41KBR1z4hxsAsTCSf1ma",
-      "balance": 4277473,
+      "balance": 4317159,
       "membership_expire_on": 1708012687,
       "next_cert_issuable_on": 1649940065,
       "certs_received": {
@@ -174252,7 +178025,7 @@
     "Michaela1997": {
       "index": 12165,
       "owner_key": "FgAmrNovMYNedPiSwnw3z7xhXMYUwjikynKSdcJgAqe5",
-      "balance": 244200,
+      "balance": 205766,
       "membership_expire_on": 1708888153,
       "next_cert_issuable_on": 1685888433,
       "certs_received": {
@@ -174268,7 +178041,7 @@
     "Tabs": {
       "index": 10157,
       "owner_key": "FgFKrTNHkRQxbiksjxec4nqcQt8BhuthnXTNUyZZoqpq",
-      "balance": 326844,
+      "balance": 366530,
       "membership_expire_on": 1697328178,
       "next_cert_issuable_on": 1688983849,
       "certs_received": {
@@ -174287,7 +178060,7 @@
     "SingerOfHealing": {
       "index": 10657,
       "owner_key": "FgFb3ofz8ZsDXW2xM1PaSbQrSuDnEYcyoxbZcqPFFUq2",
-      "balance": 264160,
+      "balance": 293066,
       "membership_expire_on": 1701476445,
       "next_cert_issuable_on": 1674145809,
       "certs_received": {
@@ -174302,7 +178075,7 @@
     "MarieAndara": {
       "index": 12272,
       "owner_key": "FgK6Zn61eDcKKwkgyPDZoxH7TSUZnLZo2YfzDXY3ahGk",
-      "balance": 76929,
+      "balance": 116615,
       "membership_expire_on": 1712456266,
       "next_cert_issuable_on": 1691915308,
       "certs_received": {
@@ -174325,13 +178098,14 @@
     "Joroc15": {
       "index": 9660,
       "owner_key": "FgQeZHAuxzgE1nVyT42wppUWLUxR2RhvqdtQNvDKTmD4",
-      "balance": 366527,
-      "membership_expire_on": 1695133691,
+      "balance": 387319,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1687515605,
       "certs_received": {
         "Niranjana": 1728142521,
         "AuroreMarie": 1738461918,
         "Mianne": 1726900397,
+        "LaMagicienne": 1757089736,
         "Sarinette": 1727021891,
         "SashaB": 1737370824,
         "StephBauer": 1726895436,
@@ -174345,9 +178119,9 @@
     "MikaPac": {
       "index": 12446,
       "owner_key": "FgTJCtsDZipNwBwAG1T9p7ssFo5nMkY8JDknZ82opCLE",
-      "balance": 22033,
+      "balance": 40159,
       "membership_expire_on": 1713136764,
-      "next_cert_issuable_on": 1693148909,
+      "next_cert_issuable_on": 1696739838,
       "certs_received": {
         "Etipol61": 1753420875,
         "SophieDeprez": 1753156476,
@@ -174356,6 +178130,7 @@
         "Domusol": 1745176466,
         "ElaineDana": 1745284404,
         "Artdevivre": 1753424668,
+        "Sandrinew": 1759258129,
         "Shinix63": 1747371061,
         "Annae": 1745167426,
         "Denis": 1753500007,
@@ -174369,7 +178144,7 @@
     "GuilaineSaintMartin": {
       "index": 12644,
       "owner_key": "FgZSzj1gmxPJhVkNZ7jRwK36zDBYR6oajBqnxo4XiYR7",
-      "balance": 116412,
+      "balance": 156098,
       "membership_expire_on": 1715202467,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -174383,7 +178158,7 @@
     "letoilebleue": {
       "index": 5640,
       "owner_key": "FgaqFUbBe6Us6TG5wv3sjnJsqpDuXjMwpswiCXR89rpK",
-      "balance": 576127,
+      "balance": 611813,
       "membership_expire_on": 1709581865,
       "next_cert_issuable_on": 1686303008,
       "certs_received": {
@@ -174391,31 +178166,26 @@
         "KreenBulle51": 1699142914,
         "FenderChristophe": 1714714964,
         "Martine51": 1716733960,
-        "IsabelleGlorian": 1694267067,
         "Elie88": 1725155068,
         "helena05": 1724789713,
-        "Sunrise": 1693980055,
         "TheoF": 1712695141,
         "AurElieSkuld": 1746577544,
         "Fabrice_T": 1723835979,
         "kalimheros": 1714030612,
         "lilarose": 1750406582,
         "Natheidi": 1712469896,
-        "thierryR51": 1693895637,
         "BertrandCGO": 1707292114,
         "Stefmaillard": 1715096636,
         "Jerome55": 1712357115,
-        "PasMoi": 1694159383,
-        "SylvieSpielmann": 1712690393,
-        "Scapharnaum": 1693958482
+        "SylvieSpielmann": 1712690393
       }
     },
     "ELY": {
       "index": 10689,
       "owner_key": "FgytwJAZ1FyRHB7NBvDdqBoDWBDSTGVAQbDpxkYkJvMt",
-      "balance": 346338,
-      "membership_expire_on": 1699812400,
-      "next_cert_issuable_on": 1679931200,
+      "balance": 377524,
+      "membership_expire_on": 1726798654,
+      "next_cert_issuable_on": 1695631390,
       "certs_received": {
         "laurienza": 1742974042,
         "Tonygilcass": 1732669545,
@@ -174431,7 +178201,7 @@
     "ludine": {
       "index": 7186,
       "owner_key": "FhJNhmcWY7kHLtrFnHJHxacZjvKvg9PNB3etydA7mmHz",
-      "balance": 531235,
+      "balance": 570921,
       "membership_expire_on": 1711410666,
       "next_cert_issuable_on": 1686892865,
       "certs_received": {
@@ -174448,7 +178218,7 @@
     "Crilou": {
       "index": 11413,
       "owner_key": "FhKhpZ7hTaYEBoKy6gSN2QrZroULNmKDTo4Si2HLsssd",
-      "balance": 205034,
+      "balance": 244720,
       "membership_expire_on": 1706471585,
       "next_cert_issuable_on": 1675423860,
       "certs_received": {
@@ -174463,7 +178233,7 @@
     "BelenGC": {
       "index": 11831,
       "owner_key": "FhLaoGsNxUxuqaqYukptRs8vq4KZjX6sYYLKMPTwENfJ",
-      "balance": 48205,
+      "balance": 12791,
       "membership_expire_on": 1709341656,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -174477,7 +178247,7 @@
     "MertensNaelle": {
       "index": 12080,
       "owner_key": "FhPBT1ypcz6VS4951zxqtiVDSvU7P9sA4hpTFYfhrD38",
-      "balance": 174016,
+      "balance": 213702,
       "membership_expire_on": 1710521195,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -174491,7 +178261,7 @@
     "Ivan66": {
       "index": 2930,
       "owner_key": "FhSGy8VsER2bjfNe6P3CZD4Daow7gSn9NSvABPJSeeqx",
-      "balance": 1157510,
+      "balance": 1197196,
       "membership_expire_on": 1710297405,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -174509,7 +178279,7 @@
     "RePa": {
       "index": 13418,
       "owner_key": "FhWoAkLABd1SSfdT7C22b7pLL4W9gK34wBdBTFWBaVdR",
-      "balance": 13780,
+      "balance": 53466,
       "membership_expire_on": 1720715097,
       "next_cert_issuable_on": 1693235364,
       "certs_received": {
@@ -174523,14 +178293,15 @@
     "Gkjuner": {
       "index": 10687,
       "owner_key": "FhX1bikg1YgFaDdeCAKsdigLjfEnYGb3PgGnnmfmkCS",
-      "balance": 283981,
+      "balance": 323667,
       "membership_expire_on": 1700417729,
-      "next_cert_issuable_on": 1692367326,
+      "next_cert_issuable_on": 1692894966,
       "certs_received": {
         "EmaPom": 1733175640,
         "veracachan": 1733168246,
         "YvesP": 1733167626,
         "SergeUme": 1752358819,
+        "Llorens": 1759457321,
         "LaKjuner": 1752560947,
         "Anikka": 1732165090,
         "Jesck": 1732433633
@@ -174539,9 +178310,9 @@
     "Noxtan": {
       "index": 8468,
       "owner_key": "FhXXBP6rjPJqdX6zaksWu3dUdG6b7u7zEDcPNLEP2oJ",
-      "balance": 249805,
+      "balance": 33391,
       "membership_expire_on": 1712873024,
-      "next_cert_issuable_on": 1691136016,
+      "next_cert_issuable_on": 1693973041,
       "certs_received": {
         "xandraAritzkuren": 1724396757,
         "Enara": 1724395762,
@@ -174563,6 +178334,7 @@
         "Icobonhomme": 1728176942,
         "EvcomServiciosInformaticos": 1736911728,
         "RayAmur": 1734225902,
+        "edubotaoo": 1756878134,
         "Denis": 1728797804,
         "Montse": 1742334428,
         "Estibalitz": 1726105646,
@@ -174596,6 +178368,7 @@
         "NORGERAL": 1727330555,
         "Mikelegi": 1754251128,
         "Peter": 1730947433,
+        "Xabikyo": 1756958094,
         "ABuenVivir": 1728544122
       }
     },
@@ -174610,7 +178383,7 @@
     "Djelan007": {
       "index": 7003,
       "owner_key": "Fhmf3MMbogUAUNfq2dEh5Y3w5nMCzPP8uYks68hYv9vB",
-      "balance": 221465,
+      "balance": 261151,
       "membership_expire_on": 1704471501,
       "next_cert_issuable_on": 1667538242,
       "certs_received": {
@@ -174639,9 +178412,9 @@
     "RobertC": {
       "index": 5973,
       "owner_key": "Fhonj8gpo7KN4VztGPUSxMqu8GoRcrySgFVLsgEZLo9B",
-      "balance": 786961,
+      "balance": 637647,
       "membership_expire_on": 1720402325,
-      "next_cert_issuable_on": 1674656562,
+      "next_cert_issuable_on": 1693840132,
       "certs_received": {
         "RomainKornig": 1733789131,
         "stephanieguillem": 1713774933,
@@ -174649,6 +178422,7 @@
         "Alyang": 1733950882,
         "Diessanne": 1698196638,
         "Papillote": 1698194516,
+        "Guillemyannick": 1756877375,
         "FrancoiseH": 1708987599,
         "Yaya13280": 1698194516,
         "Reno04": 1698888132,
@@ -174695,8 +178469,8 @@
     "FreeSimo": {
       "index": 9536,
       "owner_key": "Fi99PSTy2oU2kf2ettgQ5DXNiVkswAyhfL2c54cisR6v",
-      "balance": 319585,
-      "membership_expire_on": 1694454809,
+      "balance": 331333,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Alexcap77": 1726035876,
@@ -174709,7 +178483,7 @@
     "rayveur": {
       "index": 11790,
       "owner_key": "FiDV9eCpxsrctHfBZDyapfQ4gULVqjXQCZru1dGaL5L",
-      "balance": 173382,
+      "balance": 213068,
       "membership_expire_on": 1707311949,
       "next_cert_issuable_on": 1679302883,
       "certs_received": {
@@ -174733,9 +178507,9 @@
     "BeaC": {
       "index": 10509,
       "owner_key": "FipryS9xNdCyQ42Mj5HfrXJmhvRV1qbrPWhe2XVWFpfv",
-      "balance": 298487,
+      "balance": 338173,
       "membership_expire_on": 1700156599,
-      "next_cert_issuable_on": 1692526410,
+      "next_cert_issuable_on": 1694529319,
       "certs_received": {
         "Mianne": 1732056881,
         "LeBouffon": 1740979713,
@@ -174753,7 +178527,7 @@
     "GhisSerre": {
       "index": 8028,
       "owner_key": "FixJ1eQdtYQGamuBuTVRQAJwofdHfm4shCDU6cAmXhu5",
-      "balance": 327562,
+      "balance": 367248,
       "membership_expire_on": 1712777836,
       "next_cert_issuable_on": 1674111688,
       "certs_received": {
@@ -174801,7 +178575,7 @@
     "enchemin": {
       "index": 1077,
       "owner_key": "Fj8awUX3dyssGU9X2qsdXiwh19bAd2sgTE9K1o6PuLCJ",
-      "balance": 1761999,
+      "balance": 1801685,
       "membership_expire_on": 1699387729,
       "next_cert_issuable_on": 1692080536,
       "certs_received": {
@@ -174814,6 +178588,7 @@
         "Alex34": 1755123736,
         "Guillemette": 1734560928,
         "CVM": 1732482926,
+        "Nico34": 1755126101,
         "NEMBC": 1747935995,
         "Aaricia": 1736391545
       }
@@ -174821,9 +178596,9 @@
     "jon": {
       "index": 7801,
       "owner_key": "FjEe8u68jGdgEdjhdhLwXUUfVNDke4u4NdXbED7AGPsa",
-      "balance": 648229,
+      "balance": 667915,
       "membership_expire_on": 1708117097,
-      "next_cert_issuable_on": 1684847353,
+      "next_cert_issuable_on": 1693956681,
       "certs_received": {
         "rockwater": 1716489576,
         "MyriamGuillot": 1729821783,
@@ -174846,7 +178621,7 @@
     "Francois07": {
       "index": 10537,
       "owner_key": "FjGR727G5fAwLmHgfZLBeYUFY2beujaF3Ns5rChDPDCk",
-      "balance": 286810,
+      "balance": 326496,
       "membership_expire_on": 1701096991,
       "next_cert_issuable_on": 1684023518,
       "certs_received": {
@@ -174860,12 +178635,11 @@
     "obelix": {
       "index": 2326,
       "owner_key": "FjHy7rFXQNpmNFBfZLnyiUAakf9eBFFdDQGGDs4b93FC",
-      "balance": 536059,
-      "membership_expire_on": 1713567042,
+      "balance": 539263,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1645747831,
       "certs_received": {
         "chris07": 1708873561,
-        "Falbala": 1693808621,
         "esteban": 1708977324,
         "Katich": 1708787974,
         "HectorTotor": 1708806064
@@ -174896,7 +178670,7 @@
     "BorisPuyet": {
       "index": 1299,
       "owner_key": "FjQvMUVunq8dxZ1fPhNanVkpohraV7EhEhD5Czad4LKk",
-      "balance": 1619571,
+      "balance": 1659257,
       "membership_expire_on": 1706441650,
       "next_cert_issuable_on": 1687888868,
       "certs_received": {
@@ -174910,7 +178684,7 @@
     "fleurdor": {
       "index": 7855,
       "owner_key": "FjTh7jDVS11NhfM6TA3PijnecK52NZJZkTQ5Mv1LHVtv",
-      "balance": 454776,
+      "balance": 494462,
       "membership_expire_on": 1706907026,
       "next_cert_issuable_on": 1657627646,
       "certs_received": {
@@ -174944,7 +178718,7 @@
     "Vera": {
       "index": 10929,
       "owner_key": "Fjb8unLjj2nrjEgR7QhcxtRFnUpyVxxVoDDmvZDLUdPz",
-      "balance": 270453,
+      "balance": 310139,
       "membership_expire_on": 1703003688,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -174959,7 +178733,7 @@
     "LaBriseglace": {
       "index": 10286,
       "owner_key": "Fjbd3zZQBqdjmtjEFhAiM2imGEU4C3Huf3D8B9zHMcmi",
-      "balance": 392316,
+      "balance": 432002,
       "membership_expire_on": 1699219485,
       "next_cert_issuable_on": 1674881812,
       "certs_received": {
@@ -174989,9 +178763,9 @@
     "Clinerode": {
       "index": 4938,
       "owner_key": "FjshqHwNh3NPko7SsP5e9GhGiqMmMX9LkDwhah4dz33o",
-      "balance": 412742,
+      "balance": 394928,
       "membership_expire_on": 1707725510,
-      "next_cert_issuable_on": 1688929885,
+      "next_cert_issuable_on": 1695437130,
       "certs_received": {
         "Eveilducoeur": 1737776462,
         "ChristineNoelle": 1748056538,
@@ -175012,7 +178786,7 @@
     "Valerie3": {
       "index": 10948,
       "owner_key": "Fk3fZTgrHB93BnWDTwq2vsonbMwHrFcgmLpJF1psrALQ",
-      "balance": 269494,
+      "balance": 309180,
       "membership_expire_on": 1702666538,
       "next_cert_issuable_on": 1688465816,
       "certs_received": {
@@ -175042,9 +178816,9 @@
     "Emily": {
       "index": 13460,
       "owner_key": "FkFWDQpMNJFrMPTMxn1v8MwqHCCbLs7cxPoXA8TAAo1A",
-      "balance": 5536,
+      "balance": 44922,
       "membership_expire_on": 1724289280,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695994131,
       "certs_received": {
         "Agartha": 1755849878,
         "Clairdelune": 1755847086,
@@ -175056,7 +178830,7 @@
     "Giada": {
       "index": 8679,
       "owner_key": "FkTGEnFRFBX3zEYpZn1GVEWHv6xzAa7tfC7dAExKeTto",
-      "balance": 297329,
+      "balance": 305015,
       "membership_expire_on": 1718933436,
       "next_cert_issuable_on": 1667061371,
       "certs_received": {
@@ -175075,7 +178849,7 @@
     "77ZenAll": {
       "index": 9726,
       "owner_key": "FkW4iM3URxwRkSon54kdD2UDwCqoR9NZXXRx66kzX8xD",
-      "balance": 36291,
+      "balance": 75977,
       "membership_expire_on": 1719316104,
       "next_cert_issuable_on": 1690708284,
       "certs_received": {
@@ -175092,7 +178866,7 @@
     "Fati": {
       "index": 11011,
       "owner_key": "FkXg3CUdsoZb8hmmpmufDbufnhuDXAhCmU6hY4socqQb",
-      "balance": 269099,
+      "balance": 308785,
       "membership_expire_on": 1702163496,
       "next_cert_issuable_on": 1672749847,
       "certs_received": {
@@ -175103,10 +178877,24 @@
         "Tito": 1735179120
       }
     },
+    "TomoeNage": {
+      "index": 13698,
+      "owner_key": "Fkp4PuP22gc5RvDKmkR75xZJ1WZhN1KVCw34RdfjJzWQ",
+      "balance": 21446,
+      "membership_expire_on": 1727115521,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "LaFeeClochette": 1759020817,
+        "Auroise": 1758859485,
+        "IceCaramba": 1758911621,
+        "Benedruide": 1759019790,
+        "Peonia": 1758937706
+      }
+    },
     "GuillaumeD": {
       "index": 12049,
       "owner_key": "FkqJ7RAvUCk5tk5D3bKyrV9fZKwgUdimkkizbidG4Tab",
-      "balance": 171202,
+      "balance": 210888,
       "membership_expire_on": 1710273011,
       "next_cert_issuable_on": 1686657609,
       "certs_received": {
@@ -175138,7 +178926,7 @@
     "Julialan": {
       "index": 12237,
       "owner_key": "FktChvTDsxC48zM79RzTpPY17aYezBURYyv7V84RYe4N",
-      "balance": 201081,
+      "balance": 319961,
       "membership_expire_on": 1712251719,
       "next_cert_issuable_on": 1690794962,
       "certs_received": {
@@ -175155,7 +178943,7 @@
     "YvanLeRoy": {
       "index": 10953,
       "owner_key": "FktJNZ8femvfzoPfiYeB9q1jgzxT3peXCT8DL2Wvuy1E",
-      "balance": 314607,
+      "balance": 354293,
       "membership_expire_on": 1702513464,
       "next_cert_issuable_on": 1671804511,
       "certs_received": {
@@ -175169,7 +178957,7 @@
     "Patricia84": {
       "index": 9821,
       "owner_key": "FktS9Wr1d9Uug4uchynp5Vh7SaQ5rqEBmgVUfWPELZMM",
-      "balance": 552378,
+      "balance": 592064,
       "membership_expire_on": 1724368522,
       "next_cert_issuable_on": 1688354055,
       "certs_received": {
@@ -175186,7 +178974,7 @@
     "Dalyas": {
       "index": 11573,
       "owner_key": "Fkuv4dmdHPNzXHLWjbmgAmF1DpnAmGox3ecnEfXkzk1C",
-      "balance": 244326,
+      "balance": 284012,
       "membership_expire_on": 1707090451,
       "next_cert_issuable_on": 1678698374,
       "certs_received": {
@@ -175202,11 +178990,12 @@
     "jeanmarieforgue": {
       "index": 3546,
       "owner_key": "Fky95GbBRjj6sbkX7CsS3fj7kiqrrEW1vGYeVNoiiHxH",
-      "balance": 594442,
-      "membership_expire_on": 0,
+      "balance": 605222,
+      "membership_expire_on": 1726665684,
       "next_cert_issuable_on": 1659281997,
       "certs_received": {
         "MarieChristineCantagrel": 1705638695,
+        "PhilChamp": 1758530924,
         "Monia": 1707014942,
         "Harout": 1705288602,
         "VivienProuvot": 1705285423
@@ -175231,14 +179020,15 @@
     "Sevdiesse": {
       "index": 5436,
       "owner_key": "FmDb6wRy1if7C5bUkCcR2vnahvYKjnWn6SkWEA1Ah6fP",
-      "balance": 787625,
+      "balance": 827311,
       "membership_expire_on": 1719104350,
       "next_cert_issuable_on": 1690004852,
       "certs_received": {
         "Clo888": 1752975416,
         "Stepharabi": 1752997349,
         "Charlene": 1750662944,
-        "Anamaya": 1699038226,
+        "EveMahe": 1756963235,
+        "Anamaya": 1758380792,
         "valeriedieulefit": 1753226716,
         "MargauxD": 1750662276,
         "ThibautDEPRET": 1752979574,
@@ -175251,9 +179041,9 @@
     "Calou26": {
       "index": 5941,
       "owner_key": "FmGBVBvpoB9p44FQMPtg5kyh2muyxZnT7VPiiFpoffdf",
-      "balance": 613369,
+      "balance": 642655,
       "membership_expire_on": 1718308459,
-      "next_cert_issuable_on": 1691056370,
+      "next_cert_issuable_on": 1695544491,
       "certs_received": {
         "Katiecat": 1711166441,
         "GuyDelarche": 1698362146,
@@ -175266,6 +179056,8 @@
         "ThierryLacaze": 1698202823,
         "Zephy": 1711039900,
         "Mesamours84": 1730946627,
+        "MoraneDicato26": 1759093423,
+        "bernadettegeraud": 1759376150,
         "EveC": 1748036504,
         "Enitra": 1746770933,
         "LoPetitSoleil": 1743232573,
@@ -175282,7 +179074,7 @@
     "catlover11": {
       "index": 12932,
       "owner_key": "FmJVzUWKk2bZbyUCU1DxaqYTyn2pvdkX8cYQz6CTYbQ6",
-      "balance": 87964,
+      "balance": 127650,
       "membership_expire_on": 1717687222,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -175297,7 +179089,7 @@
     "JBM": {
       "index": 5399,
       "owner_key": "FmLDyKUQWfCyEvVnLUkyZJGhth5PuWeA7RCQLULVUTQY",
-      "balance": 951782,
+      "balance": 996868,
       "membership_expire_on": 1712956615,
       "next_cert_issuable_on": 1686744302,
       "certs_received": {
@@ -175325,7 +179117,7 @@
     "BrunoHendricks": {
       "index": 12170,
       "owner_key": "FmR1C8CKvVbhtHQfMbuXHLNMfUcSKJnMnZ8usno4drSJ",
-      "balance": 169472,
+      "balance": 209158,
       "membership_expire_on": 1711628833,
       "next_cert_issuable_on": 1683729135,
       "certs_received": {
@@ -175349,7 +179141,7 @@
     "Jesuisnaja": {
       "index": 10970,
       "owner_key": "Fmiq9Hdf9VEkvsJAwrk2sbwofa9qNpCNVs14cNZqnh5e",
-      "balance": 249239,
+      "balance": 288925,
       "membership_expire_on": 1703097039,
       "next_cert_issuable_on": 1688700717,
       "certs_received": {
@@ -175377,7 +179169,7 @@
     "AnadiaJacqueline": {
       "index": 10738,
       "owner_key": "FmjPYN5KN6wikNn7MbdDch5rg3nowwUG9kv889zYJ1Di",
-      "balance": 314220,
+      "balance": 353906,
       "membership_expire_on": 1701282962,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -175401,7 +179193,7 @@
     "Buellton89": {
       "index": 7387,
       "owner_key": "FmqxovcC976r8vUJ3BmuAzGGMgeUnmFE8jGjz3a51ee8",
-      "balance": 477561,
+      "balance": 497247,
       "membership_expire_on": 1704913576,
       "next_cert_issuable_on": 1688287124,
       "certs_received": {
@@ -175428,8 +179220,8 @@
     "Sophie31": {
       "index": 9904,
       "owner_key": "Fmv7DH9phwTaqcVHVoVHQszDVsVj3pBEf7Lxa732VpTp",
-      "balance": 591583,
-      "membership_expire_on": 1694458775,
+      "balance": 603331,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675004678,
       "certs_received": {
         "Priscilla31": 1728024647,
@@ -175466,9 +179258,9 @@
     "Marijopelirroja": {
       "index": 13130,
       "owner_key": "FmxcEzWtam3p7rsUgHD6kf8JeY6CokjQwBrdvS7b43mk",
-      "balance": 88836,
+      "balance": 148922,
       "membership_expire_on": 1720459138,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696774531,
       "certs_received": {
         "jilguero": 1752017346,
         "Abejitajaimita": 1752094839,
@@ -175480,7 +179272,7 @@
     "Faustin": {
       "index": 7754,
       "owner_key": "Fmy6RxB2NsXbcPyxvDoKuoyXMFSnxJpKpgNzrvPVjfbz",
-      "balance": 328684,
+      "balance": 368370,
       "membership_expire_on": 1701727370,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -175502,9 +179294,9 @@
     "Ninette89": {
       "index": 8260,
       "owner_key": "Fn9Q2ZSxKmpqmnZiHDcuPQhrYFARUbD3YvTpbBQw1f4F",
-      "balance": 152140,
+      "balance": 23826,
       "membership_expire_on": 1710933287,
-      "next_cert_issuable_on": 1692028695,
+      "next_cert_issuable_on": 1696395784,
       "certs_received": {
         "Isabelleverte": 1726448997,
         "Icaunaise": 1729399095,
@@ -175561,9 +179353,9 @@
     "Siellevie": {
       "index": 7193,
       "owner_key": "FnHudnbwCVUnRCY1wUjUrsj6KUCAqmxeYucue642F9eM",
-      "balance": 659621,
+      "balance": 674307,
       "membership_expire_on": 1707868780,
-      "next_cert_issuable_on": 1661304994,
+      "next_cert_issuable_on": 1696213487,
       "certs_received": {
         "Sylviane79": 1709683536,
         "fredo79": 1709682341,
@@ -175577,7 +179369,7 @@
     "Pulcinella81170": {
       "index": 11885,
       "owner_key": "FnLsVu51ioPeN1bJbkL97qs7fQbmoMvPf2ML1deqvkW4",
-      "balance": 257869,
+      "balance": 258355,
       "membership_expire_on": 1707929969,
       "next_cert_issuable_on": 1687530724,
       "certs_received": {
@@ -175606,7 +179398,7 @@
     "Lafeemilie89": {
       "index": 9264,
       "owner_key": "FnPUmtUEZeUXUnaajETUsybCUNYhfHbuZfercaiUypbi",
-      "balance": 405411,
+      "balance": 445097,
       "membership_expire_on": 1718569190,
       "next_cert_issuable_on": 1668609962,
       "certs_received": {
@@ -175623,7 +179415,7 @@
     "RemiBougeant": {
       "index": 162,
       "owner_key": "FnSXE7QyBfs4ozoYAt5NEewWhHEPorf38cNXu3kX9xsg",
-      "balance": 1843248,
+      "balance": 1882934,
       "membership_expire_on": 1714697198,
       "next_cert_issuable_on": 1666019358,
       "certs_received": {
@@ -175637,9 +179429,9 @@
     "FranceAffidi": {
       "index": 4758,
       "owner_key": "FnYdUzW2GqJrfon7H7et8KsQo7AZj8DxyswYxkRzL6hD",
-      "balance": 1067627,
+      "balance": 1107313,
       "membership_expire_on": 1711715473,
-      "next_cert_issuable_on": 1687568517,
+      "next_cert_issuable_on": 1696468927,
       "certs_received": {
         "Etipol61": 1746292571,
         "MarieBouny": 1701120450,
@@ -175656,9 +179448,9 @@
     "Coolga5575": {
       "index": 6275,
       "owner_key": "Fnb2fic6XZdWyrEppycMxYjthx6Z9pFEDHVvMGzAsYkX",
-      "balance": 477299,
+      "balance": 516985,
       "membership_expire_on": 1722526926,
-      "next_cert_issuable_on": 1691325759,
+      "next_cert_issuable_on": 1696316279,
       "certs_received": {
         "hirondelle": 1731087019,
         "rockwater": 1721273058,
@@ -175688,6 +179480,7 @@
         "ROVER5537": 1720453569,
         "GaelleGayatri": 1734729869,
         "Dionysos": 1699076533,
+        "Daurelia": 1759467713,
         "Olivia_C": 1749767793,
         "Fredamour": 1717381390,
         "Domi-Merlinou": 1754972071
@@ -175696,7 +179489,7 @@
     "Nedj71": {
       "index": 7548,
       "owner_key": "Fnb3LH8J5hwfJi1xZmGW54CGy14jNFPsmYZ3ybntKjX6",
-      "balance": 546337,
+      "balance": 586023,
       "membership_expire_on": 1712836424,
       "next_cert_issuable_on": 1654065715,
       "certs_received": {
@@ -175710,7 +179503,7 @@
     "Mumu": {
       "index": 6181,
       "owner_key": "Fncr2UhUnn2fA6YbLfkv1cPHfsnQniG3jPEa3xyaoknh",
-      "balance": 643546,
+      "balance": 683232,
       "membership_expire_on": 1699473692,
       "next_cert_issuable_on": 1648701396,
       "certs_received": {
@@ -175724,7 +179517,7 @@
     "Mia": {
       "index": 8399,
       "owner_key": "FndA5yEvJ5uNhmDdcwwquNtY4UjQr4Aha8VEnEYaPpvr",
-      "balance": 35485,
+      "balance": 70171,
       "membership_expire_on": 1711243885,
       "next_cert_issuable_on": 1688367723,
       "certs_received": {
@@ -175780,7 +179573,7 @@
     "BelGambette": {
       "index": 10866,
       "owner_key": "FnhMPARbg18KFPrfguF9CVsnJ2MrSrykrixnGkt4ZrW1",
-      "balance": 275279,
+      "balance": 314965,
       "membership_expire_on": 1699712671,
       "next_cert_issuable_on": 1680354418,
       "certs_received": {
@@ -175796,9 +179589,9 @@
     "NathalieDard": {
       "index": 8254,
       "owner_key": "FnoEGghvPsBq1M5sF41sbtPq12AsNoY5PGNj9akNdDqE",
-      "balance": 427795,
+      "balance": 528181,
       "membership_expire_on": 1708460169,
-      "next_cert_issuable_on": 1693288996,
+      "next_cert_issuable_on": 1693627423,
       "certs_received": {
         "Celiane": 1715557106,
         "Julia": 1730893878,
@@ -175813,7 +179606,7 @@
     "LoreParodi": {
       "index": 8499,
       "owner_key": "FnsSCJifiwdaXbE6iv8kANwvB5FpTM7g4xwYqaAHaLsC",
-      "balance": 242109,
+      "balance": 240795,
       "membership_expire_on": 1713706282,
       "next_cert_issuable_on": 1679451223,
       "certs_received": {
@@ -175835,11 +179628,12 @@
     "HoefmansC": {
       "index": 7462,
       "owner_key": "Fnsj2TWWewrFqJquMDVThXfijMJdLWbQTwCWxWmhhcEc",
-      "balance": 470615,
+      "balance": 480801,
       "membership_expire_on": 1714150777,
       "next_cert_issuable_on": 1687924614,
       "certs_received": {
         "DelphineG": 1711673371,
+        "prevotfran5310": 1758760908,
         "Kan13ahau": 1711677505,
         "Insa": 1711700235,
         "NagNag": 1711701436,
@@ -175862,7 +179656,7 @@
     "Yann888": {
       "index": 10140,
       "owner_key": "FnveKXorxoM3daDUifnDtgUekSh5j4ufrDrWKZJPcf49",
-      "balance": 326562,
+      "balance": 366248,
       "membership_expire_on": 1697915555,
       "next_cert_issuable_on": 1678364165,
       "certs_received": {
@@ -175879,19 +179673,20 @@
     "AstridG": {
       "index": 6127,
       "owner_key": "Fo15TqVnG2zRegzgv7mvj5mMgeTP4opgd2bv7sHH1RuF",
-      "balance": 644887,
-      "membership_expire_on": 1694731771,
-      "next_cert_issuable_on": 1671621275,
+      "balance": 684573,
+      "membership_expire_on": 1725324524,
+      "next_cert_issuable_on": 1694087546,
       "certs_received": {
         "adridu38": 1700204787,
         "NopamasYC": 1750376763,
+        "SandRA": 1757130746,
         "ThierryS": 1746114302,
         "MioPalmon988": 1709393606,
         "Guillaumebodhi": 1699909833,
         "Bap": 1700225924,
         "christine": 1700256314,
         "LEL": 1721372489,
-        "LaurentM": 1700004427,
+        "LaurentM": 1756925118,
         "AlexandraBertrand": 1699924001
       }
     },
@@ -175914,7 +179709,7 @@
     "LilAna": {
       "index": 2313,
       "owner_key": "FoKZSY8NCFtXQ3hG2RcRCyjTbwQRLVX2P8jFp13wvYzB",
-      "balance": 549171,
+      "balance": 588857,
       "membership_expire_on": 1720919839,
       "next_cert_issuable_on": 1676857499,
       "certs_received": {
@@ -175927,10 +179722,25 @@
         "MatisChancellier": 1752487482
       }
     },
+    "Murgjhy": {
+      "index": 13657,
+      "owner_key": "FoMF2fNSJWykA2w36MUWm9HnVN3Mk5FjiCq4U3r9Y5Mx",
+      "balance": 32936,
+      "membership_expire_on": 1725828109,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "monique79": 1758425990,
+        "fredo79": 1758425689,
+        "SYBON": 1758425689,
+        "Micheleverseau": 1758427844,
+        "Val79": 1758761956,
+        "Laburg79": 1758430374
+      }
+    },
     "Pieromao": {
       "index": 4686,
       "owner_key": "FoVHwQTjnZadWm5zLNh67xVJyQT4CM7mLumZtoAC9igp",
-      "balance": 616173,
+      "balance": 655859,
       "membership_expire_on": 1711285732,
       "next_cert_issuable_on": 1680428106,
       "certs_received": {
@@ -175944,7 +179754,7 @@
     "Algebre38": {
       "index": 12029,
       "owner_key": "FoVbnzZYADqpEeMiAD9qkqP2WTahzuzX1J9HLczMZpXa",
-      "balance": 177261,
+      "balance": 216947,
       "membership_expire_on": 1708562552,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -175959,7 +179769,7 @@
     "Maxande": {
       "index": 11736,
       "owner_key": "Fohy1K7VLkJQ3w89SZbLhctEVVuVnZjHBJQkcmf8cAYo",
-      "balance": 216618,
+      "balance": 243804,
       "membership_expire_on": 1708730382,
       "next_cert_issuable_on": 1680095177,
       "certs_received": {
@@ -175974,9 +179784,9 @@
     "Bigoudi888": {
       "index": 7375,
       "owner_key": "Foi9TebFKQQ3W3wdigrk3HZ6GBpyAdixG4iwHF26Q8yZ",
-      "balance": 251613,
+      "balance": 227299,
       "membership_expire_on": 1707745723,
-      "next_cert_issuable_on": 1684159965,
+      "next_cert_issuable_on": 1695964185,
       "certs_received": {
         "LovingCompassion": 1710319075,
         "haddock": 1709693513,
@@ -175989,7 +179799,7 @@
     "Furiforce": {
       "index": 8744,
       "owner_key": "FojynB9ocZLQ4QeNysNvSYCQdsA7Big5RzWx5x8LUoLZ",
-      "balance": 453710,
+      "balance": 493396,
       "membership_expire_on": 1717719727,
       "next_cert_issuable_on": 1677558607,
       "certs_received": {
@@ -176030,16 +179840,14 @@
       "balance": 635213,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Jovivant": 1694726315
-      }
+      "certs_received": {}
     },
     "chronophonix": {
       "index": 2690,
       "owner_key": "FpAi3xR2PueMfNUQCZQVc9DkbaMt1184KNDdii4iA9Z7",
-      "balance": 995921,
+      "balance": 1035607,
       "membership_expire_on": 1717529785,
-      "next_cert_issuable_on": 1693500654,
+      "next_cert_issuable_on": 1695836337,
       "certs_received": {
         "Sev": 1710312109,
         "Antoin9": 1754697572,
@@ -176085,14 +179893,15 @@
     "Samsara": {
       "index": 10977,
       "owner_key": "FpCAybHHGrbQmNtozZATejY3WmvzAMsH9GZHfXbt6qML",
-      "balance": 278276,
-      "membership_expire_on": 1699995642,
-      "next_cert_issuable_on": 1677646427,
+      "balance": 612702,
+      "membership_expire_on": 1726430556,
+      "next_cert_issuable_on": 1696232837,
       "certs_received": {
         "Cristol-Iquid": 1731566785,
         "IrisBleu": 1731635120,
         "ELEOTIE": 1731825401,
         "Vally31": 1734061848,
+        "CelineRenou": 1759274860,
         "lto31": 1734069694,
         "Yanoc": 1740689383,
         "PhilCominges": 1739925586,
@@ -176102,7 +179911,7 @@
     "viid971": {
       "index": 12481,
       "owner_key": "FpDMNDg1hLVpPNJyXHTMVgHb8eFjSCiG5H9Xj8rxziix",
-      "balance": 120500,
+      "balance": 173464,
       "membership_expire_on": 1714299675,
       "next_cert_issuable_on": 1684985939,
       "certs_received": {
@@ -176116,7 +179925,7 @@
     "Jalil29": {
       "index": 11679,
       "owner_key": "FpDu8gXcAaQbYT5McTrwZjbKTB6t7nmqtgEt3zLDLb34",
-      "balance": 365761,
+      "balance": 405447,
       "membership_expire_on": 1708307680,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -176130,8 +179939,8 @@
     "SuivreLETOILE": {
       "index": 9712,
       "owner_key": "FpEjews5f9D5UoUnc9bBp45eUiuWsfcFHq53pRybb9ie",
-      "balance": 363350,
-      "membership_expire_on": 1695343995,
+      "balance": 385788,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1682490636,
       "certs_received": {
         "BOUbou007": 1727493503,
@@ -176145,7 +179954,7 @@
     "VajraBleu": {
       "index": 9243,
       "owner_key": "FpGxhJdNxTshRyT27bffRmx43RpRdtQWJimkudXezA4U",
-      "balance": 499462,
+      "balance": 539148,
       "membership_expire_on": 1722095531,
       "next_cert_issuable_on": 1680854314,
       "certs_received": {
@@ -176161,7 +179970,7 @@
     "Calypsy": {
       "index": 12449,
       "owner_key": "FpPXi1iSTK5t1meMVZHi3geQVuk5Lukjnu5tDL9qDKCu",
-      "balance": 143604,
+      "balance": 183290,
       "membership_expire_on": 1713915707,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -176184,7 +179993,7 @@
     "Ognimod": {
       "index": 8732,
       "owner_key": "FpUskeNZukcTsybR2G4U5GNj9t9B5TXeSXUxqQu96XKU",
-      "balance": 439873,
+      "balance": 479559,
       "membership_expire_on": 1719839968,
       "next_cert_issuable_on": 1668650359,
       "certs_received": {
@@ -176198,7 +180007,7 @@
     "borealain": {
       "index": 2512,
       "owner_key": "FpUuRppFUiScrb2BM9v8uGJGBjCrEteZTWggD7HV8bNT",
-      "balance": 83304,
+      "balance": 122990,
       "membership_expire_on": 1718284310,
       "next_cert_issuable_on": 1685849610,
       "certs_received": {
@@ -176215,7 +180024,7 @@
     "PatRok": {
       "index": 7163,
       "owner_key": "FpVbW2TZpiMzLMr2QR24Qy5hBUh5eHMB8c49RGpzzcCv",
-      "balance": 588339,
+      "balance": 628025,
       "membership_expire_on": 1705336791,
       "next_cert_issuable_on": 1675512905,
       "certs_received": {
@@ -176233,13 +180042,14 @@
     "CyyP": {
       "index": 6669,
       "owner_key": "FpayX8zEHYdbrfNsBmREqV1qyQHhVMdYGGe4ooddZ92V",
-      "balance": 312154,
-      "membership_expire_on": 1700496879,
+      "balance": 351840,
+      "membership_expire_on": 1727566897,
       "next_cert_issuable_on": 1685699960,
       "certs_received": {
         "JeromeGolliet": 1717736843,
         "Ninamaste": 1727107872,
         "BenedicteRad": 1750709576,
+        "Marieta": 1756745676,
         "Mathilde07": 1707178490,
         "Zoulya": 1705621283,
         "Mimi-miaou": 1734842624,
@@ -176258,11 +180068,12 @@
     "Alain-Plantes": {
       "index": 5903,
       "owner_key": "Fpb4ZZFoPEUXiE1H4rzKRfSS1fp1KoJU33mN6nUT83wF",
-      "balance": 712335,
+      "balance": 752021,
       "membership_expire_on": 1723085993,
       "next_cert_issuable_on": 1691600583,
       "certs_received": {
         "Bcabon": 1696924086,
+        "Princesse": 1756607798,
         "pascalpioline": 1697003561,
         "EveJOURDIN": 1698718490,
         "Laula": 1697659120,
@@ -176271,7 +180082,8 @@
         "ElodiePichereau": 1701216237,
         "SergeMascaro": 1697237093,
         "RoselyneBinesse": 1698263632,
-        "Nomadanne": 1697178178,
+        "Nomadanne": 1756607798,
+        "AbelGilles": 1756607434,
         "Cath44": 1735061777,
         "Sylvere72": 1752512693
       }
@@ -176287,7 +180099,7 @@
     "Clotilde": {
       "index": 12208,
       "owner_key": "FpgjEcupZtu3TSBP3ZFXYYTEYNBeU1c37mmNxwMrecUn",
-      "balance": 160300,
+      "balance": 199986,
       "membership_expire_on": 1711628259,
       "next_cert_issuable_on": 1681885034,
       "certs_received": {
@@ -176309,33 +180121,36 @@
     "AnnieP38": {
       "index": 7495,
       "owner_key": "FpmcFcFx6C95zbPW7wzPqdByFZZxCmRGevbvFwsmauTe",
-      "balance": 361553,
+      "balance": 391239,
       "membership_expire_on": 1709231898,
-      "next_cert_issuable_on": 1692081209,
+      "next_cert_issuable_on": 1696498965,
       "certs_received": {
         "Bich": 1711137931,
         "Crystal": 1711173077,
         "GuyPeq11": 1711055078,
         "MIDO": 1752974704,
+        "Babouille11": 1758650819,
         "Artdevivre": 1751750513,
         "Etoiledunord": 1717737806,
         "CecileBeaulieu": 1752974704,
         "flo": 1711085224,
         "OceaneAvril": 1711837899,
         "Urticia": 1740789188,
+        "Cocoyarouge": 1757829125,
         "steff": 1711085889
       }
     },
     "clodclef": {
       "index": 10257,
       "owner_key": "Fpr4tB15AmzzBmrWtDCA35drbSRxeoUHww1M1ML62ajU",
-      "balance": 56090,
+      "balance": 116276,
       "membership_expire_on": 1724200947,
-      "next_cert_issuable_on": 1692715698,
+      "next_cert_issuable_on": 1695777639,
       "certs_received": {
         "Niranjana": 1730518646,
         "AKOUNAMATATA": 1754291531,
         "MarcGenet": 1741851441,
+        "martinfray": 1757751278,
         "Helsephine": 1727769094,
         "JMa": 1736569929,
         "lumi": 1741493182,
@@ -176351,7 +180166,7 @@
     "Passy": {
       "index": 6498,
       "owner_key": "Fpv6XE1LXStwf2gYLJy25Q6FnSLDzkVxxA85GgCMf6oP",
-      "balance": 595099,
+      "balance": 580885,
       "membership_expire_on": 1708351745,
       "next_cert_issuable_on": 1690525466,
       "certs_received": {
@@ -176376,7 +180191,7 @@
     "Schar": {
       "index": 11543,
       "owner_key": "Fq6xrem1pmcSHQqhTPtcprLAySZhs6iEJZZEzzJNvvay",
-      "balance": 216425,
+      "balance": 194167,
       "membership_expire_on": 1707099677,
       "next_cert_issuable_on": 1676184640,
       "certs_received": {
@@ -176392,7 +180207,7 @@
     "ISAParadis": {
       "index": 10071,
       "owner_key": "Fq7MwgYQH2YYHpCG7xx9KT4N71cH9xmhtJdXo25bnqAv",
-      "balance": 291316,
+      "balance": 322502,
       "membership_expire_on": 1724848069,
       "next_cert_issuable_on": 1689472168,
       "certs_received": {
@@ -176431,7 +180246,7 @@
     "JorgeDraven": {
       "index": 11035,
       "owner_key": "FqGYksTFqJwyz419iPqvoA7JeqqTfKrP266iYBLFsARu",
-      "balance": 288099,
+      "balance": 327785,
       "membership_expire_on": 1702573268,
       "next_cert_issuable_on": 1692706044,
       "certs_received": {
@@ -176443,6 +180258,7 @@
         "GuilhermeLopes": 1747412037,
         "FranciscoVenda": 1751008611,
         "Kristo": 1735004874,
+        "Luis_Varela": 1759386409,
         "Judit137": 1737619069,
         "anapatapouf": 1743165611,
         "PatriciaDoVale": 1753420875,
@@ -176501,9 +180317,9 @@
     "SylvainFleury": {
       "index": 11230,
       "owner_key": "FqJxjvKBJXEQiKmEVDWCeqhr9rT41UrNWqFM9dhpyXjh",
-      "balance": 222519,
+      "balance": 257205,
       "membership_expire_on": 1702224958,
-      "next_cert_issuable_on": 1673855807,
+      "next_cert_issuable_on": 1694844803,
       "certs_received": {
         "stephanieguillem": 1736897167,
         "Cavalier07": 1733906231,
@@ -176516,7 +180332,7 @@
     "Lolynx": {
       "index": 6796,
       "owner_key": "FqT9SLMPy7vmvm9C7Xm6bu3UV48hyg3R3w5tWKUjtYpb",
-      "balance": 613347,
+      "balance": 653033,
       "membership_expire_on": 1700337460,
       "next_cert_issuable_on": 1678288105,
       "certs_received": {
@@ -176547,7 +180363,7 @@
     "rmahdaouikia": {
       "index": 1954,
       "owner_key": "FqUGNcXYZbfsfrjmSw9U15j8EMdbqSfanfNBFUCnQjn1",
-      "balance": 112741,
+      "balance": 152427,
       "membership_expire_on": 1710795498,
       "next_cert_issuable_on": 1684143243,
       "certs_received": {
@@ -176570,25 +180386,23 @@
     "SolennLG": {
       "index": 5589,
       "owner_key": "Fqe2qvnYsZL8awnpE6yqnBpKprM3Lq6rKmyhEpQvzk5u",
-      "balance": 711150,
-      "membership_expire_on": 1695562309,
+      "balance": 752842,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1664633060,
       "certs_received": {
         "Katiecat": 1749376548,
         "Minouche": 1749433344,
         "Laureline": 1749484899,
-        "Zephy": 1693609408,
         "Maelline": 1743819922,
-        "PierreMarcherat": 1693599956,
         "RemiLG": 1703205902,
         "Beata": 1749432787,
-        "OrAnge": 1693594230
+        "Alicia05": 1756344798
       }
     },
     "StephanePerrin": {
       "index": 11530,
       "owner_key": "FqgcceAXvw36h7P9ZH4ri7JtKML6umkUysP5PDWm7arZ",
-      "balance": 118679,
+      "balance": 108665,
       "membership_expire_on": 1706469671,
       "next_cert_issuable_on": 1684501324,
       "certs_received": {
@@ -176607,7 +180421,7 @@
     "AgglaeLaFee": {
       "index": 6631,
       "owner_key": "FqhJ6yrNj3kLLG9s6G7fbwwYSq7dp5USRvtkph6yDZZT",
-      "balance": 477719,
+      "balance": 517405,
       "membership_expire_on": 1698326711,
       "next_cert_issuable_on": 1691585747,
       "certs_received": {
@@ -176624,9 +180438,9 @@
     "JoaoLestro": {
       "index": 12549,
       "owner_key": "FqmfzavVcJVmDYJQGb6QvPjN1pN7LZGKHbxPxf129bkF",
-      "balance": 121024,
+      "balance": 160710,
       "membership_expire_on": 1713805007,
-      "next_cert_issuable_on": 1690535976,
+      "next_cert_issuable_on": 1696346860,
       "certs_received": {
         "Ferpires": 1751596307,
         "RitApolinario": 1747891466,
@@ -176642,13 +180456,14 @@
         "JorgeDraven": 1752096694,
         "ElisabeteMartins": 1746257280,
         "Alessandra": 1752398871,
-        "Kian": 1746338742
+        "Kian": 1746338742,
+        "ManuelSoares": 1757202104
       }
     },
     "LeaLorion": {
       "index": 9502,
       "owner_key": "Fr6cVgT3kviRKtHpKYqyuNpTmRf6z16wUZCZv4hAaUta",
-      "balance": 378238,
+      "balance": 410924,
       "membership_expire_on": 1723569054,
       "next_cert_issuable_on": 1677031210,
       "certs_received": {
@@ -176672,8 +180487,8 @@
     "Muktananda": {
       "index": 6009,
       "owner_key": "Fr7ZbpS9zxMwzs8UuCAaCUufEeqdqN37noWCG2YbamSw",
-      "balance": 513374,
-      "membership_expire_on": 1698798191,
+      "balance": 553060,
+      "membership_expire_on": 1727434275,
       "next_cert_issuable_on": 1677075783,
       "certs_received": {
         "CatherinePerma": 1699161709,
@@ -176692,13 +180507,15 @@
     "Mimadey": {
       "index": 6536,
       "owner_key": "Fr974Yx8HMrrUTf93GiZaZCjvWmcQPwgiLZ6kh8xayo6",
-      "balance": 838331,
+      "balance": 870917,
       "membership_expire_on": 1702495720,
       "next_cert_issuable_on": 1671882367,
       "certs_received": {
+        "Monette": 1759728274,
         "stephanieguillem": 1703629123,
         "Nat317": 1703225245,
         "Eli-g": 1726818359,
+        "Gigimit57": 1759726892,
         "Guillemyannick": 1703221810,
         "DamienLG": 1703489781,
         "Fred04": 1703475300,
@@ -176708,15 +180525,16 @@
     "FloP": {
       "index": 5891,
       "owner_key": "Fr9XTH26kFBeRFPbbdoo5qFJikb54Y13BBiY4fErCpxi",
-      "balance": 613421,
+      "balance": 633107,
       "membership_expire_on": 1717674323,
-      "next_cert_issuable_on": 1693492320,
+      "next_cert_issuable_on": 1696057588,
       "certs_received": {
         "Sev": 1703394929,
         "Denismarcel": 1698113489,
         "Ghadjo": 1697493890,
         "LouiseRun": 1706425506,
         "issandrol": 1740379438,
+        "JulieBeauvois": 1758344978,
         "Freemax": 1698113489,
         "Vievillejp": 1697493890,
         "JuanLu": 1702493948,
@@ -176736,7 +180554,7 @@
     "Moo": {
       "index": 8617,
       "owner_key": "FrF3a2yGCCu9RR87XA5Gg9oF8e7KjJPsrMLpdBH9tgp6",
-      "balance": 379662,
+      "balance": 419348,
       "membership_expire_on": 1716988699,
       "next_cert_issuable_on": 1679839574,
       "certs_received": {
@@ -176757,7 +180575,7 @@
     "Atharreau": {
       "index": 6296,
       "owner_key": "FrK9SScStZcyiJDWkkxHCiSj53WZ7LGe7tpZpgJhYQr9",
-      "balance": 446315,
+      "balance": 486001,
       "membership_expire_on": 1721775582,
       "next_cert_issuable_on": 1688284127,
       "certs_received": {
@@ -176780,15 +180598,17 @@
     "LaChenille": {
       "index": 12665,
       "owner_key": "FrKXP3aJG4wmBheYK1AmutdUxGtaSnKbWjHzjFR9nuvr",
-      "balance": 93235,
+      "balance": 105121,
       "membership_expire_on": 1715816593,
-      "next_cert_issuable_on": 1690813505,
+      "next_cert_issuable_on": 1694659726,
       "certs_received": {
         "carmenchu_almacristal": 1747372939,
         "Belobal": 1747372939,
         "AngelMacksimilia": 1747383744,
         "EstefaniaLopez": 1747374817,
         "Abejitajaimita": 1753160259,
+        "botera75": 1757705575,
+        "vivelavidaconpasion": 1759525290,
         "Guiomar": 1747378170,
         "Alberto": 1747372939,
         "GRUKSY": 1747372633
@@ -176797,7 +180617,7 @@
     "VincentGranger": {
       "index": 7414,
       "owner_key": "FrN8yhKJD7TH5nAD4mXtdxs38cXd84L1jsB7nCDk8N35",
-      "balance": 453499,
+      "balance": 493185,
       "membership_expire_on": 1719354584,
       "next_cert_issuable_on": 1654004808,
       "certs_received": {
@@ -176814,7 +180634,7 @@
     "Cat27": {
       "index": 13380,
       "owner_key": "FrNbkbWZ9qvWVc9xUyDKc2GP5UtB3P8nkVWHDmrvDCNn",
-      "balance": 20720,
+      "balance": 50406,
       "membership_expire_on": 1723476514,
       "next_cert_issuable_on": 1692934206,
       "certs_received": {
@@ -176836,8 +180656,8 @@
     "Rio": {
       "index": 4391,
       "owner_key": "FrdGHSMJvt1XNg2dNK7YHfXTqeSdFEkTRxP2rptfTocj",
-      "balance": 277741,
-      "membership_expire_on": 1694633280,
+      "balance": 291625,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1676560017,
       "certs_received": {
         "carmela": 1699502119,
@@ -176849,16 +180669,15 @@
         "tuttle": 1714699720,
         "tereseta": 1737767982,
         "Koldo": 1698184759,
-        "Seminare0612": 1737724087,
-        "SandraHeleno": 1695704274
+        "Seminare0612": 1737724087
       }
     },
     "SamueLL": {
       "index": 10350,
       "owner_key": "FreNmTYeTJejiYNREdf7A8M9LAKYEPFtKU7A7iJwNPLB",
-      "balance": 135877,
-      "membership_expire_on": 1700000202,
-      "next_cert_issuable_on": 1688981032,
+      "balance": 100563,
+      "membership_expire_on": 1727727853,
+      "next_cert_issuable_on": 1696242253,
       "certs_received": {
         "RomainKornig": 1750742967,
         "Atianax": 1731558407,
@@ -176873,7 +180692,7 @@
     "Moi_C_Olivier": {
       "index": 11020,
       "owner_key": "Frr1MGDM12Mq9nRJSKiV24W3MRpgftniYGj1iZCQALEN",
-      "balance": 158204,
+      "balance": 173370,
       "membership_expire_on": 1703686416,
       "next_cert_issuable_on": 1689420530,
       "certs_received": {
@@ -176897,7 +180716,7 @@
     "Maud": {
       "index": 11341,
       "owner_key": "Fru9zn5ZPBR1shmUtRQsXzF98YkhSWsAREFhtfuHysgB",
-      "balance": 128388,
+      "balance": 168074,
       "membership_expire_on": 1705319395,
       "next_cert_issuable_on": 1690176825,
       "certs_received": {
@@ -176912,7 +180731,7 @@
     "adriaverfeil": {
       "index": 4404,
       "owner_key": "FryDAoxR4c4CPL36FXRWRt7DhCLtGHT3cucavsd3m7a3",
-      "balance": 670894,
+      "balance": 710580,
       "membership_expire_on": 1699468019,
       "next_cert_issuable_on": 1678695423,
       "certs_received": {
@@ -176937,7 +180756,7 @@
     "FLORINDA": {
       "index": 10387,
       "owner_key": "FrzxHXscnYMFDhDPTfHksYKUmCiLSN1sGeTP9yvbBw6d",
-      "balance": 295869,
+      "balance": 335555,
       "membership_expire_on": 1698592317,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -176961,7 +180780,7 @@
     "DanielFRrancoisEVRARD": {
       "index": 10703,
       "owner_key": "FsAZ2GY3vCtM6SLnQ7Q9hfmtJ7SDsg5Tk8FdwpyDzuqq",
-      "balance": 331854,
+      "balance": 371540,
       "membership_expire_on": 1701467207,
       "next_cert_issuable_on": 1683121321,
       "certs_received": {
@@ -176978,10 +180797,11 @@
     "AurelienMarcherat": {
       "index": 3677,
       "owner_key": "FsC9pwJQ9Xc28D6EbNF4cNUGQFaBiqo8mbestTBytSRZ",
-      "balance": 1188971,
+      "balance": 1206657,
       "membership_expire_on": 1710244944,
       "next_cert_issuable_on": 1690637002,
       "certs_received": {
+        "Nathalie_Robin": 1757438702,
         "Katiecat": 1743314007,
         "AnnaM": 1715333599,
         "valdedrome26": 1732609158,
@@ -176998,7 +180818,7 @@
     "Marie-HeleneH": {
       "index": 10450,
       "owner_key": "FsDSLCseiXVkfWjWn5n1LJM6qQfKesJoWq7jwruBuBe4",
-      "balance": 302223,
+      "balance": 341909,
       "membership_expire_on": 1698153562,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -177013,9 +180833,9 @@
     "tomval83": {
       "index": 3673,
       "owner_key": "FsEXnEXskAvqn2zZc9i7ERVD9PHFrU4iqB2wt8koJXgy",
-      "balance": 28001,
+      "balance": 76551,
       "membership_expire_on": 1724635159,
-      "next_cert_issuable_on": 1691553033,
+      "next_cert_issuable_on": 1696339076,
       "certs_received": {
         "Basile83": 1726201251,
         "ScarlettGabrielle_8": 1729625929,
@@ -177024,12 +180844,10 @@
         "pacifikveronique": 1707770449,
         "NAGIOWOTALA": 1733267817,
         "Robin_et_Odile": 1702768642,
-        "IngridCourreges": 1696421398,
         "Tchois": 1713057324,
         "Cheyennegaia": 1721430700,
         "Sylvierosartetculture": 1730451674,
         "Permaor": 1709082804,
-        "SoNyA": 1693875530,
         "Scilla": 1743473230,
         "ImbertPaul13": 1710365317,
         "katialabomatik": 1718946841,
@@ -177053,15 +180871,16 @@
         "Tanagra": 1723612050,
         "Hdsaf": 1736229115,
         "Val83": 1725579140,
+        "erickiz006": 1756855687,
         "Ethersource83": 1698792632
       }
     },
     "VeroniqueB": {
       "index": 7872,
       "owner_key": "FsGNuaAhk3dLvvroKB7hbJfRrF2hyEnid6LpoQazHSok",
-      "balance": 456980,
+      "balance": 292666,
       "membership_expire_on": 1720040469,
-      "next_cert_issuable_on": 1688735504,
+      "next_cert_issuable_on": 1696811527,
       "certs_received": {
         "laurienza": 1715151724,
         "BriceV": 1713928294,
@@ -177079,7 +180898,7 @@
     "Bastien6238": {
       "index": 12964,
       "owner_key": "FsHtUY7nej7iYfJWdgiXbKGRMQ4DfQWdi1ZUcFmhnes5",
-      "balance": 92272,
+      "balance": 131958,
       "membership_expire_on": 1719079801,
       "next_cert_issuable_on": 1690116308,
       "certs_received": {
@@ -177094,7 +180913,7 @@
     "Yann35": {
       "index": 11077,
       "owner_key": "FsL7wghjipVmG224SabymK3hqty8B5otJbgE6Qq9LmnQ",
-      "balance": 279524,
+      "balance": 319210,
       "membership_expire_on": 1701124497,
       "next_cert_issuable_on": 1691804264,
       "certs_received": {
@@ -177113,11 +180932,12 @@
     "ElisaDesFougeres": {
       "index": 6573,
       "owner_key": "FsLLDrjDTMEi3TfX1BsT3ktMNpUa4kLAZCSTXQzaytoM",
-      "balance": 817064,
+      "balance": 806554,
       "membership_expire_on": 1724997289,
-      "next_cert_issuable_on": 1691120908,
+      "next_cert_issuable_on": 1695693150,
       "certs_received": {
         "DBuxerolle": 1745708156,
+        "LAURENCEBZ": 1759244694,
         "Stephaneon": 1716002467,
         "ChristianDelaunay": 1703308595,
         "mimi": 1737431165,
@@ -177131,7 +180951,8 @@
         "Filou": 1753928948,
         "JulienGermain": 1733272451,
         "Cleo59": 1753568335,
-        "DidierPapillon": 1703653685,
+        "DidierPapillon": 1758996866,
+        "PascaleRoncoroni": 1758176809,
         "MessagereDeLumiere": 1737081176,
         "Mimage": 1721008927,
         "mabboux": 1739756324,
@@ -177141,9 +180962,9 @@
     "Renefaby": {
       "index": 6158,
       "owner_key": "FsN2FKRhL9NwPMVRadk7UAUY4Zy125REMx99vNhmvBSf",
-      "balance": 666161,
+      "balance": 665847,
       "membership_expire_on": 1724439551,
-      "next_cert_issuable_on": 1683727733,
+      "next_cert_issuable_on": 1692954233,
       "certs_received": {
         "CathyDebronde": 1747334026,
         "Plantalarose": 1699835362,
@@ -177193,13 +181014,14 @@
     "SYLVER": {
       "index": 7397,
       "owner_key": "FshHrkSAnghAwqPtxpvQj643rhMgeQypgmpKRD8qhDL8",
-      "balance": 404069,
+      "balance": 448755,
       "membership_expire_on": 1710161023,
-      "next_cert_issuable_on": 1690212740,
+      "next_cert_issuable_on": 1695116783,
       "certs_received": {
         "jyde": 1710040043,
         "Diane": 1710039711,
         "Moi": 1711249260,
+        "Jdbetoile": 1758157416,
         "Cyrille": 1710803844,
         "CelineZussy": 1710656802,
         "hypericum": 1710383142
@@ -177208,7 +181030,7 @@
     "annepaulian": {
       "index": 9979,
       "owner_key": "Fsjec3ETiZFSa19YPThMbKKuy1dcY1pWP5NECR9MybX2",
-      "balance": 333670,
+      "balance": 373356,
       "membership_expire_on": 1697467222,
       "next_cert_issuable_on": 1678276500,
       "certs_received": {
@@ -177222,9 +181044,9 @@
     "toto1967": {
       "index": 7542,
       "owner_key": "FsmLtyFpCkbByBo94k2vYiLo4hXAWkHwV6WEfsjnSDPB",
-      "balance": 307149,
-      "membership_expire_on": 1715047594,
-      "next_cert_issuable_on": 1688279109,
+      "balance": 225835,
+      "membership_expire_on": 1725156645,
+      "next_cert_issuable_on": 1695383390,
       "certs_received": {
         "Mattice": 1712175250,
         "Toutoune73": 1712208768,
@@ -177242,9 +181064,9 @@
     "Amazinggoldenturf": {
       "index": 7394,
       "owner_key": "FsmfeYyCWzqbsTKcMzWsG8Zup4ge5ZzpoAhQdNMrE7w1",
-      "balance": 645536,
+      "balance": 685222,
       "membership_expire_on": 1706135221,
-      "next_cert_issuable_on": 1681196726,
+      "next_cert_issuable_on": 1694748099,
       "certs_received": {
         "DaniailesA": 1744239926,
         "Ninamaste": 1738712064,
@@ -177274,7 +181096,7 @@
     "RedaZi": {
       "index": 13122,
       "owner_key": "FsrADDNsQWJKAvjWpM35t29Q8LTZqYNEyHXixMJRpfTi",
-      "balance": 57672,
+      "balance": 97358,
       "membership_expire_on": 1720393762,
       "next_cert_issuable_on": 1690188709,
       "certs_received": {
@@ -177290,7 +181112,7 @@
     "philoche": {
       "index": 876,
       "owner_key": "Ft5VTVzHe4EBsHZfXCkuS8qSHdw6VAkP5rxY9TVyVjJy",
-      "balance": 1031157,
+      "balance": 1070843,
       "membership_expire_on": 1704819360,
       "next_cert_issuable_on": 1681138592,
       "certs_received": {
@@ -177321,16 +181143,14 @@
     "Dolphins": {
       "index": 5215,
       "owner_key": "FtKyfsWPwHtzNTZHLB5x1dheHM6mhJm4fkoffYuBPWbw",
-      "balance": 918845,
+      "balance": 958531,
       "membership_expire_on": 1714582278,
       "next_cert_issuable_on": 1687258753,
       "certs_received": {
         "Jean-Marie": 1699283847,
         "myt": 1748545350,
         "daryl": 1743656762,
-        "nuvolari": 1696645146,
         "PatrickCrepin": 1719953868,
-        "Chsau": 1694853261,
         "Pascale72": 1747057265,
         "guillaumed": 1746346454,
         "jeromejub": 1725160163,
@@ -177341,7 +181161,7 @@
     "Sulivan": {
       "index": 5531,
       "owner_key": "FtLNw2wPYeQGPsieZ45F8pU94AZcp9h9FfNVFQpkuJiv",
-      "balance": 753745,
+      "balance": 793431,
       "membership_expire_on": 1716339318,
       "next_cert_issuable_on": 1691981094,
       "certs_received": {
@@ -177384,9 +181204,9 @@
     "Joysline": {
       "index": 12795,
       "owner_key": "Ftutcxp8U2RyTZW1MJv2ic576sRt5w9EshcTPV6dAWC9",
-      "balance": 109620,
+      "balance": 149306,
       "membership_expire_on": 1716558997,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695143053,
       "certs_received": {
         "G21": 1748332231,
         "Gudule94": 1748848929,
@@ -177398,7 +181218,7 @@
     "Avette": {
       "index": 7434,
       "owner_key": "Ftv7fJzpVbKiz1uyZhBDgZFs5XSX78117AB6Tg6FTDWd",
-      "balance": 468408,
+      "balance": 471094,
       "membership_expire_on": 1703617700,
       "next_cert_issuable_on": 1687664414,
       "certs_received": {
@@ -177414,7 +181234,7 @@
     "DaphneSnowhite": {
       "index": 10481,
       "owner_key": "FtvoYpT1sdWzxVHxvHk1mtkC3XENEv1xzu381jkq7v9K",
-      "balance": 379943,
+      "balance": 443345,
       "membership_expire_on": 1700656133,
       "next_cert_issuable_on": 1685077801,
       "certs_received": {
@@ -177438,7 +181258,7 @@
     "Aeden974": {
       "index": 8984,
       "owner_key": "Ftwf4V6aht3dn3njWdREpAFjV8og6NiejLddBVa2sZ9b",
-      "balance": 440639,
+      "balance": 435325,
       "membership_expire_on": 1719915436,
       "next_cert_issuable_on": 1662172132,
       "certs_received": {
@@ -177472,7 +181292,7 @@
     "Ananda46": {
       "index": 6291,
       "owner_key": "Fu7GMJhnPcWStmTmSHz9hB3ptHbJaUhTy3ZxZuxRRt3b",
-      "balance": 2391106,
+      "balance": 2428656,
       "membership_expire_on": 1723900621,
       "next_cert_issuable_on": 1675959408,
       "certs_received": {
@@ -177506,7 +181326,7 @@
     "Aprilou": {
       "index": 13248,
       "owner_key": "FuEVSGk8rWx82Ktqen5QEZXQTW9szAWpaMPvL3E7jU5f",
-      "balance": 42380,
+      "balance": 82066,
       "membership_expire_on": 1721842526,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -177536,7 +181356,7 @@
     "Omasaya": {
       "index": 6829,
       "owner_key": "FuVEipiz34iD2aYEZddHuT5nSTVaHoGfhQNZWUxRTd7y",
-      "balance": 552774,
+      "balance": 592460,
       "membership_expire_on": 1702348631,
       "next_cert_issuable_on": 1687779426,
       "certs_received": {
@@ -177563,7 +181383,7 @@
     "Emilie07": {
       "index": 11691,
       "owner_key": "FucTG9rsY7aYGEbGdrXZ3YAmKErXkEk5EQDsvDiFroa7",
-      "balance": 63095,
+      "balance": 102781,
       "membership_expire_on": 1707937559,
       "next_cert_issuable_on": 1684213802,
       "certs_received": {
@@ -177577,9 +181397,9 @@
     "hypericum": {
       "index": 4267,
       "owner_key": "FueWuNacjH3J2AFsj5gwezgrJMUPeNZUn77YrGK8uepF",
-      "balance": 44382,
+      "balance": 2168,
       "membership_expire_on": 1716820778,
-      "next_cert_issuable_on": 1692953951,
+      "next_cert_issuable_on": 1696389532,
       "certs_received": {
         "Zap": 1738182602,
         "kapis": 1728531011,
@@ -177607,6 +181427,7 @@
         "ENO": 1709588290,
         "AurElieSkuld": 1743781208,
         "Djan": 1744863180,
+        "AnneAmbles": 1756510524,
         "kalimheros": 1712820529,
         "liberte55": 1697619665,
         "Dracaufeu1990": 1751817684,
@@ -177643,7 +181464,7 @@
     "KeshavaDasi": {
       "index": 6741,
       "owner_key": "Fufab1uAJCdgzrXMNWBepLcckq1qvZq2VyWiQXgdpR6U",
-      "balance": 438415,
+      "balance": 478101,
       "membership_expire_on": 1699449247,
       "next_cert_issuable_on": 1679104799,
       "certs_received": {
@@ -177661,8 +181482,8 @@
     "Laila": {
       "index": 11211,
       "owner_key": "FujU43UDQtjELEzRoJFszdB9878t6M3v3v7yF16uLtA",
-      "balance": 289037,
-      "membership_expire_on": 1700179881,
+      "balance": 328723,
+      "membership_expire_on": 1727894993,
       "next_cert_issuable_on": 1683955410,
       "certs_received": {
         "natascha": 1736746848,
@@ -177681,7 +181502,7 @@
     "VeroniqueBalpe": {
       "index": 7838,
       "owner_key": "FupRUeEXXSM7xMvzgnSfGCG9AdpGvZGVZ1VD5uSXhUmk",
-      "balance": 565378,
+      "balance": 605064,
       "membership_expire_on": 1708643904,
       "next_cert_issuable_on": 1666681626,
       "certs_received": {
@@ -177695,7 +181516,7 @@
     "Aard89": {
       "index": 9315,
       "owner_key": "FuqRkRDmerj94RvQYgRHpLtMLEaYrm6ZvpdUp8qoKnLy",
-      "balance": 581556,
+      "balance": 621242,
       "membership_expire_on": 1719233170,
       "next_cert_issuable_on": 1666680634,
       "certs_received": {
@@ -177713,8 +181534,8 @@
     "hayssam": {
       "index": 3859,
       "owner_key": "Fv2s9uMcmtwqNQajQZQAcP4LjwXF3GYS9tbsudAGCn1m",
-      "balance": 1762428,
-      "membership_expire_on": 1696638825,
+      "balance": 1801036,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670486418,
       "certs_received": {
         "myt": 1732514740,
@@ -177738,9 +181559,9 @@
     "VeronicaDe": {
       "index": 12053,
       "owner_key": "FvH2HnS6mqiZASrH4s37uFn7RtEJyFYkFD58DGrQjRdm",
-      "balance": 236453,
+      "balance": 224140,
       "membership_expire_on": 1710797034,
-      "next_cert_issuable_on": 1692455914,
+      "next_cert_issuable_on": 1694320892,
       "certs_received": {
         "pastachutta1964": 1751665882,
         "Missouri": 1742400619,
@@ -177757,7 +181578,7 @@
     "JeanMarieTUBOEUF": {
       "index": 3472,
       "owner_key": "FvJmsh8GXzTLtK6boCzAwJTb9B5QbWRPnq6NepptRuo",
-      "balance": 237852,
+      "balance": 277538,
       "membership_expire_on": 1699439489,
       "next_cert_issuable_on": 1650946051,
       "certs_received": {
@@ -177799,7 +181620,7 @@
     "FabyLR": {
       "index": 8067,
       "owner_key": "FvTMqhhRgiT7g81R7QZz4kCyWnUBSSpNXY4YGB24uBiu",
-      "balance": 426980,
+      "balance": 466666,
       "membership_expire_on": 1723565011,
       "next_cert_issuable_on": 1668393701,
       "certs_received": {
@@ -177828,7 +181649,7 @@
     "RocioArmonia": {
       "index": 10696,
       "owner_key": "FvcEDF2WmPW24W62fyqNUXmT1vEpuJ2eSAXSjmrcAan2",
-      "balance": 39138,
+      "balance": 68824,
       "membership_expire_on": 1701556000,
       "next_cert_issuable_on": 1691244411,
       "certs_received": {
@@ -177838,6 +181659,7 @@
         "ClaudiaVazquez": 1740780060,
         "unica": 1733280609,
         "Rene13": 1752360974,
+        "EscuelaTephira": 1757097117,
         "Mariaseelcambio": 1733363510,
         "CarmenSR": 1733340611,
         "PedroAlkymia": 1750990252,
@@ -177851,7 +181673,7 @@
     "Cliofrench": {
       "index": 12802,
       "owner_key": "FvduPuwNFPQKMKiYqYpTSUCWzq1PQpoug6SgAHAhcMbm",
-      "balance": 92916,
+      "balance": 132602,
       "membership_expire_on": 1717438083,
       "next_cert_issuable_on": 1690369967,
       "certs_received": {
@@ -177865,9 +181687,9 @@
     "Capferret": {
       "index": 12342,
       "owner_key": "FvprFH4tBiem3MSwkcmJnfrQR1P3X7B7A4D5me6NduvG",
-      "balance": 150004,
+      "balance": 189690,
       "membership_expire_on": 1712947236,
-      "next_cert_issuable_on": 1684296770,
+      "next_cert_issuable_on": 1693702476,
       "certs_received": {
         "sat": 1747204123,
         "Marie-Laure": 1744641640,
@@ -177880,7 +181702,7 @@
     "wontolla": {
       "index": 10832,
       "owner_key": "FvqUD6FZ1UdLYgTQak3MELDovsJ2FEqQv3BpDkcTJMu3",
-      "balance": 456750,
+      "balance": 496437,
       "membership_expire_on": 1702058043,
       "next_cert_issuable_on": 1683715461,
       "certs_received": {
@@ -177916,7 +181738,7 @@
     "SHAIHE77": {
       "index": 11756,
       "owner_key": "Fvs8XfV8GjDa2shUHhfAxTkqUZoRZp8LXU4Z1ntreddT",
-      "balance": 201500,
+      "balance": 241186,
       "membership_expire_on": 1706646010,
       "next_cert_issuable_on": 1682038159,
       "certs_received": {
@@ -177930,7 +181752,7 @@
     "ChantAlGuet": {
       "index": 7970,
       "owner_key": "Fvx69c9s25cPj997YZaVMUj1g3wvE47esTvr5oZ26pAV",
-      "balance": 440026,
+      "balance": 479712,
       "membership_expire_on": 1710507055,
       "next_cert_issuable_on": 1657526966,
       "certs_received": {
@@ -177946,7 +181768,7 @@
     "Astro-Beta": {
       "index": 7683,
       "owner_key": "FvyqskQBZ8PQggfTooQ7Zjx44HyufDLJ5aJupu5joxgf",
-      "balance": 466707,
+      "balance": 506393,
       "membership_expire_on": 1721156740,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -177961,9 +181783,9 @@
     "DavidJorge": {
       "index": 12924,
       "owner_key": "Fw2yGsPBgYTLxaU2pnq4mqYSYSerBt8tWiBBaWnNWLYD",
-      "balance": 85432,
+      "balance": 110118,
       "membership_expire_on": 1718149366,
-      "next_cert_issuable_on": 1687502314,
+      "next_cert_issuable_on": 1695357038,
       "certs_received": {
         "Ferpires": 1749768067,
         "Minita": 1755159994,
@@ -177979,7 +181801,7 @@
     "Sophia71": {
       "index": 13222,
       "owner_key": "Fw4QU4M9q3L6YJXwqC1FXuheAEERhnJYwq5wxETYPXvc",
-      "balance": 37191,
+      "balance": 13377,
       "membership_expire_on": 1721232155,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -177994,9 +181816,9 @@
     "Zoriko-J": {
       "index": 2609,
       "owner_key": "Fw6eRcsjn5TCUQNEUPHahdM7kV6fKijNJzk3ChSzRMbs",
-      "balance": 1788263,
+      "balance": 1941337,
       "membership_expire_on": 1702960385,
-      "next_cert_issuable_on": 1681718632,
+      "next_cert_issuable_on": 1695066669,
       "certs_received": {
         "SvetRuskof": 1741428405,
         "Napo": 1729094226,
@@ -178034,7 +181856,7 @@
     "SyraAlthea": {
       "index": 9922,
       "owner_key": "Fw8uW3DbFCGp1i6bSWeRLZ41WrE7wQp1GJnjudhs5HUh",
-      "balance": 206906,
+      "balance": 210792,
       "membership_expire_on": 1722457048,
       "next_cert_issuable_on": 1685412389,
       "certs_received": {
@@ -178058,7 +181880,7 @@
     "Havanafleur": {
       "index": 11637,
       "owner_key": "FwCkjhwXtbmM7akpeFTgtNqrsPW9h4tdbRKApmU4g1o3",
-      "balance": 211031,
+      "balance": 253717,
       "membership_expire_on": 1708023492,
       "next_cert_issuable_on": 1691896666,
       "certs_received": {
@@ -178072,7 +181894,7 @@
     "mokili": {
       "index": 10947,
       "owner_key": "FwCnsJtTi4nfeTEghkntFCAbULyfTh8PUXbByFf95hEZ",
-      "balance": 274394,
+      "balance": 314080,
       "membership_expire_on": 1700151813,
       "next_cert_issuable_on": 1673801087,
       "certs_received": {
@@ -178096,7 +181918,7 @@
     "Glorisa": {
       "index": 13453,
       "owner_key": "FwEU8jQYMHabSgDFZU3dQNdLTbPkZRD3KP6suM2ftzxy",
-      "balance": 272022,
+      "balance": 306368,
       "membership_expire_on": 1723035010,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -178110,31 +181932,25 @@
     "StephaneLONGUET": {
       "index": 5703,
       "owner_key": "FwPZch5QNFGiNadwyUkZARikgiUdxpSPLGoeYFtsbpnA",
-      "balance": 802427,
+      "balance": 842113,
       "membership_expire_on": 1717583919,
       "next_cert_issuable_on": 1670503522,
       "certs_received": {
         "Aveline": 1700131879,
         "Jjacq07": 1720678926,
         "Anandaa": 1717573346,
-        "fatimaespoir": 1695497211,
         "daluz": 1720859317,
         "Cou-net": 1699142537,
-        "PhilippeGuillemant": 1695168262,
-        "Galuel": 1695172887,
-        "mathieuBize": 1695170573,
-        "Nadou": 1695170824,
         "gedeon26": 1708334451,
-        "Fred04": 1740814022,
-        "HyperBrut": 1695170824
+        "Fred04": 1740814022
       }
     },
     "Chacha94": {
       "index": 13298,
       "owner_key": "FwXngdwFa4KHo9b7WNYCb5vx4EMH5zZ7qqRaNwp3WoTW",
-      "balance": 32040,
+      "balance": 71726,
       "membership_expire_on": 1722373585,
-      "next_cert_issuable_on": 1692278144,
+      "next_cert_issuable_on": 1695476526,
       "certs_received": {
         "NiCoLasF": 1753997737,
         "FernandP": 1754069483,
@@ -178147,7 +181963,7 @@
     "Gotti": {
       "index": 11682,
       "owner_key": "FwY4GMghaTmci45iFxwaesWCtW8HrMa35SudMf7w2kmb",
-      "balance": 136854,
+      "balance": 176540,
       "membership_expire_on": 1708301465,
       "next_cert_issuable_on": 1687174664,
       "certs_received": {
@@ -178163,7 +181979,7 @@
     "Emilioleheros": {
       "index": 8303,
       "owner_key": "FwYr1bro58VAUMTYPAjpgbWKv1G7nudTNuDURUFcxooe",
-      "balance": 390753,
+      "balance": 430539,
       "membership_expire_on": 1716490172,
       "next_cert_issuable_on": 1669821533,
       "certs_received": {
@@ -178203,22 +182019,22 @@
     "Chrysalide": {
       "index": 512,
       "owner_key": "FwjJMoXYfV72ceZkpFWWeUN6rrsnaHYvw5joqmo3H7As",
-      "balance": 1206647,
+      "balance": 1246333,
       "membership_expire_on": 1707700481,
-      "next_cert_issuable_on": 1681784282,
+      "next_cert_issuable_on": 1693985196,
       "certs_received": {
         "CRey": 1704769286,
         "Samuel77": 1706756745,
         "Ludolol13200": 1698743685,
         "merenoel": 1709444512,
         "Didierlife84": 1706403343,
-        "Nicolili": 1695868137,
         "CedrickPiwo": 1712687399,
         "lapivoine": 1707873822,
         "PiNguyen": 1707646857,
-        "Lilinico": 1695862252,
+        "Lilinico": 1758086772,
         "LenaB": 1743285297,
         "Joellebingo": 1706408608,
+        "Elleiramt10": 1757219574,
         "psycotox80": 1747192183,
         "OLDBLACK84": 1720408082,
         "FredB": 1743283358
@@ -178227,7 +182043,7 @@
     "Kara": {
       "index": 7355,
       "owner_key": "FwnuEGH64zEN5c83qDqopmjjScmkgn7zw1Py5Jbs3zch",
-      "balance": 548615,
+      "balance": 588301,
       "membership_expire_on": 1709681110,
       "next_cert_issuable_on": 1676209136,
       "certs_received": {
@@ -178249,7 +182065,7 @@
     "AuroreSouveraine": {
       "index": 6626,
       "owner_key": "FwqiLw8qmTjPsqxiWAwdqzeeGirrUZsQG87QXRu6nyuF",
-      "balance": 149719,
+      "balance": 189405,
       "membership_expire_on": 1699465349,
       "next_cert_issuable_on": 1683766868,
       "certs_received": {
@@ -178274,7 +182090,7 @@
     "PhilippeMaquestiau": {
       "index": 11383,
       "owner_key": "Fx3qT98Ydj2mVx8rvM8KJJi2AHXmefsiviwmuXjXERLb",
-      "balance": 229152,
+      "balance": 268838,
       "membership_expire_on": 1706370856,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -178289,7 +182105,7 @@
     "Glencoe": {
       "index": 8123,
       "owner_key": "Fx43275v4WktBLC6oNkwxME2Jiyftaq3BMrcs9UY2Nax",
-      "balance": 471855,
+      "balance": 511541,
       "membership_expire_on": 1712766195,
       "next_cert_issuable_on": 1692781286,
       "certs_received": {
@@ -178304,7 +182120,7 @@
     "Malica77": {
       "index": 9793,
       "owner_key": "Fx6MtvDVjZApADLWuEZYexpL3hor2UDXshsonkqKP1Kc",
-      "balance": 241680,
+      "balance": 261953,
       "membership_expire_on": 1722209157,
       "next_cert_issuable_on": 1691678050,
       "certs_received": {
@@ -178323,7 +182139,7 @@
     "Laurey07": {
       "index": 10594,
       "owner_key": "Fx9j2EZVA4R95Y6wyVcRnv63ySBVJW9vQqJpuriyM7v",
-      "balance": 279692,
+      "balance": 319378,
       "membership_expire_on": 1701097291,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -178345,7 +182161,7 @@
     "frodoric": {
       "index": 4052,
       "owner_key": "FxJXiwqG6addswoXUSqzgj9YAAVJaTfftEckYknX4GBi",
-      "balance": 666524,
+      "balance": 706210,
       "membership_expire_on": 1712697743,
       "next_cert_issuable_on": 1652252051,
       "certs_received": {
@@ -178387,9 +182203,9 @@
     "Jean": {
       "index": 6160,
       "owner_key": "FxXN2Fw6ThX3XjXQ2rjFdN69dfKpMh3f6J198Ht5gruC",
-      "balance": 704866,
+      "balance": 744552,
       "membership_expire_on": 1700850577,
-      "next_cert_issuable_on": 1689317166,
+      "next_cert_issuable_on": 1695542900,
       "certs_received": {
         "Mariegateau": 1752357835,
         "Cha": 1703134915,
@@ -178398,7 +182214,7 @@
         "AnneAmbles": 1700688228,
         "aurelie": 1713561262,
         "RoselyneBinesse": 1700550798,
-        "TaaniTheophile": 1700436550,
+        "TaaniTheophile": 1758585153,
         "elo53die": 1700442503,
         "jnaroun": 1700431850,
         "MickaelAnanda": 1741255610,
@@ -178409,10 +182225,11 @@
     "Sircheyram": {
       "index": 7680,
       "owner_key": "FxdDYbUHCkv2hHXaTByoP8Fyb54vt2qMUuYhzxZrKdf8",
-      "balance": 605648,
+      "balance": 610834,
       "membership_expire_on": 1710066848,
       "next_cert_issuable_on": 1668510272,
       "certs_received": {
+        "Alexabeille": 1759198767,
         "Mylene": 1751783918,
         "mathieuBize": 1712207252,
         "Cathy31": 1711936380,
@@ -178441,7 +182258,7 @@
     "JosselinFERREIRA": {
       "index": 12950,
       "owner_key": "FxjjjgcLSPp9yKgtgbwkSHoJ1eR2q3zPtSC7gY6m6s7Q",
-      "balance": 135896,
+      "balance": 185582,
       "membership_expire_on": 1718671927,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -178464,8 +182281,8 @@
     "HugoWeber": {
       "index": 973,
       "owner_key": "FxurTUM6wLidayPwDx3gYUkftftYWTAjyViRbtCQiD4y",
-      "balance": 1686389,
-      "membership_expire_on": 1700507428,
+      "balance": 1726075,
+      "membership_expire_on": 1728038707,
       "next_cert_issuable_on": 1674011899,
       "certs_received": {
         "IsaForest": 1732493150,
@@ -178492,21 +182309,14 @@
       "balance": 419581,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "KarineGerinard974": 1695070255,
-        "Marico974": 1695142763,
-        "AchilleAmemoutou974": 1695144598,
-        "superjmt": 1695141944,
-        "FredericAmany974": 1695070255,
-        "marcos974": 1695314066
-      }
+      "certs_received": {}
     },
     "Dez": {
       "index": 8273,
       "owner_key": "FyJ7BCbEKcZkGSRSKfxLj1k7QXXed1sie6bLfEb2n5Zd",
-      "balance": 515144,
+      "balance": 549830,
       "membership_expire_on": 1710305001,
-      "next_cert_issuable_on": 1656325270,
+      "next_cert_issuable_on": 1693812748,
       "certs_received": {
         "Beasejour": 1716702115,
         "Patmos": 1716699649,
@@ -178536,7 +182346,7 @@
     "HARRI7": {
       "index": 9997,
       "owner_key": "FyMjHoTaGadgP9ZsFxgQGzp2PVTh6cBAa9rbwVh8EUxF",
-      "balance": 114011,
+      "balance": 126097,
       "membership_expire_on": 1723066135,
       "next_cert_issuable_on": 1685962147,
       "certs_received": {
@@ -178571,7 +182381,7 @@
     "Sand70": {
       "index": 6116,
       "owner_key": "FygjQZhtqyRzxkhYNWhmHVHhGTDER3PFiTwMkZQtHbWA",
-      "balance": 648141,
+      "balance": 687827,
       "membership_expire_on": 1699710261,
       "next_cert_issuable_on": 1683721584,
       "certs_received": {
@@ -178592,7 +182402,7 @@
     "Cassiopee84": {
       "index": 10032,
       "owner_key": "Fyh1VR8xgLb7tQA1CgjSuqTDMLxfJvHcn2Z4EdETmZjm",
-      "balance": 295293,
+      "balance": 269979,
       "membership_expire_on": 1725039377,
       "next_cert_issuable_on": 1679808544,
       "certs_received": {
@@ -178609,7 +182419,7 @@
     "ReMaLoup": {
       "index": 6136,
       "owner_key": "Fyp7DdXwCE9yDDNxfD8g55VTQpx6YCr9Phktn4hzcThb",
-      "balance": 994496,
+      "balance": 1034182,
       "membership_expire_on": 1718827640,
       "next_cert_issuable_on": 1692721294,
       "certs_received": {
@@ -178641,7 +182451,7 @@
     "NadiaV": {
       "index": 12190,
       "owner_key": "FypZDincqq3UQSVgdZSDjCdnP4oeXjssdfFkrBffyy5D",
-      "balance": 164904,
+      "balance": 201090,
       "membership_expire_on": 1711835656,
       "next_cert_issuable_on": 1688009470,
       "certs_received": {
@@ -178649,7 +182459,8 @@
         "M-France": 1743394493,
         "RussoDavid13": 1743452708,
         "Nadia": 1743393753,
-        "ValeriePiazzalunga": 1743434165
+        "ValeriePiazzalunga": 1743434165,
+        "SylvieL": 1759284765
       }
     },
     "Drjones11": {
@@ -178669,9 +182480,9 @@
     "MariMardisfrutona": {
       "index": 9364,
       "owner_key": "Fz1GBScuQyFqevUMxknVUjmXgHZkwUKf4nz7MvxqQ7ez",
-      "balance": 123967,
+      "balance": 138154,
       "membership_expire_on": 1716490621,
-      "next_cert_issuable_on": 1691900934,
+      "next_cert_issuable_on": 1693586221,
       "certs_received": {
         "Cholo": 1746642691,
         "Ainat255": 1724563325,
@@ -178715,13 +182526,14 @@
         "BaltaMed": 1724566048,
         "JuanraKalinga": 1737185538,
         "miguelflaccus": 1740311452,
+        "ABuenVivir": 1756628630,
         "Fefy": 1738483972
       }
     },
     "Aya": {
       "index": 13224,
       "owner_key": "Fz2dQKKmwTz58xEA3ci3mBGSjdNu29NBHkVnqi4LrPqg",
-      "balance": 44152,
+      "balance": 83838,
       "membership_expire_on": 1721074257,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -178736,7 +182548,7 @@
     "EleFarru79": {
       "index": 8868,
       "owner_key": "Fz6M3MTjxj4iqPMpJzxM3xi1WncUysxoZDPRHWFUYBxs",
-      "balance": 255978,
+      "balance": 295664,
       "membership_expire_on": 1716057466,
       "next_cert_issuable_on": 1669646678,
       "certs_received": {
@@ -178761,7 +182573,7 @@
     "ErwanFromentin": {
       "index": 9815,
       "owner_key": "FzB9hVbpsRfbR931BKrFiBaSGhA8sa7RDr4wbCbB9y45",
-      "balance": 354878,
+      "balance": 394564,
       "membership_expire_on": 1723254485,
       "next_cert_issuable_on": 1671889683,
       "certs_received": {
@@ -178775,7 +182587,7 @@
     "AnaCasaAzulCarrus": {
       "index": 11332,
       "owner_key": "FzEc8inzzoMcf63dtKgSDx8o9CzjNaj5zDQ3HmuPeJRS",
-      "balance": 357479,
+      "balance": 170265,
       "membership_expire_on": 1705546441,
       "next_cert_issuable_on": 1684467324,
       "certs_received": {
@@ -178796,7 +182608,7 @@
     "Anahata": {
       "index": 12270,
       "owner_key": "FzJzGf4AyUopXK6mLHgHcAHUitBGA6Dokd6tM5jiAQhs",
-      "balance": 147928,
+      "balance": 187614,
       "membership_expire_on": 1711324204,
       "next_cert_issuable_on": 1687690317,
       "certs_received": {
@@ -178807,13 +182619,14 @@
         "SununLiberty": 1749934098,
         "Eli-g": 1744050061,
         "ArnaudLuc": 1744044979,
+        "Nina13": 1756908398,
         "Karukera": 1744045333
       }
     },
     "Laurent2016": {
       "index": 13319,
       "owner_key": "FzPSQDEkqo9eqT7LJm8FVy1x54KzYxnqghW11Q2ibr1X",
-      "balance": 47668,
+      "balance": 87374,
       "membership_expire_on": 1722788150,
       "next_cert_issuable_on": 1691552506,
       "certs_received": {
@@ -178828,9 +182641,9 @@
     "Tango8943": {
       "index": 12192,
       "owner_key": "FzPiFBSsxFc4ZYrhKFYFBtPqRCQFtGY5zDQzTZvmgD75",
-      "balance": 323836,
+      "balance": 1347502,
       "membership_expire_on": 1711678478,
-      "next_cert_issuable_on": 1693315273,
+      "next_cert_issuable_on": 1696607297,
       "certs_received": {
         "CorinneE": 1740441798,
         "Salsa33150": 1750299771,
@@ -178846,7 +182659,7 @@
     "Nikko": {
       "index": 8049,
       "owner_key": "FzVJwk18Sj33SiCsFUkSqEdtHZj8wnrLxcMyfkRhHX3B",
-      "balance": 516603,
+      "balance": 556289,
       "membership_expire_on": 1714224810,
       "next_cert_issuable_on": 1671458562,
       "certs_received": {
@@ -178879,7 +182692,7 @@
     "Mireio": {
       "index": 7865,
       "owner_key": "FzonQxcCn5FSeDhpA2eE2qjbyTAMkWM1o9QHfzCrbEY3",
-      "balance": 473225,
+      "balance": 512911,
       "membership_expire_on": 1711899015,
       "next_cert_issuable_on": 1692435664,
       "certs_received": {
@@ -178920,7 +182733,7 @@
     "Valta5": {
       "index": 9595,
       "owner_key": "G1EvgurQUCVM3X16jQfXt7CQ3uuUy2tXkPPKkWHcyqzD",
-      "balance": 406822,
+      "balance": 446508,
       "membership_expire_on": 1720466223,
       "next_cert_issuable_on": 1688985888,
       "certs_received": {
@@ -178989,9 +182802,9 @@
     "moincagranada": {
       "index": 3833,
       "owner_key": "G1UcoUML4Z2T4LyKpVUfJf6veVE3kVj2UAboBuAVAJeb",
-      "balance": 2486045,
+      "balance": 2483831,
       "membership_expire_on": 1709410793,
-      "next_cert_issuable_on": 1687346014,
+      "next_cert_issuable_on": 1694535530,
       "certs_received": {
         "kapis": 1725308909,
         "Jeratik": 1722656489,
@@ -179015,6 +182828,7 @@
         "Liandou": 1719967737,
         "Gaudi": 1726722231,
         "GretaArtemis": 1743563077,
+        "Angeles": 1758780621,
         "ALEGRIAUNIVERSAL": 1749082055,
         "Pilarpm": 1713402698,
         "fania": 1739225074
@@ -179023,8 +182837,8 @@
     "Antoninpiau": {
       "index": 9925,
       "owner_key": "G1Xcodw26TupKVg291L2SsRR8SZXpF3CQzxuzMarSu42",
-      "balance": 391406,
-      "membership_expire_on": 1694639150,
+      "balance": 406368,
+      "membership_expire_on": 1728222811,
       "next_cert_issuable_on": 1683273765,
       "certs_received": {
         "petitetoile": 1726553844,
@@ -179037,7 +182851,7 @@
     "Denise_Lecoq": {
       "index": 10666,
       "owner_key": "G1awJxnK2mteaLGxA3cUKiSuX69nzjukMr7MG9hdoiXv",
-      "balance": 142517,
+      "balance": 139303,
       "membership_expire_on": 1700935800,
       "next_cert_issuable_on": 1678426411,
       "certs_received": {
@@ -179053,17 +182867,15 @@
     "mimamamemima": {
       "index": 5634,
       "owner_key": "G1byz4Npzc6MXGvYrBvrtN3WWAmu8gHncPG7KTfRWAyD",
-      "balance": 277095,
-      "membership_expire_on": 1694569597,
+      "balance": 292067,
+      "membership_expire_on": 1726825198,
       "next_cert_issuable_on": 1675874111,
       "certs_received": {
+        "mluque71": 1759627055,
         "GuillemDVL": 1733331709,
-        "isabelha": 1693642552,
         "PedroCabra": 1708641226,
         "AlfredoRG": 1714118938,
         "Encalquimista": 1724293027,
-        "ChrisW": 1693891656,
-        "moincagranada": 1693629334,
         "Pilarpm": 1713407250
       }
     },
@@ -179086,7 +182898,7 @@
     "ValyChev": {
       "index": 1891,
       "owner_key": "G1jPY6L3PFNaXasmVqxE6mEXFLbD8wVK2tnx3EHvozkF",
-      "balance": 141718,
+      "balance": 181404,
       "membership_expire_on": 1714380237,
       "next_cert_issuable_on": 1685429685,
       "certs_received": {
@@ -179094,18 +182906,17 @@
         "micheleB": 1748554347,
         "danielbo": 1748586722,
         "apostis": 1734553503,
-        "IsabelleANGE": 1693946912,
         "Nigbi2118": 1733779262
       }
     },
     "Parhit": {
       "index": 6007,
       "owner_key": "G1kiY3VqVPv4hFnuYRoUyMq19yU61BYxbskfraLQCtKq",
-      "balance": 1280251,
+      "balance": 1349937,
       "membership_expire_on": 1720010646,
       "next_cert_issuable_on": 1682411921,
       "certs_received": {
-        "LilianBonnardon": 1699730379,
+        "LilianBonnardon": 1756665335,
         "MaudD": 1718432507,
         "Urbez": 1728159617,
         "GUL40_Fr1": 1706862789,
@@ -179151,8 +182962,8 @@
     "Chouky": {
       "index": 9628,
       "owner_key": "G1mK3jNbXc4xPk6muZLQRFmzHou4ypi88qAhdDhcJq7V",
-      "balance": 362404,
-      "membership_expire_on": 1695118426,
+      "balance": 381628,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1673155250,
       "certs_received": {
         "Sansandetry": 1726977870,
@@ -179168,7 +182979,7 @@
     "Chantal-04": {
       "index": 6334,
       "owner_key": "G1n2eA1qL8Fc2ACRXW3XuoLiYV85pk8sZ1sUHoYw6JGz",
-      "balance": 663147,
+      "balance": 702833,
       "membership_expire_on": 1701001693,
       "next_cert_issuable_on": 1677745048,
       "certs_received": {
@@ -179183,12 +182994,11 @@
     "samdoui": {
       "index": 3758,
       "owner_key": "G1rQDLbWTmyRBTZ9t6fKsaQz4W8PKugyrUfggYLwxY5U",
-      "balance": 507132,
+      "balance": 392818,
       "membership_expire_on": 1710883578,
       "next_cert_issuable_on": 1686686191,
       "certs_received": {
         "Latisaniere": 1746846014,
-        "Hassina": 1696442277,
         "Samlepirate": 1710876376,
         "CMJ34": 1748103565,
         "Dodjay": 1746571529,
@@ -179202,16 +183012,15 @@
       "owner_key": "G1rrjxff1vyi3N7BPDCJgWDrGKihrZZaqVYA4zFurJ9v",
       "balance": 0,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631635024,
+      "next_cert_issuable_on": 0,
       "certs_received": {
-        "Misslesfleurs": 1694329215,
         "ClementineLaborderie": 1697507855
       }
     },
     "ZOMOmoulinarts": {
       "index": 13201,
       "owner_key": "G1yvZtNjfrGsJpMbuq8LrTj73HKxTdpmh5KZwsnRUQH3",
-      "balance": 54469,
+      "balance": 76155,
       "membership_expire_on": 1719165093,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -179225,7 +183034,7 @@
     "G1Mourka": {
       "index": 10638,
       "owner_key": "G2AkX5tNwQg5D7mXCZGcacgwNtz71UsGVuoZfYNpCaTp",
-      "balance": 305015,
+      "balance": 344701,
       "membership_expire_on": 1700593895,
       "next_cert_issuable_on": 1672840171,
       "certs_received": {
@@ -179240,8 +183049,8 @@
     "Coralie16": {
       "index": 10322,
       "owner_key": "G2BU9QkLrqiA361MENHaFdHTkctRRqGMWuMZ5TRkVEUo",
-      "balance": 309636,
-      "membership_expire_on": 1694700477,
+      "balance": 324588,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1669116390,
       "certs_received": {
         "AnyesOlek": 1726258077,
@@ -179260,14 +183069,13 @@
     "RomainNOEL": {
       "index": 5911,
       "owner_key": "G2CqrqC7TPpKwEswAaKkEYFFZp9LfZVC2MHGEUZCjYmv",
-      "balance": 627253,
-      "membership_expire_on": 1693776458,
+      "balance": 630457,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1669061570,
       "certs_received": {
         "Come": 1697153979,
         "SabineD": 1697332550,
         "MurielLaragne": 1732315677,
-        "Aveline": 1696715992,
         "Cou-net": 1697913051,
         "mathieuBize": 1698309072,
         "PERSIFLEUR": 1701106318,
@@ -179277,9 +183085,9 @@
     "Francoise00007": {
       "index": 9653,
       "owner_key": "G2EmeEZJJkTXmimZ1mXMvmpfJw1haDBYFQjbPbYiZwTr",
-      "balance": 358486,
-      "membership_expire_on": 1693773238,
-      "next_cert_issuable_on": 1686233329,
+      "balance": 384356,
+      "membership_expire_on": 1726353368,
+      "next_cert_issuable_on": 1694913773,
       "certs_received": {
         "Julylamaya": 1725917722,
         "domire": 1727214516,
@@ -179299,7 +183107,7 @@
     "Neosonl": {
       "index": 11345,
       "owner_key": "G2GpHhQxmnRWXJSiqN2WNmqTTJqUjsmaiq3pQnUV2nRt",
-      "balance": 238888,
+      "balance": 278574,
       "membership_expire_on": 1702924914,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -179318,9 +183126,7 @@
       "balance": 81252,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1634260912,
-      "certs_received": {
-        "MissPine": 1693536111
-      }
+      "certs_received": {}
     },
     "Edge974": {
       "index": 2676,
@@ -179333,7 +183139,7 @@
     "Vivirypoetica": {
       "index": 12322,
       "owner_key": "G2g38zX47HfvcCdgVdTmykaXgVDp26Eq2ux3VrBCnhNi",
-      "balance": 152606,
+      "balance": 192292,
       "membership_expire_on": 1712751545,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -179347,11 +183153,10 @@
     "Lea": {
       "index": 775,
       "owner_key": "G2ifppG2e3QXsS2srRdf2n1o2REYA8AeUQbiXf4KYcvP",
-      "balance": 1870643,
+      "balance": 1829029,
       "membership_expire_on": 1700935319,
       "next_cert_issuable_on": 1691831124,
       "certs_received": {
-        "1000i100": 1695280830,
         "MAximeGhesquiere": 1716769344,
         "ArnaudFleuri": 1737501337,
         "Pol": 1713578852,
@@ -179362,13 +183167,14 @@
         "WilliamWeber": 1718001468,
         "Tchekoff": 1705687871,
         "louison": 1701053655,
+        "Piraculteur": 1758124890,
         "Marylou": 1699582807
       }
     },
     "KMarc": {
       "index": 9055,
       "owner_key": "G2n9yzADHKrh4CLx9N3tx6Fk6aZcN2Qst32k5b1qBLdk",
-      "balance": 423097,
+      "balance": 462783,
       "membership_expire_on": 1719711067,
       "next_cert_issuable_on": 1692545792,
       "certs_received": {
@@ -179396,7 +183202,7 @@
     "Domsch": {
       "index": 12857,
       "owner_key": "G2stAAhmevrboxiMrm2iyh6VXiDCKQwkw3Vbyw48eSEt",
-      "balance": 87576,
+      "balance": 127262,
       "membership_expire_on": 1714214078,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -179410,7 +183216,7 @@
     "Flozinho": {
       "index": 6354,
       "owner_key": "G2tZNw5eTFuvd95FuAYALwXqDm6gzSjQ8bSfs2EQuMvw",
-      "balance": 556197,
+      "balance": 569983,
       "membership_expire_on": 1721182366,
       "next_cert_issuable_on": 1647178961,
       "certs_received": {
@@ -179418,18 +183224,19 @@
         "CORBIERESchristine": 1702596727,
         "Philippe": 1702367181,
         "Perrine971": 1702359774,
-        "Jade971": 1702352343,
+        "Jade971": 1759319492,
         "bricodeur": 1702422363,
-        "NathalieSF971": 1702415252,
+        "NathalieSF971": 1759207338,
         "Maevaf": 1710239365,
         "Claiwe": 1711083307,
+        "IsisKalinas": 1759205608,
         "Carolinek": 1702441399
       }
     },
     "Blondeattitude": {
       "index": 6454,
       "owner_key": "G3513goWZaSskBUQMysJgHKbaSWLaWodoFum8gKaf17W",
-      "balance": 580518,
+      "balance": 620204,
       "membership_expire_on": 1705952974,
       "next_cert_issuable_on": 1656912498,
       "certs_received": {
@@ -179448,7 +183255,7 @@
     "LudoB": {
       "index": 12303,
       "owner_key": "G38Njo5Uq35BfxjVrwdrM63GBr48TrvLNV5At7Qr2kZ5",
-      "balance": 351724,
+      "balance": 385410,
       "membership_expire_on": 1712254299,
       "next_cert_issuable_on": 1683882521,
       "certs_received": {
@@ -179470,7 +183277,7 @@
     "BernardJoseph": {
       "index": 4254,
       "owner_key": "G3F7cCXBd6VaYSQ8hjHbC1T4bf5fegjD2XCuqmhHsQA8",
-      "balance": 1149141,
+      "balance": 1188827,
       "membership_expire_on": 1715016998,
       "next_cert_issuable_on": 1684833644,
       "certs_received": {
@@ -179496,12 +183303,13 @@
     "Savigabrielle974": {
       "index": 4663,
       "owner_key": "G3L24W74P6xxaiGFFxWNf2R24FPvieHxBA6g6oM2VdYh",
-      "balance": 376127,
-      "membership_expire_on": 1701641661,
-      "next_cert_issuable_on": 1668076500,
+      "balance": 415813,
+      "membership_expire_on": 1728169292,
+      "next_cert_issuable_on": 1696684288,
       "certs_received": {
         "mimone974": 1699740494,
-        "NnattNature": 1697145786,
+        "Vanessa974": 1759753160,
+        "NnattNature": 1759727488,
         "manguitou": 1725750354,
         "Shanti": 1740532584,
         "Corinne974": 1714493497
@@ -179510,29 +183318,23 @@
     "Timtitou": {
       "index": 5765,
       "owner_key": "G3RoSDNjbaeWqY7259bAkMAVSCAScvdfb98kKyNMZUwV",
-      "balance": 618261,
+      "balance": 657947,
       "membership_expire_on": 1720286435,
       "next_cert_issuable_on": 1679453120,
       "certs_received": {
         "Loulou09": 1698360679,
-        "GeraldineLeprivier": 1696208424,
         "PatrickRO": 1745380026,
         "pascaldedomptail": 1701134096,
         "Gentil09": 1698297945,
-        "ChatelainAndrea": 1696208424,
-        "ChatelainJimmy": 1696208424,
-        "PhilippeRomanin": 1696208424,
-        "myriamdevivegnis": 1696723243,
-        "Rolande": 1742496320,
-        "LeprivierLunel": 1696208424
+        "Rolande": 1742496320
       }
     },
     "Petfa": {
       "index": 7514,
       "owner_key": "G3i1BX8RhEr8Aztuk5uLAZUhSHL9uVaRmdBCeHZRb5VP",
-      "balance": 330939,
+      "balance": 370625,
       "membership_expire_on": 1705948827,
-      "next_cert_issuable_on": 1692876465,
+      "next_cert_issuable_on": 1696251709,
       "certs_received": {
         "Rebel": 1721928889,
         "ColetteNavaux": 1754368959,
@@ -179550,6 +183352,7 @@
         "SabineAmen": 1720037648,
         "nathinfi": 1720052272,
         "Colaga": 1711517789,
+        "Verozen": 1757464298,
         "louirit": 1754368959,
         "SofianneErler": 1735170938,
         "SELHENIA": 1744955660,
@@ -179560,9 +183363,9 @@
     "Corentine": {
       "index": 7251,
       "owner_key": "G3k9VZXWbqSUaBeULe8VMigopoQvUs77wf5vDFCiPTs9",
-      "balance": 296214,
+      "balance": 275200,
       "membership_expire_on": 1705804101,
-      "next_cert_issuable_on": 1690026030,
+      "next_cert_issuable_on": 1694863839,
       "certs_received": {
         "jaenyph": 1709142949,
         "WintgensJoseph": 1709060823,
@@ -179604,7 +183407,7 @@
     "Smam": {
       "index": 8611,
       "owner_key": "G3zw8FXFE8kgjSmqyqufmRK18o7uvX25G4K4XeiLEWbk",
-      "balance": 461420,
+      "balance": 501106,
       "membership_expire_on": 1712795580,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -179618,16 +183421,14 @@
     "mathieu": {
       "index": 629,
       "owner_key": "G45C41scC2252PjUdcTPqsEFgAHtdLVknozQu2CpgvUj",
-      "balance": 2193190,
+      "balance": 2232876,
       "membership_expire_on": 1724590724,
       "next_cert_issuable_on": 1693105124,
       "certs_received": {
         "AnneB": 1716407042,
-        "Damien": 1695089417,
         "Zoulya": 1718919835,
         "PierreYves": 1738209540,
         "merenoel": 1700155509,
-        "Reumy": 1695754502,
         "JeanLucCrcfx": 1701807165,
         "gwen": 1701967339,
         "DumaB": 1698794529,
@@ -179635,7 +183436,7 @@
         "DCat": 1700443983,
         "DavidB": 1706599079,
         "Alisce": 1712234846,
-        "Stephio": 1698655679,
+        "Stephio": 1755909025,
         "Olipez": 1729457265,
         "Coquelicot": 1698855748,
         "BenoitDoutreleau-avec-un-chapeau-sur-le-i": 1699124613,
@@ -179656,7 +183457,7 @@
     "Shamphalai": {
       "index": 3802,
       "owner_key": "G46xBWLZDgKNBkTJfKeY7yVVVLBTL3UcJfnH4i8JZbaA",
-      "balance": 1263803,
+      "balance": 1187489,
       "membership_expire_on": 1716976223,
       "next_cert_issuable_on": 1675996432,
       "certs_received": {
@@ -179675,7 +183476,7 @@
     "Strelitzio": {
       "index": 11239,
       "owner_key": "G46xnHNBwMEwXiBGY5J4VhCcb4AkKvbMdQ1GD1958RHN",
-      "balance": 211607,
+      "balance": 251293,
       "membership_expire_on": 1701350523,
       "next_cert_issuable_on": 1687562516,
       "certs_received": {
@@ -179690,7 +183491,7 @@
     "joe": {
       "index": 10191,
       "owner_key": "G48y2zuQo7EL13Qwtd4xHz1RaWMhziCRnGMDZhZt3nrc",
-      "balance": 342767,
+      "balance": 382453,
       "membership_expire_on": 1698602860,
       "next_cert_issuable_on": 1692152960,
       "certs_received": {
@@ -179706,7 +183507,7 @@
     "LauraGuichard-Lepage": {
       "index": 2019,
       "owner_key": "G4A4v9YT4d4UDdMqu7PBibLVEUMP8EN3nkAJT5B3QnKF",
-      "balance": 1582771,
+      "balance": 1622457,
       "membership_expire_on": 1708174168,
       "next_cert_issuable_on": 1678177080,
       "certs_received": {
@@ -179723,12 +183524,14 @@
     "CMamounette": {
       "index": 8574,
       "owner_key": "G4Lc1LW6aK2ea1kSutc1TVdG9Fu5MkHoCgg33VUnimkz",
-      "balance": 565273,
+      "balance": 580859,
       "membership_expire_on": 1714158988,
-      "next_cert_issuable_on": 1692263139,
+      "next_cert_issuable_on": 1695010066,
       "certs_received": {
+        "AWEN": 1759467713,
         "Katiecat": 1751768545,
         "Elimarine": 1718417599,
+        "EdouardDURAND": 1758661005,
         "angelight": 1718608348,
         "TristanG1": 1721609840,
         "MaelysV": 1718823172,
@@ -179736,6 +183539,7 @@
         "celinette07200": 1719199840,
         "JOJO": 1718608348,
         "ChaGaia5926": 1724913660,
+        "MARIEFRANCE": 1758667909,
         "CHANTALE": 1718608348,
         "Calou26": 1718322000,
         "LEO": 1718608348
@@ -179783,11 +183587,11 @@
     "Lumieredidier": {
       "index": 3109,
       "owner_key": "G4i6str4ovDDS5LvCqTvry1MTv7srLjeNGh5YbwDZgUg",
-      "balance": 1356735,
+      "balance": 1396421,
       "membership_expire_on": 1702694770,
       "next_cert_issuable_on": 1671676481,
       "certs_received": {
-        "YoannMangue": 1697365271,
+        "YoannMangue": 1758909463,
         "Lili39": 1706935577,
         "Vinking": 1705053687,
         "RaphaelCinelli": 1702366151,
@@ -179799,7 +183603,7 @@
     "VeroL": {
       "index": 11246,
       "owner_key": "G4iaWcwRMXS8VBxKCT8ATnKSvyu4p86AmmhACW6LKo6U",
-      "balance": 231590,
+      "balance": 259886,
       "membership_expire_on": 1704130454,
       "next_cert_issuable_on": 1692437040,
       "certs_received": {
@@ -179808,6 +183612,7 @@
         "CarolAmethyste": 1736977706,
         "VeroniqueD": 1747459215,
         "Smart35": 1736973110,
+        "lamettrie": 1757574304,
         "Maaltir": 1736975903,
         "ArenoFontaine": 1737000853,
         "2vakian": 1741113875
@@ -179816,9 +183621,9 @@
     "MKoala": {
       "index": 9283,
       "owner_key": "G4kC7vAqAt6X4M9W1ipqSMoxc3ejJtspcxAXjUKv3HHM",
-      "balance": 397409,
+      "balance": 437095,
       "membership_expire_on": 1717687025,
-      "next_cert_issuable_on": 1686201425,
+      "next_cert_issuable_on": 1694397111,
       "certs_received": {
         "sfouludo": 1721360833,
         "HugoTen": 1724349312,
@@ -179831,7 +183636,7 @@
     "Louloui": {
       "index": 10522,
       "owner_key": "G4pRc22SZQJd5UtjEV1HxJyJyh4XpYM8GiZEPJwYp19M",
-      "balance": 334960,
+      "balance": 374646,
       "membership_expire_on": 1698455305,
       "next_cert_issuable_on": 1676437992,
       "certs_received": {
@@ -179849,7 +183654,7 @@
     "Kriss480": {
       "index": 12007,
       "owner_key": "G4pSqE3LYrjHZic9YSckveNkSgCG2U7pv4QTAVa3j8uU",
-      "balance": 180438,
+      "balance": 220124,
       "membership_expire_on": 1710283570,
       "next_cert_issuable_on": 1683864845,
       "certs_received": {
@@ -179867,7 +183672,7 @@
     "Yann": {
       "index": 7617,
       "owner_key": "G4wpMczAngBKLr3Ssp443FiHyJeNPY2avaVLtk6PA121",
-      "balance": 285419,
+      "balance": 325105,
       "membership_expire_on": 1724076320,
       "next_cert_issuable_on": 1652185877,
       "certs_received": {
@@ -179897,7 +183702,7 @@
     "SamuelGM": {
       "index": 8604,
       "owner_key": "G5PoX6ojqotcsVC7VGhnxjLUKFshT1BsHm6q366SvUQ2",
-      "balance": 486520,
+      "balance": 526206,
       "membership_expire_on": 1717461857,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -179913,8 +183718,8 @@
     "RomaneDN": {
       "index": 10058,
       "owner_key": "G5QomU7mw59LuZ51ptKwNJWAkjgX2aPfJmufj956hiC4",
-      "balance": 357516,
-      "membership_expire_on": 1697827134,
+      "balance": 397202,
+      "membership_expire_on": 1727731516,
       "next_cert_issuable_on": 1690512919,
       "certs_received": {
         "cedre": 1729382900,
@@ -179928,7 +183733,7 @@
     "Kenizee": {
       "index": 12536,
       "owner_key": "G5SfmnCRHAETtFnchUkxnBQqdgByMbnDpGPhLGm13eNh",
-      "balance": 166392,
+      "balance": 206078,
       "membership_expire_on": 1714588808,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -179956,9 +183761,9 @@
     "MoniqueBlein": {
       "index": 3755,
       "owner_key": "G5cu9Fz1qG3U5DfCWVZWbAvpqLJnHcixc7SXN6S84mRR",
-      "balance": 1317307,
+      "balance": 1356993,
       "membership_expire_on": 1714582278,
-      "next_cert_issuable_on": 1691856140,
+      "next_cert_issuable_on": 1695979674,
       "certs_received": {
         "nenuphar": 1701841619,
         "Sylvae": 1709273613,
@@ -179975,7 +183780,7 @@
     "Vertsauvage": {
       "index": 9749,
       "owner_key": "G5iKQthDrVzwManhLPK28uDsmtjEntm2zPS4dVYVbVAa",
-      "balance": 158693,
+      "balance": 218379,
       "membership_expire_on": 1722822096,
       "next_cert_issuable_on": 1690531712,
       "certs_received": {
@@ -179999,7 +183804,7 @@
     "Sofi81170": {
       "index": 12459,
       "owner_key": "G5jjMdMY3NaBSqAFyxAvQncznzEf1uzsiX9XRMKdVF6a",
-      "balance": 365326,
+      "balance": 385812,
       "membership_expire_on": 1710630905,
       "next_cert_issuable_on": 1687529761,
       "certs_received": {
@@ -180034,7 +183839,7 @@
     "Nina": {
       "index": 9286,
       "owner_key": "G5yVKWMDRQrMs3dkNv1uGu7n5r5K7jxx1XQvpkJaf7DD",
-      "balance": 376940,
+      "balance": 416626,
       "membership_expire_on": 1720188805,
       "next_cert_issuable_on": 1669472826,
       "certs_received": {
@@ -180056,7 +183861,7 @@
     "Eliza87": {
       "index": 7646,
       "owner_key": "G68UQDC5t71SxHrPMdNUhCYLj4PiAEDzr2KjFcsscrbD",
-      "balance": 537092,
+      "balance": 576778,
       "membership_expire_on": 1710609654,
       "next_cert_issuable_on": 1679316778,
       "certs_received": {
@@ -180086,7 +183891,7 @@
     "Elle": {
       "index": 908,
       "owner_key": "G6BCN3pyQHLVrHHZd71koXknwcXsLozTXKFbvg8HtG6j",
-      "balance": 1860682,
+      "balance": 1895368,
       "membership_expire_on": 1701359395,
       "next_cert_issuable_on": 1690183945,
       "certs_received": {
@@ -180109,7 +183914,7 @@
     "FireMarshallBill": {
       "index": 12564,
       "owner_key": "G6CFudiyUjRDLozeSaiM7NJTMzJmdHUcacYAnuHp46kW",
-      "balance": 124888,
+      "balance": 164574,
       "membership_expire_on": 1714474497,
       "next_cert_issuable_on": 1689049813,
       "certs_received": {
@@ -180131,7 +183936,7 @@
     "AylaSatyaSangat": {
       "index": 8549,
       "owner_key": "G6PFGCrEiKuGRGzsCRrh2gni4Bwc8bLMVg2UdZ3reKZK",
-      "balance": 552618,
+      "balance": 575704,
       "membership_expire_on": 1714595531,
       "next_cert_issuable_on": 1682447467,
       "certs_received": {
@@ -180166,7 +183971,7 @@
     "Nathurelle": {
       "index": 11721,
       "owner_key": "G6PKczCxqhHhP72MiE6dsyZgiv2qB1UhfGKCM2edqZ9K",
-      "balance": 184787,
+      "balance": 224473,
       "membership_expire_on": 1706739528,
       "next_cert_issuable_on": 1687262168,
       "certs_received": {
@@ -180191,9 +183996,9 @@
     "Solight777": {
       "index": 6123,
       "owner_key": "G6RmATBtyQ4Qp6pXjfGpdbVsT11LZU3CJXqrd5khgyAY",
-      "balance": 1716530,
+      "balance": 1968908,
       "membership_expire_on": 1720263965,
-      "next_cert_issuable_on": 1692688643,
+      "next_cert_issuable_on": 1695571063,
       "certs_received": {
         "Ecoeducacteur": 1746040110,
         "Miriam3": 1743488640,
@@ -180242,7 +184047,7 @@
     "nadou50": {
       "index": 7731,
       "owner_key": "G6etu43jU4H7CDdQL4PcYokfnZX9SwWb2zxZayfCsK6N",
-      "balance": 611563,
+      "balance": 651249,
       "membership_expire_on": 1706455268,
       "next_cert_issuable_on": 1678762603,
       "certs_received": {
@@ -180269,22 +184074,22 @@
     "leminhthai": {
       "index": 4679,
       "owner_key": "G6rGabXVcwDK7LJ7TrABnSrjGgUT7fkLZb6i7hazunWg",
-      "balance": 752205,
+      "balance": 791891,
       "membership_expire_on": 1704388362,
       "next_cert_issuable_on": 1672902762,
       "certs_received": {
-        "myt": 1700720938,
+        "myt": 1757293297,
         "Pascale72": 1724225344,
         "Anton": 1702421566,
         "lilithdu34": 1741237032,
         "Mabelle": 1712714778,
-        "Maaltir": 1694574603
+        "Maaltir": 1756928193
       }
     },
     "CecileFenyohazi07": {
       "index": 11976,
       "owner_key": "G6wLrkRKcVYCE4WoL8U6LaJjmxg9uvzSVTEx731GkrLi",
-      "balance": 181756,
+      "balance": 220442,
       "membership_expire_on": 1710288512,
       "next_cert_issuable_on": 1687685411,
       "certs_received": {
@@ -180300,7 +184105,7 @@
     "Gaelle888": {
       "index": 9976,
       "owner_key": "G6wjhhbkb3P4HnfvWVLfezvDF3BRyUqgHfD1xuKKUmHk",
-      "balance": 343129,
+      "balance": 382815,
       "membership_expire_on": 1697378478,
       "next_cert_issuable_on": 1678364480,
       "certs_received": {
@@ -180327,7 +184132,7 @@
     "Sarvana": {
       "index": 13363,
       "owner_key": "G758JkQmfvBNMB9qRYbUr2EtmeqXdxn7x8c8bChxW6aV",
-      "balance": 42524,
+      "balance": 82210,
       "membership_expire_on": 1722818465,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -180337,6 +184142,7 @@
         "Sandra": 1754425834,
         "Chuckvl": 1754440343,
         "ChristineRenier": 1754809686,
+        "Anou": 1756968841,
         "Mathys": 1754425834,
         "Dem": 1755052356,
         "Domino7": 1756309404
@@ -180345,7 +184151,7 @@
     "Merceespe": {
       "index": 12238,
       "owner_key": "G75Y2YAHctdEUqNmxdeEjcj7FFR1U9tqxtECPW745pMZ",
-      "balance": 159164,
+      "balance": 168850,
       "membership_expire_on": 1712072056,
       "next_cert_issuable_on": 1686713301,
       "certs_received": {
@@ -180401,7 +184207,7 @@
     "Vagueabonds": {
       "index": 9363,
       "owner_key": "G7PvU3RGGhXBFMVrg4RqDAA3nf5sUxGkNjSPneGyppib",
-      "balance": 188001,
+      "balance": 66687,
       "membership_expire_on": 1721598876,
       "next_cert_issuable_on": 1687414907,
       "certs_received": {
@@ -180417,23 +184223,22 @@
     "Lelotte": {
       "index": 2917,
       "owner_key": "G7QWzViD1JGmny3ytfeNSNMSGYRijpuiHNsKeCEk2onk",
-      "balance": 1300112,
+      "balance": 1339798,
       "membership_expire_on": 1723765817,
       "next_cert_issuable_on": 1692280217,
       "certs_received": {
-        "Yannis": 1694475346,
         "MichLang": 1749366669,
         "lune": 1749194790,
         "KumaNinja": 1749194537,
         "loup12": 1755305129,
-        "chronophonix": 1694038198,
+        "chronophonix": 1756543854,
         "Hikari": 1749194790
       }
     },
     "OlivierRichard": {
       "index": 11346,
       "owner_key": "G7QZAX4UEDSi9ybWFKZrBDE99GuNftxACwwmCA2XjrcV",
-      "balance": 183125,
+      "balance": 222811,
       "membership_expire_on": 1705962517,
       "next_cert_issuable_on": 1684114128,
       "certs_received": {
@@ -180453,7 +184258,7 @@
     "Philae": {
       "index": 4038,
       "owner_key": "G7R83owZCZFqNMScZc5j2beZ86Te5YDVWHBmrNtj4YyG",
-      "balance": 1300791,
+      "balance": 1340477,
       "membership_expire_on": 1719607759,
       "next_cert_issuable_on": 1692452621,
       "certs_received": {
@@ -180481,7 +184286,7 @@
     "MatthieuLatapy": {
       "index": 2778,
       "owner_key": "G7UBKqDScbaUyENoxFXM1zbebp2bYqpNCV4qyLFjvEqz",
-      "balance": 1027278,
+      "balance": 1066964,
       "membership_expire_on": 1708436201,
       "next_cert_issuable_on": 1692141720,
       "certs_received": {
@@ -180503,9 +184308,7 @@
         "chronophonix": 1706245567,
         "Shamphalai": 1720072839,
         "Houriadeparissud": 1732601749,
-        "nadiaespaignet": 1709347572,
-        "SandraHeleno": 1695935504,
-        "Alexis": 1695413485
+        "nadiaespaignet": 1709347572
       }
     },
     "Nelly": {
@@ -180527,8 +184330,8 @@
     "Celine84": {
       "index": 6114,
       "owner_key": "G7ZxjDd41C2VXAxC669Neh4Cv3wZ2Pf46MTUuw3HeUGt",
-      "balance": 682329,
-      "membership_expire_on": 1694261382,
+      "balance": 691941,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1683777219,
       "certs_received": {
         "Francois-Rose": 1703988582,
@@ -180543,7 +184346,7 @@
     "MaiteLeke": {
       "index": 9548,
       "owner_key": "G7dDCVHgGstdSo9Pjy27JbDVVNynP1aqLbvHdsUbn68K",
-      "balance": 394234,
+      "balance": 433920,
       "membership_expire_on": 1724337676,
       "next_cert_issuable_on": 1680075010,
       "certs_received": {
@@ -180585,7 +184388,7 @@
     "IlyesRif": {
       "index": 11089,
       "owner_key": "G88B8ewK8EvpsWmxBiV63JuepYN9DgZsYGmMaySYtzw3",
-      "balance": 293282,
+      "balance": 332968,
       "membership_expire_on": 1703886821,
       "next_cert_issuable_on": 1679919225,
       "certs_received": {
@@ -180611,17 +184414,16 @@
       "balance": 278829,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1651130381,
-      "certs_received": {
-        "LaurentArno": 1693638668
-      }
+      "certs_received": {}
     },
     "Habibi": {
       "index": 5330,
       "owner_key": "G8LAvXFxJV1dmvpZGwYa7tbjhfWRoNPBKfCn2QKfMEYr",
-      "balance": 789957,
+      "balance": 829643,
       "membership_expire_on": 1712718365,
       "next_cert_issuable_on": 1692977350,
       "certs_received": {
+        "Monette": 1757141466,
         "Aricat": 1744841451,
         "AZUL": 1744650672,
         "Gigimit57": 1744603655,
@@ -180637,8 +184439,8 @@
     "Titof": {
       "index": 10718,
       "owner_key": "G8RDWgZPVmNVFKEFtwQ7Tmp6DZZFKcS8NjeR2NJS8Fax",
-      "balance": 291338,
-      "membership_expire_on": 1700827744,
+      "balance": 331024,
+      "membership_expire_on": 1727994336,
       "next_cert_issuable_on": 1671019030,
       "certs_received": {
         "SophieMichaud": 1732493680,
@@ -180651,7 +184453,7 @@
     "Yael84": {
       "index": 11838,
       "owner_key": "G8RroBqjwU77dbfnh4zUfb3kH4Us91XBUEFp9FU2uaTW",
-      "balance": 195305,
+      "balance": 234991,
       "membership_expire_on": 1708910574,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -180666,8 +184468,8 @@
     "Linepau": {
       "index": 6133,
       "owner_key": "G8TDaKAipRL7pFRjgqLJwha5y6dqDFYXDnkE25yjfvMp",
-      "balance": 759745,
-      "membership_expire_on": 1695138024,
+      "balance": 780037,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1687179147,
       "certs_received": {
         "enrichill": 1714620373,
@@ -180686,9 +184488,9 @@
     "Remi": {
       "index": 2162,
       "owner_key": "G8dTRL4b9HcE3cXxcwtWYc7E9rXHuVKM1ZKnmLSNDTFy",
-      "balance": 3274835,
+      "balance": 3314521,
       "membership_expire_on": 1720915290,
-      "next_cert_issuable_on": 1689638959,
+      "next_cert_issuable_on": 1695543540,
       "certs_received": {
         "Theo": 1711082682,
         "paidge": 1734932595,
@@ -180701,7 +184503,7 @@
     "Mcmont": {
       "index": 11767,
       "owner_key": "G8eUTCTfSJaEcN69FahrH4FujEvoJyPv5mm2F2R22Lrk",
-      "balance": 187558,
+      "balance": 227244,
       "membership_expire_on": 1707573557,
       "next_cert_issuable_on": 1681553574,
       "certs_received": {
@@ -180717,7 +184519,7 @@
     "Cocodiesse": {
       "index": 8983,
       "owner_key": "G8q4G7v4hSB1cN1MQY7rZnqLV19mrXtPRn6tZwhYj1Kj",
-      "balance": 253534,
+      "balance": 288220,
       "membership_expire_on": 1719521496,
       "next_cert_issuable_on": 1669121621,
       "certs_received": {
@@ -180744,9 +184546,9 @@
     "Biou": {
       "index": 12916,
       "owner_key": "G8wq6ghswv9bmnP3pGCtPq8UULZ15GcuHxZrBNhrPcFd",
-      "balance": 47100,
+      "balance": 86786,
       "membership_expire_on": 1718044888,
-      "next_cert_issuable_on": 1691578027,
+      "next_cert_issuable_on": 1694263211,
       "certs_received": {
         "Zap": 1749613102,
         "Flohubert": 1749700809,
@@ -180755,7 +184557,9 @@
         "Asthenie": 1750133115,
         "Siddh": 1750097270,
         "Loup": 1753418514,
+        "Ananda": 1757719010,
         "Fanchon": 1751649794,
+        "Mauve": 1758571160,
         "ben078m": 1750361272
       }
     },
@@ -180784,7 +184588,7 @@
     "JeanPascalG974": {
       "index": 10483,
       "owner_key": "G8yGj9AtdbCdY8HL82Y5i6F8pU612J6N5BUnLLmH2oTB",
-      "balance": 302546,
+      "balance": 342232,
       "membership_expire_on": 1700154875,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -180799,9 +184603,9 @@
     "Ceciledgh": {
       "index": 13337,
       "owner_key": "G8zM4jpNLs4ZaEYYqNWEntxCNwn3nN6LYnis1NCcVtY6",
-      "balance": 37664,
+      "balance": 77350,
       "membership_expire_on": 1721331078,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696212329,
       "certs_received": {
         "ThaisSander": 1754616983,
         "ChristopheD": 1753551812,
@@ -180813,7 +184617,7 @@
     "Lilybelle": {
       "index": 11932,
       "owner_key": "G92gQYerkYvgFFMivLQ5nE8JHB4LnFNTt78Y7xyFLW3E",
-      "balance": 170733,
+      "balance": 210419,
       "membership_expire_on": 1710035019,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -180831,9 +184635,7 @@
       "balance": 363738,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "ElisaMillot": 1694215804
-      }
+      "certs_received": {}
     },
     "ManonLefebvre": {
       "index": 2691,
@@ -180864,8 +184666,8 @@
     "joMARC": {
       "index": 10411,
       "owner_key": "G9LGYXZy9DZ5aCGC6HzV6HsCPxi62DEFR9S5S2rFZmz1",
-      "balance": 329541,
-      "membership_expire_on": 1699448303,
+      "balance": 369227,
+      "membership_expire_on": 1725893742,
       "next_cert_issuable_on": 1688482465,
       "certs_received": {
         "CorinnePatris": 1731446584,
@@ -180879,7 +184681,7 @@
     "FabienMem": {
       "index": 6549,
       "owner_key": "G9MSwbWZKuAeVZTqcUfEiq9gyQVJ5Z4XrRwM392YSq7",
-      "balance": 470662,
+      "balance": 510348,
       "membership_expire_on": 1698535133,
       "next_cert_issuable_on": 1689125241,
       "certs_received": {
@@ -180930,16 +184732,14 @@
       "balance": 852666,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Manholy34": 1696715992
-      }
+      "certs_received": {}
     },
     "MarineJ": {
       "index": 4747,
       "owner_key": "G9gmS58vrQ7daCkqsjCfaKDE1Fid1cyafop7sTpR1koD",
-      "balance": 982595,
+      "balance": 867781,
       "membership_expire_on": 1705450658,
-      "next_cert_issuable_on": 1693218426,
+      "next_cert_issuable_on": 1696252065,
       "certs_received": {
         "Mym": 1707466563,
         "Jeanrachid": 1720512363,
@@ -180947,13 +184747,14 @@
         "Margaux": 1754245328,
         "CelesteGuiral": 1709753678,
         "LaurentM": 1747763773,
-        "JeanPierreReina": 1710534975
+        "JeanPierreReina": 1710534975,
+        "Cigalou": 1756959292
       }
     },
     "adam": {
       "index": 3634,
       "owner_key": "G9njniQRL5RUwjbJRgHc5vLVyr5iUXSPVxNhTdCfVLFR",
-      "balance": 460163,
+      "balance": 499849,
       "membership_expire_on": 1710795498,
       "next_cert_issuable_on": 1684161884,
       "certs_received": {
@@ -180969,7 +184770,7 @@
     "Rezkia974": {
       "index": 10869,
       "owner_key": "G9pTGFGJW8Rt5jHGeDeDpebvaNJnx4MzVu5yK5NE43Ex",
-      "balance": 251189,
+      "balance": 232375,
       "membership_expire_on": 1702293555,
       "next_cert_issuable_on": 1684113842,
       "certs_received": {
@@ -180992,7 +184793,7 @@
     "Soledad09": {
       "index": 12317,
       "owner_key": "G9tjLn631eqWkGjnZkHFoLi7ih1QVdMkBnfGd9s3hxM6",
-      "balance": 159956,
+      "balance": 199642,
       "membership_expire_on": 1712755589,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -181006,31 +184807,25 @@
     "Herydanslanievre": {
       "index": 5743,
       "owner_key": "GA3DaeJxdvT7ichHebY7CJF6mY29bSTDEvLEuucTDUrY",
-      "balance": 659021,
+      "balance": 698707,
       "membership_expire_on": 1719775263,
       "next_cert_issuable_on": 1669630045,
       "certs_received": {
-        "Nagual": 1693790902,
-        "gui_tooun": 1695743693,
         "pierrem07": 1722065476,
         "ThaoT": 1705645111,
         "MarieK89": 1701929834,
         "Isaeng": 1722220482,
-        "EveC": 1695617056,
-        "ortie": 1695617308,
         "BisQI": 1718820043,
-        "s00999": 1695618795,
         "LizaCarone": 1710315705,
         "chaumesaries": 1703798628,
         "Gclaire": 1718836066,
-        "maBeltjens": 1705299299,
-        "MutatisMutandis": 1693784446
+        "maBeltjens": 1705299299
       }
     },
     "MireilleCouffin": {
       "index": 3752,
       "owner_key": "GAAK4gbXRNgmXGZNFw9Huj4RqVfgxnbX3k8Qy6hh5AMS",
-      "balance": 494166,
+      "balance": 533852,
       "membership_expire_on": 1701948198,
       "next_cert_issuable_on": 1672717202,
       "certs_received": {
@@ -181046,17 +184841,20 @@
     "Enoc": {
       "index": 11424,
       "owner_key": "GAEuM1qtrWi64Uqg1mXiYkNeQ8P6iGAXVC5yVxmUb1pr",
-      "balance": 181102,
+      "balance": 208288,
       "membership_expire_on": 1706625325,
-      "next_cert_issuable_on": 1692083748,
+      "next_cert_issuable_on": 1694674894,
       "certs_received": {
         "CrisBB": 1738183855,
+        "Mariacrea": 1754989866,
         "Sonya": 1738183855,
+        "Camilarogelia13": 1757725027,
         "Leia": 1738297564,
         "edubotaoo": 1738183238,
         "Brahmaya": 1754990121,
         "MaiteBel": 1755209155,
         "ElenaMavida": 1754990121,
+        "josecristobalsaludholistica": 1757703647,
         "lachispis": 1738209219
       }
     },
@@ -181077,9 +184875,9 @@
     "Ludivine85": {
       "index": 11301,
       "owner_key": "GAGYtkcxuLxk4TntN8MUvvwy4dJsYhcMfmMCH1wbcv1o",
-      "balance": 236565,
+      "balance": 276251,
       "membership_expire_on": 1705243189,
-      "next_cert_issuable_on": 1690871187,
+      "next_cert_issuable_on": 1695913038,
       "certs_received": {
         "Gscarabbe": 1750903242,
         "Holistique": 1742968474,
@@ -181098,7 +184896,7 @@
     "LaureJacob51": {
       "index": 7743,
       "owner_key": "GAJ2VUo1uvGk1frQzWgWP25nPfZvUfFjxaLBeCvULFpC",
-      "balance": 428208,
+      "balance": 467894,
       "membership_expire_on": 1712279778,
       "next_cert_issuable_on": 1688046010,
       "certs_received": {
@@ -181117,7 +184915,7 @@
     "AxeDamdam14": {
       "index": 10914,
       "owner_key": "GAKWPQnYKCymQxdX9ds5acmemiYS5TmJWsJE2rVWtznx",
-      "balance": 271512,
+      "balance": 311198,
       "membership_expire_on": 1702341295,
       "next_cert_issuable_on": 1677732331,
       "certs_received": {
@@ -181150,7 +184948,7 @@
     "lezebremulticolore": {
       "index": 13267,
       "owner_key": "GATHZEb1vku51UhCzFXSgN57ZsgBVhbrbnpjeTaJn7ew",
-      "balance": 64244,
+      "balance": 96330,
       "membership_expire_on": 1721665775,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -181172,8 +184970,8 @@
     "simonrvld": {
       "index": 9796,
       "owner_key": "GAVAt56fMGtx8rRxA9mNrJXML4BHMzrQruiJM1oZ3VVM",
-      "balance": 203886,
-      "membership_expire_on": 1695947028,
+      "balance": 342572,
+      "membership_expire_on": 1725544163,
       "next_cert_issuable_on": 1690458759,
       "certs_received": {
         "Moulinettedumoulin": 1748974310,
@@ -181191,7 +184989,7 @@
     "jeromejub": {
       "index": 2780,
       "owner_key": "GAXSM2DqTbmd3amPtrGYBRFehiCAmha66h5uAQt8qjPV",
-      "balance": 1439145,
+      "balance": 1478831,
       "membership_expire_on": 1714223981,
       "next_cert_issuable_on": 1675263088,
       "certs_received": {
@@ -181221,7 +185019,7 @@
     "Salvia": {
       "index": 12146,
       "owner_key": "GAe1Dp1QqzzBrp9JVLd81Eoz23CEMeqPWWEwWS6aQgBQ",
-      "balance": 86836,
+      "balance": 126522,
       "membership_expire_on": 1711395362,
       "next_cert_issuable_on": 1682740863,
       "certs_received": {
@@ -181246,10 +185044,11 @@
     "DOMIASTRO": {
       "index": 11253,
       "owner_key": "GAmZUfTZE4woHvc9vJMsnPWSPgRsXw8Kendvt7ce3foY",
-      "balance": 136901,
+      "balance": 133487,
       "membership_expire_on": 1704995801,
-      "next_cert_issuable_on": 1692796429,
+      "next_cert_issuable_on": 1693981773,
       "certs_received": {
+        "Cholo": 1759547501,
         "Ambar": 1742513416,
         "Wynfyd": 1740554470,
         "AlvaroFernandez": 1736673203,
@@ -181263,16 +185062,18 @@
         "migueleon": 1755142680,
         "CarmenSR": 1736673203,
         "Nauan": 1737873931,
+        "Dixebral": 1756789510,
         "CristinaAbella": 1737106962,
         "SyraAlthea": 1736669452,
         "Marianfs": 1747382036,
+        "AndresXaudi": 1757979881,
         "lachispis": 1749949851
       }
     },
     "Ginou": {
       "index": 7768,
       "owner_key": "GAncsi15RPxvEPjVrNcnvRDuQjCBxUutqUTgS2JZx2Gj",
-      "balance": 524333,
+      "balance": 565019,
       "membership_expire_on": 1711644373,
       "next_cert_issuable_on": 1677677992,
       "certs_received": {
@@ -181280,6 +185081,7 @@
         "merenoel": 1712878678,
         "evelyne2b": 1724960122,
         "MARY30": 1713025891,
+        "Alisce": 1756932618,
         "MireilleMC": 1712872835,
         "Menou26": 1729634082,
         "Omasaya": 1712873382
@@ -181288,15 +185090,15 @@
     "Coco": {
       "index": 1929,
       "owner_key": "GAp9PXV9mSSBYx4ENt4TpJkQb5G38tg6TWuXjWvwR6q3",
-      "balance": 2851646,
+      "balance": 2884332,
       "membership_expire_on": 1711998872,
-      "next_cert_issuable_on": 1688446764,
+      "next_cert_issuable_on": 1695179842,
       "certs_received": {
         "Crystal": 1738529701,
         "VioletteRose": 1740701353,
         "SylvieT": 1747123186,
         "marika8": 1717457089,
-        "AurelienBois": 1695694614,
+        "RaphaelleEva": 1758558814,
         "Lucianael": 1735776731,
         "ken": 1701501745,
         "MarieFranceL": 1753633536,
@@ -181322,7 +185124,7 @@
     "Feeclochette": {
       "index": 2390,
       "owner_key": "GB8XMV8URgG42hhJW6h7esjS3DYDSYTZPBgLevc7ywgK",
-      "balance": 671941,
+      "balance": 672041,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {}
@@ -181330,11 +185132,12 @@
     "Esklaine": {
       "index": 13362,
       "owner_key": "GB9BQnaxNRgkqx5tcoTH2y7ZUgPXYKcDifkm3BbTExLm",
-      "balance": 20392,
+      "balance": 60078,
       "membership_expire_on": 1723406268,
-      "next_cert_issuable_on": 1692988732,
+      "next_cert_issuable_on": 1693721280,
       "certs_received": {
         "OlivK": 1754975568,
+        "cmms29": 1756763250,
         "ArthuK": 1754975568,
         "Mat971": 1754975568,
         "Kitou971": 1754964467,
@@ -181352,7 +185155,7 @@
     "charlotterenee": {
       "index": 3938,
       "owner_key": "GBGfgqnAqBxxqD9ho6Jes13dUSUtRENThPic7deTMZfH",
-      "balance": 874111,
+      "balance": 913797,
       "membership_expire_on": 1697043654,
       "next_cert_issuable_on": 1679640239,
       "certs_received": {
@@ -181386,7 +185189,7 @@
     "Silberfee": {
       "index": 4193,
       "owner_key": "GBTAN9RsJakK3tKD7H5FYVG2QURRHPYUFw4DYLKuLeEH",
-      "balance": 1153425,
+      "balance": 1193111,
       "membership_expire_on": 1698939358,
       "next_cert_issuable_on": 1675423187,
       "certs_received": {
@@ -181416,22 +185219,17 @@
     "Hamidov51": {
       "index": 5709,
       "owner_key": "GBXUe9Ax1eopVs8SCbLT3ZcCXTEL93cN9HGkFdxbHw56",
-      "balance": 537773,
-      "membership_expire_on": 1715746736,
+      "balance": 562367,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1686685160,
       "certs_received": {
-        "Beasejour": 1695558473,
-        "mamierabelle": 1695526750,
-        "TiJus": 1695034498,
-        "FanfanJub": 1695526465,
-        "GinetteJub": 1695567545,
         "Agast": 1751553067
       }
     },
     "jospiritus": {
       "index": 4779,
       "owner_key": "GBXexXdooehxU51TSzVvyvpBH6xvVctf8o4g5HhRENHn",
-      "balance": 1122719,
+      "balance": 1162405,
       "membership_expire_on": 1705079404,
       "next_cert_issuable_on": 1690168653,
       "certs_received": {
@@ -181450,7 +185248,7 @@
     "Pascale": {
       "index": 11224,
       "owner_key": "GBgmhqiL5Uf6AKhRa46LtabGtf6uXffTnu7YuLzE8aBC",
-      "balance": 236678,
+      "balance": 276364,
       "membership_expire_on": 1704512616,
       "next_cert_issuable_on": 1688725345,
       "certs_received": {
@@ -181472,7 +185270,7 @@
     "Koryne65": {
       "index": 7736,
       "owner_key": "GBpGo668gVevrsJey1vRr5qqUhDMMEGQCg6NsQx6VcnG",
-      "balance": 343096,
+      "balance": 382782,
       "membership_expire_on": 1723567050,
       "next_cert_issuable_on": 1665158989,
       "certs_received": {
@@ -181488,7 +185286,7 @@
     "SoniaN": {
       "index": 10269,
       "owner_key": "GBu6yGHftRqewQN83zwBxh8a8G5cv2FB55srPLW9Lpji",
-      "balance": 574372,
+      "balance": 614058,
       "membership_expire_on": 1699274643,
       "next_cert_issuable_on": 1687068839,
       "certs_received": {
@@ -181548,7 +185346,7 @@
     "CatherinePaturel": {
       "index": 7482,
       "owner_key": "GCFSWoFMavonRQsPmKbHgC4bYnd2LpyNRqVUhwK3HiSc",
-      "balance": 541504,
+      "balance": 581190,
       "membership_expire_on": 1707254283,
       "next_cert_issuable_on": 1652104342,
       "certs_received": {
@@ -181562,7 +185360,7 @@
     "Flannes": {
       "index": 7965,
       "owner_key": "GCKSCxiQ7y1GWKbmetG5b8F6evTkgy1AmpTPEAmuMchw",
-      "balance": 607173,
+      "balance": 646859,
       "membership_expire_on": 1712612807,
       "next_cert_issuable_on": 1682745932,
       "certs_received": {
@@ -181582,9 +185380,9 @@
     "Mcm2": {
       "index": 8277,
       "owner_key": "GCRyjykauNv1L62vboMwzT8RiRpFLGAcQCLrJHqjonGV",
-      "balance": 251501,
+      "balance": 353045,
       "membership_expire_on": 1708989335,
-      "next_cert_issuable_on": 1688926917,
+      "next_cert_issuable_on": 1694752922,
       "certs_received": {
         "Stef38": 1723023249,
         "Sunny": 1737505246,
@@ -181614,9 +185412,9 @@
     "SergeUme": {
       "index": 10432,
       "owner_key": "GCcCyucArzXEhcNW33d413y7cWrRwYhHDxgJDgxzY2rU",
-      "balance": 31853,
-      "membership_expire_on": 1699307396,
-      "next_cert_issuable_on": 1692693823,
+      "balance": 71539,
+      "membership_expire_on": 1726046337,
+      "next_cert_issuable_on": 1696806118,
       "certs_received": {
         "Etipol61": 1748112535,
         "SandyMenegazzi": 1752717456,
@@ -181629,6 +185427,7 @@
         "JeanMarcBuge": 1731624457,
         "GhislaineChartier": 1750108818,
         "Marieclaude": 1743439817,
+        "Xaby60": 1758489085,
         "Marie2puivert": 1747190788,
         "IsabellePriou": 1751858815,
         "Elianeferrier": 1747678517,
@@ -181650,13 +185449,14 @@
         "LaKjuner": 1752560706,
         "Neige": 1749066035,
         "NancyTalavera": 1749230035,
-        "KaraMonnerville": 1731054710
+        "KaraMonnerville": 1731054710,
+        "Pierre40120": 1756930309
       }
     },
     "Romain350": {
       "index": 975,
       "owner_key": "GCeJf9a8PdB3UyjWZNk3p5tXNkTxMrZD7iEBoBWHbJq3",
-      "balance": 861939,
+      "balance": 601625,
       "membership_expire_on": 1706636283,
       "next_cert_issuable_on": 1674732856,
       "certs_received": {
@@ -181679,7 +185479,7 @@
     "kerhas": {
       "index": 11636,
       "owner_key": "GCt25K4KdswYYbT4RSzi6YwXxMijjVVedL3ZrrZcoUAN",
-      "balance": 556500,
+      "balance": 604576,
       "membership_expire_on": 1707515927,
       "next_cert_issuable_on": 1690436431,
       "certs_received": {
@@ -181696,7 +185496,7 @@
     "Pongo": {
       "index": 11058,
       "owner_key": "GCwJxTLUvCYNFvKWh4wBA7wVZRtZoMLgmWPDuJCeR5kr",
-      "balance": 259863,
+      "balance": 299549,
       "membership_expire_on": 1702847284,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -181710,7 +185510,7 @@
     "SeveOrange": {
       "index": 7099,
       "owner_key": "GD3EUJk9Jz9zk7Rdi3CsCLmVG6RnK4gd89Zc1c6gZhcE",
-      "balance": 408223,
+      "balance": 447909,
       "membership_expire_on": 1706030258,
       "next_cert_issuable_on": 1657965727,
       "certs_received": {
@@ -181725,7 +185525,7 @@
     "BarbarayErichGraf": {
       "index": 11327,
       "owner_key": "GD3jpcUpnYMHmcBepXwSUjRxHuEawnMH37eiMoqfikF4",
-      "balance": 312547,
+      "balance": 352233,
       "membership_expire_on": 1700953800,
       "next_cert_issuable_on": 1686122000,
       "certs_received": {
@@ -181758,7 +185558,7 @@
     "Loelia": {
       "index": 10602,
       "owner_key": "GDBhfRt3au47Q4Puh1Yp4DbL8tuy9NKECwJFd9MVf9Zg",
-      "balance": 291633,
+      "balance": 331319,
       "membership_expire_on": 1697579951,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -181780,7 +185580,7 @@
     "MarieFranceL": {
       "index": 12136,
       "owner_key": "GDPmc3MfqYbz4smeH88RTANEQ15yViwpzXSG7GgvUS7k",
-      "balance": 161676,
+      "balance": 198362,
       "membership_expire_on": 1711048323,
       "next_cert_issuable_on": 1693472135,
       "certs_received": {
@@ -181794,14 +185594,15 @@
         "Fanfan13": 1742666633,
         "sercla": 1743041107,
         "VeroniqueMaessen": 1742606764,
+        "Coco": 1757906435,
         "SergeUme": 1742607180
       }
     },
     "Francesca": {
       "index": 10051,
       "owner_key": "GDRUsfRFXekwtZ5JdJr6QgDaxkFbTUpMKMrUFL6kXSUf",
-      "balance": 307775,
-      "membership_expire_on": 1697900934,
+      "balance": 346461,
+      "membership_expire_on": 1726360967,
       "next_cert_issuable_on": 1691581391,
       "certs_received": {
         "GweDesSables": 1743234786,
@@ -181817,19 +185618,21 @@
     "mellamanhernan": {
       "index": 12038,
       "owner_key": "GDWX2eroLWYgzuAauZWGrRW6c1T7UEEh8SCtzaEZDPjv",
-      "balance": 263211,
+      "balance": 238897,
       "membership_expire_on": 1710346563,
-      "next_cert_issuable_on": 1691045333,
+      "next_cert_issuable_on": 1694262025,
       "certs_received": {
         "Aguas": 1752219402,
         "Simplementemaria": 1741905682,
         "Josepeuta": 1741905199,
+        "realbrucest": 1755562251,
         "Beasegovia": 1746124722,
         "Madreselva": 1741925552,
         "ManuGi": 1741934313,
         "virginiaoreoro": 1745799321,
         "MaEstherG1": 1752219402,
         "GeraldineGarrigues": 1742060384,
+        "Juanmatierraplana": 1757305225,
         "Ahimsa73": 1746302033,
         "Keiro": 1746438431,
         "MACANATURE": 1750613522,
@@ -181839,7 +185642,7 @@
     "FleurChenot": {
       "index": 4564,
       "owner_key": "GDXXw2gyuF498iepyaexRnkKHQTRQygNPATGNz3R1H2F",
-      "balance": 445333,
+      "balance": 462819,
       "membership_expire_on": 1706107837,
       "next_cert_issuable_on": 1692249953,
       "certs_received": {
@@ -181859,7 +185662,7 @@
     "OValReiki": {
       "index": 7178,
       "owner_key": "GDgYb8mhNxLFmqgDi6gEPnTNXan6KiLiwDu4XjsKcf7j",
-      "balance": 492877,
+      "balance": 532563,
       "membership_expire_on": 1704211954,
       "next_cert_issuable_on": 1670731243,
       "certs_received": {
@@ -181880,7 +185683,7 @@
     "Caelum": {
       "index": 8910,
       "owner_key": "GDhCMLnjiueQGQ9q3Z3LvT82uU5aKdzBQUus832zDSYb",
-      "balance": 387763,
+      "balance": 427449,
       "membership_expire_on": 1716332328,
       "next_cert_issuable_on": 1671103953,
       "certs_received": {
@@ -181897,7 +185700,7 @@
     "paula_fantasi": {
       "index": 10991,
       "owner_key": "GDhgQ4dgyZqd9pps4zy21EoAMCPLUN3pMGzH5mSEr2DH",
-      "balance": 267306,
+      "balance": 306992,
       "membership_expire_on": 1702741727,
       "next_cert_issuable_on": 1681734408,
       "certs_received": {
@@ -181930,7 +185733,7 @@
     "VeroLille": {
       "index": 12318,
       "owner_key": "GECYDsQLTX7Amgwxkb8Z6LjJQ1CUgja81dq4FjphGK7D",
-      "balance": 146795,
+      "balance": 176481,
       "membership_expire_on": 1710936823,
       "next_cert_issuable_on": 1686894571,
       "certs_received": {
@@ -181948,14 +185751,7 @@
       "balance": 556435,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "samsufy": 1694153429,
-        "Laureline": 1693538960,
-        "Maelline": 1693538529,
-        "Aneuf": 1693537704,
-        "ChristopheRobine": 1693538529,
-        "Maddy": 1694417583
-      }
+      "certs_received": {}
     },
     "zuniga": {
       "index": 968,
@@ -181998,7 +185794,7 @@
     "JRDS": {
       "index": 10916,
       "owner_key": "GEdUW5bSXcWM6rRNCTbofRWcQB7E7nFyJJUhgkzQ5xUu",
-      "balance": 321512,
+      "balance": 361198,
       "membership_expire_on": 1702963932,
       "next_cert_issuable_on": 1672280451,
       "certs_received": {
@@ -182054,7 +185850,7 @@
     "elena": {
       "index": 13131,
       "owner_key": "GEuVsivm19gZsduhhzNhrHbMbwR9jMJN2d2zGRUprGFo",
-      "balance": 101620,
+      "balance": 109960,
       "membership_expire_on": 1720380031,
       "next_cert_issuable_on": 1692555321,
       "certs_received": {
@@ -182069,7 +185865,7 @@
     "llecoeur": {
       "index": 4617,
       "owner_key": "GF3NLpeswSigmEgsj9Caqb6jaFpAwaYwSCLC4jHpKt7h",
-      "balance": 714476,
+      "balance": 784066,
       "membership_expire_on": 1725040052,
       "next_cert_issuable_on": 1678711384,
       "certs_received": {
@@ -182077,7 +185873,6 @@
         "seb": 1699383476,
         "GUL40_Fr1": 1705480624,
         "Wynfyd": 1731396681,
-        "theresecaillere": 1696545849,
         "sro": 1717381958,
         "GaelleLC": 1737926618,
         "PatrickG1": 1706977187,
@@ -182105,10 +185900,11 @@
     "Vibratoire": {
       "index": 7888,
       "owner_key": "GF5R5EbGruPHZ2EwP2FEbHn8uMjVB5zXuPjXdr7tjL6",
-      "balance": 379640,
+      "balance": 353326,
       "membership_expire_on": 1709128619,
-      "next_cert_issuable_on": 1690705140,
+      "next_cert_issuable_on": 1695297120,
       "certs_received": {
+        "FranZia": 1758354679,
         "VERDANDI77": 1714179633,
         "rosette24": 1754802573,
         "Jeff7791": 1714104290,
@@ -182123,7 +185919,7 @@
     "Carolinek": {
       "index": 3990,
       "owner_key": "GFLMJiu146XE7cJeePu38bhE6qjKbp6AeeJ5yv53NTAT",
-      "balance": 1114698,
+      "balance": 1151384,
       "membership_expire_on": 1711810241,
       "next_cert_issuable_on": 1672713926,
       "certs_received": {
@@ -182146,7 +185942,7 @@
     "Fisioterapiasgg": {
       "index": 10498,
       "owner_key": "GFMHjXbByGvUNs2RPm3kdzMQYsBADkjdbP5xGWXHqyas",
-      "balance": 278087,
+      "balance": 317773,
       "membership_expire_on": 1700650499,
       "next_cert_issuable_on": 1682899543,
       "certs_received": {
@@ -182165,9 +185961,8 @@
       "owner_key": "GFShJBGAnXXNvWuWv2sBTc2jxPfuJLgB6sxunEj69i31",
       "balance": 123919,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632811813,
+      "next_cert_issuable_on": 0,
       "certs_received": {
-        "Claire666": 1695417562,
         "TristanG1": 1696954491
       }
     },
@@ -182182,8 +185977,8 @@
     "Tika": {
       "index": 9490,
       "owner_key": "GFWRiYv32Gde3ch4tHhKG3tC4vfTkB8vccdUcVCjJzHj",
-      "balance": 293789,
-      "membership_expire_on": 1694288704,
+      "balance": 303401,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675662223,
       "certs_received": {
         "Camillefairy": 1726015008,
@@ -182198,9 +185993,9 @@
     "KatalineMOREL": {
       "index": 3046,
       "owner_key": "GFYr3bzfTUhMM9p7rr3KbAZWw6MsQiQuFzn1geoPyoPs",
-      "balance": 409469,
+      "balance": 449155,
       "membership_expire_on": 1714307841,
-      "next_cert_issuable_on": 1684660562,
+      "next_cert_issuable_on": 1695790197,
       "certs_received": {
         "Indiana": 1748651495,
         "Estel97430": 1727760543,
@@ -182219,7 +186014,7 @@
         "Shanti": 1740532584,
         "GeraldM": 1717084061,
         "BeaumontLiliane": 1700430651,
-        "Stephio": 1701069921,
+        "Stephio": 1756511960,
         "Flo05": 1729770099,
         "Myriam97410": 1698595957,
         "Bizou": 1705642866,
@@ -182227,10 +186022,8 @@
         "EmiAp974": 1719670665,
         "Gislaine974": 1703906133,
         "KeshavaDasi": 1708227536,
-        "Eddy974": 1695835767,
         "pampermacole": 1710573508,
         "Ginee974": 1703207150,
-        "FrancoiseRangla974": 1696460245,
         "NatachaV974": 1730253019,
         "mancity08": 1702161814,
         "MarieLibellule": 1722020724,
@@ -182252,15 +186045,9 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1645422775,
       "certs_received": {
-        "mimone974": 1694558589,
         "Celine974": 1708036431,
         "Cindy974": 1706035144,
-        "gabyjoce974": 1694577197,
-        "Myriam97410": 1698594696,
-        "Gislaine974": 1694561855,
-        "KatalineMOREL": 1694557548,
-        "FredericAmany974": 1694559284,
-        "marcos974": 1695314668
+        "Myriam97410": 1698594696
       }
     },
     "Mewilane": {
@@ -182282,9 +186069,9 @@
     "BertrandCGO": {
       "index": 6875,
       "owner_key": "GFmcpPZZ6iE3paP6YiN5sBguu9muNeD82LU1BSwQsyPs",
-      "balance": 164270,
+      "balance": 99056,
       "membership_expire_on": 1702803786,
-      "next_cert_issuable_on": 1693367707,
+      "next_cert_issuable_on": 1694056579,
       "certs_received": {
         "DanWF": 1707270739,
         "FenderChristophe": 1726805014,
@@ -182293,6 +186080,7 @@
         "Cyanescens": 1737794586,
         "Emniht": 1740118112,
         "kalimheros": 1713515459,
+        "lilarose": 1757957784,
         "Flammekueche": 1739244253,
         "Schnick": 1736277303,
         "hazed": 1707269479,
@@ -182308,7 +186096,7 @@
     "Xahel": {
       "index": 8359,
       "owner_key": "GFo81VC8KNpKCPqeUwCPhC39hBnmpxtYjBttyRbbtCHa",
-      "balance": 483887,
+      "balance": 523573,
       "membership_expire_on": 1715261353,
       "next_cert_issuable_on": 1663561294,
       "certs_received": {
@@ -182322,7 +186110,7 @@
     "Bibi07": {
       "index": 12275,
       "owner_key": "GG1jUbepemnWit7FQDyW59u3MBC8KjZUTgBPhdf86DGm",
-      "balance": 117260,
+      "balance": 163346,
       "membership_expire_on": 1712433921,
       "next_cert_issuable_on": 1681733399,
       "certs_received": {
@@ -182366,13 +186154,14 @@
     "AmelieBroudissou": {
       "index": 10881,
       "owner_key": "GGJxMjVHfuKd2M9xm2FUxznNUyYmyknGZsEWMRBZVs88",
-      "balance": 298987,
+      "balance": 533049,
       "membership_expire_on": 1702248733,
-      "next_cert_issuable_on": 1676988694,
+      "next_cert_issuable_on": 1695021346,
       "certs_received": {
         "MYCELIUM": 1734316598,
         "SamSam": 1734383517,
         "Chanchan": 1734297529,
+        "Eiokka": 1758064546,
         "CarolAmethyste": 1734320283,
         "Maaltir": 1734317954
       }
@@ -182380,7 +186169,7 @@
     "Breizhatao": {
       "index": 11018,
       "owner_key": "GGKx4Go9TivGbzvaj1BPBBi6peKXNxnmPsoeVmNmYbUC",
-      "balance": 724497,
+      "balance": 764183,
       "membership_expire_on": 1699815678,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -182395,9 +186184,9 @@
     "Flocha": {
       "index": 9710,
       "owner_key": "GGNgjUNpagkpXMfyTXc4SB7PwLyLfuzcocSqhjEGTT5x",
-      "balance": 358450,
-      "membership_expire_on": 1695989501,
-      "next_cert_issuable_on": 1680358539,
+      "balance": 398636,
+      "membership_expire_on": 1726334897,
+      "next_cert_issuable_on": 1694850463,
       "certs_received": {
         "FraBro": 1726461553,
         "IsaTuick": 1726461208,
@@ -182412,13 +186201,13 @@
     "AuFilDuTemps": {
       "index": 3268,
       "owner_key": "GGPYTksGiz3SX3cwjufSKBULh38oukKu6fiCbesZGXPd",
-      "balance": 1382269,
-      "membership_expire_on": 1697924120,
-      "next_cert_issuable_on": 1676822080,
+      "balance": 1421955,
+      "membership_expire_on": 1725050198,
+      "next_cert_issuable_on": 1696086037,
       "certs_received": {
         "absalon2": 1701105902,
         "Sev": 1696747165,
-        "AmeHC": 1701245143,
+        "AmeHC": 1756604584,
         "EricSIMON": 1717867509,
         "BricePedrono": 1700812239,
         "Badiane": 1727636047,
@@ -182426,7 +186215,7 @@
         "JuanLu": 1700416960,
         "Florencefleur": 1720158479,
         "DavidMontpellier": 1729569299,
-        "CorinneCoco": 1700881809,
+        "CorinneCoco": 1756604956,
         "Did-yeah": 1722654921,
         "lilithdu34": 1701988765,
         "ReMaLoup": 1718217619,
@@ -182438,7 +186227,7 @@
     "ValerieS": {
       "index": 11367,
       "owner_key": "GGSBDTKLJGE7ZZFHVeqiqadY6Akjrp5GD4UTtDhZRw8i",
-      "balance": 227470,
+      "balance": 260156,
       "membership_expire_on": 1704123287,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -182452,7 +186241,7 @@
     "Reuze": {
       "index": 6276,
       "owner_key": "GGYfqEFPFbyf2w89MEXxQJPaZJpHLnKThwU7p832sZCv",
-      "balance": 670657,
+      "balance": 710343,
       "membership_expire_on": 1697548068,
       "next_cert_issuable_on": 1643688963,
       "certs_received": {
@@ -182466,7 +186255,7 @@
     "bigthor": {
       "index": 12781,
       "owner_key": "GGdW5RxdaiwjiBmrasRvo3XkEjeTRzWudP3h8yJb8iGu",
-      "balance": 71256,
+      "balance": 110942,
       "membership_expire_on": 1717103201,
       "next_cert_issuable_on": 1690519880,
       "certs_received": {
@@ -182480,8 +186269,8 @@
     "Opainsource": {
       "index": 7662,
       "owner_key": "GGhh1j33p2xkfkABag75idBYbWDkzJshumBea9xQ5cu8",
-      "balance": 291709,
-      "membership_expire_on": 0,
+      "balance": 311103,
+      "membership_expire_on": 1726745663,
       "next_cert_issuable_on": 1654478980,
       "certs_received": {
         "Samuel": 1712191539,
@@ -182496,7 +186285,7 @@
     "Tsultrim21": {
       "index": 9962,
       "owner_key": "GGj6H3aU9DktLofj1W4T1yyYbmc8woRMT6zPY6TBZkQD",
-      "balance": 339288,
+      "balance": 378974,
       "membership_expire_on": 1697237159,
       "next_cert_issuable_on": 1688094386,
       "certs_received": {
@@ -182528,10 +186317,11 @@
     "VitoAndersen": {
       "index": 778,
       "owner_key": "GHEKgZkVyauseVcQpBRuihTMaiYNJG1qcpH8xmCtnrX2",
-      "balance": 915964,
+      "balance": 955650,
       "membership_expire_on": 1704121454,
       "next_cert_issuable_on": 1684064786,
       "certs_received": {
+        "Sailing": 1758216600,
         "Sev": 1711758353,
         "Rlov": 1738486239,
         "ChristopheRobine": 1706378265,
@@ -182578,9 +186368,9 @@
     "iserunelosangE": {
       "index": 12379,
       "owner_key": "GHWbPYHWmQEcrUFpLubJRnNrappNs4Hi256Cwv6HQs1a",
-      "balance": 86480,
+      "balance": 126166,
       "membership_expire_on": 1712944533,
-      "next_cert_issuable_on": 1693212075,
+      "next_cert_issuable_on": 1693807007,
       "certs_received": {
         "diablade": 1744599740,
         "Amarante": 1744828256,
@@ -182596,21 +186386,22 @@
     "Paco": {
       "index": 816,
       "owner_key": "GHcaKPg1S8dqqaKHReqUf8CHJU9E93a6oPF1CaDjDpTV",
-      "balance": 1922871,
+      "balance": 1962557,
       "membership_expire_on": 1707764981,
       "next_cert_issuable_on": 1666709336,
       "certs_received": {
-        "Philippe26": 1698514131,
-        "Laurentld": 1698448693,
+        "Philippe26": 1758562403,
+        "Laurentld": 1758562403,
         "Assoben": 1698703299,
-        "escargotbleu": 1698175904,
-        "Deo2004": 1698704982
+        "escargotbleu": 1758834476,
+        "Deo2004": 1698704982,
+        "Vinanssey15": 1758859219
       }
     },
     "franck89": {
       "index": 12915,
       "owner_key": "GHeJzZbBAj4JSDxB6ZJn5nKzPe9Lhgjm8YbBbA7A96k8",
-      "balance": 604230,
+      "balance": 626416,
       "membership_expire_on": 1718043142,
       "next_cert_issuable_on": 1691381623,
       "certs_received": {
@@ -182624,8 +186415,8 @@
     "Barbapapa": {
       "index": 5602,
       "owner_key": "GHh7VMnMvtvsSAmqSsjW1wwYTLdoEESZjbGV2Je5pnHf",
-      "balance": 531498,
-      "membership_expire_on": 1698982551,
+      "balance": 571184,
+      "membership_expire_on": 1725996499,
       "next_cert_issuable_on": 1675780718,
       "certs_received": {
         "110patates": 1739507717,
@@ -182653,7 +186444,7 @@
     "ViudasDasTerras": {
       "index": 11478,
       "owner_key": "GHn7kaVJFzq7aFQypMVJ8pwFq8WCVgsYxvEwQCZHGvfU",
-      "balance": 152380,
+      "balance": 192066,
       "membership_expire_on": 1706933405,
       "next_cert_issuable_on": 1684122754,
       "certs_received": {
@@ -182674,7 +186465,7 @@
     "AneSolEguzki": {
       "index": 9447,
       "owner_key": "GHt5Wt64y9EhPM4278Q3KjkuozPo5YG8CGcLvBnbakT5",
-      "balance": 361855,
+      "balance": 405041,
       "membership_expire_on": 1724614107,
       "next_cert_issuable_on": 1675012265,
       "certs_received": {
@@ -182709,9 +186500,9 @@
     "Laburg79": {
       "index": 9202,
       "owner_key": "GHyh5HduPkoYpjRBSp6vbQDcxTgp8wamkVHoC12C2ceN",
-      "balance": 390217,
+      "balance": 472903,
       "membership_expire_on": 1718145375,
-      "next_cert_issuable_on": 1677151949,
+      "next_cert_issuable_on": 1695387174,
       "certs_received": {
         "Samay": 1723248300,
         "FRANCINE79": 1722987768,
@@ -182724,7 +186515,7 @@
     "SandrineMuller": {
       "index": 4236,
       "owner_key": "GHzhPwMY89BytWqu2qHTyba9jkFqoS83LhW3rRjV7Bte",
-      "balance": 623050,
+      "balance": 662736,
       "membership_expire_on": 1723213564,
       "next_cert_issuable_on": 1683273765,
       "certs_received": {
@@ -182738,7 +186529,7 @@
     "DYves62": {
       "index": 872,
       "owner_key": "GJ5dYPG7ipt3JMbJS25NV5A8saKzLYxaxEaJnpXN5ixV",
-      "balance": 452023,
+      "balance": 491709,
       "membership_expire_on": 1702849273,
       "next_cert_issuable_on": 1650527381,
       "certs_received": {
@@ -182757,7 +186548,7 @@
     "Lau81": {
       "index": 8812,
       "owner_key": "GJ5nfniVYxSepcBRFKkmS12tsQEAhmRipzYyDsFC8m1g",
-      "balance": 307540,
+      "balance": 341926,
       "membership_expire_on": 1716645630,
       "next_cert_issuable_on": 1685717473,
       "certs_received": {
@@ -182797,15 +186588,16 @@
     "RemiGaudi26": {
       "index": 4949,
       "owner_key": "GJFkcj75R57KX8vf2pyccFTvX8N2GsKuafVVCWNqLXvF",
-      "balance": 812575,
+      "balance": 897261,
       "membership_expire_on": 1712974156,
       "next_cert_issuable_on": 1691758239,
       "certs_received": {
         "Carole26": 1701539206,
         "Philippe26": 1696869753,
-        "EveMahe": 1700337934,
+        "EveMahe": 1757436542,
         "CelineThiebaut": 1745815739,
         "Athena73": 1721884148,
+        "NathS": 1756877082,
         "JeanTibou": 1720582704,
         "lumiere34": 1697235918,
         "martine26": 1714480129,
@@ -182816,7 +186608,7 @@
     "IsaBel": {
       "index": 9575,
       "owner_key": "GJQ8ZqdEWznjWuyPmRsu637QEjDSK1W13nG1SGhJAzkt",
-      "balance": 307432,
+      "balance": 340118,
       "membership_expire_on": 1723469400,
       "next_cert_issuable_on": 1679994155,
       "certs_received": {
@@ -182830,7 +186622,7 @@
     "Takh26": {
       "index": 10484,
       "owner_key": "GJQQtvfTdNmHBct774J7H24ThyrxVtSnCbNT89XQG7q9",
-      "balance": 298646,
+      "balance": 339332,
       "membership_expire_on": 1700511359,
       "next_cert_issuable_on": 1686803922,
       "certs_received": {
@@ -182854,7 +186646,7 @@
     "nina": {
       "index": 10751,
       "owner_key": "GJUmoViAaptrYzyzH2RkuccM5cpHA2t45oAjF8zBCcgG",
-      "balance": 303161,
+      "balance": 342847,
       "membership_expire_on": 1702069563,
       "next_cert_issuable_on": 1672587432,
       "certs_received": {
@@ -182877,7 +186669,7 @@
     "ColetteForca": {
       "index": 8296,
       "owner_key": "GJZfx3zrmH1y39ia29Tiv4xx7RM4kN8WRo7K5Fn1zC6t",
-      "balance": 455042,
+      "balance": 494728,
       "membership_expire_on": 1712881676,
       "next_cert_issuable_on": 1684067383,
       "certs_received": {
@@ -182899,37 +186691,33 @@
     "PascalGuillemain": {
       "index": 894,
       "owner_key": "GJb5CzYSUr9xj2HwohkUUFUPoL6ux9KeCXBU3eKQiNCv",
-      "balance": 1235058,
-      "membership_expire_on": 1701368472,
-      "next_cert_issuable_on": 1692265833,
+      "balance": 1206512,
+      "membership_expire_on": 1727780145,
+      "next_cert_issuable_on": 1696556075,
       "certs_received": {
         "kapis": 1724919583,
-        "absalon2": 1696598615,
         "sylviewolf": 1732948273,
-        "Libertiste": 1696485914,
         "Fleurdevie": 1710027025,
         "hibiscus11": 1712783138,
         "nashira": 1727312598,
         "licorne": 1727234095,
-        "GERIC": 1693879524,
         "edouardletigre": 1720548660,
         "DidierDavid": 1720578639,
         "Kristen": 1740855518,
-        "FrancoisSchlesser": 1703403115,
+        "FrancoisSchlesser": 1759215108,
         "Majoli34": 1726247285,
         "Vivakvo": 1755143849,
-        "CatherineMontpellier": 1696718299,
         "LolieRu": 1727461650,
         "ChloeElfe": 1732938460,
         "etsaman": 1736478006,
-        "Emilie850": 1701840011,
+        "Emilie850": 1759350250,
         "DelphineL": 1714678892,
         "BrigitteW": 1705973544,
         "Diego528": 1710895358,
         "verolodeve": 1735450927,
         "sauveepargrace": 1708497280,
         "Elsaz": 1729709826,
-        "LauQui": 1698170568,
+        "LauQui": 1755105727,
         "danielbo": 1723081567,
         "DomVe": 1731307711,
         "MARTIGOUGOUGNETTE": 1710966210,
@@ -182942,7 +186730,6 @@
         "SolangeAIME": 1735665611,
         "Libellule34": 1720984952,
         "Rosemarielle": 1708323994,
-        "Hassina": 1696382625,
         "NDEPLOT": 1718819177,
         "NicolasBoiteau": 1715322232,
         "Claudine34": 1744170407,
@@ -182966,7 +186753,6 @@
         "LolaS": 1716270987,
         "Paola": 1720728834,
         "Mikhaella3448": 1740272007,
-        "Eauvive": 1694812739,
         "franktransition34": 1728840867,
         "JPGRAU": 1718924453,
         "hocine": 1737076790,
@@ -182974,7 +186760,6 @@
         "Amberle34500": 1714524772,
         "LISAZAZA": 1738661144,
         "Dodjay": 1737314336,
-        "tradit": 1696433837,
         "samdoui": 1749729391,
         "FleurChenot": 1741827369,
         "deuxmains": 1710297182,
@@ -182983,7 +186768,6 @@
         "Joa-KimTiago": 1739525796,
         "Christophe-C": 1708501803,
         "schmollita": 1747275362,
-        "mat14": 1696375485,
         "DanieleSenegasTrobadorenca": 1713646024,
         "Myriam1912": 1738373394,
         "Hdsaf": 1717797565,
@@ -182997,7 +186781,7 @@
     "KarinePapin": {
       "index": 8140,
       "owner_key": "GJbehGDc5djKDa8cV5kR9HPsAYcdaR16W29obFFeDM9e",
-      "balance": 825052,
+      "balance": 761742,
       "membership_expire_on": 1711059529,
       "next_cert_issuable_on": 1685631125,
       "certs_received": {
@@ -183014,7 +186798,7 @@
     "martine07": {
       "index": 11138,
       "owner_key": "GJf7NKPJL3z6fsbeydTqKKeBuPv37PaxMoAJSNZFkv57",
-      "balance": 264391,
+      "balance": 304077,
       "membership_expire_on": 1704670960,
       "next_cert_issuable_on": 1681697625,
       "certs_received": {
@@ -183028,17 +186812,21 @@
     "eln": {
       "index": 13274,
       "owner_key": "GJfDSSF4QgbMu8ecJqzs6DWSgnG92XdKZmyxUoJxSZaJ",
-      "balance": 46876,
+      "balance": 96262,
       "membership_expire_on": 1721666084,
-      "next_cert_issuable_on": 1693463082,
+      "next_cert_issuable_on": 1696397242,
       "certs_received": {
+        "sarahmagicienne": 1759830053,
         "Tot16": 1753226477,
         "DyanZan_Gce": 1753720596,
         "DaniailesA": 1753223988,
+        "LibelluleNoe": 1758143449,
         "JohannFox": 1753228613,
+        "LaFouif": 1757799600,
         "123Marie": 1753287570,
         "Fannyhihihi": 1753227145,
         "AnaisLicorne": 1753856054,
+        "Mamarion": 1757455447,
         "NolanRoni": 1753227145
       }
     },
@@ -183053,7 +186841,7 @@
     "Ceylou": {
       "index": 9086,
       "owner_key": "GJvEQTpcerBEJUXYNyf1WsHVtfntHC6xz4s8K8AnQSo1",
-      "balance": 258875,
+      "balance": 298561,
       "membership_expire_on": 1718491803,
       "next_cert_issuable_on": 1687928363,
       "certs_received": {
@@ -183074,7 +186862,7 @@
     "jeanine65": {
       "index": 12903,
       "owner_key": "GJwGsV4keyqbGvYX4ViRmpfT6Qyqosavp3KuXX1CBrBD",
-      "balance": 117236,
+      "balance": 144422,
       "membership_expire_on": 1715632842,
       "next_cert_issuable_on": 1689599106,
       "certs_received": {
@@ -183098,7 +186886,7 @@
     "Tiphaine": {
       "index": 8942,
       "owner_key": "GK5hBLPjaNrqbcYZXDCymZkUgrVbLeT4Xn8d77rmgKsY",
-      "balance": 382845,
+      "balance": 422531,
       "membership_expire_on": 1716569663,
       "next_cert_issuable_on": 1686316340,
       "certs_received": {
@@ -183121,16 +186909,14 @@
       "balance": 341852,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "IsaLecot": 1696210286
-      }
+      "certs_received": {}
     },
     "Nikisan": {
       "index": 13034,
       "owner_key": "GKJ3S4hLQzsK7p3Y8Y2WdAimuCkECcH4mKaPFPYwb4mD",
-      "balance": 66116,
+      "balance": 55802,
       "membership_expire_on": 1719335773,
-      "next_cert_issuable_on": 1693064135,
+      "next_cert_issuable_on": 1695138319,
       "certs_received": {
         "Tournesol": 1750295821,
         "aufildeLAU": 1750995763,
@@ -183151,9 +186937,9 @@
     "art15te": {
       "index": 2098,
       "owner_key": "GKPQvij9aYNgtginxvymEHzyPaAVTeZy3bnyYmd6RFuT",
-      "balance": 1381120,
+      "balance": 1401582,
       "membership_expire_on": 1702513464,
-      "next_cert_issuable_on": 1692936814,
+      "next_cert_issuable_on": 1696422803,
       "certs_received": {
         "ThierryGillet": 1718831791,
         "PascaleRoncoroni": 1744313189,
@@ -183168,9 +186954,9 @@
     "GRUKSY": {
       "index": 9095,
       "owner_key": "GKRuKssYD6WNCGV2LbGVToCCoDej2v81HM5r1eQjoFF1",
-      "balance": 468358,
+      "balance": 436036,
       "membership_expire_on": 1718837899,
-      "next_cert_issuable_on": 1693128297,
+      "next_cert_issuable_on": 1696052821,
       "certs_received": {
         "Eiutim": 1756150222,
         "ArtesaniaAna": 1733957054,
@@ -183182,17 +186968,21 @@
         "Naymar": 1740855518,
         "SantiTrinquete": 1731710244,
         "AngieantesGeles": 1727336977,
+        "PedroX": 1756848797,
         "Belobal": 1722267345,
         "AngelMacksimilia": 1743977052,
         "EstefaniaLopez": 1722132132,
         "AnianaYpunto": 1745859624,
         "Isabella": 1730754142,
+        "Abejitajaimita": 1756174792,
+        "Beica10es": 1757302695,
         "G1rgina": 1726456933,
         "AliciaConsuelo": 1732924945,
         "Performance": 1734642585,
         "Marta-Raksha": 1737199266,
         "MaEstherG1": 1732360317,
         "Mariaje": 1737254824,
+        "Estherzi": 1759284266,
         "YUKO": 1756168418,
         "Wellno1": 1726108069,
         "llanero": 1722383136,
@@ -183218,7 +187008,7 @@
     "AmandineMuller": {
       "index": 7852,
       "owner_key": "GKdfuLaygkAKP8xMRQDNajo4AiySiUKiVG4Q2pZhFv2H",
-      "balance": 792560,
+      "balance": 772246,
       "membership_expire_on": 1707566620,
       "next_cert_issuable_on": 1690009630,
       "certs_received": {
@@ -183252,7 +187042,7 @@
     "MbibB": {
       "index": 6895,
       "owner_key": "GKysMJGVsSEqmCFH7uW6QHqEcfZrGVRXxw4bpyq9jTq6",
-      "balance": 583627,
+      "balance": 623313,
       "membership_expire_on": 1706048629,
       "next_cert_issuable_on": 1674563029,
       "certs_received": {
@@ -183268,7 +187058,7 @@
     "Stefmaillard": {
       "index": 7745,
       "owner_key": "GL1BBsguTCGpTEK5FJ89GwT9GLtKZQUwFi75S6ABhc91",
-      "balance": 527884,
+      "balance": 567570,
       "membership_expire_on": 1710204135,
       "next_cert_issuable_on": 1678718535,
       "certs_received": {
@@ -183285,27 +187075,26 @@
     "Fleur": {
       "index": 5674,
       "owner_key": "GL3Ud5VsLbNjbQdXtmvqL4g4RxDGimh9eqf2Cb4D4doL",
-      "balance": 735913,
+      "balance": 775599,
       "membership_expire_on": 1716573529,
-      "next_cert_issuable_on": 1676822419,
+      "next_cert_issuable_on": 1696086037,
       "certs_received": {
-        "absalon2": 1694900826,
-        "Sev": 1694666179,
-        "AmeHC": 1701245143,
-        "CatherineMontpellier": 1694477209,
-        "Denismaurel": 1695516971,
+        "ChefFranck": 1757569362,
+        "AmeHC": 1756604584,
+        "CatherineMontpellier": 1756917516,
+        "BelgianGardoise": 1757353608,
+        "Denismaurel": 1758315025,
         "CorinneCoco": 1700881809,
         "Did-yeah": 1735590979,
         "FloP": 1740376064,
-        "AuFilDuTemps": 1694572771,
-        "MatHC": 1700365775,
-        "Damery": 1694562879
+        "AuFilDuTemps": 1756619256,
+        "MatHC": 1700365775
       }
     },
     "ayrose": {
       "index": 12404,
       "owner_key": "GL5vtKCDjDd7yVeDZhLZbqbg7bEhBsxuYdgS352dqLaE",
-      "balance": 123500,
+      "balance": 155186,
       "membership_expire_on": 1711391113,
       "next_cert_issuable_on": 1682836210,
       "certs_received": {
@@ -183321,7 +187110,7 @@
     "ENCARNNIA": {
       "index": 11835,
       "owner_key": "GLJN6g3TxKhzbvpwJ9mHo9nAoB3YEAQ7a3D8Y2cfFkhh",
-      "balance": 110605,
+      "balance": 118191,
       "membership_expire_on": 1708735119,
       "next_cert_issuable_on": 1686364514,
       "certs_received": {
@@ -183349,9 +187138,7 @@
       "balance": 376750,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Sev": 1693528222
-      }
+      "certs_received": {}
     },
     "hoaseng": {
       "index": 4109,
@@ -183387,7 +187174,7 @@
     "Cristetapaixao": {
       "index": 11265,
       "owner_key": "GM1PWMGwL8eTQnXnUme3XTVZjNqzmoDVu5YvpFs4UZTD",
-      "balance": 225742,
+      "balance": 265428,
       "membership_expire_on": 1704736127,
       "next_cert_issuable_on": 1683131219,
       "certs_received": {
@@ -183402,6 +187189,7 @@
         "JorgeDraven": 1737084410,
         "RosaAlvesPinho": 1741890558,
         "ElisabeteMartins": 1737084410,
+        "ManuelSoares": 1757202537,
         "ChrisAll": 1737060358
       }
     },
@@ -183416,7 +187204,7 @@
     "SylvieNeffe": {
       "index": 11980,
       "owner_key": "GM8g8GCsep57tLwPBdd5QC9bH13fgXu4MnBhi9DQSJG6",
-      "balance": 204615,
+      "balance": 194301,
       "membership_expire_on": 1709913440,
       "next_cert_issuable_on": 1692493991,
       "certs_received": {
@@ -183456,9 +187244,9 @@
     "chicaleylou": {
       "index": 8243,
       "owner_key": "GMDQL8MpvduYhZ58emcyMnyAVRCqsDcf422fTLfwXXfg",
-      "balance": 243723,
+      "balance": 263410,
       "membership_expire_on": 1711412161,
-      "next_cert_issuable_on": 1692875331,
+      "next_cert_issuable_on": 1695358827,
       "certs_received": {
         "Lumineux": 1743278540,
         "feesfleurs": 1716669505,
@@ -183475,7 +187263,7 @@
     "Evelinemtx": {
       "index": 10601,
       "owner_key": "GMHXkzPCQoRsNcuwvduMK6w8yBi6iEC4fSViVXSkXMrY",
-      "balance": 361692,
+      "balance": 401378,
       "membership_expire_on": 1701030940,
       "next_cert_issuable_on": 1679488420,
       "certs_received": {
@@ -183492,7 +187280,7 @@
     "Griizous": {
       "index": 10917,
       "owner_key": "GMKPAkmxSqMdm1pgP1xdjj51zqh8vN7zHhkoJtPrU58Q",
-      "balance": 271536,
+      "balance": 311222,
       "membership_expire_on": 1702574988,
       "next_cert_issuable_on": 1674719651,
       "certs_received": {
@@ -183508,7 +187296,7 @@
     "Cilestie": {
       "index": 12912,
       "owner_key": "GMRoo8mamcfQaecoj9LZi2A8DuYsbd363EaVsAkaqvo7",
-      "balance": 181168,
+      "balance": 220854,
       "membership_expire_on": 1717436213,
       "next_cert_issuable_on": 1687058915,
       "certs_received": {
@@ -183522,7 +187310,7 @@
     "GuillaumeVI": {
       "index": 11044,
       "owner_key": "GMUqQKtCv4Ex1gCwwzVh8t8HEhhmkKgWjFoqJ2PvCqKg",
-      "balance": 260922,
+      "balance": 300608,
       "membership_expire_on": 1703860399,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -183545,9 +187333,9 @@
     "ArletB": {
       "index": 9458,
       "owner_key": "GMbtuVNGawZxYfwqnuni6UuBT4KDupBMe15aWkP6CeV7",
-      "balance": 67442,
+      "balance": 107128,
       "membership_expire_on": 1721929048,
-      "next_cert_issuable_on": 1682569327,
+      "next_cert_issuable_on": 1696563509,
       "certs_received": {
         "Clau": 1725601730,
         "LucasSQ": 1745258937,
@@ -183570,10 +187358,11 @@
     "Jossy83": {
       "index": 8048,
       "owner_key": "GMgcoPtNciKLQ59r28S3x7mXksih8v7YfGp1RkXFH2Ac",
-      "balance": 374011,
+      "balance": 413697,
       "membership_expire_on": 1708185571,
-      "next_cert_issuable_on": 1692416341,
+      "next_cert_issuable_on": 1696044580,
       "certs_received": {
+        "MignoletEmmanuel": 1758127538,
         "GRIBOUILLE22": 1715288924,
         "Jojo83": 1716266038,
         "PatHamster": 1715277695,
@@ -183586,7 +187375,7 @@
     "mariehelene51": {
       "index": 11420,
       "owner_key": "GMguNtHfoHS2xjjVZ19syuh7mQCfPFmL4uezdf62y8ED",
-      "balance": 265975,
+      "balance": 305661,
       "membership_expire_on": 1705861842,
       "next_cert_issuable_on": 1678421591,
       "certs_received": {
@@ -183603,12 +187392,11 @@
     "Roswell": {
       "index": 4374,
       "owner_key": "GMkyo74jf2MMz315jvPWPfCJ9otP5GLerHVicvjDyVbJ",
-      "balance": 969239,
+      "balance": 1008925,
       "membership_expire_on": 1723906168,
       "next_cert_issuable_on": 1692423455,
       "certs_received": {
         "Chris08": 1752198043,
-        "Phil7": 1695569442,
         "Gloria974": 1748746932,
         "rosydailleurs": 1727668728,
         "Sorgentini": 1752652027,
@@ -183621,19 +187409,17 @@
         "ManuelV974": 1730982285,
         "Monik9366": 1741597475,
         "Jaher974": 1710085521,
-        "melanie_zen974": 1695227960,
         "Kiara974": 1744869694,
         "pearlreunion": 1708316645,
-        "Caroshakti": 1693678573,
-        "FrancoiseRangla974": 1694573970,
+        "Caroshakti": 1757199714,
         "mancity08": 1726840084
       }
     },
     "FlorencePicardi": {
       "index": 9473,
       "owner_key": "GMpc7K72RNSj8tZMopxJLGyQw6SoA5bx9wdrqoiNFARV",
-      "balance": 344591,
-      "membership_expire_on": 1694222213,
+      "balance": 376801,
+      "membership_expire_on": 1726337160,
       "next_cert_issuable_on": 1681721130,
       "certs_received": {
         "Tchoupi": 1725892784,
@@ -183647,9 +187433,9 @@
     "NagNag": {
       "index": 6870,
       "owner_key": "GMrVdnHDawq5hokDYq1oAaC7AMD9R7jW3q4nfmauuRiv",
-      "balance": 420011,
+      "balance": 309697,
       "membership_expire_on": 1705108366,
-      "next_cert_issuable_on": 1688379988,
+      "next_cert_issuable_on": 1696673061,
       "certs_received": {
         "Dj_raoult": 1725901535,
         "M-France": 1747287321,
@@ -183674,7 +187460,7 @@
     "Davep07": {
       "index": 11032,
       "owner_key": "GNDXaj4ARfRvbRJ7zzi3TGkrfB4LEKaFrhgb3Z6ryMjs",
-      "balance": 261981,
+      "balance": 301667,
       "membership_expire_on": 1702513464,
       "next_cert_issuable_on": 1679901385,
       "certs_received": {
@@ -183688,15 +187474,17 @@
     "Verdurette06": {
       "index": 8822,
       "owner_key": "GNEPzWB4pwfr6XJXCPeCy8JJWfGpDBm6ksEg9ph6mC53",
-      "balance": 428132,
+      "balance": 567818,
       "membership_expire_on": 1714936305,
-      "next_cert_issuable_on": 1690729658,
+      "next_cert_issuable_on": 1696580379,
       "certs_received": {
         "SandrineP": 1730833465,
         "ScarlettGabrielle_8": 1736537794,
+        "Altheaagathe": 1756975735,
         "ZenaKhaldi": 1720858533,
         "ClaireAzur": 1720048162,
         "Tchois": 1720404877,
+        "Chiara07": 1758399447,
         "LilianeLilou": 1743737035,
         "marie3106": 1739206900,
         "KrisNissa": 1740272543,
@@ -183732,12 +187520,14 @@
     "noemi": {
       "index": 11714,
       "owner_key": "GNQFDvcPdC39MB46aNDCssSufKXnZ7v5Nfm22cmiDaom",
-      "balance": 103777,
+      "balance": 120163,
       "membership_expire_on": 1708559641,
-      "next_cert_issuable_on": 1690947018,
+      "next_cert_issuable_on": 1696748259,
       "certs_received": {
         "corinne13me": 1753988898,
+        "Miguelprinter": 1758272924,
         "PepaCal": 1740166354,
+        "luismo": 1758235093,
         "Pit": 1740655172,
         "quiquecaballero": 1740192969,
         "Ardan1977": 1740177036,
@@ -183749,14 +187539,15 @@
         "loreak": 1740168412,
         "SolKolibri": 1741760616,
         "NONI": 1740221784,
+        "Kol": 1758832814,
         "gorkatinajo": 1740634098
       }
     },
     "Tepa": {
       "index": 10190,
       "owner_key": "GNV5jihf4R9qts3VrqSWmSgyE1aQosAQTgpj1ViyTgP1",
-      "balance": 262872,
-      "membership_expire_on": 1695750725,
+      "balance": 290700,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1681873986,
       "certs_received": {
         "maud": 1731089491,
@@ -183773,19 +187564,13 @@
       "balance": 387593,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "karhoog": 1694285826,
-        "Neptune1306": 1694293893,
-        "Vievillejp": 1694110440,
-        "loulouchantes": 1694293893,
-        "Domimido": 1694385922
-      }
+      "certs_received": {}
     },
     "Kalia": {
       "index": 3061,
       "owner_key": "GNg4qxRXnYm5p9Ujwetru5DnfkGijnh95Q5mxUqXMr8k",
-      "balance": 1707870,
-      "membership_expire_on": 1700610076,
+      "balance": 1887556,
+      "membership_expire_on": 1727448706,
       "next_cert_issuable_on": 1680155917,
       "certs_received": {
         "SophSav": 1707122528,
@@ -183816,8 +187601,8 @@
     "CatiM": {
       "index": 9505,
       "owner_key": "GNhxmMEThMyJgGyKrSxSrQM9BSMoUPRk9eWS2ZtSqYhr",
-      "balance": 434238,
-      "membership_expire_on": 1694451207,
+      "balance": 445986,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Andrelebourhis": 1726015471,
@@ -183838,9 +187623,9 @@
     "BegoTibi": {
       "index": 8115,
       "owner_key": "GNjmRtohQdDvscUjQZJoxnqsecJcrfjG2SzNqy2wAzGB",
-      "balance": 170401,
+      "balance": 167087,
       "membership_expire_on": 1716149176,
-      "next_cert_issuable_on": 1677765442,
+      "next_cert_issuable_on": 1695900899,
       "certs_received": {
         "Manu_El": 1721527761,
         "carmela": 1715550104,
@@ -183869,7 +187654,7 @@
     "Nikuluu": {
       "index": 7338,
       "owner_key": "GNwhWvah25SydQs2Ajy8AGFLodgB2YCnYrzuoGQhNQs5",
-      "balance": 551716,
+      "balance": 591402,
       "membership_expire_on": 1710857345,
       "next_cert_issuable_on": 1655006733,
       "certs_received": {
@@ -183885,9 +187670,9 @@
     "vallouli": {
       "index": 6709,
       "owner_key": "GP76VZrC6L4dYLT8JNM3LZQRs72zEvy6NVme5cLkRrNE",
-      "balance": 117141,
-      "membership_expire_on": 1699235149,
-      "next_cert_issuable_on": 1690217103,
+      "balance": 101827,
+      "membership_expire_on": 1725739318,
+      "next_cert_issuable_on": 1696420009,
       "certs_received": {
         "Unicorn": 1705118810,
         "Ghadjo": 1712020487,
@@ -183908,7 +187693,7 @@
     "philassur": {
       "index": 12608,
       "owner_key": "GPCA8dNxKCRgjGaYsB7zGBukeydkuj2KVSWohiokaNgs",
-      "balance": 110266,
+      "balance": 137452,
       "membership_expire_on": 1715379659,
       "next_cert_issuable_on": 1692515020,
       "certs_received": {
@@ -183932,7 +187717,7 @@
     "Lapinou": {
       "index": 8918,
       "owner_key": "GPRkVYGg2sGtBNbtvRoCw5TbGWdvDw1LM9sDJEQCPJ4C",
-      "balance": 306462,
+      "balance": 337148,
       "membership_expire_on": 1720635219,
       "next_cert_issuable_on": 1689397859,
       "certs_received": {
@@ -183946,6 +187731,22 @@
         "MaiS": 1736917894
       }
     },
+    "Ulysse7489": {
+      "index": 13586,
+      "owner_key": "GPUrFxNsGLv6od8F6AAutKhNBojBAmZQsYGn1SQRFDRY",
+      "balance": 25530,
+      "membership_expire_on": 1725296832,
+      "next_cert_issuable_on": 1696390031,
+      "certs_received": {
+        "Gscarabbe": 1757743667,
+        "CelineVivante": 1757971928,
+        "TiboDom": 1758061560,
+        "Aldebaran": 1758294203,
+        "GMokeur": 1757914111,
+        "Marino45": 1758058765,
+        "GalanD7745": 1757921941
+      }
+    },
     "melimart": {
       "index": 1260,
       "owner_key": "GPXjLbEZY43is3GbLjwp1kvWijU6gtqAkvYfUTDpYHkv",
@@ -183957,7 +187758,7 @@
     "SauvageNoble": {
       "index": 12504,
       "owner_key": "GPqazhgHetovpyNyyJLPGgg79yqdhZdXdsVotL3LfhHv",
-      "balance": 130276,
+      "balance": 169962,
       "membership_expire_on": 1714354770,
       "next_cert_issuable_on": 1687533251,
       "certs_received": {
@@ -183974,7 +187775,7 @@
     "Sofiane": {
       "index": 10424,
       "owner_key": "GQ1uW9TLwXDExNE13scT6PDapewEmc5GwZ6XCT79kPED",
-      "balance": 308282,
+      "balance": 347968,
       "membership_expire_on": 1697408315,
       "next_cert_issuable_on": 1679919225,
       "certs_received": {
@@ -183989,7 +187790,7 @@
     "AdrienBois": {
       "index": 13177,
       "owner_key": "GQ5pxs9kZgPb69NBkt93swxCDtZMsbqZQxwPAqVnKFub",
-      "balance": 48060,
+      "balance": 87746,
       "membership_expire_on": 1721045742,
       "next_cert_issuable_on": 1690114579,
       "certs_received": {
@@ -184003,11 +187804,12 @@
     "Patrakage": {
       "index": 12468,
       "owner_key": "GQCBmjatxWM5Mc6o8EDFhV9EcnRNGNohHvPYC3Ca5yRh",
-      "balance": 175568,
+      "balance": 120754,
       "membership_expire_on": 1714151257,
-      "next_cert_issuable_on": 1687423929,
+      "next_cert_issuable_on": 1692894966,
       "certs_received": {
         "MAGSENS": 1745719151,
+        "NathalieEtreSouverain": 1758673121,
         "Maminou13": 1745718825,
         "Pizzawallas": 1745736149,
         "Diessanne": 1749197223,
@@ -184019,7 +187821,7 @@
     "les3t": {
       "index": 9989,
       "owner_key": "GQE2VjL3uoJ6E6kgv4s6GrqR4xbMmXFqg3TU24c2GfMs",
-      "balance": 297170,
+      "balance": 336856,
       "membership_expire_on": 1697568744,
       "next_cert_issuable_on": 1682509409,
       "certs_received": {
@@ -184033,7 +187835,7 @@
     "maternenancy": {
       "index": 11337,
       "owner_key": "GQGjNhS2MZ3deoNSnc5Y99spLmhyCuNmETkimwogw7Eh",
-      "balance": 233388,
+      "balance": 273074,
       "membership_expire_on": 1705605424,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -184048,7 +187850,7 @@
     "Naturisa": {
       "index": 8195,
       "owner_key": "GQWfWutZs32xGBhahg15oDqe6rsh5u7ezzMEjjCh6NgL",
-      "balance": 367994,
+      "balance": 407680,
       "membership_expire_on": 1724627250,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -184062,9 +187864,9 @@
     "Emeriol": {
       "index": 12996,
       "owner_key": "GQeuYZXT9Vrf4gmzqeMfZwpkFf59GGUGKMhPLN4Gzmtj",
-      "balance": 99488,
+      "balance": 138174,
       "membership_expire_on": 1717937998,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696675932,
       "certs_received": {
         "Alexia": 1750729557,
         "Salsa33150": 1750668492,
@@ -184076,9 +187878,9 @@
     "Houriadeparissud": {
       "index": 4533,
       "owner_key": "GQgWcbDDr5pTGEFieqZ7nW7ZCwWVg8DUDetfCJwmxE8w",
-      "balance": 138748,
+      "balance": 118434,
       "membership_expire_on": 1724860999,
-      "next_cert_issuable_on": 1693375399,
+      "next_cert_issuable_on": 1695566996,
       "certs_received": {
         "lims": 1709173100,
         "lanoire": 1733770323,
@@ -184129,12 +187931,13 @@
     "SandraW": {
       "index": 4015,
       "owner_key": "GQvMLVQASDnPjHz7G9C4bywcFJ4ZJzhhdFcxHaEfS5vn",
-      "balance": 1019263,
+      "balance": 1058949,
       "membership_expire_on": 1720482373,
       "next_cert_issuable_on": 1691509399,
       "certs_received": {
         "AnnaM": 1708027957,
         "Lecuyer89": 1707461326,
+        "RobertW34": 1757064944,
         "HelloSunshine": 1724180881,
         "Bricedonnadieu26": 1707349397,
         "AliceMaurette": 1707371388,
@@ -184172,7 +187975,7 @@
     "OlivierBoullet": {
       "index": 6212,
       "owner_key": "GRB6QM4jKTYLVQb3CxNVNioPuMAkdaqQGHZffB8wB5tG",
-      "balance": 683951,
+      "balance": 723637,
       "membership_expire_on": 1697413703,
       "next_cert_issuable_on": 1665928103,
       "certs_received": {
@@ -184195,7 +187998,7 @@
     "ChristOn": {
       "index": 10168,
       "owner_key": "GRLaJdRHZYUpt6Rb1LrmtHejmfzch6skwNYde6LdRS1q",
-      "balance": 351485,
+      "balance": 391171,
       "membership_expire_on": 1697814669,
       "next_cert_issuable_on": 1676003873,
       "certs_received": {
@@ -184225,7 +188028,7 @@
     "AdrienLenoble": {
       "index": 480,
       "owner_key": "GRrcWdVkCfpHxtyWTY41ac7hDXfW4JrQPiTb1jMKMcrE",
-      "balance": 2599432,
+      "balance": 2639118,
       "membership_expire_on": 1711164626,
       "next_cert_issuable_on": 1654165304,
       "certs_received": {
@@ -184249,9 +188052,9 @@
     "descampsam": {
       "index": 10815,
       "owner_key": "GRxdADYUGTkQb9bdR3bsDRjAyqVXqjX1fiPxdpe5h6jJ",
-      "balance": 278925,
+      "balance": 318611,
       "membership_expire_on": 1702380300,
-      "next_cert_issuable_on": 1690032666,
+      "next_cert_issuable_on": 1692892648,
       "certs_received": {
         "Hub": 1751647107,
         "NICKY": 1738467060,
@@ -184268,7 +188071,7 @@
     "Angeluis": {
       "index": 7533,
       "owner_key": "GRxtBUzWM15Mywg8Cuugq7fCt5cARNeKnG3gVo231jiz",
-      "balance": 237498,
+      "balance": 287184,
       "membership_expire_on": 1706789454,
       "next_cert_issuable_on": 1667363922,
       "certs_received": {
@@ -184279,6 +188082,7 @@
         "MorganadeAvalon": 1711862182,
         "Manacor": 1740121849,
         "Albertocc": 1710971992,
+        "feral": 1758936477,
         "Galadriel": 1712078940,
         "Marwen": 1743570376,
         "MAC": 1711928482
@@ -184287,7 +188091,7 @@
     "MerceGarma": {
       "index": 7927,
       "owner_key": "GS3Any5bkXMPucMGb4WJpXyj5DYw3ukd69DVHB3RAZy",
-      "balance": 419888,
+      "balance": 459974,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1689753607,
       "certs_received": {
@@ -184309,6 +188113,21 @@
         "nuevahumanidad": 1725952594
       }
     },
+    "VeroniqueEon": {
+      "index": 13619,
+      "owner_key": "GSAZqDG75vf5VHpGuUzpjVr4evLCn1ahr7z3J3af6MBt",
+      "balance": 25249,
+      "membership_expire_on": 1721752490,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Coco-B": 1755838337,
+        "123Marie": 1755132898,
+        "Mistigri": 1758302482,
+        "Fannyhihihi": 1758223538,
+        "Gawawelle": 1756669950,
+        "Omshanti": 1756703105
+      }
+    },
     "Virginie974": {
       "index": 4838,
       "owner_key": "GSJz78evfWqRwzkGvmkdFXQfaU9UsA7BFBmSrGeMMThT",
@@ -184322,7 +188141,7 @@
     "mcs": {
       "index": 8416,
       "owner_key": "GSSNammwMAVzJ1SGsuiLk4oReg13a3xgyxFnJst8jc2e",
-      "balance": 456323,
+      "balance": 460010,
       "membership_expire_on": 1713837079,
       "next_cert_issuable_on": 1690881624,
       "certs_received": {
@@ -184341,7 +188160,7 @@
     "lebendig": {
       "index": 12654,
       "owner_key": "GSZd2nvPBdXRBvodcmRS6bsfyenUsx9LdzjpDpfvtxRv",
-      "balance": 111644,
+      "balance": 151330,
       "membership_expire_on": 1714689008,
       "next_cert_issuable_on": 1691493059,
       "certs_received": {
@@ -184357,7 +188176,7 @@
     "Adrien38": {
       "index": 7217,
       "owner_key": "GSa2cv2VNDqGPotFwfK1PPPqhXNxy7QHyarXxUcrMbG7",
-      "balance": 462036,
+      "balance": 501722,
       "membership_expire_on": 1717589029,
       "next_cert_issuable_on": 1653374788,
       "certs_received": {
@@ -184395,9 +188214,9 @@
     "Birby7188": {
       "index": 9541,
       "owner_key": "GScyZT9pW1tJmY3JxiAAhGGkETxaj73nqZoL1dbApTK6",
-      "balance": 328585,
+      "balance": 368271,
       "membership_expire_on": 1723896641,
-      "next_cert_issuable_on": 1692410758,
+      "next_cert_issuable_on": 1696553749,
       "certs_received": {
         "Niranjana": 1729473352,
         "Mianne": 1726374173,
@@ -184405,7 +188224,8 @@
         "StephBauer": 1726277732,
         "Tinati": 1729557752,
         "Merlinor": 1726375959,
-        "Jadom": 1726286326
+        "Jadom": 1726286326,
+        "Cobra1974": 1759597562
       }
     },
     "Salahedine": {
@@ -184419,12 +188239,13 @@
     "Estersanjo": {
       "index": 10782,
       "owner_key": "GT6jhTiupjHrZUfhsLPvzRtFsUeDDTDG2c48k4CyyjgZ",
-      "balance": 74812,
-      "membership_expire_on": 1701572110,
-      "next_cert_issuable_on": 1691553033,
+      "balance": 93998,
+      "membership_expire_on": 1728094925,
+      "next_cert_issuable_on": 1696142062,
       "certs_received": {
         "InmaRegina": 1733639433,
         "Patry": 1733647942,
+        "Anni": 1759438316,
         "mastres": 1733678582,
         "JuanAntonioSanJose": 1753240551,
         "MAULOVI": 1733609522,
@@ -184436,7 +188257,7 @@
     "OriannaMay": {
       "index": 13073,
       "owner_key": "GTCfB5QdySkUdzPi9nY2zeaiovdjFUCFGsnUuFvvPdpk",
-      "balance": 63012,
+      "balance": 102698,
       "membership_expire_on": 1719431929,
       "next_cert_issuable_on": 1689340855,
       "certs_received": {
@@ -184450,7 +188271,7 @@
     "CelineLouise": {
       "index": 3608,
       "owner_key": "GTEBz1n9U1wg4NieDgRDZY3dtZ4Cii3wa9L8qtpv5TDQ",
-      "balance": 1246092,
+      "balance": 1285778,
       "membership_expire_on": 1712697743,
       "next_cert_issuable_on": 1660913151,
       "certs_received": {
@@ -184487,7 +188308,7 @@
     "ChristellaB": {
       "index": 11238,
       "owner_key": "GTRdrSrZe5VURJT5gQBsEK99vixjfS7adyDpefrDSxGG",
-      "balance": 175714,
+      "balance": 215400,
       "membership_expire_on": 1703186519,
       "next_cert_issuable_on": 1678868045,
       "certs_received": {
@@ -184501,7 +188322,7 @@
     "Hesjie": {
       "index": 12148,
       "owner_key": "GTSh3mNxU1YaZaSqCc4nVVEWDgd61roRxxxmgdnwLM9Y",
-      "balance": 149808,
+      "balance": 189494,
       "membership_expire_on": 1711506369,
       "next_cert_issuable_on": 1688825691,
       "certs_received": {
@@ -184523,9 +188344,9 @@
     "EricSamsa": {
       "index": 8821,
       "owner_key": "GTShEirS73KJkSePk89ig2fsZcP7oMNqoCXQDQgWjybM",
-      "balance": 422767,
+      "balance": 436553,
       "membership_expire_on": 1715779213,
-      "next_cert_issuable_on": 1692371907,
+      "next_cert_issuable_on": 1696661367,
       "certs_received": {
         "Eleonora": 1720031741,
         "venusienne": 1719977095,
@@ -184536,10 +188357,13 @@
         "Slimounet": 1721444984,
         "kalimheros": 1732966556,
         "GanTao": 1753152043,
+        "FranckBarbe": 1757725844,
+        "Louisbeth": 1756810164,
         "JudithPR": 1752451291,
         "SarahJardinAmphipolis": 1721077984,
         "Mariarima": 1721111268,
         "Fred": 1755667840,
+        "Fredlassave": 1759628697,
         "juwolf": 1734118939,
         "CovaDidier": 1721187001,
         "ahmed": 1720168187
@@ -184548,17 +188372,19 @@
     "EMA": {
       "index": 12778,
       "owner_key": "GTTSx9mBmZ3ySGhtVr57FzuW88JBLbwwUurub3T8qe8m",
-      "balance": 171724,
+      "balance": 280710,
       "membership_expire_on": 1717030977,
-      "next_cert_issuable_on": 1692242528,
+      "next_cert_issuable_on": 1696264606,
       "certs_received": {
         "Cholo": 1748626255,
         "Silvi": 1753406986,
+        "Ambar": 1759308485,
         "riky": 1748589647,
         "Naturkike": 1751507234,
         "unica": 1748589647,
         "Mariaseelcambio": 1748651495,
         "migueleon": 1748589913,
+        "nussyna": 1758076565,
         "JoanaGomez": 1748711100,
         "AndresXaudi": 1748589913
       }
@@ -184566,8 +188392,8 @@
     "theobaldi": {
       "index": 4237,
       "owner_key": "GTVSpZ9Tjh82X8zqF6im6qGebzSt4wjRvDgCMegwCyyR",
-      "balance": 378024,
-      "membership_expire_on": 0,
+      "balance": 414506,
+      "membership_expire_on": 1725214974,
       "next_cert_issuable_on": 1668066654,
       "certs_received": {
         "Lisie": 1728177886,
@@ -184583,9 +188409,9 @@
     "flodef": {
       "index": 12585,
       "owner_key": "GTYJqWxqYQyV2e4B4n2Bg2xQ2x1zkMZvP9EcHYdtvXyv",
-      "balance": 284363,
+      "balance": 296969,
       "membership_expire_on": 1712778580,
-      "next_cert_issuable_on": 1691346586,
+      "next_cert_issuable_on": 1695547068,
       "certs_received": {
         "Gregory": 1746308529,
         "HugoTrentesaux": 1748517834,
@@ -184601,8 +188427,8 @@
     "DonaMadre": {
       "index": 9174,
       "owner_key": "GTYzfgDhCKDsppoeWqzB2796zFqMTFvTJThuF9Av9pZ1",
-      "balance": 413542,
-      "membership_expire_on": 0,
+      "balance": 422936,
+      "membership_expire_on": 1726697811,
       "next_cert_issuable_on": 1663001202,
       "certs_received": {
         "Paolagrazia": 1723334759,
@@ -184633,9 +188459,9 @@
     "Geli": {
       "index": 13322,
       "owner_key": "GTinGjzo7oaByeJ92DrrpcgG3y2JVBgUrSxymArLVSz6",
-      "balance": 37972,
+      "balance": 81159,
       "membership_expire_on": 1721240305,
-      "next_cert_issuable_on": 1691766486,
+      "next_cert_issuable_on": 1696322538,
       "certs_received": {
         "Ghostdog": 1753666210,
         "Anma": 1754463113,
@@ -184647,7 +188473,7 @@
     "OM-Ostepatia-eta-Masajea": {
       "index": 9698,
       "owner_key": "GTk7bY9BFXPjvSzAMErg5njjw3LCUkxR37jmx6iUJ6a3",
-      "balance": 405868,
+      "balance": 348834,
       "membership_expire_on": 1722199872,
       "next_cert_issuable_on": 1693279550,
       "certs_received": {
@@ -184656,6 +188482,7 @@
         "BANESA": 1734657421,
         "Silvi": 1737742483,
         "faraona": 1755028822,
+        "MonyKan": 1757614091,
         "etsaman": 1752688890,
         "IgnacioZa": 1730593210,
         "MaribelSierraMesa": 1740516013,
@@ -184688,7 +188515,7 @@
     "Florasol21": {
       "index": 10706,
       "owner_key": "GTohsGfy7Hva7yJrjKJqCjGr6haRUQY3q93pGydTafpx",
-      "balance": 286438,
+      "balance": 326124,
       "membership_expire_on": 1701556251,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -184734,7 +188561,7 @@
     "domo": {
       "index": 12543,
       "owner_key": "GUVif7K9DpmGf8bxFGX5LsduTV3Ru7eFHT9UVS2KdWvP",
-      "balance": 131092,
+      "balance": 170778,
       "membership_expire_on": 1712879715,
       "next_cert_issuable_on": 1683443655,
       "certs_received": {
@@ -184749,8 +188576,8 @@
     "bongibaultgeorges": {
       "index": 10092,
       "owner_key": "GUZCBbUp1bJW3ZzP1FDWsSF9TSCjgqgJBDXhZbGWmbrM",
-      "balance": 333698,
-      "membership_expire_on": 1694218411,
+      "balance": 342242,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1676946836,
       "certs_received": {
         "OlivierHovasse": 1729976737,
@@ -184765,7 +188592,7 @@
     "AbunDancia": {
       "index": 11502,
       "owner_key": "GUaPkULUZKmDAzTZe5xgjDEqh7t9HVE7HQgbm4sBogrp",
-      "balance": 97188,
+      "balance": 136874,
       "membership_expire_on": 1706973372,
       "next_cert_issuable_on": 1683730606,
       "certs_received": {
@@ -184782,7 +188609,7 @@
     "Espialidocia": {
       "index": 8214,
       "owner_key": "GUevqM3LDkCiBYoRwEtS9V4cQvutvbBLtZXAExSVk8vJ",
-      "balance": 83392,
+      "balance": 81178,
       "membership_expire_on": 1713739427,
       "next_cert_issuable_on": 1677403482,
       "certs_received": {
@@ -184797,6 +188624,7 @@
         "pfouque": 1715882171,
         "Altaiire": 1716588578,
         "Maiana": 1716149677,
+        "tomval83": 1759360859,
         "Val83": 1747720039,
         "Jean-Massage": 1732844157
       }
@@ -184804,11 +188632,12 @@
     "2vakian": {
       "index": 11638,
       "owner_key": "GUfAxUU2dJX4znmacqLL4346S8qFuFMbuXRBDzcJkQnN",
-      "balance": 215267,
+      "balance": 254953,
       "membership_expire_on": 1707486036,
       "next_cert_issuable_on": 1683370025,
       "certs_received": {
         "Rebirth35": 1739640337,
+        "PascaleP": 1757465702,
         "Shandra": 1739640120,
         "Pashi": 1739645861,
         "CarolAmethyste": 1739639121,
@@ -184820,7 +188649,7 @@
     "Lololich43": {
       "index": 8976,
       "owner_key": "GUgxdWEQuxoVTKikCDxfPBNKfBvxcuUT8qVeKYL7bwfF",
-      "balance": 423339,
+      "balance": 461025,
       "membership_expire_on": 1716655538,
       "next_cert_issuable_on": 1685169938,
       "certs_received": {
@@ -184864,8 +188693,8 @@
     "GenevieveLagrange": {
       "index": 6779,
       "owner_key": "GV5B9XVe7zvEQQYpYvtwuiBM7imgU9MPUuU52bYLWJVf",
-      "balance": 847307,
-      "membership_expire_on": 1699927136,
+      "balance": 886993,
+      "membership_expire_on": 1727483721,
       "next_cert_issuable_on": 1682350461,
       "certs_received": {
         "Sunflower": 1716945723,
@@ -184916,7 +188745,7 @@
     "TreceLuas": {
       "index": 12329,
       "owner_key": "GV89i9XbjHMwBihApoVYuU7c22s34M7itkL61wWwsJc5",
-      "balance": 33820,
+      "balance": 33506,
       "membership_expire_on": 1712500360,
       "next_cert_issuable_on": 1687055844,
       "certs_received": {
@@ -184948,9 +188777,9 @@
     "MinaManar": {
       "index": 4610,
       "owner_key": "GVMSX7RhPU32UwVeHcTzydwnvZh2Fkxt2enLazpdzCMA",
-      "balance": 496401,
-      "membership_expire_on": 1698449437,
-      "next_cert_issuable_on": 1692840296,
+      "balance": 759665,
+      "membership_expire_on": 1725057851,
+      "next_cert_issuable_on": 1696056454,
       "certs_received": {
         "lims": 1709573092,
         "mati": 1721018790,
@@ -184966,6 +188795,7 @@
         "YugavanOrloff": 1709447565,
         "Fabi26": 1743316602,
         "CatherineMonastirieff": 1708939872,
+        "morimontj": 1759177045,
         "PetitArbre": 1708899347,
         "DelphineG": 1717098236,
         "OlivierRisselin": 1733493835,
@@ -184988,6 +188818,7 @@
         "GeneVieve": 1710271985,
         "Nadia": 1704260020,
         "CatherineDouchamps": 1708977802,
+        "MikaPac": 1759263311,
         "SylvieNeffe": 1755056191,
         "NagNag": 1708901319,
         "Hesjie": 1751868891,
@@ -184997,13 +188828,14 @@
         "Freco": 1707898046,
         "BDMan": 1728682674,
         "AsunG1": 1722646062,
-        "SylvieL": 1751400240
+        "SylvieL": 1751400240,
+        "iafu": 1758503128
       }
     },
     "GaiaS": {
       "index": 7315,
       "owner_key": "GVT3mUSf7mQo1XV3tzcG2ttq1C9VZiNjEPwwLDeVm83y",
-      "balance": 514319,
+      "balance": 554005,
       "membership_expire_on": 1715284153,
       "next_cert_issuable_on": 1665053392,
       "certs_received": {
@@ -185033,9 +188865,9 @@
     "Flore-au-soleil": {
       "index": 12947,
       "owner_key": "GVWnACbXNBavvKgAr7jWKyQc6tKTtn6EWNL4MmhM1x16",
-      "balance": 85896,
+      "balance": 125482,
       "membership_expire_on": 1718550059,
-      "next_cert_issuable_on": 1688050750,
+      "next_cert_issuable_on": 1695489074,
       "certs_received": {
         "reididflorent": 1750108036,
         "MarindChanti": 1750114696,
@@ -185048,7 +188880,7 @@
     "Valmont": {
       "index": 8594,
       "owner_key": "GVbYPeMZPtH72aU4cQEcFPYDXnCKhiLSukF2Ap5wGbgR",
-      "balance": 462471,
+      "balance": 502157,
       "membership_expire_on": 1715025407,
       "next_cert_issuable_on": 1669115365,
       "certs_received": {
@@ -185064,7 +188896,7 @@
     "respe13": {
       "index": 7379,
       "owner_key": "GVf9bWh7d72yVZD7USUDgwKLS5vbdP5env9Mh4W8zTfo",
-      "balance": 362596,
+      "balance": 402282,
       "membership_expire_on": 1723037071,
       "next_cert_issuable_on": 1664281761,
       "certs_received": {
@@ -185097,9 +188929,9 @@
     "Zou": {
       "index": 12956,
       "owner_key": "GVmraYhDY3ndQUgGo65pJ6rWTrctrPbXztGfDoZB3nHg",
-      "balance": 312360,
+      "balance": 351046,
       "membership_expire_on": 1718905538,
-      "next_cert_issuable_on": 1688601366,
+      "next_cert_issuable_on": 1695826480,
       "certs_received": {
         "Zap": 1750471633,
         "FannyBee": 1752860401,
@@ -185112,8 +188944,8 @@
     "KinouJones": {
       "index": 3869,
       "owner_key": "GVpW4t2QNQgtJqVgeEZMdNArcAb9SNUSgUjL2sZxFi2F",
-      "balance": 1023595,
-      "membership_expire_on": 1696162895,
+      "balance": 1056813,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1679041132,
       "certs_received": {
         "AnnaM": 1716001637,
@@ -185127,7 +188959,7 @@
     "MartineCoquelicot": {
       "index": 7922,
       "owner_key": "GVqnm69zy7irMChigKyxaP557TpBmd67YYBNnLq4hEMm",
-      "balance": 742036,
+      "balance": 781722,
       "membership_expire_on": 1713823793,
       "next_cert_issuable_on": 1667987265,
       "certs_received": {
@@ -185151,7 +188983,7 @@
     "ValerieBaudouin": {
       "index": 6684,
       "owner_key": "GVt5R1ZtRYX7P643TGv6iijcBV6BDtSLJyzY7bZPLY58",
-      "balance": 799843,
+      "balance": 949325,
       "membership_expire_on": 1708369930,
       "next_cert_issuable_on": 1693214612,
       "certs_received": {
@@ -185159,6 +188991,7 @@
         "Bich": 1710543992,
         "venusienne": 1706043452,
         "sylvine": 1711497453,
+        "yannlefranco": 1756263268,
         "Narada": 1705730657,
         "FrancoiseCombes": 1705723872,
         "StefTouet": 1705727013,
@@ -185169,7 +189002,7 @@
     "Nico34": {
       "index": 2628,
       "owner_key": "GW2ZXSYoJMGCi52B9tgjXZQtemUQK2tRqGXvdMbSnj5G",
-      "balance": 1390592,
+      "balance": 1430278,
       "membership_expire_on": 1699387916,
       "next_cert_issuable_on": 1692083159,
       "certs_received": {
@@ -185187,7 +189020,7 @@
     "deuxmains": {
       "index": 6910,
       "owner_key": "GW3M5FmN5nQXpxHFGtRP1e5XztowkZzCKinSDahpyrDx",
-      "balance": 563584,
+      "balance": 603270,
       "membership_expire_on": 1709644532,
       "next_cert_issuable_on": 1648722256,
       "certs_received": {
@@ -185202,7 +189035,7 @@
     "nicgouG": {
       "index": 7349,
       "owner_key": "GW3eFxyD9MMkcsfpNG1cEsBWRG2UwUMg8UNwPGaQ1KEF",
-      "balance": 341174,
+      "balance": 380860,
       "membership_expire_on": 1705103788,
       "next_cert_issuable_on": 1681719110,
       "certs_received": {
@@ -185224,7 +189057,7 @@
     "ZizouTP": {
       "index": 12756,
       "owner_key": "GWBLEebLRGT3sXX3LwJKTNJGpKH7mmfWJq1Dcysaa4i3",
-      "balance": 133224,
+      "balance": 183910,
       "membership_expire_on": 1715534626,
       "next_cert_issuable_on": 1686471147,
       "certs_received": {
@@ -185251,7 +189084,7 @@
     "Fatima": {
       "index": 3718,
       "owner_key": "GWQyp7VchGxWqYePg3R3qzejrM52hJYhWPLYWq4SgC1a",
-      "balance": 777363,
+      "balance": 817049,
       "membership_expire_on": 1709311883,
       "next_cert_issuable_on": 1681129735,
       "certs_received": {
@@ -185265,7 +189098,7 @@
     "SophieMarsanne": {
       "index": 7343,
       "owner_key": "GWS48A4Rz9vnYz5H6nJnowXi1ji7UNewhH3113RewVDo",
-      "balance": 313847,
+      "balance": 353533,
       "membership_expire_on": 1706225638,
       "next_cert_issuable_on": 1683629707,
       "certs_received": {
@@ -185284,31 +189117,24 @@
     "Llorens": {
       "index": 5604,
       "owner_key": "GWUfDRkbvqTYdaZt6Dh8QCHo4YRi13faNdQvBGux9Dk4",
-      "balance": 238677,
+      "balance": 78363,
       "membership_expire_on": 1719734161,
-      "next_cert_issuable_on": 1690926562,
+      "next_cert_issuable_on": 1696414121,
       "certs_received": {
-        "Noisette66": 1694135041,
         "ElieLombard": 1703139720,
         "NAGIOWOTALA": 1709577331,
         "Sofiachante": 1756316526,
         "SantoS": 1701566440,
-        "tatou66": 1693507764,
-        "Heineri11": 1693528796,
         "LuciaM": 1737605948,
         "jeanneymar": 1753776741,
-        "Manholy34": 1695236230,
-        "Numerosympa": 1693522774,
-        "Katy": 1693526112,
-        "Lolobuss": 1693517904,
         "VeroniqueV": 1710049426,
-        "Kaluna": 1693531742
+        "Gkjuner": 1755938166
       }
     },
     "Legolas": {
       "index": 8831,
       "owner_key": "GWaxTXT6qL1HZFpzm8M1PwJ3QoDSFrDR3Uh9JWjeLLrc",
-      "balance": 404553,
+      "balance": 406239,
       "membership_expire_on": 1718503487,
       "next_cert_issuable_on": 1687018171,
       "certs_received": {
@@ -185325,7 +189151,7 @@
     "Didou": {
       "index": 8997,
       "owner_key": "GWcJDY4dDr5Z6YuJfaivXY5NjBh2NMbb7MfxydDMusm9",
-      "balance": 50196,
+      "balance": 89882,
       "membership_expire_on": 1720729092,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -185341,22 +189167,18 @@
     "Olivier34500": {
       "index": 5925,
       "owner_key": "GWh3bqUSDuPtADRfxSrXBKFVoorHMKbJZ3bRxvVZh1De",
-      "balance": 837737,
-      "membership_expire_on": 0,
+      "balance": 840971,
+      "membership_expire_on": 1728039349,
       "next_cert_issuable_on": 1644509528,
       "certs_received": {
-        "absalon2": 1696007979,
         "CatherineMontpellier": 1696747341,
         "Sophie_Jiyu": 1708743999,
-        "droopy": 1694721077,
-        "Helene-petiteriviere": 1702533877,
+        "Helene-petiteriviere": 1759695388,
         "Amelia34": 1702461392,
-        "Hassina": 1696442052,
-        "ADodson": 1694912375,
+        "Hassina": 1759596307,
         "Jeffrenchpilot": 1699401318,
-        "BRIGITTE2019": 1694449960,
         "Eauvive": 1701806244,
-        "PascalGuillemain": 1695184947,
+        "PascalGuillemain": 1759599275,
         "Christophe-C": 1704855669,
         "schmollita": 1699562058,
         "Fabricealexandre": 1700672244
@@ -185365,7 +189187,7 @@
     "Rene_elex": {
       "index": 6221,
       "owner_key": "GWjaKpPcvmSokUdz1nJzhRgwkngZNhP3n68UK9MKXoAu",
-      "balance": 674791,
+      "balance": 714477,
       "membership_expire_on": 1700824529,
       "next_cert_issuable_on": 1687236289,
       "certs_received": {
@@ -185379,7 +189201,7 @@
     "Emi": {
       "index": 9951,
       "owner_key": "GWrZy4JV59CDm88m7gFCDZHWthT69PLCyd1aYhAXt1jV",
-      "balance": 136047,
+      "balance": 175733,
       "membership_expire_on": 1723378659,
       "next_cert_issuable_on": 1679070811,
       "certs_received": {
@@ -185427,9 +189249,9 @@
     "Coeurallie": {
       "index": 13182,
       "owner_key": "GX5ViMSNTPgBx6LCf5SvHWaNkQ4M1DNxttZNFQmjVJV4",
-      "balance": 45580,
+      "balance": 86266,
       "membership_expire_on": 1719964358,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695289145,
       "certs_received": {
         "Gabrimiel": 1751525368,
         "AnnPAT": 1752764987,
@@ -185456,7 +189278,7 @@
     "ICIELA": {
       "index": 13068,
       "owner_key": "GX7xxt5tX2NrmUzEKR18imDbXkh14LaweYSbbdE3suUj",
-      "balance": 41676,
+      "balance": 81469,
       "membership_expire_on": 1719885278,
       "next_cert_issuable_on": 1693375399,
       "certs_received": {
@@ -185472,7 +189294,7 @@
     "PainDEpice": {
       "index": 10100,
       "owner_key": "GXAjjCPQQYitgVWSjhfAU8UpTwxPwNtVXCk457Uuy3ic",
-      "balance": 1526139,
+      "balance": 1565825,
       "membership_expire_on": 1697841151,
       "next_cert_issuable_on": 1688891882,
       "certs_received": {
@@ -185492,7 +189314,7 @@
     "littlegreg": {
       "index": 5079,
       "owner_key": "GXJgN7CsevhkvsPo42ZC7uSG1oszd3izvcN277UCCC6d",
-      "balance": 322627,
+      "balance": 362313,
       "membership_expire_on": 1705377068,
       "next_cert_issuable_on": 1692469155,
       "certs_received": {
@@ -185510,7 +189332,7 @@
     "SoaEuphrasie": {
       "index": 4964,
       "owner_key": "GXZT9J3kVAy67JyV8nDnJ2sCCHhAzbazswtd43rA3FvG",
-      "balance": 68306,
+      "balance": 107992,
       "membership_expire_on": 1719941395,
       "next_cert_issuable_on": 1654501950,
       "certs_received": {
@@ -185518,14 +189340,13 @@
         "Framboiz": 1713310406,
         "BabethMangas": 1713980306,
         "Florence97410": 1720218952,
-        "MyrtilleMyriam": 1714770599,
-        "pampermacole": 1695066408
+        "MyrtilleMyriam": 1714770599
       }
     },
     "Jo-elle": {
       "index": 12067,
       "owner_key": "GXbHyzKJW45RkMtmnRGNHvjt6BJ2rngSB2Fw4GPgBx1D",
-      "balance": 165143,
+      "balance": 204829,
       "membership_expire_on": 1709482503,
       "next_cert_issuable_on": 1686102911,
       "certs_received": {
@@ -185540,9 +189361,9 @@
     "GeneBe": {
       "index": 5991,
       "owner_key": "GXcaGe79aUphCKG1MWEz7WGXYQqCjGzgtFhfStM2owWd",
-      "balance": 348537,
+      "balance": 373223,
       "membership_expire_on": 1719744295,
-      "next_cert_issuable_on": 1692769351,
+      "next_cert_issuable_on": 1696804838,
       "certs_received": {
         "Midorela": 1724222998,
         "Unai": 1741047299,
@@ -185588,17 +189409,20 @@
     "Marcus_974": {
       "index": 10124,
       "owner_key": "GXd2BBFKCCL7fPusU4y2HiT7QNgZvZFoZzddmgDAVAvh",
-      "balance": 454199,
+      "balance": 476767,
       "membership_expire_on": 1697893025,
-      "next_cert_issuable_on": 1688974146,
+      "next_cert_issuable_on": 1696108967,
       "certs_received": {
         "YannKervran": 1746483121,
         "harry974": 1750811627,
+        "NowNeko": 1759645117,
         "Chris08": 1739051291,
         "Phil7": 1739062209,
+        "Bsamuel": 1759036023,
         "ClaireM97410": 1729618978,
         "NnattNature": 1729537730,
         "bardone01": 1729880320,
+        "CareIn": 1756747190,
         "gabyjoce974": 1751994835,
         "Brunov974": 1742564703,
         "IsabellePAYET974": 1750815485,
@@ -185615,8 +189439,8 @@
     "Gilve": {
       "index": 9902,
       "owner_key": "GXee1XQN5VdU2wrRwkCGrADbUN8gmj1X1BNTThi5nFt7",
-      "balance": 643308,
-      "membership_expire_on": 1696855011,
+      "balance": 692994,
+      "membership_expire_on": 1726366407,
       "next_cert_issuable_on": 1678685793,
       "certs_received": {
         "Monette": 1734572424,
@@ -185636,7 +189460,7 @@
     "GaelleMry": {
       "index": 2982,
       "owner_key": "GXhquJCxPt3FgCTmm8sfVPexuEz5SUNQfbdmQDjzV2kE",
-      "balance": 251732,
+      "balance": 291418,
       "membership_expire_on": 1718475239,
       "next_cert_issuable_on": 1688213675,
       "certs_received": {
@@ -185655,7 +189479,7 @@
     "YvonPhok": {
       "index": 9075,
       "owner_key": "GXuXKZTnfik56Wch7dc5qJcgWu69NRH1s5zkqYZ99G1W",
-      "balance": 292147,
+      "balance": 331833,
       "membership_expire_on": 1722213453,
       "next_cert_issuable_on": 1679203567,
       "certs_received": {
@@ -185674,9 +189498,9 @@
     "Marianfs": {
       "index": 11670,
       "owner_key": "GXwUZgSub7t1SYuANjefe7T1rmxBpLw7mNA2efVGjBrq",
-      "balance": 445913,
+      "balance": 722499,
       "membership_expire_on": 1708286157,
-      "next_cert_issuable_on": 1691501428,
+      "next_cert_issuable_on": 1696752320,
       "certs_received": {
         "Cholo": 1739855638,
         "Sheiladanzas": 1751408582,
@@ -185685,10 +189509,12 @@
         "Malu": 1742421137,
         "AlvaroFernandez": 1749062450,
         "riky": 1753192174,
+        "Naturkike": 1756909560,
         "unica": 1740021329,
         "Vikolander": 1739863492,
         "Chus": 1742886210,
         "vjrj": 1754382680,
+        "Javier_Ormus": 1758688202,
         "Mariaseelcambio": 1740463915,
         "isa": 1750181631,
         "migueleon": 1750872097,
@@ -185704,6 +189530,7 @@
         "AylaSatyaSangat": 1745490667,
         "DOMIASTRO": 1747449060,
         "carlosrios": 1751405293,
+        "AndresXaudi": 1757111848,
         "lachispis": 1743131396,
         "Bosqui": 1739872057
       }
@@ -185719,7 +189546,7 @@
     "PaLaCiDu53": {
       "index": 8530,
       "owner_key": "GXyt8YsELjauPiUaMbDowX6uYbsa4fr9Ge4xtMsukts",
-      "balance": 445102,
+      "balance": 484788,
       "membership_expire_on": 1710431490,
       "next_cert_issuable_on": 1678861493,
       "certs_received": {
@@ -185735,7 +189562,7 @@
     "HEChucrut": {
       "index": 12036,
       "owner_key": "GXz28V9ao5hsb5D3jAezVg1Pp3rrdCY1uoq8YhrSzmqC",
-      "balance": 517361,
+      "balance": 662547,
       "membership_expire_on": 1709666497,
       "next_cert_issuable_on": 1683614746,
       "certs_received": {
@@ -185750,21 +189577,18 @@
     "Moussa": {
       "index": 5588,
       "owner_key": "GXzQq6YhvJiASULnybk89iJHpkErsw72nVjAjiyYksuu",
-      "balance": 671137,
-      "membership_expire_on": 1714216461,
+      "balance": 672205,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1687913965,
       "certs_received": {
-        "BenoitLavenier": 1694294574,
-        "LuciaKorosiova": 1696582719,
         "SylvieClayer": 1710661260,
-        "elo53die": 1713388867,
-        "Floalchimistefee": 1693629334
+        "elo53die": 1713388867
       }
     },
     "vavanat": {
       "index": 9228,
       "owner_key": "GY1QTE7DXnyEan43i6D5FLqT16CLgtT5mAx6GHd4ftbC",
-      "balance": 386496,
+      "balance": 426182,
       "membership_expire_on": 1723500649,
       "next_cert_issuable_on": 1682335044,
       "certs_received": {
@@ -185788,7 +189612,7 @@
     "Rodando": {
       "index": 10927,
       "owner_key": "GY2LBfciDpxzoWo22xTHFYAUTewA1J3U6GP2YAM97cDG",
-      "balance": 177186,
+      "balance": 403172,
       "membership_expire_on": 1702999297,
       "next_cert_issuable_on": 1682052915,
       "certs_received": {
@@ -185813,7 +189637,7 @@
     "valoche": {
       "index": 2604,
       "owner_key": "GYHBwSftuJPLVqmpTSxuUdUg9Vozk2VAVFBvnjSKqxJ4",
-      "balance": 1517797,
+      "balance": 1557483,
       "membership_expire_on": 1718828927,
       "next_cert_issuable_on": 1691067004,
       "certs_received": {
@@ -185837,7 +189661,7 @@
     "nuevahumanidad": {
       "index": 9154,
       "owner_key": "GYkdRkF2T1sCdyPhpsJ9cTqvvfXj8p62SSUSPPqUXrwD",
-      "balance": 156744,
+      "balance": 108430,
       "membership_expire_on": 1719195037,
       "next_cert_issuable_on": 1681297366,
       "certs_received": {
@@ -185874,7 +189698,7 @@
     "FrancineWeber": {
       "index": 11056,
       "owner_key": "GYtNBye4Psf2uSnASmKws6R69pXP4eHWuzrcyxpJCfL7",
-      "balance": 259863,
+      "balance": 299549,
       "membership_expire_on": 1703715197,
       "next_cert_issuable_on": 1693038910,
       "certs_received": {
@@ -185892,8 +189716,8 @@
     "LaurieMP": {
       "index": 10957,
       "owner_key": "GYvDoP2bm24fphEmiPnm8R6coZFUn7eCQtdLS9ivPm76",
-      "balance": 187335,
-      "membership_expire_on": 1699580842,
+      "balance": 227021,
+      "membership_expire_on": 1725994232,
       "next_cert_issuable_on": 1688279708,
       "certs_received": {
         "Eiutim": 1734556011,
@@ -185915,7 +189739,7 @@
     "Peesse": {
       "index": 8240,
       "owner_key": "GZ4K2i1jhGiq1RC1vLsqbtDYfupaqNHZ3aJar7oMev6F",
-      "balance": 432276,
+      "balance": 471962,
       "membership_expire_on": 1712149957,
       "next_cert_issuable_on": 1690113598,
       "certs_received": {
@@ -185923,6 +189747,7 @@
         "GenevLeb": 1716416828,
         "ContrePropagande": 1742673614,
         "GautierDavid": 1730706068,
+        "CnouFoss": 1759277529,
         "Evelyne87": 1733377263,
         "nuvolari": 1716763791,
         "CaroKro": 1731988616,
@@ -185937,7 +189762,7 @@
     "Jade27": {
       "index": 11995,
       "owner_key": "GZ6kyvR5rgyD5LV7VhoETbkLWjLiwAkGZTebrz9fuQgK",
-      "balance": 123942,
+      "balance": 163628,
       "membership_expire_on": 1708986785,
       "next_cert_issuable_on": 1689045593,
       "certs_received": {
@@ -185953,13 +189778,14 @@
     "Nedite11": {
       "index": 12655,
       "owner_key": "GZ8PqJ44fc5G6L2uwZ7f6ct9ehvg4jQo37H3Pu9AkcGA",
-      "balance": 126244,
+      "balance": 165930,
       "membership_expire_on": 1715620804,
       "next_cert_issuable_on": 1689866589,
       "certs_received": {
         "GypsiCla": 1747278588,
         "Pocahontas": 1747254301,
         "RodrigoTapia": 1747280006,
+        "Yvespierre": 1756880526,
         "LaSoyeFee": 1747254082,
         "FannyPolet": 1747194128
       }
@@ -185967,7 +189793,7 @@
     "Lazarobahia": {
       "index": 12015,
       "owner_key": "GZBvpKuNnvrroYsKGuU1rBHSdZdqLWQG2Y1syKGfE9x",
-      "balance": 183420,
+      "balance": 223106,
       "membership_expire_on": 1710551535,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -185981,7 +189807,7 @@
     "Taskede": {
       "index": 826,
       "owner_key": "GZJu19gWu7CCqG66YQcKWL7EN8Z6TKh1vfGML1CaWcbs",
-      "balance": 1713325,
+      "balance": 1753011,
       "membership_expire_on": 1708735119,
       "next_cert_issuable_on": 1686357616,
       "certs_received": {
@@ -185999,7 +189825,7 @@
     "CaroleMondon": {
       "index": 8823,
       "owner_key": "GZTVTup9ogUhhjWF6ZayjGbhSXgQy7mLvRXL8v3gKmSu",
-      "balance": 1631800,
+      "balance": 1671486,
       "membership_expire_on": 1717862882,
       "next_cert_issuable_on": 1686391720,
       "certs_received": {
@@ -186034,9 +189860,9 @@
     "NicoleNissen": {
       "index": 12394,
       "owner_key": "GZnN6e5uhyidudPBuR48Pf2oBskJN277TRgymvvEdPvY",
-      "balance": 142044,
+      "balance": 181730,
       "membership_expire_on": 1713443895,
-      "next_cert_issuable_on": 1683897010,
+      "next_cert_issuable_on": 1696339608,
       "certs_received": {
         "ericve": 1745047160,
         "WhiteLily": 1745040127,
@@ -186048,9 +189874,9 @@
     "Albassierseverine": {
       "index": 5467,
       "owner_key": "Ga7gs5qH994JAuxqhFpRi887SXyYZFrSzJit6wv18mew",
-      "balance": 498588,
+      "balance": 524390,
       "membership_expire_on": 1713706551,
-      "next_cert_issuable_on": 1691576856,
+      "next_cert_issuable_on": 1696422803,
       "certs_received": {
         "EricPetit": 1748407137,
         "ThierryGillet": 1719676880,
@@ -186058,6 +189884,7 @@
         "PascaleRoncoroni": 1748407137,
         "MessagereDeLumiere": 1730862394,
         "art15te": 1755980014,
+        "YanickChareille": 1757117449,
         "katou": 1716250345
       }
     },
@@ -186092,8 +189919,8 @@
     "Lafouly": {
       "index": 6253,
       "owner_key": "GaCoZWTSCjnDaynsGpcMXN3vkvgUqerWUGyCTXPYbwLH",
-      "balance": 718606,
-      "membership_expire_on": 1697838053,
+      "balance": 758292,
+      "membership_expire_on": 1726273439,
       "next_cert_issuable_on": 1650784038,
       "certs_received": {
         "Basile": 1701056138,
@@ -186107,7 +189934,7 @@
     "ARAN": {
       "index": 12851,
       "owner_key": "GaEydAXVDPD4FhWE8qsj8ofeAdPjj5kxCicLVQPuHdZa",
-      "balance": 134044,
+      "balance": 138830,
       "membership_expire_on": 1717769832,
       "next_cert_issuable_on": 1692923995,
       "certs_received": {
@@ -186124,7 +189951,7 @@
     "choryphee": {
       "index": 12719,
       "owner_key": "GaHpVoUcorFH3Tmfp6HuSFK4pkAMmeC7qyc7AbY3Zd1c",
-      "balance": 117868,
+      "balance": 157554,
       "membership_expire_on": 1713574310,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -186139,11 +189966,12 @@
     "zizou": {
       "index": 8213,
       "owner_key": "GaJCZDQ7MihpBzjNC3Ac3wtCgnT5N4X2R9omPKqaxXKk",
-      "balance": 443923,
+      "balance": 483609,
       "membership_expire_on": 1711370473,
       "next_cert_issuable_on": 1676950601,
       "certs_received": {
         "Ninamaste": 1722898537,
+        "Marieta": 1757346832,
         "Celine": 1716145258,
         "EtK": 1716534381,
         "Floravie": 1716145990,
@@ -186157,8 +189985,8 @@
     "Maraki": {
       "index": 10206,
       "owner_key": "GaJw7a12uQZzP1X3Uc52tSpChecMyX8h5iATD34DMKcG",
-      "balance": 254038,
-      "membership_expire_on": 1696025631,
+      "balance": 285100,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1688262192,
       "certs_received": {
         "CedLion": 1730762634,
@@ -186177,7 +190005,7 @@
     "ange-k": {
       "index": 13431,
       "owner_key": "GaKmhaECbdJTVpDfy4M7ZiqPgYSDMw3k2Cj6k6if2LY9",
-      "balance": 7476,
+      "balance": 47162,
       "membership_expire_on": 1721580375,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -186191,9 +190019,9 @@
     "TimotheeGoguely": {
       "index": 4070,
       "owner_key": "GaXaga5HFj4qkYuJ8MaDjRU3rZmCpCEhWBxMpT29prfY",
-      "balance": 828617,
+      "balance": 857523,
       "membership_expire_on": 1702830783,
-      "next_cert_issuable_on": 1679370670,
+      "next_cert_issuable_on": 1695382489,
       "certs_received": {
         "Djan": 1736278183,
         "kalimheros": 1735982254,
@@ -186207,7 +190035,7 @@
     "Bertr29": {
       "index": 11867,
       "owner_key": "GaaWuKxGiLjk3r7iN4hx8e4UsP2FD4CWiw8qEYtHiYTV",
-      "balance": 374928,
+      "balance": 410614,
       "membership_expire_on": 1709257193,
       "next_cert_issuable_on": 1690680059,
       "certs_received": {
@@ -186223,7 +190051,7 @@
     "kyungmar": {
       "index": 7046,
       "owner_key": "GabQivUX9yqBw2gc2VxV5RFHWSDb7RfnF3nJcdjizHZc",
-      "balance": 598039,
+      "balance": 637725,
       "membership_expire_on": 1702757547,
       "next_cert_issuable_on": 1655956740,
       "certs_received": {
@@ -186236,12 +190064,27 @@
         "hocine": 1713862879
       }
     },
+    "DidiX": {
+      "index": 13612,
+      "owner_key": "GajF1Gw7KzorCfCLjAGskWqnJCeXVr3CES9mWyfWFtHe",
+      "balance": 25827,
+      "membership_expire_on": 1724738008,
+      "next_cert_issuable_on": 1696320131,
+      "certs_received": {
+        "Luluzlb": 1758186253,
+        "gege110560": 1758408062,
+        "Asiri": 1756462989,
+        "VeroAngele": 1758235873,
+        "jjange": 1758333913,
+        "Mimwen69": 1758096415
+      }
+    },
     "SabineL": {
       "index": 12656,
       "owner_key": "GaqNe4DgpCKNez7aSoFuJwYbggV2cG7MeLxjmvVdrGCP",
-      "balance": 91444,
+      "balance": 123630,
       "membership_expire_on": 1714586202,
-      "next_cert_issuable_on": 1692032773,
+      "next_cert_issuable_on": 1695443727,
       "certs_received": {
         "Rachel_Haromniya": 1746206470,
         "Malena58": 1751174057,
@@ -186249,7 +190092,10 @@
         "Ananas21": 1747284632,
         "Asfalis": 1752869067,
         "loicloydcore": 1747161095,
+        "florian": 1758524862,
+        "Christine1892": 1758502468,
         "Escoufle": 1747161095,
+        "AnnParisot": 1755928879,
         "OlivierRichard": 1746214670
       }
     },
@@ -186287,7 +190133,7 @@
     "sarauniya": {
       "index": 4293,
       "owner_key": "Gb4LEk5KXVHAfcxDzFqmS7CbJJYMJ3PY6GPri6CCDXUn",
-      "balance": 976090,
+      "balance": 1015776,
       "membership_expire_on": 1700160506,
       "next_cert_issuable_on": 1686311859,
       "certs_received": {
@@ -186312,18 +190158,21 @@
     "MarielaureDardour": {
       "index": 10423,
       "owner_key": "Gb5u5VqUFfGfq4W4qXhK9UZCtDt2orquhTiE4QqUtnsG",
-      "balance": 650672,
-      "membership_expire_on": 1696712822,
-      "next_cert_issuable_on": 1690729288,
+      "balance": 1054372,
+      "membership_expire_on": 1727617076,
+      "next_cert_issuable_on": 1696478071,
       "certs_received": {
         "odilemauret": 1728337120,
+        "Martine51": 1759177679,
         "YohannAnnet": 1729189365,
         "LaurentMuller": 1728270422,
         "ArmandeHumbert": 1728270706,
         "Mijo": 1744019322,
         "GwenolaLef": 1728272414,
+        "Lydiabloch": 1759210771,
         "AngeliqueCharton": 1728270706,
         "Roimain": 1734472185,
+        "Syldess": 1759178349,
         "AmandineMuller": 1728270422,
         "Keramina51": 1731972408
       }
@@ -186331,12 +190180,11 @@
     "Mode3": {
       "index": 2791,
       "owner_key": "Gb7Jvgeg6fzZJDvUTThuEuV3qA6gL6tREP8SCGAh2PPD",
-      "balance": 507275,
-      "membership_expire_on": 1703112710,
+      "balance": 539415,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "nashira": 1738878943,
-        "Sanka2015": 1696079797,
         "GENEV": 1736565973,
         "floriane11": 1737400074,
         "DanJoue": 1735090241
@@ -186345,9 +190193,9 @@
     "Plume": {
       "index": 10596,
       "owner_key": "Gb9YZshnBtgwSNR9YAep2zXGR1Jyd26mMq5zxBf6RPEU",
-      "balance": 293192,
-      "membership_expire_on": 1700254125,
-      "next_cert_issuable_on": 1687485095,
+      "balance": 332878,
+      "membership_expire_on": 1727433167,
+      "next_cert_issuable_on": 1695983262,
       "certs_received": {
         "PatTy": 1741304652,
         "Mianne": 1732474268,
@@ -186364,11 +190212,12 @@
     "KarineKala": {
       "index": 3384,
       "owner_key": "GbBFi7uuRhjuZsNfDCTn1c3y6d9qneAVCni4pfffDotH",
-      "balance": 57171,
+      "balance": 91857,
       "membership_expire_on": 1718126830,
-      "next_cert_issuable_on": 1691653099,
+      "next_cert_issuable_on": 1695314201,
       "certs_received": {
         "sarahmagicienne": 1755586122,
+        "Crystal": 1759382276,
         "Salya": 1718098512,
         "MichLang": 1709950611,
         "ClaudeFresonnet": 1755823746,
@@ -186379,10 +190228,9 @@
         "CelineRenou": 1750728951,
         "metatisseuroccitanie": 1727312076,
         "JFCap": 1722384227,
-        "SarahAchalafin": 1699678609,
+        "SarahAchalafin": 1759228078,
         "DanJoue": 1728792836,
         "Max": 1748971498,
-        "hocine": 1696520393,
         "Mia": 1719393696,
         "Linepau": 1701593104,
         "CovaDidier": 1699094664,
@@ -186393,9 +190241,9 @@
     "Charo": {
       "index": 8590,
       "owner_key": "GbBoL9u3NhNFCx4DfVM7wXvyuXkJQu4yL496uDBAcmzo",
-      "balance": 347082,
+      "balance": 336768,
       "membership_expire_on": 1713706551,
-      "next_cert_issuable_on": 1689057247,
+      "next_cert_issuable_on": 1696341487,
       "certs_received": {
         "Nekane": 1718861957,
         "RachelGreen": 1718920172,
@@ -186411,7 +190259,7 @@
     "Nicolle43CM": {
       "index": 7901,
       "owner_key": "GbCSkNwhcw2nmuJtumSHbtKY1eRMRrr1azUbVTXuKnXu",
-      "balance": 459272,
+      "balance": 498958,
       "membership_expire_on": 1712162969,
       "next_cert_issuable_on": 1684580040,
       "certs_received": {
@@ -186431,12 +190279,11 @@
     "Hikari": {
       "index": 2940,
       "owner_key": "GbGsa1PGpkzRrxJM34Bz6uFaonQ474uYBuSteaJRWyBZ",
-      "balance": 1047057,
-      "membership_expire_on": 1693611548,
+      "balance": 1064295,
+      "membership_expire_on": 1726965060,
       "next_cert_issuable_on": 1686151590,
       "certs_received": {
         "CaroPetillante": 1755938166,
-        "Yannis": 1694475346,
         "MichLang": 1749366286,
         "JacquelinePlan": 1756598700,
         "lune": 1749194537,
@@ -186447,7 +190294,7 @@
     "MHDB": {
       "index": 10416,
       "owner_key": "GbH3Ty8ZjJQrRFG83cs4A2Dy35EkUGFBmLvXMBqRoCVn",
-      "balance": 304341,
+      "balance": 344027,
       "membership_expire_on": 1699207541,
       "next_cert_issuable_on": 1670515562,
       "certs_received": {
@@ -186462,7 +190309,7 @@
     "CelesteGuiral": {
       "index": 6736,
       "owner_key": "GbM6xJqyPDu6MgWReaDwEAkq1iZE4MqhtzX8ru8YdKmw",
-      "balance": 599495,
+      "balance": 639181,
       "membership_expire_on": 1705591256,
       "next_cert_issuable_on": 1646710478,
       "certs_received": {
@@ -186472,13 +190319,14 @@
         "ChrisGayet": 1705857452,
         "MarineJ": 1710444613,
         "LaurentM": 1704257889,
-        "FlorentGuiral": 1703975873
+        "FlorentGuiral": 1703975873,
+        "Cigalou": 1756958893
       }
     },
     "Milenie26": {
       "index": 1846,
       "owner_key": "GbUKLXGS8LroZyn4RCcfmT3niudBaBKn3qu6bgmpxUw1",
-      "balance": 1828644,
+      "balance": 1868330,
       "membership_expire_on": 1699870525,
       "next_cert_issuable_on": 1685281962,
       "certs_received": {
@@ -186489,7 +190337,6 @@
         "Canguy43": 1740777881,
         "ChristineF": 1742273244,
         "BrunoSaurel": 1706674456,
-        "ZZR": 1695523315,
         "philoche": 1740375353,
         "Mireio": 1744869694,
         "CelineLouise": 1712886431,
@@ -186522,9 +190369,9 @@
     "Nickie": {
       "index": 13405,
       "owner_key": "GbgJy56gb6yqqDoysYfNHdonCzMQUMBYpgoAbxK3bzet",
-      "balance": 11748,
+      "balance": 52192,
       "membership_expire_on": 1722463663,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695194658,
       "certs_received": {
         "G21": 1754890462,
         "Lilith8888": 1755669690,
@@ -186544,13 +190391,14 @@
     "JuanCarlos": {
       "index": 8897,
       "owner_key": "GbnPwkk9hHYSYC1mXiejK5Q4N442AD9Qhs3J97W8okQn",
-      "balance": 864669,
+      "balance": 879183,
       "membership_expire_on": 1713785478,
       "next_cert_issuable_on": 1689824516,
       "certs_received": {
         "kapis": 1723236442,
         "SophSav": 1719372333,
         "xandraAritzkuren": 1724399071,
+        "Cholo": 1759089898,
         "Nicolas": 1721077984,
         "SaraRo": 1719270860,
         "hibiscus11": 1734121479,
@@ -186611,29 +190459,29 @@
     "ElenaMavida": {
       "index": 5243,
       "owner_key": "Gc1CAZ3Pzo4hpi23vZN2SYnk8yCqZ8AUmRUopHSeKW2d",
-      "balance": 390555,
+      "balance": 425106,
       "membership_expire_on": 1707283436,
-      "next_cert_issuable_on": 1691948165,
+      "next_cert_issuable_on": 1695517654,
       "certs_received": {
         "kapis": 1699601780,
-        "Truca": 1695408097,
         "animula": 1739733139,
-        "Cordeliaze": 1695266621,
+        "Cordeliaze": 1758481782,
         "Ainat255": 1720988072,
         "VIctoriadeIbiza": 1742232553,
         "mafalda": 1750140373,
+        "Matthias2405": 1757373567,
         "ReservaOriental": 1721870887,
         "SoniaMallorca": 1737932037,
         "ROCIO": 1734661625,
         "Aatma": 1722485142,
-        "namagra": 1695412602,
         "lanawin": 1698637569,
         "sheveck": 1748233544,
         "Sergio": 1736505318,
-        "Libertad22": 1698390128,
+        "Libertad22": 1756506282,
         "Josepeuta": 1710979792,
         "MeliCP": 1719021713,
         "catalinons": 1711857910,
+        "Mariacrea": 1754989615,
         "AlexisLebrun": 1724868127,
         "Ilka": 1731558101,
         "AroaVivaVoz": 1729068934,
@@ -186682,13 +190530,13 @@
         "isaluz888": 1713372744,
         "AndresXaudi": 1754517140,
         "eno": 1747546545,
-        "fania": 1694660980
+        "fania": 1757747732
       }
     },
     "Pomme21": {
       "index": 1935,
       "owner_key": "Gc2oC72zQSoFYnMcivrH51oepPUWX4SRWEaBVLJH9v8H",
-      "balance": 620889,
+      "balance": 660575,
       "membership_expire_on": 1715472997,
       "next_cert_issuable_on": 1684227343,
       "certs_received": {
@@ -186704,12 +190552,11 @@
     "SteveMacraigne": {
       "index": 4473,
       "owner_key": "Gc8R8SG9LiVGUz2YScyUUPcquKbcbSeVTRGuFJiugNC7",
-      "balance": 945016,
+      "balance": 984702,
       "membership_expire_on": 1716810823,
-      "next_cert_issuable_on": 1634112810,
+      "next_cert_issuable_on": 1695775214,
       "certs_received": {
         "TheodoreMACRAIGNE": 1748375801,
-        "ElodiePichereau": 1694816226,
         "Lydiabloch": 1733126591,
         "JeandMeryMAYOPARRA": 1734549421,
         "EmileMACRAIGNE": 1748375015,
@@ -186719,8 +190566,8 @@
     "Luc34": {
       "index": 10301,
       "owner_key": "Gc9pFFHSWLWRL2mYq4G95Yts6dhcU9TxdtdhHHjAfQTw",
-      "balance": 225842,
-      "membership_expire_on": 1696254189,
+      "balance": 265528,
+      "membership_expire_on": 1725734352,
       "next_cert_issuable_on": 1683632549,
       "certs_received": {
         "Gemeff": 1750869262,
@@ -186745,6 +190592,23 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Delfine": {
+      "index": 13558,
+      "owner_key": "GcKJqWwmhFH2PpbAd83j8XDEkHy6kSnkYfn8LmQnpTFX",
+      "balance": 32370,
+      "membership_expire_on": 1725625859,
+      "next_cert_issuable_on": 1696411753,
+      "certs_received": {
+        "Holistique": 1757648199,
+        "XeniaLR": 1759777121,
+        "TiboDom": 1757555341,
+        "ibisio": 1757183459,
+        "Franzbar": 1757195624,
+        "Nelmotard58": 1757648199,
+        "Cat45190": 1757195340,
+        "Urantia": 1758251979
+      }
+    },
     "Adine": {
       "index": 7241,
       "owner_key": "GcRYSgTbS9TNT7bduEgfrbaj33iGAZHDc5Frb9XwaB6F",
@@ -186765,8 +190629,8 @@
     "Ross": {
       "index": 10533,
       "owner_key": "GcXxmdiyC3wqiY6xQCywfaptg7wx7tp6vT2zsAV66q3M",
-      "balance": 238869,
-      "membership_expire_on": 1700414808,
+      "balance": 266755,
+      "membership_expire_on": 1727002163,
       "next_cert_issuable_on": 1678427840,
       "certs_received": {
         "Bichejos": 1739489495,
@@ -186786,7 +190650,7 @@
     "lepetitsolognot": {
       "index": 12994,
       "owner_key": "GcjchtLumE8jchGQZsEjCAWefMdw3LCaXBbGGncb2ZXn",
-      "balance": 125488,
+      "balance": 165174,
       "membership_expire_on": 1719053414,
       "next_cert_issuable_on": 1688084357,
       "certs_received": {
@@ -186803,7 +190667,7 @@
     "June-Lac": {
       "index": 8859,
       "owner_key": "GcpZg6gHDw9chrRfZQu4wmgUWH9p2ChuAmuVS3YQzaap",
-      "balance": 520917,
+      "balance": 560603,
       "membership_expire_on": 1715217147,
       "next_cert_issuable_on": 1669471540,
       "certs_received": {
@@ -186819,7 +190683,7 @@
     "lilieboyer974": {
       "index": 6788,
       "owner_key": "Gczp3jQV29XoZJXjrq1pdds3iqERM7fpCjT1CDRb1pw4",
-      "balance": 526347,
+      "balance": 566033,
       "membership_expire_on": 1700922471,
       "next_cert_issuable_on": 1677754064,
       "certs_received": {
@@ -186862,9 +190726,9 @@
     "martine26": {
       "index": 1309,
       "owner_key": "GdCw36HeayqBudkfiJrzVrDfVnJBE9WLVWHTWag9wPdb",
-      "balance": 924885,
+      "balance": 964571,
       "membership_expire_on": 1703028484,
-      "next_cert_issuable_on": 1692839166,
+      "next_cert_issuable_on": 1696214929,
       "certs_received": {
         "Andrelebourhis": 1734723447,
         "Philippe26": 1713506717,
@@ -186889,14 +190753,13 @@
         "Rene_elex": 1701575963,
         "Ecureuil26montsegur": 1701827171,
         "LEO": 1701630224,
-        "Val83": 1723909743,
-        "Spiranne": 1695230609
+        "Val83": 1723909743
       }
     },
     "EdouardChaize": {
       "index": 199,
       "owner_key": "GdDm7a9MC8bzPCUypGv1t79RJgRaJf1BcsHHfJL4kz8j",
-      "balance": 1658028,
+      "balance": 1697714,
       "membership_expire_on": 1707363941,
       "next_cert_issuable_on": 1658995656,
       "certs_received": {
@@ -186911,15 +190774,13 @@
     "Louis_Mandr2": {
       "index": 5662,
       "owner_key": "GdH5YVSsw4y3P6Dy7dkCqN4qSodxguR7y3WjbeNqyqpz",
-      "balance": 912103,
+      "balance": 951789,
       "membership_expire_on": 1718102750,
-      "next_cert_issuable_on": 1686619367,
+      "next_cert_issuable_on": 1694141366,
       "certs_received": {
-        "Tettla": 1694422185,
         "Rimek94": 1752218661,
         "vit": 1753650084,
         "Maaude09": 1751573640,
-        "Flore66": 1694883099,
         "Nyttliv": 1752469741,
         "kristin": 1749970222,
         "let-it-be57": 1756499558
@@ -186938,7 +190799,7 @@
     "Eneritz": {
       "index": 12472,
       "owner_key": "GdWtx73tTnmsDqZv2Wco117szrYegzhw6o8m9qR1xCTE",
-      "balance": 313292,
+      "balance": 326978,
       "membership_expire_on": 1714172345,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -186968,9 +190829,9 @@
     "Bianca": {
       "index": 9189,
       "owner_key": "Gdh7XrETyoKxHnrdJag8nFxD7e5kjQJCBF9QkxprqZRB",
-      "balance": 125575,
+      "balance": 179661,
       "membership_expire_on": 1719073369,
-      "next_cert_issuable_on": 1684043723,
+      "next_cert_issuable_on": 1694598483,
       "certs_received": {
         "UFO": 1736706193,
         "Manu_El": 1747092474,
@@ -186978,6 +190839,7 @@
         "Aatma": 1726252353,
         "Javilion": 1730103403,
         "celoman": 1726177385,
+        "Sarieluz": 1757650755,
         "Mimi5691": 1733634645,
         "Alegria": 1723104779,
         "MaraVilla": 1723188778,
@@ -187006,7 +190868,7 @@
     "ManeLibre": {
       "index": 11750,
       "owner_key": "Gdhkriy71ACzuWN3CvAtcWfyFLXZEKJh4FhevcFSYiqL",
-      "balance": 75395,
+      "balance": 78081,
       "membership_expire_on": 1705760889,
       "next_cert_issuable_on": 1679038796,
       "certs_received": {
@@ -187022,9 +190884,9 @@
     "ADD": {
       "index": 4899,
       "owner_key": "GdnPNmtfEzZe9AFwqSnEGLjCZR9ipV4pfB34iu9CMCKD",
-      "balance": 685465,
+      "balance": 705151,
       "membership_expire_on": 1707170722,
-      "next_cert_issuable_on": 1665935287,
+      "next_cert_issuable_on": 1694657909,
       "certs_received": {
         "CatherinePerma": 1730275124,
         "pierreM": 1716608437,
@@ -187042,15 +190904,14 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Julia": 1700689693,
-        "Loic": 1693621706
+        "Julia": 1700689693
       }
     },
     "EleonoreBJ": {
       "index": 4008,
       "owner_key": "GdsyKLQM4mTf7Y7R1PKyw7AzCmckkMZJFpneLGi3gGfs",
-      "balance": 1037546,
-      "membership_expire_on": 1694168903,
+      "balance": 1039632,
+      "membership_expire_on": 1727021758,
       "next_cert_issuable_on": 1663158051,
       "certs_received": {
         "Basile83": 1726201251,
@@ -187126,7 +190987,7 @@
     "PhilippeE": {
       "index": 4046,
       "owner_key": "GeCBUCKjjyC7g92MXTMwb9Yg1Lr7rTB8JspH8Xg1hnfF",
-      "balance": 974583,
+      "balance": 1014269,
       "membership_expire_on": 1721945317,
       "next_cert_issuable_on": 1689323107,
       "certs_received": {
@@ -187144,7 +191005,7 @@
     "Mei": {
       "index": 8256,
       "owner_key": "GeFSQfjuYzrLj9u7HuLtCercPYU1khB387x7G4AbLMRq",
-      "balance": 414389,
+      "balance": 439075,
       "membership_expire_on": 1719946115,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -187159,14 +191020,18 @@
     "Domi-Merlinou": {
       "index": 11595,
       "owner_key": "GeGg6UA7zy5dGWwDnaT131KGN9z8G97w1MXgPZahXcD3",
-      "balance": 334967,
+      "balance": 426653,
       "membership_expire_on": 1707665436,
-      "next_cert_issuable_on": 1692496050,
+      "next_cert_issuable_on": 1696497162,
       "certs_received": {
+        "kapis": 1759544194,
+        "Framboisefraise": 1759508610,
         "Kalior": 1754153619,
+        "Crystale": 1758343844,
         "Kryszu": 1739424153,
         "Antunesmi": 1739351117,
         "ChristineRenier": 1739351587,
+        "Blondinette": 1758262434,
         "Candy2000": 1754429781,
         "Gujo": 1754164649,
         "Didiamm": 1740702623,
@@ -187178,10 +191043,25 @@
         "nicgouG": 1739423962
       }
     },
+    "Scarab": {
+      "index": 13650,
+      "owner_key": "GeP9Niy25Bfd7J6d41eZ6DcuaQTHaykzWy75thUs8FWW",
+      "balance": 34694,
+      "membership_expire_on": 1724006454,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Takakra": 1757651679,
+        "MyleneBN": 1758049841,
+        "Walter2000": 1757798326,
+        "Merlinor": 1758680300,
+        "Thiery": 1758044018,
+        "armunia": 1757620814
+      }
+    },
     "Navy5417": {
       "index": 11971,
       "owner_key": "GeRy4RMCHWLpqroyegcu8vaWnb7kp9g7LEvaDeZsiSeC",
-      "balance": 209556,
+      "balance": 249242,
       "membership_expire_on": 1709496364,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -187195,9 +191075,9 @@
     "SofianneErler": {
       "index": 6543,
       "owner_key": "GeTH4BxijbfeCTKGDZ5Ufew7gCaHJ6sQoffKjFYvV5Tg",
-      "balance": 162225,
+      "balance": 236111,
       "membership_expire_on": 1723941114,
-      "next_cert_issuable_on": 1683601270,
+      "next_cert_issuable_on": 1696293853,
       "certs_received": {
         "RaieManta": 1703657474,
         "RomainKornig": 1705712990,
@@ -187242,8 +191122,8 @@
     "Asiergr": {
       "index": 10042,
       "owner_key": "GeTWKwm9XpvLijbGy56U6DNUKSa7CV2DkR2ve8yvtkKx",
-      "balance": 122875,
-      "membership_expire_on": 1696266365,
+      "balance": 146561,
+      "membership_expire_on": 1725281545,
       "next_cert_issuable_on": 1678161570,
       "certs_received": {
         "MonyKan": 1746771551,
@@ -187289,6 +191169,21 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "LaurenceMonsur": {
+      "index": 13637,
+      "owner_key": "Gec58N9TtS97coKQhDuozjozeoBU29MyePqFTf1R7Fop",
+      "balance": 31400,
+      "membership_expire_on": 1726869298,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "reG1nald": 1758565247,
+        "AnneSophieConotte": 1758564834,
+        "Nilhan": 1758583085,
+        "AgnesJs": 1758575063,
+        "Sandrinew": 1758690475,
+        "Gillo75": 1758568170
+      }
+    },
     "Citoyen": {
       "index": 9485,
       "owner_key": "GehLx3yUJnS5FmoNaNwuY6NyJn8TGhSNH8vouBgp2hgU",
@@ -187309,7 +191204,7 @@
     "LeoFrutti": {
       "index": 6210,
       "owner_key": "Gew3LuWNRamZhtaGGepBoZZ7PJHJhBg4FoWQ5h7XNCLM",
-      "balance": 677951,
+      "balance": 717637,
       "membership_expire_on": 1700494473,
       "next_cert_issuable_on": 1688024986,
       "certs_received": {
@@ -187326,7 +191221,7 @@
     "juwolf": {
       "index": 3747,
       "owner_key": "GewQhV1Ys1RxBchKeUg4Remc2w5QrxJXjCMsG3devMmW",
-      "balance": 934674,
+      "balance": 974360,
       "membership_expire_on": 1708523613,
       "next_cert_issuable_on": 1671076641,
       "certs_received": {
@@ -187365,7 +191260,7 @@
     "Jackie24": {
       "index": 8570,
       "owner_key": "Gf5ZQ7u28BtJUmA8LiM8cjWZgscr72DowNtQzJzrbYWo",
-      "balance": 603675,
+      "balance": 643361,
       "membership_expire_on": 1717463530,
       "next_cert_issuable_on": 1664188342,
       "certs_received": {
@@ -187417,7 +191312,7 @@
     "moul": {
       "index": 49,
       "owner_key": "GfKERHnJTYzKhKUma5h1uWhetbA8yHKymhVH2raf2aCP",
-      "balance": 6500493,
+      "balance": 6658919,
       "membership_expire_on": 1719862383,
       "next_cert_issuable_on": 1671443467,
       "certs_received": {
@@ -187443,7 +191338,7 @@
     "Jade974oooHarry": {
       "index": 3729,
       "owner_key": "GfZRJU76Hg4HcHPdWEj4ccNj8HqXLaQAwYxnosHYwHQY",
-      "balance": 1209519,
+      "balance": 1099205,
       "membership_expire_on": 1708676328,
       "next_cert_issuable_on": 1688799530,
       "certs_received": {
@@ -187471,8 +191366,8 @@
     "EliseNantes": {
       "index": 6015,
       "owner_key": "GfdgNgKLR5vFxERgBSWiY7yZzZmu1MTYk1UxeL68UxuM",
-      "balance": 151885,
-      "membership_expire_on": 1698544053,
+      "balance": 184562,
+      "membership_expire_on": 1726931485,
       "next_cert_issuable_on": 1693279550,
       "certs_received": {
         "GenevLeb": 1698882478,
@@ -187492,7 +191387,7 @@
         "IreneRollMet": 1709346660,
         "Tissia": 1708384614,
         "Barbarie-Crespin": 1727935046,
-        "Maaltir": 1699329595,
+        "Maaltir": 1759433231,
         "Eric-Frodon86": 1749014131,
         "Murielle44": 1723665622,
         "RachelLT": 1699407458,
@@ -187507,9 +191402,9 @@
     "LEL": {
       "index": 8398,
       "owner_key": "GfjgnUCXCPPAwS1rCu7v15jtJ1hES2Atz1sBwC4MgiAs",
-      "balance": 358185,
+      "balance": 309871,
       "membership_expire_on": 1710037609,
-      "next_cert_issuable_on": 1664888366,
+      "next_cert_issuable_on": 1694910661,
       "certs_received": {
         "AnnaLisa": 1715812746,
         "Malene": 1733210598,
@@ -187523,8 +191418,8 @@
     "Melvhvx": {
       "index": 9690,
       "owner_key": "GftCMHAS963c1JKnyEv78CPHekGARwDz91zwd5kNrdEv",
-      "balance": 229309,
-      "membership_expire_on": 1695837112,
+      "balance": 259293,
+      "membership_expire_on": 1728165551,
       "next_cert_issuable_on": 1684814130,
       "certs_received": {
         "Perrine971": 1727324961,
@@ -187534,6 +191429,21 @@
         "VeroPointeNoire": 1726325173
       }
     },
+    "Juan-Carlos": {
+      "index": 13597,
+      "owner_key": "Gfw6RXhVSWQZXGgUkcdgKYNb3fnVTvMAmCQdqhrWK4gf",
+      "balance": 21263,
+      "membership_expire_on": 1726610911,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Bea813": 1758168785,
+        "Celine": 1758169587,
+        "Didilou": 1758174626,
+        "Lilo26": 1758168785,
+        "Cathy26": 1758169052,
+        "gedeon26": 1758169842
+      }
+    },
     "GLFA7675": {
       "index": 4752,
       "owner_key": "GfzmEAkXLsMynFBuJLqWVt46Z2QJsE4XzPjYfGSUokJc",
@@ -187545,7 +191455,7 @@
     "Chant26": {
       "index": 11693,
       "owner_key": "Gg1mmuVHZeWgkWBkzRKaa9KHdebBmPLDSgfiZcZZ6cf3",
-      "balance": 272972,
+      "balance": 312658,
       "membership_expire_on": 1708086108,
       "next_cert_issuable_on": 1684828038,
       "certs_received": {
@@ -187561,7 +191471,7 @@
     "dyxie": {
       "index": 11264,
       "owner_key": "GgKZo8PH1X86ZbVEjpGHSRbZyefYPrMebK91ETdWAogg",
-      "balance": 180742,
+      "balance": 220428,
       "membership_expire_on": 1705345894,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -187585,7 +191495,7 @@
     "JeanJoel35": {
       "index": 11379,
       "owner_key": "GgRwCWLZTDhFAjK9HRDBLpg8ckR4MGzVAGvk249aeALC",
-      "balance": 138568,
+      "balance": 200892,
       "membership_expire_on": 1705804101,
       "next_cert_issuable_on": 1689954149,
       "certs_received": {
@@ -187598,7 +191508,8 @@
         "CarolAmethyste": 1751240535,
         "Moi_C_Olivier": 1738004972,
         "Isa35": 1737870797,
-        "Celimen35": 1737855472
+        "Celimen35": 1737855472,
+        "Gaia6442": 1758937395
       }
     },
     "Coeurvegetal": {
@@ -187612,7 +191523,7 @@
     "Sylva": {
       "index": 11837,
       "owner_key": "GgcoGWVxR7yyUka1AYuwjKr9FCp98LbhagF3LCEv8SL8",
-      "balance": 157805,
+      "balance": 192491,
       "membership_expire_on": 1709305966,
       "next_cert_issuable_on": 1681735417,
       "certs_received": {
@@ -187628,9 +191539,9 @@
     "CoralieM": {
       "index": 6187,
       "owner_key": "GgdMFAV5FVTwUL1DZGK2qk6N3YPxwoLRqds9TNxsfVTK",
-      "balance": 378695,
+      "balance": 290881,
       "membership_expire_on": 1722530463,
-      "next_cert_issuable_on": 1689844378,
+      "next_cert_issuable_on": 1696343402,
       "certs_received": {
         "Ibnesa": 1699925104,
         "Noelia": 1752529066,
@@ -187653,7 +191564,7 @@
     "Phileace": {
       "index": 7264,
       "owner_key": "GgeyoGmsqN1toyvV8V38JDodUMwm1Cai7E8gRKFbjDhq",
-      "balance": 528441,
+      "balance": 568127,
       "membership_expire_on": 1706529756,
       "next_cert_issuable_on": 1676724032,
       "certs_received": {
@@ -187669,7 +191580,7 @@
     "Nahi": {
       "index": 3262,
       "owner_key": "GgiTjgZG17yGQUVdCxw4uHx9W2LSmdvvwAzzxHEypxic",
-      "balance": 1308924,
+      "balance": 1348610,
       "membership_expire_on": 1704725995,
       "next_cert_issuable_on": 1635903849,
       "certs_received": {
@@ -187692,9 +191603,9 @@
     "SELHENIA": {
       "index": 9532,
       "owner_key": "Ggw5QZmz2hG4EKs9giUFretz8rAdSMJ89nkvvnQrnFP",
-      "balance": 457046,
+      "balance": 388132,
       "membership_expire_on": 1721923967,
-      "next_cert_issuable_on": 1690432552,
+      "next_cert_issuable_on": 1696134271,
       "certs_received": {
         "Crystal": 1733633787,
         "Etipol61": 1731796829,
@@ -187709,6 +191620,7 @@
         "FRANLA": 1750887935,
         "SylvieT": 1726252353,
         "PEB": 1737076790,
+        "DCat": 1759182385,
         "Gillo75": 1735761792,
         "Sylvieb": 1735119808,
         "Supralumen": 1734738815,
@@ -187731,7 +191643,7 @@
     "Eline_Conil": {
       "index": 5045,
       "owner_key": "GgyrX3rDesw4DgR45i3MXCEEmPjrCqTD58R3Xy4hXPtw",
-      "balance": 924933,
+      "balance": 964619,
       "membership_expire_on": 1712077273,
       "next_cert_issuable_on": 1666579565,
       "certs_received": {
@@ -187745,9 +191657,9 @@
     "Keramina51": {
       "index": 6039,
       "owner_key": "Gh2oySU8T9qEeYHLSUUS9iec9CjCVWUmDsUgcvxfDczr",
-      "balance": 338787,
+      "balance": 378473,
       "membership_expire_on": 1724544473,
-      "next_cert_issuable_on": 1690794962,
+      "next_cert_issuable_on": 1696743211,
       "certs_received": {
         "Muriel51": 1718041686,
         "OlivierM51": 1732382505,
@@ -187785,7 +191697,7 @@
     "Jeanne88": {
       "index": 12772,
       "owner_key": "Gh9K9QX69c1QaPugS8dqbnGkkduBXrL19k63zD3FqM8Z",
-      "balance": 105392,
+      "balance": 145578,
       "membership_expire_on": 1716636536,
       "next_cert_issuable_on": 1691932368,
       "certs_received": {
@@ -187825,11 +191737,12 @@
     "Joa-KimTiago": {
       "index": 1977,
       "owner_key": "GhTDqEKJjDeLdSyJ5yBxN1Cf2X1kqtPbMjxiZXP78D8K",
-      "balance": 1174123,
+      "balance": 1261409,
       "membership_expire_on": 1703643321,
       "next_cert_issuable_on": 1693056515,
       "certs_received": {
         "Carine888": 1736317344,
+        "AN-gela": 1759458637,
         "CoraRose": 1748157291,
         "HeleneAnsay": 1739248448,
         "Falkena": 1739936443,
@@ -187847,7 +191760,7 @@
     "Paffy66": {
       "index": 9100,
       "owner_key": "GhZYpsX6FW8PjPA9UjsM15i9xim6Xf8zZwezaVWtpURF",
-      "balance": 385454,
+      "balance": 425140,
       "membership_expire_on": 1723763744,
       "next_cert_issuable_on": 1669517924,
       "certs_received": {
@@ -187861,7 +191774,7 @@
     "Celestecharlelie": {
       "index": 12860,
       "owner_key": "GhbF9P1Tszp3US2KAw7vZ62UwKyeLxFzWZQHWuLMSWNG",
-      "balance": 108508,
+      "balance": 148194,
       "membership_expire_on": 1717611067,
       "next_cert_issuable_on": 1689491431,
       "certs_received": {
@@ -187889,7 +191802,7 @@
     "Grenouille": {
       "index": 7962,
       "owner_key": "GhxPFqV3b8h74dHZ8zKFE5dZn5YLCYE2NPgxt8hszpxj",
-      "balance": 531617,
+      "balance": 569303,
       "membership_expire_on": 1710340598,
       "next_cert_issuable_on": 1689254099,
       "certs_received": {
@@ -187903,14 +191816,15 @@
         "TribuRaph": 1714881791,
         "Goldwing": 1735510660,
         "JudithEl": 1714847934,
+        "MikaPac": 1759783038,
         "IsaPetitsBonheurs": 1734812004
       }
     },
     "Seminare0612": {
       "index": 11061,
       "owner_key": "Gi5FWkUJSzCfbymuM1yTgJAzb4FopoW6HU5LhdoGujfW",
-      "balance": 274599,
-      "membership_expire_on": 1700347200,
+      "balance": 4645,
+      "membership_expire_on": 1727393428,
       "next_cert_issuable_on": 1677148179,
       "certs_received": {
         "Jude84": 1735205420,
@@ -187929,8 +191843,8 @@
     "delphine84": {
       "index": 9869,
       "owner_key": "GiG13XYX2c3MWD9kby9aRPuEG6SV8sCcMafwfcVFYuLp",
-      "balance": 318642,
-      "membership_expire_on": 1696707277,
+      "balance": 358328,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "CorineArmand": 1728541517,
@@ -187945,12 +191859,13 @@
     "Colvert": {
       "index": 7936,
       "owner_key": "GiKcMHY7jb6EKyaEmkhny6orb4KogTBXSqn4A5i91WKW",
-      "balance": 393769,
+      "balance": 606955,
       "membership_expire_on": 1709231588,
-      "next_cert_issuable_on": 1692763714,
+      "next_cert_issuable_on": 1696340084,
       "certs_received": {
         "PascalEnden": 1738953859,
         "ericve": 1748103565,
+        "NanouB": 1759604401,
         "morimontj": 1736554515,
         "Fanfan13": 1735450086,
         "killerkawasaki": 1714831806,
@@ -187967,7 +191882,7 @@
     "atlasan": {
       "index": 11859,
       "owner_key": "GiKdwifMqxw9WHjwYqvN5adPSQKpcMGunEnCMtZ1gYTK",
-      "balance": 206187,
+      "balance": 245873,
       "membership_expire_on": 1709137750,
       "next_cert_issuable_on": 1678210909,
       "certs_received": {
@@ -187982,8 +191897,8 @@
     "GwenaelBaronnet": {
       "index": 5934,
       "owner_key": "GiQ4z3CTQp8xt813P7DdnM1UexU8BMBkjLdRwHhH1Eh3",
-      "balance": 840231,
-      "membership_expire_on": 1694728454,
+      "balance": 855183,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1677817408,
       "certs_received": {
         "Salya": 1698386245,
@@ -187998,26 +191913,21 @@
     "kristin": {
       "index": 5618,
       "owner_key": "GiV4XEw1GZfmRX4R8HB8wM28ddMAotKZbExZ6HHjSfwt",
-      "balance": 748203,
+      "balance": 787889,
       "membership_expire_on": 1720481670,
       "next_cert_issuable_on": 1689500206,
       "certs_received": {
-        "Tettla": 1694074390,
         "Sylvie-Linas": 1749961623,
         "Maaude09": 1750313632,
         "Natte444": 1751761748,
         "Jujudu94500": 1752271125,
-        "ollo": 1694076249,
-        "Flore66": 1694115849,
-        "Louis_Mandr2": 1749662567,
-        "SandraC": 1694074390,
-        "Freco": 1694153429
+        "Louis_Mandr2": 1749662567
       }
     },
     "Gino33": {
       "index": 11816,
       "owner_key": "Gie8rkH5AsyLMyQEE9Tab3Ysk7PtPcQCKHVKrHPBeswP",
-      "balance": 195264,
+      "balance": 234950,
       "membership_expire_on": 1709161332,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -188032,7 +191942,7 @@
     "Badibo": {
       "index": 11550,
       "owner_key": "Gied5eQ2r7aBaC9ZEfLWFAaMhqcWREdDYy8f7G8yCrG8",
-      "balance": 189585,
+      "balance": 229271,
       "membership_expire_on": 1707090451,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -188046,7 +191956,7 @@
     "Spinna": {
       "index": 6207,
       "owner_key": "GigpRkJHjbVMYD73p2TL8jgKrPJBcnY83n28bKvANScR",
-      "balance": 656493,
+      "balance": 696179,
       "membership_expire_on": 1698758109,
       "next_cert_issuable_on": 1667279816,
       "certs_received": {
@@ -188061,9 +191971,9 @@
     "MyrDek": {
       "index": 12983,
       "owner_key": "Gihd98XK9Uvhxy5y1QDc7HzYqLm7o1XmpR777dmaw343",
-      "balance": 75556,
+      "balance": 106042,
       "membership_expire_on": 1717352492,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696228950,
       "certs_received": {
         "Briballe": 1750832799,
         "BabouB62": 1750738588,
@@ -188077,8 +191987,8 @@
     "FranckCharpentier": {
       "index": 10256,
       "owner_key": "GikUCC52y75XWhxKq3VszvDJBC3PoxFufAmpKqkNsW3K",
-      "balance": 359931,
-      "membership_expire_on": 1696350693,
+      "balance": 399617,
+      "membership_expire_on": 1725362917,
       "next_cert_issuable_on": 1677118032,
       "certs_received": {
         "SevChereau": 1728183421,
@@ -188093,7 +192003,7 @@
     "AnneSoleneCM": {
       "index": 8818,
       "owner_key": "GithDdy4aaSpzF2imeTT1kvcLeU9dJTQs8Kg96GfRmPF",
-      "balance": 419308,
+      "balance": 453994,
       "membership_expire_on": 1717797008,
       "next_cert_issuable_on": 1690805686,
       "certs_received": {
@@ -188111,9 +192021,9 @@
     "let-it-be57": {
       "index": 12079,
       "owner_key": "Gj1t1djJp8GQR2dE2gkZhtBubrpbg6NCPx6tLTEueDpt",
-      "balance": 496096,
+      "balance": 540782,
       "membership_expire_on": 1709484425,
-      "next_cert_issuable_on": 1693456358,
+      "next_cert_issuable_on": 1693456695,
       "certs_received": {
         "Lisie": 1741065333,
         "MarieDo": 1741651431,
@@ -188141,7 +192051,7 @@
     "Estell971": {
       "index": 11436,
       "owner_key": "Gj5MyVimrvkVEPbRZsj5uce88QVgdxRsKCgUoD5qKMAM",
-      "balance": 204916,
+      "balance": 234602,
       "membership_expire_on": 1706757591,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -188155,9 +192065,9 @@
     "MonicaMu": {
       "index": 12081,
       "owner_key": "Gj6FgqWcdUL921qyzxxCfwK2Wkp7aVVPVtN94UkmECA6",
-      "balance": 33065,
+      "balance": 46851,
       "membership_expire_on": 1710790195,
-      "next_cert_issuable_on": 1690612737,
+      "next_cert_issuable_on": 1694094105,
       "certs_received": {
         "RuthGuerrero": 1742366669,
         "carmela": 1742586027,
@@ -188170,7 +192080,7 @@
     "Astharadiance": {
       "index": 11712,
       "owner_key": "Gj74BteHWeddgVeDamSmznc2hmWRnfXc2HPBit8T96sJ",
-      "balance": 206577,
+      "balance": 246263,
       "membership_expire_on": 1707678230,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -188192,7 +192102,7 @@
     "PauRicART": {
       "index": 10618,
       "owner_key": "GjE9xbGxjCarRKW5H2mE1wymYAKqqNi7zaFwqBv6sGkj",
-      "balance": 292555,
+      "balance": 357241,
       "membership_expire_on": 1701273407,
       "next_cert_issuable_on": 1690784679,
       "certs_received": {
@@ -188212,7 +192122,7 @@
     "Inma11": {
       "index": 8546,
       "owner_key": "GjKfphQfoJvH5VeR3mR5vKWb8tmQx5qzLJQioHJhgzZQ",
-      "balance": 405175,
+      "balance": 444861,
       "membership_expire_on": 1715975594,
       "next_cert_issuable_on": 1677402553,
       "certs_received": {
@@ -188238,7 +192148,7 @@
     "Lilou05": {
       "index": 10586,
       "owner_key": "GjPrskmZnxzZnUBkMZNo88gJATzbjEPA2cgsE754R4uv",
-      "balance": 292692,
+      "balance": 332378,
       "membership_expire_on": 1700261621,
       "next_cert_issuable_on": 1672197697,
       "certs_received": {
@@ -188260,7 +192170,7 @@
     "MadameNuages": {
       "index": 12893,
       "owner_key": "Gjahp8EMgHAap2c12xdxBRGFeXdApAPLEXrpZabSDEtn",
-      "balance": 93304,
+      "balance": 132990,
       "membership_expire_on": 1716001795,
       "next_cert_issuable_on": 1686916343,
       "certs_received": {
@@ -188296,7 +192206,7 @@
     "Ludivinoeud": {
       "index": 11893,
       "owner_key": "GjeywrNcuyLPgbVAUBsUyqT6yYxMkDgf1csVuphWj76D",
-      "balance": 193969,
+      "balance": 233655,
       "membership_expire_on": 1706790557,
       "next_cert_issuable_on": 1678637349,
       "certs_received": {
@@ -188310,19 +192220,22 @@
     "Mireilleplantessauvages": {
       "index": 7330,
       "owner_key": "Gjn8DvK5BLKX4RBmcgGX966cn8daDmohGjtyYzH1zwrQ",
-      "balance": 840492,
+      "balance": 987778,
       "membership_expire_on": 1705104081,
-      "next_cert_issuable_on": 1692964785,
+      "next_cert_issuable_on": 1696776373,
       "certs_received": {
         "Amiel": 1710616126,
+        "BudFox": 1756620837,
         "rockwater": 1720233229,
         "PierreTransformant": 1721425875,
         "DanWF": 1717547245,
+        "lumirose": 1756671599,
         "Valenvan": 1739076032,
         "BOUbou007": 1721783255,
         "MartiGraef": 1728173581,
         "Tchoupi": 1755093416,
         "FRANLA": 1750285993,
+        "AnneMC": 1759205162,
         "Annae": 1740292988,
         "ENO": 1717689035,
         "Avalon": 1737094618,
@@ -188333,6 +192246,8 @@
         "Sylvieb": 1751866657,
         "fanfan": 1720827721,
         "Brigitte45": 1710443645,
+        "Lazuly": 1756696769,
+        "NataSha": 1759191838,
         "WANMAR": 1747005958,
         "CTL": 1722463447,
         "hazed": 1717622439,
@@ -188347,6 +192262,8 @@
         "Patoun": 1710715894,
         "Mmemonica": 1755127906,
         "TenShao": 1731880719,
+        "Isabiloba": 1759340115,
+        "Elodie2706": 1756968841,
         "BDMan": 1729538609,
         "Gclaire": 1735609736,
         "LUCKY": 1737535153
@@ -188355,7 +192272,7 @@
     "Kprys": {
       "index": 10901,
       "owner_key": "GjnW8kfeMtAL1Ar89PH5knfBr659kuH5NTh8ighCtFMP",
-      "balance": 272571,
+      "balance": 312257,
       "membership_expire_on": 1700347489,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -188369,7 +192286,7 @@
     "Shims35": {
       "index": 5937,
       "owner_key": "GjuKGEB4hZWRhfLs5jECXXs2Y1wjxnfhzKa4PMSWGLeL",
-      "balance": 541769,
+      "balance": 496769,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1661480156,
       "certs_received": {
@@ -188384,10 +192301,11 @@
     "Claire11": {
       "index": 10675,
       "owner_key": "Gjuqx39P2WgG75iEKwcB8Mbej2hk8ui61Td3Bd3rJEGv",
-      "balance": 240363,
+      "balance": 245049,
       "membership_expire_on": 1701627806,
       "next_cert_issuable_on": 1689865654,
       "certs_received": {
+        "Carine888": 1758309707,
         "Etipol61": 1741570340,
         "VinceNB": 1738141777,
         "Mamouchka": 1737792866,
@@ -188413,7 +192331,7 @@
     "Mamiejolie": {
       "index": 7373,
       "owner_key": "Gjv8KZryV7ThfdhpqbLC7nbiXp4SR1oN9XwsJhHhxUZJ",
-      "balance": 556163,
+      "balance": 595849,
       "membership_expire_on": 1706531993,
       "next_cert_issuable_on": 1655816157,
       "certs_received": {
@@ -188443,9 +192361,9 @@
     "WARTHLANDAISSOPHIE": {
       "index": 9357,
       "owner_key": "Gk4qgVEkD3tss39CsmWKVkHGfQJvx8AWnUQvwMYGDnNX",
-      "balance": 236626,
+      "balance": 271312,
       "membership_expire_on": 1719967146,
-      "next_cert_issuable_on": 1691541761,
+      "next_cert_issuable_on": 1693812748,
       "certs_received": {
         "Andrelebourhis": 1724536291,
         "AnnePG": 1729453387,
@@ -188457,13 +192375,14 @@
         "NEMETONA34": 1741120171,
         "PERSIFLEUR": 1724865654,
         "Marjo": 1724918709,
+        "Gebender6": 1757480481,
         "romainForca": 1723600345
       }
     },
     "Mabize": {
       "index": 7655,
       "owner_key": "GkGahP6BxGj1rberHBf42nS9WLP3mKkAEyqrRftBp3mW",
-      "balance": 236413,
+      "balance": 276099,
       "membership_expire_on": 1707835975,
       "next_cert_issuable_on": 1693468043,
       "certs_received": {
@@ -188495,9 +192414,9 @@
     "Carole45": {
       "index": 12922,
       "owner_key": "GkLU8jRFLQDwobmKVDjYditrPLK2bTiLrSkx2QmLC4ji",
-      "balance": 77932,
+      "balance": 118618,
       "membership_expire_on": 1718047188,
-      "next_cert_issuable_on": 1690856559,
+      "next_cert_issuable_on": 1695362535,
       "certs_received": {
         "TiboDom": 1752989730,
         "Mathdom": 1755305634,
@@ -188521,7 +192440,7 @@
     "Campanillablanca": {
       "index": 10686,
       "owner_key": "GkP9FC31YdE1JcCR7dgie22SMyFFrkUKMz1mAhcxw87R",
-      "balance": 167607,
+      "balance": 207293,
       "membership_expire_on": 1701287180,
       "next_cert_issuable_on": 1682002256,
       "certs_received": {
@@ -188550,14 +192469,17 @@
     "NanouchkaM": {
       "index": 13445,
       "owner_key": "GkWv6niFZamYXhHWoWcQpqUfx3tJdYS6VzUAnYaxKYke",
-      "balance": 35340,
+      "balance": 75026,
       "membership_expire_on": 1723679765,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1695138319,
       "certs_received": {
         "AN-gela": 1755969889,
         "Lilibeth79": 1756245819,
         "Papou": 1755839629,
+        "Tournesol": 1757267606,
         "AnthonyDel": 1756161822,
+        "Bichounette": 1757783957,
+        "annemarie9": 1759635564,
         "Zenobie": 1756175746,
         "CedricG": 1755983170
       }
@@ -188621,7 +192543,7 @@
     "javiwood": {
       "index": 10803,
       "owner_key": "GkoXVqyc2N36R7CUZdi6EpHxcNryQF4S3U3QDWt1vaSV",
-      "balance": 422279,
+      "balance": 461965,
       "membership_expire_on": 1700495366,
       "next_cert_issuable_on": 1673255500,
       "certs_received": {
@@ -188638,7 +192560,7 @@
     "MokaFreeFlow": {
       "index": 10055,
       "owner_key": "GkzUQDW8XFgHsaiaBuJzrRutRSWqx23SwbJrWrJqFfSn",
-      "balance": 341066,
+      "balance": 380752,
       "membership_expire_on": 1696970654,
       "next_cert_issuable_on": 1681272021,
       "certs_received": {
@@ -188663,7 +192585,7 @@
     "Jean-Claude-04": {
       "index": 6027,
       "owner_key": "GmDFLu2ZHSE9arcAtX6iqkC3YpHCU7gh6YVVTAy3t13F",
-      "balance": 647661,
+      "balance": 687347,
       "membership_expire_on": 1697752866,
       "next_cert_issuable_on": 1685693843,
       "certs_received": {
@@ -188733,8 +192655,8 @@
     "Cocon": {
       "index": 8921,
       "owner_key": "GmUvxxQA5MCdTGShUb97masNqHVxCvshVEFWrqNbUUns",
-      "balance": 460418,
-      "membership_expire_on": 0,
+      "balance": 483016,
+      "membership_expire_on": 1726432120,
       "next_cert_issuable_on": 1662468976,
       "certs_received": {
         "CorinnePatris": 1720576932,
@@ -188752,7 +192674,7 @@
     "Amor": {
       "index": 10087,
       "owner_key": "GmaqYt5juQTbDWsgfeLRwWj6fEa9YJsQZeVwE2kywQzW",
-      "balance": 323570,
+      "balance": 363256,
       "membership_expire_on": 1723996670,
       "next_cert_issuable_on": 1687057779,
       "certs_received": {
@@ -188763,13 +192685,14 @@
         "Mosica": 1729926185,
         "SurfinMaya": 1729933863,
         "ALEGRIAUNIVERSAL": 1729841999,
+        "YaYiSu": 1759254629,
         "Pedroxistau": 1729801119
       }
     },
     "Cecistem": {
       "index": 4230,
       "owner_key": "Gmjmo1nRX2NbudthZNtev6ut1Y6eM8iR9rpr5hNZJ4nv",
-      "balance": 932651,
+      "balance": 972337,
       "membership_expire_on": 1716354075,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -188783,7 +192706,7 @@
     "nadiaespaignet": {
       "index": 1081,
       "owner_key": "GmkcqeykjDPovAkBRcgh2F6PHUzz2uHL8wxpYCbnDsj9",
-      "balance": 1343582,
+      "balance": 1383268,
       "membership_expire_on": 1707776081,
       "next_cert_issuable_on": 1682824007,
       "certs_received": {
@@ -188803,7 +192726,7 @@
     "Mosica": {
       "index": 8642,
       "owner_key": "GmpgfaFaN2u8sAXU9j3rs6sCD5nhZyvKcXc1K8KH5UVw",
-      "balance": 216118,
+      "balance": 255804,
       "membership_expire_on": 1713366452,
       "next_cert_issuable_on": 1687848023,
       "certs_received": {
@@ -188878,7 +192801,7 @@
     "Miquel-herbes": {
       "index": 11542,
       "owner_key": "Gn5DyBFgtXisfXdYzWU2aRy8jHcjEGu2qcDNnNqwsTzD",
-      "balance": 366377,
+      "balance": 384743,
       "membership_expire_on": 1704492120,
       "next_cert_issuable_on": 1676165149,
       "certs_received": {
@@ -188894,7 +192817,7 @@
     "Olguita": {
       "index": 11821,
       "owner_key": "GnA2QixiKPJYXVn9NQxq9oGAs82939nDXJx7C9NiJzVf",
-      "balance": 195264,
+      "balance": 234950,
       "membership_expire_on": 1709253669,
       "next_cert_issuable_on": 1679562293,
       "certs_received": {
@@ -188909,11 +192832,12 @@
     "Masillonpatricia": {
       "index": 9611,
       "owner_key": "GnHKxUkGqNdcHkrMQgkKWrQYrGK4FLDFyxrdzQ1NyD8t",
-      "balance": 281355,
+      "balance": 326651,
       "membership_expire_on": 1722948337,
-      "next_cert_issuable_on": 1692356123,
+      "next_cert_issuable_on": 1695121065,
       "certs_received": {
         "TwentySeligUriel": 1726675657,
+        "Tournesol": 1756834102,
         "MagaliRegent": 1726629291,
         "Attila": 1726623662,
         "Mcb": 1741593093,
@@ -188931,16 +192855,14 @@
       "balance": 555811,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "niko": 1693544026
-      }
+      "certs_received": {}
     },
     "Jadom": {
       "index": 9377,
       "owner_key": "GnKF8QMrMxJdAQ8ZsxLKsV6Ty5u1irxWva9qjZiZuz5t",
-      "balance": 246146,
+      "balance": 260732,
       "membership_expire_on": 1725043289,
-      "next_cert_issuable_on": 1688016440,
+      "next_cert_issuable_on": 1696509815,
       "certs_received": {
         "Mianne": 1729458834,
         "Feerique": 1747776646,
@@ -188948,11 +192870,14 @@
         "MagaliRegent": 1725090488,
         "Sarinette": 1724947864,
         "Attila": 1724913660,
+        "Walter2000": 1758681955,
         "StephBauer": 1724895835,
         "Ecureuil": 1741378166,
+        "Lando": 1759387203,
         "zenbio": 1747775936,
         "Merlinor": 1724987631,
         "Plume": 1740848606,
+        "Thiery": 1758843398,
         "Bruosteop": 1724979593
       }
     },
@@ -188967,7 +192892,7 @@
     "MissChaChaCha": {
       "index": 7391,
       "owner_key": "GnNCzZSqzMYqX5oMASwdYuyaGXPDdca6NoNctakCUcpk",
-      "balance": 454692,
+      "balance": 494378,
       "membership_expire_on": 1720025841,
       "next_cert_issuable_on": 1651702928,
       "certs_received": {
@@ -188986,7 +192911,7 @@
     "Mamimi": {
       "index": 1157,
       "owner_key": "GnQJMkJCAQ8KiPQQVuYhC1F6KDbCZMQGPuowCKJaWn67",
-      "balance": 527457,
+      "balance": 567143,
       "membership_expire_on": 1718016874,
       "next_cert_issuable_on": 1657772719,
       "certs_received": {
@@ -189005,7 +192930,7 @@
     "Christophe-C": {
       "index": 6359,
       "owner_key": "GnQY1bJFJfWD4nfFmxSaTXm2QT66x3x7omkRqWa8Zw4Y",
-      "balance": 649049,
+      "balance": 682235,
       "membership_expire_on": 1722204545,
       "next_cert_issuable_on": 1691894145,
       "certs_received": {
@@ -189040,7 +192965,7 @@
     "CanGuineu": {
       "index": 11107,
       "owner_key": "GnVZbao2LmqGAztjh4hxsgMg44AWsnsMd8zMZijkPVfK",
-      "balance": 137168,
+      "balance": 176854,
       "membership_expire_on": 1704381487,
       "next_cert_issuable_on": 1678203070,
       "certs_received": {
@@ -189076,8 +193001,8 @@
     "m4yadnba": {
       "index": 9462,
       "owner_key": "GnioR4A8YELK93PKC7cS1eK8iEFeakgiNakcC2YFf1C2",
-      "balance": 379442,
-      "membership_expire_on": 1693836879,
+      "balance": 383714,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1669091541,
       "certs_received": {
         "arkanoid3275": 1725395006,
@@ -189090,7 +193015,7 @@
     "EtienneChouard": {
       "index": 1576,
       "owner_key": "Gnn9he3pi427425QhiMALdvRXJfo7NR2T7smtHMZYujS",
-      "balance": 1901121,
+      "balance": 1940807,
       "membership_expire_on": 1709118963,
       "next_cert_issuable_on": 1647219166,
       "certs_received": {
@@ -189109,7 +193034,7 @@
     "kissalival": {
       "index": 12016,
       "owner_key": "GnnATj66W7swh65Jt9fwUmbxccyZ56dUHK3GCzMXuo7w",
-      "balance": 233336,
+      "balance": 255022,
       "membership_expire_on": 1709850742,
       "next_cert_issuable_on": 1682302937,
       "certs_received": {
@@ -189126,9 +193051,9 @@
     "sens": {
       "index": 7224,
       "owner_key": "GnqCfQ4TBabVd91JiaCrmzQR7u3cicJsTM7gZkFiEhk5",
-      "balance": 487259,
+      "balance": 538745,
       "membership_expire_on": 1703284806,
-      "next_cert_issuable_on": 1689681175,
+      "next_cert_issuable_on": 1694699254,
       "certs_received": {
         "Rebirth35": 1734419359,
         "Beasejour": 1709877917,
@@ -189170,7 +193095,7 @@
     "Anne_Marquer": {
       "index": 2005,
       "owner_key": "GoBVMbRphKrWknYuF2LnFb5sjMXGAgq64s71HjDqG5BG",
-      "balance": 1218942,
+      "balance": 1258628,
       "membership_expire_on": 1717779259,
       "next_cert_issuable_on": 1692766938,
       "certs_received": {
@@ -189181,13 +193106,14 @@
         "AnneAmbles": 1751614509,
         "FranckBarbe": 1703531002,
         "Josephine": 1749339107,
-        "Anton": 1701919256
+        "Anton": 1701919256,
+        "Susheela": 1757157959
       }
     },
     "Julienlvs": {
       "index": 10835,
       "owner_key": "GoLFxwGxwF1mkTLRLbmbDbfVXoyyLBUP24R6nBhKmEXo",
-      "balance": 276707,
+      "balance": 316393,
       "membership_expire_on": 1701914401,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -189213,7 +193139,7 @@
     "SurfinMaya": {
       "index": 5519,
       "owner_key": "GoN4baSrLV6ohnkyAdVdJ1bmdazuYwt4t8oXHA2NZVoo",
-      "balance": 1399991,
+      "balance": 1444969,
       "membership_expire_on": 1713644975,
       "next_cert_issuable_on": 1689444702,
       "certs_received": {
@@ -189227,7 +193153,6 @@
         "LaCasaGran": 1697353329,
         "Tulsi": 1736575947,
         "sheveck": 1748233544,
-        "timetale": 1694662242,
         "Lurtxu": 1704443093,
         "haddock": 1720854145,
         "Josepeuta": 1735348315,
@@ -189247,11 +193172,9 @@
         "llanero": 1709796200,
         "DanielaEG": 1728027721,
         "Kris_Izaratia": 1722452435,
-        "Koldo": 1695828373,
         "Noxtan": 1719535555,
         "Pieromao": 1720840282,
         "ElenaMavida": 1696999259,
-        "SandraHeleno": 1696557345,
         "sarava": 1722633435,
         "Jkmbio": 1726684571
       }
@@ -189259,7 +193182,7 @@
     "Christie": {
       "index": 12812,
       "owner_key": "GoUMxcAzkZZHpfB4Gf9REZFsNmDqPisWG38qXoapFbAK",
-      "balance": 99328,
+      "balance": 139014,
       "membership_expire_on": 1717422747,
       "next_cert_issuable_on": 1689435304,
       "certs_received": {
@@ -189278,7 +193201,7 @@
     "CamilleMS": {
       "index": 7905,
       "owner_key": "GoWmT6FULR3XkF5d4VBVEUkfrRknucN4d3FwgiFfwz6U",
-      "balance": 501813,
+      "balance": 541499,
       "membership_expire_on": 1712751309,
       "next_cert_issuable_on": 1673588139,
       "certs_received": {
@@ -189308,9 +193231,9 @@
     "CovaDidier": {
       "index": 5751,
       "owner_key": "Goz7NvyFxV6ufhLh6jDXMCK4xJQsyypgTUDci2RzfNQh",
-      "balance": 2893073,
+      "balance": 2625159,
       "membership_expire_on": 1717189332,
-      "next_cert_issuable_on": 1689556384,
+      "next_cert_issuable_on": 1696344681,
       "certs_received": {
         "AgnesFerey": 1716923554,
         "Robisar": 1720840523,
@@ -189323,7 +193246,6 @@
         "NaneDeProvence": 1719976201,
         "Vanille": 1735371052,
         "TigerKim2410": 1746147937,
-        "Feerique": 1695778611,
         "Ju73": 1724576666,
         "Elfedelumiere": 1721099744,
         "Audette": 1744600676,
@@ -189334,12 +193256,10 @@
         "Ormica": 1744869694,
         "Anandaa": 1734914264,
         "papillon84": 1699559065,
-        "Didierlife84": 1695778611,
-        "RosadoraLafee": 1695778611,
         "Angharad": 1744308438,
         "ChristineRenier": 1725165809,
         "Meiluce": 1716756920,
-        "Nicolili": 1699243699,
+        "Nicolili": 1758086772,
         "ColineGillet": 1702090961,
         "CedrickPiwo": 1712187825,
         "NumpaWicahpi": 1746809220,
@@ -189348,15 +193268,15 @@
         "Diessanne": 1705211253,
         "pfouque": 1714518966,
         "YOSOYLUZ": 1721011891,
-        "lamouette": 1695780632,
         "Florence974": 1743581900,
         "GeraldineGarrigues": 1708839019,
         "laviedefiou": 1738367283,
+        "SaoSampaio": 1757321179,
         "Shivabelle": 1727395532,
-        "Lilinico": 1699243699,
+        "Lilinico": 1758087281,
         "Colaga": 1724515648,
         "carineg": 1735183144,
-        "zenbio": 1695777748,
+        "zenbio": 1759359235,
         "SamueLL": 1752024232,
         "AuroreSouveraine": 1733912821,
         "EricSamsa": 1721202600,
@@ -189379,7 +193299,7 @@
     "Yanelf": {
       "index": 7520,
       "owner_key": "Gp3WQmSCH7Nrsn7FuWeRGWERukRJenMdRhqZzxeR37A5",
-      "balance": 488324,
+      "balance": 528010,
       "membership_expire_on": 1717537247,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -189401,7 +193321,7 @@
     "Titev11": {
       "index": 12100,
       "owner_key": "GpACkRLyX3irmVgTypTzqLTngNaQnwgUuE1R9rd3QWUJ",
-      "balance": 219348,
+      "balance": 259034,
       "membership_expire_on": 1708541414,
       "next_cert_issuable_on": 1692505694,
       "certs_received": {
@@ -189416,7 +193336,7 @@
     "Floche": {
       "index": 11844,
       "owner_key": "GpBvHHMawnrAYDMTe4NbiBvysF6D6FwyhJXzWyTsymfa",
-      "balance": 193646,
+      "balance": 233332,
       "membership_expire_on": 1708301177,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -189462,9 +193382,9 @@
     "Anadi": {
       "index": 10404,
       "owner_key": "GpJU1GMdmk5f3YKqzGytaj7z3MLyn9ZJ5PhCvjkG59Tv",
-      "balance": 245841,
+      "balance": 285527,
       "membership_expire_on": 1699389293,
-      "next_cert_issuable_on": 1683973019,
+      "next_cert_issuable_on": 1694619591,
       "certs_received": {
         "SandrineMala": 1731390705,
         "Kristo": 1731617609,
@@ -189480,13 +193400,12 @@
     "Marnoazz": {
       "index": 730,
       "owner_key": "GpJehjAVcJBJFokauZoN3y4Lb7jnHL15BBr2sgBuDs15",
-      "balance": 909745,
+      "balance": 949431,
       "membership_expire_on": 1699240823,
       "next_cert_issuable_on": 1671995193,
       "certs_received": {
         "Celiane": 1698050477,
         "Julia": 1730893878,
-        "1000i100": 1695280830,
         "CorinneE": 1733872108,
         "Schinzy": 1738725149,
         "Ninon": 1731041996,
@@ -189512,7 +193431,7 @@
     "vene": {
       "index": 2585,
       "owner_key": "GpaWLDSfh9nsNezu8mtfVoQoZSvqcaoyRQ1VDNmJABwq",
-      "balance": 679037,
+      "balance": 718723,
       "membership_expire_on": 1703110654,
       "next_cert_issuable_on": 1684140309,
       "certs_received": {
@@ -189521,11 +193440,12 @@
         "patbal": 1711499359,
         "Estellea": 1716698598,
         "NadineGS": 1748708985,
+        "alex": 1757479631,
         "KKouette": 1713074815,
         "Kaya971Wolf": 1743651380,
         "MireilleTouet": 1743216490,
         "Annie31": 1747370750,
-        "psycotox80": 1699430986
+        "psycotox80": 1756777217
       }
     },
     "Chlea2010": {
@@ -189535,22 +193455,14 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1635518991,
       "certs_received": {
-        "JeromeCastel": 1693967059,
-        "ikkyu": 1693967059,
-        "AlaskaGrey": 1694055586,
-        "Numerosympa": 1696215946,
-        "Maquilleuse": 1693967059,
-        "Sousoutsonga": 1696215946,
-        "EleaLAROSE": 1696221804,
         "dondiego78": 1703250798,
-        "RoxaneCastel": 1693967059,
         "Lando": 1698777628
       }
     },
     "jasonstatom": {
       "index": 7703,
       "owner_key": "Gpm7zze5nLjedmHBEXQDFT8HGUyiHVK6evkWKheC5cPJ",
-      "balance": 353456,
+      "balance": 393142,
       "membership_expire_on": 1722867410,
       "next_cert_issuable_on": 1666252012,
       "certs_received": {
@@ -189580,7 +193492,7 @@
     "vincentreynaud": {
       "index": 7758,
       "owner_key": "GptTUdAfLpj6UsNQLuaQDw1uxiEX8ZthwgHhV1oCK9gB",
-      "balance": 466029,
+      "balance": 505715,
       "membership_expire_on": 1712971150,
       "next_cert_issuable_on": 1675069816,
       "certs_received": {
@@ -189595,13 +193507,14 @@
     "MimiPAQ": {
       "index": 10304,
       "owner_key": "Gpz85oDMtr3eQxxp4xZPs2DF3KAmoBt5NKxwGm7ZQXx1",
-      "balance": 400454,
+      "balance": 402140,
       "membership_expire_on": 1723977268,
-      "next_cert_issuable_on": 1688465816,
+      "next_cert_issuable_on": 1695512896,
       "certs_received": {
         "Tchois": 1731357344,
         "LeaSLV": 1729841787,
         "Permaor": 1730315484,
+        "KrisNissa": 1756921807,
         "Centifolia": 1729350765,
         "PorteduCiel": 1729125794,
         "Tchara06": 1729053958,
@@ -189612,21 +193525,22 @@
     "Vincemard": {
       "index": 11244,
       "owner_key": "Gq16D4yK6SYtYbBpzTKT3wQGC2eYCwqkMgEZYTMij6Bs",
-      "balance": 491860,
+      "balance": 531546,
       "membership_expire_on": 1704214877,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694836984,
       "certs_received": {
         "Lune": 1736629043,
         "Gnostique34": 1736586049,
         "Val34": 1736995089,
         "LelievreJulia": 1736629043,
+        "Bricalie": 1757269629,
         "Melwin": 1736629043
       }
     },
     "MicheleMaton": {
       "index": 12479,
       "owner_key": "Gq2RPmh1ZQu9G4dEzzGgn3hCVW2FNbGUHWbxmXqZ8mbR",
-      "balance": 108300,
+      "balance": 133486,
       "membership_expire_on": 1714149860,
       "next_cert_issuable_on": 1689951879,
       "certs_received": {
@@ -189646,7 +193560,7 @@
     "GojiBerry": {
       "index": 9514,
       "owner_key": "GqBEfaW9mjTQkVK17JCqFPjJqH15z1TRYJUvkVUYsP6b",
-      "balance": 167374,
+      "balance": 202060,
       "membership_expire_on": 1722129329,
       "next_cert_issuable_on": 1691402988,
       "certs_received": {
@@ -189659,6 +193573,7 @@
         "lolicirera": 1749024966,
         "yoelijomivida": 1733968772,
         "Performance": 1725667238,
+        "Guiri": 1759553546,
         "kin55puravida": 1730605686,
         "MaEstherG1": 1725929517,
         "SharonPeregrina": 1725841547,
@@ -189678,7 +193593,7 @@
     "Lei": {
       "index": 7990,
       "owner_key": "GqFFiUNEVjJ8LPzQ9GaceQ3tQ2FPQMrVeh6sF1YAn313",
-      "balance": 273658,
+      "balance": 313344,
       "membership_expire_on": 1711042152,
       "next_cert_issuable_on": 1674834397,
       "certs_received": {
@@ -189705,9 +193620,9 @@
     "OrAnge": {
       "index": 4815,
       "owner_key": "GqNZ5en7hmG5WbcksQemhz6fe3G8ZwEuspgZYEiWeykF",
-      "balance": 1248045,
+      "balance": 1471031,
       "membership_expire_on": 1702914585,
-      "next_cert_issuable_on": 1692097715,
+      "next_cert_issuable_on": 1696392056,
       "certs_received": {
         "Lol": 1716336076,
         "Ninamaste": 1725320022,
@@ -189728,7 +193643,6 @@
         "gervez": 1746774163,
         "Miaou": 1750656337,
         "Beacouleurs": 1749523485,
-        "lumiere34": 1696192735,
         "Nirma": 1701640432,
         "MikaNanda": 1754075439,
         "Djelan007": 1728594552,
@@ -189757,7 +193671,7 @@
     "Jazzy620": {
       "index": 11888,
       "owner_key": "GqREpGxBMQBuWtzvJnwMwtAsAVYkr1euAq2wTJ7YRFKp",
-      "balance": 197269,
+      "balance": 236955,
       "membership_expire_on": 1709236213,
       "next_cert_issuable_on": 1680575214,
       "certs_received": {
@@ -189774,7 +193688,7 @@
     "maritigrette": {
       "index": 10040,
       "owner_key": "GqXR4799xCuLfhgdu36hNeHXAeRZiq171ow8B2gpHjeP",
-      "balance": 429697,
+      "balance": 469383,
       "membership_expire_on": 1721768374,
       "next_cert_issuable_on": 1672302842,
       "certs_received": {
@@ -189789,9 +193703,9 @@
     "mio": {
       "index": 13335,
       "owner_key": "GqeBJ5keWXbgmgTAUt53Bf6qxcGmirks4WhZuFE66kQ5",
-      "balance": 139564,
+      "balance": 179250,
       "membership_expire_on": 1719544394,
-      "next_cert_issuable_on": 1692985963,
+      "next_cert_issuable_on": 1693238560,
       "certs_received": {
         "Yannis": 1752270783,
         "StephaneDunNotreMonde": 1754452297,
@@ -189808,7 +193722,7 @@
     "Tonyvbo": {
       "index": 7171,
       "owner_key": "GqjqZoJFoDPC8EtxDHCiYpxs9cRnkZGg2myknPjvYFfg",
-      "balance": 552477,
+      "balance": 592163,
       "membership_expire_on": 1707499237,
       "next_cert_issuable_on": 1657621882,
       "certs_received": {
@@ -189823,10 +193737,11 @@
     "AnaIsis7animais": {
       "index": 12885,
       "owner_key": "GqnWQvKaqk4CyV26VwfDf7hqfpbQEAJg6tjjQ8qsHST8",
-      "balance": 89372,
+      "balance": 129058,
       "membership_expire_on": 1717208485,
-      "next_cert_issuable_on": 1687257315,
+      "next_cert_issuable_on": 1695224775,
       "certs_received": {
+        "Ferpires": 1757239043,
         "anapatapouf": 1748859380,
         "SunderSimranSingh": 1749797976,
         "InesHappyFamily": 1748795248,
@@ -189870,12 +193785,12 @@
     "MuseaudeLievre": {
       "index": 5938,
       "owner_key": "Gr1g6i4PkCBfTwU1KwfL1qn9KyqLJ3yuqTer8dgju4nJ",
-      "balance": 781692,
-      "membership_expire_on": 0,
+      "balance": 773358,
+      "membership_expire_on": 1726349439,
       "next_cert_issuable_on": 1651823799,
       "certs_received": {
         "Wilouchou": 1753566673,
-        "Lulu31Verfeil": 1698196357,
+        "Lulu31Verfeil": 1758241281,
         "Juju2pom": 1705641103,
         "Hectonath": 1714258435,
         "lesrivagesdelescure": 1710655883,
@@ -189888,7 +193803,7 @@
         "ji_emme": 1698386043,
         "Loulou13": 1705205934,
         "Klerkival": 1698264151,
-        "LeoLiens": 1697952424,
+        "LeoLiens": 1758404523,
         "VeroniqueB": 1714898204,
         "RoxyScribe": 1716182216,
         "Etoile123": 1708831910,
@@ -189900,7 +193815,7 @@
     "Perrin6": {
       "index": 12817,
       "owner_key": "GrDZb2f9NbHoqWPJK4Wf23LFw5uosx2bLPyraxzEpGxp",
-      "balance": 92916,
+      "balance": 132602,
       "membership_expire_on": 1714944594,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -189914,7 +193829,7 @@
     "Solveig": {
       "index": 7443,
       "owner_key": "GrKps6W7HXaWt6QigS6qczQanKwJgZ6zpWaGZZcMts7w",
-      "balance": 620857,
+      "balance": 660543,
       "membership_expire_on": 1704940143,
       "next_cert_issuable_on": 1690112957,
       "certs_received": {
@@ -189936,13 +193851,14 @@
     "Guillermo": {
       "index": 5491,
       "owner_key": "GrTPmC499TLFMVfqHvq9n2DmuL3bh4VHA8RsaKsffiZ3",
-      "balance": 549329,
+      "balance": 589015,
       "membership_expire_on": 1701284300,
       "next_cert_issuable_on": 1684049549,
       "certs_received": {
         "FredTahiti": 1750570763,
         "Cathou": 1751171809,
         "SyoulAnuanua": 1748814940,
+        "olive2ola": 1757380300,
         "ZizouTP": 1749513760,
         "MarieLavraie": 1747090868,
         "Louisjordi": 1744869694,
@@ -189952,7 +193868,7 @@
     "Agnes26": {
       "index": 10805,
       "owner_key": "GrWNtgNaF4VdkNE1eKJFfKsoPhvw4Z8zgHZMWv8M9aBb",
-      "balance": 279025,
+      "balance": 318711,
       "membership_expire_on": 1701989122,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -189976,9 +193892,9 @@
     "Puravida": {
       "index": 8016,
       "owner_key": "GrgTb9vBrw7oz7t32cj4j6MH51MixgUK1QRgqgqX1RmX",
-      "balance": 1576223,
+      "balance": 1474009,
       "membership_expire_on": 1711560160,
-      "next_cert_issuable_on": 1693009718,
+      "next_cert_issuable_on": 1696142559,
       "certs_received": {
         "Rebel": 1739900699,
         "Alfybe": 1714890232,
@@ -189992,6 +193908,7 @@
         "labradorite": 1755216344,
         "Avalon": 1730250310,
         "MarieBertheRanwet": 1727582211,
+        "Sisi": 1757525119,
         "phil3455": 1725682406,
         "Mesange": 1715142788,
         "GeraldS": 1756025825,
@@ -190002,7 +193919,8 @@
         "juliettesemilla": 1714874786,
         "Petfa": 1714947277,
         "Mabize": 1730241386,
-        "LouanG": 1733639821
+        "LouanG": 1733639821,
+        "Susheela": 1759207151
       }
     },
     "Oriane": {
@@ -190016,7 +193934,7 @@
     "B_ene": {
       "index": 12006,
       "owner_key": "GrhUnN1LxtWg6YAh2cKU5khBYqmijuLtHRcXiJ9hGCx6",
-      "balance": 279379,
+      "balance": 319065,
       "membership_expire_on": 1705976174,
       "next_cert_issuable_on": 1679131706,
       "certs_received": {
@@ -190032,7 +193950,7 @@
     "AnaPires": {
       "index": 12891,
       "owner_key": "GriitgHn5o7kRE7XPTavPWhiYo3YELoV9YU9PEWv5dUu",
-      "balance": 91304,
+      "balance": 130990,
       "membership_expire_on": 1718211002,
       "next_cert_issuable_on": 1689235783,
       "certs_received": {
@@ -190048,8 +193966,8 @@
     "VeroPointeNoire": {
       "index": 6768,
       "owner_key": "Grkv6mU9QCKUbcdjf13pEJUYmSWWWArRVhuQfaAhHoLc",
-      "balance": 328789,
-      "membership_expire_on": 1700772009,
+      "balance": 394087,
+      "membership_expire_on": 1727929506,
       "next_cert_issuable_on": 1684819162,
       "certs_received": {
         "SalinJL": 1712796747,
@@ -190074,15 +193992,17 @@
     "Thiery": {
       "index": 13052,
       "owner_key": "GruhbdXi7bEWj9wC4ju9eQhZc5kMaM3VZeozJxeaqWBE",
-      "balance": 41214,
+      "balance": 116272,
       "membership_expire_on": 1715977119,
-      "next_cert_issuable_on": 1693185787,
+      "next_cert_issuable_on": 1696501793,
       "certs_received": {
         "HelloSunshine": 1751369581,
         "Cristal38": 1751336431,
         "MyleneBN": 1751401860,
         "catmac": 1754962657,
         "Walter2000": 1754950301,
+        "Colaga": 1758784295,
+        "Merlinor": 1758842321,
         "armunia": 1751313450,
         "Mashpro": 1751364288
       }
@@ -190090,7 +194010,7 @@
     "Tourmaline": {
       "index": 12460,
       "owner_key": "Gs2t8pcKmArepCN9Wymk1EEd6GZqqpEnjpudbCFi8Lta",
-      "balance": 125636,
+      "balance": 165322,
       "membership_expire_on": 1712240236,
       "next_cert_issuable_on": 1686753911,
       "certs_received": {
@@ -190113,7 +194033,7 @@
     "DOr": {
       "index": 5882,
       "owner_key": "Gs9niqHWCQaqvV7tQPbLzcY8G4cFWmMbht8G2nmkYJXk",
-      "balance": 741805,
+      "balance": 791491,
       "membership_expire_on": 1721668877,
       "next_cert_issuable_on": 1692373277,
       "certs_received": {
@@ -190153,7 +194073,7 @@
     "AnneLys": {
       "index": 11949,
       "owner_key": "GsCipuV4HkBWwaM3yfL4Bu6zhUTYQUmQ8fTiRd4UR8rE",
-      "balance": 190674,
+      "balance": 230360,
       "membership_expire_on": 1709481658,
       "next_cert_issuable_on": 1686030571,
       "certs_received": {
@@ -190168,7 +194088,7 @@
     "AliceCV": {
       "index": 11022,
       "owner_key": "GsGLaGX8aaKPAnZHKuKPqcaQtpYpwQmPJK9YYLhBybHG",
-      "balance": 268040,
+      "balance": 307726,
       "membership_expire_on": 1702314508,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -190182,7 +194102,7 @@
     "Natalia12": {
       "index": 9170,
       "owner_key": "GsHkhaqUbBsoRzJpSF8VFdYoJMaePxVARrqivKFtL593",
-      "balance": 198421,
+      "balance": 213107,
       "membership_expire_on": 1719790516,
       "next_cert_issuable_on": 1688729872,
       "certs_received": {
@@ -190211,18 +194131,13 @@
     "Jerome55": {
       "index": 5806,
       "owner_key": "GsVhUZhxJAapMpe82iyLnh2BLzSdY1rujDrq2uUeTZUB",
-      "balance": 735367,
-      "membership_expire_on": 1720452362,
-      "next_cert_issuable_on": 1649313915,
+      "balance": 1475709,
+      "membership_expire_on": 0,
+      "next_cert_issuable_on": 1695126904,
       "certs_received": {
-        "IsabelleGlorian": 1696186765,
-        "Pascaleg": 1696209606,
-        "CClement": 1696209606,
-        "liberte55": 1697619665,
+        "liberte55": 1758170717,
         "Lydiabloch": 1697002079,
-        "FatimaMIEL51": 1696216517,
-        "letoilebleue": 1696273405,
-        "hypericum": 1696757061
+        "hypericum": 1758563191
       }
     },
     "Anna": {
@@ -190257,7 +194172,7 @@
     "grivemusicienne": {
       "index": 10950,
       "owner_key": "Gt7hNrffRQh2dEDoSGECgDWjF3R6rvnwxM96tiDtoQ81",
-      "balance": 279394,
+      "balance": 319080,
       "membership_expire_on": 1702419943,
       "next_cert_issuable_on": 1690185413,
       "certs_received": {
@@ -190273,7 +194188,7 @@
     "Malohi": {
       "index": 1146,
       "owner_key": "GtCFUJhWcZwwgDZeAfngznva8koXG9TYAWivgz15CLJh",
-      "balance": 1968044,
+      "balance": 2007730,
       "membership_expire_on": 1704914935,
       "next_cert_issuable_on": 1688621930,
       "certs_received": {
@@ -190289,7 +194204,7 @@
     "BRENNOS": {
       "index": 10517,
       "owner_key": "GtEc6NvWuMyBf4umKVFpqHX1cvGzmd3WM9CmMFpTCxRy",
-      "balance": 385228,
+      "balance": 424914,
       "membership_expire_on": 1700941006,
       "next_cert_issuable_on": 1687487018,
       "certs_received": {
@@ -190319,7 +194234,7 @@
     "Juventini": {
       "index": 4422,
       "owner_key": "GtUvTbu7TabagqnCYP3BZPRuRYftHG1h6WaxkZnjNRyn",
-      "balance": 1022456,
+      "balance": 1089092,
       "membership_expire_on": 1721678075,
       "next_cert_issuable_on": 1690192475,
       "certs_received": {
@@ -190334,7 +194249,7 @@
     "PascaleCristal34": {
       "index": 10760,
       "owner_key": "GtYMU4UHSqcWi6EQ49TAHx8cYjb1Ew8eQGnRcxfxtQHY",
-      "balance": 416202,
+      "balance": 455888,
       "membership_expire_on": 1700584358,
       "next_cert_issuable_on": 1674058428,
       "certs_received": {
@@ -190353,7 +194268,7 @@
     "Teddy": {
       "index": 7136,
       "owner_key": "Gtb2ZdExasMQzRca9LkbwctjnFJ6bzLESBMbPHVX24BF",
-      "balance": 425603,
+      "balance": 447289,
       "membership_expire_on": 1705854648,
       "next_cert_issuable_on": 1681272461,
       "certs_received": {
@@ -190371,9 +194286,9 @@
     "DaRocha": {
       "index": 12315,
       "owner_key": "GtbdsyYtxR97EKJJQXGjETXRtnUouoi5tBonrQUBDCpB",
-      "balance": 98656,
+      "balance": 138342,
       "membership_expire_on": 1707855250,
-      "next_cert_issuable_on": 1692894966,
+      "next_cert_issuable_on": 1693786830,
       "certs_received": {
         "Jeniii": 1747271284,
         "CoraRose": 1750528939,
@@ -190407,12 +194322,11 @@
     "Rophann": {
       "index": 2060,
       "owner_key": "Gthwai8JPJWG5ofy86W2qEUZJqmpM1oUrw4TfZSxa4Ss",
-      "balance": 1600860,
-      "membership_expire_on": 1698232824,
+      "balance": 1611540,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1667354256,
       "certs_received": {
         "CelineThiebaut": 1721551343,
-        "MoulinMuriel": 1694413624,
         "ChristopheRobine": 1740071650,
         "Miaou": 1721551343,
         "OLDBLACK84": 1728104554
@@ -190421,7 +194335,7 @@
     "AH2020": {
       "index": 10695,
       "owner_key": "Gtka7jSvUY1azmfydbsVf5PXtJDLkEmovMpJ8gYyNBRs",
-      "balance": 281338,
+      "balance": 321024,
       "membership_expire_on": 1700692572,
       "next_cert_issuable_on": 1671122610,
       "certs_received": {
@@ -190435,9 +194349,9 @@
     "aubrunjeanclaude": {
       "index": 2607,
       "owner_key": "GtngbKcczaFi9utQDbKbjw4QupMsuCqeqZAdNMYKReQv",
-      "balance": 1685627,
+      "balance": 1725313,
       "membership_expire_on": 1713473659,
-      "next_cert_issuable_on": 1676165149,
+      "next_cert_issuable_on": 1696251709,
       "certs_received": {
         "CatherineSengel": 1702970015,
         "EricPetit": 1720584844,
@@ -190449,19 +194363,18 @@
         "Lieudiere": 1702550317,
         "mabboux": 1739756095,
         "GenevieveLagrange": 1719435520,
-        "YanickChareille": 1695707139
+        "YanickChareille": 1758437875
       }
     },
     "ecano": {
       "index": 2000,
       "owner_key": "Gu5n2SurwVs5NamfwStKzYjDJwiAM1QBbuNeKCHdEwbD",
-      "balance": 669416,
-      "membership_expire_on": 1695329486,
+      "balance": 709102,
+      "membership_expire_on": 1726595549,
       "next_cert_issuable_on": 1692950486,
       "certs_received": {
         "clemlamalice": 1717314846,
         "JulienM": 1704615270,
-        "LaureFemmeVanne": 1696233735,
         "fluidlog": 1706563587,
         "stephanechevreau": 1705898416,
         "NordineVallas": 1705192314,
@@ -190476,9 +194389,9 @@
     "Nina13": {
       "index": 13016,
       "owner_key": "Gu7vBCAMXLX8zSVjwsfwARcpeaTa14WRMdXqC1u83KQY",
-      "balance": 100608,
+      "balance": 140294,
       "membership_expire_on": 1718279342,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693865198,
       "certs_received": {
         "Bea813": 1749839210,
         "Guenoel": 1749839210,
@@ -190491,12 +194404,13 @@
     "Fanou": {
       "index": 10265,
       "owner_key": "Gu8hRgbRn7AGVbeEeC5YjD6dhM2BsPGhdx3ZsrXs3sRM",
-      "balance": 373872,
-      "membership_expire_on": 1695175821,
+      "balance": 412490,
+      "membership_expire_on": 1726783904,
       "next_cert_issuable_on": 1675329116,
       "certs_received": {
         "Jeratik": 1729135050,
         "Chago": 1726792810,
+        "IsabelleP": 1758562403,
         "Chtmosaik": 1738861373,
         "Denfertdecordes": 1731208627,
         "mathieuBize": 1729035554,
@@ -190508,7 +194422,7 @@
     "Marifu": {
       "index": 11390,
       "owner_key": "GuEJJjDCuw5XXuh1faot42zmrwdWUjbpXHVvkpyD1BjM",
-      "balance": 430152,
+      "balance": 481338,
       "membership_expire_on": 1706476825,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -190531,7 +194445,7 @@
     "Emille974": {
       "index": 4265,
       "owner_key": "GuJgg7HkRrZkQF58kFPduQetLwySdYb7s6npLDonYYHt",
-      "balance": 1030541,
+      "balance": 1050227,
       "membership_expire_on": 1719448058,
       "next_cert_issuable_on": 1690362547,
       "certs_received": {
@@ -190540,15 +194454,13 @@
         "BabethMangas": 1734137582,
         "ClaireM97410": 1751552833,
         "frantzsury": 1751503715,
-        "KM974": 1694647686,
-        "AnnL": 1732201892,
-        "Galuel": 1693625223
+        "AnnL": 1732201892
       }
     },
     "Laet29": {
       "index": 11592,
       "owner_key": "GuQ8EXgxNtrsXhzvpPX8RTSR4NR7BHnXpwQtuH5Cuwzu",
-      "balance": 213267,
+      "balance": 252953,
       "membership_expire_on": 1707664590,
       "next_cert_issuable_on": 1676641023,
       "certs_received": {
@@ -190567,13 +194479,13 @@
     "Remy": {
       "index": 3286,
       "owner_key": "GuQTzJ9oyRFif3HLWRRr3imQcMomWJG9d3wRWmjUYAsh",
-      "balance": 104876,
+      "balance": 144562,
       "membership_expire_on": 1715342090,
-      "next_cert_issuable_on": 1664185967,
+      "next_cert_issuable_on": 1695006641,
       "certs_received": {
         "Josephine61": 1727290938,
         "Yoham24": 1698559540,
-        "LENOU61": 1698748305,
+        "LENOU61": 1758050089,
         "Brandy57": 1700615056,
         "EvaLM": 1702174046,
         "Sylv12": 1754257819,
@@ -190583,7 +194495,7 @@
     "Drako": {
       "index": 9678,
       "owner_key": "GuUjtq7Sr3DzMP7rxEGiCeSQj6oCCNPfUReL8pNfZsff",
-      "balance": 363186,
+      "balance": 368872,
       "membership_expire_on": 1721773278,
       "next_cert_issuable_on": 1681129043,
       "certs_received": {
@@ -190610,7 +194522,7 @@
     "canardo": {
       "index": 12280,
       "owner_key": "GuX9PhYfS3ddisFawDrZFr6oEnn5nvv4v9Mv2JCQVjU2",
-      "balance": 139560,
+      "balance": 179246,
       "membership_expire_on": 1712439231,
       "next_cert_issuable_on": 1685701134,
       "certs_received": {
@@ -190624,7 +194536,7 @@
     "PasMoi": {
       "index": 4490,
       "owner_key": "GuXu1dQGuD6j3BKm7QEi716J4adqT4yqHmjtyAm3o9oH",
-      "balance": 1113547,
+      "balance": 1153233,
       "membership_expire_on": 1699146571,
       "next_cert_issuable_on": 1677945137,
       "certs_received": {
@@ -190632,9 +194544,7 @@
         "Pivoine": 1732064027,
         "Ded": 1718604240,
         "adrien_berthel": 1733444484,
-        "Sunrise": 1693980055,
         "batata": 1733385147,
-        "letoilebleue": 1694497719,
         "hypericum": 1752140337,
         "Parhit": 1732492249
       }
@@ -190642,7 +194552,7 @@
     "beatriceviel": {
       "index": 112,
       "owner_key": "GudqRDfrUYfweHkbscitHiJTBL3UMYejKu3Us4kP3ds9",
-      "balance": 1038215,
+      "balance": 1077901,
       "membership_expire_on": 1701262424,
       "next_cert_issuable_on": 1651891334,
       "certs_received": {
@@ -190656,7 +194566,7 @@
     "Lailaine971": {
       "index": 12819,
       "owner_key": "GuiUVMVi22AKjc1QXkXMTLVcoUd6VmEanv4gMeTrcuPv",
-      "balance": 87916,
+      "balance": 127602,
       "membership_expire_on": 1716154398,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -190679,15 +194589,16 @@
     "SylvieSpielmann": {
       "index": 6936,
       "owner_key": "Gurg8KdRF8wepPvH5b77MamLUC7JvNey8cyL6y3gu1qV",
-      "balance": 9807011,
+      "balance": 10163797,
       "membership_expire_on": 1705979880,
-      "next_cert_issuable_on": 1687952164,
+      "next_cert_issuable_on": 1695647606,
       "certs_received": {
         "hibiscus11": 1729039666,
         "nashira": 1719528122,
         "DanWF": 1707509840,
         "FenderChristophe": 1717551607,
         "danielbo": 1736369198,
+        "Dorf67": 1756855687,
         "jeanclauderateau": 1712621500,
         "ENO": 1707369290,
         "Fabrice_T": 1727735635,
@@ -190697,6 +194608,7 @@
         "hazed": 1707431321,
         "DanJoue": 1752720711,
         "Manebaz": 1749962794,
+        "seb2nor12": 1758235093,
         "FranZi": 1719130132,
         "letoilebleue": 1707534388,
         "hypericum": 1707469809,
@@ -190712,7 +194624,7 @@
     "Nouna": {
       "index": 11820,
       "owner_key": "GuscF39MAWkyuiEQHem2aDJwSW1vwdshaNdxxbgQ25Bg",
-      "balance": 225264,
+      "balance": 264950,
       "membership_expire_on": 1708721123,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -190734,11 +194646,11 @@
     "Peixospili": {
       "index": 6368,
       "owner_key": "GvJfRCCGt6LhbUcqqxWTtzqvJ1iNhT1eSVdDpfgRSqR9",
-      "balance": 576966,
+      "balance": 624395,
       "membership_expire_on": 1724112899,
       "next_cert_issuable_on": 1688372111,
       "certs_received": {
-        "arbocenc": 1701215081,
+        "arbocenc": 1758983862,
         "sheveck": 1701686849,
         "lanuria": 1718136925,
         "Danielagn": 1703046326,
@@ -190753,9 +194665,9 @@
     "maitala": {
       "index": 7722,
       "owner_key": "GvTos7PuwNYWTzenY68ABRaCZnWi6X4rGi3KFEiWUoLJ",
-      "balance": 447386,
+      "balance": 482072,
       "membership_expire_on": 1709601314,
-      "next_cert_issuable_on": 1692665904,
+      "next_cert_issuable_on": 1695041881,
       "certs_received": {
         "Mika90": 1720773320,
         "Philippe26": 1713330966,
@@ -190779,7 +194691,7 @@
     "Nadou": {
       "index": 67,
       "owner_key": "GvYqNcp3rB7vYrZ7MmY1BFFC911woju8To9Nshriryyb",
-      "balance": 341957,
+      "balance": 381643,
       "membership_expire_on": 1710080065,
       "next_cert_issuable_on": 1687784550,
       "certs_received": {
@@ -190813,7 +194725,6 @@
         "Yanoc": 1732490596,
         "ulu": 1736133794,
         "Margauxgau": 1717344603,
-        "Cathy31": 1695441726,
         "Marionrosa": 1713116117,
         "hocine": 1699079270,
         "Koldo": 1725256684,
@@ -190835,9 +194746,9 @@
     "pampermacole": {
       "index": 3612,
       "owner_key": "GvhAwkAaUAjXqm3kstNnoXEYpFr4tw1MZNa4rZLtKQeb",
-      "balance": 351026,
-      "membership_expire_on": 1698019121,
-      "next_cert_issuable_on": 1690946789,
+      "balance": 430212,
+      "membership_expire_on": 1725786500,
+      "next_cert_issuable_on": 1696079003,
       "certs_received": {
         "Boris974": 1702492087,
         "Michel97414": 1729614845,
@@ -190846,11 +194757,10 @@
         "Vanessa974": 1697928328,
         "Chris08": 1708096024,
         "Phil7": 1719543408,
-        "Laetitia97421": 1696676289,
         "BabethMangas": 1726851805,
         "ClaireM97410": 1730323016,
         "Celine974": 1700946353,
-        "NnattNature": 1695530244,
+        "NnattNature": 1756758573,
         "Cindy974": 1721081101,
         "Grandmerekal": 1731336707,
         "gabyjoce974": 1731105485,
@@ -190887,7 +194797,7 @@
     "BaniKrban": {
       "index": 10525,
       "owner_key": "GvknFDxYc3Q6Ak9GkKM3QqrHqKxg6mwwJ3KLsXAzP9Kz",
-      "balance": 48596,
+      "balance": 88382,
       "membership_expire_on": 1697114749,
       "next_cert_issuable_on": 1677503735,
       "certs_received": {
@@ -190905,12 +194815,13 @@
     "JacquesGaetan": {
       "index": 7531,
       "owner_key": "GvnuAdQv2WQMCmAXWY2YKrenNZoy7aK3uuvHHRLhk6Y",
-      "balance": 465200,
+      "balance": 504886,
       "membership_expire_on": 1707485343,
       "next_cert_issuable_on": 1687439891,
       "certs_received": {
         "CricriNM": 1712042176,
         "ChamAnne": 1731658248,
+        "AnnC57": 1758275697,
         "DelphineG": 1712022031,
         "NatNaelle": 1712088912,
         "Jesuisnaja": 1734906768,
@@ -190921,8 +194832,8 @@
     "Antares": {
       "index": 10615,
       "owner_key": "GvrWCcyCbasjh8UhuunEJQV48vX5sv6VDoqbEKP6kogx",
-      "balance": 1208328,
-      "membership_expire_on": 1700598436,
+      "balance": 1198014,
+      "membership_expire_on": 1727536457,
       "next_cert_issuable_on": 1679638993,
       "certs_received": {
         "arbocenc": 1732351551,
@@ -190942,7 +194853,7 @@
     "wawrzysteph": {
       "index": 10831,
       "owner_key": "GvwLBStr6cTBAwRmdW8ezvvyWQTMbaMiFg2p7MhPmDe",
-      "balance": 284660,
+      "balance": 324346,
       "membership_expire_on": 1701007835,
       "next_cert_issuable_on": 1690772792,
       "certs_received": {
@@ -190956,7 +194867,7 @@
     "marcdibi": {
       "index": 4317,
       "owner_key": "Gw6M8U1bmThtxmwJXdsggWSnwgHDUJLLvQjtrGHarQht",
-      "balance": 613763,
+      "balance": 653449,
       "membership_expire_on": 1700682011,
       "next_cert_issuable_on": 1679195530,
       "certs_received": {
@@ -190987,7 +194898,7 @@
     "Menez20100": {
       "index": 8799,
       "owner_key": "Gw9EBq9b7czhL8EbWqqp9owTaGbnLfdYK5yy8PSvD95s",
-      "balance": 449638,
+      "balance": 489324,
       "membership_expire_on": 1718588857,
       "next_cert_issuable_on": 1666578833,
       "certs_received": {
@@ -191021,8 +194932,8 @@
     "majunga": {
       "index": 10056,
       "owner_key": "GwGEsvum8L3o9cC3oA9rzuiFVsXris28dcJaKQNUTLFP",
-      "balance": 336875,
-      "membership_expire_on": 1697985706,
+      "balance": 423561,
+      "membership_expire_on": 1727478754,
       "next_cert_issuable_on": 1684835519,
       "certs_received": {
         "DCat": 1729704692,
@@ -191036,7 +194947,7 @@
     "lakshmi": {
       "index": 11441,
       "owner_key": "GwMhvut4cogesfeUuPWD2YEHioVHsVkpFLxkzKnCiXUN",
-      "balance": 108137,
+      "balance": 147823,
       "membership_expire_on": 1706539019,
       "next_cert_issuable_on": 1685938053,
       "certs_received": {
@@ -191053,7 +194964,7 @@
     "Anaapisair": {
       "index": 12111,
       "owner_key": "GwSAmurPJ4cRqhgZzxfC9f67g8RWBHR2KudD7Nb3FPty",
-      "balance": 183280,
+      "balance": 222966,
       "membership_expire_on": 1711245511,
       "next_cert_issuable_on": 1682092743,
       "certs_received": {
@@ -191069,7 +194980,7 @@
     "Didine": {
       "index": 3817,
       "owner_key": "GwXqW2cZEDXPvLratRCQctc5QcNqQPnRaQVDPXSP5t7c",
-      "balance": 1136101,
+      "balance": 1175787,
       "membership_expire_on": 1716919002,
       "next_cert_issuable_on": 1685433402,
       "certs_received": {
@@ -191090,8 +195001,8 @@
     "Esteban": {
       "index": 9965,
       "owner_key": "GwandyoF7VAjpGVrArHXU8YaQeNX53a5YVQ1jq8GDvxJ",
-      "balance": 358229,
-      "membership_expire_on": 1696162076,
+      "balance": 391447,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1667592697,
       "certs_received": {
         "jyde": 1727728036,
@@ -191105,8 +195016,8 @@
     "Manae38": {
       "index": 10297,
       "owner_key": "GwdJeMhBiQmPjKFyPqLniUDG9sH5PnuYJrn4BsmYaEbK",
-      "balance": 311754,
-      "membership_expire_on": 1698501077,
+      "balance": 351440,
+      "membership_expire_on": 1727611196,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Mike": 1730403093,
@@ -191134,10 +195045,11 @@
     "NobrunNATUREL": {
       "index": 7068,
       "owner_key": "Gwfm454WgksqvaJHzb36RNBhJigsxi1skfVWL47ctrhe",
-      "balance": 354236,
+      "balance": 452662,
       "membership_expire_on": 1718918200,
       "next_cert_issuable_on": 1648876838,
       "certs_received": {
+        "Anthonycormier": 1757130746,
         "steve": 1706062350,
         "SAPHO49": 1707537446,
         "Barbarie-Crespin": 1751226042,
@@ -191149,14 +195061,13 @@
     "YanickChareille": {
       "index": 116,
       "owner_key": "GwhyPg6tiESpArzQ2oXXNq7aHPFwBHxp21Eqkf2fvRQV",
-      "balance": 1103776,
+      "balance": 958916,
       "membership_expire_on": 1724445228,
-      "next_cert_issuable_on": 1681268932,
+      "next_cert_issuable_on": 1695394675,
       "certs_received": {
         "StephanieN": 1742178406,
         "FarcyAdeline": 1730409165,
         "EricPetit": 1711840163,
-        "theresecaillere": 1696545849,
         "Gerard61": 1740028726,
         "maryline61": 1707332531,
         "GaelleLC": 1732160525,
@@ -191171,7 +195082,7 @@
         "Ely81": 1740290719,
         "llecoeur": 1727821711,
         "Albassierseverine": 1754620056,
-        "aubrunjeanclaude": 1695697013,
+        "aubrunjeanclaude": 1758091707,
         "Gentcat": 1743289268,
         "VincentRessel": 1727825650,
         "MicheleChaplain": 1722924914,
@@ -191181,9 +195092,9 @@
     "Piraculteur": {
       "index": 3905,
       "owner_key": "GwiG1wyTNvXBwjXdhxhpEKExc94aCr34uVRkyeD5mtJx",
-      "balance": 1553734,
+      "balance": 1647520,
       "membership_expire_on": 1705281428,
-      "next_cert_issuable_on": 1686055728,
+      "next_cert_issuable_on": 1695651548,
       "certs_received": {
         "Julia": 1743994708,
         "Rachele": 1721271320,
@@ -191191,20 +195102,15 @@
         "djam": 1703561695,
         "Freemel": 1704386035,
         "Helenep": 1728810298,
-        "Caropirate": 1696212298,
         "JerryBB": 1727724941,
         "Coco-B": 1723690665,
-        "CitizenFour": 1695966579,
-        "hommepoirier": 1694247076,
-        "Joailes38": 1693849051,
-        "LeoLeo": 1694554119,
         "AurelieColadon": 1698273681,
         "Kheoppe": 1723087423,
         "Zombor31": 1727319190,
         "Dekoakonkoz": 1722587282,
         "Papy89": 1720984008,
         "Permapote": 1723087119,
-        "ClementineLaborderie": 1696038082,
+        "Pirataquante": 1758695696,
         "Hera": 1723087423,
         "hocine": 1733916347,
         "lovol": 1748477203,
@@ -191225,7 +195131,7 @@
     "mariepaule": {
       "index": 12166,
       "owner_key": "GwtNSm33w9XP2cAoVM2ei11aazhu1CAwRHUpSmkQPXwS",
-      "balance": 165640,
+      "balance": 205326,
       "membership_expire_on": 1711474131,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -191241,8 +195147,8 @@
     "FissinaDembele": {
       "index": 4211,
       "owner_key": "Gx7yF277QkjzCHJMMxdhdduhBMbGf3zui28wBCFfm3tn",
-      "balance": 637508,
-      "membership_expire_on": 1696261998,
+      "balance": 671804,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1658079643,
       "certs_received": {
         "MHaM": 1721083200,
@@ -191255,7 +195161,7 @@
     "TomChereau": {
       "index": 3877,
       "owner_key": "GxBTEc2V86D2YZqVnfJzu6Jmw8Virbmgm6Vcv89gzq2h",
-      "balance": 676671,
+      "balance": 716357,
       "membership_expire_on": 1718099310,
       "next_cert_issuable_on": 1688342954,
       "certs_received": {
@@ -191271,7 +195177,7 @@
     "AurelieDouay": {
       "index": 454,
       "owner_key": "GxFAcPwv5pHsUnyHT2gLr2R1aHeF9HqAiyRLwg5SAvsN",
-      "balance": 970646,
+      "balance": 1010332,
       "membership_expire_on": 1719919709,
       "next_cert_issuable_on": 1688434625,
       "certs_received": {
@@ -191280,7 +195186,6 @@
         "ZazieND": 1728119249,
         "PiNguyen": 1728118627,
         "MinhT": 1716700982,
-        "rosedelumiere": 1693772135,
         "Romain350": 1728120609,
         "juwolf": 1724529676,
         "CharlesNguyen": 1728120267
@@ -191289,11 +195194,10 @@
     "Scapharnaum": {
       "index": 3208,
       "owner_key": "GxLBVXe4jVQjmdaurNNYDWhfxQfqTpemwKotnQBCSw1H",
-      "balance": 975752,
+      "balance": 982188,
       "membership_expire_on": 1717964433,
-      "next_cert_issuable_on": 1683642424,
+      "next_cert_issuable_on": 1694363302,
       "certs_received": {
-        "fullanzer": 1695616797,
         "DanWF": 1707270739,
         "FenderChristophe": 1716656771,
         "helena05": 1724790935,
@@ -191302,7 +195206,6 @@
         "Djan": 1724780207,
         "Flammekueche": 1730316674,
         "FranZi": 1712993164,
-        "letoilebleue": 1694497108,
         "BertrandCGO": 1707292114,
         "Griizous": 1735440314,
         "TimotheeGoguely": 1740621219,
@@ -191313,7 +195216,7 @@
     "Heelou26": {
       "index": 6794,
       "owner_key": "GxLeNZNenhUUtk1MFRhHBA6DbcUk4bSnEvAtVh7MbLfa",
-      "balance": 592167,
+      "balance": 631853,
       "membership_expire_on": 1707923263,
       "next_cert_issuable_on": 1679563980,
       "certs_received": {
@@ -191331,7 +195234,7 @@
     "AngesRio": {
       "index": 10772,
       "owner_key": "GxUSNFuvwR9GnKYGtW9qnn9LZj8YeDMJ21365aQbFWCE",
-      "balance": 356465,
+      "balance": 396151,
       "membership_expire_on": 1700932124,
       "next_cert_issuable_on": 1671739286,
       "certs_received": {
@@ -191346,9 +195249,9 @@
     "Cathy26": {
       "index": 8424,
       "owner_key": "GxWEZrK4KmvLPYtjQpqQgXZ1N3wN3kVdFgakWs3oNW6q",
-      "balance": 322920,
+      "balance": 373787,
       "membership_expire_on": 1712539716,
-      "next_cert_issuable_on": 1692178053,
+      "next_cert_issuable_on": 1696098364,
       "certs_received": {
         "SandrineMala": 1732742753,
         "mluque71": 1720911213,
@@ -191391,16 +195294,18 @@
     "Cobra1974": {
       "index": 9597,
       "owner_key": "GxhAvLofqMCzaoGJ4K51Dnwi3nRC3J7kYHLfmWXUXy9N",
-      "balance": 358832,
+      "balance": 398518,
       "membership_expire_on": 1723909498,
-      "next_cert_issuable_on": 1692419149,
+      "next_cert_issuable_on": 1696554362,
       "certs_received": {
+        "Niranjana": 1759556391,
         "Mianne": 1726698468,
         "MagaliRegent": 1730249012,
         "Sarinette": 1726696423,
         "StephBauer": 1726550283,
         "Casper": 1729645781,
         "Merlinor": 1726698754,
+        "Birby7188": 1759596949,
         "Jadom": 1726620128
       }
     },
@@ -191423,7 +195328,7 @@
     "Joseline": {
       "index": 12458,
       "owner_key": "GxrXEU6R8EDd1Mvu9DaBTLSN2Lcbv6WN2u2DgxCpeSL8",
-      "balance": 135636,
+      "balance": 175322,
       "membership_expire_on": 1713994130,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -191453,7 +195358,7 @@
     "jaclinemontpellier": {
       "index": 13006,
       "owner_key": "GyHh2RvoptHFL57UGS6Kw4jd6EnrWmpBAds83JW2GGsx",
-      "balance": 83488,
+      "balance": 116174,
       "membership_expire_on": 1716853723,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -191471,7 +195376,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1638213760,
       "certs_received": {
-        "spherien": 1695584119,
         "Maaude09": 1750330949,
         "hocine": 1698570229
       }
@@ -191484,6 +195388,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "WilmotteAnnick": {
+      "index": 13681,
+      "owner_key": "GyVn1zPEQKWKesuoueYKcZ1urhvdsxD8EY7JXQ8rAfvM",
+      "balance": 29702,
+      "membership_expire_on": 1727306223,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "MignoletEmmanuel": 1758960096,
+        "GRIBOUILLE22": 1758950816,
+        "PatHamster": 1758914337,
+        "HAMSTERDAME": 1758953744,
+        "Jossy83": 1759087780
+      }
+    },
     "mimi81": {
       "index": 3373,
       "owner_key": "GyZc9WJyLBFr38uPvHghF3HFgYgCXUS3z4Mo4cEq8rsr",
@@ -191515,16 +195433,15 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1634098142,
       "certs_received": {
-        "ElisaLibre": 1705891564,
-        "CeliaSnowLibre": 1695752566
+        "ElisaLibre": 1705891564
       }
     },
     "gedeon26": {
       "index": 6786,
       "owner_key": "GyvkbXu37cRT1dHnuXYEHkaz33PxyA5RXZFxftyM2FcP",
-      "balance": 937136,
-      "membership_expire_on": 1700194377,
-      "next_cert_issuable_on": 1692971759,
+      "balance": 906895,
+      "membership_expire_on": 1726611987,
+      "next_cert_issuable_on": 1695393864,
       "certs_received": {
         "MilaChavez": 1747531940,
         "sarahmagicienne": 1756486662,
@@ -191535,6 +195452,7 @@
         "Vee": 1727672254,
         "Ninamaste": 1746561039,
         "Petragizeh": 1719104497,
+        "Marieta": 1759445861,
         "anouchka": 1718124567,
         "Zoulya": 1706065085,
         "MalvinaBoutot": 1731584562,
@@ -191558,6 +195476,7 @@
         "Lamychorise": 1715319998,
         "rjblein": 1744331177,
         "Eva": 1713077106,
+        "Juneve": 1754682442,
         "Lilo26": 1740730190,
         "amandine": 1707887204,
         "MarieAndara": 1754958508,
@@ -191574,9 +195493,9 @@
     "JeanneR": {
       "index": 9455,
       "owner_key": "Gyxu7ReEvfv5mojmpP819ZQtbTQMgyroiAsn5cPUQLgg",
-      "balance": 399942,
+      "balance": 439628,
       "membership_expire_on": 1721483987,
-      "next_cert_issuable_on": 1686136061,
+      "next_cert_issuable_on": 1693624687,
       "certs_received": {
         "MANUMA0": 1730661613,
         "Orage43": 1755044223,
@@ -191616,7 +195535,7 @@
     "Milinette16": {
       "index": 6001,
       "owner_key": "Gz5VJ8v6PWimtmwfkBWwnMrB1ryRxm2XKatieWykQLzC",
-      "balance": 500559,
+      "balance": 540245,
       "membership_expire_on": 1721837451,
       "next_cert_issuable_on": 1667635812,
       "certs_received": {
@@ -191637,9 +195556,9 @@
     "FredericAmany974": {
       "index": 3777,
       "owner_key": "GzBqjpzDPWFXfVTT9xyUtYAW3bHibAKqG7Pxi3wd3UGE",
-      "balance": 599423,
+      "balance": 639109,
       "membership_expire_on": 1703528311,
-      "next_cert_issuable_on": 1688896389,
+      "next_cert_issuable_on": 1695788543,
       "certs_received": {
         "Estel97430": 1727760543,
         "JeanBernardG974": 1732921074,
@@ -191659,7 +195578,6 @@
         "Matteo": 1726852564,
         "Wotan": 1729042998,
         "Raph": 1733759445,
-        "KM974": 1694647686,
         "GeraldM": 1717084061,
         "Espritangel": 1716431832,
         "ManuelV974": 1730982285,
@@ -191676,9 +195594,7 @@
         "Clinerode": 1736611353,
         "KeshavaDasi": 1708227536,
         "KatalineMOREL": 1702413558,
-        "Eddy974": 1696384393,
         "pearlreunion": 1708316645,
-        "FrancoiseRangla974": 1693609408,
         "AnneMarieRuiz": 1742077347,
         "NatachaV974": 1730253429,
         "mancity08": 1720056210,
@@ -191690,7 +195606,7 @@
     "OlgaO": {
       "index": 11806,
       "owner_key": "GzKUhswPUK56cYgQmzCrF3Y5r6v66XMHNy9j7zpg1yXk",
-      "balance": 187043,
+      "balance": 226729,
       "membership_expire_on": 1707974841,
       "next_cert_issuable_on": 1690818245,
       "certs_received": {
@@ -191712,7 +195628,7 @@
     "Voxane": {
       "index": 7523,
       "owner_key": "GzKjRm7uYS1j5S2vJ66WSvty2jDJ1D3HBbXPsAVhk8q1",
-      "balance": 575264,
+      "balance": 614950,
       "membership_expire_on": 1710519747,
       "next_cert_issuable_on": 1651633098,
       "certs_received": {
@@ -191730,7 +195646,7 @@
     "cfeltz": {
       "index": 188,
       "owner_key": "GzMGbYW7xBWHTqJmmpHUPzctsxnYpwEyxT8KBaSo3teM",
-      "balance": 1729843,
+      "balance": 1769529,
       "membership_expire_on": 1702308889,
       "next_cert_issuable_on": 1690187866,
       "certs_received": {
@@ -191745,7 +195661,7 @@
     "den38": {
       "index": 11334,
       "owner_key": "GzQ8thPhzQqGdtEzYCsC5CV5ArAVkhWU9wqcSuTMdRBx",
-      "balance": 237888,
+      "balance": 277574,
       "membership_expire_on": 1705957188,
       "next_cert_issuable_on": 1689719819,
       "certs_received": {
@@ -191761,7 +195677,7 @@
     "CelaSappelleLaurore": {
       "index": 8952,
       "owner_key": "GzQvcMkMMmm6b95sXgGUfc1DtS2XM865fjVq8M3sJ5En",
-      "balance": 416892,
+      "balance": 456578,
       "membership_expire_on": 1716306245,
       "next_cert_issuable_on": 1660552434,
       "certs_received": {
@@ -191780,14 +195696,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Claire666": 1695417562,
         "Opti": 1697163036
       }
     },
     "IsaureL": {
       "index": 10004,
       "owner_key": "GzciJDxW8eGwyQhZnxXTjvV1ns1xuzyfAvgQyKZ9bCKx",
-      "balance": 285052,
+      "balance": 289738,
       "membership_expire_on": 1697580710,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -191801,7 +195716,7 @@
     "Amethyste": {
       "index": 7566,
       "owner_key": "GzeWL7haudsakb8QytD8dVdQpZVWBJMtYJUcwoJ33QLP",
-      "balance": 569398,
+      "balance": 609084,
       "membership_expire_on": 1707414207,
       "next_cert_issuable_on": 1690288301,
       "certs_received": {
@@ -191820,9 +195735,9 @@
     "Runa_81": {
       "index": 8177,
       "owner_key": "GzfyDi8F9rVumWGN2aZBmNKq3VZ13icLg6aM2YBqQ7RE",
-      "balance": 46668,
+      "balance": 176764,
       "membership_expire_on": 1709394578,
-      "next_cert_issuable_on": 1690199070,
+      "next_cert_issuable_on": 1696481620,
       "certs_received": {
         "Cordeliaze": 1727632954,
         "larboleda897": 1739868553,
@@ -191861,6 +195776,7 @@
         "Atman": 1726072703,
         "Nadia": 1720984952,
         "Micha": 1740026878,
+        "tereseta": 1759366057,
         "noemi": 1749497397,
         "ElenaMavida": 1715127271,
         "Isalanzarote": 1721701905,
@@ -191876,7 +195792,7 @@
     "23Namy97": {
       "index": 13104,
       "owner_key": "GzgMmiQto3FSKmckvXujf8zjwVzeJHRQiRiTsTJNDRsE",
-      "balance": 69740,
+      "balance": 109426,
       "membership_expire_on": 1719232673,
       "next_cert_issuable_on": 1690890242,
       "certs_received": {
@@ -191890,7 +195806,7 @@
     "Etsamanga": {
       "index": 5321,
       "owner_key": "GziaFUYDmAdcJMos1chpFyHybsHLXiBFCifjXMtY1i9v",
-      "balance": 707249,
+      "balance": 746935,
       "membership_expire_on": 1715717762,
       "next_cert_issuable_on": 1691853732,
       "certs_received": {
@@ -191904,9 +195820,9 @@
     "FranckVal": {
       "index": 5926,
       "owner_key": "GzjWcvFMcBSw1t4rd3icAcFUGprC7wwk5qK3e8wDJh1z",
-      "balance": 299501,
+      "balance": 304187,
       "membership_expire_on": 1719687350,
-      "next_cert_issuable_on": 1693470666,
+      "next_cert_issuable_on": 1695910132,
       "certs_received": {
         "Ninamaste": 1741752460,
         "Philippe26": 1698019592,
@@ -191937,9 +195853,9 @@
     "Claudarc": {
       "index": 8491,
       "owner_key": "Gzr4N72J6mpRch1H1BQvrLaVYwsFtemgde2sbGSNkCq5",
-      "balance": 523224,
+      "balance": 562910,
       "membership_expire_on": 1721430723,
-      "next_cert_issuable_on": 1691296488,
+      "next_cert_issuable_on": 1693141226,
       "certs_received": {
         "Gedege": 1717075110,
         "Plantalarose": 1716941942,
@@ -191954,13 +195870,14 @@
     "LaKjuner": {
       "index": 10838,
       "owner_key": "GztkEutnujpWQL14CTB4QQ8mbHJrpeT2c9Ke8TdLKXEZ",
-      "balance": 346906,
+      "balance": 345592,
       "membership_expire_on": 1701190538,
       "next_cert_issuable_on": 1692367740,
       "certs_received": {
         "tridimi-44": 1733984154,
         "Maxx": 1734028681,
         "YemayaPapillon": 1734067095,
+        "LISAZAZA": 1759572396,
         "Gkjuner": 1750457235,
         "SergeUme": 1752714642,
         "Anikka": 1734070877,
@@ -191970,7 +195887,7 @@
     "ninie-1974": {
       "index": 8278,
       "owner_key": "H14dN6BiJ5f3rxfxAJY8sX9N8ftS1xtvwWHceZRGy4yK",
-      "balance": 215701,
+      "balance": 255387,
       "membership_expire_on": 1712115419,
       "next_cert_issuable_on": 1683310523,
       "certs_received": {
@@ -192014,17 +195931,33 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Bernagri": {
+      "index": 13572,
+      "owner_key": "H1CiS4HApDBzddbYwg2UUUjPNwebGkDkujUFyiPELqQj",
+      "balance": 24734,
+      "membership_expire_on": 1723500649,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "colinuxCanut2": 1756753327,
+        "ladegane": 1755202171,
+        "lucba": 1755201855,
+        "Noisette": 1755467537,
+        "Patinette": 1755307442,
+        "Anna84": 1758251663,
+        "Malaga": 1755202508
+      }
+    },
     "DomLucie": {
       "index": 3335,
       "owner_key": "H1DDChZM9oeuUDhfqBKho54TeGvNGAVcRxR6VaTjQU3G",
-      "balance": 1334892,
+      "balance": 1374578,
       "membership_expire_on": 1708798137,
       "next_cert_issuable_on": 1678438357,
       "certs_received": {
-        "perenoel": 1702627440,
+        "perenoel": 1759257147,
         "zencat": 1740794445,
         "Chrystal26": 1703349199,
-        "merenoel": 1702627440,
+        "merenoel": 1759257147,
         "MARY30": 1702520875,
         "Milenie26": 1707361873,
         "arbogast": 1704982971
@@ -192033,23 +195966,19 @@
     "Ivann971": {
       "index": 5679,
       "owner_key": "H1HdFDvv8FvAbxUJR7mupXmvhV15sXGMPpoKdBDUbHGs",
-      "balance": 589381,
+      "balance": 625067,
       "membership_expire_on": 1724366369,
-      "next_cert_issuable_on": 1692880769,
+      "next_cert_issuable_on": 1693821771,
       "certs_received": {
-        "JessyRipert": 1695099404,
         "fred09bl": 1734559269,
         "Thierrygwada": 1705953491,
-        "Fan971": 1695087805,
         "Mariko": 1751971583,
-        "Philippe": 1695189252,
         "Soum86": 1711262483,
         "choupi": 1712739673,
         "JP-Rod": 1706362801,
         "Jade971": 1752717900,
         "AnneSo": 1755165982,
         "Stan": 1720512799,
-        "Cricri": 1695101362,
         "FannyDousset": 1716206504,
         "Leila": 1707905923,
         "Regalli": 1716888132,
@@ -192057,8 +195986,7 @@
         "ninie-1974": 1717318634,
         "Mariedelourdes": 1715663803,
         "lcdan": 1709804210,
-        "Corinnedeshaies": 1700039884,
-        "Romane": 1695101362
+        "Corinnedeshaies": 1758001129
       }
     },
     "LaNade": {
@@ -192078,10 +196006,11 @@
     "Fred04": {
       "index": 5842,
       "owner_key": "H1PY5sT71pof5htBp7uJEMbcCZrx7s1pPEmXt7QY4VB2",
-      "balance": 678123,
+      "balance": 717809,
       "membership_expire_on": 1717710965,
       "next_cert_issuable_on": 1686548739,
       "certs_received": {
+        "Monette": 1758171337,
         "RomainKornig": 1738733711,
         "IsabelleF": 1704223233,
         "stephanieguillem": 1696977906,
@@ -192101,7 +196030,6 @@
         "Marjo": 1724192255,
         "thierrygirard": 1735688054,
         "Yoda13": 1729551551,
-        "StephaneLONGUET": 1696207108,
         "Kalia": 1715808305,
         "CovaDidier": 1728633528,
         "Sophiefiso": 1721842516,
@@ -192111,7 +196039,7 @@
     "liliecharrier": {
       "index": 4860,
       "owner_key": "H1WTZuVmUUPpWp7eGugQjrUEEUn33XiwzqXtHGtRw3tg",
-      "balance": 816409,
+      "balance": 856095,
       "membership_expire_on": 1719968065,
       "next_cert_issuable_on": 1690169543,
       "certs_received": {
@@ -192136,9 +196064,9 @@
     "Elvynao6": {
       "index": 13314,
       "owner_key": "H1fwe2QmonRXbYHwHewchwBPz54XHnKZN52RNZQ4SgcE",
-      "balance": 92549,
+      "balance": 55235,
       "membership_expire_on": 1721766655,
-      "next_cert_issuable_on": 1691737464,
+      "next_cert_issuable_on": 1695739922,
       "certs_received": {
         "ScarlettGabrielle_8": 1754276699,
         "Tchois": 1753846444,
@@ -192146,30 +196074,46 @@
         "LilianeLilou": 1754346496,
         "PorteduCiel": 1756108650,
         "tomval83": 1754596233,
+        "Sailorcherry": 1758428961,
         "ClaireSMV": 1753941088
       }
     },
+    "Psyvie": {
+      "index": 13708,
+      "owner_key": "H1jdzs954Usm8WibEDrub7htdHMSoBHFNsSQECMd5cYf",
+      "balance": 7468,
+      "membership_expire_on": 1727127002,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "HeleneH": 1759770677,
+        "Elascap": 1759287329,
+        "HebraudH": 1758844128,
+        "DanSch": 1759292538,
+        "PATREN17": 1759092106,
+        "CorineH34": 1758853559
+      }
+    },
     "ChoraMadera": {
       "index": 5595,
       "owner_key": "H1jsjgH7LtJrFZGhqyRmf7n1u618ARvqKnKbo7rXuUvz",
-      "balance": 542145,
+      "balance": 581831,
       "membership_expire_on": 1724759773,
-      "next_cert_issuable_on": 1674788125,
+      "next_cert_issuable_on": 1694161147,
       "certs_received": {
         "BrigitteGabaud": 1708831659,
         "SabineD": 1704354328,
-        "HelloSunshine": 1693591295,
         "MacBoi": 1704418084,
         "YvelineMNC": 1705272194,
+        "Aveline": 1757286850,
         "CocoBaud": 1714720691,
         "Shankarina": 1714601832,
         "SOROWE": 1704417792,
         "Tanguera": 1733982828,
         "Pereduchene": 1709408822,
-        "marieange": 1693721895,
         "Marcolariegeois": 1714871533,
         "Melusine": 1711831345,
         "Babouche00": 1733527408,
+        "sylvainT": 1757647691,
         "Soanne29": 1709067784,
         "Metta": 1702865336,
         "Bruno28": 1738002012
@@ -192178,7 +196122,7 @@
     "RobinF": {
       "index": 12031,
       "owner_key": "H1m4QNdS8hAw6VmHgLGeWvBRwV97ir3RDHn3kMgr2nbF",
-      "balance": 177261,
+      "balance": 216947,
       "membership_expire_on": 1709649549,
       "next_cert_issuable_on": 1686660316,
       "certs_received": {
@@ -192210,29 +196154,25 @@
       "next_cert_issuable_on": 1655905623,
       "certs_received": {
         "Kokiyet": 1725485677,
-        "MichelK": 1696456498,
         "Parhit": 1701165195
       }
     },
     "PascaleGuilbaud": {
       "index": 5908,
       "owner_key": "H24bWnWbFobxfMSRGfjuJbMyirpqF1QxMNB5bRfhztEp",
-      "balance": 694201,
-      "membership_expire_on": 1694530696,
+      "balance": 707017,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1671759719,
       "certs_received": {
-        "AlainLebrun": 1696539124,
         "ElodieV": 1735469263,
         "ArnaudFleuri": 1697591070,
-        "JBlot": 1696281041,
-        "AnnickBoubounelle": 1696278501,
         "littlegreg": 1755512355
       }
     },
     "marius": {
       "index": 6930,
       "owner_key": "H24ktmjVqbc7Gh4DjaFfL776NxiUv4tFx15kewfWfzE6",
-      "balance": 456555,
+      "balance": 496241,
       "membership_expire_on": 1701454553,
       "next_cert_issuable_on": 1646113228,
       "certs_received": {
@@ -192247,7 +196187,7 @@
     "Lolohoch": {
       "index": 12669,
       "owner_key": "H2KP4WZkFX3roWHsy6Bqx6rPuZNnD1RKZhY3dFPD5Mz3",
-      "balance": 404206,
+      "balance": 443892,
       "membership_expire_on": 1715695319,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -192266,12 +196206,27 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Aleks": {
+      "index": 13529,
+      "owner_key": "H2Sxh2PLeb5ehQzKZcVM8hSkFGg9iyatCTXDQQ33kzDL",
+      "balance": 51822,
+      "membership_expire_on": 1724777510,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Tchois": 1757311688,
+        "SoNyA": 1756335979,
+        "Canardargent": 1756857747,
+        "tomval83": 1756356346,
+        "Elouane": 1756450031,
+        "Sailorcherry": 1757097484
+      }
+    },
     "Spiruline07": {
       "index": 10003,
       "owner_key": "H2Z6jwozxL2KUiYpfsS2VV9C52FYd5E85sFkhg3iwNpB",
-      "balance": 385411,
-      "membership_expire_on": 1696210300,
-      "next_cert_issuable_on": 1691507089,
+      "balance": 431297,
+      "membership_expire_on": 1725829569,
+      "next_cert_issuable_on": 1695576986,
       "certs_received": {
         "chris07": 1744094303,
         "AKOUNAMATATA": 1747720369,
@@ -192284,6 +196239,7 @@
         "AnnieFortin": 1727810655,
         "NGO": 1742282829,
         "gaellemarcherat": 1747205084,
+        "martinfray": 1757750534,
         "Helsephine": 1727768794,
         "JMa": 1737001171,
         "lumi": 1744175094,
@@ -192309,7 +196265,7 @@
     "Annik42": {
       "index": 9167,
       "owner_key": "H2aGG8fEtfzEAKvqKDZayB7NM16siX6n4QXYJMpG5SmC",
-      "balance": 441853,
+      "balance": 481539,
       "membership_expire_on": 1721495560,
       "next_cert_issuable_on": 1677394748,
       "certs_received": {
@@ -192330,9 +196286,9 @@
     "gigi73": {
       "index": 9353,
       "owner_key": "H2eHn2KFUT5mp59P9s3d64So3yJY9pntNxSey21yZdHs",
-      "balance": 356571,
+      "balance": 418037,
       "membership_expire_on": 1719752118,
-      "next_cert_issuable_on": 1693465584,
+      "next_cert_issuable_on": 1695318752,
       "certs_received": {
         "puce": 1724914458,
         "Chantal": 1741489313,
@@ -192353,11 +196309,12 @@
     "Sylvain": {
       "index": 8125,
       "owner_key": "H2iwX4LYqWoxag1xfjcxW7AA1TQh4zseejhtBcAK3nNy",
-      "balance": 1004906,
+      "balance": 905306,
       "membership_expire_on": 1709509872,
-      "next_cert_issuable_on": 1690201012,
+      "next_cert_issuable_on": 1695617805,
       "certs_received": {
         "arbocenc": 1718211409,
+        "Damaso": 1758662191,
         "Namaste": 1742884842,
         "JaviTender": 1745263624,
         "sheveck": 1712907632,
@@ -192384,7 +196341,7 @@
     "Chantaux": {
       "index": 8289,
       "owner_key": "H2oAYSqQBiZCBUWhv5KH1nNHLnqJGZ8kK3aZ49TdZxkP",
-      "balance": 465909,
+      "balance": 505595,
       "membership_expire_on": 1706964849,
       "next_cert_issuable_on": 1689995040,
       "certs_received": {
@@ -192415,7 +196372,7 @@
     "Neige": {
       "index": 5005,
       "owner_key": "H32RY9aw781XN4pMTFNogeFcZXBpox2vP2UKgDFgrH8a",
-      "balance": 780329,
+      "balance": 820015,
       "membership_expire_on": 1707436143,
       "next_cert_issuable_on": 1686022835,
       "certs_received": {
@@ -192430,7 +196387,7 @@
     "FrederiqueMusic": {
       "index": 11544,
       "owner_key": "H32tHREBLtQJSB8jrpbsqy66yGeZe5XTUCuscCUjsJti",
-      "balance": 348332,
+      "balance": 384814,
       "membership_expire_on": 1702762450,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -192444,7 +196401,7 @@
     "Geraldine74": {
       "index": 12390,
       "owner_key": "H33j6evLkAYo2TWswtM1AFWvTLRLbWDn98dfrEm6Fcjo",
-      "balance": 152724,
+      "balance": 192410,
       "membership_expire_on": 1713481951,
       "next_cert_issuable_on": 1693471219,
       "certs_received": {
@@ -192460,10 +196417,11 @@
     "Marialu": {
       "index": 12794,
       "owner_key": "H37uRnw5skzeHGtoTogceAJHmBM5BeWwt6Rj3yzFCpTo",
-      "balance": 209793,
+      "balance": 215379,
       "membership_expire_on": 1717102535,
-      "next_cert_issuable_on": 1691106196,
+      "next_cert_issuable_on": 1695718080,
       "certs_received": {
+        "Gscarabbe": 1758527324,
         "Tournesol": 1748843421,
         "CatherineMonastirieff": 1748716237,
         "MinaManar": 1748716237,
@@ -192474,7 +196432,7 @@
     "Marie-France-Verger": {
       "index": 8383,
       "owner_key": "H38LSJrcEsymGT6CFRwL7pxvmnd2gfmTjKRHgrkwFGWi",
-      "balance": 438685,
+      "balance": 478371,
       "membership_expire_on": 1712153470,
       "next_cert_issuable_on": 1680568220,
       "certs_received": {
@@ -192490,7 +196448,7 @@
     "Orya": {
       "index": 11654,
       "owner_key": "H3BpSDDb1DJ6RcqFFaDe1CneXe3yoxTZkksMuchBHeLh",
-      "balance": 207972,
+      "balance": 247658,
       "membership_expire_on": 1708046868,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -192505,7 +196463,7 @@
     "RegorReyemed": {
       "index": 9496,
       "owner_key": "H3FAEZF6dYnHncbPEDC8gJCULvpXGiqGGgcigHsuzTDy",
-      "balance": 375289,
+      "balance": 434975,
       "membership_expire_on": 1722037147,
       "next_cert_issuable_on": 1688602828,
       "certs_received": {
@@ -192520,7 +196478,7 @@
     "PuspaPrem974": {
       "index": 13325,
       "owner_key": "H3GFC5Y1FeEqxQkJKJQ51h1VznsNAzjfxXcfiAFj8abJ",
-      "balance": 98200,
+      "balance": 137886,
       "membership_expire_on": 1720415485,
       "next_cert_issuable_on": 1691979748,
       "certs_received": {
@@ -192534,7 +196492,7 @@
     "DonvinaM": {
       "index": 11556,
       "owner_key": "H3LR4f71nXYGxBFS6xGBBHb1b5QChzceAaVgZh4Nnkgd",
-      "balance": 118403,
+      "balance": 119789,
       "membership_expire_on": 1705354360,
       "next_cert_issuable_on": 1687322537,
       "certs_received": {
@@ -192556,7 +196514,7 @@
     "LionBastin": {
       "index": 7714,
       "owner_key": "H3Q1Zo4HCwX5bifEhAE4Wi3tJoet1WinoNQwj5dFVhXR",
-      "balance": 545737,
+      "balance": 585423,
       "membership_expire_on": 1709305966,
       "next_cert_issuable_on": 1692466324,
       "certs_received": {
@@ -192570,7 +196528,7 @@
     "Disine": {
       "index": 5055,
       "owner_key": "H3SBJzvMtmhVVUqNvTLkESd1tgKBZGYpwHh4KNjguaGH",
-      "balance": 1154027,
+      "balance": 1163213,
       "membership_expire_on": 1705872106,
       "next_cert_issuable_on": 1665482948,
       "certs_received": {
@@ -192599,7 +196557,7 @@
     "NancyTalavera": {
       "index": 12244,
       "owner_key": "H3Uc4BED8HDFNbfdasEC5yLgf5fA1Rt3ND7Wj4hzMH8W",
-      "balance": 109148,
+      "balance": 148834,
       "membership_expire_on": 1711914849,
       "next_cert_issuable_on": 1692072467,
       "certs_received": {
@@ -192614,15 +196572,15 @@
     "Marion": {
       "index": 5808,
       "owner_key": "H3V1fjZmay2TjNoRdLzbY33tffD7mQZCgd2w5p6BAPWD",
-      "balance": 366893,
+      "balance": 406579,
       "membership_expire_on": 1703121550,
       "next_cert_issuable_on": 1674992956,
       "certs_received": {
         "Lulu31Verfeil": 1731787469,
         "GouZ": 1696835955,
         "LaeVie": 1696835955,
-        "Lapprentissage": 1696839764,
-        "scanlegentil": 1696837842,
+        "Lapprentissage": 1759033204,
+        "scanlegentil": 1759079717,
         "TerrasFranck": 1696836436,
         "Petitlutin": 1738050149
       }
@@ -192630,20 +196588,20 @@
     "MatHC": {
       "index": 6108,
       "owner_key": "H3bDHQFMQvkdZb38LxiehCKhqqDWTTUJQgcyioUtg8nT",
-      "balance": 695161,
+      "balance": 734847,
       "membership_expire_on": 1725046984,
       "next_cert_issuable_on": 1693561384,
       "certs_received": {
         "AmeHC": 1713827238,
         "BricePedrono": 1700251951,
         "Badiane": 1704175293,
-        "JuanLu": 1700416559,
+        "JuanLu": 1757969795,
         "ANOLIS": 1702495080,
         "CorinneCoco": 1713405729,
         "lilithdu34": 1700326053,
         "chane": 1705697739,
-        "AuFilDuTemps": 1700116804,
-        "Fleur": 1700117751,
+        "AuFilDuTemps": 1756620276,
+        "Fleur": 1757199325,
         "Yaelle48": 1700271228
       }
     },
@@ -192694,7 +196652,7 @@
     "yayadino": {
       "index": 11515,
       "owner_key": "H3xFx2QtWxLkrQZVmnqaM5NAjt8Vch1mDrm5XhreA2ig",
-      "balance": 258603,
+      "balance": 298289,
       "membership_expire_on": 1707165814,
       "next_cert_issuable_on": 1683595980,
       "certs_received": {
@@ -192722,15 +196680,16 @@
     "ALEGRIAUNIVERSAL": {
       "index": 9142,
       "owner_key": "H4MSiEmNDTJxBvZ8groJz1odsiPMRCUd2QQ7npqaAqN7",
-      "balance": 91809,
+      "balance": 125995,
       "membership_expire_on": 1717005266,
-      "next_cert_issuable_on": 1691838833,
+      "next_cert_issuable_on": 1696058363,
       "certs_received": {
         "Eiutim": 1737960256,
         "xandraAritzkuren": 1736484690,
         "Aguas": 1739650757,
         "Colheres": 1748069222,
         "Naymar": 1726720144,
+        "faraona": 1755028822,
         "Montsin": 1726503536,
         "Lurtxu": 1736380099,
         "Montsant": 1739082981,
@@ -192762,9 +196721,7 @@
       "balance": 1219150,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "LHPBaptiste": 1695422694
-      }
+      "certs_received": {}
     },
     "onizuka": {
       "index": 3705,
@@ -192779,15 +196736,15 @@
       "owner_key": "H4Yay9cLekq5b5KzWLiFJGTSewvMuUhCpJ7su6kSm7ik",
       "balance": 772413,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1633701649,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "Energiadelcorazon": {
       "index": 9561,
       "owner_key": "H4bjeAuqRG2mcqoU8WJ8xrD4zyEDiCKvyHu1ubGcfP4n",
-      "balance": 133988,
+      "balance": 52264,
       "membership_expire_on": 1723246521,
-      "next_cert_issuable_on": 1692355810,
+      "next_cert_issuable_on": 1695014132,
       "certs_received": {
         "elenagrizzly": 1735647574,
         "Estela": 1747361703,
@@ -192805,6 +196762,7 @@
         "Usoa": 1750917426,
         "Atman": 1726508560,
         "VeroniqueV": 1733598725,
+        "tereseta": 1757666531,
         "Noxtan": 1737663505,
         "wontolla": 1739994089,
         "Isalanzarote": 1726117034,
@@ -192816,12 +196774,12 @@
     "PatrickFreoua": {
       "index": 6388,
       "owner_key": "H4cbit7y1Aq5J7ku8s3QXN2HUbGYHs3GLknPY9fD8Prz",
-      "balance": 2205657,
+      "balance": 2275343,
       "membership_expire_on": 1698278390,
       "next_cert_issuable_on": 1684812101,
       "certs_received": {
-        "SophSav": 1702537219,
-        "anaka": 1702249404,
+        "SophSav": 1759536917,
+        "anaka": 1757806975,
         "PauleJany1802": 1741563300,
         "XianeC": 1702273695,
         "AlexisLebrun": 1719380219,
@@ -192837,12 +196795,13 @@
     "YaYiSu": {
       "index": 10401,
       "owner_key": "H4gfwdv3cohCytst4YE4kfACY7BNdNKaLTNwuTq4hbgx",
-      "balance": 174381,
-      "membership_expire_on": 1699827224,
-      "next_cert_issuable_on": 1688617134,
+      "balance": 94227,
+      "membership_expire_on": 1726659000,
+      "next_cert_issuable_on": 1696211429,
       "certs_received": {
         "Dani": 1731879699,
         "JaviTender": 1734659869,
+        "valeria": 1758935339,
         "Marianoconcentrado": 1731870399,
         "PerePinyolTortosa": 1731891783,
         "G1rgina": 1731743275,
@@ -192864,8 +196823,8 @@
     "Sophiefiso": {
       "index": 6339,
       "owner_key": "H4gzARZTQqgvjkEQTxKRrfLAmconZzoBWa7bfsGuy3Xz",
-      "balance": 560167,
-      "membership_expire_on": 1696867757,
+      "balance": 599853,
+      "membership_expire_on": 1726961254,
       "next_cert_issuable_on": 1684132582,
       "certs_received": {
         "Filico04": 1701500986,
@@ -192907,7 +196866,7 @@
     "Gentcat": {
       "index": 1668,
       "owner_key": "H54JZXYuTK4WF1auBiBvsBs9VkzPUBrsn5soi6Dbq9EN",
-      "balance": 1369280,
+      "balance": 1408966,
       "membership_expire_on": 1700087174,
       "next_cert_issuable_on": 1680246381,
       "certs_received": {
@@ -192943,8 +196902,8 @@
     "Cindy": {
       "index": 4848,
       "owner_key": "H58ATtPFnvbedX6GBSpgUciGf2xYNmWuaiag7EbVnifh",
-      "balance": 370568,
-      "membership_expire_on": 1699756707,
+      "balance": 410254,
+      "membership_expire_on": 1726708023,
       "next_cert_issuable_on": 1689877102,
       "certs_received": {
         "CatherinePerma": 1732095162,
@@ -192980,10 +196939,27 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "LolotteCL": {
+      "index": 13562,
+      "owner_key": "H5GU7aDz8Y3An88ssA698xZYQGgFZGLckHYrhUtFKkpr",
+      "balance": 26870,
+      "membership_expire_on": 1724329017,
+      "next_cert_issuable_on": 1696165788,
+      "certs_received": {
+        "Lilibeth79": 1757199714,
+        "Papou": 1757970063,
+        "CarolePo": 1757266301,
+        "AnthonyDel": 1757221787,
+        "GeraldS": 1756947672,
+        "Cyrian": 1757221787,
+        "NanouchkaM": 1757109686,
+        "AlexCl": 1757452648
+      }
+    },
     "FabienneAB": {
       "index": 11351,
       "owner_key": "H5JgjNj4v64txPDN1YDq2oWWhHnsjQTPNV33qHLAm8MF",
-      "balance": 246829,
+      "balance": 329265,
       "membership_expire_on": 1704555238,
       "next_cert_issuable_on": 1682865140,
       "certs_received": {
@@ -193014,7 +196990,7 @@
     "Berberyoum": {
       "index": 10336,
       "owner_key": "H5P3Jo4qn1zwA1sggavKRqGpV1Qj5P3K8FA4yMkGX9yv",
-      "balance": 312813,
+      "balance": 352499,
       "membership_expire_on": 1696864292,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -193028,7 +197004,7 @@
     "Kunja": {
       "index": 12761,
       "owner_key": "H5Smok6EUCjXp1RxWsL1EiFA5YpmgSSQxPzn2bNPd7Jo",
-      "balance": 782160,
+      "balance": 821846,
       "membership_expire_on": 1716600085,
       "next_cert_issuable_on": 1690104431,
       "certs_received": {
@@ -193062,7 +197038,7 @@
     "NathalieBuxerolle": {
       "index": 11625,
       "owner_key": "H5ofkJiSjwdgrMW5GBY1QMA4Dacagk4sv6ZcRQVVoUns",
-      "balance": 209183,
+      "balance": 248869,
       "membership_expire_on": 1707678672,
       "next_cert_issuable_on": 1684388631,
       "certs_received": {
@@ -193082,7 +197058,7 @@
     "MarieAgnesDouillet": {
       "index": 6377,
       "owner_key": "H5tYonjv8goaY9A9gwZ9Tw5HdzX8grzPQAp47LxTJHi9",
-      "balance": 740857,
+      "balance": 787543,
       "membership_expire_on": 1698194676,
       "next_cert_issuable_on": 1668442829,
       "certs_received": {
@@ -193111,7 +197087,7 @@
     "NalaMandala": {
       "index": 8431,
       "owner_key": "H63sAnoXKG6hmW8ppe2Vp8U3h926HWAeLMocnCQ2S3BT",
-      "balance": 451532,
+      "balance": 441218,
       "membership_expire_on": 1714325940,
       "next_cert_issuable_on": 1690809434,
       "certs_received": {
@@ -193149,8 +197125,8 @@
     "ArthurZephyr": {
       "index": 6842,
       "owner_key": "H6DFzzTfxWBdJ83w6r4osRkNaoVe949jFZmnLcYMC4Bi",
-      "balance": 608779,
-      "membership_expire_on": 1697218847,
+      "balance": 648365,
+      "membership_expire_on": 1726590318,
       "next_cert_issuable_on": 1683297901,
       "certs_received": {
         "GastonL": 1705080770,
@@ -193177,7 +197153,7 @@
     "Tartagueule": {
       "index": 12474,
       "owner_key": "H6K2Zsqy3n6eNQMLrmjZx2e18GofWM2txLGvQWSvemiL",
-      "balance": 214568,
+      "balance": 254254,
       "membership_expire_on": 1713706551,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -193192,7 +197168,7 @@
     "Marinasanjose": {
       "index": 13041,
       "owner_key": "H6R8GShdtLfRkAd5kEPq8H6h37HFVtCGQ3VYWnQ78o4M",
-      "balance": 128098,
+      "balance": 219984,
       "membership_expire_on": 1719512431,
       "next_cert_issuable_on": 1693031358,
       "certs_received": {
@@ -193214,7 +197190,7 @@
     "Cyril2126": {
       "index": 11761,
       "owner_key": "H6aSB7kQJukhMwFh2iNr7uppdczjeEQb6z1DWtvqEJ7w",
-      "balance": 199500,
+      "balance": 239186,
       "membership_expire_on": 1708890775,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -193229,7 +197205,7 @@
     "Regina": {
       "index": 11661,
       "owner_key": "H6xTc5CeC7pkwqPYczBJHWJjj9xiRnd42n3doYhfCqi7",
-      "balance": 282168,
+      "balance": 311854,
       "membership_expire_on": 1708125777,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -193252,7 +197228,7 @@
     "misstap": {
       "index": 12055,
       "owner_key": "H7BhuUdf6muwfUjsEMVoa5Qox8fiWtFhthBqj7ysgNxS",
-      "balance": 176302,
+      "balance": 215988,
       "membership_expire_on": 1708039179,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -193266,8 +197242,8 @@
     "Tof46": {
       "index": 9950,
       "owner_key": "H7CCmoZkDUtzZMvbLDQXfUBT7UdXDX8orZ22AigXKDxr",
-      "balance": 344288,
-      "membership_expire_on": 1694897028,
+      "balance": 361376,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "ManUtopiK": 1726454965,
@@ -193288,9 +197264,9 @@
     "Ceciletricoteuse": {
       "index": 8076,
       "owner_key": "H7MFE4o9Uw8SVB3FJmMgWphWhhvdK4ABkLrk8iQHfwUL",
-      "balance": 454732,
+      "balance": 494418,
       "membership_expire_on": 1711715473,
-      "next_cert_issuable_on": 1690552415,
+      "next_cert_issuable_on": 1696651615,
       "certs_received": {
         "DelphineA": 1749364729,
         "Moudom": 1715234833,
@@ -193310,7 +197286,7 @@
     "Libertad": {
       "index": 11310,
       "owner_key": "H7Y27FAFz3bPpFUotm1SGrYyLo3jrLNegBUicakkySE",
-      "balance": 129456,
+      "balance": 81042,
       "membership_expire_on": 1705540030,
       "next_cert_issuable_on": 1683818340,
       "certs_received": {
@@ -193351,8 +197327,8 @@
     "o2gwada": {
       "index": 4062,
       "owner_key": "H7m8F1bJeF5dftcfpwPsV7TAaELaCQUWCDybmsN4nRvy",
-      "balance": 915007,
-      "membership_expire_on": 1695490186,
+      "balance": 939601,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1667889211,
       "certs_received": {
         "SiloeC": 1710383373,
@@ -193368,9 +197344,9 @@
     "MargueriteD33": {
       "index": 12906,
       "owner_key": "H7mMTopoWfqwbLXCqAhXsT5oeLfzz1HhBCmZYFpDwDTH",
-      "balance": 61168,
+      "balance": 81354,
       "membership_expire_on": 1716679836,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696072237,
       "certs_received": {
         "Salsa33150": 1749101241,
         "Dieudo": 1749058183,
@@ -193382,9 +197358,9 @@
     "AmoghaMarie": {
       "index": 7892,
       "owner_key": "H7rMzDaKyeLatrS8w6xC915hvD7ABJPAi2hxFzdifBbz",
-      "balance": 724572,
+      "balance": 706658,
       "membership_expire_on": 1710783835,
-      "next_cert_issuable_on": 1687342545,
+      "next_cert_issuable_on": 1696241565,
       "certs_received": {
         "Monette": 1731743544,
         "RomainKornig": 1714525581,
@@ -193428,7 +197404,7 @@
     "sabatellopart": {
       "index": 11862,
       "owner_key": "H88tSQBJYTqgnkBuzd2pjZHrP4uGoXdaCT7fyCDkdksi",
-      "balance": 127874,
+      "balance": 99060,
       "membership_expire_on": 1709508271,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -193443,7 +197419,7 @@
     "MARY81GG": {
       "index": 10005,
       "owner_key": "H8BejiRg4DBKRrY56m1p4vJgGRAdMNqubXEsyDK5RBLF",
-      "balance": 796647,
+      "balance": 836333,
       "membership_expire_on": 1697377243,
       "next_cert_issuable_on": 1689748005,
       "certs_received": {
@@ -193462,7 +197438,7 @@
     "arianelotus": {
       "index": 600,
       "owner_key": "H8BxyeDm4BNx8UdF2ST26YjoVatSAArvNgknXi6shvpi",
-      "balance": 1262557,
+      "balance": 1302243,
       "membership_expire_on": 1706043142,
       "next_cert_issuable_on": 1661230057,
       "certs_received": {
@@ -193486,9 +197462,9 @@
     "Caroshakti": {
       "index": 3685,
       "owner_key": "H8EgmdpKSr8PeYNL9LMjfZcK48A7TeYPxnwkgHnLJFMm",
-      "balance": 932487,
+      "balance": 972173,
       "membership_expire_on": 1708067205,
-      "next_cert_issuable_on": 1686534848,
+      "next_cert_issuable_on": 1694156514,
       "certs_received": {
         "Chris08": 1712961803,
         "Yoham24": 1750018936,
@@ -193504,7 +197480,7 @@
     "CeWell": {
       "index": 13117,
       "owner_key": "H8FjkpTRjXs3vjZvJyifVWNjj8SPYkAg2dwUSmgtmZKR",
-      "balance": 226672,
+      "balance": 266358,
       "membership_expire_on": 1718931527,
       "next_cert_issuable_on": 1690270707,
       "certs_received": {
@@ -193526,7 +197502,7 @@
     "Joy34": {
       "index": 13288,
       "owner_key": "H8fdXxDwroSYQU8q82HHKJFdQFYRhqGMdyMLSoYM84Ku",
-      "balance": 62390,
+      "balance": 102076,
       "membership_expire_on": 1720956152,
       "next_cert_issuable_on": 1693065655,
       "certs_received": {
@@ -193540,7 +197516,7 @@
     "CecileFRN": {
       "index": 12450,
       "owner_key": "H8fuq8hBU7gJ5ouXwdkZ6MvgdiisoKzKKadS3daBam2m",
-      "balance": 144104,
+      "balance": 183790,
       "membership_expire_on": 1713979528,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -193554,7 +197530,7 @@
     "Julienlien": {
       "index": 12876,
       "owner_key": "H8i7QsTWac3ZguNBYoVdPWwkJNeh4t3UGKSwH2qCPnGi",
-      "balance": 229204,
+      "balance": 268890,
       "membership_expire_on": 1718051756,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -193570,7 +197546,7 @@
     "AkashanYoga": {
       "index": 11526,
       "owner_key": "H8j8Gy2yQ3wcqhRfAdeLZgk9w6UUZMmL9KqyE9BAYeXo",
-      "balance": 217503,
+      "balance": 257189,
       "membership_expire_on": 1706669566,
       "next_cert_issuable_on": 1676556916,
       "certs_received": {
@@ -193600,7 +197576,7 @@
     "C13Juanp": {
       "index": 7024,
       "owner_key": "H8u9PLBWPD4nuxeVcAnQjyGgqeDBxPFbvyPTCiMCwbwS",
-      "balance": 507061,
+      "balance": 546747,
       "membership_expire_on": 1706389083,
       "next_cert_issuable_on": 1654766908,
       "certs_received": {
@@ -193630,7 +197606,7 @@
     "Hasiargi": {
       "index": 12283,
       "owner_key": "H985Ljyw2j5cdrXEqXbPiozcBhAbeWfaeNKjy8hbo1Sk",
-      "balance": 355964,
+      "balance": 395650,
       "membership_expire_on": 1712598463,
       "next_cert_issuable_on": 1681969929,
       "certs_received": {
@@ -193645,9 +197621,9 @@
     "schmollita": {
       "index": 3343,
       "owner_key": "H9CYnquk4kVFhUfrcuTYpwqud4dafjm8HMfVKf7MCLqx",
-      "balance": 1532874,
+      "balance": 1448140,
       "membership_expire_on": 1701951895,
-      "next_cert_issuable_on": 1690772308,
+      "next_cert_issuable_on": 1694524030,
       "certs_received": {
         "Sophie_Jiyu": 1708744435,
         "NanieLCK": 1753741396,
@@ -193657,6 +197633,7 @@
         "Hassina": 1699650634,
         "loveinagain81": 1754232229,
         "LudusArenaConcept": 1749619553,
+        "Paola": 1757180925,
         "Mikhaella3448": 1725420611,
         "Eauvive": 1700628575,
         "Dodjay": 1724023104,
@@ -193668,9 +197645,9 @@
     "Isalanzarote": {
       "index": 8532,
       "owner_key": "H9CnuxZyswKCurWF2E8So9kjKDsTpTVDrvEbXMuQ2mFP",
-      "balance": 138520,
+      "balance": 179407,
       "membership_expire_on": 1712978507,
-      "next_cert_issuable_on": 1691318509,
+      "next_cert_issuable_on": 1693838462,
       "certs_received": {
         "kapis": 1721158587,
         "Nounoune": 1735976736,
@@ -193710,6 +197687,7 @@
         "Maaude09": 1721081395,
         "EcoKim": 1742538277,
         "Blanku": 1749510103,
+        "Vinciane": 1757364974,
         "YOSOYLUZ": 1717773401,
         "Anma": 1734596079,
         "crisleon": 1733425960,
@@ -193744,9 +197722,9 @@
     "AnemoneSyl": {
       "index": 6712,
       "owner_key": "H9HBAJ4eUaagFVQtJhsWqLEquWGnMXRCubMVp7NN3ZvC",
-      "balance": 489941,
-      "membership_expire_on": 1701109655,
-      "next_cert_issuable_on": 1692623273,
+      "balance": 527327,
+      "membership_expire_on": 1727540993,
+      "next_cert_issuable_on": 1695519991,
       "certs_received": {
         "Carine888": 1738233944,
         "PascalEnden": 1739907050,
@@ -193760,10 +197738,12 @@
         "HeidiFARFALE": 1751686902,
         "IlonadeHaas": 1732004732,
         "AnnC57": 1751949337,
+        "DelphineG": 1757318781,
         "aufildeLAU": 1729109946,
         "Denis": 1718776263,
         "takleung": 1705136792,
         "Diessanne": 1730718544,
+        "Clairdelune": 1758667487,
         "Vinciane": 1729500244,
         "PeterKD": 1714094181,
         "Dionysos": 1705212538,
@@ -193797,7 +197777,7 @@
     "Jackstyle": {
       "index": 11141,
       "owner_key": "H9V7FXs425xdTwExVMJxhcNkcLpzdiaRnZNBbxAu4vco",
-      "balance": 160801,
+      "balance": 180487,
       "membership_expire_on": 1704477007,
       "next_cert_issuable_on": 1691641108,
       "certs_received": {
@@ -193816,7 +197796,7 @@
     "SanelaM": {
       "index": 6083,
       "owner_key": "H9ZdP3METYBxdaRg5CFNZmvitxHt1uPaNALPGshAkqi3",
-      "balance": 472835,
+      "balance": 512521,
       "membership_expire_on": 1699624987,
       "next_cert_issuable_on": 1649568759,
       "certs_received": {
@@ -193835,7 +197815,7 @@
     "Luckyluke": {
       "index": 10994,
       "owner_key": "H9gZ8NjTtaepUkw3AxwGnN5id2PH5sapvLa8BUV18QTH",
-      "balance": 389217,
+      "balance": 428903,
       "membership_expire_on": 1701367345,
       "next_cert_issuable_on": 1693212799,
       "certs_received": {
@@ -193850,7 +197830,7 @@
     "Anikka": {
       "index": 9533,
       "owner_key": "H9mzD56QhDiMdZ4icbGbDRsLtGLVuqAGcPpbCQRWMGHV",
-      "balance": 473585,
+      "balance": 491271,
       "membership_expire_on": 1720574680,
       "next_cert_issuable_on": 1692373647,
       "certs_received": {
@@ -193871,7 +197851,7 @@
     "NathanB": {
       "index": 11065,
       "owner_key": "H9uFdo4eyv6MYRCPNwHwhyckDq1ZmnyK8weo4h49zDZ1",
-      "balance": 278035,
+      "balance": 317721,
       "membership_expire_on": 1703789080,
       "next_cert_issuable_on": 1689003847,
       "certs_received": {
@@ -193888,7 +197868,7 @@
     "Jawk": {
       "index": 4433,
       "owner_key": "HA6waKJaYtATd5n2gHi6sh3WNkgEcQyuUbgn6YcQFSga",
-      "balance": 962739,
+      "balance": 1002425,
       "membership_expire_on": 1699311630,
       "next_cert_issuable_on": 1681659542,
       "certs_received": {
@@ -193920,7 +197900,7 @@
     "FredericStephan": {
       "index": 6143,
       "owner_key": "HAA8jFuMm1uTD6r3oqKgtTmQBZYKiv2Uf9kasts4sTvv",
-      "balance": 1022754,
+      "balance": 1116440,
       "membership_expire_on": 1723811312,
       "next_cert_issuable_on": 1682913831,
       "certs_received": {
@@ -193970,7 +197950,7 @@
     "Permaterravie": {
       "index": 4491,
       "owner_key": "HAJkCb7q7Kn1twUCWKJ6C6pe9zmNqJWSshZeWPYaX6yE",
-      "balance": 163335,
+      "balance": 203021,
       "membership_expire_on": 1724254951,
       "next_cert_issuable_on": 1692538441,
       "certs_received": {
@@ -193992,7 +197972,7 @@
     "CeriseCunegonde": {
       "index": 8208,
       "owner_key": "HAScggAvftYjddLT4RvhDyqNov8AaUhLhrEGCmjJAkg6",
-      "balance": 465099,
+      "balance": 504785,
       "membership_expire_on": 1708654211,
       "next_cert_issuable_on": 1677168611,
       "certs_received": {
@@ -194023,7 +198003,7 @@
     "Meryazel": {
       "index": 6902,
       "owner_key": "HAUGSyMxR2J5G2enTTiSa5DGat73CqGszUB5naX4YTYs",
-      "balance": 684685,
+      "balance": 724371,
       "membership_expire_on": 1706968299,
       "next_cert_issuable_on": 1664273339,
       "certs_received": {
@@ -194056,7 +198036,7 @@
     "SilviaTW": {
       "index": 11113,
       "owner_key": "HAZGfnGYsJig48Tko6vyDdFhx884jZxmT2A4YEg5MQtx",
-      "balance": 252609,
+      "balance": 292296,
       "membership_expire_on": 1704414005,
       "next_cert_issuable_on": 1684773262,
       "certs_received": {
@@ -194073,9 +198053,9 @@
     "Pichotilha": {
       "index": 2945,
       "owner_key": "HAZJu2t5Wv7X3H6TnFdxt2YSypM93riq45Jj8LSrRqg5",
-      "balance": 490603,
+      "balance": 530289,
       "membership_expire_on": 1713833565,
-      "next_cert_issuable_on": 1691583374,
+      "next_cert_issuable_on": 1694143423,
       "certs_received": {
         "Gerg": 1712722063,
         "weyando": 1702962740,
@@ -194114,9 +198094,9 @@
     "annefreda": {
       "index": 3024,
       "owner_key": "HAf6ff7J9WToP2Jqy5mSfSte1ftdbiaj4v3dFy5wDY3j",
-      "balance": 426281,
-      "membership_expire_on": 1699439287,
-      "next_cert_issuable_on": 1693444450,
+      "balance": 465967,
+      "membership_expire_on": 1725971093,
+      "next_cert_issuable_on": 1696406266,
       "certs_received": {
         "JessyRipert": 1711909701,
         "Fiorenza11": 1701811557,
@@ -194136,6 +198116,7 @@
         "ClaireMussault": 1699302115,
         "JoelleSQ": 1738180853,
         "Magabrasil2020": 1709195119,
+        "ClaudeFresonnet": 1756683464,
         "Guiaime": 1719225035,
         "Hunzatonic": 1716854075,
         "Ccecile": 1711228874,
@@ -194206,7 +198187,7 @@
       "owner_key": "HAj59p1tBJnzaxadpJ5UZYry8PhtgS1b2TkWMCKrcma5",
       "balance": 368532,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632267363,
+      "next_cert_issuable_on": 0,
       "certs_received": {}
     },
     "CharlotteDucarroir": {
@@ -194220,13 +198201,17 @@
     "carlosrios": {
       "index": 10170,
       "owner_key": "HB2ngqUzJZaBpZqMWHUoEreCGYY7ZfzNysmcwvzNx925",
-      "balance": 257485,
-      "membership_expire_on": 1695515474,
+      "balance": 266947,
+      "membership_expire_on": 1727721389,
       "next_cert_issuable_on": 1688373199,
       "certs_received": {
+        "Sheiladanzas": 1759279711,
         "Ambar": 1751610578,
+        "AlvaroFernandez": 1759595641,
         "riky": 1752248252,
         "Chus": 1730496233,
+        "vjrj": 1759287111,
+        "Cantarelus": 1759279711,
         "CarmenSR": 1730254679,
         "Nauan": 1751408122,
         "Dixebral": 1730003686,
@@ -194249,7 +198234,7 @@
     "Sandra4680": {
       "index": 6399,
       "owner_key": "HB6aKr8YPLS1nwUNq4jkBGppyFWsErpBqmFmYt43r37y",
-      "balance": 378152,
+      "balance": 408152,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -194260,6 +198245,22 @@
         "chronophonix": 1702681090
       }
     },
+    "Mary007": {
+      "index": 13587,
+      "owner_key": "HB8c63LupGBpfa6t8feqXFHoGD1gHCGs7y1xP3EqMPPL",
+      "balance": 22530,
+      "membership_expire_on": 1726423138,
+      "next_cert_issuable_on": 1695224149,
+      "certs_received": {
+        "Moudom": 1758218843,
+        "GuybrushThreepwood": 1758048416,
+        "EmmaD": 1758047439,
+        "Tienno": 1758082608,
+        "ChantAloha": 1758082608,
+        "Hugwilder": 1758051047,
+        "Ciel": 1758052281
+      }
+    },
     "maglieres": {
       "index": 5561,
       "owner_key": "HBAeMH8x69JusbN6fF7RwFvemqoLxYLMfDaXYCSyJVyW",
@@ -194286,7 +198287,7 @@
     "Georges43": {
       "index": 12764,
       "owner_key": "HBHXGjmGvU2ymZXY57otHTiguRgYNDxxfbCjcgbv9UCA",
-      "balance": 146460,
+      "balance": 186146,
       "membership_expire_on": 1716301136,
       "next_cert_issuable_on": 1686824718,
       "certs_received": {
@@ -194300,13 +198301,14 @@
     "MartineG": {
       "index": 10605,
       "owner_key": "HBHk6auF4NG8rntXhvHjH6gTuXHLhiQ1nj52dvqMS73Q",
-      "balance": 392121,
+      "balance": 416807,
       "membership_expire_on": 1699803155,
       "next_cert_issuable_on": 1693099202,
       "certs_received": {
         "Altheaagathe": 1731907953,
         "Chiara07": 1732210101,
         "Centifolia": 1732295060,
+        "Leaulaforet": 1757552508,
         "PorteduCiel": 1732926837,
         "Tchara06": 1732083313,
         "Verdurette06": 1732292633
@@ -194315,7 +198317,7 @@
     "chemalopar": {
       "index": 7305,
       "owner_key": "HBUh1rbx119gwgrqdF7VmUUFVoJaKPvJ5gkHJEG2sCbS",
-      "balance": 178064,
+      "balance": 175750,
       "membership_expire_on": 1704280942,
       "next_cert_issuable_on": 1667309128,
       "certs_received": {
@@ -194365,7 +198367,7 @@
     "Katell": {
       "index": 10285,
       "owner_key": "HBr5yzWGDAa3XTeFe7cpivMBuyTwopzoCFrckssTK7pM",
-      "balance": 327813,
+      "balance": 367499,
       "membership_expire_on": 1699300837,
       "next_cert_issuable_on": 1672549277,
       "certs_received": {
@@ -194382,7 +198384,7 @@
     "Nemo": {
       "index": 11418,
       "owner_key": "HBrWPypqYvtv8eJ53mEuaaUSk2X19mgrJ9ETJKUrCtUS",
-      "balance": 95052,
+      "balance": 134738,
       "membership_expire_on": 1706667435,
       "next_cert_issuable_on": 1675823962,
       "certs_received": {
@@ -194397,7 +198399,7 @@
     "EliseElise": {
       "index": 11485,
       "owner_key": "HC6zGdvVgaFMFXMSYNWiN1XdXjzzskj7yqsHncrU2w3E",
-      "balance": 220680,
+      "balance": 260366,
       "membership_expire_on": 1704495150,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -194421,7 +198423,7 @@
     "GuityDoroudi": {
       "index": 10591,
       "owner_key": "HCCYc81TahxudzNdnz3ak1n4zFByxk4wyDrfAi79S6fc",
-      "balance": 31692,
+      "balance": 41378,
       "membership_expire_on": 1700256088,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -194450,7 +198452,7 @@
     "Elouhann": {
       "index": 4622,
       "owner_key": "HCFteaeCJksVdmAjEqYhYNRRo1VNim6jiia2qYuYMiXt",
-      "balance": 962334,
+      "balance": 1002020,
       "membership_expire_on": 1706107449,
       "next_cert_issuable_on": 1682660277,
       "certs_received": {
@@ -194463,12 +198465,28 @@
         "FleurChenot": 1737665437
       }
     },
+    "AlexCl": {
+      "index": 13489,
+      "owner_key": "HCGQ8q7U44XpQKqG7mosiVHBWpSP8RAayBhpngiiims4",
+      "balance": 36482,
+      "membership_expire_on": 1723591896,
+      "next_cert_issuable_on": 1696341681,
+      "certs_received": {
+        "Psy": 1755220739,
+        "Husam": 1756712487,
+        "Steph41": 1755150478,
+        "ChloeS": 1756617877,
+        "GeraldS": 1756617696,
+        "Mohanad": 1756764711,
+        "levanne": 1755584805
+      }
+    },
     "LabelleVi": {
       "index": 9809,
       "owner_key": "HCGpF2UeM2ppMkTq9f7mdpkngxamEeVBF8rFoG2k5XNc",
-      "balance": 350937,
+      "balance": 390623,
       "membership_expire_on": 1723403513,
-      "next_cert_issuable_on": 1691917913,
+      "next_cert_issuable_on": 1692420568,
       "certs_received": {
         "lims": 1727929389,
         "Afreekash": 1728029409,
@@ -194494,12 +198512,26 @@
         "annefreda": 1711837207
       }
     },
+    "EmilieS": {
+      "index": 13607,
+      "owner_key": "HCNHPstvMcHkNADZN9NQh6cTxpwyEgFa49geSG7Rtyt3",
+      "balance": 59394,
+      "membership_expire_on": 1725822047,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Samay": 1757575464,
+        "sylgiane": 1758078494,
+        "monique79": 1758049595,
+        "fredo79": 1758049345,
+        "SYBON": 1758257760
+      }
+    },
     "Matedi23": {
       "index": 7030,
       "owner_key": "HCV6HP1goDQjnwDXUGrDAaiJDiChtsL1RmVBBLxapq94",
-      "balance": 668305,
-      "membership_expire_on": 1700266468,
-      "next_cert_issuable_on": 1693265493,
+      "balance": 620091,
+      "membership_expire_on": 1727091080,
+      "next_cert_issuable_on": 1696690789,
       "certs_received": {
         "jaenyph": 1707297609,
         "Stejulemont": 1707320305,
@@ -194509,6 +198541,7 @@
         "Alfybe": 1707710505,
         "Solesan": 1726129243,
         "pastachutta1964": 1751665882,
+        "Fox": 1757489222,
         "Sylou": 1713991297,
         "lumirose": 1720029506,
         "FrankDeMey": 1717453276,
@@ -194540,7 +198573,7 @@
     "Ginee974": {
       "index": 6421,
       "owner_key": "HCWcaR3zhU7ReewYL6updy5p3feLwUtgos3XDdApJJ68",
-      "balance": 657541,
+      "balance": 697227,
       "membership_expire_on": 1706269996,
       "next_cert_issuable_on": 1689047113,
       "certs_received": {
@@ -194582,40 +198615,52 @@
     "mat14": {
       "index": 2987,
       "owner_key": "HCdCq6cmXyHpptn92QtVxSsMuKFnnsHLdEvo5x3yKJzr",
-      "balance": 158954,
+      "balance": 33640,
       "membership_expire_on": 1712658341,
-      "next_cert_issuable_on": 1665313514,
+      "next_cert_issuable_on": 1694129930,
       "certs_received": {
         "Libertiste": 1698206956,
-        "Habi": 1695508075,
-        "Diego528": 1696371536,
         "Cyrius666": 1717376329,
         "Helene-petiteriviere": 1718990569,
         "Caroleluciole": 1698894156,
         "Trayx": 1718747839,
-        "Marcelin": 1701468534,
+        "Marcelin": 1757173130,
         "Paola": 1708317195,
         "BRIGITTE2019": 1697749848,
-        "zaza": 1694356837,
+        "zaza": 1757173130,
         "PascalGuillemain": 1697345273,
         "Myriam1912": 1719735308,
-        "Parpalhon": 1694544808
+        "Parpalhon": 1757173130
       }
     },
     "Sebik": {
       "index": 4253,
       "owner_key": "HCe2JEfLdNc2Me6k3ukGEtQhoog2D5HGWSNkGWoDSCc2",
-      "balance": 676364,
+      "balance": 667264,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1645593481,
       "certs_received": {
         "gautz": 1709599010
       }
     },
+    "Dany4972": {
+      "index": 13520,
+      "owner_key": "HCggEK16kVFQWDpaPCHQ56ZCh3rGoEKoCB8MaqXNLrKK",
+      "balance": 36120,
+      "membership_expire_on": 1725383222,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "PhilAngel": 1757228681,
+        "Diabolo": 1757039156,
+        "AlphaCentauri": 1757037940,
+        "miminanou": 1757039561,
+        "AdeT": 1757038755
+      }
+    },
     "Brinat": {
       "index": 7457,
       "owner_key": "HCmB14kpsTihR1F3cQFcABp3AdbhtgjjyscLrKeHGCyF",
-      "balance": 383407,
+      "balance": 423093,
       "membership_expire_on": 1718990293,
       "next_cert_issuable_on": 1660821915,
       "certs_received": {
@@ -194659,7 +198704,7 @@
     "AlineMarion": {
       "index": 13315,
       "owner_key": "HCtEU3Hz6zwsxejMKJNw93fYja9kgkkDH57HU4Toa4SB",
-      "balance": 27768,
+      "balance": 67454,
       "membership_expire_on": 1721147251,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -194673,7 +198718,7 @@
     "Brigw": {
       "index": 11429,
       "owner_key": "HCv7F2jngFMjFSZMTWdktwG2AipdzMTVbKzY9r3aWopG",
-      "balance": 215860,
+      "balance": 255546,
       "membership_expire_on": 1706362449,
       "next_cert_issuable_on": 1688777191,
       "certs_received": {
@@ -194709,7 +198754,7 @@
     "Alipio": {
       "index": 12426,
       "owner_key": "HD4xfDYY7tV2uN89cHY4qBz6ehSNWyKxzkC4648KKsYB",
-      "balance": 301503,
+      "balance": 307889,
       "membership_expire_on": 1713541794,
       "next_cert_issuable_on": 1689335687,
       "certs_received": {
@@ -194739,7 +198784,7 @@
     "Kalitva": {
       "index": 13161,
       "owner_key": "HDWhBaDjZ4U3sjkqgmqSuTwVfb9S8B5ifMfUCV9df547",
-      "balance": 72332,
+      "balance": 112018,
       "membership_expire_on": 1720871779,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -194747,6 +198792,7 @@
         "reG1nald": 1753001741,
         "AgnesJs": 1752441633,
         "Shinix63": 1752468544,
+        "MikaPac": 1757175285,
         "Bastien6238": 1752468544,
         "SELHENIA": 1752441935
       }
@@ -194762,7 +198808,7 @@
     "malo": {
       "index": 12353,
       "owner_key": "HDnR5XVu47fVqAyxDQEfgNLGQmZpS3RMmTbefRMRnMku",
-      "balance": 147384,
+      "balance": 187070,
       "membership_expire_on": 1712782330,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -194776,7 +198822,7 @@
     "natfree": {
       "index": 468,
       "owner_key": "HDoF4oCLGTtVBPmM7KRMqmh1TU5ZsgCWLDbbPTBHWGMM",
-      "balance": 1873353,
+      "balance": 1913039,
       "membership_expire_on": 1698610965,
       "next_cert_issuable_on": 1676145970,
       "certs_received": {
@@ -194791,7 +198837,7 @@
     "Julienwawrzynowicz": {
       "index": 13275,
       "owner_key": "HDutrtsrtGicrDGxZ2t2pPGqGw6TCc9YXc4Umbu1e39N",
-      "balance": 118776,
+      "balance": 158462,
       "membership_expire_on": 1722257908,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -194822,18 +198868,21 @@
     "GuillermoHarmonia": {
       "index": 10176,
       "owner_key": "HEMabwTFFSdQUTCrKjzNgztATQcQAE3sMGdbnWFNt6C2",
-      "balance": 133900,
-      "membership_expire_on": 1698973865,
-      "next_cert_issuable_on": 1688789122,
+      "balance": 162376,
+      "membership_expire_on": 1725535770,
+      "next_cert_issuable_on": 1696747717,
       "certs_received": {
         "ErickG_G": 1730700738,
         "AfricadeHarmonia": 1738172217,
+        "unica": 1759792748,
         "Rita74": 1731366735,
         "Asunartesana": 1730564094,
         "AlexanderT": 1751540612,
         "RainbowQueen": 1730532989,
+        "mariabiodanza": 1757378446,
         "JulianMF": 1730535032,
         "criscoutinho": 1730531976,
+        "marijobe": 1759821794,
         "Pavelito": 1736447697,
         "Anadi": 1738225511,
         "SandraHeleno": 1730570114,
@@ -194859,7 +198908,7 @@
     "BaltaMed": {
       "index": 9311,
       "owner_key": "HERXQMynyQ6Ux5aHWrzD5B6TjrSf2pq26ZuYzu18ha2Z",
-      "balance": 215424,
+      "balance": 407511,
       "membership_expire_on": 1716306909,
       "next_cert_issuable_on": 1688615844,
       "certs_received": {
@@ -194918,12 +198967,11 @@
     "SandraHeleno": {
       "index": 5717,
       "owner_key": "HEvBhGkLqFHm54VxHAW86h5612yuphftCeB7pSMnafm4",
-      "balance": 86836,
+      "balance": 76282,
       "membership_expire_on": 1715973862,
-      "next_cert_issuable_on": 1689997617,
+      "next_cert_issuable_on": 1695984991,
       "certs_received": {
         "SandrineMala": 1716081556,
-        "kapis": 1694743964,
         "Temarante": 1733377263,
         "FJO-LaV": 1752950218,
         "devihope": 1742544735,
@@ -194934,8 +198982,6 @@
         "Paciencia19": 1713817278,
         "GabrielCohergne": 1729305276,
         "SandraFernandes": 1703622241,
-        "sheveck": 1694812999,
-        "timetale": 1694839228,
         "jvinagre": 1747614427,
         "Lurtxu": 1711088099,
         "Rita74": 1728065835,
@@ -194951,10 +198997,8 @@
         "Shankarina": 1715327963,
         "FerSar": 1744776599,
         "GillesdeGaia": 1748897482,
-        "Dixebral": 1694682710,
         "Brahmaya": 1697167546,
         "RitaRosa": 1717030679,
-        "criscoutinho": 1695016678,
         "llanero": 1718351420,
         "JoseGoncalvesPinto": 1705100314,
         "Bee": 1701225549,
@@ -194964,18 +199008,15 @@
         "LuisaOliveira": 1712359345,
         "Munay": 1724974675,
         "diogocsc": 1742972329,
-        "Rio": 1694962816,
         "MatthieuLatapy": 1755184920,
         "PascaleGaia": 1724998233,
-        "SurfinMaya": 1696537798,
         "Anadi": 1738563578,
         "GuillermoHarmonia": 1736334528,
         "MUSUBI": 1722627274,
         "Naneff": 1726031577,
         "Joaquim": 1722657660,
         "ManuelSoares": 1748646979,
-        "Nadaeoqueparece": 1721414890,
-        "fania": 1694930497
+        "Nadaeoqueparece": 1721414890
       }
     },
     "Loulou": {
@@ -194997,7 +199038,7 @@
     "yannig": {
       "index": 2615,
       "owner_key": "HFTZ8s3Ckkt4KvdZYmv74cG9ukKEpRrUhq4t1zotLxW",
-      "balance": 1098363,
+      "balance": 1138049,
       "membership_expire_on": 1707926134,
       "next_cert_issuable_on": 1684214653,
       "certs_received": {
@@ -195015,20 +199056,22 @@
     "CCecile": {
       "index": 7857,
       "owner_key": "HFTcaep8CbuemJpqRH6YdS5qEaaB2vfgRGNyrMvYkdos",
-      "balance": 359868,
+      "balance": 389054,
       "membership_expire_on": 1709344007,
-      "next_cert_issuable_on": 1693023775,
+      "next_cert_issuable_on": 1695061223,
       "certs_received": {
         "CValentine": 1718827014,
         "LaurePollantru": 1714200730,
         "Gregory": 1714412401,
         "MYCELIUM": 1727746784,
         "Consulmutante": 1714249570,
+        "Bastien-29": 1756610788,
         "Bernadeth": 1751973085,
         "cpriou11": 1736199910,
         "Filou": 1754508091,
         "Cleo59": 1754938053,
         "Genosa": 1714155173,
+        "Belerebel": 1758436149,
         "pomal": 1714149571,
         "DaRocha": 1755938166,
         "Meryazel": 1714192455,
@@ -195063,7 +199106,7 @@
     "richarddumoulin": {
       "index": 12554,
       "owner_key": "HFnY5Nr5ES4daYU6GJT6Bjb671jjbqDCzzTMvCasrYGv",
-      "balance": 126956,
+      "balance": 166642,
       "membership_expire_on": 1713464395,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -195077,7 +199120,7 @@
     "Tony26": {
       "index": 11317,
       "owner_key": "HFoTAFqSb7ga92DPvhD85JKUQajA1AStvML6w69qKSLQ",
-      "balance": 235506,
+      "balance": 275192,
       "membership_expire_on": 1705102579,
       "next_cert_issuable_on": 1675517559,
       "certs_received": {
@@ -195092,12 +199135,13 @@
     "OURSBLANC": {
       "index": 12622,
       "owner_key": "HFpdCyqPeVquJrCzbTHvjVVopFu4RVqenNefsNmu7uX4",
-      "balance": 159649,
+      "balance": 146335,
       "membership_expire_on": 1715117288,
-      "next_cert_issuable_on": 1687347827,
+      "next_cert_issuable_on": 1696767967,
       "certs_received": {
         "DanWF": 1746857091,
         "MartiGraef": 1747030957,
+        "LaureHuber": 1758177727,
         "NaoKD": 1747673731,
         "lilarose": 1750406582,
         "Naxaia13": 1746903133,
@@ -195108,7 +199152,7 @@
     "SilviaGP": {
       "index": 12154,
       "owner_key": "HFsUcnXBFtPHdkNHaTLDkrwQmunQ6Zr5XVgykiGLuvM",
-      "balance": 157208,
+      "balance": 196894,
       "membership_expire_on": 1710788900,
       "next_cert_issuable_on": 1682172290,
       "certs_received": {
@@ -195122,35 +199166,30 @@
     "Patoun": {
       "index": 5665,
       "owner_key": "HFyorWgKBHxmUz8NDAQUCB7dMbdBwZiF9xCTVqeDuWB5",
-      "balance": 537418,
+      "balance": 577104,
       "membership_expire_on": 1716462244,
       "next_cert_issuable_on": 1693351601,
       "certs_received": {
-        "olione": 1693872176,
         "ericve": 1747692402,
+        "rockwater": 1756749664,
         "DominiqueCuvelier": 1702102002,
-        "Mianne": 1694448014,
         "Solesan": 1699863883,
         "MarindChanti": 1714082309,
         "ElaineDana": 1730083208,
-        "LaurentNeuville": 1694297775,
         "Samsan": 1747543656,
-        "martineagatha": 1694297342,
-        "AmandineDupret": 1694296459,
         "InesLaport": 1704918924,
         "Andre208": 1709019939,
         "Coucoudidier": 1709537407,
         "Dionysos": 1698386642,
         "VeroD": 1737829719,
         "Lando": 1708807485,
-        "GeneVieve": 1694072473,
         "Dedolaromy": 1699522952
       }
     },
     "Nigbi2118": {
       "index": 10232,
       "owner_key": "HG1wpECnBx6Mgr3ExGASzF1TudGMnEHaSR6LJaML9mQc",
-      "balance": 347990,
+      "balance": 387676,
       "membership_expire_on": 1698181738,
       "next_cert_issuable_on": 1670736594,
       "certs_received": {
@@ -195166,7 +199205,7 @@
     "Nellishanti": {
       "index": 12697,
       "owner_key": "HG5PzLxGDv7gPmtYnVT8Sk42aiDdjCtWcSCeitFurLtQ",
-      "balance": 136072,
+      "balance": 175758,
       "membership_expire_on": 1715617521,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -195180,7 +199219,7 @@
     "Urticia": {
       "index": 7752,
       "owner_key": "HGHWsbsY39LhbAefTLLzFGKGh8e3crR37UEewTLQMNNc",
-      "balance": 106684,
+      "balance": 146370,
       "membership_expire_on": 1709230648,
       "next_cert_issuable_on": 1677747258,
       "certs_received": {
@@ -195197,7 +199236,7 @@
     "Talonneur73": {
       "index": 7043,
       "owner_key": "HGKPNqAmyv4rzSTJFNJT8vjDktKJtU7EAVvtNt8RHQpa",
-      "balance": 568339,
+      "balance": 608025,
       "membership_expire_on": 1705958004,
       "next_cert_issuable_on": 1663162722,
       "certs_received": {
@@ -195221,15 +199260,19 @@
     "Peps": {
       "index": 4013,
       "owner_key": "HGUsMjk5yNwvdCD6rhg6Z5iyhtttKAVmFn75JoD53tgm",
-      "balance": 1425698,
+      "balance": 1486944,
       "membership_expire_on": 1719325908,
-      "next_cert_issuable_on": 1688283276,
+      "next_cert_issuable_on": 1696749548,
       "certs_received": {
+        "Robisar": 1759798029,
+        "Gemeff": 1758163121,
         "Fleurdusoleil": 1743013745,
         "scanlegentil": 1731980630,
         "phuzen69": 1747066345,
+        "Francki": 1758163121,
         "Annachronik": 1736291452,
-        "GaelleMry": 1702679404
+        "GaelleMry": 1702679404,
+        "Numerus47": 1758258774
       }
     },
     "Vivien": {
@@ -195243,7 +199286,7 @@
     "FredRueff": {
       "index": 8073,
       "owner_key": "HGgqhdgxFfqG3XtcrCwRKxhYC3qXWm9tcisFvQNJteWM",
-      "balance": 696998,
+      "balance": 736684,
       "membership_expire_on": 1710936823,
       "next_cert_issuable_on": 1684259710,
       "certs_received": {
@@ -195271,7 +199314,7 @@
     "FrancoisLassept": {
       "index": 6620,
       "owner_key": "HGmPftYmNSc6uW32wNW3mi3tGfECzpujtWo6HZWHdgnx",
-      "balance": 516942,
+      "balance": 556628,
       "membership_expire_on": 1712833981,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -195279,7 +199322,7 @@
         "TaaniTheophile": 1704606590,
         "jnaroun": 1702926078,
         "Jean": 1704514103,
-        "DominiqueRoudiere": 1703117257
+        "DominiqueRoudiere": 1759096470
       }
     },
     "mehdi": {
@@ -195301,7 +199344,7 @@
     "MarieAngevin13": {
       "index": 7657,
       "owner_key": "HH3vXH5AE5mCGzSKEbTxJKt4NgAUB5hUviVCDXgkbEJS",
-      "balance": 373941,
+      "balance": 413627,
       "membership_expire_on": 1708445592,
       "next_cert_issuable_on": 1680307207,
       "certs_received": {
@@ -195316,7 +199359,7 @@
     "arc-en-ciel": {
       "index": 12024,
       "owner_key": "HH4i6V6UrtJ4W7UPJieJs5qLTPUWKv9yZRD5Th5HYfL6",
-      "balance": 177261,
+      "balance": 216947,
       "membership_expire_on": 1710273325,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -195330,7 +199373,7 @@
     "MPY": {
       "index": 11870,
       "owner_key": "HH77JdAU1iHQ3v8ssw1kiZfjBQagCBKva1KDG2je2Qjs",
-      "balance": 202587,
+      "balance": 242273,
       "membership_expire_on": 1706924064,
       "next_cert_issuable_on": 1678696132,
       "certs_received": {
@@ -195375,7 +199418,7 @@
     "YvesHardy": {
       "index": 11992,
       "owner_key": "HHH5MSdPbfb2az33mUr4jjZXDFJbqzoCTwWYC8eNHCh7",
-      "balance": 181497,
+      "balance": 221183,
       "membership_expire_on": 1710268126,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -195399,7 +199442,7 @@
     "Hadalem31": {
       "index": 7155,
       "owner_key": "HHR3Fm2TJmCerkpYZhowPuw7Qr8mUhfBzCryMKG38Ujb",
-      "balance": 548688,
+      "balance": 588374,
       "membership_expire_on": 1711420317,
       "next_cert_issuable_on": 1659715392,
       "certs_received": {
@@ -195414,8 +199457,8 @@
     "SaraHooponopono": {
       "index": 9636,
       "owner_key": "HHRMgbfAwTJNBgWvqnwLyJJFNNQVGaKzvEzBgPVWEYq6",
-      "balance": 365645,
-      "membership_expire_on": 1693613182,
+      "balance": 366713,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "MarieL81": 1725476621,
@@ -195429,8 +199472,8 @@
     "EnPaix": {
       "index": 10413,
       "owner_key": "HHUmgmC8AZPxDbRcqWdQYyhyi1aC3vCY5rjPmnCqEvgY",
-      "balance": 304441,
-      "membership_expire_on": 1696175258,
+      "balance": 337659,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Kimoto": 1727830120,
@@ -195451,7 +199494,7 @@
     "CARO4510": {
       "index": 13398,
       "owner_key": "HHgMNaHsPicSVc7UiM7tEsxqWVvShhf52PJ75aCPNRXU",
-      "balance": 14816,
+      "balance": 54502,
       "membership_expire_on": 1723299900,
       "next_cert_issuable_on": 1692939565,
       "certs_received": {
@@ -195481,7 +199524,7 @@
     "AMANDE": {
       "index": 7032,
       "owner_key": "HHr3PEtMCxzR3P94MV1iP5ZDRFJ5tw7rqfrMUiL63C7D",
-      "balance": 493339,
+      "balance": 533025,
       "membership_expire_on": 1707164138,
       "next_cert_issuable_on": 1677461569,
       "certs_received": {
@@ -195506,7 +199549,7 @@
     "Nick4911": {
       "index": 12514,
       "owner_key": "HJ1oVCMB5kHGXGP73jTQa4bs8CMwkMRkjvCGSxpFgkvG",
-      "balance": 243728,
+      "balance": 283414,
       "membership_expire_on": 1714396939,
       "next_cert_issuable_on": 1690268309,
       "certs_received": {
@@ -195521,7 +199564,7 @@
     "Babayaya": {
       "index": 8979,
       "owner_key": "HJ5b7mFzjFpxCTbj7sM3fXW6HQDVZPbhhh7yMjJSuk2C",
-      "balance": 316668,
+      "balance": 356354,
       "membership_expire_on": 1717291329,
       "next_cert_issuable_on": 1670747424,
       "certs_received": {
@@ -195538,9 +199581,9 @@
     "Cedric77": {
       "index": 10216,
       "owner_key": "HJ5eQviubc4HoVcN1EuVngxYMVv1YDihJzgxVH7rRFU1",
-      "balance": 34275,
-      "membership_expire_on": 1697661429,
-      "next_cert_issuable_on": 1678449982,
+      "balance": 43961,
+      "membership_expire_on": 1725564479,
+      "next_cert_issuable_on": 1694078879,
       "certs_received": {
         "Jeff7791": 1741124126,
         "lindsaymalytai": 1730862394,
@@ -195555,13 +199598,12 @@
     "Damery": {
       "index": 1796,
       "owner_key": "HJ7U5CeYLQZrP76yRP7WgHnMvJggxeTTYW8wDJDwf42f",
-      "balance": 1149827,
+      "balance": 1282891,
       "membership_expire_on": 1707575728,
-      "next_cert_issuable_on": 1692741812,
+      "next_cert_issuable_on": 1696547327,
       "certs_received": {
         "SophSav": 1705718775,
         "Nicolas": 1750363875,
-        "Stessy": 1694903148,
         "PhilippeGua53": 1728887432,
         "etnebab": 1733183830,
         "Nelsonchapiteau": 1698449734,
@@ -195578,7 +199620,6 @@
         "Evy": 1754441660,
         "Florencefleur": 1719265363,
         "Espritangel": 1716431832,
-        "NeyKrom": 1694736487,
         "MoulinMuriel": 1697254984,
         "DavidMontpellier": 1723306601,
         "HenriCotonnec": 1734728769,
@@ -195592,15 +199633,17 @@
         "AdrienBois": 1753157779,
         "flodef": 1753511815,
         "CelYinYang": 1748578033,
-        "AnneMarieRuiz": 1742079052
+        "Elleiramt10": 1757229089,
+        "AnneMarieRuiz": 1742079052,
+        "tatinetteb": 1757992593
       }
     },
     "Mmemonica": {
       "index": 11952,
       "owner_key": "HJ9HKMsynq2KQQzJDd6YUt9yUbr6GpmnQPfAkGFZ8ht1",
-      "balance": 282238,
+      "balance": 532368,
       "membership_expire_on": 1710096717,
-      "next_cert_issuable_on": 1692084706,
+      "next_cert_issuable_on": 1696252438,
       "certs_received": {
         "MarineDR": 1742609310,
         "BudFox": 1744573920,
@@ -195611,12 +199654,15 @@
         "Fox": 1741683217,
         "phidelo": 1751690304,
         "etsaman": 1754145548,
+        "tangosol": 1759468910,
         "Elik": 1744273784,
         "AgnesJs": 1752972469,
         "Pocahontas": 1745867803,
         "Domi418": 1746205151,
         "YugavanOrloff": 1741674535,
+        "Augusta24": 1759255936,
         "JeePofMars": 1753665815,
+        "Naho": 1757718343,
         "StellinaStellina": 1743710638,
         "AnnC57": 1751478359,
         "LudusArenaConcept": 1744242222,
@@ -195624,6 +199670,7 @@
         "LaSoyeFee": 1746340540,
         "Pascalelarsille": 1741723268,
         "Paola": 1749530283,
+        "chapo": 1759352649,
         "ChristopheVolckaert": 1750910143,
         "Vio": 1743302750,
         "MARIE-PIERRE": 1741666062,
@@ -195654,7 +199701,7 @@
     "Hrodrikz": {
       "index": 9024,
       "owner_key": "HJHQT5sHqNPmwKpKNEhQjL4RKFUDaYaNvZSc2mDfurs1",
-      "balance": 365878,
+      "balance": 405564,
       "membership_expire_on": 1724891745,
       "next_cert_issuable_on": 1659233435,
       "certs_received": {
@@ -195672,20 +199719,14 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1674360154,
       "certs_received": {
-        "IngridCourreges": 1696421398,
-        "Eric": 1694558232,
         "Kittinyani": 1723580703,
         "CecileM": 1729735538,
         "Juju21": 1703996437,
         "EveC": 1750296124,
         "Supralumen": 1699607805,
-        "sisyphe": 1694557548,
-        "ortie": 1694557894,
         "thierryR51": 1714073221,
-        "s00999": 1694558232,
         "Lydie": 1703171681,
         "Melek": 1703053442,
-        "toutoune2189": 1694558589,
         "Ninette89": 1748405256,
         "Keramina51": 1707340809,
         "CovaDidier": 1714021877
@@ -195694,7 +199735,7 @@
     "ClaudeTheys": {
       "index": 12133,
       "owner_key": "HJSFVQGVFT5LmpLcv8D93JTQEPC9Bak2hxxnHtkYxCNS",
-      "balance": 175744,
+      "balance": 184430,
       "membership_expire_on": 1710605909,
       "next_cert_issuable_on": 1680506616,
       "certs_received": {
@@ -195708,15 +199749,16 @@
     "naturel89": {
       "index": 12728,
       "owner_key": "HJUmqCoYShsEWTZxPrx8ACAEVr1Lw1ms98Ev8apTAZ56",
-      "balance": 148800,
+      "balance": 196486,
       "membership_expire_on": 1714943965,
-      "next_cert_issuable_on": 1691212652,
+      "next_cert_issuable_on": 1694420523,
       "certs_received": {
         "gui_tooun": 1746605572,
         "VBVF": 1746930496,
         "Pashi": 1747008413,
         "Luna": 1748301706,
         "Shaypalgv": 1747236918,
+        "Clo": 1759123700,
         "Cassie": 1748326248,
         "Ninette89": 1747081872
       }
@@ -195724,7 +199766,7 @@
     "Clairemac": {
       "index": 13367,
       "owner_key": "HJYeaKyi4uoTmRwH2uSXNo6hRWuGdV5M3VE9KFD4BV45",
-      "balance": 28256,
+      "balance": 67942,
       "membership_expire_on": 1723303827,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -195738,7 +199780,7 @@
     "GastonLagafe": {
       "index": 9127,
       "owner_key": "HJb5LgiFhNCyHDCAxL1gBgT6FNuPQk8nm75oDAizBRHB",
-      "balance": 26103,
+      "balance": 65789,
       "membership_expire_on": 1719316795,
       "next_cert_issuable_on": 1690708284,
       "certs_received": {
@@ -195756,9 +199798,9 @@
     "isabelleirigoin": {
       "index": 11840,
       "owner_key": "HJcAYuhtpYZ2C4AKUxtRvJCj8ZeL3FZFw2uYfYdNoMTs",
-      "balance": 107453,
+      "balance": 83139,
       "membership_expire_on": 1709306692,
-      "next_cert_issuable_on": 1692761985,
+      "next_cert_issuable_on": 1696771188,
       "certs_received": {
         "FrankDeMey": 1740898497,
         "Barbatruc": 1755974612,
@@ -195775,7 +199817,7 @@
     "CelYinYang": {
       "index": 8350,
       "owner_key": "HJo2PfNUdGw9E3Vj9snaRQc8bQqNSEa3nxehfhznVUPv",
-      "balance": 145138,
+      "balance": 94824,
       "membership_expire_on": 1711845909,
       "next_cert_issuable_on": 1693395830,
       "certs_received": {
@@ -195800,12 +199842,13 @@
     "Nini65": {
       "index": 13469,
       "owner_key": "HJxdvsuAGyjnHDJVHGrBupbHyKzrCixZY6GXhVVGuwZS",
-      "balance": 25612,
+      "balance": 65298,
       "membership_expire_on": 1724525754,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Corine": 1756579707,
         "NAMA-STE": 1756584612,
+        "Gabrimiel": 1756576131,
         "RoryKiwi": 1756584016,
         "YATO": 1756576598,
         "Ninon914": 1756583723
@@ -195822,12 +199865,13 @@
     "Danie": {
       "index": 6956,
       "owner_key": "HK3XzRtJV2MNJH52ZMbK6hweJU4wsngpoqrkNyPt7SJq",
-      "balance": 279359,
+      "balance": 272545,
       "membership_expire_on": 1703107742,
-      "next_cert_issuable_on": 1692064312,
+      "next_cert_issuable_on": 1695445240,
       "certs_received": {
         "Felixzekat": 1707882116,
         "Renzo": 1747233158,
+        "MurielleMuMu": 1758078104,
         "Malena58": 1751174388,
         "Philp": 1736298044,
         "Libellule58": 1745120225,
@@ -195858,7 +199902,7 @@
     "stephsfo": {
       "index": 12527,
       "owner_key": "HK4wDtXnaWrdkm8bk86yrCD6u32Z7Hjnx8AmfMUJVsE3",
-      "balance": 134360,
+      "balance": 174046,
       "membership_expire_on": 1710612951,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -195872,7 +199916,7 @@
     "MikaAllianceEvasion": {
       "index": 12226,
       "owner_key": "HK6UPGupU5XnxPB5QH7rYCdu9EJ23W2PDByajNh5YpM9",
-      "balance": 159132,
+      "balance": 198818,
       "membership_expire_on": 1711759002,
       "next_cert_issuable_on": 1689095800,
       "certs_received": {
@@ -195901,10 +199945,24 @@
         "JuanraKalinga": 1723224096
       }
     },
+    "nicolascartiaux": {
+      "index": 13649,
+      "owner_key": "HKEP6DGNk5cHL8HokoeJfQe4pyhYBC6XuL3TsoEN11Wh",
+      "balance": 29092,
+      "membership_expire_on": 1724967774,
+      "next_cert_issuable_on": 1696420009,
+      "certs_received": {
+        "Anne-SophieL88": 1756710620,
+        "GuillaumeL88": 1756619507,
+        "Yamu": 1756948203,
+        "sandrinedesicy26": 1756538684,
+        "ChristineWilloth26": 1758568170
+      }
+    },
     "Annabelle": {
       "index": 4706,
       "owner_key": "HKFFAm6fHXMaY8SKLw61fSvxtCmW3DRZ4XiheLGCdPmC",
-      "balance": 302242,
+      "balance": 341928,
       "membership_expire_on": 1709405331,
       "next_cert_issuable_on": 1677919731,
       "certs_received": {
@@ -195920,7 +199978,7 @@
     "Elisa": {
       "index": 4558,
       "owner_key": "HKFyuKuxsNoVkg3vcgQ9WAvjH1gEgFHPxisSVSqktuCB",
-      "balance": 824286,
+      "balance": 863972,
       "membership_expire_on": 1698174362,
       "next_cert_issuable_on": 1684243780,
       "certs_received": {
@@ -195943,7 +200001,7 @@
     "Arran": {
       "index": 4658,
       "owner_key": "HKGqN5RL5G1Lz3vSm3B1EEC8KncbBfn1HFbukopUYZXL",
-      "balance": 833591,
+      "balance": 873277,
       "membership_expire_on": 1702328409,
       "next_cert_issuable_on": 1671722640,
       "certs_received": {
@@ -195959,8 +200017,8 @@
     "Lily7997": {
       "index": 9707,
       "owner_key": "HKJbZsHF8o1xrCgrMfPKHMZVb4FpzC3tCYPQuXEVUygz",
-      "balance": 227527,
-      "membership_expire_on": 1695920972,
+      "balance": 257511,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1682669227,
       "certs_received": {
         "NathalieCatelin": 1727501421,
@@ -195975,7 +200033,7 @@
     "Palo": {
       "index": 9335,
       "owner_key": "HKKLiBuJLJ8XNyorTJp4BjRg5rkMZvxiRsmtdUNpS6cR",
-      "balance": 338054,
+      "balance": 377740,
       "membership_expire_on": 1718371342,
       "next_cert_issuable_on": 1687285960,
       "certs_received": {
@@ -196003,7 +200061,7 @@
     "Elior": {
       "index": 4181,
       "owner_key": "HKbTSCHUQ65FYiJWq7CWzUVdCmCP19Ay8HUXu9p4Bw6P",
-      "balance": 1016488,
+      "balance": 1056174,
       "membership_expire_on": 1701525763,
       "next_cert_issuable_on": 1679196030,
       "certs_received": {
@@ -196017,7 +200075,7 @@
     "NoraF": {
       "index": 2468,
       "owner_key": "HKdeFKRJV3amNADQaW1upjYL6fAzQmDAzMpafkam9Fh9",
-      "balance": 980664,
+      "balance": 1020350,
       "membership_expire_on": 1714218243,
       "next_cert_issuable_on": 1671102841,
       "certs_received": {
@@ -196032,7 +200090,7 @@
     "Marpasito": {
       "index": 11353,
       "owner_key": "HKecQHTsN9KiK3pYXuueFSMmuyWuKXxfF66MhpfFmq1h",
-      "balance": 232329,
+      "balance": 272015,
       "membership_expire_on": 1706053860,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -196046,7 +200104,7 @@
     "sandra": {
       "index": 10647,
       "owner_key": "HKiqJTG9fDuKAZBzUySd4kVw3NdJmR9K4aRv55uSSDxP",
-      "balance": 628176,
+      "balance": 667862,
       "membership_expire_on": 1701035521,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -196061,7 +200119,7 @@
     "JulieD": {
       "index": 9559,
       "owner_key": "HKqfcWr3Q3NnvyxThyzdSFrpjkWAxi9eEa8a1K7jdoZ9",
-      "balance": 369983,
+      "balance": 409669,
       "membership_expire_on": 1723764421,
       "next_cert_issuable_on": 1686016518,
       "certs_received": {
@@ -196080,9 +200138,9 @@
     "CatherineMaire": {
       "index": 2803,
       "owner_key": "HKsbAx1UQQ6xouLGUZxmfyPjbxFaAF7qoMSwypq3vQAu",
-      "balance": 660545,
-      "membership_expire_on": 1696902158,
-      "next_cert_issuable_on": 1683110667,
+      "balance": 600231,
+      "membership_expire_on": 1726862643,
+      "next_cert_issuable_on": 1695378134,
       "certs_received": {
         "Guerie": 1696890111,
         "Vivakvo": 1749452808,
@@ -196090,16 +200148,16 @@
         "LoicRollangMaire": 1718252754,
         "Kativanna": 1715899436,
         "OlivierMaurice": 1735008406,
-        "JeanMarcBuge": 1696915599,
+        "JeanMarcBuge": 1759037009,
         "manidou": 1696893903,
         "Marionrosa": 1713116117,
-        "Fablap12": 1698188854
+        "Fablap12": 1758584859
       }
     },
     "emaublanc": {
       "index": 1575,
       "owner_key": "HKufmjHQaQmQ88FuBxosPKAnUY2iScrxMVVHR4XByt21",
-      "balance": 603728,
+      "balance": 643414,
       "membership_expire_on": 1708271078,
       "next_cert_issuable_on": 1676817656,
       "certs_received": {
@@ -196117,7 +200175,7 @@
     "Marielac": {
       "index": 9021,
       "owner_key": "HKyaQBBrsRJhYTKZqsZJakmKrWg1Zi9vZPRBeJ2KdGRM",
-      "balance": 601470,
+      "balance": 641156,
       "membership_expire_on": 1716376927,
       "next_cert_issuable_on": 1692018836,
       "certs_received": {
@@ -196166,10 +200224,24 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Susana-Queijo-Barroco": {
+      "index": 13707,
+      "owner_key": "HL3vX7CyFctv2yVmn1mM45CQ16L9EoGTfLUKNHtiTkmm",
+      "balance": 29868,
+      "membership_expire_on": 1727469771,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "anaoj": 1759033800,
+        "JoseAntonio": 1759033800,
+        "Munay": 1759042495,
+        "SandraHeleno": 1759028191,
+        "Joaquim": 1759033800
+      }
+    },
     "Jean-Lo35": {
       "index": 11192,
       "owner_key": "HL6ATapSFM4aM5KdVpjxXAXim8RGz6jVVBJphn37DW8b",
-      "balance": 1600176,
+      "balance": 1639862,
       "membership_expire_on": 1704400901,
       "next_cert_issuable_on": 1681024509,
       "certs_received": {
@@ -196185,7 +200257,7 @@
     "Sarah": {
       "index": 7042,
       "owner_key": "HLEk8iTb7vX6bzmNTHapsM24bmsxdWCvDjqsP2JuYhNd",
-      "balance": 588439,
+      "balance": 628125,
       "membership_expire_on": 1700770143,
       "next_cert_issuable_on": 1669284315,
       "certs_received": {
@@ -196200,7 +200272,7 @@
     "sophiepoyans": {
       "index": 11579,
       "owner_key": "HLFxrtmbq7z8sWoG2SCtm4T315HRZrYWKQoFzimhvRY7",
-      "balance": 200417,
+      "balance": 220103,
       "membership_expire_on": 1705088823,
       "next_cert_issuable_on": 1690724186,
       "certs_received": {
@@ -196218,7 +200290,7 @@
     "Inaya971": {
       "index": 12672,
       "owner_key": "HLMHMR19SoUmGcPWC1u1DLjaKuc6W7NjeYm5vtgRQWMA",
-      "balance": 137176,
+      "balance": 173862,
       "membership_expire_on": 1715634583,
       "next_cert_issuable_on": 1684920033,
       "certs_received": {
@@ -196244,8 +200316,8 @@
     "Kati": {
       "index": 9248,
       "owner_key": "HLMbBuZP732SUtP9UXN8gumZmu1XH6cXzTMg5AGZzDd1",
-      "balance": 367148,
-      "membership_expire_on": 0,
+      "balance": 370382,
+      "membership_expire_on": 1727981116,
       "next_cert_issuable_on": 1661401960,
       "certs_received": {
         "MaudD": 1723746511,
@@ -196261,9 +200333,9 @@
     "OrganikSolution": {
       "index": 12196,
       "owner_key": "HLStKvvFHzG2MHkKLqNh84M3u9fwV7Wx47kw52i58s7m",
-      "balance": 945545,
+      "balance": 1071938,
       "membership_expire_on": 1711840018,
-      "next_cert_issuable_on": 1686375954,
+      "next_cert_issuable_on": 1696348745,
       "certs_received": {
         "Alfonso": 1743398240,
         "Naturkike": 1752108766,
@@ -196272,6 +200344,7 @@
         "edubotaoo": 1743397618,
         "nussyna": 1749796351,
         "JoanaGomez": 1750926465,
+        "MaestroJorge": 1758699576,
         "MaiteBel": 1745461338,
         "Rodando": 1743400182,
         "AndresXaudi": 1749926522,
@@ -196281,7 +200354,7 @@
     "daguetBR": {
       "index": 8452,
       "owner_key": "HLbidcYZSXJHGn7hM9nCAKWtP9GRBxnGQCpmcona8vM6",
-      "balance": 473230,
+      "balance": 512916,
       "membership_expire_on": 1713194962,
       "next_cert_issuable_on": 1683116625,
       "certs_received": {
@@ -196317,6 +200390,20 @@
         "Wipsita": 1720426184
       }
     },
+    "lilasDAO": {
+      "index": 13712,
+      "owner_key": "HLpTZXx1ZtYWk1LJc6r9nbvN6meQ2hKkBPVkkGgZpDbr",
+      "balance": 47468,
+      "membership_expire_on": 1725308724,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "RomainKornig": 1759261931,
+        "pema": 1759261931,
+        "Thouanne84": 1759295265,
+        "zenbio": 1759262365,
+        "SofianneErler": 1759337053
+      }
+    },
     "tomato": {
       "index": 6937,
       "owner_key": "HLrbZ5dfSUeou8nPYEUcQMk1TpLczHNLA2EuqJ7ZEqpY",
@@ -196344,19 +200431,21 @@
     "Lama": {
       "index": 10521,
       "owner_key": "HLt8n9TLJqyBr5qzGiCwP65qg4UoYNkY4GMnnSKjNX6A",
-      "balance": 602085,
-      "membership_expire_on": 1698175648,
-      "next_cert_issuable_on": 1690910870,
+      "balance": 680024,
+      "membership_expire_on": 1725059561,
+      "next_cert_issuable_on": 1696052142,
       "certs_received": {
         "ChristopheG25": 1748151428,
         "Elorac": 1750193304,
         "Wiwi": 1731719800,
+        "Cle": 1757550850,
         "yasminaB": 1754592610,
         "Jag": 1742949789,
         "ENO": 1732167361,
         "Brigitte71": 1748981564,
         "Linh21": 1747389051,
         "Arkenssiel25": 1738279291,
+        "HectorG1": 1759374476,
         "Marido2563": 1750488810,
         "Vi111": 1732068588,
         "twistol": 1752393675,
@@ -196382,7 +200471,7 @@
     "smartini": {
       "index": 11965,
       "owner_key": "HLuC5RhGKSe3JTtFE8rpG8iFn1CrqVKBTVWw2bW3mPSX",
-      "balance": 232556,
+      "balance": 272242,
       "membership_expire_on": 1710035493,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -196409,7 +200498,7 @@
     "Amour": {
       "index": 7261,
       "owner_key": "HM6SbvZsv3qrWDYwRRcKphcLxebr62xend1HCfZ79naq",
-      "balance": 578641,
+      "balance": 618327,
       "membership_expire_on": 1704572198,
       "next_cert_issuable_on": 1680687042,
       "certs_received": {
@@ -196427,19 +200516,12 @@
       "balance": 365269,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "CELIOCTAVE": 1695626688,
-        "Paul-B": 1695060515,
-        "Lucas_Desroches": 1696205533,
-        "EveC": 1694931492,
-        "Will_Desroches": 1696226945,
-        "Chantegrive": 1695000743
-      }
+      "certs_received": {}
     },
     "SarahWEISS": {
       "index": 4599,
       "owner_key": "HM6pdumvw7xtEqmU9pPh7SFScKMjsbGaMt5p62QVoxB2",
-      "balance": 442617,
+      "balance": 482303,
       "membership_expire_on": 1703013356,
       "next_cert_issuable_on": 1671527756,
       "certs_received": {
@@ -196456,9 +200538,9 @@
     "Cocoyarouge": {
       "index": 13387,
       "owner_key": "HM8Rp7ZoCENhHc4UK622u2QrKypguR11kTjzmnhHSaMP",
-      "balance": 128752,
+      "balance": 153438,
       "membership_expire_on": 1723303049,
-      "next_cert_issuable_on": 1693271788,
+      "next_cert_issuable_on": 1696732573,
       "certs_received": {
         "Nati": 1755309655,
         "Kouleurs": 1755319702,
@@ -196472,25 +200554,25 @@
     "Lanthanide": {
       "index": 2852,
       "owner_key": "HMAdPeyuG5EiTKDHrkdfprSjryW6kFLv6MCc9AVbqWXT",
-      "balance": 1405842,
-      "membership_expire_on": 1700449646,
+      "balance": 1445528,
+      "membership_expire_on": 1727172210,
       "next_cert_issuable_on": 1661739309,
       "certs_received": {
         "HugoTrentesaux": 1699163593,
         "fabiennezuttre": 1743486134,
         "Vajrabro": 1731916765,
-        "gerard94": 1698984692,
+        "gerard94": 1758403765,
         "nox": 1698708757,
         "lilithdu34": 1699378925,
         "MissSophie": 1700802194,
         "PaLaCiDu53": 1724723475,
-        "Damery": 1694826530
+        "Damery": 1758160524
       }
     },
     "Reveusepure": {
       "index": 11263,
       "owner_key": "HMGVB14DLR6PTaJYKxZp9SnKoqZVEHQbfJxCWCCTUN9R",
-      "balance": 723556,
+      "balance": 363242,
       "membership_expire_on": 1702423554,
       "next_cert_issuable_on": 1689609853,
       "certs_received": {
@@ -196509,9 +200591,9 @@
     "Ton20": {
       "index": 9241,
       "owner_key": "HMGynE3U1Fo9dxPrj1NidHkirtSGpcyHRmnv7kBXTU2Q",
-      "balance": 146496,
+      "balance": 176182,
       "membership_expire_on": 1721816397,
-      "next_cert_issuable_on": 1691223575,
+      "next_cert_issuable_on": 1693621023,
       "certs_received": {
         "Rebel": 1723534024,
         "Niranjana": 1723569909,
@@ -196531,10 +200613,29 @@
         "Gclaire": 1741402486
       }
     },
+    "NadiyaPopel": {
+      "index": 13566,
+      "owner_key": "HMHMxFUThXeWbYAfgxdqzpFsr9387ECVbUu3WaW9W5wK",
+      "balance": 577458,
+      "membership_expire_on": 1726099637,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "elenagrizzly": 1757746305,
+        "IISHVARA": 1758344424,
+        "MADHU": 1758347938,
+        "Mariacrea": 1757731267,
+        "ClarySM": 1757705875,
+        "Agroarmonia": 1757710225,
+        "EcoKim": 1757915155,
+        "Wellno1": 1758351701,
+        "christianmermeladas": 1757739431,
+        "BRAHMAMAYA": 1758342108
+      }
+    },
     "MaximeDALLE-AVE": {
       "index": 5254,
       "owner_key": "HMJfZ9odxvyScvoKhsebMEcnXKtL6eXyAwk8QUY221DF",
-      "balance": 838805,
+      "balance": 878491,
       "membership_expire_on": 1717465018,
       "next_cert_issuable_on": 1692806487,
       "certs_received": {
@@ -196549,7 +200650,7 @@
     "harperdoc": {
       "index": 5398,
       "owner_key": "HMLEP5mvRmK9g7kcqKe2VUyhMwQ6zMvHxgK8RUHNnELG",
-      "balance": 485477,
+      "balance": 531331,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1667953889,
       "certs_received": {
@@ -196586,7 +200687,7 @@
     "TAODS": {
       "index": 2275,
       "owner_key": "HMPMon8gd4d81rF3W3GZZxkDsg1WZvkjiMGdKEJwx2HF",
-      "balance": 392213,
+      "balance": 419899,
       "membership_expire_on": 1706137878,
       "next_cert_issuable_on": 1675681949,
       "certs_received": {
@@ -196608,7 +200709,7 @@
     "urkobein": {
       "index": 5432,
       "owner_key": "HMV1UC18BxJRmCpEKFCcMSRxqLWo8qCXrWr8obe4Xugq",
-      "balance": 423782,
+      "balance": 423468,
       "membership_expire_on": 1711028807,
       "next_cert_issuable_on": 1680579025,
       "certs_received": {
@@ -196620,8 +200721,6 @@
         "Solan": 1722136329,
         "Semilla": 1717181302,
         "Patry": 1723362081,
-        "LI21": 1696487879,
-        "JuanCapitan": 1695273236,
         "AlGabal": 1740161232,
         "Leia": 1716566134,
         "elmau": 1729230228,
@@ -196635,7 +200734,6 @@
         "mastres": 1706224045,
         "Kris_Izaratia": 1715201229,
         "MAULOVI": 1724980948,
-        "Koldo": 1694629881,
         "moincagranada": 1721122843,
         "Jkmbio": 1713820525,
         "Pilarpm": 1713407016,
@@ -196652,22 +200750,23 @@
     "Passiflore": {
       "index": 967,
       "owner_key": "HMZxPj5NHuPi1vqck8tAN5dKUTZoCTWA65qgzWFZh4xS",
-      "balance": 1177138,
-      "membership_expire_on": 1696465304,
+      "balance": 1213590,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668965021,
       "certs_received": {
         "karjine": 1701316666,
         "AurelienPiton": 1730919537,
         "Abondance": 1714364121,
-        "JulieBen": 1702523576,
+        "JulieBen": 1758330611,
         "aline31": 1730355223,
+        "ofontes": 1755549887,
         "Kounty": 1730168565
       }
     },
     "Hauteclairedacla": {
       "index": 6748,
       "owner_key": "HMeLSzfeHPNFgPMG2j6p2AQnDPnXygCXTTGtAViEffZh",
-      "balance": 156905,
+      "balance": 196591,
       "membership_expire_on": 1700931195,
       "next_cert_issuable_on": 1690341313,
       "certs_received": {
@@ -196691,26 +200790,23 @@
     "sylviepl": {
       "index": 1264,
       "owner_key": "HMjszVe6qzLyFHkogXrxM6gff8Mrf34dK2hFDwQQZBK6",
-      "balance": 1676099,
+      "balance": 1715785,
       "membership_expire_on": 1715891711,
       "next_cert_issuable_on": 1685531623,
       "certs_received": {
         "Bcabon": 1710192520,
         "PhilippeGua53": 1750061951,
         "nell": 1718213473,
-        "Lavoixdesquatrevents": 1696023088,
         "AnneAmbles": 1697656873,
         "FranckBarbe": 1714720449,
         "PascaleRoncoroni": 1739562193,
-        "jeremiemaes": 1738603653,
-        "domenechmanu": 1695310563,
-        "DominiqueRoudiere": 1695582380
+        "jeremiemaes": 1738603653
       }
     },
     "Josetre": {
       "index": 5024,
       "owner_key": "HMsUhXqy86iHTXPuy6t9V4iGmGwE4PpBV2oUWx2apPZV",
-      "balance": 707149,
+      "balance": 746835,
       "membership_expire_on": 1712053820,
       "next_cert_issuable_on": 1690514662,
       "certs_received": {
@@ -196734,7 +200830,7 @@
     "Rumi": {
       "index": 12249,
       "owner_key": "HMxcJhXnTGi5uAaUwPQfmVoEB8xJDSTudeebHSZ1CeS5",
-      "balance": 161564,
+      "balance": 201250,
       "membership_expire_on": 1712169826,
       "next_cert_issuable_on": 1681059430,
       "certs_received": {
@@ -196748,9 +200844,9 @@
     "carmenqa": {
       "index": 10576,
       "owner_key": "HN8NTsbt5GDUQf7BqDA28dJAGBBAsLKuqAcebHy8wqXS",
-      "balance": 240801,
+      "balance": 262537,
       "membership_expire_on": 1701096991,
-      "next_cert_issuable_on": 1687969530,
+      "next_cert_issuable_on": 1694488805,
       "certs_received": {
         "Taknara": 1737715505,
         "Guada": 1732735906,
@@ -196769,7 +200865,7 @@
     "Gastoune": {
       "index": 11151,
       "owner_key": "HNBXWT5zrXqo9oyPYd4uQszEb8m9QR2dyYDERZMWgHyr",
-      "balance": 250332,
+      "balance": 290018,
       "membership_expire_on": 1704480722,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -196813,7 +200909,7 @@
     "DAOUD": {
       "index": 11655,
       "owner_key": "HNNejdo3uYGM28F3rnLfLps9XT2B3BcbdeZYqcrMjdnk",
-      "balance": 215472,
+      "balance": 227158,
       "membership_expire_on": 1708097742,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -196829,10 +200925,24 @@
         "Bruosteop": 1739664137
       }
     },
+    "Brigitte17": {
+      "index": 13754,
+      "owner_key": "HNV111UsQRMQrA4hnCsgGpRo1r563e8YNtbYQ68mAnyQ",
+      "balance": 13078,
+      "membership_expire_on": 1727962648,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Babouille11": 1759724567,
+        "AnnieP38": 1759542165,
+        "Cocoyarouge": 1759775773,
+        "RejjeR": 1759547876,
+        "Bounty": 1759522528
+      }
+    },
     "Bernadette29": {
       "index": 5805,
       "owner_key": "HNZLKabxkW4n7ogqd8v7yDj3ciyZ4RPQEty3n5x4WewK",
-      "balance": 683835,
+      "balance": 719021,
       "membership_expire_on": 1713610725,
       "next_cert_issuable_on": 1683621695,
       "certs_received": {
@@ -196847,8 +200957,8 @@
         "CECILE29": 1705771231,
         "YvesGouverneur": 1712789282,
         "Phil29": 1703277359,
-        "Bastien-29": 1695406187,
-        "FranckBarbe": 1697002079,
+        "Bastien-29": 1758906447,
+        "FranckBarbe": 1758778787,
         "Marinalouette": 1712389813,
         "Thatoo": 1740022316,
         "sagitto85": 1697047077,
@@ -196862,13 +200972,15 @@
     "MarcJPG1": {
       "index": 10855,
       "owner_key": "HNbuBAc7JqTzhtCof7VWwvmH2dMyFd5Jh6ywuoAmiVCD",
-      "balance": 277748,
+      "balance": 314434,
       "membership_expire_on": 1702226763,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696347433,
       "certs_received": {
         "LeDemineur21": 1734324433,
         "AHL": 1734050264,
+        "CaroJans": 1759352649,
         "Dom": 1733785394,
+        "MaugeyRegis": 1759281841,
         "MarieAmelie": 1733787362,
         "jyh": 1733785745,
         "PascaleM": 1733807134
@@ -196893,7 +201005,7 @@
     "LouanG": {
       "index": 10037,
       "owner_key": "HNkL8R4fDpeZ3p6ak9npvy7ZoS7aBAu5utY7ynTCSQoz",
-      "balance": 332934,
+      "balance": 372620,
       "membership_expire_on": 1697907338,
       "next_cert_issuable_on": 1672234755,
       "certs_received": {
@@ -196908,11 +201020,12 @@
     "PatriciaSalud": {
       "index": 9299,
       "owner_key": "HNmXDqrvPi8ALULofCNVaFHrh1kgdwoVQVsjsanYWqQJ",
-      "balance": 272527,
+      "balance": 275023,
       "membership_expire_on": 1719316443,
       "next_cert_issuable_on": 1689244247,
       "certs_received": {
         "Senda": 1733106607,
+        "Wynfyd": 1759185262,
         "Yorch": 1724112858,
         "YUAWIMA": 1745280202,
         "Lurtxu": 1724123195,
@@ -196931,7 +201044,7 @@
     "GabrielCorrandDubreil": {
       "index": 361,
       "owner_key": "HNsTKd5KP1kMpM1KYeMUnyqVMSuphGuiPZoHhPtH3zkd",
-      "balance": 1422975,
+      "balance": 1462661,
       "membership_expire_on": 1715431923,
       "next_cert_issuable_on": 1690535674,
       "certs_received": {
@@ -196946,8 +201059,8 @@
     "Iirama": {
       "index": 10152,
       "owner_key": "HP1otDJGyrFyyXM8WgXPotgi2kTEj8vFaWLcUYp1zXMb",
-      "balance": 279003,
-      "membership_expire_on": 1698683786,
+      "balance": 298690,
+      "membership_expire_on": 1728166109,
       "next_cert_issuable_on": 1682837760,
       "certs_received": {
         "JavierReiki": 1745986207,
@@ -196976,9 +201089,9 @@
     "Fabido84": {
       "index": 6528,
       "owner_key": "HP9nCbb8c8fzSVHhZ8XKxZ94vjsb3N2UGoguF3RGmwMR",
-      "balance": 934965,
-      "membership_expire_on": 1698978369,
-      "next_cert_issuable_on": 1683767294,
+      "balance": 974651,
+      "membership_expire_on": 1728138699,
+      "next_cert_issuable_on": 1696653442,
       "certs_received": {
         "espritlibredulac": 1709599671,
         "Gregory2pj5": 1703647775,
@@ -197008,7 +201121,7 @@
     "AgnesL26": {
       "index": 12951,
       "owner_key": "HPCVeJk5kxGoHonjKWLCQUf7vYKjLzJogLDr6UmaHkuf",
-      "balance": 77896,
+      "balance": 117582,
       "membership_expire_on": 1718891187,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -197022,17 +201135,16 @@
     "Sandy": {
       "index": 2017,
       "owner_key": "HPEHcGwHFrbaSKF4fPK4WYytwZ5SQdCdWKpR6Ts2DKeh",
-      "balance": 808720,
+      "balance": 840406,
       "membership_expire_on": 1713311748,
-      "next_cert_issuable_on": 1692692709,
+      "next_cert_issuable_on": 1695089548,
       "certs_received": {
-        "Sailing": 1694070909,
+        "Sailing": 1758216325,
         "Sev": 1704687427,
         "Kiki": 1755029845,
-        "Luc": 1700592430,
+        "Luc": 1756882365,
         "toutenstock": 1712213567,
         "JyCroisIntensement": 1755196160,
-        "ClaudeM": 1693679115,
         "DavidMontpellier": 1718306776,
         "Guyem": 1711390495,
         "Davyd": 1707457042,
@@ -197041,7 +201153,8 @@
         "CorinneCoco": 1701126273,
         "lilithdu34": 1736879909,
         "chane": 1721027519,
-        "joe": 1755196160
+        "joe": 1755196160,
+        "AuFilDuTemps": 1758864426
       }
     },
     "CATHERINEG": {
@@ -197057,7 +201170,7 @@
     "Jazzman": {
       "index": 10105,
       "owner_key": "HPKa7LbZCRaaUyCRdYGpCXHNzrb75regU2xLRz1nv4Ng",
-      "balance": 361580,
+      "balance": 401266,
       "membership_expire_on": 1697651998,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -197071,9 +201184,9 @@
     "IgnasiRoig": {
       "index": 9305,
       "owner_key": "HPPDA8cqbq4SEerQVxmwqWE8yFeyTcEZAhucoJnL1Vx",
-      "balance": 227858,
+      "balance": 251044,
       "membership_expire_on": 1719452803,
-      "next_cert_issuable_on": 1681698020,
+      "next_cert_issuable_on": 1695625858,
       "certs_received": {
         "Tassya341": 1723859792,
         "ElenaMoshkina": 1723859412,
@@ -197086,7 +201199,7 @@
     "Ecureuil26montsegur": {
       "index": 6065,
       "owner_key": "HPRPh9CtYStPHJyEnyUwENw2QkjGw72tGoCqLSrxSF3B",
-      "balance": 648769,
+      "balance": 688455,
       "membership_expire_on": 1699467201,
       "next_cert_issuable_on": 1645339584,
       "certs_received": {
@@ -197098,12 +201211,26 @@
         "martine26": 1699582510
       }
     },
+    "Constellation": {
+      "index": 13610,
+      "owner_key": "HPb9DoGphKPmh9L5Yp771C1SmgwSmfwJtV9GuuPhQ4DV",
+      "balance": 23427,
+      "membership_expire_on": 1726596413,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "FrancescaPey": 1758321333,
+        "maximeparisot07": 1758226743,
+        "estherwalther26": 1758230109,
+        "Mazarine07": 1758238994,
+        "clodclef": 1758329677
+      }
+    },
     "MargoMallorca": {
       "index": 13123,
       "owner_key": "HPi2NynSMkfHyutaT2UVWPe76ZD9iq1g1iEM5z4BpBmM",
-      "balance": 197971,
+      "balance": 252561,
       "membership_expire_on": 1720117097,
-      "next_cert_issuable_on": 1693291910,
+      "next_cert_issuable_on": 1695128685,
       "certs_received": {
         "Kaikus": 1751769472,
         "majo": 1752362766,
@@ -197118,9 +201245,9 @@
     "Peter06": {
       "index": 9846,
       "owner_key": "HPnhZ8KtCwUULFocGDxnmHRWTmrVeAgnTRqYWn4kbDXu",
-      "balance": 325060,
+      "balance": 344746,
       "membership_expire_on": 1724167802,
-      "next_cert_issuable_on": 1686478547,
+      "next_cert_issuable_on": 1694153015,
       "certs_received": {
         "JF13": 1733678122,
         "MAGSENS": 1728411438,
@@ -197133,6 +201260,7 @@
         "PoissonClown": 1732680215,
         "Venceremos": 1728002750,
         "Papillote": 1744431368,
+        "pfouque": 1756869849,
         "Bichounette": 1728003978,
         "Totoro": 1747270543,
         "EvaForest": 1728066622,
@@ -197144,7 +201272,7 @@
     "GiraSol": {
       "index": 12093,
       "owner_key": "HPqRVPeoE61Q4TayskwygkjzBi4yBP2v6Fu53D2ZhCLj",
-      "balance": 231341,
+      "balance": 56027,
       "membership_expire_on": 1710962673,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -197157,6 +201285,20 @@
         "Antares": 1742682193
       }
     },
+    "BriMa": {
+      "index": 13703,
+      "owner_key": "HPz3o99LdemFRDeqZbTTthtdJRDeUgNNwGwDguHc3KAL",
+      "balance": 7546,
+      "membership_expire_on": 1727700291,
+      "next_cert_issuable_on": 1696328743,
+      "certs_received": {
+        "AnthonyDel": 1759261491,
+        "Krompo": 1759260629,
+        "Maclockbinum": 1759259875,
+        "Barbabulle73": 1759259548,
+        "Nyriel": 1759261491
+      }
+    },
     "Soanne29": {
       "index": 6674,
       "owner_key": "HQ456yczR8q5DhEbZt9FWBizjH1A62Ap1snbUhvC5WqZ",
@@ -197175,8 +201317,8 @@
     "KaraMonnerville": {
       "index": 1860,
       "owner_key": "HQ4w92icHsAFjwXZQng7RMtjtC6PExwdYVqhbu4YBrMH",
-      "balance": 1544234,
-      "membership_expire_on": 1697061379,
+      "balance": 1583920,
+      "membership_expire_on": 1727001521,
       "next_cert_issuable_on": 1682579485,
       "certs_received": {
         "CharlesCros": 1733295163,
@@ -197186,16 +201328,14 @@
         "VeroniqueMaessen": 1750219232,
         "YannickGuennou": 1749343577,
         "Lucianael": 1731279378,
-        "Matthias": 1693952110,
         "SergeUme": 1753816754,
-        "annefreda": 1693952110,
         "magicplanet88": 1741022445
       }
     },
     "mujica": {
       "index": 13053,
       "owner_key": "HQ4z2vhvCVzo2YahCJMS7e4WqsiiwrauuU9HpCfUVVjE",
-      "balance": 51459,
+      "balance": 91145,
       "membership_expire_on": 1718285086,
       "next_cert_issuable_on": 1688480645,
       "certs_received": {
@@ -197224,22 +201364,18 @@
     "AbelGilles": {
       "index": 1642,
       "owner_key": "HQHQGVy1eQ9D91Jp9BM8Rzm6RUjvHw45GzAn4jQAMxSG",
-      "balance": 1389025,
-      "membership_expire_on": 1695558994,
-      "next_cert_issuable_on": 1685078082,
+      "balance": 1428711,
+      "membership_expire_on": 1725049834,
+      "next_cert_issuable_on": 1693564234,
       "certs_received": {
         "MPO": 1730316674,
         "VirginieGautier": 1713328198,
-        "Princesse": 1694133596,
         "GerardSiegle": 1744512958,
         "Cha": 1698901880,
-        "Lavoixdesquatrevents": 1696023088,
         "CelesteLeBars": 1735292251,
         "aurelie": 1713561262,
         "Helene09": 1718518071,
         "JeandMeryMAYOPARRA": 1697153979,
-        "boyeshua": 1693811188,
-        "Nomadanne": 1693984434,
         "AnnickBoubounelle": 1734740080,
         "DaroussinB": 1717871269,
         "GuillaumeSIMON": 1713383557
@@ -197264,7 +201400,7 @@
     "Julate": {
       "index": 12597,
       "owner_key": "HQUFbUywCguj7HNSAGs3VG3m6Vw3ffXyuebpqEDQSBsm",
-      "balance": 126752,
+      "balance": 166438,
       "membership_expire_on": 1715205974,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -197280,11 +201416,12 @@
     "Berenysse": {
       "index": 11298,
       "owner_key": "HQbrR7tpSfnmg1dDhhTibYDYkpRU99T4DG5hyFYA2puZ",
-      "balance": 216565,
+      "balance": 256251,
       "membership_expire_on": 1702592258,
       "next_cert_issuable_on": 1683369050,
       "certs_received": {
         "fournaise1": 1735770432,
+        "PascaleP": 1757465702,
         "Lesamourai": 1734504357,
         "FreedomExpansion": 1734212317,
         "Pashi": 1734150752,
@@ -197295,7 +201432,7 @@
     "MaRa_SoL": {
       "index": 11904,
       "owner_key": "HQfaxpmWGPQahATBXMMnMjy6rX1foNyyVvZrx5yUwKHz",
-      "balance": 140897,
+      "balance": 134583,
       "membership_expire_on": 1709334314,
       "next_cert_issuable_on": 1692469155,
       "certs_received": {
@@ -197310,7 +201447,7 @@
     "maksou": {
       "index": 1046,
       "owner_key": "HQfizBvgE9Zeph4BDXn6yzfWhZG5oHuog1p7mReUMRHH",
-      "balance": 1860666,
+      "balance": 1900352,
       "membership_expire_on": 1709654235,
       "next_cert_issuable_on": 1673058898,
       "certs_received": {
@@ -197329,7 +201466,7 @@
     "Mathyce": {
       "index": 12741,
       "owner_key": "HQrnkbYNPBiet8fQBDJ6qSzntJLxVREJCTuFvteb9Kxs",
-      "balance": 105732,
+      "balance": 145418,
       "membership_expire_on": 1713228893,
       "next_cert_issuable_on": 1685327599,
       "certs_received": {
@@ -197343,7 +201480,7 @@
     "veroniquedorival": {
       "index": 8588,
       "owner_key": "HQuvt8dnzohMYKLUa1pyk4XzcgmnNj6FnxeUFTMLnPc6",
-      "balance": 461216,
+      "balance": 500902,
       "membership_expire_on": 1718927668,
       "next_cert_issuable_on": 1660045543,
       "certs_received": {
@@ -197357,11 +201494,12 @@
     "SandraC": {
       "index": 3911,
       "owner_key": "HQvNGfZy4ytg2jp33B7i6D1YxveM473SBETJ9fWV9du",
-      "balance": 453818,
+      "balance": 413504,
       "membership_expire_on": 1709341656,
       "next_cert_issuable_on": 1684763042,
       "certs_received": {
         "Leonardine": 1741143978,
+        "Enialeh": 1757485587,
         "Maaude09": 1723751753,
         "Seve": 1733377263,
         "Pauline-Georges": 1746990749,
@@ -197376,7 +201514,7 @@
     "KerdraonSunshine": {
       "index": 7110,
       "owner_key": "HR34xbGQ4BTZbJUK8Uz9cS5wVHtRbdqLJTXtHyn2RYmt",
-      "balance": 591129,
+      "balance": 630815,
       "membership_expire_on": 1705146222,
       "next_cert_issuable_on": 1655947369,
       "certs_received": {
@@ -197391,9 +201529,9 @@
     "Diato": {
       "index": 12278,
       "owner_key": "HRLcaWEkEN2ZWrG5tp63pDrDouYPCBdmUAZ1eNNdhv6",
-      "balance": 198760,
+      "balance": 223446,
       "membership_expire_on": 1711740776,
-      "next_cert_issuable_on": 1681650907,
+      "next_cert_issuable_on": 1696401644,
       "certs_received": {
         "looie": 1744141600,
         "LilianBonnardon": 1743405915,
@@ -197406,7 +201544,7 @@
     "Fofonet": {
       "index": 11668,
       "owner_key": "HRgKLS8GcxSnidZtDDvBvCDmyuDWtjXjapqu9o7KqYsq",
-      "balance": 166413,
+      "balance": 231099,
       "membership_expire_on": 1706194135,
       "next_cert_issuable_on": 1677740429,
       "certs_received": {
@@ -197423,7 +201561,7 @@
     "Lsliede": {
       "index": 10414,
       "owner_key": "HRhmrLVeDfWETH92f1SvhXmvxBu3PbRgfGSKUt6RVRRq",
-      "balance": 304341,
+      "balance": 344027,
       "membership_expire_on": 1698710010,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -197442,7 +201580,7 @@
     "Pepitta": {
       "index": 11152,
       "owner_key": "HRj4CsNLaRv9HRQxgMhvgqCWrUX99Lz6DbHN7wYm3KW",
-      "balance": 250332,
+      "balance": 217494,
       "membership_expire_on": 1700841157,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -197457,7 +201595,7 @@
     "ben078m": {
       "index": 9995,
       "owner_key": "HRwrx7sWtEMNhEh7bXhpKwv64hXD9h9HHfq7nJsVYrhd",
-      "balance": 352270,
+      "balance": 426956,
       "membership_expire_on": 1724868061,
       "next_cert_issuable_on": 1689500206,
       "certs_received": {
@@ -197471,6 +201609,7 @@
         "Gnome": 1740891914,
         "Fanchon": 1737006311,
         "Maud": 1738003440,
+        "Biou": 1757306411,
         "Peesse": 1728428320,
         "LydiaRoche": 1728426711
       }
@@ -197478,7 +201617,7 @@
     "ValeriePiazzalunga": {
       "index": 11277,
       "owner_key": "HS72bTAEsHUczbW6vDbkCw9jLuxv7mxLJvy6Q59dMzpr",
-      "balance": 237683,
+      "balance": 300369,
       "membership_expire_on": 1705450658,
       "next_cert_issuable_on": 1680390965,
       "certs_received": {
@@ -197506,8 +201645,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1635663529,
       "certs_received": {
-        "AudreyNaturo": 1694659946,
-        "Alcidejet": 1694648785,
         "Antho": 1703038221
       }
     },
@@ -197528,8 +201665,8 @@
     "Borne": {
       "index": 5840,
       "owner_key": "HSHMz3TC4tpTY3x7enL6uggHHLKDwwaWmuJXqRiaAsGk",
-      "balance": 551758,
-      "membership_expire_on": 1695213355,
+      "balance": 579544,
+      "membership_expire_on": 1725794414,
       "next_cert_issuable_on": 1688384159,
       "certs_received": {
         "DanWF": 1728337352,
@@ -197545,7 +201682,7 @@
         "AngeliqueCharton": 1714287727,
         "hazed": 1728337352,
         "FranZi": 1728337573,
-        "hypericum": 1697430327,
+        "hypericum": 1758946339,
         "Louloui": 1739088425
       }
     },
@@ -197571,7 +201708,7 @@
     "DoLar": {
       "index": 13183,
       "owner_key": "HSN84XTeqLHyP46TXtdBwuggJndUTmdcDw5u5XYm4X8F",
-      "balance": 98060,
+      "balance": 137746,
       "membership_expire_on": 1720966473,
       "next_cert_issuable_on": 1690289320,
       "certs_received": {
@@ -197585,7 +201722,7 @@
     "NathalieC": {
       "index": 7358,
       "owner_key": "HSPgNo3jdDuNGPr9j5MphoWxTWehG5eDQvZxVfbKjene",
-      "balance": 654428,
+      "balance": 682214,
       "membership_expire_on": 1710728594,
       "next_cert_issuable_on": 1689756794,
       "certs_received": {
@@ -197607,8 +201744,8 @@
     "candelanahu": {
       "index": 10317,
       "owner_key": "HSSy2WnwRLZhgJSViiYSrkavbsN1eKvjqQQMNog1VhCv",
-      "balance": 315395,
-      "membership_expire_on": 1699316885,
+      "balance": 355081,
+      "membership_expire_on": 1725709221,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "isabelha": 1730877868,
@@ -197630,7 +201767,7 @@
     "pitalugue": {
       "index": 11800,
       "owner_key": "HSUtvpSN9hhVuUobF6SuudTk7zPZoXDxwdG5GbdEsE4C",
-      "balance": 165323,
+      "balance": 195009,
       "membership_expire_on": 1708570299,
       "next_cert_issuable_on": 1691080877,
       "certs_received": {
@@ -197652,7 +201789,7 @@
     "CatherineChalons": {
       "index": 10465,
       "owner_key": "HSZxWWLSXEEVEKBBYsoKY6tBNcEPeodC6NbRDYYB9D6z",
-      "balance": 325105,
+      "balance": 364791,
       "membership_expire_on": 1699439489,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -197666,7 +201803,7 @@
     "Chrismini": {
       "index": 7594,
       "owner_key": "HSa4FBas5twjEs4FjiX97yK3jL3hwHSfBymCp6gxFogw",
-      "balance": 541296,
+      "balance": 580982,
       "membership_expire_on": 1705601369,
       "next_cert_issuable_on": 1665505635,
       "certs_received": {
@@ -197674,6 +201811,7 @@
         "jyde": 1710024792,
         "ThomasRossi": 1710111334,
         "Diane": 1710021903,
+        "Sam": 1759274860,
         "GeraldS": 1710371937,
         "Moi": 1711249260
       }
@@ -197681,7 +201819,7 @@
     "BeaH2O": {
       "index": 13151,
       "owner_key": "HSc8U8Ja6DhWGzhuLZ9PMYSPyjPJH1DNwuDbeAABmEBw",
-      "balance": 52332,
+      "balance": 92028,
       "membership_expire_on": 1720560465,
       "next_cert_issuable_on": 1693066304,
       "certs_received": {
@@ -197696,7 +201834,7 @@
     "KevinRenevot": {
       "index": 6677,
       "owner_key": "HSetEihc5iUKfGv54TXcxAdwuxAeEGvGfyAvyf6834g5",
-      "balance": 621767,
+      "balance": 661453,
       "membership_expire_on": 1703883937,
       "next_cert_issuable_on": 1666341929,
       "certs_received": {
@@ -197723,9 +201861,9 @@
     "CorineH34": {
       "index": 11267,
       "owner_key": "HSiDpikYeGVPU32gTAXxqBRU45W1sXHKwLMf1h5achtr",
-      "balance": 219842,
+      "balance": 259528,
       "membership_expire_on": 1704810697,
-      "next_cert_issuable_on": 1686560807,
+      "next_cert_issuable_on": 1695810359,
       "certs_received": {
         "absalon2": 1736704578,
         "devihope": 1741666062,
@@ -197742,7 +201880,7 @@
     "Pivoineviolette": {
       "index": 12676,
       "owner_key": "HSssWEMqoFk1sVTtVXqNiurrEUrTPc8jLMHF9ai5h31c",
-      "balance": 108208,
+      "balance": 147894,
       "membership_expire_on": 1715712252,
       "next_cert_issuable_on": 1686899228,
       "certs_received": {
@@ -197756,9 +201894,9 @@
     "armunia": {
       "index": 12918,
       "owner_key": "HStep3ZpJajbaQZYNSd4svHuy49y6pzB3t2sLCadLR8J",
-      "balance": 216155,
+      "balance": 192829,
       "membership_expire_on": 1717092629,
-      "next_cert_issuable_on": 1690472347,
+      "next_cert_issuable_on": 1695098392,
       "certs_received": {
         "HelloSunshine": 1749790378,
         "MyleneBN": 1749790699,
@@ -197787,7 +201925,7 @@
     "boucledecieux": {
       "index": 6316,
       "owner_key": "HT19eN5iuV1At3Xi2yaLmZZy3uvpVbbLvZD57VSv3PVa",
-      "balance": 477896,
+      "balance": 517582,
       "membership_expire_on": 1701882528,
       "next_cert_issuable_on": 1644913830,
       "certs_received": {
@@ -197832,7 +201970,7 @@
     "alexpaysan26": {
       "index": 12247,
       "owner_key": "HT7uUeaqWKjVFkPQBb4rQW9Hi64Fo1zsu9WFHyLWFaBk",
-      "balance": 154064,
+      "balance": 193050,
       "membership_expire_on": 1711733912,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -197847,7 +201985,7 @@
     "HEMBE": {
       "index": 12461,
       "owner_key": "HTDp4ZsQX14GgZeGDDAVYrEAe4rzDSJAUuzuXyCs8FxX",
-      "balance": 152636,
+      "balance": 195856,
       "membership_expire_on": 1713819505,
       "next_cert_issuable_on": 1687758309,
       "certs_received": {
@@ -197863,7 +202001,7 @@
     "SebDegCesium9": {
       "index": 7642,
       "owner_key": "HTEQvCxAeCxBkQFsfZknvudeUgxKuGt45AjQR2QXEovr",
-      "balance": 596092,
+      "balance": 635778,
       "membership_expire_on": 1711373181,
       "next_cert_issuable_on": 1660728490,
       "certs_received": {
@@ -197878,12 +202016,13 @@
     "FreddeVendee": {
       "index": 6568,
       "owner_key": "HTEZxH6Ld7dwdQiYjVq31dWUcDMk8rieLMn6RNWQnKpX",
-      "balance": 387992,
+      "balance": 427678,
       "membership_expire_on": 1704761155,
       "next_cert_issuable_on": 1686579699,
       "certs_received": {
         "pierreM": 1704225436,
         "Ibnesa": 1729710490,
+        "Tchois": 1758487737,
         "TITIA": 1729113481,
         "Ingriddevendee": 1704171817,
         "Titem": 1703890857,
@@ -197896,7 +202035,7 @@
     "Kakaia69": {
       "index": 11196,
       "owner_key": "HTGJe6eEzQUTdhxQQKLFAVaSi1EiEWYH8vwTYZh2KnXo",
-      "balance": 174832,
+      "balance": 214518,
       "membership_expire_on": 1702157823,
       "next_cert_issuable_on": 1690860477,
       "certs_received": {
@@ -197914,7 +202053,7 @@
     "NORGERAL": {
       "index": 7975,
       "owner_key": "HTHkykbYi3RjAh9tGF1gtCLseLXeQfvyN2MCP3o5uRuR",
-      "balance": 82302,
+      "balance": 121988,
       "membership_expire_on": 1710723017,
       "next_cert_issuable_on": 1683794121,
       "certs_received": {
@@ -197943,6 +202082,7 @@
         "FANY": 1727156517,
         "Guito": 1729128031,
         "Sabi": 1725520346,
+        "Galadriel": 1759271298,
         "MariantoniaHuguet": 1717903756,
         "tuttle": 1716076656,
         "Toniv": 1726731799,
@@ -197960,7 +202100,7 @@
     "je31800te": {
       "index": 6587,
       "owner_key": "HTU4Vhpdg2KtK3rPoJC6p2yp78WXMmJsjG9WtMLbXgP4",
-      "balance": 720862,
+      "balance": 760548,
       "membership_expire_on": 1699412610,
       "next_cert_issuable_on": 1662629919,
       "certs_received": {
@@ -198005,9 +202145,9 @@
     "Caropin": {
       "index": 11519,
       "owner_key": "HTcMgw1CooCTnSVtrDGrxZCNGXwQPMiywdTUZw4oa1PT",
-      "balance": 43503,
+      "balance": 30189,
       "membership_expire_on": 1707112502,
-      "next_cert_issuable_on": 1693172918,
+      "next_cert_issuable_on": 1694016986,
       "certs_received": {
         "RuthGuerrero": 1738990725,
         "larboleda897": 1738991609,
@@ -198023,7 +202163,7 @@
     "Sirina": {
       "index": 12421,
       "owner_key": "HTgybYb96WuKbJxJgQCo7aBKevtYq9KSm1Mn44sjwWbj",
-      "balance": 397231,
+      "balance": 450917,
       "membership_expire_on": 1712322593,
       "next_cert_issuable_on": 1688895695,
       "certs_received": {
@@ -198040,8 +202180,8 @@
     "ninonlr": {
       "index": 6200,
       "owner_key": "HThPy5v5W4tgLhZNc2jrwzpbHeuZ3Cfb3aTX2kgX3FQD",
-      "balance": 614693,
-      "membership_expire_on": 1696163170,
+      "balance": 654379,
+      "membership_expire_on": 1725471292,
       "next_cert_issuable_on": 1679065520,
       "certs_received": {
         "Elimarine": 1741053964,
@@ -198058,7 +202198,7 @@
     "bine108": {
       "index": 9147,
       "owner_key": "HTjuDZnngiJ53uhLu3h2dDPHmDN7mWeVnBkghARaa4RX",
-      "balance": 130641,
+      "balance": 150327,
       "membership_expire_on": 1718664747,
       "next_cert_issuable_on": 1687179340,
       "certs_received": {
@@ -198077,7 +202217,7 @@
     "CHRIVAN": {
       "index": 12455,
       "owner_key": "HTkf1ErgNdaYEfLkSW944ncFiMuGWxKMPMksFnVMoR6t",
-      "balance": 151996,
+      "balance": 191682,
       "membership_expire_on": 1713037467,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -198099,9 +202239,9 @@
     "Brig": {
       "index": 7986,
       "owner_key": "HTvqvNLK5QfxaocNu1ZqLZQtLUMBxHm3gTHtPZtQiKdT",
-      "balance": 95317,
+      "balance": 110503,
       "membership_expire_on": 1709512069,
-      "next_cert_issuable_on": 1689372787,
+      "next_cert_issuable_on": 1694962474,
       "certs_received": {
         "MaryMarie": 1714690874,
         "Thesa": 1741149550,
@@ -198151,10 +202291,25 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Fanfan94": {
+      "index": 13661,
+      "owner_key": "HU4L8MVhRNmda96Zf9Wn9v4hECDLuPAWkAnN7c8omzs5",
+      "balance": 22300,
+      "membership_expire_on": 1726617611,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "G21": 1758502468,
+        "TITO94": 1758780012,
+        "Lilith8888": 1758660022,
+        "GeoTT": 1758223538,
+        "TCT60162": 1758176809,
+        "gero": 1758691139
+      }
+    },
     "Joyeuxrespect": {
       "index": 11487,
       "owner_key": "HU5ofKxco8a76ZTxK8C7CP2ZJC81kJeLSiuxHgnAxPTY",
-      "balance": 230680,
+      "balance": 270366,
       "membership_expire_on": 1706817741,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -198169,8 +202324,8 @@
     "Maro": {
       "index": 6318,
       "owner_key": "HU6pXNHKD2TMgcNh22Z6GtHNRZFEFoGTYztWZy85iF3h",
-      "balance": 283990,
-      "membership_expire_on": 0,
+      "balance": 293692,
+      "membership_expire_on": 1727461155,
       "next_cert_issuable_on": 1655892781,
       "certs_received": {
         "ChristelleRousseau": 1701847731,
@@ -198222,7 +202377,7 @@
     "Shakti": {
       "index": 8228,
       "owner_key": "HUSvq1x3HduQDHCTEDZMM2LJJuTawCjEV8Ugk6LpiYwF",
-      "balance": 692297,
+      "balance": 731983,
       "membership_expire_on": 1714779835,
       "next_cert_issuable_on": 1686843159,
       "certs_received": {
@@ -198239,7 +202394,7 @@
     "Mariedelourdes": {
       "index": 7684,
       "owner_key": "HUYe83kj68G6LhXA8TrYWnYdQk6vvtWqLV3p2r3ZxtTj",
-      "balance": 566889,
+      "balance": 578575,
       "membership_expire_on": 1707624436,
       "next_cert_issuable_on": 1690474376,
       "certs_received": {
@@ -198275,7 +202430,7 @@
     "Sylvie83": {
       "index": 10349,
       "owner_key": "HUZYSRX3dDKjwz837iPmpCjGnWwTP7DBh1bKRoF2krpE",
-      "balance": 348177,
+      "balance": 387863,
       "membership_expire_on": 1697224575,
       "next_cert_issuable_on": 1675269076,
       "certs_received": {
@@ -198293,7 +202448,7 @@
     "Sophie72": {
       "index": 11921,
       "owner_key": "HUaQGCvtiGS5kHxkqtYP9MuQnbw99VHm2bYq9DZWG8Sr",
-      "balance": 181792,
+      "balance": 221478,
       "membership_expire_on": 1709911009,
       "next_cert_issuable_on": 1688349858,
       "certs_received": {
@@ -198309,7 +202464,7 @@
     "Djaya": {
       "index": 8794,
       "owner_key": "HUasWQpwhKsFytkt3TPcPodXhiSL2AG4rVcVYZgikWWW",
-      "balance": 495177,
+      "balance": 534863,
       "membership_expire_on": 1714833424,
       "next_cert_issuable_on": 1692432467,
       "certs_received": {
@@ -198385,7 +202540,7 @@
     "OdileVilleneuve": {
       "index": 9919,
       "owner_key": "HUtefijf8WBBVP4nwAEptpv66KyM5FSokfpMxfcsG5ru",
-      "balance": 341965,
+      "balance": 381651,
       "membership_expire_on": 1696868584,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -198399,7 +202554,7 @@
     "Chantaloup22": {
       "index": 7718,
       "owner_key": "HV3sufT3sgtCV8tECdykKtBxj47JM1849gGP1x5cejka",
-      "balance": 392086,
+      "balance": 431772,
       "membership_expire_on": 1704243867,
       "next_cert_issuable_on": 1684221915,
       "certs_received": {
@@ -198420,9 +202575,9 @@
     "Pierre40120": {
       "index": 13067,
       "owner_key": "HVA5EvhhPNFVgbkzt2jyc1cw5djGGopaFActhB4DNQnm",
-      "balance": 161880,
+      "balance": 141566,
       "membership_expire_on": 1718566900,
-      "next_cert_issuable_on": 1693376066,
+      "next_cert_issuable_on": 1693887109,
       "certs_received": {
         "MaudD": 1750301219,
         "GUL40_Fr1": 1750192811,
@@ -198430,15 +202585,16 @@
         "Salsa33150": 1750299771,
         "JerryBB": 1756537583,
         "Lantux": 1750260252,
-        "Tango8943": 1750299771
+        "Tango8943": 1750299771,
+        "SergeUme": 1757746305
       }
     },
     "Wendy97418": {
       "index": 10949,
       "owner_key": "HVBRPYMpwQSVZqfbAYNichFg7Zjq8n6d6vQhDKYiuWZt",
-      "balance": 1230894,
+      "balance": 1165580,
       "membership_expire_on": 1701083546,
-      "next_cert_issuable_on": 1687551311,
+      "next_cert_issuable_on": 1695361063,
       "certs_received": {
         "Indiana": 1748651495,
         "Zoul": 1732727776,
@@ -198451,6 +202607,7 @@
         "HenriRGN": 1734326956,
         "Linya": 1737519735,
         "Flo05": 1732996957,
+        "Myriam97410": 1757447558,
         "mdanielle97430": 1755197055,
         "Reine97418": 1736210061,
         "Bastien97432": 1733876159,
@@ -198489,7 +202646,7 @@
     "shabda": {
       "index": 12269,
       "owner_key": "HVUoRPGiY5n9wfjNeRZCBagCy1mEwvZW6spPnjkixdmm",
-      "balance": 158928,
+      "balance": 198614,
       "membership_expire_on": 1709162329,
       "next_cert_issuable_on": 1683156201,
       "certs_received": {
@@ -198520,13 +202677,14 @@
     "MERYFITT": {
       "index": 12478,
       "owner_key": "HVZtVLoLbVz9u8jNX7jDxtVq9ZWu74fKTHhzD655hLPj",
-      "balance": 145499,
+      "balance": 185185,
       "membership_expire_on": 1713635914,
-      "next_cert_issuable_on": 1692412507,
+      "next_cert_issuable_on": 1692894966,
       "certs_received": {
         "Noelia": 1745277535,
         "Simplementemaria": 1746059027,
         "Josepeuta": 1746058242,
+        "realbrucest": 1755562251,
         "Beasegovia": 1745271820,
         "ManuGi": 1745437457,
         "virginiaoreoro": 1746244127,
@@ -198572,8 +202730,8 @@
     "Enjolras14": {
       "index": 5827,
       "owner_key": "HVhtMQw5BoaxBLgKjroC9EUmg4bjDdJgdD6zsoQjRsaV",
-      "balance": 693799,
-      "membership_expire_on": 1694821003,
+      "balance": 711975,
+      "membership_expire_on": 1728068956,
       "next_cert_issuable_on": 1680604413,
       "certs_received": {
         "Foxy": 1696882749,
@@ -198591,7 +202749,7 @@
     "Tanagra": {
       "index": 3914,
       "owner_key": "HVkDYb1pMpw9pB7vCmWmYHhrhYWkYVXuMRA8jFNM3qRj",
-      "balance": 1000590,
+      "balance": 986876,
       "membership_expire_on": 1712582182,
       "next_cert_issuable_on": 1681175414,
       "certs_received": {
@@ -198611,14 +202769,13 @@
         "ValerieSoufflier": 1722029474,
         "Dujardin": 1726023240,
         "MissChaChaCha": 1714746128,
-        "Hdsaf": 1702691876,
-        "Ethersource83": 1696391897
+        "Hdsaf": 1702691876
       }
     },
     "AgnesH": {
       "index": 11329,
       "owner_key": "HVo3VatTAjhm7Jg5i4dUHmy8thsn2Z9aXmL3JQQ9wKWk",
-      "balance": 179447,
+      "balance": 219133,
       "membership_expire_on": 1705768648,
       "next_cert_issuable_on": 1683258833,
       "certs_received": {
@@ -198633,13 +202790,14 @@
     "CarmenCosta": {
       "index": 9386,
       "owner_key": "HVqfD5SmTQLSVGieZNWQW4Csydo56jozCcEyFGD3frmd",
-      "balance": 359195,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1681875891,
+      "balance": 228937,
+      "membership_expire_on": 1725734994,
+      "next_cert_issuable_on": 1696647032,
       "certs_received": {
         "Alfybe": 1725211145,
         "SOPHRO": 1724917007,
         "Marino": 1724923736,
+        "Nature": 1757536391,
         "TribuRaph": 1725171319,
         "MinaManar": 1725173844,
         "Teddy": 1725172356
@@ -198667,7 +202825,7 @@
     "IsabelleDausque": {
       "index": 13205,
       "owner_key": "HWBc9T7JGzWDqf3x5W1Pw8acLMqM9TvnRUGEyw8RzYMx",
-      "balance": 63788,
+      "balance": 161474,
       "membership_expire_on": 1721419128,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -198684,7 +202842,7 @@
     "Evuca": {
       "index": 11724,
       "owner_key": "HWP3q4R6J7KswHQ32bbXuXf4H6PyH1bc7ajp3foon94k",
-      "balance": 288777,
+      "balance": 284963,
       "membership_expire_on": 1708648459,
       "next_cert_issuable_on": 1682581096,
       "certs_received": {
@@ -198715,7 +202873,7 @@
     "Mae": {
       "index": 6397,
       "owner_key": "HWgG27xNGmWEifXoLzWqKC6JLDpGUSVVzEqQXLp9suEQ",
-      "balance": 610459,
+      "balance": 650945,
       "membership_expire_on": 1707522492,
       "next_cert_issuable_on": 1664329243,
       "certs_received": {
@@ -198732,21 +202890,24 @@
     "Susheela": {
       "index": 13180,
       "owner_key": "HWpQnHg1g5xdj4HMtEVW5wXJmnCjNGmWrzWH1TSR3qLb",
-      "balance": 49060,
+      "balance": 227746,
       "membership_expire_on": 1720549405,
-      "next_cert_issuable_on": 1691227659,
+      "next_cert_issuable_on": 1696163951,
       "certs_received": {
+        "SophieB": 1759186936,
         "AtmaRajpreet": 1752107891,
         "bienetreettao": 1752126677,
         "Josephine": 1752727101,
         "AtmaRajprem": 1752107891,
-        "ManonJagjeetkaur": 1752107891
+        "ManonJagjeetkaur": 1752107891,
+        "Anne_Marquer": 1755807874,
+        "Puravida": 1759185759
       }
     },
     "amechimiste": {
       "index": 11827,
       "owner_key": "HWpicCKoQLGpJRd9dhTxYq2BQ5vVr5pqnuChn8xYNhNG",
-      "balance": 194205,
+      "balance": 233891,
       "membership_expire_on": 1707141186,
       "next_cert_issuable_on": 1679528965,
       "certs_received": {
@@ -198771,7 +202932,7 @@
     "Sofi11": {
       "index": 6413,
       "owner_key": "HX1FAWpSgth4iyPjPNJDV7nBuchLMTwY16Zva6h7zaiX",
-      "balance": 702069,
+      "balance": 741755,
       "membership_expire_on": 1699388543,
       "next_cert_issuable_on": 1667902943,
       "certs_received": {
@@ -198800,7 +202961,7 @@
     "tontonjimmy": {
       "index": 6265,
       "owner_key": "HX88DuoSBsEtsfatgR7BsXtzHBaAyAQdr66ebLcHxhLT",
-      "balance": 632199,
+      "balance": 671885,
       "membership_expire_on": 1696807144,
       "next_cert_issuable_on": 1644910641,
       "certs_received": {
@@ -198815,9 +202976,9 @@
     "SalviaPerez": {
       "index": 13338,
       "owner_key": "HXL5nFez8JFD7NXWTpz29dyBmE9vfSe4QSezNS8T5Nuo",
-      "balance": 21164,
+      "balance": 63350,
       "membership_expire_on": 1719512431,
-      "next_cert_issuable_on": 1692953376,
+      "next_cert_issuable_on": 1695962464,
       "certs_received": {
         "xandraAritzkuren": 1754634037,
         "DanielaEG": 1754633098,
@@ -198829,7 +202990,7 @@
     "HugoFrebel": {
       "index": 10769,
       "owner_key": "HXP5BD4Pnz1UucRjHEkdhjSGuy66pgR7NsCg62uFAg9k",
-      "balance": 282102,
+      "balance": 321788,
       "membership_expire_on": 1700159258,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -198844,8 +203005,8 @@
     "douchka": {
       "index": 9847,
       "owner_key": "HXRfrNussj7swNYnQaUZF9yyUh8eyoSGVbUiM5CUKEkE",
-      "balance": 346260,
-      "membership_expire_on": 1694705186,
+      "balance": 384946,
+      "membership_expire_on": 1725885544,
       "next_cert_issuable_on": 1677487457,
       "certs_received": {
         "Azucena": 1728326668,
@@ -198859,7 +203020,7 @@
     "Maria44": {
       "index": 3503,
       "owner_key": "HXSSjJF9BBAgpwUwoDrn6xYDkqnFMPvRpp6JCD6CZyin",
-      "balance": 153379,
+      "balance": 193065,
       "membership_expire_on": 1701808324,
       "next_cert_issuable_on": 1670322724,
       "certs_received": {
@@ -198875,7 +203036,7 @@
     "Goiztizar": {
       "index": 10028,
       "owner_key": "HXaCcGyQLW5mUR6MUagoABkzcXxaMFwTd4hADsPHo9MZ",
-      "balance": 114149,
+      "balance": 153835,
       "membership_expire_on": 1724332772,
       "next_cert_issuable_on": 1677598569,
       "certs_received": {
@@ -198925,7 +203086,7 @@
     "Robinski": {
       "index": 12685,
       "owner_key": "HXxDKUEmRKuX9bXmYvsX3kRhDugJ9qMvvGjg8zYdXkzY",
-      "balance": 100640,
+      "balance": 140326,
       "membership_expire_on": 1715175434,
       "next_cert_issuable_on": 1686798005,
       "certs_received": {
@@ -198948,7 +203109,7 @@
     "Flo_Spring": {
       "index": 7188,
       "owner_key": "HY74kc9YsF1bVFekpdVXL6eq4kYZHoQ5Z8PQZnQi3Df5",
-      "balance": 454935,
+      "balance": 494621,
       "membership_expire_on": 1701682610,
       "next_cert_issuable_on": 1681735005,
       "certs_received": {
@@ -198966,10 +203127,24 @@
         "Zephyr_Spring": 1744777996
       }
     },
+    "Morine": {
+      "index": 13744,
+      "owner_key": "HYFajnyMd1jomAUKgPb8mTejPRHnmo3DJhbiskn9NQP9",
+      "balance": 5156,
+      "membership_expire_on": 1727228442,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "LaFeeClochette": 1759550317,
+        "Benedruide": 1759465570,
+        "AutomneIndien": 1758929289,
+        "Evanouche": 1759273681,
+        "Peonia": 1759547876
+      }
+    },
     "Nath-38": {
       "index": 12771,
       "owner_key": "HYJKqiBz2guWs5LpJGc7x7i5mG7SkF9HEoJeWV2pcGgp",
-      "balance": 111392,
+      "balance": 151078,
       "membership_expire_on": 1715042905,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -198983,9 +203158,9 @@
     "Jean-Phi": {
       "index": 6701,
       "owner_key": "HYLgPnGFKYuFoHafdFB83w63pw4VChLuUimqudHLGiaA",
-      "balance": 623641,
+      "balance": 663327,
       "membership_expire_on": 1702562837,
-      "next_cert_issuable_on": 1677673798,
+      "next_cert_issuable_on": 1693743729,
       "certs_received": {
         "MarineDR": 1705563641,
         "Pascaleg": 1705364226,
@@ -199000,9 +203175,9 @@
     "Mikelegi": {
       "index": 9753,
       "owner_key": "HYNcf8XpbSvt9eyBGHJjPcMdXCFcsT3sAYpKoCvP6GE2",
-      "balance": 72614,
+      "balance": 94300,
       "membership_expire_on": 1722259414,
-      "next_cert_issuable_on": 1693316695,
+      "next_cert_issuable_on": 1693843282,
       "certs_received": {
         "omm": 1748318680,
         "Artesanatacto": 1737456775,
@@ -199029,7 +203204,8 @@
         "Noxtan": 1754179216,
         "Julialan": 1749231923,
         "Rodando": 1735851916,
-        "ARAN": 1749592379
+        "ARAN": 1749592379,
+        "ABuenVivir": 1758314126
       }
     },
     "delphr": {
@@ -199043,7 +203219,7 @@
     "Ofelia": {
       "index": 11854,
       "owner_key": "HYVrZiM7j637Qb4fZVv5E4TwC8iGdZPh7ZSEMugHGjDQ",
-      "balance": 270087,
+      "balance": 309773,
       "membership_expire_on": 1708883143,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -199058,24 +203234,29 @@
     "HappyAmina": {
       "index": 7367,
       "owner_key": "HYXQ7CyEBCvc1W8R6WcAEzXeiX96xqDQJf19cZKpgec6",
-      "balance": 425363,
+      "balance": 463049,
       "membership_expire_on": 1708714407,
-      "next_cert_issuable_on": 1692336950,
+      "next_cert_issuable_on": 1696342641,
       "certs_received": {
+        "Jsln6289": 1757473188,
         "Ligea": 1740259999,
+        "valentinekaya": 1757451342,
         "MichelLamour": 1710750598,
         "Yannick51200": 1750300756,
         "Asfalis": 1752869067,
         "ValdeChaumes": 1710815531,
+        "wopat": 1757468775,
         "Ganou": 1752896661,
         "Joss": 1711516628,
         "Cath": 1710359405,
         "Nessya": 1747883915,
         "Herydanslanievre": 1710278866,
         "Keramina51": 1752367915,
+        "AgneSb": 1755939637,
         "Phileas": 1748495737,
         "Tery": 1751327930,
-        "chaumesaries": 1710537320
+        "chaumesaries": 1710537320,
+        "maBeltjens": 1757487294
       }
     },
     "Melanie4": {
@@ -199089,12 +203270,13 @@
     "AnneBoisjoli": {
       "index": 12326,
       "owner_key": "HYb25qdU6hKsqTwNAnfPgQBr4xyKVQs8AzB81rGVnq9i",
-      "balance": 110688,
+      "balance": 149374,
       "membership_expire_on": 1712173845,
-      "next_cert_issuable_on": 1693216431,
+      "next_cert_issuable_on": 1696645143,
       "certs_received": {
         "Amarante": 1744307563,
         "JanineBoitel": 1744224549,
+        "Mam": 1759179891,
         "MartineBuhrig": 1744356232,
         "Angele73": 1744391318,
         "Benoa421": 1744429913,
@@ -199114,19 +203296,33 @@
     "LICORNECORNE": {
       "index": 6280,
       "owner_key": "HYeBWd8uTjeW16nL4LEq5Hpc3B71Ln6VrnjYX26VJ8oE",
-      "balance": 629238,
+      "balance": 668924,
       "membership_expire_on": 1704115498,
       "next_cert_issuable_on": 1672632815,
       "certs_received": {
         "Kristen": 1701362182,
         "SolangeAIME": 1701070649,
         "Nineige": 1701112802,
-        "DavidBay": 1700599989,
+        "DavidBay": 1757436960,
         "PascalGuillemain": 1701713152,
         "Fabricealexandre": 1701800769,
         "RosalieBAYLE": 1735675202
       }
     },
+    "MoutonNoir": {
+      "index": 13628,
+      "owner_key": "HYhiKndrzrmq5D8cWBWeWY6nop9RNSDhUmaoThRnMPuD",
+      "balance": 76966,
+      "membership_expire_on": 1725227399,
+      "next_cert_issuable_on": 1695644127,
+      "certs_received": {
+        "venusienne": 1758075278,
+        "SebLorion": 1758076782,
+        "yannlefranco": 1758080276,
+        "Vertumne": 1756882838,
+        "EricSamsa": 1758075278
+      }
+    },
     "Muse": {
       "index": 646,
       "owner_key": "HYjKw58juKZG3z6hePmoKi9VVFDjeYJcTrhxKDFepLCR",
@@ -199148,7 +203344,7 @@
     "FranckAubert": {
       "index": 12720,
       "owner_key": "HYpDzU7TXCFqjcVGyuGp389Cp6KWriNVFwL5ntU6kv3F",
-      "balance": 124692,
+      "balance": 154578,
       "membership_expire_on": 1715798815,
       "next_cert_issuable_on": 1691668058,
       "certs_received": {
@@ -199165,7 +203361,7 @@
     "Sandra72": {
       "index": 7761,
       "owner_key": "HYpa3ipYjAXtGeqhymXT3qNxV1y82g2C1zt8EuQ5SAp",
-      "balance": 514031,
+      "balance": 503717,
       "membership_expire_on": 1709863705,
       "next_cert_issuable_on": 1664447327,
       "certs_received": {
@@ -199187,11 +203383,26 @@
         "Thais": 1712732050
       }
     },
+    "Gebender6": {
+      "index": 13534,
+      "owner_key": "HYsoVVGfRy8rcXDMLVQPhhWtB8Tpja9REMGKsLVt9vmv",
+      "balance": 41042,
+      "membership_expire_on": 1724681506,
+      "next_cert_issuable_on": 1694437558,
+      "certs_received": {
+        "Sylou04": 1756343633,
+        "LuciaM": 1757362275,
+        "Jajamob": 1758317332,
+        "NouvelAnge": 1756340554,
+        "Langlaisvalerie04": 1756239374,
+        "WARTHLANDAISSOPHIE": 1756855948
+      }
+    },
     "GillesBOUDIER": {
       "index": 10700,
       "owner_key": "HYuM2QTusnWbtwk4zd7YPLY9mAn8e5TSXQiXZG9uHQ9F",
-      "balance": 361338,
-      "membership_expire_on": 1696712822,
+      "balance": 401024,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "odilemauret": 1728337120,
@@ -199247,16 +203458,15 @@
     "Thais": {
       "index": 5213,
       "owner_key": "HZDjNXwVhHj2xMUBui9vzmeLRuGnW8cT1UTMa3t27SiN",
-      "balance": 574098,
+      "balance": 613784,
       "membership_expire_on": 1713537425,
-      "next_cert_issuable_on": 1689209024,
+      "next_cert_issuable_on": 1695830462,
       "certs_received": {
         "Aatma": 1745873613,
-        "BlancaFlow": 1699942445,
+        "BlancaFlow": 1758954446,
         "JOANETA": 1751825995,
         "cocoloco": 1745116666,
         "Brahmaya": 1748409497,
-        "Lotus17": 1694486239,
         "marijou": 1714196206,
         "YOSOYLUZ": 1734980713,
         "Wellno1": 1745106786,
@@ -199273,7 +203483,7 @@
     "Lelebolla": {
       "index": 7353,
       "owner_key": "HZQZrznHtFyxUiJg8v8PhftFhXCqhSQfykWfhwL9Giw3",
-      "balance": 531405,
+      "balance": 571091,
       "membership_expire_on": 1705684287,
       "next_cert_issuable_on": 1677384302,
       "certs_received": {
@@ -199293,9 +203503,9 @@
     "LilianeFaure": {
       "index": 9530,
       "owner_key": "HZRyjwngdgcc4gMiPi8nrYcaN4sCuRfJjRozVPn6DGtb",
-      "balance": 425736,
+      "balance": 233422,
       "membership_expire_on": 1721426233,
-      "next_cert_issuable_on": 1686147390,
+      "next_cert_issuable_on": 1694323065,
       "certs_received": {
         "Rachele": 1726015708,
         "MAZUZA": 1731518307,
@@ -199304,13 +203514,14 @@
         "Gib26": 1726125882,
         "Paolagrazia": 1726044130,
         "Rebe11": 1726017316,
-        "Spartaco": 1726016830
+        "Spartaco": 1726016830,
+        "Lorraine83": 1757318556
       }
     },
     "JPRasta": {
       "index": 6190,
       "owner_key": "HZY8Y3oLWkhsdyJVcjfnKDNw6vfQWRv4tGRTqgok9pvw",
-      "balance": 736150,
+      "balance": 775836,
       "membership_expire_on": 1698976791,
       "next_cert_issuable_on": 1672801845,
       "certs_received": {
@@ -199341,10 +203552,11 @@
     "RejjeR": {
       "index": 13229,
       "owner_key": "HZm7FurpT6CLCnCCzbUsKk4XyRVDw2zVWPrD4bJP8o87",
-      "balance": 58784,
+      "balance": 86470,
       "membership_expire_on": 1721683820,
-      "next_cert_issuable_on": 1692672444,
+      "next_cert_issuable_on": 1696504676,
       "certs_received": {
+        "CowboyPierre": 1758515818,
         "MIDO": 1753213817,
         "Etoiledunord": 1752887578,
         "manou11260": 1752888678,
@@ -199356,9 +203568,9 @@
     "YannYoga": {
       "index": 10438,
       "owner_key": "HZvrV1RkD32R9M4PtnhwJJhHQi1wTrXGSZPhCuw9JKAg",
-      "balance": 371203,
-      "membership_expire_on": 1700066416,
-      "next_cert_issuable_on": 1693341413,
+      "balance": 372309,
+      "membership_expire_on": 1727564603,
+      "next_cert_issuable_on": 1694256730,
       "certs_received": {
         "Zap": 1736019500,
         "diablade": 1750662276,
@@ -199375,6 +203587,7 @@
         "sanddebeloest38": 1731806306,
         "Mam": 1750205245,
         "Tell": 1742369698,
+        "ChristianeClavelier": 1759109631,
         "Strat64": 1732673792,
         "ClauTie26": 1742680487,
         "DCat": 1736443550,
@@ -199402,7 +203615,7 @@
     "Kiis": {
       "index": 9392,
       "owner_key": "Ha6TnDBr4KjKqQ4Z67TeBVoFKBvgaVZ5eMimRiXW61Sy",
-      "balance": 390748,
+      "balance": 430434,
       "membership_expire_on": 1720856187,
       "next_cert_issuable_on": 1686798005,
       "certs_received": {
@@ -199416,8 +203629,8 @@
     "Karica": {
       "index": 9862,
       "owner_key": "Ha6ho5Uhx256nPGRAPKf7LLv23sRrZgFCR3KqtHbmws6",
-      "balance": 382201,
-      "membership_expire_on": 1696450745,
+      "balance": 418653,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1674651790,
       "certs_received": {
         "Aude49": 1728008345,
@@ -199441,15 +203654,16 @@
     "Peter": {
       "index": 10207,
       "owner_key": "HaHVvBR5YANVWrui2PLcpoq3xcEcMmAPU1GTTEFjdvCz",
-      "balance": 69398,
-      "membership_expire_on": 1698938401,
-      "next_cert_issuable_on": 1691163182,
+      "balance": 61130,
+      "membership_expire_on": 1725320534,
+      "next_cert_issuable_on": 1696260586,
       "certs_received": {
         "omm": 1748318307,
         "COLYBRY": 1730787865,
         "Lupunita": 1730657333,
         "TxeRoki": 1730779982,
         "Galaxia144": 1730871485,
+        "jilguero": 1758729810,
         "gaia": 1733213291,
         "JosunePP": 1730658573,
         "Roberto_Oraa_79_DDYG": 1730631494,
@@ -199461,7 +203675,7 @@
     "HekilibreH": {
       "index": 12701,
       "owner_key": "HaNLMj63pQSWtMpoaQAD997pxPEhJGDRYMg98cCQGwfx",
-      "balance": 126072,
+      "balance": 165758,
       "membership_expire_on": 1715019301,
       "next_cert_issuable_on": 1687751135,
       "certs_received": {
@@ -199475,7 +203689,7 @@
     "BenoitDoutreleau-avec-un-chapeau-sur-le-i": {
       "index": 1806,
       "owner_key": "HaRS8dPiF7L2eHsKXUVwYbiVvMbCM6c1P2HGn2VoPVWv",
-      "balance": 735565,
+      "balance": 775251,
       "membership_expire_on": 1700954292,
       "next_cert_issuable_on": 1670072534,
       "certs_received": {
@@ -199498,8 +203712,8 @@
     "GUYHL": {
       "index": 1728,
       "owner_key": "HaVUpDTppYUzYpvuL4gYLE58hxHVDdPFENQVHnK5QFpY",
-      "balance": 1845642,
-      "membership_expire_on": 1698667768,
+      "balance": 1918086,
+      "membership_expire_on": 1727619871,
       "next_cert_issuable_on": 1684143996,
       "certs_received": {
         "DBuxerolle": 1747190788,
@@ -199519,7 +203733,7 @@
     "HerbeFolle": {
       "index": 8318,
       "owner_key": "HaWXLHgVwqp6uY9DhMtXLXweQaZjZVKdswER7T4VZgwg",
-      "balance": 528065,
+      "balance": 567751,
       "membership_expire_on": 1712955976,
       "next_cert_issuable_on": 1660370042,
       "certs_received": {
@@ -199536,8 +203750,8 @@
     "Remi-Velo": {
       "index": 6035,
       "owner_key": "HaadSx2bn9yHRxTFTH1jXcUxa8hMnjr8i8sALkbFfMEe",
-      "balance": 424094,
-      "membership_expire_on": 1694616859,
+      "balance": 437978,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675593140,
       "certs_received": {
         "SophSav": 1699143943,
@@ -199574,7 +203788,7 @@
     "Coucourde": {
       "index": 12839,
       "owner_key": "HanccGBC2afC1fWCFisEiqa3PtAirV3V3ZowVNtBUhAQ",
-      "balance": 215712,
+      "balance": 255398,
       "membership_expire_on": 1717430582,
       "next_cert_issuable_on": 1688912661,
       "certs_received": {
@@ -199589,7 +203803,7 @@
     "OrFee48": {
       "index": 11729,
       "owner_key": "HanmLE8wo4TaJNWveKsLxLsbcxUFshF1GZpz8pZ1L9St",
-      "balance": 1099098,
+      "balance": 1138784,
       "membership_expire_on": 1708137905,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -199607,7 +203821,7 @@
     "RA90": {
       "index": 11412,
       "owner_key": "HaoLpVpt8VRqb54QBW1JiwrAbZ4MJGUchjsDvc59j5YQ",
-      "balance": 227034,
+      "balance": 266720,
       "membership_expire_on": 1705527436,
       "next_cert_issuable_on": 1687916968,
       "certs_received": {
@@ -199621,7 +203835,7 @@
     "RomG": {
       "index": 11626,
       "owner_key": "HauGufdDQorT8YuojHTvic1smvJyKSW17n4u1g8Xv6E4",
-      "balance": 210590,
+      "balance": 250276,
       "membership_expire_on": 1707736309,
       "next_cert_issuable_on": 1681001779,
       "certs_received": {
@@ -199637,16 +203851,17 @@
     "cass1": {
       "index": 902,
       "owner_key": "HawvJCqpgGavpAUkreBqfyx13hmYFRnUSoNLLtHzxCip",
-      "balance": 834605,
-      "membership_expire_on": 1701010640,
-      "next_cert_issuable_on": 1680760385,
+      "balance": 874291,
+      "membership_expire_on": 1726251489,
+      "next_cert_issuable_on": 1694765383,
       "certs_received": {
         "GenevLeb": 1698186351,
         "gerardchavanon": 1755830384,
         "Mic": 1698490694,
+        "pr05p3r": 1759796009,
         "RonanGLEMAIN": 1719302946,
         "Maimouna": 1705720363,
-        "Maaltir": 1698451362,
+        "Maaltir": 1758910448,
         "EliseNantes": 1701382618
       }
     },
@@ -199674,7 +203889,7 @@
     "DanieleSenegasTrobadorenca": {
       "index": 1058,
       "owner_key": "HbPWxxNp6HLiYgkbUZ2u1PXpkYXBEUtXX8hb39JkHJ3k",
-      "balance": 383899,
+      "balance": 523585,
       "membership_expire_on": 1700484803,
       "next_cert_issuable_on": 1690973681,
       "certs_received": {
@@ -199693,14 +203908,15 @@
         "Amberle34500": 1741541958,
         "Dodjay": 1741885216,
         "PascalGuillemain": 1703823426,
+        "Joy34": 1756108855,
         "Hdsaf": 1741330225
       }
     },
     "LoupLoulouille": {
       "index": 9891,
       "owner_key": "HbScYEdWrVX6sVYqkVCXGuC9PaACS28BC8pmELaeyJmy",
-      "balance": 343524,
-      "membership_expire_on": 1696783263,
+      "balance": 383210,
+      "membership_expire_on": 1725362917,
       "next_cert_issuable_on": 1686119333,
       "certs_received": {
         "Maryc": 1728341833,
@@ -199729,7 +203945,7 @@
     "RosaAlvesPinho": {
       "index": 11849,
       "owner_key": "HbYuYNDWbLyXNfy9weL7M86WnvxfWTb2GBJXyxQYj53z",
-      "balance": 203600,
+      "balance": 243286,
       "membership_expire_on": 1705955514,
       "next_cert_issuable_on": 1686756833,
       "certs_received": {
@@ -199770,18 +203986,15 @@
     "Samadhi": {
       "index": 5782,
       "owner_key": "HbkrjY9P9jA2nqvdo4tEw7eKsWUfWJYgnzQRq7KE9vBn",
-      "balance": 714718,
-      "membership_expire_on": 1694750648,
+      "balance": 729670,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1644414050,
       "certs_received": {
-        "Eric": 1694558232,
-        "CELIOCTAVE": 1694057201,
         "gui_tooun": 1707455340,
-        "Paul-B": 1694562541,
+        "YIKING": 1757269921,
+        "LNC89": 1757555341,
         "s00999": 1707456835,
-        "krischamp": 1694667996,
-        "toutoune2189": 1694557247,
-        "Nounoursgt8946": 1694557548
+        "Ninette89": 1757286624
       }
     },
     "LilouDy": {
@@ -199809,7 +204022,7 @@
     "Arnaud": {
       "index": 10626,
       "owner_key": "HcACQKPUxjMQvgcqc97brNmEgSNSfV2oFgad8uzgRqmA",
-      "balance": 302975,
+      "balance": 342661,
       "membership_expire_on": 1697066357,
       "next_cert_issuable_on": 1674835993,
       "certs_received": {
@@ -199828,7 +204041,7 @@
     "DJAM22": {
       "index": 12060,
       "owner_key": "HcAPuL9djYMTHKrdDZfrZikrWjMgnYrLFXMqpuqgpWJx",
-      "balance": 180143,
+      "balance": 219829,
       "membership_expire_on": 1710856017,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -199847,14 +204060,13 @@
       "next_cert_issuable_on": 1684476788,
       "certs_received": {
         "Pizzawallas": 1746831727,
-        "Cywil": 1694125527,
         "KillianPavy": 1709279221
       }
     },
     "NadiaPaillard": {
       "index": 4092,
       "owner_key": "HcGwrE2EYY38wzcNdTarDZqzjNifDfdvGHF7sDaycRSZ",
-      "balance": 1126600,
+      "balance": 1166286,
       "membership_expire_on": 1714582278,
       "next_cert_issuable_on": 1689485866,
       "certs_received": {
@@ -199873,7 +204085,7 @@
     "Claireferr": {
       "index": 12679,
       "owner_key": "HcJRLD3LfXJkz2eir2Vaqouh8WjBN5j9LsiTYuci6bJ3",
-      "balance": 127208,
+      "balance": 166894,
       "membership_expire_on": 1715536857,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -199919,9 +204131,9 @@
     "Hannah": {
       "index": 11688,
       "owner_key": "Hchy7APNb225QfshQmU5mFzn52wfcwR18dBMbbctGni7",
-      "balance": 47995,
+      "balance": 87281,
       "membership_expire_on": 1707068971,
-      "next_cert_issuable_on": 1689826766,
+      "next_cert_issuable_on": 1693746708,
       "certs_received": {
         "Sandrine-Tara": 1739921488,
         "ChristelR": 1738627694,
@@ -199934,9 +204146,9 @@
     "MAC": {
       "index": 4238,
       "owner_key": "Hd1dhHAt9Jr5odtAxrqpd7KAmgYqRTZNScewF4fKscHH",
-      "balance": 621975,
-      "membership_expire_on": 1697719144,
-      "next_cert_issuable_on": 1688642598,
+      "balance": 661661,
+      "membership_expire_on": 1727834345,
+      "next_cert_issuable_on": 1696349090,
       "certs_received": {
         "Estela": 1733127728,
         "ErickG_G": 1714853228,
@@ -199962,7 +204174,7 @@
     "FrancoiseRangla974": {
       "index": 5581,
       "owner_key": "Hd1p3tF2wzcvdFL87yft4uwRAgnB5GGcybHBqv4M9SN3",
-      "balance": 481017,
+      "balance": 520703,
       "membership_expire_on": 1715005644,
       "next_cert_issuable_on": 1689824516,
       "certs_received": {
@@ -199987,14 +204199,13 @@
         "Espritangel": 1698119363,
         "SarahAchalafin": 1698993969,
         "Linepau": 1701593104,
-        "Houriadeparissud": 1721286797,
-        "HyperBrut": 1696653716
+        "Houriadeparissud": 1721286797
       }
     },
     "Denise95": {
       "index": 8113,
       "owner_key": "Hd2kUjKaFzHtmanhgDsWBagbYYf4yGr5ShawuSJizb9z",
-      "balance": 509112,
+      "balance": 548798,
       "membership_expire_on": 1716384937,
       "next_cert_issuable_on": 1673090139,
       "certs_received": {
@@ -200011,7 +204222,7 @@
     "Sylvie34": {
       "index": 11175,
       "owner_key": "Hd3MYmejS8f2CGxh3a5mz8hrhyQWm9UVu8yiFkiXj2zv",
-      "balance": 257214,
+      "balance": 296900,
       "membership_expire_on": 1699846820,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -200042,9 +204253,9 @@
     "AgneSb": {
       "index": 7162,
       "owner_key": "HdHUvt2LkRcFPQ7TyPtbP2eMpmPqD6uHGQ7WE1JhcpzJ",
-      "balance": 836919,
+      "balance": 894605,
       "membership_expire_on": 1703952833,
-      "next_cert_issuable_on": 1690262419,
+      "next_cert_issuable_on": 1692896437,
       "certs_received": {
         "Jsln6289": 1721006485,
         "anouchka": 1711247030,
@@ -200075,6 +204286,7 @@
         "GaranceF": 1723322131,
         "BRENNOS": 1733519741,
         "Amethyste": 1715897860,
+        "HappyAmina": 1757471016,
         "Marino45": 1753246063,
         "Gclaire": 1731056664,
         "Hortense": 1731258602,
@@ -200088,14 +204300,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1638339178,
       "certs_received": {
-        "gpsqueeek": 1695598558,
         "ftech": 1701380722
       }
     },
     "Juvenal": {
       "index": 11717,
       "owner_key": "HdYVAfeo1YQaGWotvKoxqtiVNBx3nbUnZPwLuFgWQHhm",
-      "balance": 134559,
+      "balance": 124245,
       "membership_expire_on": 1708407313,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -200111,7 +204322,7 @@
     "Deus": {
       "index": 11554,
       "owner_key": "HdZnWb8DWfZMyP2kvwDG2WtPy2ZGQkHkKVN6a9dqwjQU",
-      "balance": 215385,
+      "balance": 255071,
       "membership_expire_on": 1707252161,
       "next_cert_issuable_on": 1684225563,
       "certs_received": {
@@ -200131,6 +204342,22 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "Volibra": {
+      "index": 13740,
+      "owner_key": "Hdj4wFzFwbFvCDpX2kcXaMM7nRTYPMeqwUpPF4PMH7Pq",
+      "balance": 16234,
+      "membership_expire_on": 1727797404,
+      "next_cert_issuable_on": 1696511440,
+      "certs_received": {
+        "VeroDeJetsDoux": 1759456236,
+        "Majoli34": 1759525508,
+        "Tell": 1759460781,
+        "sandrine": 1759367030,
+        "ChristineMontpellier": 1759541374,
+        "DavidMontpellier": 1759524058,
+        "Sol-Eric": 1759465347
+      }
+    },
     "GeekOGreen": {
       "index": 2437,
       "owner_key": "HdkxCacf3sAyCHYvBK1nGAmpaz7cWBNvf1Jnn56HygWQ",
@@ -200142,9 +204369,9 @@
     "LEO": {
       "index": 5984,
       "owner_key": "HdwWUUm2QktBnKLVaVNhDjToGnHb8D4f4PTHDLBaYfq3",
-      "balance": 697959,
+      "balance": 737645,
       "membership_expire_on": 1713312094,
-      "next_cert_issuable_on": 1680350056,
+      "next_cert_issuable_on": 1695223595,
       "certs_received": {
         "Foxy": 1698919419,
         "GuyDelarche": 1699050926,
@@ -200160,7 +204387,7 @@
     "FelicitasG1": {
       "index": 11278,
       "owner_key": "He3HNEEuKjD22MD9kXej3dq65MoKxzrowxbBrX4gE8Zn",
-      "balance": 233624,
+      "balance": 273310,
       "membership_expire_on": 1705518811,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -200174,7 +204401,7 @@
     "Cath44": {
       "index": 10968,
       "owner_key": "He5ytcmGq7jYgKtTSLMNa9TAXoM6ikfgZNu996FVo3v",
-      "balance": 278335,
+      "balance": 318021,
       "membership_expire_on": 1702768988,
       "next_cert_issuable_on": 1690296139,
       "certs_received": {
@@ -200201,7 +204428,7 @@
     "Ravouillouze1956": {
       "index": 10625,
       "owner_key": "HeEMoWcfub59zMcofVwpwNTTdXQQHK9ZkMRfyruj3GtY",
-      "balance": 290574,
+      "balance": 330260,
       "membership_expire_on": 1700514965,
       "next_cert_issuable_on": 1673110686,
       "certs_received": {
@@ -200231,15 +204458,17 @@
     "Myriam1912": {
       "index": 8698,
       "owner_key": "HeRJDh5NNmt8BiJ5RUboAVeEnyh26rWEb2ez9kAGnZr",
-      "balance": 836794,
+      "balance": 249202,
       "membership_expire_on": 1712520113,
-      "next_cert_issuable_on": 1692887898,
+      "next_cert_issuable_on": 1694395810,
       "certs_received": {
         "AucrAnnie": 1723871960,
         "SophSav": 1725509188,
         "Monette": 1752709995,
         "VIctoriadeIbiza": 1749497397,
         "SarahMontserrat": 1726449227,
+        "LaMagicienne": 1759111260,
+        "Eilahtan": 1759689643,
         "lumirose": 1754427338,
         "etsaman": 1730695009,
         "BrigitteW": 1749590099,
@@ -200250,9 +204479,11 @@
         "Helene-petiteriviere": 1721673227,
         "Rom1": 1739003002,
         "ClarySM": 1741255296,
+        "RosadoraLafee": 1758420243,
         "morimontj": 1749055003,
         "Val34": 1731434886,
         "ECRIVAINE": 1756008976,
+        "CelineRenou": 1755558623,
         "PierrePierreR": 1729493258,
         "ClaireLGM": 1750522595,
         "SOLEIA": 1732682871,
@@ -200284,7 +204515,7 @@
     "Zauberkeks": {
       "index": 12320,
       "owner_key": "HeRhmbgSZ293Jo6k2dCBPE2j4MC1rN8Q12ki6fJzmjC7",
-      "balance": 142644,
+      "balance": 83080,
       "membership_expire_on": 1711036752,
       "next_cert_issuable_on": 1684217160,
       "certs_received": {
@@ -200322,10 +204553,21 @@
       "balance": 330049,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
+      "certs_received": {}
+    },
+    "Armelle14600": {
+      "index": 13473,
+      "owner_key": "HefgsGrNkeEuxpuvZnt2cGjG6dX96YK2UHAXq3FzXEz8",
+      "balance": 208090,
+      "membership_expire_on": 1722694576,
+      "next_cert_issuable_on": 1695124748,
       "certs_received": {
-        "ChloeWeber": 1696099508,
-        "KarineForest": 1696099776,
-        "HugoWeber": 1696099776
+        "Sunflower": 1756614758,
+        "ChristianDelaunay": 1754599303,
+        "aujardindalexandra": 1756704478,
+        "OdalOnTheRoad": 1756590088,
+        "DidierPapillon": 1756502200,
+        "ElisaDesFougeres": 1754254474
       }
     },
     "kinedien": {
@@ -200339,7 +204581,7 @@
     "Celib": {
       "index": 11722,
       "owner_key": "HezQDytiBhSiDojjqSk6KkR7J7325rq2fCKctpAkEHfH",
-      "balance": 207213,
+      "balance": 246899,
       "membership_expire_on": 1706820664,
       "next_cert_issuable_on": 1687773153,
       "certs_received": {
@@ -200365,7 +204607,7 @@
     "Cazouline": {
       "index": 2796,
       "owner_key": "Hf7j4SmR3PCgQ2oySdF42Fk8aB1EcytdYgegkwGRcHft",
-      "balance": 11338,
+      "balance": 51024,
       "membership_expire_on": 1713830412,
       "next_cert_issuable_on": 1690534832,
       "certs_received": {
@@ -200389,11 +204631,12 @@
     "MUSUBI": {
       "index": 8586,
       "owner_key": "HfA8Bf8G4Af8GmF82dByV6KGZFBM6Adcrak9mZ8r8HDY",
-      "balance": 539574,
+      "balance": 602760,
       "membership_expire_on": 1721668877,
       "next_cert_issuable_on": 1675763260,
       "certs_received": {
         "SandrineMala": 1718820043,
+        "Temarante": 1759287548,
         "SebLorion": 1736474766,
         "RikaLorion": 1739676585,
         "Shankarina": 1718604542,
@@ -200414,14 +204657,13 @@
     "HyperBrut": {
       "index": 3428,
       "owner_key": "HfHdqN9dE99HyxHfavuNovr3Dfhw5XvPkVpQaLMgxnnR",
-      "balance": 252583,
+      "balance": 167269,
       "membership_expire_on": 1723038633,
       "next_cert_issuable_on": 1691923881,
       "certs_received": {
         "carmela": 1722422785,
         "Cristol-Iquid": 1710900793,
         "MamieCrypto": 1706671057,
-        "sheveck": 1695098957,
         "Lurtxu": 1711913198,
         "Artix": 1711516885,
         "AlexisLebrun": 1716424243,
@@ -200435,6 +204677,7 @@
         "Marionrosa": 1713116117,
         "aya": 1748310800,
         "Mido": 1733886009,
+        "let-it-be57": 1756499895,
         "DiesseSophie": 1697493890,
         "bert": 1732057742
       }
@@ -200442,12 +204685,12 @@
     "SuzyFrutti": {
       "index": 5523,
       "owner_key": "HfQYs3bX14TRsJbKmJRefE6spjMSBCsexUHEVvkudZyF",
-      "balance": 303805,
+      "balance": 343491,
       "membership_expire_on": 1719510101,
       "next_cert_issuable_on": 1669643239,
       "certs_received": {
         "ChrisTof": 1717529668,
-        "SolangeAIME": 1699502446,
+        "SolangeAIME": 1756944495,
         "SylChris": 1717613653,
         "Harry": 1700529305,
         "LeoFrutti": 1751068186
@@ -200456,7 +204699,7 @@
     "Monphiphi60": {
       "index": 12062,
       "owner_key": "HfTCjhFUGo1xVCsD6AGA4BcUMkS2rUUn2BF7RwTZkPSh",
-      "balance": 175143,
+      "balance": 214829,
       "membership_expire_on": 1710447184,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -200470,9 +204713,9 @@
     "Carolonsdonc": {
       "index": 7427,
       "owner_key": "HfWBFqWx4Mu2imatMTsJgpbpwcTQkioB5W59sD8frXoj",
-      "balance": 595006,
+      "balance": 682292,
       "membership_expire_on": 1706300634,
-      "next_cert_issuable_on": 1681828164,
+      "next_cert_issuable_on": 1695910544,
       "certs_received": {
         "Clau": 1711413839,
         "DanielPGT": 1728918456,
@@ -200523,12 +204766,13 @@
     "Ouest_Cristal8": {
       "index": 12848,
       "owner_key": "HfvLbr4cwMXdJttF6JPS2foHbUiJkfAZgK2yst2qGVRU",
-      "balance": 119644,
+      "balance": 154330,
       "membership_expire_on": 1717376445,
-      "next_cert_issuable_on": 1691399250,
+      "next_cert_issuable_on": 1695568289,
       "certs_received": {
         "DyanZan_Gce": 1748981564,
         "GUL40_Fr1": 1748942241,
+        "JeanChristopheSekinger": 1755619676,
         "GUL40_M4r": 1749193453,
         "denizen": 1749142718,
         "GUL40_N1t1": 1749193627
@@ -200555,7 +204799,7 @@
     "Boubou": {
       "index": 8013,
       "owner_key": "HgMCg6dJ3LT89F56napXxjb4SkFdKir6HwNw8FChJbE7",
-      "balance": 392929,
+      "balance": 432615,
       "membership_expire_on": 1724242689,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -200588,11 +204832,10 @@
     "EricMielcarek": {
       "index": 377,
       "owner_key": "HgTWNKYKHR7d1BTMR6LKdr8v2Kc3QRS5NKKuTF9DXnUr",
-      "balance": 2104655,
+      "balance": 2144341,
       "membership_expire_on": 1717143069,
       "next_cert_issuable_on": 1687138431,
       "certs_received": {
-        "LaureFemmeVanne": 1696233735,
         "stephanechevreau": 1705898065,
         "Fredhaliotis": 1702772640,
         "Pascale72": 1748740266,
@@ -200616,20 +204859,22 @@
     "Elleiramt10": {
       "index": 2689,
       "owner_key": "Hgjt5FSrm5VjBuWQDfUw8HVXcAbmbNJDSZBZyN9NBgFW",
-      "balance": 1475688,
-      "membership_expire_on": 0,
-      "next_cert_issuable_on": 1683117556,
+      "balance": 1510034,
+      "membership_expire_on": 1725452478,
+      "next_cert_issuable_on": 1694185889,
       "certs_received": {
         "SolangeAIME": 1746724346,
         "CelineRenou": 1746160756,
         "Michel1955": 1738629701,
+        "Chrysalide": 1757028396,
+        "Damery": 1757743975,
         "Schiehlebruno": 1739834953
       }
     },
     "Sunshine": {
       "index": 12626,
       "owner_key": "Hgr4tGe95ERACjWyLLtUdsEafhY8HnUh8ZuUqzAB2pbG",
-      "balance": 118548,
+      "balance": 158234,
       "membership_expire_on": 1715137693,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -200643,7 +204888,7 @@
     "RoxyScribe": {
       "index": 7928,
       "owner_key": "Hgt1htqZ3AwKKSuNekLqHkaffXmip82ZF4QUvKAtA9py",
-      "balance": 423020,
+      "balance": 456706,
       "membership_expire_on": 1720741344,
       "next_cert_issuable_on": 1667802995,
       "certs_received": {
@@ -200662,7 +204907,7 @@
     "Naneff": {
       "index": 9040,
       "owner_key": "Hgy8YfTHiKC31t47V1cze5LWpPYNHwgwsHjeJJHG4fiS",
-      "balance": 167684,
+      "balance": 52370,
       "membership_expire_on": 1717965885,
       "next_cert_issuable_on": 1688894431,
       "certs_received": {
@@ -200702,7 +204947,7 @@
     "TenShao": {
       "index": 8417,
       "owner_key": "Hh3PYh4ju6pDCdFC7a2dW1irGhVAUXcRt2QosZJkFo8B",
-      "balance": 324683,
+      "balance": 301369,
       "membership_expire_on": 1712794582,
       "next_cert_issuable_on": 1679885509,
       "certs_received": {
@@ -200723,8 +204968,8 @@
     "al2g": {
       "index": 3927,
       "owner_key": "Hh6sFzWN459qDEj12r174NSL4MSvH5faBcZw65RGFkvA",
-      "balance": 1161625,
-      "membership_expire_on": 1695470274,
+      "balance": 1186219,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1640236163,
       "certs_received": {
         "PascaleMoreau72": 1705267367,
@@ -200738,13 +204983,12 @@
     "MartaCuinaViva": {
       "index": 4560,
       "owner_key": "Hh9ajamEsxDNRdmy1vpvv3oj8RJjcBA53VYdoFqX7eJE",
-      "balance": 182871,
+      "balance": 222557,
       "membership_expire_on": 1705107578,
       "next_cert_issuable_on": 1692329996,
       "certs_received": {
         "Inma_HD_Bere": 1712189975,
         "EliBenifato": 1730715913,
-        "JuanCapitan": 1695858871,
         "JoseMariaDruidadianik": 1755669690,
         "Fer": 1744844498,
         "tereseta": 1737220086
@@ -200753,9 +204997,9 @@
     "sarava": {
       "index": 8998,
       "owner_key": "HhBZ1F7UhrHEBL3oMwzN5ufCZHMQacxJhgUGszjP7RtF",
-      "balance": 174845,
+      "balance": 229795,
       "membership_expire_on": 1715237044,
-      "next_cert_issuable_on": 1688551236,
+      "next_cert_issuable_on": 1696052364,
       "certs_received": {
         "kapis": 1728298377,
         "animula": 1740267701,
@@ -200770,6 +205014,7 @@
         "Tulsi": 1738372841,
         "sheveck": 1721541937,
         "Montsant": 1738482441,
+        "PedroX": 1756848797,
         "origens": 1745086600,
         "AnianaYpunto": 1731442488,
         "CarmeLilum": 1720314287,
@@ -200799,7 +205044,7 @@
     "ChouneFox": {
       "index": 12868,
       "owner_key": "HhD6b3TiAqn8ev9dEZ3DzD4d37B8pMdEHcy5Ndtvrvmp",
-      "balance": 107240,
+      "balance": 146926,
       "membership_expire_on": 1717428271,
       "next_cert_issuable_on": 1687149866,
       "certs_received": {
@@ -200843,7 +205088,7 @@
     "computer-tingly-gothic": {
       "index": 7622,
       "owner_key": "HhRBYKdNssKNmgUs6Tjb22Ty7DXJZRj3eEU16PjyqWK5",
-      "balance": 445243,
+      "balance": 484929,
       "membership_expire_on": 1708207241,
       "next_cert_issuable_on": 1676724032,
       "certs_received": {
@@ -200861,9 +205106,9 @@
     "Osteocellig": {
       "index": 10169,
       "owner_key": "HhUCNDcFueBAgj7TSwMYNrNUWV3hFCDHmcahLn1YSCka",
-      "balance": 422734,
+      "balance": 400920,
       "membership_expire_on": 1724685427,
-      "next_cert_issuable_on": 1682935100,
+      "next_cert_issuable_on": 1696218291,
       "certs_received": {
         "nicolecambourian": 1746256367,
         "Lys2703": 1730148575,
@@ -200876,7 +205121,7 @@
     "Mike_Z": {
       "index": 9148,
       "owner_key": "HhdRoJaTdRDmTU3NxeRBbyo7asX3e4b2b9hyPinfu7v2",
-      "balance": 388123,
+      "balance": 427809,
       "membership_expire_on": 1721299395,
       "next_cert_issuable_on": 1660476585,
       "certs_received": {
@@ -200894,21 +205139,21 @@
       "balance": 335312,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "CathyDebronde": 1695962954
-      }
+      "certs_received": {}
     },
     "Maudinettepouetpouet": {
       "index": 6380,
       "owner_key": "HhkWzCSdeq2sRWPXJyCczrt3HEq12iFdpGX5mDxysNFw",
-      "balance": 466837,
+      "balance": 506523,
       "membership_expire_on": 1724579826,
       "next_cert_issuable_on": 1693094226,
       "certs_received": {
+        "olione": 1757457725,
         "nashira": 1702315600,
         "DameBene": 1744413025,
         "Tembo": 1753339339,
         "Marylin": 1756137736,
+        "Corine": 1757459954,
         "NAMA-STE": 1713371704,
         "Fabi26": 1699830504,
         "RoryKiwi": 1744869694,
@@ -200930,7 +205175,7 @@
     "Yael74": {
       "index": 10903,
       "owner_key": "Hi1vKZPuYwQ7FRiUE1GhwSMTEum8xw2TK4YaijpBUpWz",
-      "balance": 272571,
+      "balance": 312257,
       "membership_expire_on": 1702563654,
       "next_cert_issuable_on": 1671725682,
       "certs_received": {
@@ -200964,7 +205209,7 @@
     "jbolle": {
       "index": 9748,
       "owner_key": "Hi44ruKbzLfVfXFB33Wp49TiYtv7jAEhLqSJpgCmb8za",
-      "balance": 40173,
+      "balance": 19859,
       "membership_expire_on": 1723401566,
       "next_cert_issuable_on": 1686230423,
       "certs_received": {
@@ -200978,7 +205223,7 @@
     "FabriceD": {
       "index": 7242,
       "owner_key": "Hi6MNe9sqVkRdgBcZ29mLfjm2yMyfKdNtuAuoD5cqoqh",
-      "balance": 590334,
+      "balance": 630020,
       "membership_expire_on": 1708955896,
       "next_cert_issuable_on": 1648958799,
       "certs_received": {
@@ -201018,7 +205263,7 @@
     "lozu": {
       "index": 6170,
       "owner_key": "HiBBXoBMpys4Ho4RS6hWo6F7S8UXX4tnGX8Zhk6ncxXB",
-      "balance": 627641,
+      "balance": 667327,
       "membership_expire_on": 1699585681,
       "next_cert_issuable_on": 1690422965,
       "certs_received": {
@@ -201039,9 +205284,9 @@
     "Lieve": {
       "index": 9645,
       "owner_key": "HiJwPheLvYUQgGhguAPEbikKeTYMczf1W7ktTDafC6Tu",
-      "balance": 411686,
+      "balance": 470172,
       "membership_expire_on": 1724451717,
-      "next_cert_issuable_on": 1693318104,
+      "next_cert_issuable_on": 1694144110,
       "certs_received": {
         "ChatChris": 1727151850,
         "Sisi": 1727072076,
@@ -201057,7 +205302,7 @@
     "Coline13": {
       "index": 7180,
       "owner_key": "HiKGmsT9tHUdZ9bgp33k5pdVuBoDLqzsKcVwAp62FH6g",
-      "balance": 411855,
+      "balance": 451541,
       "membership_expire_on": 1705433686,
       "next_cert_issuable_on": 1679427784,
       "certs_received": {
@@ -201082,8 +205327,8 @@
     "Yeguay": {
       "index": 9756,
       "owner_key": "HiKrjhgTMx26SCh9rH4pBxeYRAXhK7A137uB4KG1fwRi",
-      "balance": 424173,
-      "membership_expire_on": 1696205636,
+      "balance": 457391,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1685709438,
       "certs_received": {
         "MaudD": 1727851665,
@@ -201125,9 +205370,9 @@
     "GMokeur": {
       "index": 13039,
       "owner_key": "HiU3n6F26AbmJvGSQ4D5ohmGCqu3UVAfiu41RmPvSSpz",
-      "balance": 68148,
+      "balance": 108334,
       "membership_expire_on": 1718741680,
-      "next_cert_issuable_on": 1691653099,
+      "next_cert_issuable_on": 1696321371,
       "certs_received": {
         "MarieCathou": 1751230341,
         "TiboDom": 1753566673,
@@ -201145,7 +205390,7 @@
     "Doina974": {
       "index": 4049,
       "owner_key": "HiXN1ifrpLHjxg6XKdUAwkqhM8L2xUG67wcTt2kmwGGa",
-      "balance": 366299,
+      "balance": 405985,
       "membership_expire_on": 1718304422,
       "next_cert_issuable_on": 1690722750,
       "certs_received": {
@@ -201163,7 +205408,7 @@
     "DavidLagon": {
       "index": 8800,
       "owner_key": "HiYgNRzgYDBVmUdJgi6SwH9KXYxJfikD2HKgyeF1ykFF",
-      "balance": 343006,
+      "balance": 357692,
       "membership_expire_on": 1714688341,
       "next_cert_issuable_on": 1681028038,
       "certs_received": {
@@ -201191,9 +205436,9 @@
     "NoucheMairy": {
       "index": 7988,
       "owner_key": "HigTTZPckf7fTFY2bw2SZqx1qVKR8BE2A9qCZteQWHzB",
-      "balance": 473120,
+      "balance": 410906,
       "membership_expire_on": 1711503210,
-      "next_cert_issuable_on": 1692963537,
+      "next_cert_issuable_on": 1694411096,
       "certs_received": {
         "rockwater": 1714849270,
         "MartinsE": 1742968474,
@@ -201210,7 +205455,7 @@
     "CesarSerey": {
       "index": 10453,
       "owner_key": "HijxHN6TwEXcXjsWL3W1WTeV4m11s9yGFpqpph6F2oYM",
-      "balance": 170683,
+      "balance": 117325,
       "membership_expire_on": 1700524577,
       "next_cert_issuable_on": 1688819388,
       "certs_received": {
@@ -201226,12 +205471,28 @@
         "YaYiSu": 1732097892
       }
     },
+    "AlanAriel": {
+      "index": 13674,
+      "owner_key": "HiqqfKMmLSMpH6H8ePwueKeN9pAWDtA7uyEmFxmr69Bd",
+      "balance": 4151,
+      "membership_expire_on": 1727113171,
+      "next_cert_issuable_on": 1696248359,
+      "certs_received": {
+        "SamuelPabloAlmonacid": 1758990141,
+        "Wotan": 1758648379,
+        "Elariel": 1758859219,
+        "Betty": 1758873889,
+        "Monik9366": 1758969228,
+        "Walkiria": 1758659001,
+        "Math": 1758932937
+      }
+    },
     "Juju": {
       "index": 4886,
       "owner_key": "HizagHhRcipNNPxy2sdmE6ZdQ7U5eNcXWjURwtBzMoGt",
-      "balance": 877877,
-      "membership_expire_on": 1698894690,
-      "next_cert_issuable_on": 1660944143,
+      "balance": 917563,
+      "membership_expire_on": 1727910691,
+      "next_cert_issuable_on": 1696425091,
       "certs_received": {
         "olione": 1697436320,
         "GastonL": 1697922109,
@@ -201248,6 +205509,7 @@
         "Dionysos": 1698714807,
         "Lando": 1699481181,
         "AnemoneSyl": 1708637921,
+        "Ninon914": 1759248042,
         "JGlExplorateur": 1706398385
       }
     },
@@ -201262,7 +205524,7 @@
     "Harry71": {
       "index": 9182,
       "owner_key": "Hj721MB8sCTguBNEbd9QK1TtSuWVGEBGhp5cMJ6nRfqY",
-      "balance": 367819,
+      "balance": 407505,
       "membership_expire_on": 1719834955,
       "next_cert_issuable_on": 1690433672,
       "certs_received": {
@@ -201279,7 +205541,7 @@
     "Nanard": {
       "index": 10070,
       "owner_key": "HjAiHfUvAU9hbKrnBUtPToLfvS6w9fZhaTJNyPfLkt6Q",
-      "balance": 355316,
+      "balance": 395002,
       "membership_expire_on": 1698165756,
       "next_cert_issuable_on": 1690343034,
       "certs_received": {
@@ -201297,7 +205559,7 @@
     "Gastounette": {
       "index": 13346,
       "owner_key": "HjnHVNDLS1cQydazMVSNkLYwsX9DVT9uycqasYj8JxAC",
-      "balance": 22428,
+      "balance": 97114,
       "membership_expire_on": 1722356540,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -201328,7 +205590,7 @@
     "lm66": {
       "index": 1275,
       "owner_key": "HjqcogJRhianwxihURoY4hpBuGm4W9voqD3dkxaWwzva",
-      "balance": 4326351,
+      "balance": 4366037,
       "membership_expire_on": 1705313322,
       "next_cert_issuable_on": 1684363937,
       "certs_received": {
@@ -201343,7 +205605,7 @@
     "Helver": {
       "index": 11930,
       "owner_key": "HjqrZhsaSotkBNzjzYbN3eMbs45hT4UcoWKqGPLUXhqE",
-      "balance": 196733,
+      "balance": 236419,
       "membership_expire_on": 1708889777,
       "next_cert_issuable_on": 1681622805,
       "certs_received": {
@@ -201367,14 +205629,15 @@
     "guly": {
       "index": 8503,
       "owner_key": "Hk8j8Y8FKkqrL2Te57xcz2gQbmFvDUrNeHCqe3SieCAh",
-      "balance": 363777,
+      "balance": 403463,
       "membership_expire_on": 1713203994,
-      "next_cert_issuable_on": 1688479728,
+      "next_cert_issuable_on": 1694227640,
       "certs_received": {
         "Mika90": 1717980187,
         "JuSag": 1718301815,
         "CalineR2": 1718004620,
         "PhilippeMarceau": 1735619154,
+        "Micheconte1947": 1759450757,
         "Remi70290": 1746550815,
         "maitala": 1717979126,
         "Lama": 1733528732,
@@ -201384,8 +205647,8 @@
     "Fresia007": {
       "index": 10430,
       "owner_key": "HkC9s2qf3xhf7fr68kqErMSbPupmaRSKWcKWYW3qGL5K",
-      "balance": 264341,
-      "membership_expire_on": 1699709155,
+      "balance": 289027,
+      "membership_expire_on": 1727963671,
       "next_cert_issuable_on": 1682644402,
       "certs_received": {
         "Schourey": 1732244207,
@@ -201408,7 +205671,7 @@
     "ZougZoug29": {
       "index": 7382,
       "owner_key": "HkJYWKr38MDTkmTrAsHoCg9wGGmkThbtFEGX4EXPUFk6",
-      "balance": 328490,
+      "balance": 358176,
       "membership_expire_on": 1717351192,
       "next_cert_issuable_on": 1650104015,
       "certs_received": {
@@ -201455,7 +205718,7 @@
     "alemilton": {
       "index": 8624,
       "owner_key": "HkXdBLJG4zJjBYA2AvP3uJUu2Hr3v2p4qMVWtfwvw7rW",
-      "balance": 352884,
+      "balance": 372570,
       "membership_expire_on": 1719669662,
       "next_cert_issuable_on": 1667061371,
       "certs_received": {
@@ -201499,9 +205762,9 @@
     "Isa35": {
       "index": 11188,
       "owner_key": "HktVPKDDrQDyLiyNMt9tLoYibt82GwmGHjJYuyswBUKt",
-      "balance": 259891,
+      "balance": 299577,
       "membership_expire_on": 1702114001,
-      "next_cert_issuable_on": 1691198130,
+      "next_cert_issuable_on": 1695034035,
       "certs_received": {
         "Matris35": 1751514786,
         "Jerome035": 1736535464,
@@ -201523,11 +205786,11 @@
     "Krugor": {
       "index": 245,
       "owner_key": "Hm5qjaNuHogNRdGZ4vgnLA9DMZVUu5YWzVup5mubuxCc",
-      "balance": 1557581,
+      "balance": 1579567,
       "membership_expire_on": 1723914266,
       "next_cert_issuable_on": 1693275118,
       "certs_received": {
-        "FLORESTRELA": 1700568279,
+        "FLORESTRELA": 1758346019,
         "Laurence": 1746081579,
         "FanchDz": 1747939065,
         "Pepper": 1725576233,
@@ -201538,18 +205801,22 @@
     "josecristobalsaludholistica": {
       "index": 11385,
       "owner_key": "HmBhbso1v5V3iwvey7VpuuAHFFLKuHW9UFMCLN5Xj4a2",
-      "balance": 110532,
+      "balance": 114718,
       "membership_expire_on": 1702950443,
-      "next_cert_issuable_on": 1693273124,
+      "next_cert_issuable_on": 1696470951,
       "certs_received": {
         "Almudenartista": 1737941765,
         "Jai": 1734538740,
         "Eguzki": 1743967220,
+        "Sonya": 1759341044,
+        "Camilarogelia13": 1757203000,
         "MaiteBel": 1750306173,
         "JosunePP": 1737929573,
         "Jontxu67": 1737947386,
         "Aitziber": 1738830661,
+        "Enoc": 1757718094,
         "Asiergr": 1737947386,
+        "lachispis": 1756278564,
         "ABuenVivir": 1738042037
       }
     },
@@ -201584,7 +205851,7 @@
     "DomP07": {
       "index": 11895,
       "owner_key": "HmDvwBud4CKWTBiuEdGawsDxi8sz49m68JNA1RQzncYN",
-      "balance": 201469,
+      "balance": 241155,
       "membership_expire_on": 1709587515,
       "next_cert_issuable_on": 1678726929,
       "certs_received": {
@@ -201598,9 +205865,9 @@
     "loreak": {
       "index": 9452,
       "owner_key": "HmUwYaUFgvzoyXUkZsXyJ7iwjMeZWma8RpLTX1smiNf3",
-      "balance": 52044,
+      "balance": 66817,
       "membership_expire_on": 1720208153,
-      "next_cert_issuable_on": 1690863751,
+      "next_cert_issuable_on": 1696773474,
       "certs_received": {
         "Nounoune": 1737569969,
         "ClaKi66": 1728103064,
@@ -201622,6 +205889,7 @@
         "Padme": 1732061169,
         "Verozen": 1745294585,
         "carmenpeluquera": 1754970751,
+        "CristinaAbella": 1757824735,
         "Fredamour": 1725731716,
         "Micha": 1734744430,
         "noemi": 1741660912,
@@ -201639,7 +205907,7 @@
     "Tompouce": {
       "index": 6525,
       "owner_key": "HmdSxDZcqaMT8kbjxwsxVe8BhEL4hcp7dYrvquoXhTAL",
-      "balance": 573565,
+      "balance": 613251,
       "membership_expire_on": 1699712671,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -201653,7 +205921,7 @@
     "FredGoa": {
       "index": 8547,
       "owner_key": "Hmfe1Td9y8b4P1V3LqPCmUWdEqFrmnyJJmw5AiLzBkJQ",
-      "balance": 466675,
+      "balance": 506361,
       "membership_expire_on": 1718135982,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -201667,9 +205935,9 @@
     "Ninon914": {
       "index": 6183,
       "owner_key": "HmjWfwtCaoNXdmNGAzcaVipEdhgWBEHqP2m4E3cViqJ5",
-      "balance": 579175,
+      "balance": 618861,
       "membership_expire_on": 1720987222,
-      "next_cert_issuable_on": 1693540523,
+      "next_cert_issuable_on": 1696204842,
       "certs_received": {
         "Midorela": 1724222998,
         "dnoelle": 1713919376,
@@ -201677,6 +205945,7 @@
         "DominiqueCuvelier": 1702102002,
         "Tembo": 1752998088,
         "JusteAlex": 1710412610,
+        "Marylin": 1757858951,
         "CaptainVic": 1746231005,
         "Corine": 1755282947,
         "Fabi26": 1698374273,
@@ -201688,6 +205957,7 @@
         "Pilar": 1698719923,
         "ROVER5537": 1725250689,
         "Dionysos": 1698366042,
+        "YATO": 1757458982,
         "Adelle": 1705130760,
         "CovaDidier": 1717281453,
         "Meryazel": 1708291725,
@@ -201699,12 +205969,12 @@
     "tcit": {
       "index": 306,
       "owner_key": "HmoPmhFDcqAeoxe84FU3bcQKVFE2Q3LooARhnPme88HG",
-      "balance": 1973947,
+      "balance": 2013633,
       "membership_expire_on": 1719401944,
       "next_cert_issuable_on": 1677812994,
       "certs_received": {
         "Framasky": 1700858841,
-        "YannKervran": 1700725978,
+        "YannKervran": 1758425990,
         "Jeey": 1700885207,
         "ArthurLutz": 1746064362,
         "stph": 1700889932,
@@ -201717,9 +205987,9 @@
     "Elouane": {
       "index": 4266,
       "owner_key": "HmtGUspcjE9sFLMg6aBU7Naq1Bk2521nBRPWXTsuURSi",
-      "balance": 661756,
+      "balance": 457442,
       "membership_expire_on": 1722279535,
-      "next_cert_issuable_on": 1678014264,
+      "next_cert_issuable_on": 1693406831,
       "certs_received": {
         "ScarlettGabrielle_8": 1729625929,
         "PorteduCiel": 1730097249,
@@ -201776,9 +206046,9 @@
     "Fauna": {
       "index": 12743,
       "owner_key": "HnCpCGszoT6TgA85Mcha1L7kPR7pSVDDh7p5SWTHsDCY",
-      "balance": 109664,
+      "balance": 149350,
       "membership_expire_on": 1714587481,
-      "next_cert_issuable_on": 1687254597,
+      "next_cert_issuable_on": 1696216348,
       "certs_received": {
         "Ferpires": 1752805123,
         "InesHappyFamily": 1747411677,
@@ -201792,8 +206062,8 @@
     "Lulubellule": {
       "index": 9953,
       "owner_key": "HnDgeyG3K15aLXad3Wdcv92G4zMkerQFDrAWTFydq3sf",
-      "balance": 321698,
-      "membership_expire_on": 1697475533,
+      "balance": 349876,
+      "membership_expire_on": 1726585288,
       "next_cert_issuable_on": 1691576279,
       "certs_received": {
         "FabFabounette": 1735596350,
@@ -201834,12 +206104,13 @@
     "MarieThom": {
       "index": 8268,
       "owner_key": "HnGCWgzwvfvGXJhVZcWwDC2j5GHTbbZo6gNJ5dxMHVbK",
-      "balance": 316113,
+      "balance": 355799,
       "membership_expire_on": 1714309909,
-      "next_cert_issuable_on": 1673868760,
+      "next_cert_issuable_on": 1694348156,
       "certs_received": {
         "VERDANDI77": 1716951690,
         "Jeff7791": 1715393744,
+        "PatrickREVIF": 1757736767,
         "Faquantharmonie": 1716415208,
         "Flore66": 1716424856,
         "Enjoy91": 1720840751,
@@ -201849,19 +206120,17 @@
     "Spartacus": {
       "index": 1402,
       "owner_key": "HnQH8P6n5q3mqNk8V9zP44shmZJbqWJJfJfU7ZfTBung",
-      "balance": 1981021,
+      "balance": 1027107,
       "membership_expire_on": 1703931057,
-      "next_cert_issuable_on": 1693031825,
+      "next_cert_issuable_on": 1693813013,
       "certs_received": {
         "Asterix": 1731626999,
         "Yipyip": 1738526626,
-        "Lumiere": 1696482315,
         "Gregory": 1721619238,
         "INTI": 1732215047,
         "NatGordon": 1730848545,
-        "Reumy": 1695198666,
+        "Reumy": 1758485325,
         "Mame": 1699769936,
-        "amaterra": 1696660547,
         "WilliamWeber": 1731034320,
         "JDLepage-Guichard": 1705189379,
         "Energie": 1738900969,
@@ -201879,9 +206148,9 @@
     "Perlette": {
       "index": 12113,
       "owner_key": "HncbwQE5Nt1tPxZsF9RxBJ3yDi4t2V6QLHCtxCJKSiXT",
-      "balance": 172512,
+      "balance": 212198,
       "membership_expire_on": 1711228076,
-      "next_cert_issuable_on": 1681971709,
+      "next_cert_issuable_on": 1696392620,
       "certs_received": {
         "Gossein": 1742852148,
         "Philp": 1742788871,
@@ -201894,7 +206163,7 @@
     "Phileas": {
       "index": 7430,
       "owner_key": "HndrfTZULmwJ43QhhGiK1uaGW4dudrRRLTb8vyTurn1e",
-      "balance": 436208,
+      "balance": 435894,
       "membership_expire_on": 1708711361,
       "next_cert_issuable_on": 1689867205,
       "certs_received": {
@@ -201917,7 +206186,7 @@
     "Alicia12": {
       "index": 7174,
       "owner_key": "HnjByEV8xGouLp4zwKFhBYhXbZbMvi9nDDRG81BC4cnq",
-      "balance": 368315,
+      "balance": 373315,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -201969,10 +206238,11 @@
     "PenaBranca": {
       "index": 12847,
       "owner_key": "HoAA3PCnTumwq5qjUU1LUE6U5HYSqJ6dKBNEEQWFN1ph",
-      "balance": 98812,
+      "balance": 138498,
       "membership_expire_on": 1716922499,
-      "next_cert_issuable_on": 1693303959,
+      "next_cert_issuable_on": 1696395116,
       "certs_received": {
+        "Judit137": 1757746305,
         "PatriciaDoVale": 1749426032,
         "Yana": 1754116867,
         "FerSar": 1749412265,
@@ -201981,6 +206251,7 @@
         "StefaniaCamilla": 1749412265,
         "HViegas": 1749420482,
         "Rahhui": 1755277189,
+        "JorgeDraven": 1755748466,
         "ElisabeteMartins": 1749268981,
         "ManuelSoares": 1756355480
       }
@@ -202004,7 +206275,7 @@
     "LucileCRZ": {
       "index": 7021,
       "owner_key": "HoR4iBovUi1Txk61MxRLYYwePmrPAKo3HmJxgcaZgArK",
-      "balance": 673583,
+      "balance": 713269,
       "membership_expire_on": 1710674122,
       "next_cert_issuable_on": 1650597637,
       "certs_received": {
@@ -202030,7 +206301,7 @@
     "YvonneD": {
       "index": 10581,
       "owner_key": "HoaSBLmv9QswVN4uZky5PE4kjAQdUnhdQk5uNdibZzsk",
-      "balance": 728291,
+      "balance": 767977,
       "membership_expire_on": 1699222382,
       "next_cert_issuable_on": 1690941579,
       "certs_received": {
@@ -202064,7 +206335,7 @@
     "Kombuchero": {
       "index": 8071,
       "owner_key": "HonPMZpLBYgoQgGEwuMp6XLWKGijkZNo1HHvR1viBLWN",
-      "balance": 560393,
+      "balance": 596079,
       "membership_expire_on": 1711276146,
       "next_cert_issuable_on": 1679790546,
       "certs_received": {
@@ -202083,7 +206354,7 @@
     "Gourmandise": {
       "index": 6864,
       "owner_key": "HonjnCqoRfnkZCyVV2nnvAaJiq5jpR1VFMgsGG5RhQx8",
-      "balance": 616053,
+      "balance": 655739,
       "membership_expire_on": 1706222218,
       "next_cert_issuable_on": 1674736618,
       "certs_received": {
@@ -202108,7 +206379,7 @@
     "stephanemognol": {
       "index": 11994,
       "owner_key": "HozYZbfEvpaaKTkKKKB9fokTXtCmqpjzpSg39aawhokT",
-      "balance": 188138,
+      "balance": 227824,
       "membership_expire_on": 1706389786,
       "next_cert_issuable_on": 1691055976,
       "certs_received": {
@@ -202137,8 +206408,8 @@
     "Dauphin123": {
       "index": 9656,
       "owner_key": "Hp2eVngRHVoTLPJQG7aKHxQZo5UkvSMmCaqaPcW5xXTg",
-      "balance": 334627,
-      "membership_expire_on": 1695073069,
+      "balance": 353851,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668063943,
       "certs_received": {
         "Sylvia8636": 1726708307,
@@ -202206,12 +206477,14 @@
     "Bilou": {
       "index": 13148,
       "owner_key": "HpQUXjr8NwfAcamBFN8ooppY8p3rT33w25X5Y8CrAMhc",
-      "balance": 44364,
+      "balance": 84050,
       "membership_expire_on": 1720655039,
-      "next_cert_issuable_on": 1693314700,
+      "next_cert_issuable_on": 1696321371,
       "certs_received": {
         "SophieRita": 1755832147,
+        "MarcelleA": 1759031080,
         "FernandP": 1752341554,
+        "PhilippeLafontaine": 1757011488,
         "Elinette": 1752294375,
         "MarieMas": 1756366217,
         "MarieF68": 1755935848,
@@ -202225,21 +206498,27 @@
     "Maribel": {
       "index": 11006,
       "owner_key": "HpT3ALuJV1rLkq9Bho3ge3wH3NmV5bo6f4Y5b5aq4qAB",
-      "balance": 128418,
+      "balance": 114006,
       "membership_expire_on": 1702737497,
-      "next_cert_issuable_on": 1693464301,
+      "next_cert_issuable_on": 1695988532,
       "certs_received": {
         "BMorelle": 1736894391,
         "Fox": 1755542931,
+        "DomVe": 1756919841,
         "Audeko": 1735070212,
+        "Micha99": 1757748316,
         "Quetzal": 1735155759,
         "Domicilia": 1734888888,
         "MEME3": 1739858777,
+        "cricri": 1756835648,
         "Didiamm": 1740702305,
         "ChantAloha": 1735156119,
         "Marysecpa": 1739080806,
         "Tranquillou": 1739083716,
+        "Micha": 1757382091,
         "Masillonpatricia": 1735069640,
+        "Isalanzarote": 1756881662,
+        "Bilou": 1759364571,
         "MarianneH3": 1740509905
       }
     },
@@ -202254,7 +206533,7 @@
     "Arya": {
       "index": 5856,
       "owner_key": "HpggZkYhUf85tUckue6Ud5Sr1ZywJAMtv86B4owkWGi2",
-      "balance": 704805,
+      "balance": 744491,
       "membership_expire_on": 1697981308,
       "next_cert_issuable_on": 1666504784,
       "certs_received": {
@@ -202269,7 +206548,7 @@
     "brouits": {
       "index": 3681,
       "owner_key": "Hpijdte8xNJhcqFsieHwUx7SNCwoSHofLSuqVk59M35S",
-      "balance": 2047357,
+      "balance": 2087043,
       "membership_expire_on": 1712696225,
       "next_cert_issuable_on": 1667458111,
       "certs_received": {
@@ -202307,7 +206586,7 @@
     "Remiz24": {
       "index": 6690,
       "owner_key": "HpoS89a4FmRJaEAJPU9pogSivjak5cKwhqV3UE1ee7sD",
-      "balance": 708430,
+      "balance": 748116,
       "membership_expire_on": 1701182684,
       "next_cert_issuable_on": 1658161778,
       "certs_received": {
@@ -202322,7 +206601,7 @@
     "Amparo": {
       "index": 6746,
       "owner_key": "HpztnzdDP1FEiS4bnXVzQ3BQBAfRiMUMhHK7xzTGsVqe",
-      "balance": 151925,
+      "balance": 146611,
       "membership_expire_on": 1701224116,
       "next_cert_issuable_on": 1651582816,
       "certs_received": {
@@ -202339,9 +206618,9 @@
     "LaurentM": {
       "index": 2789,
       "owner_key": "Hq1zNJyYGWVEXUXCCH7J5FcfNodZKb3bGQe5H4q9PDWi",
-      "balance": 905319,
+      "balance": 892321,
       "membership_expire_on": 1703187980,
-      "next_cert_issuable_on": 1686471396,
+      "next_cert_issuable_on": 1696138727,
       "certs_received": {
         "Mattice": 1712907632,
         "AnnaLisa": 1716793769,
@@ -202349,7 +206628,6 @@
         "belledemai": 1700509517,
         "UNE": 1709667243,
         "Kristo": 1701536690,
-        "ElieLombard": 1695923654,
         "Samuel": 1700379073,
         "JusteAlex": 1716764627,
         "Ju73": 1703192347,
@@ -202361,9 +206639,8 @@
         "Joailes38": 1705266015,
         "MioPalmon988": 1709395849,
         "Alexis05": 1714509058,
+        "Bap": 1758361952,
         "Lucas_Desroches": 1740427898,
-        "pbienfait": 1694549649,
-        "MoulinMuriel": 1694033044,
         "LibertyFran": 1708305944,
         "thierry38": 1737103286,
         "conchitaSIMON": 1700347993,
@@ -202376,7 +206653,7 @@
         "Juventini": 1753235675,
         "Josetre": 1709078775,
         "Fa5": 1747067927,
-        "Anthony": 1696846608,
+        "Anthony": 1758692975,
         "OLDBLACK84": 1703202092,
         "Cigalou": 1751914701
       }
@@ -202384,15 +206661,16 @@
     "caroline26220": {
       "index": 1344,
       "owner_key": "Hq2nz6bavMuJYv2erCreuZP3LRqRKEEj1oMHfVhxq7Rx",
-      "balance": 1378609,
-      "membership_expire_on": 1696178035,
-      "next_cert_issuable_on": 1687073441,
+      "balance": 1418195,
+      "membership_expire_on": 1725500588,
+      "next_cert_issuable_on": 1694923295,
       "certs_received": {
         "perenoel": 1730657632,
         "merenoel": 1733339719,
         "Odilory": 1727745826,
         "MadoDefontaine": 1728625315,
         "MartineRivat": 1729230228,
+        "Michellecuyer26": 1757968021,
         "BRIDGET": 1737008962,
         "ChaGaia5926": 1727745826,
         "Sevdiesse": 1729237272,
@@ -202405,7 +206683,7 @@
     "Alfredobuendia-Sebastienvautelin": {
       "index": 8095,
       "owner_key": "HqBqi6v2yXmbWixQb7cjRUefsSp4UM3ZiuxnVmHzRLpq",
-      "balance": 641196,
+      "balance": 680882,
       "membership_expire_on": 1712802783,
       "next_cert_issuable_on": 1671724014,
       "certs_received": {
@@ -202450,9 +206728,9 @@
     "Jkmbio": {
       "index": 7711,
       "owner_key": "HqJpf8edqf9AZPAMRoknznuQ9Swemm8CG15CiDLhg9bY",
-      "balance": 190846,
+      "balance": 179532,
       "membership_expire_on": 1707864691,
-      "next_cert_issuable_on": 1690532480,
+      "next_cert_issuable_on": 1695258017,
       "certs_received": {
         "arbocenc": 1713065919,
         "mati": 1721879385,
@@ -202474,7 +206752,7 @@
     "Daddo": {
       "index": 9916,
       "owner_key": "HqQGopnTtQyw4SgR34NXuE5V7Aa2f2upHVgux582dgrK",
-      "balance": 322965,
+      "balance": 357651,
       "membership_expire_on": 1723476514,
       "next_cert_issuable_on": 1687068409,
       "certs_received": {
@@ -202489,8 +206767,8 @@
     "Sinclair": {
       "index": 10019,
       "owner_key": "HqRitgsSGpXUfHKwdY78PJFiXk5Wuz1azzQyWEN4HQNc",
-      "balance": 426652,
-      "membership_expire_on": 1694203414,
+      "balance": 466338,
+      "membership_expire_on": 1725550685,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "LydieParthenay": 1728841944,
@@ -202514,7 +206792,7 @@
     "Marguerite07410": {
       "index": 7614,
       "owner_key": "HqZVr43FPGN2nf25GPPUtyUkdP3nPYD9ZDHZaA7FLj9y",
-      "balance": 451245,
+      "balance": 490931,
       "membership_expire_on": 1716150514,
       "next_cert_issuable_on": 1655700263,
       "certs_received": {
@@ -202528,7 +206806,7 @@
     "SophieMD": {
       "index": 7792,
       "owner_key": "HqfAE9Pch1CdwkjZebKRxdb7iwJtBoyk56GpGf66ffkD",
-      "balance": 529531,
+      "balance": 569217,
       "membership_expire_on": 1713207714,
       "next_cert_issuable_on": 1688020605,
       "certs_received": {
@@ -202554,7 +206832,7 @@
     "Moimaime": {
       "index": 10795,
       "owner_key": "HqkgWNPmdgrPrcchpzVLkK4Tc3uf2yNoK9RFdKzfYmaN",
-      "balance": 287984,
+      "balance": 327670,
       "membership_expire_on": 1702219693,
       "next_cert_issuable_on": 1679820861,
       "certs_received": {
@@ -202567,6 +206845,21 @@
         "NoelSoudon": 1733819090
       }
     },
+    "lunamoon": {
+      "index": 13750,
+      "owner_key": "HqnohPhM6MDcamtuseMCfeTQ44hgmv1t8rEYeRKJ5znp",
+      "balance": 54410,
+      "membership_expire_on": 1728085677,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "mssix": 1759719132,
+        "hdecidre": 1759718037,
+        "Quintescence": 1759521601,
+        "Salsa33150": 1759650497,
+        "Tango8943": 1759650497,
+        "Emeriol": 1759719132
+      }
+    },
     "Alyss": {
       "index": 8887,
       "owner_key": "HqoxbqHWHAwJ7pQkq8jw3Q82sDht2YWytKwGBR1eEah7",
@@ -202592,7 +206885,7 @@
     "Titine": {
       "index": 7540,
       "owner_key": "Hqsc1PgzYwGUBSrao9P5KV8ZgVW9vbyFmRe4P6JNuVec",
-      "balance": 602047,
+      "balance": 653733,
       "membership_expire_on": 1714684840,
       "next_cert_issuable_on": 1656517981,
       "certs_received": {
@@ -202608,7 +206901,7 @@
     "Pilarpm": {
       "index": 7726,
       "owner_key": "HqtMj9YKthv1WzoA3quvuPyaKKeFtveQD4tkoJLLriqn",
-      "balance": 131205,
+      "balance": 129275,
       "membership_expire_on": 1708909211,
       "next_cert_issuable_on": 1689325786,
       "certs_received": {
@@ -202649,9 +206942,9 @@
     "Picatch": {
       "index": 12940,
       "owner_key": "Hqwr6BGEPcsWv8ZMrWnstv2uZMhKqRc7zC4q8AJv5Pvs",
-      "balance": 95096,
+      "balance": 147282,
       "membership_expire_on": 1718580599,
-      "next_cert_issuable_on": 1689254622,
+      "next_cert_issuable_on": 1696132633,
       "certs_received": {
         "Gazaile": 1750140078,
         "StefIndigo": 1750149423,
@@ -202664,7 +206957,7 @@
     "Carlotta": {
       "index": 8392,
       "owner_key": "Hqxbwh3rPvERqqAYHWw32TH8PA3BK4SocYfSMqe64bT3",
-      "balance": 474117,
+      "balance": 513803,
       "membership_expire_on": 1717617593,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -202687,13 +206980,15 @@
     "Isabiloba": {
       "index": 8728,
       "owner_key": "HrDJVF6qbAbAtTwBTpauDyyh3nAr29K9b4VYXmjEi9u",
-      "balance": 288181,
+      "balance": 321167,
       "membership_expire_on": 1714608192,
-      "next_cert_issuable_on": 1683452594,
+      "next_cert_issuable_on": 1696296915,
       "certs_received": {
         "Domij": 1719799975,
         "haddock": 1720991149,
         "YugavanOrloff": 1719720274,
+        "Augusta24": 1758438677,
+        "Bebeth": 1758170717,
         "Patappui": 1720991149,
         "Lando": 1719732924,
         "FannyPolet": 1740734267,
@@ -202708,9 +207003,9 @@
     "Azpi33": {
       "index": 10530,
       "owner_key": "HrKgpxvfMNXRSwrBgaucxAErCdnNqX8mjCRYR31nyoXk",
-      "balance": 88969,
-      "membership_expire_on": 1700771200,
-      "next_cert_issuable_on": 1684758684,
+      "balance": 81855,
+      "membership_expire_on": 1727832460,
+      "next_cert_issuable_on": 1696139185,
       "certs_received": {
         "InmaRegina": 1732486280,
         "luciagares": 1740459444,
@@ -202747,7 +207042,7 @@
     "AndreasLivet": {
       "index": 10300,
       "owner_key": "HrZSV61RWR6WfSfa7aUMZpDxWkeo1hBh8UgDmKS1gX9q",
-      "balance": 402284,
+      "balance": 441970,
       "membership_expire_on": 1698155676,
       "next_cert_issuable_on": 1677042663,
       "certs_received": {
@@ -202762,7 +207057,7 @@
     "JuanraKalinga": {
       "index": 8755,
       "owner_key": "HrbGmYseUEByZpRYndhXjBUVCYYqjxmKvRw5w1u5YdaG",
-      "balance": 431716,
+      "balance": 496403,
       "membership_expire_on": 1713368673,
       "next_cert_issuable_on": 1684143243,
       "certs_received": {
@@ -202806,9 +207101,9 @@
     "NadCha": {
       "index": 7386,
       "owner_key": "HrmoV559CAQ9nyARyjVkM6dV2wsqLFGUvD8wwHrTH2DT",
-      "balance": 273461,
+      "balance": 222647,
       "membership_expire_on": 1704659741,
-      "next_cert_issuable_on": 1692839452,
+      "next_cert_issuable_on": 1696393533,
       "certs_received": {
         "PierreTransformant": 1710476458,
         "Vahe": 1712025301,
@@ -202821,7 +207116,7 @@
     "oursbrun11": {
       "index": 6458,
       "owner_key": "HryELPcD63FoTysb1bnnxpD1RwupmdGgifW3ugGe6vcH",
-      "balance": 699401,
+      "balance": 739087,
       "membership_expire_on": 1700484355,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -202843,7 +207138,7 @@
     "MCecile": {
       "index": 12879,
       "owner_key": "HsF5CFw7xXHUkRAj4WvyooqgFV6pKKoGc4ZuoqV7nESn",
-      "balance": 159372,
+      "balance": 199058,
       "membership_expire_on": 1715016737,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -202857,7 +207152,7 @@
     "Xavtaku": {
       "index": 9940,
       "owner_key": "HsJXAgm7s395LMzdndeoxin4NngyHfvcbrRL9cdzQ8Sc",
-      "balance": 345747,
+      "balance": 385433,
       "membership_expire_on": 1696968785,
       "next_cert_issuable_on": 1672560519,
       "certs_received": {
@@ -202877,11 +207172,9 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1658671281,
       "certs_received": {
-        "jfa": 1696546151,
         "hv23": 1714712545,
         "Lilou": 1714804554,
         "Matilou": 1696816117,
-        "Guenoel": 1696546151,
         "Hakim31": 1715106210
       }
     },
@@ -202903,7 +207196,7 @@
     "DavidPottier": {
       "index": 11702,
       "owner_key": "HsckrHCvJ7WfJtozxMfUNoN7vMTJBijuw5JhBeCNzPum",
-      "balance": 203736,
+      "balance": 243422,
       "membership_expire_on": 1708543198,
       "next_cert_issuable_on": 1692494974,
       "certs_received": {
@@ -202918,7 +207211,7 @@
     "titine": {
       "index": 8847,
       "owner_key": "HseLJ9nDwoDcsYYSM6bbG4yeV5K7DF4tevmfm9QisZUx",
-      "balance": 525002,
+      "balance": 601188,
       "membership_expire_on": 1719618893,
       "next_cert_issuable_on": 1688133293,
       "certs_received": {
@@ -202934,7 +207227,7 @@
     "trieve": {
       "index": 7476,
       "owner_key": "HshCsBPpCLYesuypm18yv1oMxitn5j6wyj3MoLWpKyoE",
-      "balance": 649704,
+      "balance": 689390,
       "membership_expire_on": 1701726981,
       "next_cert_issuable_on": 1648862820,
       "certs_received": {
@@ -202953,14 +207246,13 @@
       "next_cert_issuable_on": 1643259821,
       "certs_received": {
         "Libertiste": 1733084847,
-        "Caroleluciole": 1697693946,
-        "Leana": 1693504498
+        "Caroleluciole": 1697693946
       }
     },
     "Nono51": {
       "index": 6965,
       "owner_key": "HsqnHUqKM9sUvEqVGHC9hJUUFzEuVQuZcTjXeBJExVuy",
-      "balance": 576533,
+      "balance": 615219,
       "membership_expire_on": 1701218379,
       "next_cert_issuable_on": 1687091227,
       "certs_received": {
@@ -203007,7 +207299,7 @@
     "PilarCarnicero": {
       "index": 10284,
       "owner_key": "Ht3RfzuLiqQGo9WqG36AoVBpu4kBF3uDEzWyAR12sGvR",
-      "balance": 537713,
+      "balance": 360599,
       "membership_expire_on": 1699572985,
       "next_cert_issuable_on": 1674116402,
       "certs_received": {
@@ -203042,7 +207334,7 @@
     "Pepette84": {
       "index": 8956,
       "owner_key": "HtG9PMrqMHB1Nfd3yW3qsYt3yF3pLJphQdq4ExJ4BL2f",
-      "balance": 432092,
+      "balance": 471778,
       "membership_expire_on": 1717376113,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -203056,13 +207348,12 @@
     "AlainConnu": {
       "index": 5544,
       "owner_key": "HtGa6ogFVpzG8MKTW48D62AhZALiRcJBodzdVKQYJx45",
-      "balance": 431845,
+      "balance": 471531,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1689736692,
       "certs_received": {
         "Hunzatonic": 1754503953,
         "Gedege": 1754342834,
-        "Plantalarose": 1694311129,
         "JeanMarcBuge": 1754676497,
         "ASHTARA": 1753182586,
         "Vallya": 1754346496,
@@ -203072,9 +207363,9 @@
     "NEMBC": {
       "index": 8873,
       "owner_key": "HtGgsywfKWs46Xp2RtSyztLWyY8EiMtHNXsq1YSQKnS9",
-      "balance": 838814,
+      "balance": 878500,
       "membership_expire_on": 1716378142,
-      "next_cert_issuable_on": 1689954149,
+      "next_cert_issuable_on": 1694622998,
       "certs_received": {
         "Ahtohallan": 1746903455,
         "Roco": 1719048440,
@@ -203087,13 +207378,14 @@
         "Bruno81": 1719554172,
         "Alex34": 1732909894,
         "CVM": 1717173867,
+        "enchemin": 1755122611,
         "Nico34": 1755126101
       }
     },
     "QuentinClement": {
       "index": 12309,
       "owner_key": "HtHxcTGZexMK27BmUzqXueCH63pwgjdJxrQ5TkV78Xjk",
-      "balance": 177724,
+      "balance": 217410,
       "membership_expire_on": 1710789764,
       "next_cert_issuable_on": 1682080804,
       "certs_received": {
@@ -203108,7 +207400,7 @@
     "Sarriettedesmontagnes": {
       "index": 6219,
       "owner_key": "HtKYL1m6DsomG7gjjwgd3b5zSUaPvkcKt965wwmviLDm",
-      "balance": 667378,
+      "balance": 707064,
       "membership_expire_on": 1699478670,
       "next_cert_issuable_on": 1684140610,
       "certs_received": {
@@ -203147,7 +207439,7 @@
     "MelieJUNE": {
       "index": 11324,
       "owner_key": "HtZBEFguSdMQxLdSXdAVmgzDaeG6XGAHbjpc3X5PyqHf",
-      "balance": 306247,
+      "balance": 341933,
       "membership_expire_on": 1703899916,
       "next_cert_issuable_on": 1685947503,
       "certs_received": {
@@ -203167,7 +207459,6 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1644854846,
       "certs_received": {
-        "LaureFemmeVanne": 1696233735,
         "CharleneEdet": 1717659319,
         "Sylvere72": 1722276635,
         "Marie-Lise": 1697269157
@@ -203176,9 +207467,9 @@
     "Joaquim": {
       "index": 8784,
       "owner_key": "HtsL2W4rzSshX2J815cEL6RzEn6G5rgFF3EZCZUUFBet",
-      "balance": 158708,
+      "balance": 78394,
       "membership_expire_on": 1715357272,
-      "next_cert_issuable_on": 1675529519,
+      "next_cert_issuable_on": 1695990600,
       "certs_received": {
         "SandrineMala": 1719861967,
         "SandraFernandes": 1720149527,
@@ -203213,7 +207504,7 @@
     "claudeFAURE": {
       "index": 10436,
       "owner_key": "HuPpFekpurfvGSRkUy9mkdSE1LNT7TqYRYsJsWRUEKX2",
-      "balance": 299482,
+      "balance": 339168,
       "membership_expire_on": 1700315853,
       "next_cert_issuable_on": 1683371394,
       "certs_received": {
@@ -203247,7 +207538,7 @@
     "kinou30": {
       "index": 7660,
       "owner_key": "HuhfitL79niEfiuBuZ85ka7hyNity76PAU1y6VGdS9yJ",
-      "balance": 753764,
+      "balance": 793450,
       "membership_expire_on": 1707770494,
       "next_cert_issuable_on": 1652106119,
       "certs_received": {
@@ -203263,8 +207554,8 @@
     "Schiehlebruno": {
       "index": 2617,
       "owner_key": "HuorEZp4azK5FPpqRBqN15uL4kyFtendudtUJFPHpFbJ",
-      "balance": 1221167,
-      "membership_expire_on": 1696002267,
+      "balance": 1252229,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1676791753,
       "certs_received": {
         "Anne": 1697488698,
@@ -203279,7 +207570,7 @@
     "DjedjePit": {
       "index": 7151,
       "owner_key": "HutFmBYDBDaPSyVckFBsz98wtQ2oNr4iUm6ZZSGs7gQp",
-      "balance": 515258,
+      "balance": 554944,
       "membership_expire_on": 1712951764,
       "next_cert_issuable_on": 1649416315,
       "certs_received": {
@@ -203293,7 +207584,7 @@
     "mariebaisero": {
       "index": 2261,
       "owner_key": "HuuKZsyMAKhXAXzXXqHGgKMdXC6GJd1D7nSZYYErcRdB",
-      "balance": 207076,
+      "balance": 246762,
       "membership_expire_on": 1708297348,
       "next_cert_issuable_on": 1677311855,
       "certs_received": {
@@ -203309,7 +207600,7 @@
     "virgin0505": {
       "index": 5955,
       "owner_key": "Hv1BoTtQTSKyH3TBKfhYwHN5HtkkCzCRzBSgvR8EcucH",
-      "balance": 361685,
+      "balance": 361785,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -203324,13 +207615,14 @@
     "AnneMarieRuiz": {
       "index": 3595,
       "owner_key": "Hv5pZzCUrP2PcmfffYh8CPw2cdGqDWBgGHq1VCYCrHBv",
-      "balance": 1730591,
-      "membership_expire_on": 1698839856,
+      "balance": 1770277,
+      "membership_expire_on": 1726997525,
       "next_cert_issuable_on": 1687145893,
       "certs_received": {
         "gerardchavanon": 1718604542,
         "lucilegesta": 1742075981,
         "RosaVanille420": 1747607668,
+        "OlivierMaurice": 1758489085,
         "CyrilCuisin": 1711596358,
         "ChristopheRobine": 1739821358,
         "FredericAmany974": 1734733807
@@ -203339,7 +207631,7 @@
     "Tessy81": {
       "index": 12889,
       "owner_key": "Hv71eyjE1qhb93XFiRqrDxtMeyrmzB7mXaGoRxyRYKNR",
-      "balance": 88304,
+      "balance": 127990,
       "membership_expire_on": 1718277100,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -203368,7 +207660,7 @@
     "MarionHeurtebise": {
       "index": 12005,
       "owner_key": "HvJ7gvu5zZHNmEK5vuCurKS6HfGBfJdgi2EP9fgQ9tfZ",
-      "balance": 179379,
+      "balance": 219065,
       "membership_expire_on": 1708814312,
       "next_cert_issuable_on": 1681312438,
       "certs_received": {
@@ -203388,15 +207680,11 @@
       "next_cert_issuable_on": 1673625910,
       "certs_received": {
         "Majoli34": 1736105959,
-        "Sophie_Jiyu": 1695584430,
         "BrigitteW": 1700705420,
-        "droopy": 1694812253,
         "Helene-petiteriviere": 1706133184,
         "Libellule34": 1729046228,
         "SIMONEANTONELLI": 1729122822,
-        "Petitcolin": 1696018776,
         "toutestjoli34": 1699569458,
-        "Eauvive": 1694812739,
         "Elpheblanche": 1697573687
       }
     },
@@ -203411,7 +207699,7 @@
     "Michelemimie": {
       "index": 8434,
       "owner_key": "Hvb7VkVqkFN18fMxr8gV8bxh8QjhkvpDWD4VHrePfCoY",
-      "balance": 427397,
+      "balance": 467083,
       "membership_expire_on": 1713085185,
       "next_cert_issuable_on": 1662988769,
       "certs_received": {
@@ -203428,9 +207716,9 @@
     "Sandroo": {
       "index": 10029,
       "owner_key": "HvdCtQcBa8MGDWt9UvvuFVwaP5EF37BvLzCsxTbCMXyk",
-      "balance": 363993,
-      "membership_expire_on": 1696813178,
-      "next_cert_issuable_on": 1667736782,
+      "balance": 341779,
+      "membership_expire_on": 1727112489,
+      "next_cert_issuable_on": 1696301582,
       "certs_received": {
         "Abrialys": 1738812259,
         "Wilouchou": 1728451486,
@@ -203444,7 +207732,7 @@
     "Patd05": {
       "index": 7460,
       "owner_key": "HvfVHNbj9autQPpJQCHwJT4GDrtctRSJKoRrFa1R9AVT",
-      "balance": 557755,
+      "balance": 597441,
       "membership_expire_on": 1709063406,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -203459,9 +207747,9 @@
     "Aurora-SandraMogo": {
       "index": 12593,
       "owner_key": "HvkBJ9pTMMnNzamMws4YAbgYhwXfb2qPQU3PxQnKxU17",
-      "balance": 68667,
+      "balance": 149015,
       "membership_expire_on": 1715052282,
-      "next_cert_issuable_on": 1688667454,
+      "next_cert_issuable_on": 1694676218,
       "certs_received": {
         "AfricadeHarmonia": 1746638379,
         "Damadespadas": 1748065360,
@@ -203483,8 +207771,8 @@
     "cecile03": {
       "index": 9882,
       "owner_key": "HwBhKArDnBTwPpTnrRrNfANrM8i1FKHjJtDivqdEb5gY",
-      "balance": 327583,
-      "membership_expire_on": 1696278836,
+      "balance": 361879,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1665733247,
       "certs_received": {
         "sandpic08": 1727836775,
@@ -203506,9 +207794,9 @@
     "Elodie2706": {
       "index": 11589,
       "owner_key": "HwUjQBB5i9J8vk6iWbmQW4yt6AFn6uenBpwHfJLzkbHd",
-      "balance": 105128,
+      "balance": 74968,
       "membership_expire_on": 1707667274,
-      "next_cert_issuable_on": 1687073826,
+      "next_cert_issuable_on": 1696174382,
       "certs_received": {
         "Stejulemont": 1740548728,
         "TreenfolkG": 1740826876,
@@ -203555,7 +207843,7 @@
     "Domyrhapsody": {
       "index": 8619,
       "owner_key": "HwhUrtn9s7LtJdpmGaeEbJ1X47di69QPN9LUCpCL7TcZ",
-      "balance": 477369,
+      "balance": 487055,
       "membership_expire_on": 1713196581,
       "next_cert_issuable_on": 1690088381,
       "certs_received": {
@@ -203588,22 +207876,26 @@
     "Marino45": {
       "index": 10998,
       "owner_key": "Hwr9a8LG2yvBBKqz3pTCU8BLz6yLX5tX5Mz5QXWJTrXR",
-      "balance": 226058,
+      "balance": 248744,
       "membership_expire_on": 1701390673,
-      "next_cert_issuable_on": 1692094954,
+      "next_cert_issuable_on": 1696422370,
       "certs_received": {
         "Flore45": 1753734253,
         "MarieCathou": 1751867619,
+        "FabFabounette": 1757630184,
         "Charbel45": 1746596982,
         "marinetfrommars": 1756265878,
         "TiboDom": 1755826752,
         "Elyse33": 1734838375,
+        "Rom1": 1757105264,
+        "Yannick51200": 1756708989,
         "Naty": 1752770499,
         "PatrickREVIF": 1747816073,
         "Seve": 1734889279,
         "Xavier91": 1734888888,
         "fleurdesel": 1751732268,
         "lomwi": 1734798967,
+        "loirisa": 1756880526,
         "SylvieM35": 1735034806,
         "Danie45": 1743405593,
         "Urantia": 1743620380,
@@ -203612,6 +207904,7 @@
         "Keramina51": 1747632962,
         "AgneSb": 1752735459,
         "Celib": 1740265458,
+        "GMokeur": 1758515299,
         "YvonneD": 1734818450,
         "NadiaNadodu": 1746637976
       }
@@ -203634,7 +207927,7 @@
     "lilou50220": {
       "index": 5138,
       "owner_key": "Hwthi2VgvY6rgcfCtao8WqBpaK3UQ4nVkSJ9uo7WFqJa",
-      "balance": 777540,
+      "balance": 817226,
       "membership_expire_on": 1707868103,
       "next_cert_issuable_on": 1690501489,
       "certs_received": {
@@ -203652,21 +207945,23 @@
     "Bounty": {
       "index": 13296,
       "owner_key": "HwtiYrPFYQ2odareiPuCuJqaWyRbZb3X6QSYkJEAszUe",
-      "balance": 46972,
+      "balance": 26658,
       "membership_expire_on": 1722282224,
-      "next_cert_issuable_on": 1693214957,
+      "next_cert_issuable_on": 1696479328,
       "certs_received": {
         "Etoiledunord": 1754145835,
         "PhiletCathe": 1754016881,
+        "Martine88": 1759546040,
         "AnnieP38": 1753853225,
         "Titev11": 1753854411,
+        "Cocoyarouge": 1757097484,
         "RejjeR": 1753917943
       }
     },
     "MatildaZanzibar": {
       "index": 10076,
       "owner_key": "Hx3ThrTE6Sw9G2mkzdpBkLSxK7h4VXuNZWpHKzcxgjTs",
-      "balance": 355757,
+      "balance": 395443,
       "membership_expire_on": 1697324131,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -203680,7 +207975,7 @@
     "Pataya": {
       "index": 12928,
       "owner_key": "Hx3iMRsBmTC2SS9eyLm8YDM3ieTN1MEGUpuZhkDKe31j",
-      "balance": 80964,
+      "balance": 120650,
       "membership_expire_on": 1718496529,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -203710,7 +208005,7 @@
     "HubLtg": {
       "index": 7961,
       "owner_key": "HxHXrKxL65SB1XNkMJnf78Pqref1tTAmq2ta7xtoDjk",
-      "balance": 408617,
+      "balance": 218303,
       "membership_expire_on": 1709249047,
       "next_cert_issuable_on": 1659425890,
       "certs_received": {
@@ -203725,7 +208020,7 @@
     "MarieMouna": {
       "index": 10326,
       "owner_key": "HxKNuciTmPM4sGiS6eHjhx4cXvb18LLw1y4Xji7k7t5R",
-      "balance": 206636,
+      "balance": 246322,
       "membership_expire_on": 1697912629,
       "next_cert_issuable_on": 1681400046,
       "certs_received": {
@@ -203749,14 +208044,13 @@
         "elisalibre": 1725229083,
         "Nelkhael": 1720202155,
         "Mateo": 1720213254,
-        "claudiemjpouliot": 1720213501,
-        "Llorens": 1695316250
+        "claudiemjpouliot": 1720213501
       }
     },
     "rags": {
       "index": 12294,
       "owner_key": "HxQ3jma3tRUuFQxdv2sj9phqXHeAohuA7LGxtr5rhQ86",
-      "balance": 317492,
+      "balance": 357178,
       "membership_expire_on": 1712604005,
       "next_cert_issuable_on": 1686032541,
       "certs_received": {
@@ -203780,7 +208074,7 @@
     "Rmax": {
       "index": 10376,
       "owner_key": "HxaitBFp5tPvw6d3iwpVnXZuYqrhjoKVGCPrh8zs7o4",
-      "balance": 307459,
+      "balance": 347145,
       "membership_expire_on": 1698019121,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -203802,7 +208096,7 @@
     "Arno4218": {
       "index": 10961,
       "owner_key": "HxgQBZAp3PPkPdqB8PwSGqS96y3d84dRWPDDfWViWicD",
-      "balance": 268335,
+      "balance": 308021,
       "membership_expire_on": 1698452009,
       "next_cert_issuable_on": 1681133779,
       "certs_received": {
@@ -203845,7 +208139,7 @@
     "jsoutelinho": {
       "index": 12500,
       "owner_key": "HxqM9pRPnEmPVhc8nokHKEodm8bhUCYSREgqUdUmiqeN",
-      "balance": 140559,
+      "balance": 180245,
       "membership_expire_on": 1714309607,
       "next_cert_issuable_on": 1688379988,
       "certs_received": {
@@ -203862,9 +208156,9 @@
     "Stelzchantal": {
       "index": 5007,
       "owner_key": "Hxr2qEQzHF8CpSaQZJJ4rmvYVVnDtdjVZQ4xhGrQTBeK",
-      "balance": 595326,
+      "balance": 561712,
       "membership_expire_on": 1706398547,
-      "next_cert_issuable_on": 1689311174,
+      "next_cert_issuable_on": 1696392338,
       "certs_received": {
         "WintgensJoseph": 1709610702,
         "Rose": 1736751149,
@@ -203882,18 +208176,18 @@
         "juliettesemilla": 1720470751,
         "Selergo": 1720062765,
         "SofianneErler": 1710640573,
-        "Gclaire": 1696410588,
         "LUCKY": 1737535412
       }
     },
     "MicheleChaplain": {
       "index": 7190,
       "owner_key": "HxsK23g7G8W8vh3fcUyxR17SnPsyFhQ1yFqcJBwrAifK",
-      "balance": 725023,
+      "balance": 770099,
       "membership_expire_on": 1708636968,
       "next_cert_issuable_on": 1690204704,
       "certs_received": {
         "EricPetit": 1723000654,
+        "theresecaillere": 1759017463,
         "GaryGrandin": 1743955732,
         "MariPotter": 1725520031,
         "Ingriddevendee": 1736211748,
@@ -203911,7 +208205,7 @@
     "AntoineZaccaria": {
       "index": 8293,
       "owner_key": "HxsUuvexZi869wcRqEseBE4dqEH4dMdGrbuBwCWNBV4j",
-      "balance": 435193,
+      "balance": 474879,
       "membership_expire_on": 1714782692,
       "next_cert_issuable_on": 1679318856,
       "certs_received": {
@@ -203967,7 +208261,7 @@
     "JGlExplorateur": {
       "index": 5868,
       "owner_key": "Hy7FVKmR2EnxonrxKUdzyMLUkoEeov41pcKhJq9G4XZM",
-      "balance": 620347,
+      "balance": 660033,
       "membership_expire_on": 1697402250,
       "next_cert_issuable_on": 1653834898,
       "certs_received": {
@@ -203988,7 +208282,7 @@
     "Bruno28": {
       "index": 11354,
       "owner_key": "HyCCsgWt8Z1BVX9y24yvJbsLCD5bTfH5Y6vMZ8MEeTz5",
-      "balance": 232329,
+      "balance": 272015,
       "membership_expire_on": 1705437489,
       "next_cert_issuable_on": 1674958812,
       "certs_received": {
@@ -204002,7 +208296,7 @@
     "GUL40_Z42": {
       "index": 11069,
       "owner_key": "HyGHJdFC1AKDv1WJpzGQkyVRiuioXVNC9Gsp3X2jqVhp",
-      "balance": 270804,
+      "balance": 310490,
       "membership_expire_on": 1704046119,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -204020,9 +208314,9 @@
     "julthor": {
       "index": 1022,
       "owner_key": "HyUk5xP8pTWGbW2Lh1E8FH14K5bFYkZQqZAUsYtYRCii",
-      "balance": 1965730,
-      "membership_expire_on": 1696618885,
-      "next_cert_issuable_on": 1658188006,
+      "balance": 2004338,
+      "membership_expire_on": 0,
+      "next_cert_issuable_on": 1695971654,
       "certs_received": {
         "Lunaloca": 1731703563,
         "Tibz": 1728238756,
@@ -204037,13 +208331,12 @@
     "MickaelAnanda": {
       "index": 1716,
       "owner_key": "HyW1dvY5t59fp9cHSmqd4uhh51Tmuk1JKh4PvYMxr9Xq",
-      "balance": 1701748,
+      "balance": 1741434,
       "membership_expire_on": 1720963249,
       "next_cert_issuable_on": 1689478141,
       "certs_received": {
         "Mariegateau": 1752360974,
         "AudreyNaturo": 1727718917,
-        "Zazou": 1693966814,
         "Antho": 1703038221,
         "Geotrouvtout": 1723519189,
         "Meriem": 1704059203,
@@ -204076,7 +208369,7 @@
     "NatachaV974": {
       "index": 10116,
       "owner_key": "HyiKsSEvcP1H4FstqSfXCyGmmWtBXxSh8UrSE4KyWs5h",
-      "balance": 316580,
+      "balance": 356266,
       "membership_expire_on": 1698356097,
       "next_cert_issuable_on": 1669369270,
       "certs_received": {
@@ -204094,9 +208387,9 @@
     "Mimosa": {
       "index": 11087,
       "owner_key": "Hyqg1vqYCDGYePiQm8rP7mto8ECns9ytKpZwCeLxhJFw",
-      "balance": 224536,
+      "balance": 237222,
       "membership_expire_on": 1703893327,
-      "next_cert_issuable_on": 1687184617,
+      "next_cert_issuable_on": 1696419043,
       "certs_received": {
         "Alfybe": 1735509081,
         "FabienneM": 1735529952,
@@ -204117,7 +208410,6 @@
       "certs_received": {
         "YoD": 1706317804,
         "MadoDefontaine": 1707376107,
-        "BRIDGET": 1694817200,
         "caroline26220": 1731136857
       }
     },
@@ -204146,9 +208438,9 @@
     "Hdsaf": {
       "index": 4789,
       "owner_key": "HzDrGzs5vcL2WxvEyWmzXbNRk7Ayz3MD4nk5dqqcpeDV",
-      "balance": 786358,
+      "balance": 425204,
       "membership_expire_on": 1701809766,
-      "next_cert_issuable_on": 1693064364,
+      "next_cert_issuable_on": 1696502840,
       "certs_received": {
         "CatherinePerma": 1728964538,
         "Geronimo12": 1712094323,
@@ -204168,9 +208460,9 @@
         "Maminou13": 1722701767,
         "Benito71": 1748062229,
         "CelineThiebaut": 1748498045,
+        "Jobenz": 1756942453,
         "fatimaespoir": 1724026507,
         "Helene-petiteriviere": 1716407986,
-        "SoNyA": 1693875530,
         "Jean-Michel_Filing": 1730275124,
         "MarieDUHAMEL": 1749101241,
         "Aneuf": 1742515959,
@@ -204197,6 +208489,7 @@
         "PascalGuillemain": 1716488330,
         "SofianneErler": 1725604025,
         "OrAnge": 1747869252,
+        "Joy34": 1756108855,
         "Marielac": 1744869348,
         "MarcArdeneus": 1745139996,
         "urkobein": 1724272831,
@@ -204218,7 +208511,7 @@
     "Val83": {
       "index": 9206,
       "owner_key": "HzKp3X4jkBF2yE8tbKMdHM6xfuA13TwmnRWczZhTjRtY",
-      "balance": 224319,
+      "balance": 284005,
       "membership_expire_on": 1719765605,
       "next_cert_issuable_on": 1685238994,
       "certs_received": {
@@ -204241,7 +208534,7 @@
     "Mamie_Poule": {
       "index": 11095,
       "owner_key": "HzQEd6kf2GJAPa1iSKkxBERzkwJYGympj9YxghJJUKQC",
-      "balance": 245627,
+      "balance": 285313,
       "membership_expire_on": 1702567782,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -204256,7 +208549,7 @@
     "Yaelle48": {
       "index": 4937,
       "owner_key": "HzSP11WG3u3Lr1ETBMj5w3Vv9oUL2s7u63CvtXqfCg2u",
-      "balance": 785952,
+      "balance": 825638,
       "membership_expire_on": 1711410874,
       "next_cert_issuable_on": 1685338079,
       "certs_received": {
@@ -204317,14 +208610,17 @@
     "Sailorcherry": {
       "index": 4508,
       "owner_key": "HzdPbJ3A4pAGUS3Qrw3nJPpfPaD3ohFZX4CHJa5QNoDN",
-      "balance": 573752,
+      "balance": 348438,
       "membership_expire_on": 1723559152,
-      "next_cert_issuable_on": 1685718251,
+      "next_cert_issuable_on": 1695725807,
       "certs_received": {
+        "kuluk": 1758045953,
         "Robin_et_Odile": 1735683951,
+        "ClaireAzur": 1757457142,
         "Tchois": 1737484436,
         "etrehumainJordan92i": 1739679515,
         "patbal": 1734516122,
+        "SoNyA": 1758937395,
         "Audeko": 1737166496,
         "Kilibix": 1737479816,
         "Kaya971Wolf": 1743824687,
@@ -204332,17 +208628,32 @@
         "Colaga": 1726246284,
         "DjaneDiveraine": 1717753094,
         "ChanaChan": 1726246637,
+        "Elvynao6": 1758783122,
         "Matedi23": 1725004240,
-        "ClaireSMV": 1695001098,
+        "ClaireSMV": 1758952348,
         "iafu": 1741211835
       }
     },
+    "stephaniemartens": {
+      "index": 13634,
+      "owner_key": "Hzf9Sc2YeeLqmvYmY8B2JkKUGzet9gq6LajTweMLXfu4",
+      "balance": 17210,
+      "membership_expire_on": 1725664456,
+      "next_cert_issuable_on": 1696133845,
+      "certs_received": {
+        "IgnaceDdCh": 1758515299,
+        "ValTayie": 1758513610,
+        "Goldwing": 1758563191,
+        "DidierHarmonie": 1758516614,
+        "Flore-au-soleil": 1758532274
+      }
+    },
     "Fa5": {
       "index": 6424,
       "owner_key": "HzhK2B28iSARDAVD2m3y47exWrFRh3w1j57KP1EaojL",
-      "balance": 469527,
-      "membership_expire_on": 1697578826,
-      "next_cert_issuable_on": 1684024727,
+      "balance": 474213,
+      "membership_expire_on": 1725360984,
+      "next_cert_issuable_on": 1693966122,
       "certs_received": {
         "SandrineMala": 1737604318,
         "Palladium13": 1709062730,
@@ -204399,9 +208710,9 @@
     "ElisabeteMartins": {
       "index": 11093,
       "owner_key": "HzrKzFvGDDeraKgtiifGjXcwwfNwruMjCtGrpWUndLhp",
-      "balance": 279217,
+      "balance": 318903,
       "membership_expire_on": 1702404257,
-      "next_cert_issuable_on": 1692706044,
+      "next_cert_issuable_on": 1694620286,
       "certs_received": {
         "Ferpires": 1742638151,
         "Etipol61": 1744860242,
@@ -204432,9 +208743,11 @@
         "RafaMalheiro": 1752097071,
         "Rafael": 1751660596,
         "MarleneRibeiro": 1744014362,
+        "DivinaC": 1757274227,
         "StefaniaCamilla": 1744968951,
         "criscoutinho": 1735188926,
         "FlorenceFlore": 1735087275,
+        "DeboraTavares": 1757486431,
         "Hardass": 1750803602,
         "pedroponte": 1748548303,
         "SaoSampaio": 1745230596,
@@ -204452,9 +208765,9 @@
     "erickiz006": {
       "index": 13349,
       "owner_key": "HzztK8wx1TrKLCA2J6Fu6GVvymnWiRUoVP1jVpWJ4zFU",
-      "balance": 27428,
+      "balance": 29546,
       "membership_expire_on": 1722291286,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693812487,
       "certs_received": {
         "ScarlettGabrielle_8": 1754373302,
         "Tchois": 1754642337,
@@ -204476,7 +208789,7 @@
     "Aaricia": {
       "index": 10913,
       "owner_key": "J18WXZeKEkBpgypL2Wqwv2YGArjPpWThhgkGyTrpMPck",
-      "balance": 147888,
+      "balance": 187574,
       "membership_expire_on": 1701290297,
       "next_cert_issuable_on": 1686740853,
       "certs_received": {
@@ -204501,8 +208814,8 @@
     "umberto": {
       "index": 9985,
       "owner_key": "J1XHP6arte3s2hcFmhquWNtYmHQFefsnpKFrSFc2pGHu",
-      "balance": 336596,
-      "membership_expire_on": 1695512455,
+      "balance": 361190,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1670825655,
       "certs_received": {
         "Rachele": 1728446208,
@@ -204567,9 +208880,9 @@
     "AnneM": {
       "index": 7326,
       "owner_key": "J1mZVRRQqnZRxNy9WF7P8mfjPW2rQo7mjnAxEekvDwY9",
-      "balance": 492536,
+      "balance": 532222,
       "membership_expire_on": 1715122720,
-      "next_cert_issuable_on": 1669787556,
+      "next_cert_issuable_on": 1695867998,
       "certs_received": {
         "CyrilPommier": 1710563784,
         "Sand": 1716535808,
@@ -204597,7 +208910,7 @@
     "MarieLavraie": {
       "index": 12628,
       "owner_key": "J1p1BPxHuhqjUz4ZhuKi6rfQwJM4mBWWyx91Q6EPm6uT",
-      "balance": 165208,
+      "balance": 206894,
       "membership_expire_on": 1715355949,
       "next_cert_issuable_on": 1689060206,
       "certs_received": {
@@ -204615,7 +208928,7 @@
     "Cornelius57": {
       "index": 7428,
       "owner_key": "J1uXuCFJUY9ReBXrQ6FdFFq23jRrSJq3CwC5X5fSYd4s",
-      "balance": 554908,
+      "balance": 594594,
       "membership_expire_on": 1708798137,
       "next_cert_issuable_on": 1652185279,
       "certs_received": {
@@ -204651,22 +208964,17 @@
     "IrriaChantereve": {
       "index": 5763,
       "owner_key": "J28YxhDMfUmoM8tbjZXKomYXMA11NbWeLgGNmgf1wrPY",
-      "balance": 723903,
+      "balance": 763589,
       "membership_expire_on": 1699486120,
       "next_cert_issuable_on": 1693012570,
       "certs_received": {
         "absalon2": 1696747165,
         "Antoin9": 1754600465,
-        "Alcidejet": 1695876039,
         "JacquelinePlan": 1754146520,
-        "Stevia30120": 1696223581,
-        "NGO": 1696145458,
         "Nadium": 1712021771,
-        "KumaNinja": 1696141066,
         "loup12": 1756055770,
         "Crealine": 1705690418,
-        "PhilippLarsen": 1696033076,
-        "chronophonix": 1696145151
+        "chronophonix": 1758531160
       }
     },
     "Gabaosand": {
@@ -204682,7 +208990,7 @@
     "magnum": {
       "index": 11632,
       "owner_key": "J2BwnDCWENeoUXUWjzijYNhGcpgJ26n4k4t9DbcdLnTM",
-      "balance": 231890,
+      "balance": 271576,
       "membership_expire_on": 1707334142,
       "next_cert_issuable_on": 1682951316,
       "certs_received": {
@@ -204702,27 +209010,23 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1666321443,
       "certs_received": {
-        "tyjak": 1694856377,
         "HeleneSoleil": 1698815452,
-        "DimitriTuffreau": 1694834612,
         "MayaRT": 1698881734,
         "herbacha": 1712453466,
         "Mag19": 1701505135,
-        "Cecilelaurent": 1698805185,
-        "LydiaRoche": 1694737187
+        "Cecilelaurent": 1698805185
       }
     },
     "Beluganne": {
       "index": 5536,
       "owner_key": "J2nNc6oNtCat39P2hsGAKYqUAf5HPxtVPtERuXyTeNGb",
-      "balance": 834760,
+      "balance": 872290,
       "membership_expire_on": 1721623544,
-      "next_cert_issuable_on": 1690138163,
+      "next_cert_issuable_on": 1695888463,
       "certs_received": {
         "Jean-Marie": 1752511234,
         "PatrickCrepin": 1728498316,
         "fluidlog": 1711325578,
-        "Lavoixdesquatrevents": 1696023088,
         "ElodiePichereau": 1700356432,
         "NordineVallas": 1728444903,
         "RomanUza": 1728436867,
@@ -204736,7 +209040,7 @@
     "brunobo": {
       "index": 7327,
       "owner_key": "J2rAfqKXhSKicz8j4iU8ZoSFudS4vsy856P8ZCwRxxkT",
-      "balance": 503831,
+      "balance": 523517,
       "membership_expire_on": 1706448757,
       "next_cert_issuable_on": 1683535341,
       "certs_received": {
@@ -204763,7 +209067,7 @@
     "Yovana13117": {
       "index": 4342,
       "owner_key": "J31dnMbgSS8vQkfiiYp4eUQut3gAb8AzViPuTnozXK4L",
-      "balance": 1156428,
+      "balance": 1196114,
       "membership_expire_on": 1722882743,
       "next_cert_issuable_on": 1636894749,
       "certs_received": {
@@ -204771,7 +209075,6 @@
         "CookieLilas": 1751397568,
         "Druilhe13117": 1744869694,
         "Pogona": 1751397255,
-        "GXIST": 1696736333,
         "bike13500": 1747122189,
         "tatinetteb": 1754422408,
         "FredB": 1731699442
@@ -204780,7 +209083,7 @@
     "RAINJAN": {
       "index": 12703,
       "owner_key": "J38WQznZK1JSW1n6h7Ph3NNuoQvcoXegkSakGCfcV7tM",
-      "balance": 123372,
+      "balance": 163058,
       "membership_expire_on": 1715872213,
       "next_cert_issuable_on": 1689565045,
       "certs_received": {
@@ -204796,7 +209099,7 @@
     "Poulou": {
       "index": 13170,
       "owner_key": "J3BQCbmmrCKiu9bsRTEbBmqxf2YupyWov1yQiF95vNgg",
-      "balance": 49128,
+      "balance": 33314,
       "membership_expire_on": 1719701994,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -204811,7 +209114,7 @@
     "YurenaGonzalez": {
       "index": 11442,
       "owner_key": "J3E2dFCzPLaDPAgHsx8kfJgyaU88KbvFc6dZyareA5CK",
-      "balance": 100857,
+      "balance": 162543,
       "membership_expire_on": 1706757591,
       "next_cert_issuable_on": 1683871672,
       "certs_received": {
@@ -204841,7 +209144,7 @@
     "mariacornelia": {
       "index": 11914,
       "owner_key": "J3S1q2yY2zVJN77FDj9e6dg9EzteKDeanmkRKXmVStbu",
-      "balance": 205792,
+      "balance": 245478,
       "membership_expire_on": 1708893418,
       "next_cert_issuable_on": 1681993085,
       "certs_received": {
@@ -204864,7 +209167,7 @@
     "Christianravoire": {
       "index": 8087,
       "owner_key": "J3ayvfHcWuT6WdVbQ5SFPKh9xoW4TwpqtaVobTJ141pT",
-      "balance": 497063,
+      "balance": 536749,
       "membership_expire_on": 1716384639,
       "next_cert_issuable_on": 1673090139,
       "certs_received": {
@@ -204881,7 +209184,7 @@
     "fildeguitare": {
       "index": 11944,
       "owner_key": "J3eSJMnsvPBuYdC5L4Pf97PWrD53J4ndkNkcEVMiJZKm",
-      "balance": 184674,
+      "balance": 224360,
       "membership_expire_on": 1709745473,
       "next_cert_issuable_on": 1682568880,
       "certs_received": {
@@ -204912,8 +209215,8 @@
     "OrcaChouquette": {
       "index": 9762,
       "owner_key": "J3vQ686peVmasJaEfHmqnJNpS9NZsP9Y4Sfwm16GwsEq",
-      "balance": 307114,
-      "membership_expire_on": 1695733338,
+      "balance": 346800,
+      "membership_expire_on": 1726850462,
       "next_cert_issuable_on": 1673965762,
       "certs_received": {
         "Lionel_Dechilly": 1727898453,
@@ -204927,8 +209230,8 @@
     "Gautier": {
       "index": 9779,
       "owner_key": "J3w8G6wkmrhGD1f5z7pHGZxra2XEC6xYXYY2dgJm5XP6",
-      "balance": 353055,
-      "membership_expire_on": 1695840872,
+      "balance": 381961,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Liam73": 1727974294,
@@ -204941,7 +209244,7 @@
     "Teho32": {
       "index": 11208,
       "owner_key": "J43Q932YBr1rMNxfKMS1WfgWZ9iy89QUQaBD6GnsM72g",
-      "balance": 294282,
+      "balance": 333968,
       "membership_expire_on": 1703952392,
       "next_cert_issuable_on": 1680056573,
       "certs_received": {
@@ -204974,7 +209277,7 @@
     "Mikel": {
       "index": 11673,
       "owner_key": "J48yDhM2DDAeW9yhDf6NjBAPzGaZo3Q8yr9ScnWT2K8Y",
-      "balance": 180113,
+      "balance": 219799,
       "membership_expire_on": 1707938761,
       "next_cert_issuable_on": 1682898164,
       "certs_received": {
@@ -204990,7 +209293,7 @@
     "pedrog1": {
       "index": 4502,
       "owner_key": "J49a9mbJt9nAuyS5aSC6ywBtV1xrNGSsxRkpPSCfDejg",
-      "balance": 843464,
+      "balance": 883150,
       "membership_expire_on": 1707492747,
       "next_cert_issuable_on": 1680972542,
       "certs_received": {
@@ -205004,7 +209307,7 @@
     "patochedu57m": {
       "index": 12592,
       "owner_key": "J4AUHuNpeFSLr52dbjoBALnDuLfoSAtDnhiAXttf8Ssd",
-      "balance": 137636,
+      "balance": 177322,
       "membership_expire_on": 1714503690,
       "next_cert_issuable_on": 1690261464,
       "certs_received": {
@@ -205019,22 +209322,17 @@
     "Caro63": {
       "index": 5654,
       "owner_key": "J4GLFhyGChJy13SGfUU3Zs5hfRYmeK7ZLvHknLrqEgq2",
-      "balance": 459650,
-      "membership_expire_on": 1694727904,
+      "balance": 468194,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {
-        "Lumiere": 1698533972,
-        "tiphaine": 1694375496,
-        "STELLA": 1694134087,
-        "amaterra": 1694211943,
-        "Spartacus": 1694375305,
-        "Mama63isa": 1694413624
+        "Lumiere": 1698533972
       }
     },
     "Antonia": {
       "index": 9250,
       "owner_key": "J4JvBD7GGBvLbfHmtZV2A6XJYJoXaebDsbdNf3xUFJ4G",
-      "balance": 516772,
+      "balance": 541458,
       "membership_expire_on": 1718811616,
       "next_cert_issuable_on": 1673858090,
       "certs_received": {
@@ -205051,7 +209349,7 @@
     "CelineBibauw": {
       "index": 13082,
       "owner_key": "J4S9bTBPcoG9Ug5uSYrHpuYCjTykN99zWPtYVUgS8eoJ",
-      "balance": 70864,
+      "balance": 110550,
       "membership_expire_on": 1719708861,
       "next_cert_issuable_on": 1689003847,
       "certs_received": {
@@ -205093,9 +209391,9 @@
     "SantiagoAcosta": {
       "index": 10223,
       "owner_key": "J4tBuCgqDHtqnNwaQBbn4r6yNh4R3fR88ZgbuA8GFNW7",
-      "balance": 432087,
+      "balance": 532674,
       "membership_expire_on": 1718571655,
-      "next_cert_issuable_on": 1688621930,
+      "next_cert_issuable_on": 1694518170,
       "certs_received": {
         "ROCIO": 1730697498,
         "FSuarez108": 1730846195,
@@ -205113,9 +209411,7 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1639019255,
       "certs_received": {
-        "Stessy": 1694903865,
-        "MoulinMuriel": 1700685669,
-        "ChristopheRobine": 1694912375
+        "MoulinMuriel": 1700685669
       }
     },
     "ichmat": {
@@ -205173,7 +209469,7 @@
     "Delavida": {
       "index": 10880,
       "owner_key": "J5VtSnWYZvTAiE9yXXfPqC6zLRC3EFuJNmahXeZ28Tvc",
-      "balance": 112748,
+      "balance": 107834,
       "membership_expire_on": 1701825247,
       "next_cert_issuable_on": 1686301748,
       "certs_received": {
@@ -205196,7 +209492,7 @@
     "BeatriceEabadh": {
       "index": 9977,
       "owner_key": "J5emRkQQdy6MN9V35MhESJHXnVj6F78XWNzckGTBEoYZ",
-      "balance": 338729,
+      "balance": 378415,
       "membership_expire_on": 1697423070,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -205211,9 +209507,9 @@
     "Mimwen69": {
       "index": 9284,
       "owner_key": "J5pdr8apURodvt8tGMowDZYGpKqLCdEG1WMHxNuMQo4h",
-      "balance": 1915276,
+      "balance": 2086774,
       "membership_expire_on": 1720719427,
-      "next_cert_issuable_on": 1686384554,
+      "next_cert_issuable_on": 1695053215,
       "certs_received": {
         "fred09bl": 1735031705,
         "Fan971": 1737076411,
@@ -205236,11 +209532,12 @@
     "danieln": {
       "index": 3417,
       "owner_key": "J5vnsShpeDNs2PtmyeSuaxjv8HDFkx27hnieQZ2YS4Nz",
-      "balance": 1013631,
+      "balance": 1053317,
       "membership_expire_on": 1723213564,
-      "next_cert_issuable_on": 1660962616,
+      "next_cert_issuable_on": 1695973287,
       "certs_received": {
         "JessyRipert": 1702529310,
+        "nashira": 1759152624,
         "fabiolino": 1702870981,
         "venusienne": 1703028881,
         "Marilyne": 1702768642,
@@ -205254,8 +209551,8 @@
     "Maxsum": {
       "index": 9544,
       "owner_key": "J6HYxDjDMB7624s6JaEdxYY87sJKH33yjTXc9zsFWEos",
-      "balance": 382085,
-      "membership_expire_on": 1694685844,
+      "balance": 395969,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1663981741,
       "certs_received": {
         "LydieParthenay": 1726244601,
@@ -205277,7 +209574,7 @@
     "Anelyse": {
       "index": 6698,
       "owner_key": "J6TSStShC9JL3mab8s2mvskwGDHeZn1zZ2DfFkEkWtDH",
-      "balance": 598632,
+      "balance": 666750,
       "membership_expire_on": 1697320631,
       "next_cert_issuable_on": 1693403450,
       "certs_received": {
@@ -205300,7 +209597,7 @@
     "CaroLine": {
       "index": 13200,
       "owner_key": "J6daK7s3UhoLiNmSKRoWeCRz55eyKytSXmwWNbFJd3eA",
-      "balance": 61856,
+      "balance": 303442,
       "membership_expire_on": 1720726287,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -205322,7 +209619,7 @@
     "MAarboldelavida": {
       "index": 11406,
       "owner_key": "J6kuj8KoMj3FGz2D45cdrtTQGUDD5hn85Bj3choy6tpH",
-      "balance": 144593,
+      "balance": 186279,
       "membership_expire_on": 1702858642,
       "next_cert_issuable_on": 1687886039,
       "certs_received": {
@@ -205340,10 +209637,11 @@
     "EduZapping": {
       "index": 8710,
       "owner_key": "J6n3SDGmtbDwsCznSwcDN7AtME2Ycc1HQtwAtCpEFNpT",
-      "balance": 603286,
+      "balance": 545672,
       "membership_expire_on": 1714318857,
-      "next_cert_issuable_on": 1693220368,
+      "next_cert_issuable_on": 1695618669,
       "certs_received": {
+        "Glorieta": 1756959292,
         "CrisBB": 1738940220,
         "Vichara": 1719373570,
         "roberplantas": 1733176369,
@@ -205368,6 +209666,7 @@
         "JosunePP": 1733291025,
         "Mariarima": 1735802380,
         "Orakulo": 1733635462,
+        "JoRraGor": 1759619505,
         "Maritxu": 1734825801,
         "CristinaAbella": 1752975169,
         "minas": 1719372333,
@@ -205383,7 +209682,7 @@
     "JEANLUCS": {
       "index": 9083,
       "owner_key": "J6rihZCM1R8evLTmUDdkNK4S2vW21MhZb1ZEpA5b96Mr",
-      "balance": 350310,
+      "balance": 389996,
       "membership_expire_on": 1713706024,
       "next_cert_issuable_on": 1689299993,
       "certs_received": {
@@ -205399,12 +209698,13 @@
     "daens": {
       "index": 9550,
       "owner_key": "J6rmyLieFbzuKRNGz9YbHa52QmRXoKqCZ1QvDkqP9m2y",
-      "balance": 358734,
+      "balance": 424920,
       "membership_expire_on": 1719789535,
       "next_cert_issuable_on": 1690032666,
       "certs_received": {
         "AlphaCentauri": 1725651026,
         "TerreSacree": 1735800784,
+        "GuybrushThreepwood": 1759258129,
         "MaryBricteux": 1725552112,
         "ChantAloha": 1752563017,
         "Marysecpa": 1725551842,
@@ -205432,7 +209732,7 @@
     "Tounette07": {
       "index": 6743,
       "owner_key": "J7HvRrf6NoVMrp8igEmPvchejJa6Qn33DbGLMxSdhdiv",
-      "balance": 557715,
+      "balance": 597401,
       "membership_expire_on": 1704741100,
       "next_cert_issuable_on": 1650512007,
       "certs_received": {
@@ -205448,7 +209748,7 @@
     "Rajesh": {
       "index": 12086,
       "owner_key": "J7J5q5TE7Z8MSqQi54p8qvpo9kQ2maoe2L2vT2d6SxBL",
-      "balance": 391268,
+      "balance": 430954,
       "membership_expire_on": 1710624066,
       "next_cert_issuable_on": 1691056370,
       "certs_received": {
@@ -205478,33 +209778,35 @@
     "Parpalhon": {
       "index": 3007,
       "owner_key": "J7MpqU6mhmobYE7Z8EhBdMiwgFKi5d1xffrLC9NgvK7j",
-      "balance": 539562,
+      "balance": 579248,
       "membership_expire_on": 1707306366,
-      "next_cert_issuable_on": 1665313952,
+      "next_cert_issuable_on": 1694129930,
       "certs_received": {
         "Libertiste": 1698206956,
-        "Diego528": 1696372184,
         "Helene-petiteriviere": 1718817591,
         "Caroleluciole": 1698894156,
         "Trayx": 1719264530,
-        "Marcelin": 1701468756,
+        "Marcelin": 1757173130,
         "Paola": 1708317195,
         "BRIGITTE2019": 1697749848,
-        "zaza": 1694545099,
-        "PascalGuillemain": 1698902526
+        "zaza": 1757173130,
+        "PascalGuillemain": 1698902526,
+        "mat14": 1757173130
       }
     },
     "Chiron": {
       "index": 12160,
       "owner_key": "J7QLTTWo9rDkyoeEjZLQn12oPp1vEqShws71skMFSXUw",
-      "balance": 172740,
+      "balance": 212426,
       "membership_expire_on": 1711323037,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696504676,
       "certs_received": {
+        "Tell": 1758134452,
         "Elyse33": 1743229805,
         "ChristineMontpellier": 1742930781,
         "LibertyFran": 1742883181,
         "VeroniKa": 1742943114,
+        "Sol-Eric": 1758740281,
         "Anukil": 1744067391,
         "ludine": 1743210428
       }
@@ -205512,8 +209814,8 @@
     "Tery": {
       "index": 9791,
       "owner_key": "J7cL9nGBPg8bYcvyUro91HwaQwqkSgmuF9foGvhv6TQn",
-      "balance": 351996,
-      "membership_expire_on": 1694548239,
+      "balance": 364812,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1688284730,
       "certs_received": {
         "arkanoid3275": 1726281375,
@@ -205528,7 +209830,7 @@
     "Skarlett": {
       "index": 4842,
       "owner_key": "J7ciC9jPPsvY9p5ykGXeKe7crt24eap7Rtfna7DxLgwp",
-      "balance": 1622319,
+      "balance": 1659005,
       "membership_expire_on": 1703454127,
       "next_cert_issuable_on": 1688004970,
       "certs_received": {
@@ -205541,13 +209843,14 @@
         "SandrineMotos": 1737006311,
         "Miaou": 1755105168,
         "Nirma": 1701238241,
+        "sandrinedesicy26": 1759817731,
         "Moksha": 1729553630
       }
     },
     "PatrickFitura": {
       "index": 10281,
       "owner_key": "J7dEYvHP1wvCWjNk5YqSAnNMZWEHq5Vo4HAAmJutTU9N",
-      "balance": 312813,
+      "balance": 352499,
       "membership_expire_on": 1698905522,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -205561,9 +209864,9 @@
     "Evanouche": {
       "index": 13376,
       "owner_key": "J7z4Yon5XbYidzZWS8voVqKHY5RvmvZwtitBeJCXj7Mq",
-      "balance": 17988,
+      "balance": 67674,
       "membership_expire_on": 1720697220,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696230481,
       "certs_received": {
         "Gazaile": 1752995079,
         "Couleurs": 1752951633,
@@ -205594,15 +209897,17 @@
     "Alessandra": {
       "index": 11624,
       "owner_key": "J83wx3nNSkdFcV7HzeLkzwzA4w3zdoJY62RoaDjjVEYf",
-      "balance": 185649,
+      "balance": 225335,
       "membership_expire_on": 1706226152,
-      "next_cert_issuable_on": 1689355671,
+      "next_cert_issuable_on": 1693674622,
       "certs_received": {
         "Ansemil": 1739580439,
         "anapatapouf": 1744293931,
+        "Nandoporto": 1757350903,
         "Alvaro": 1746651250,
         "Sancho": 1749453485,
         "Zephyr01": 1739570287,
+        "DivinaC": 1756364787,
         "Henrique": 1739567027,
         "FlorenceFlore": 1737944097,
         "pedroponte": 1745516861,
@@ -205615,7 +209920,7 @@
     "magicplanet88": {
       "index": 11316,
       "owner_key": "J8AsUFmrtjx1qgbLkMLqbHWyiK5KnmcqrLX8fMPfk5Yq",
-      "balance": 303506,
+      "balance": 343192,
       "membership_expire_on": 1705844423,
       "next_cert_issuable_on": 1683777953,
       "certs_received": {
@@ -205648,7 +209953,7 @@
     "veronique08": {
       "index": 7749,
       "owner_key": "J8Kk4vRPKMHHVFDcUzLcmMbd6CKg57uCWUYDLFDKx2yp",
-      "balance": 516684,
+      "balance": 556370,
       "membership_expire_on": 1705525214,
       "next_cert_issuable_on": 1674039614,
       "certs_received": {
@@ -205663,14 +209968,11 @@
     "Albin": {
       "index": 5552,
       "owner_key": "J8LrnN6kwxfMD4SGYEYgH691xZn2BhzTNgy2Zzn6zgGj",
-      "balance": 633604,
-      "membership_expire_on": 1695480287,
+      "balance": 658198,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1658107789,
       "certs_received": {
         "Helenep": 1750821949,
-        "Caropirate": 1696212298,
-        "CitizenFour": 1695966579,
-        "LeoLeo": 1694554119,
         "Debu24590": 1700005172,
         "Millefeuille": 1724600110
       }
@@ -205678,7 +209980,7 @@
     "gitti": {
       "index": 11198,
       "owner_key": "J8c2vopWD87oPsN9DtteJDWMsA4ufAeHSjGtFKSoVmee",
-      "balance": 255796,
+      "balance": 295482,
       "membership_expire_on": 1704998734,
       "next_cert_issuable_on": 1685857771,
       "certs_received": {
@@ -205694,14 +209996,13 @@
     "Sylvere72": {
       "index": 3665,
       "owner_key": "J8eMReR4ZhK4rtftLD8jk8CSwuV9iHNCaC57fCrLkHuu",
-      "balance": 956609,
+      "balance": 996295,
       "membership_expire_on": 1706754167,
       "next_cert_issuable_on": 1689469493,
       "certs_received": {
         "Jean-Marie": 1754507180,
         "nuvolari": 1747587013,
         "PatrickCrepin": 1701695884,
-        "LaureFemmeVanne": 1696233513,
         "Pascale72": 1725063196,
         "NordineVallas": 1728493401,
         "RomanUza": 1706062350,
@@ -205723,16 +210024,14 @@
     "EmmanuelJ": {
       "index": 4407,
       "owner_key": "J8hits7TSJSQ7LCXCdWFCLcizKdt9XPBMxjypnw6B7x9",
-      "balance": 754082,
+      "balance": 793768,
       "membership_expire_on": 1722010735,
       "next_cert_issuable_on": 1680170657,
       "certs_received": {
         "JessyRipert": 1708295743,
         "sylvine": 1712280676,
-        "myriamdevivegnis": 1693785279,
         "FrancoiseCombes": 1748914654,
         "StefTouet": 1703205697,
-        "hocine": 1696520393,
         "ValerieBaudouin": 1706044613,
         "psycotox80": 1735400806
       }
@@ -205740,7 +210039,7 @@
     "OLAG": {
       "index": 10664,
       "owner_key": "J8kECU1suqkvao8uhQmmAqjfFGe7q7Yj35rD5TeE2RoE",
-      "balance": 376250,
+      "balance": 415936,
       "membership_expire_on": 1701703633,
       "next_cert_issuable_on": 1679369206,
       "certs_received": {
@@ -205754,7 +210053,7 @@
     "Corinne06": {
       "index": 11063,
       "owner_key": "J8nUbnKAN3nBup6nHTy4MzisSgXCzWsjrvPaCeqkNkbv",
-      "balance": 264322,
+      "balance": 304008,
       "membership_expire_on": 1698799033,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -205778,8 +210077,8 @@
     "Pascal79": {
       "index": 6301,
       "owner_key": "J8qezXaYqc6ySQ5t9MQn9cmf7gbRgPYMHXt3dv72XXJ5",
-      "balance": 311409,
-      "membership_expire_on": 0,
+      "balance": 318955,
+      "membership_expire_on": 1727650692,
       "next_cert_issuable_on": 1651321245,
       "certs_received": {
         "Kevinbdn": 1701142608,
@@ -205787,7 +210086,8 @@
         "JohannFox": 1700615781,
         "Coco-B": 1700680995,
         "AdelineCesbron": 1700707479,
-        "VanessaVigier": 1701049455
+        "VanessaVigier": 1701049455,
+        "Siellevie": 1759256687
       }
     },
     "1pactweb": {
@@ -205821,8 +210121,8 @@
     "IsaPetitsBonheurs": {
       "index": 9888,
       "owner_key": "J8xwbNWQiaB7TkFUx3qvoG9kSZbyrBJ77ULUjS9iK9Xd",
-      "balance": 384683,
-      "membership_expire_on": 1696018677,
+      "balance": 419869,
+      "membership_expire_on": 1727011028,
       "next_cert_issuable_on": 1689500913,
       "certs_received": {
         "Nanou59": 1734322151,
@@ -205840,7 +210140,7 @@
     "DaroussinB": {
       "index": 7725,
       "owner_key": "J8yxa9TZ5C5jMnX51yV4MBFwoHDi4RCGtQD1nDfiYxGG",
-      "balance": 518546,
+      "balance": 558232,
       "membership_expire_on": 1718057525,
       "next_cert_issuable_on": 1689588164,
       "certs_received": {
@@ -205862,8 +210162,8 @@
     "StarTerreHappy": {
       "index": 10707,
       "owner_key": "J93KNiEtYdCfA5sC6P1TUhq3DyinVyUmj3bHXqwiNqDB",
-      "balance": 336338,
-      "membership_expire_on": 1698716780,
+      "balance": 344824,
+      "membership_expire_on": 1726328241,
       "next_cert_issuable_on": 1690215748,
       "certs_received": {
         "catrelax11": 1753581236,
@@ -205889,9 +210189,9 @@
     "RadissonMarie": {
       "index": 6903,
       "owner_key": "J9B8TXTkJUBUMULFg3GjYahFuGWVFimr9brQce9efYYS",
-      "balance": 615685,
+      "balance": 617371,
       "membership_expire_on": 1700135959,
-      "next_cert_issuable_on": 1672980201,
+      "next_cert_issuable_on": 1694684553,
       "certs_received": {
         "Janpolan": 1734671344,
         "valentinekaya": 1733530066,
@@ -205909,23 +210209,17 @@
     "fredswing": {
       "index": 5652,
       "owner_key": "J9PdQCRC8oWvWpLbw5XRVBGPj8PGBAECEQgtcjnDvsAy",
-      "balance": 668443,
+      "balance": 694129,
       "membership_expire_on": 1724550418,
-      "next_cert_issuable_on": 1693131592,
+      "next_cert_issuable_on": 1695969060,
       "certs_received": {
-        "Gerg": 1698257672,
+        "Gerg": 1757630821,
         "Fleur-du-renouveau": 1697785859,
-        "venusienne": 1694715779,
-        "GouZ": 1694417583,
         "Junouille": 1724427759,
-        "Elfedelumiere": 1694982385,
         "nathanaelf": 1747331816,
         "fredo79": 1752467728,
         "Cleannes": 1746669701,
-        "Mhjo": 1694459127,
-        "scanlegentil": 1695309243,
-        "TerrasFranck": 1694417583,
-        "Krikri": 1694420269,
+        "scanlegentil": 1759079717,
         "Fred": 1747352294,
         "Steeve": 1738027271,
         "Ananda46": 1721921351
@@ -205934,7 +210228,7 @@
     "IsaDiavel": {
       "index": 12512,
       "owner_key": "J9Rwtk42WTY52Ka4DohdJzvdhnGZ8TwhAoAmdLZNXifL",
-      "balance": 99228,
+      "balance": 168914,
       "membership_expire_on": 1714431738,
       "next_cert_issuable_on": 1684813793,
       "certs_received": {
@@ -205982,7 +210276,7 @@
     "PapillonShe": {
       "index": 12057,
       "owner_key": "J9WQFJ1FzHmT15wwMbniXpJsMfDtnYiZ4MyZtDP26b5c",
-      "balance": 185302,
+      "balance": 224988,
       "membership_expire_on": 1709747052,
       "next_cert_issuable_on": 1680974134,
       "certs_received": {
@@ -205999,7 +210293,7 @@
     "HVB": {
       "index": 6012,
       "owner_key": "J9e1zWQkbAgBPeHLLALdZ51SCE7MAS7TRZqLeCLLURq4",
-      "balance": 713228,
+      "balance": 752914,
       "membership_expire_on": 1724067052,
       "next_cert_issuable_on": 1684734334,
       "certs_received": {
@@ -206058,9 +210352,9 @@
     "LizaCarone": {
       "index": 7106,
       "owner_key": "J9rAMFGr3XQv7suSNvWnbhnWJgF3CFQRAsCkVn46u6NH",
-      "balance": 219324,
+      "balance": 216010,
       "membership_expire_on": 1707344610,
-      "next_cert_issuable_on": 1680233366,
+      "next_cert_issuable_on": 1696337090,
       "certs_received": {
         "chris07": 1730169834,
         "lanoire": 1712726655,
@@ -206078,6 +210372,7 @@
         "Lucas_Desroches": 1708669835,
         "Kaia": 1723246871,
         "Vajrabro": 1713389500,
+        "Chrissbrl": 1759001481,
         "nox": 1732439984,
         "JeanLucGAUTHIER": 1708545013,
         "Attilax": 1708163630,
@@ -206091,9 +210386,9 @@
     "CaroNaturo": {
       "index": 11937,
       "owner_key": "J9vrSDPKbszSGdgf5EKDERe8cgaDYem5w6TiQ8vkzx6Y",
-      "balance": 218474,
+      "balance": 225460,
       "membership_expire_on": 1709322920,
-      "next_cert_issuable_on": 1684920670,
+      "next_cert_issuable_on": 1695545163,
       "certs_received": {
         "VinceNB": 1741397708,
         "Sunshining": 1741390619,
@@ -206111,7 +210406,7 @@
     "Ninusca": {
       "index": 12973,
       "owner_key": "JA3avjGBAcxaeFDZ5cHb9cUKwkcENMLnpFQPXBxQEbet",
-      "balance": 96124,
+      "balance": 121510,
       "membership_expire_on": 1718882609,
       "next_cert_issuable_on": 1691389175,
       "certs_received": {
@@ -206125,7 +210420,7 @@
     "Martouf": {
       "index": 961,
       "owner_key": "JA5haxVwavfTo7sV6ZCqztcerrLLwC1djgUhvt69TSfM",
-      "balance": 1702201,
+      "balance": 1741887,
       "membership_expire_on": 1701476445,
       "next_cert_issuable_on": 1654131633,
       "certs_received": {
@@ -206143,9 +210438,9 @@
     "Freco": {
       "index": 4191,
       "owner_key": "JA9fRarAfQjigDBZPtXUkmFkKS8GWQJ93tVYAtEim5jp",
-      "balance": 115280,
-      "membership_expire_on": 1709292250,
-      "next_cert_issuable_on": 1693152733,
+      "balance": 154966,
+      "membership_expire_on": 1727660327,
+      "next_cert_issuable_on": 1696175077,
       "certs_received": {
         "Jerome035": 1739206900,
         "lims": 1755139071,
@@ -206162,7 +210457,7 @@
         "nox": 1730718886,
         "CristalCeleste": 1724565698,
         "bellis": 1732295504,
-        "DidierPapillon": 1698487027,
+        "DidierPapillon": 1756251528,
         "MatthieuLatapy": 1722757117,
         "Houriadeparissud": 1707583141,
         "MinaManar": 1705220354,
@@ -206172,7 +210467,7 @@
     "Miri741": {
       "index": 10864,
       "owner_key": "JA9o7zP3UeuJhVQErJmFGsn2BQNjfwzhKK8NGdsjJwW8",
-      "balance": 63339,
+      "balance": 58525,
       "membership_expire_on": 1702424060,
       "next_cert_issuable_on": 1691227659,
       "certs_received": {
@@ -206210,8 +210505,8 @@
     "lcdan": {
       "index": 5880,
       "owner_key": "JAKMbirTXFHv85zEEvjxnxHfbUjRPKAfRZA2rpKpprS1",
-      "balance": 302425,
-      "membership_expire_on": 1693513925,
+      "balance": 284107,
+      "membership_expire_on": 1725331937,
       "next_cert_issuable_on": 1671910656,
       "certs_received": {
         "SalinJL": 1713398743,
@@ -206219,7 +210514,7 @@
         "Fan971": 1697524618,
         "JeanMichelBrisard": 1720603378,
         "JP-Rod": 1711850499,
-        "Jade971": 1697356780,
+        "Jade971": 1758975500,
         "BereniceConcarneau": 1751046926,
         "Cricri": 1697512286,
         "George": 1725777509,
@@ -206230,7 +210525,7 @@
     "Matouchka": {
       "index": 12611,
       "owner_key": "JALZ6vpzbJP42jM7FnprVHpP1ekzZTxwBqNVN52qL3wB",
-      "balance": 109616,
+      "balance": 149302,
       "membership_expire_on": 1715382610,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -206258,23 +210553,18 @@
       "next_cert_issuable_on": 1635320807,
       "certs_received": {
         "Loulou09": 1730159965,
-        "GeraldineLeprivier": 1693693515,
         "pascaldedomptail": 1710996611,
         "Gentil09": 1706742273,
-        "ChatelainAndrea": 1694546218,
-        "ChatelainJimmy": 1694545946,
-        "PhilippeRomanin": 1693693515,
         "myriamdevivegnis": 1710996931,
-        "LeprivierLunel": 1694136405,
         "Timtitou": 1700384432
       }
     },
     "Nadsoljoy": {
       "index": 12488,
       "owner_key": "JAjQ6AwbpDEP9ByCzfamqsNhbUmfVSHvqLn8t5NyCmHx",
-      "balance": 128332,
+      "balance": 128018,
       "membership_expire_on": 1712503801,
-      "next_cert_issuable_on": 1688523224,
+      "next_cert_issuable_on": 1696696238,
       "certs_received": {
         "Didiw": 1745654974,
         "Yannick51200": 1745951165,
@@ -206305,7 +210595,7 @@
     "liberte49": {
       "index": 7869,
       "owner_key": "JAyWJZKfTXDJsYChhUezw32SYWU4qTDvW5V8ukXWQytM",
-      "balance": 503674,
+      "balance": 543360,
       "membership_expire_on": 1705662912,
       "next_cert_issuable_on": 1683897010,
       "certs_received": {
@@ -206349,7 +210639,7 @@
     "Besoul": {
       "index": 11852,
       "owner_key": "JB5sRSTrWisvkDse1kofc214UhFgh2RdrCSn3EyqKiqm",
-      "balance": 200187,
+      "balance": 239873,
       "membership_expire_on": 1709412706,
       "next_cert_issuable_on": 1688122561,
       "certs_received": {
@@ -206363,7 +210653,7 @@
     "IzarVela": {
       "index": 11314,
       "owner_key": "JB7PZ4xirNgzZS7c5yAtobpuKrCT4QyNRqMzaUaXGFqd",
-      "balance": 154106,
+      "balance": 182292,
       "membership_expire_on": 1705939750,
       "next_cert_issuable_on": 1674987452,
       "certs_received": {
@@ -206379,7 +210669,7 @@
     "Matias": {
       "index": 12821,
       "owner_key": "JB7aWx1NyiFhp1DEW5k2TG4U1CuhM39iUenuZjAhGdvQ",
-      "balance": 91848,
+      "balance": 131534,
       "membership_expire_on": 1717584806,
       "next_cert_issuable_on": 1686123172,
       "certs_received": {
@@ -206395,7 +210685,7 @@
     "Elodea": {
       "index": 4566,
       "owner_key": "JBBs9Drab6G7cjP3EUGsaGQS5UPJzgzDqHG14wSuELuu",
-      "balance": 341819,
+      "balance": 381505,
       "membership_expire_on": 1700359536,
       "next_cert_issuable_on": 1676663649,
       "certs_received": {
@@ -206409,7 +210699,7 @@
         "Rach": 1722469090,
         "Nono13": 1740167089,
         "tomval83": 1739263371,
-        "hypericum": 1695753912,
+        "hypericum": 1758331417,
         "MissChaChaCha": 1712864780,
         "sens": 1710737393,
         "Val83": 1725207743
@@ -206418,11 +210708,12 @@
     "Annie": {
       "index": 12843,
       "owner_key": "JBCYsWNLtrwbQmvy3HGTZCbRyTAPoq43VTg8x5chBD3m",
-      "balance": 81212,
+      "balance": 113098,
       "membership_expire_on": 1717163591,
-      "next_cert_issuable_on": 1693221225,
+      "next_cert_issuable_on": 1694260951,
       "certs_received": {
         "JanineBoitel": 1748840855,
+        "Marianb": 1759599275,
         "Mam": 1748853412,
         "MayaDN": 1749406061,
         "Aliyoyo": 1753586664,
@@ -206441,9 +210732,9 @@
     "Kian": {
       "index": 11739,
       "owner_key": "JBMqwYf6hsD6gnv9RXyu3wr2TwdJsH36y1vmJ4n363Ry",
-      "balance": 214518,
+      "balance": 254204,
       "membership_expire_on": 1705002960,
-      "next_cert_issuable_on": 1689396999,
+      "next_cert_issuable_on": 1696399412,
       "certs_received": {
         "FatimaDonoso": 1754088533,
         "ManelG": 1740263857,
@@ -206466,7 +210757,7 @@
     "VICTORIA": {
       "index": 7360,
       "owner_key": "JBcreKjrRRdrN4YthXb9MkeZ5gwZbqVTTxBambhsrAwo",
-      "balance": 419498,
+      "balance": 459184,
       "membership_expire_on": 1720007508,
       "next_cert_issuable_on": 1650611042,
       "certs_received": {
@@ -206481,7 +210772,7 @@
     "mapi63": {
       "index": 12838,
       "owner_key": "JBeg4WEEtLy5T2KvjPVhGhd1aNiPuzXBkaNdU9GiuzC",
-      "balance": 94712,
+      "balance": 134398,
       "membership_expire_on": 1717790292,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -206495,7 +210786,7 @@
     "Silvera": {
       "index": 12180,
       "owner_key": "JBemrEmLB177rL1mzTdedqsMamwfUu817BSrwojN9Koc",
-      "balance": 169372,
+      "balance": 204058,
       "membership_expire_on": 1711722513,
       "next_cert_issuable_on": 1683887907,
       "certs_received": {
@@ -206509,8 +210800,8 @@
     "Belugah": {
       "index": 5945,
       "owner_key": "JBou9n9geApZQKdtVvXsxoG8zjS2yDTC5qxMVfck21kP",
-      "balance": 480109,
-      "membership_expire_on": 1694742925,
+      "balance": 495061,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1676935314,
       "certs_received": {
         "Beasejour": 1698658869,
@@ -206526,7 +210817,7 @@
     "Marike11": {
       "index": 3011,
       "owner_key": "JBy5WMqihTVcg3b7ggNNKubnMmX3PUMPMvJAVBvbW6xb",
-      "balance": 1197133,
+      "balance": 1236819,
       "membership_expire_on": 1698865864,
       "next_cert_issuable_on": 1689954641,
       "certs_received": {
@@ -206546,7 +210837,7 @@
     "chaumesaries": {
       "index": 6438,
       "owner_key": "JBybf8C9fH4CHBrwj5LDCsoy45ybW5E4RqzqiHtycyXT",
-      "balance": 590085,
+      "balance": 629771,
       "membership_expire_on": 1701943445,
       "next_cert_issuable_on": 1670457845,
       "certs_received": {
@@ -206569,16 +210860,17 @@
     "ClaireSMV": {
       "index": 5568,
       "owner_key": "JC3SFMHx8XQPKAoXECKoXwPg2uZq9PyWidXFLmtC87iC",
-      "balance": 73083,
+      "balance": 101769,
       "membership_expire_on": 1717525585,
-      "next_cert_issuable_on": 1691751757,
+      "next_cert_issuable_on": 1695909148,
       "certs_received": {
         "FloLap": 1706407438,
         "ClaireAzur": 1713331380,
         "Tchois": 1756281538,
-        "Delfe": 1694729452,
         "Chiara07": 1744869694,
         "Bibi06": 1716527725,
+        "pfouque": 1757539074,
+        "Cathylousouc": 1757390653,
         "osavoyard": 1713236782,
         "Elvynao6": 1754780664,
         "Sailorcherry": 1748761451,
@@ -206596,8 +210888,8 @@
     "bubuche52": {
       "index": 10388,
       "owner_key": "JC6PjbPAN3NRUNB2PGL9jEcW6D6SywCqRNYVD3b3zDKT",
-      "balance": 115500,
-      "membership_expire_on": 1696267791,
+      "balance": 55186,
+      "membership_expire_on": 1727713221,
       "next_cert_issuable_on": 1689244961,
       "certs_received": {
         "odilemauret": 1730997089,
@@ -206611,7 +210903,7 @@
     "BeatrizGG": {
       "index": 8730,
       "owner_key": "JCBokDcEndQT4gU7jyzo52ipiujYnaYNuRD1uq9VWMJo",
-      "balance": 238170,
+      "balance": 265856,
       "membership_expire_on": 1711477548,
       "next_cert_issuable_on": 1692071202,
       "certs_received": {
@@ -206647,30 +210939,26 @@
     "LydiaRoche": {
       "index": 1482,
       "owner_key": "JCC88UhXZDn1rsVnHewkvA9PrUL32N49Y3JTxCKg9Qbw",
-      "balance": 509928,
+      "balance": 266614,
       "membership_expire_on": 1704847917,
-      "next_cert_issuable_on": 1689156728,
+      "next_cert_issuable_on": 1695739374,
       "certs_received": {
-        "Milan": 1696116612,
         "Hades": 1698470883,
         "Majoli34": 1730077562,
         "Evelyne87": 1737862784,
         "LionLDouNIo": 1730996887,
         "CaroKro": 1731801024,
-        "DimitriTuffreau": 1695972054,
         "Kali": 1700597564,
         "Poesy": 1732333268,
         "LaPetiteMaisonDansLaPrairie": 1734408902,
         "LaurenceIG": 1753358221,
         "herbacha": 1748800498,
         "SabineIsambert": 1698600680,
-        "Tiptaptop": 1696359247,
         "Cecilelaurent": 1696999056,
         "Emeline": 1728426448,
         "ElisabethMoreil": 1733870651,
         "CVM": 1731110383,
         "Fanchon": 1737615652,
-        "Leticia": 1696116289,
         "Parhit": 1707726392,
         "ben078m": 1729468153,
         "or3L": 1729364643
@@ -206679,7 +210967,7 @@
     "Erjeon": {
       "index": 10435,
       "owner_key": "JCDkpCYWwT9CqfTwD1ewtjrXKSFcWcUq1dmxgvZfVLGd",
-      "balance": 243707,
+      "balance": 283393,
       "membership_expire_on": 1698284399,
       "next_cert_issuable_on": 1672674160,
       "certs_received": {
@@ -206696,9 +210984,9 @@
     "MoniqueChaplie": {
       "index": 5584,
       "owner_key": "JCHBoHEfXNhb8UrNy7SKFUnX9JcEQECegkkfVwA4fg4s",
-      "balance": 740425,
+      "balance": 767511,
       "membership_expire_on": 1720261701,
-      "next_cert_issuable_on": 1687570741,
+      "next_cert_issuable_on": 1695544826,
       "certs_received": {
         "HelloSunshine": 1716703621,
         "NataNieves": 1716052462,
@@ -206718,9 +211006,9 @@
     "PhilCominges": {
       "index": 9776,
       "owner_key": "JCMWkk9w1BbE7bswRhT2etxae6athKK1Y9DuF7GAH8h6",
-      "balance": 286299,
+      "balance": 225985,
       "membership_expire_on": 1724380566,
-      "next_cert_issuable_on": 1688358267,
+      "next_cert_issuable_on": 1696322538,
       "certs_received": {
         "GUL40_Fr1": 1741042878,
         "Cristol-Iquid": 1727034748,
@@ -206737,21 +211025,22 @@
     "FlorenceBoisjoly": {
       "index": 5267,
       "owner_key": "JCZxtebYcvA3agao2VCwSinGwoAKCHaEAk5pyruh4fq",
-      "balance": 893154,
-      "membership_expire_on": 0,
+      "balance": 905012,
+      "membership_expire_on": 1727205658,
       "next_cert_issuable_on": 1639022240,
       "certs_received": {
-        "StephanieN": 1694585405,
         "EricPetit": 1744584992,
         "pascalpioline": 1697003818,
+        "simonelion": 1758919989,
         "PascaleRoncoroni": 1745172365,
+        "EdithSineux": 1758908857,
         "EmmanuelDerkenne": 1744581101
       }
     },
     "malika": {
       "index": 6509,
       "owner_key": "JCabKB81VYzwsm4cwsyFg6GmeTsX6DjWWNn3NF1mSgru",
-      "balance": 745649,
+      "balance": 785335,
       "membership_expire_on": 1700523130,
       "next_cert_issuable_on": 1650512007,
       "certs_received": {
@@ -206781,9 +211070,9 @@
     "Bella35": {
       "index": 13330,
       "owner_key": "JCq5Ub22NYDBMvksRZ751DPk4NJ1UFFnb5b83jwoU71b",
-      "balance": 25632,
+      "balance": 65318,
       "membership_expire_on": 1722599848,
-      "next_cert_issuable_on": 1693129528,
+      "next_cert_issuable_on": 1694340233,
       "certs_received": {
         "Lionel_Dechilly": 1754591693,
         "DomVe": 1754265735,
@@ -206805,8 +211094,8 @@
     "Rosawitt": {
       "index": 1362,
       "owner_key": "JD5LX52w2stqNN3UzDqg9xfdApQw1VWZE9Kp4YcXdpTp",
-      "balance": 1669627,
-      "membership_expire_on": 1695160322,
+      "balance": 1689919,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1671868841,
       "certs_received": {
         "Clo888": 1728343282,
@@ -206865,11 +211154,10 @@
     "Glass": {
       "index": 5273,
       "owner_key": "JDCkDAoxPkfjvQtqDwWvTFXivgD2yKr6Jhvnd6GGzE4a",
-      "balance": 780705,
+      "balance": 820391,
       "membership_expire_on": 1715256573,
-      "next_cert_issuable_on": 1657026190,
+      "next_cert_issuable_on": 1694604999,
       "certs_received": {
-        "Teresapp": 1694032857,
         "Vivakvo": 1751267961,
         "Lurtxu": 1719652762,
         "Caribe": 1711897869,
@@ -206877,7 +211165,6 @@
         "OlivierMaurice": 1754619865,
         "Wotan": 1716388239,
         "C13GACHET": 1712817488,
-        "Belka": 1694042186,
         "C13KETSALI": 1713172119,
         "maga65": 1702251712,
         "Gelen": 1711578029,
@@ -206885,8 +211172,7 @@
         "SIUX": 1725616416,
         "AylaSatyaSangat": 1720297615,
         "C13Juanp": 1712123628,
-        "C13IAMisidoro": 1712621624,
-        "JulietteChamagne": 1693783021
+        "C13IAMisidoro": 1712621624
       }
     },
     "Valentine": {
@@ -206908,9 +211194,9 @@
     "Alcyone8888": {
       "index": 13114,
       "owner_key": "JDVeaHXJzQwa52GH8mK3WJMpbbDbjVzG3GcAPy315XLQ",
-      "balance": 91712,
+      "balance": 101398,
       "membership_expire_on": 1720310647,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1696135149,
       "certs_received": {
         "venusienne": 1751930298,
         "JessyC": 1751872112,
@@ -206931,9 +211217,9 @@
     "BDMan": {
       "index": 9738,
       "owner_key": "JDbHENTxer1y5t3Sy1HZBYwd2U3BDsXQ1pELeZFkXfmR",
-      "balance": 326224,
+      "balance": 365910,
       "membership_expire_on": 1723494359,
-      "next_cert_issuable_on": 1692010047,
+      "next_cert_issuable_on": 1696690170,
       "certs_received": {
         "NoraMaela": 1727723928,
         "PetitArbre": 1727723440,
@@ -206946,7 +211232,7 @@
     "sofinity": {
       "index": 10556,
       "owner_key": "JDekq9w6wQTsw6EHASrJTZgobM8Vv3cd5Meh6o1W3aQ1",
-      "balance": 755237,
+      "balance": 794923,
       "membership_expire_on": 1699918371,
       "next_cert_issuable_on": 1691817449,
       "certs_received": {
@@ -206968,7 +211254,7 @@
     "KATIOPINE-972": {
       "index": 11352,
       "owner_key": "JDiRKxJcXKSAba9CqHV7Qf1bzFXe3fcFEs1qn7eDNH5Y",
-      "balance": 167329,
+      "balance": 207015,
       "membership_expire_on": 1706212482,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -206982,7 +211268,7 @@
     "katou": {
       "index": 2515,
       "owner_key": "JDkkaFwKYwPFcgBP99HPn868MiTwo7rLeVW2ESfcYbwB",
-      "balance": 635125,
+      "balance": 664131,
       "membership_expire_on": 1718901396,
       "next_cert_issuable_on": 1691487868,
       "certs_received": {
@@ -206990,7 +211276,6 @@
         "CathyOlivier": 1745974485,
         "paidge": 1718014680,
         "Anne": 1717548960,
-        "ChristianDelaunay": 1696370019,
         "Gaelle": 1743040480,
         "Cilla": 1740533545,
         "Steph50": 1742925962,
@@ -207030,7 +211315,7 @@
     "TheoduleG1": {
       "index": 2779,
       "owner_key": "JDweigqSvh4zFw9x6wc86XzrmVMQD1BhWtKwPhAEghv1",
-      "balance": 1445572,
+      "balance": 1485258,
       "membership_expire_on": 1724758078,
       "next_cert_issuable_on": 1682828351,
       "certs_received": {
@@ -207047,13 +211332,12 @@
     "Tchounky": {
       "index": 1355,
       "owner_key": "JDxwehCCdKnr8Q1SCcnhVaXCgQnbs69B6ovzvtbW4dK5",
-      "balance": 1674479,
-      "membership_expire_on": 1698962174,
+      "balance": 1713087,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1638544873,
       "certs_received": {
         "Theo": 1730520573,
         "paidge": 1730520194,
-        "MarliMarl": 1696619995,
         "Scott76": 1730520573,
         "MatisChancellier": 1730520573
       }
@@ -207061,7 +211345,7 @@
     "Etoile123": {
       "index": 7048,
       "owner_key": "JE4WYHzpSz2NTb6wqo6QAbz3SUr51AUyadGRPfLk3Xfz",
-      "balance": 488138,
+      "balance": 527824,
       "membership_expire_on": 1707168248,
       "next_cert_issuable_on": 1649908393,
       "certs_received": {
@@ -207081,7 +211365,7 @@
     "AlineMARCINKOWSKI": {
       "index": 6648,
       "owner_key": "JE5hYiLC8q8jhfkKeYFXATweFke17VVMRMJPdzZ2sMF8",
-      "balance": 482654,
+      "balance": 522340,
       "membership_expire_on": 1707018222,
       "next_cert_issuable_on": 1675934424,
       "certs_received": {
@@ -207100,7 +211384,7 @@
     "ahmed": {
       "index": 2872,
       "owner_key": "JE5wy9uwkRapXAkV3FGfpuaaacEqNtYX45BYuoP83x4M",
-      "balance": 296472,
+      "balance": 272282,
       "membership_expire_on": 1717116119,
       "next_cert_issuable_on": 1684161884,
       "certs_received": {
@@ -207120,7 +211404,7 @@
     "boris": {
       "index": 1985,
       "owner_key": "JE6mkuzSpT3ePciCPRTpuMT9fqPUVVLJz2618d33p7tn",
-      "balance": 54075,
+      "balance": 58347,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
       "certs_received": {}
@@ -207128,9 +211412,9 @@
     "Karinedu21": {
       "index": 7641,
       "owner_key": "JE6nP9Ap1KapmMfGCR56S2kxED7anz8aEF5XpAZPBw4a",
-      "balance": 606992,
-      "membership_expire_on": 1701023025,
-      "next_cert_issuable_on": 1686570255,
+      "balance": 608878,
+      "membership_expire_on": 1727718437,
+      "next_cert_issuable_on": 1696596269,
       "certs_received": {
         "AHL": 1712798943,
         "Elorac": 1750193545,
@@ -207153,7 +211437,7 @@
     "obreuk108": {
       "index": 11229,
       "owner_key": "JEA9ZFnHsVXoGaYZNLfGMQ86zqsfcztQsSK3WbU2FY2G",
-      "balance": 182293,
+      "balance": 190479,
       "membership_expire_on": 1705272489,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -207187,7 +211471,7 @@
     "colibri": {
       "index": 7252,
       "owner_key": "JEEXYE1Mv7nmqdmwqm7tqF92r8kT4BiLWWzmPSUZVJBw",
-      "balance": 1071601,
+      "balance": 1111287,
       "membership_expire_on": 1703614364,
       "next_cert_issuable_on": 1677507668,
       "certs_received": {
@@ -207220,7 +211504,7 @@
     "Talia": {
       "index": 11054,
       "owner_key": "JEqJETmN2E5KXGVcBmCKbqniqES4Dkef3fN13CXNfns",
-      "balance": 323863,
+      "balance": 363549,
       "membership_expire_on": 1703625078,
       "next_cert_issuable_on": 1673995443,
       "certs_received": {
@@ -207234,9 +211518,9 @@
     "MaGaliPette": {
       "index": 11645,
       "owner_key": "JNw5r4gwhkmsCiwBZ8qou8VTaYeDvHQaL5wjgH3YhFQ",
-      "balance": 227884,
+      "balance": 309570,
       "membership_expire_on": 1707333525,
-      "next_cert_issuable_on": 1689779996,
+      "next_cert_issuable_on": 1696667822,
       "certs_received": {
         "MarieDel": 1739677820,
         "Philp": 1739691865,
@@ -207252,7 +211536,7 @@
     "K-roll": {
       "index": 10740,
       "owner_key": "JPSfJ433DPbMWuCvDZMGTrP7hgGVHaFN97pjhGCdnfJ",
-      "balance": 286220,
+      "balance": 325906,
       "membership_expire_on": 1701645486,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -207268,7 +211552,7 @@
     "Magnolia": {
       "index": 4890,
       "owner_key": "Ja6VTwQJPQfsxTnBAjc1ZGJtegGDveCD7P6uGGatD52",
-      "balance": 868303,
+      "balance": 907989,
       "membership_expire_on": 1713360091,
       "next_cert_issuable_on": 1639222836,
       "certs_received": {
@@ -207282,12 +211566,13 @@
     "Tito": {
       "index": 5787,
       "owner_key": "JfrLX8Gf2bHBjXS6oz5sWgaR8NwLrDBvVpvGKDLgAMg",
-      "balance": 291241,
+      "balance": 330927,
       "membership_expire_on": 1715598541,
-      "next_cert_issuable_on": 1693229580,
+      "next_cert_issuable_on": 1694091148,
       "certs_received": {
         "Mattice": 1716826101,
         "JanineBoitel": 1745477743,
+        "Marianb": 1757032506,
         "Diablottin01": 1735796016,
         "Mam": 1746732483,
         "Ninou01": 1700721793,
@@ -207312,9 +211597,9 @@
     "AdeT": {
       "index": 12525,
       "owner_key": "JgZictAYmqxSfMtDXXaTSUa5zjU4nQ4zMFday98PbyK",
-      "balance": 120932,
+      "balance": 160618,
       "membership_expire_on": 1713221017,
-      "next_cert_issuable_on": 1689662976,
+      "next_cert_issuable_on": 1693995555,
       "certs_received": {
         "Hernest": 1745013129,
         "AlphaCentauri": 1747953802,
@@ -207329,14 +211614,14 @@
     "BrigitteBaron": {
       "index": 5341,
       "owner_key": "JhLZmHkT8R2kkMjEvueBD8aARkLSmdhZE5BCH1i7vNR",
-      "balance": 676393,
+      "balance": 716079,
       "membership_expire_on": 1714434313,
-      "next_cert_issuable_on": 1692714995,
+      "next_cert_issuable_on": 1694498571,
       "certs_received": {
         "Crystal": 1702016360,
         "Salya": 1718098512,
         "Marieleone": 1699178740,
-        "ASHTARA": 1694631351,
+        "ASHTARA": 1757797132,
         "Isabohin": 1741998874,
         "EveB": 1709328608,
         "Omkara": 1747925586,
@@ -207349,7 +211634,7 @@
     "MLDevant": {
       "index": 8255,
       "owner_key": "JhQ7NwrRnN2w9cqChw1Li2bj7pSPnbchqe8jpFqLwPX",
-      "balance": 490195,
+      "balance": 529881,
       "membership_expire_on": 1711062029,
       "next_cert_issuable_on": 1659782684,
       "certs_received": {
@@ -207361,6 +211646,20 @@
         "gedeon26": 1716815750
       }
     },
+    "Miloute": {
+      "index": 13575,
+      "owner_key": "JkNGV5RMHeRjuxCkFdHw34JajGXHMB1fh3ds1XAem89",
+      "balance": 33666,
+      "membership_expire_on": 1725891330,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "gimo": 1757474273,
+        "Gigimit57": 1757721470,
+        "Athom": 1757643591,
+        "Petitlutin": 1757465951,
+        "SylvainFleury": 1757888003
+      }
+    },
     "alberto_wabisabi": {
       "index": 9423,
       "owner_key": "Jy94hASwduwQBA3xHR351zrTU1Lt1F6uUatVKJa36ry",
@@ -207382,7 +211681,7 @@
     "FernDeFougeres": {
       "index": 3899,
       "owner_key": "K66QRvCQNUvYgbPF5D1v72sPKSus4KweERemDrPeHzb",
-      "balance": 318728,
+      "balance": 358414,
       "membership_expire_on": 1710856526,
       "next_cert_issuable_on": 1680007267,
       "certs_received": {
@@ -207398,7 +211697,7 @@
     "Beegree": {
       "index": 8686,
       "owner_key": "KF5Ng1Z984dTw9Bo8GmLcitrTCecnj8FpgRGr2zVawV",
-      "balance": 1100665,
+      "balance": 1140351,
       "membership_expire_on": 1712776462,
       "next_cert_issuable_on": 1681291082,
       "certs_received": {
@@ -207414,9 +211713,9 @@
     "Janne": {
       "index": 10434,
       "owner_key": "KUJ6y8YZLb2Cn8j9aDBcN7dtPXw7cawBr6qmvLqcR2f",
-      "balance": 304841,
+      "balance": 344527,
       "membership_expire_on": 1700004128,
-      "next_cert_issuable_on": 1687444983,
+      "next_cert_issuable_on": 1694512457,
       "certs_received": {
         "Mianne": 1731562073,
         "DomiNihant": 1741154896,
@@ -207436,15 +211735,13 @@
       "owner_key": "KbVQGPxQW55GLcMVkc8e54WZJTjn7S9Y1TZXfn2dRpP",
       "balance": 439352,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631795318,
-      "certs_received": {
-        "PiNguyen": 1694144866
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "Amelmag89": {
       "index": 5987,
       "owner_key": "KdG99wkrtCmQcvJex4pmsbLRenhKrDbjmMZGdzTFPDt",
-      "balance": 734959,
+      "balance": 774645,
       "membership_expire_on": 1719851947,
       "next_cert_issuable_on": 1688366830,
       "certs_received": {
@@ -207456,16 +211753,14 @@
         "FreedomExpansion": 1731695092,
         "fred": 1698982745,
         "s00999": 1698981384,
-        "toutoune2189": 1695774145,
         "Mia": 1751410923,
-        "Berenysse": 1738089593,
-        "Sebeq33": 1696536586
+        "Berenysse": 1738089593
       }
     },
     "LORENZO2A": {
       "index": 10305,
       "owner_key": "Kjhv1sydDYP7dVtPviCKzDQfuguvhMKUiSsNJALi4U3",
-      "balance": 311754,
+      "balance": 351440,
       "membership_expire_on": 1699311897,
       "next_cert_issuable_on": 1669337663,
       "certs_received": {
@@ -207479,12 +211774,11 @@
     "isanaturo07": {
       "index": 938,
       "owner_key": "KkEwMynewT54FjJyKBXjcuEeHhwGVk1ua6LvaQK7Zph",
-      "balance": 2068205,
+      "balance": 2107891,
       "membership_expire_on": 1698613188,
       "next_cert_issuable_on": 1649409671,
       "certs_received": {
         "AnneB": 1736539913,
-        "Damien": 1695089417,
         "anouchka": 1707012787,
         "DavidB": 1702147965,
         "Stephio": 1755909346,
@@ -207497,7 +211791,7 @@
     "traitdunion": {
       "index": 11897,
       "owner_key": "Kkoz8GZpCrDiuUwttEfcdLPiMHTjYh9vvgUZg79Ex8R",
-      "balance": 188910,
+      "balance": 228596,
       "membership_expire_on": 1707142973,
       "next_cert_issuable_on": 1678414648,
       "certs_received": {
@@ -207514,25 +211808,23 @@
     "S-H": {
       "index": 5650,
       "owner_key": "KmD1HiSVPWVyLw2WcXXHjhVwLvhvZZNfn92ShHmcCsh",
-      "balance": 607041,
-      "membership_expire_on": 1717553496,
+      "balance": 622013,
+      "membership_expire_on": 1728064456,
       "next_cert_issuable_on": 1658738370,
       "certs_received": {
         "ClaireAzur": 1715219006,
-        "Tchois": 1694290999,
-        "Delfe": 1694581923,
-        "FaridaB": 1694664035,
-        "pfouque": 1694559946,
-        "Tontonmika": 1694291771,
+        "Chiara07": 1759626322,
+        "pfouque": 1756881662,
+        "Verdurette06": 1759623579,
         "Edith2213": 1726700676
       }
     },
     "Merlindoc": {
       "index": 12579,
       "owner_key": "KqCZ5xD2EcpTotwNxjtxcxvZZ4HRRtHmfTUnNJRWbvV",
-      "balance": 118568,
+      "balance": 106254,
       "membership_expire_on": 1714855625,
-      "next_cert_issuable_on": 1691918844,
+      "next_cert_issuable_on": 1695104140,
       "certs_received": {
         "fredanne": 1744431107,
         "Tidus": 1746216892,
@@ -207568,7 +211860,7 @@
     "stephanoel": {
       "index": 3133,
       "owner_key": "KxyNK1k55PEA8eBjX1K4dLJr35gC2dwMwNFPHwvZFH4",
-      "balance": 152974,
+      "balance": 64214,
       "membership_expire_on": 1717554769,
       "next_cert_issuable_on": 1693205976,
       "certs_received": {
@@ -207576,19 +211868,23 @@
         "SandyMenegazzi": 1743169770,
         "MAZUZA": 1727908937,
         "Anne": 1709190066,
+        "catrelax11": 1756249176,
         "Gabriel": 1709341354,
         "Coidzikow": 1698211348,
+        "Yvespierre": 1756880526,
         "Marieclaude": 1749252265,
         "EvaLM": 1702946243,
         "Zabou": 1714454303,
         "Mhjo": 1743236329,
         "Ofildevie": 1702931671,
         "Lapprentissage": 1748148015,
+        "marieor": 1758420591,
         "Stef": 1752462976,
         "ThomasBourdon": 1712428505,
         "LaurenceDavid": 1701563523,
         "NadineGS": 1748708643,
         "TerrasFranck": 1736757529,
+        "GeraldineGarrigues": 1758690475,
         "Licorne6": 1699849109,
         "Dolfine": 1702444715,
         "Krikri": 1701768305,
@@ -207654,15 +211950,16 @@
     "CoralieROI": {
       "index": 13042,
       "owner_key": "LGq6yD8ouXPUBLK7jdrGDnf6KUMKjxLuSWoDMKE8E8y",
-      "balance": 149150,
+      "balance": 180472,
       "membership_expire_on": 1719351530,
-      "next_cert_issuable_on": 1690392569,
+      "next_cert_issuable_on": 1694532742,
       "certs_received": {
         "Mika90": 1750911468,
         "Hippolytethomas": 1754245105,
         "Abalone": 1756238824,
         "Stephmaya": 1750910806,
         "Mattraw": 1750909812,
+        "Sol-Eric": 1757813813,
         "LePhoenix70": 1750912184,
         "Anelyse": 1750917426
       }
@@ -207674,14 +211971,13 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1655889759,
       "certs_received": {
-        "KM974": 1694647686,
         "EmiAp974": 1719670665
       }
     },
     "Somano": {
       "index": 7329,
       "owner_key": "LRWwuByJXZiUPbodD2nTzkqHv6iEjtExVBigipKmP91",
-      "balance": 506862,
+      "balance": 546548,
       "membership_expire_on": 1724872678,
       "next_cert_issuable_on": 1667382742,
       "certs_received": {
@@ -207699,7 +211995,7 @@
     "Cinnabella": {
       "index": 10845,
       "owner_key": "LTZdCAbjagaUW46aX2rp6yuQuiPM41Q1EPVueXZ6EjH",
-      "balance": 279807,
+      "balance": 319493,
       "membership_expire_on": 1702505756,
       "next_cert_issuable_on": 1672219479,
       "certs_received": {
@@ -207746,7 +212042,7 @@
     "shero": {
       "index": 4655,
       "owner_key": "LggxQMajad3dUwbmRE27ywZxiehGhDYA2Sfn88Q37sr",
-      "balance": 929191,
+      "balance": 968877,
       "membership_expire_on": 1710897124,
       "next_cert_issuable_on": 1672151144,
       "certs_received": {
@@ -207760,7 +212056,7 @@
     "paulnoixlite": {
       "index": 11330,
       "owner_key": "LijdQRccJhUdbmXMDD2CvDRQdKFG4WPdisQx4DsV5Qg",
-      "balance": 240511,
+      "balance": 280197,
       "membership_expire_on": 1700849038,
       "next_cert_issuable_on": 1676875472,
       "certs_received": {
@@ -207774,7 +212070,7 @@
     "Paypay": {
       "index": 1174,
       "owner_key": "LkR7NRrzDyVV5iKLpp4EgsBvbDTCfSLR3wgohj8KQZd",
-      "balance": 1466449,
+      "balance": 1506135,
       "membership_expire_on": 1708608754,
       "next_cert_issuable_on": 1664871435,
       "certs_received": {
@@ -207789,7 +212085,7 @@
     "miguelflaccus": {
       "index": 11099,
       "owner_key": "Ln7rRJLQTXgwWJyhja5b18DtUvm1T1H4cQ8ddvNU99d",
-      "balance": 110768,
+      "balance": 114154,
       "membership_expire_on": 1703983399,
       "next_cert_issuable_on": 1683309918,
       "certs_received": {
@@ -207840,7 +212136,7 @@
     "Marylou": {
       "index": 6003,
       "owner_key": "MDDMTj2HJuEERqTf1j7WgJY2JZkLYgCDS65P31Z4v2c",
-      "balance": 869979,
+      "balance": 909665,
       "membership_expire_on": 1720569663,
       "next_cert_issuable_on": 1663521590,
       "certs_received": {
@@ -207861,7 +212157,7 @@
     "Karukera": {
       "index": 8173,
       "owner_key": "MJBpK9pcq4u8RAwPt6LUkED4eZiM66aVA8LoH98LDqB",
-      "balance": 498501,
+      "balance": 538187,
       "membership_expire_on": 1711053719,
       "next_cert_issuable_on": 1692881897,
       "certs_received": {
@@ -207898,7 +212194,7 @@
     "BruBraveLez": {
       "index": 8521,
       "owner_key": "MT5m5idBhUWu9gjhZDwaaueaFk7cHFDh1A4j7tczoSa",
-      "balance": 1009125,
+      "balance": 1033811,
       "membership_expire_on": 1714323774,
       "next_cert_issuable_on": 1692525980,
       "certs_received": {
@@ -207908,6 +212204,7 @@
         "Meg": 1731181925,
         "MartaNinYa": 1732852772,
         "JuanCapitan": 1718483914,
+        "EstefaniaLopez": 1756682666,
         "Sonya": 1740596854,
         "AlGabal": 1741312150,
         "C13GACHET": 1718524153,
@@ -207947,7 +212244,7 @@
     "AuroreKikine": {
       "index": 5844,
       "owner_key": "Mfosoxvs71C6z5JTD3cHN2FJ6hPCRimxkYFyX14iZNK",
-      "balance": 465526,
+      "balance": 505212,
       "membership_expire_on": 1715533487,
       "next_cert_issuable_on": 1671237606,
       "certs_received": {
@@ -207968,7 +212265,6 @@
         "BsWodan": 1719962978,
         "Hebou": 1727494565,
         "manguitou": 1726679785,
-        "Falbala": 1693808621,
         "PierrePierreR": 1736827031,
         "Delf": 1720042734,
         "Stefi12": 1719893840,
@@ -207979,7 +212275,6 @@
         "Bde": 1728663363,
         "Claire": 1728974093,
         "Freti73": 1727718420,
-        "obelix": 1693809469,
         "Natalia12": 1724520011,
         "Carolonsdonc": 1728962442,
         "AntoineZaccaria": 1730053033,
@@ -207989,15 +212284,15 @@
     "NicolasBriet": {
       "index": 1329,
       "owner_key": "MhQBxpP4jm2rogqJh4Tz66uA9y8PbCJBawt3y2crAdy",
-      "balance": 1550408,
-      "membership_expire_on": 1697290254,
-      "next_cert_issuable_on": 1693202619,
+      "balance": 1590094,
+      "membership_expire_on": 1727188664,
+      "next_cert_issuable_on": 1695703064,
       "certs_received": {
         "Gossein": 1756357580,
-        "Alcidejet": 1696728813,
         "thibat": 1741136877,
         "Alter2021_83": 1699559065,
         "CharlesAbecassis": 1731345308,
+        "CatPMt": 1758562403,
         "JohnBzz": 1725410122,
         "ChristianMichelChampon": 1730224345,
         "chcesetti": 1751845215,
@@ -208030,9 +212325,9 @@
     "Guillaume_Aimery_Roy": {
       "index": 9928,
       "owner_key": "Mt4ZE1cMEgRsa2WUExLe3DNwk8tg5h2sAtAx8iTMGTU",
-      "balance": 333406,
-      "membership_expire_on": 1696003559,
-      "next_cert_issuable_on": 1692278144,
+      "balance": 373092,
+      "membership_expire_on": 1727449409,
+      "next_cert_issuable_on": 1695964185,
       "certs_received": {
         "EveC": 1727581685,
         "Pashi": 1753734253,
@@ -208045,7 +212340,7 @@
     "GuyLux": {
       "index": 11369,
       "owner_key": "Mx3vVrzfMo7azEHW6zrYvqNnobTD8PUuHgHnQoSz47P",
-      "balance": 223711,
+      "balance": 263397,
       "membership_expire_on": 1701193964,
       "next_cert_issuable_on": 1692675827,
       "certs_received": {
@@ -208078,9 +212373,9 @@
     "Martienne": {
       "index": 6686,
       "owner_key": "NJoHY3nEpYczJVCEVizPmsuoUJoBbBzsA8Aiqvouk9e",
-      "balance": 139795,
+      "balance": 265081,
       "membership_expire_on": 1715791962,
-      "next_cert_issuable_on": 1692703042,
+      "next_cert_issuable_on": 1694874663,
       "certs_received": {
         "Voyance51Paula": 1749834039,
         "MarineDR": 1724425731,
@@ -208121,6 +212416,7 @@
         "Sylvania51": 1711503271,
         "BernadetteMillefeuille": 1721864708,
         "EleitoChris": 1726375959,
+        "Audr3y": 1757295280,
         "AngeliqueCharton": 1736148453,
         "TITALIViv": 1731456253,
         "CatherineLF": 1732219596,
@@ -208135,6 +212431,7 @@
         "SylvieSpielmann": 1740431953,
         "Jean-Phi": 1728785943,
         "Nono51": 1723778885,
+        "Nadsoljoy": 1759203588,
         "AlineMARCINKOWSKI": 1726770730,
         "Issudun": 1744694364,
         "LudovicMJC": 1733025919
@@ -208145,10 +212442,8 @@
       "owner_key": "NM8VJheXJzzYoGSYKcfCTrdQegf6iaCMu82k23YGuP7",
       "balance": 686121,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1631707530,
-      "certs_received": {
-        "melanie_zen974": 1696013178
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "BSE": {
       "index": 2123,
@@ -208161,7 +212456,7 @@
     "IsaPresta": {
       "index": 9910,
       "owner_key": "NSZPnzHsnGgVBBwhHPUbTnnNvhwHHCtQPYC6cMmfUFM",
-      "balance": 404365,
+      "balance": 444051,
       "membership_expire_on": 1696984432,
       "next_cert_issuable_on": 1681989861,
       "certs_received": {
@@ -208175,14 +212470,15 @@
     "Phenix": {
       "index": 10213,
       "owner_key": "NVGVsuSfMEDukjKuoJ4BvjoKCaZrmKS74E7KqC84CwC",
-      "balance": 186204,
-      "membership_expire_on": 1698691412,
-      "next_cert_issuable_on": 1693229273,
+      "balance": 192714,
+      "membership_expire_on": 1725385053,
+      "next_cert_issuable_on": 1696095037,
       "certs_received": {
         "Avalon": 1730751826,
         "PEB": 1730890958,
         "Gioelina": 1730762634,
         "Vince": 1747673731,
+        "Ashtam": 1756968371,
         "MARIE-PIERRE": 1730855008,
         "ChantAloha": 1730734238,
         "Petfa": 1734981863,
@@ -208204,7 +212500,7 @@
     "LutineJoyeuse": {
       "index": 10971,
       "owner_key": "NcN216mTTZFGEHvRExY6NhvQ7sVjRrVF1S15oN6uAK6",
-      "balance": 235635,
+      "balance": 275321,
       "membership_expire_on": 1703271037,
       "next_cert_issuable_on": 1684199267,
       "certs_received": {
@@ -208223,25 +212519,25 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1637054750,
       "certs_received": {
-        "TaaniTheophile": 1695839432,
         "elo53die": 1713388867,
         "AlineLarvet": 1715397775,
-        "PatrickGilles": 1696095808,
         "Beluganne": 1709285007
       }
     },
     "Xabikyo": {
       "index": 12985,
       "owner_key": "NkQjd5pQG3KQ4K4xeDkcivzhhhYWMKaiAiovizxdVvv",
-      "balance": 83074,
+      "balance": 52290,
       "membership_expire_on": 1716119321,
-      "next_cert_issuable_on": 1693186288,
+      "next_cert_issuable_on": 1696139647,
       "certs_received": {
         "Cordeliaze": 1750738952,
         "TxeRoki": 1750732025,
         "Lolito": 1750731662,
         "MonRezola": 1750738588,
+        "Kima": 1758611489,
         "JosunePP": 1751133472,
+        "Noxtan": 1757016241,
         "IbanNikolai": 1750738952
       }
     },
@@ -208256,7 +212552,7 @@
     "Arnaud111": {
       "index": 10343,
       "owner_key": "PGBrnrSZYDquHe8t3LfJQYo3yBGXsiRyENpMnxCAixr",
-      "balance": 296636,
+      "balance": 336322,
       "membership_expire_on": 1698181340,
       "next_cert_issuable_on": 1690865529,
       "certs_received": {
@@ -208272,7 +212568,7 @@
     "Louise": {
       "index": 10420,
       "owner_key": "PVCRaFrWQ9MHPoCxnqfKMpLuuNcFPw6cnfn6uQp9di9",
-      "balance": 349941,
+      "balance": 389627,
       "membership_expire_on": 1699905167,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -208288,7 +212584,7 @@
     "TheBestWorld": {
       "index": 9854,
       "owner_key": "PaeMi9fPkRJe5trSVQmHKcB5YELUWq51RKGQPFem8yc",
-      "balance": 334201,
+      "balance": 373887,
       "membership_expire_on": 1723555074,
       "next_cert_issuable_on": 1692069893,
       "certs_received": {
@@ -208296,15 +212592,16 @@
         "PhilAngel": 1728022565,
         "LukaKi": 1728021591,
         "AlphaCentauri": 1728022904,
+        "Lulanature": 1757458032,
         "Petfa": 1726986358
       }
     },
     "BRAHMAMAYA": {
       "index": 8253,
       "owner_key": "Pd8p2ihEKAKcQdN5p8zmzjbH2n4XLJvyUBERPo9tcT9",
-      "balance": 459395,
+      "balance": 524081,
       "membership_expire_on": 1709036069,
-      "next_cert_issuable_on": 1678441863,
+      "next_cert_issuable_on": 1695298908,
       "certs_received": {
         "Ainat255": 1715583366,
         "THORGAL1968": 1726899970,
@@ -208322,6 +212619,7 @@
         "YOSOYLUZ": 1715995277,
         "deLouvignies": 1726818872,
         "Atman": 1728174818,
+        "tereseta": 1758065394,
         "ElenaMavida": 1715749472,
         "SurfinMaya": 1715799878,
         "Isalanzarote": 1729626742,
@@ -208330,10 +212628,24 @@
         "loreak": 1726802779
       }
     },
+    "Zacktarus": {
+      "index": 13690,
+      "owner_key": "Pffqb58ehDjfJuU3yYmxsiHrGfb21tWmo2GxjthUdmh",
+      "balance": 8624,
+      "membership_expire_on": 1725641001,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Niranjana": 1759177258,
+        "Birby7188": 1759170752,
+        "Plume": 1759026462,
+        "Jadom": 1757225901,
+        "Cobra1974": 1759170486
+      }
+    },
     "EVAF": {
       "index": 10735,
       "owner_key": "PgGF9SeTfdbFi6BfsyipTogZrWngyKMNjDkBMhcGaxU",
-      "balance": 285220,
+      "balance": 324906,
       "membership_expire_on": 1701618769,
       "next_cert_issuable_on": 1683541034,
       "certs_received": {
@@ -208350,17 +212662,15 @@
     "Sebeq33": {
       "index": 4511,
       "owner_key": "Pk9U7ec36vdYYgNqSm1PAat2hSg1q2MDQ3mkSdtRjV9",
-      "balance": 1004348,
+      "balance": 1044034,
       "membership_expire_on": 1718942186,
       "next_cert_issuable_on": 1688704575,
       "certs_received": {
         "woxok": 1708496465,
         "CharlesAbecassis": 1731345308,
-        "Nikos": 1695861924,
         "EveC": 1737135205,
         "sisyphe": 1742597918,
-        "ThibaudLibre": 1712170312,
-        "Julie": 1695855266
+        "ThibaudLibre": 1712170312
       }
     },
     "ANALATERRE": {
@@ -208378,7 +212688,7 @@
     "Barbiparis3": {
       "index": 7597,
       "owner_key": "Q2H2zFJRpzj7BG55RLPDgK7x1m2LLzNLaRnAgoGbx2g",
-      "balance": 624245,
+      "balance": 617531,
       "membership_expire_on": 1709771641,
       "next_cert_issuable_on": 1670590816,
       "certs_received": {
@@ -208402,7 +212712,7 @@
     "Tara3": {
       "index": 12591,
       "owner_key": "Q95b5SLNaoNSLhSP7tDbem4xF5rhpQ99cHqH7Na8rvh",
-      "balance": 154500,
+      "balance": 194186,
       "membership_expire_on": 1715090289,
       "next_cert_issuable_on": 1685160030,
       "certs_received": {
@@ -208434,19 +212744,17 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1669659359,
       "certs_received": {
-        "Milan": 1696118053,
         "Hades": 1698470883,
         "OlivierLa": 1735784610,
         "Coidzikow": 1698212186,
         "SabineIsambert": 1698600680,
-        "DidierPapillon": 1718223316,
-        "Leticia": 1696116942
+        "DidierPapillon": 1718223316
       }
     },
     "CILCEE": {
       "index": 11457,
       "owner_key": "QMTUgMpFvBJ1Erv25TtqMDZMkEqqp7ifescWZVFJe7L",
-      "balance": 154798,
+      "balance": 189484,
       "membership_expire_on": 1706272874,
       "next_cert_issuable_on": 1690873459,
       "certs_received": {
@@ -208455,6 +212763,7 @@
         "ThomasFilsduVent": 1738542118,
         "CaroleM971": 1738499993,
         "DavidMontpellier": 1751700579,
+        "Karinette": 1759316913,
         "Mcm2": 1737973450,
         "Brig": 1738562900
       }
@@ -208462,9 +212771,9 @@
     "lisou": {
       "index": 6172,
       "owner_key": "QTFeD2EJ1hfzrohcMofXPyiGKbbPeFNeF4Cjjrw8Jdn",
-      "balance": 397147,
+      "balance": 436833,
       "membership_expire_on": 1699725155,
-      "next_cert_issuable_on": 1689337737,
+      "next_cert_issuable_on": 1695040246,
       "certs_received": {
         "Yukimarou": 1711433012,
         "Caline": 1750697773,
@@ -208472,6 +212781,7 @@
         "Soa": 1741810213,
         "ThierryLacaze": 1700461357,
         "Alundra": 1750741672,
+        "PesentiOlivier": 1759249094,
         "Phinou": 1700615423,
         "OlivierDubigeon": 1741816562,
         "MelliaGaia": 1750738952,
@@ -208493,7 +212803,7 @@
     "CedricSQ": {
       "index": 9063,
       "owner_key": "QbRBnLrQG2kFubMPGCQEffNc6R41NGsYygMWjoD6e6M",
-      "balance": 84458,
+      "balance": 135644,
       "membership_expire_on": 1717116725,
       "next_cert_issuable_on": 1692177026,
       "certs_received": {
@@ -208530,7 +212840,7 @@
     "GolnazBehrouznia": {
       "index": 1497,
       "owner_key": "QbZ5MpEFK8zNZ1Sqo2n3hK1GMpGhc5CBfXxtQVGxZgn",
-      "balance": 1732622,
+      "balance": 1772308,
       "membership_expire_on": 1698941738,
       "next_cert_issuable_on": 1667822526,
       "certs_received": {
@@ -208547,7 +212857,7 @@
       "index": 582,
       "owner_key": "QcwFU8YbZRtvLxLGHqznmEbGFvU9YUETEQc6cFmRRg8",
       "balance": 1851145,
-      "membership_expire_on": 0,
+      "membership_expire_on": 1728238409,
       "next_cert_issuable_on": 1661998037,
       "certs_received": {
         "EveJOURDIN": 1723942513,
@@ -208560,7 +212870,7 @@
     "AnaGoncalves": {
       "index": 12175,
       "owner_key": "QfxQ3kVYiVWdc3tso44XeD3rtFqz2P7mcnKiN2KUH5k",
-      "balance": 167272,
+      "balance": 206958,
       "membership_expire_on": 1711217941,
       "next_cert_issuable_on": 1680662306,
       "certs_received": {
@@ -208583,7 +212893,7 @@
     "JoseBP": {
       "index": 8365,
       "owner_key": "QjhtvahBdNLXgoDrN93H2m69vVkg8GwKwr4W9HQUXMc",
-      "balance": 11360,
+      "balance": 61046,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1656868972,
       "certs_received": {
@@ -208597,7 +212907,7 @@
     "mancity08": {
       "index": 3395,
       "owner_key": "Qnw6JjUi4hzaa6mXxF3wyxUikF2niczpaEcREkgPb47",
-      "balance": 1038295,
+      "balance": 1077981,
       "membership_expire_on": 1720517752,
       "next_cert_issuable_on": 1689032152,
       "certs_received": {
@@ -208646,6 +212956,20 @@
       "next_cert_issuable_on": 1634225957,
       "certs_received": {}
     },
+    "Aster": {
+      "index": 13713,
+      "owner_key": "QxbSS9fe449gVYCjP59CccqH8tb3PfzZ4e4P12JQDHp",
+      "balance": 21468,
+      "membership_expire_on": 1727721389,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "lamouette": 1759284520,
+        "diamantbleu": 1759287111,
+        "sylsi": 1759337053,
+        "SamueLL": 1759285453,
+        "vallouli": 1759286470
+      }
+    },
     "ErwanPenon": {
       "index": 4192,
       "owner_key": "R8kk1Y5KQk5tAaVSzCP5dYGj239VkGpgXGuxc93EMLf",
@@ -208685,7 +213009,7 @@
     "philippe007": {
       "index": 11496,
       "owner_key": "RMpPeAVQ2dfphgpQxuBKUgX68WHEXZm6fQZwAnpbR8s",
-      "balance": 227580,
+      "balance": 267266,
       "membership_expire_on": 1706912881,
       "next_cert_issuable_on": 1676373518,
       "certs_received": {
@@ -208699,9 +213023,9 @@
     "Caromarina": {
       "index": 13049,
       "owner_key": "RPbWw3GAz9pAhNPKW9fhhnJMJYdzQUZEfycmpF7EDu1",
-      "balance": 551188,
+      "balance": 590874,
       "membership_expire_on": 1719836237,
-      "next_cert_issuable_on": 1692885018,
+      "next_cert_issuable_on": 1693813392,
       "certs_received": {
         "jeanadam": 1750296124,
         "Jobenz": 1754788269,
@@ -208731,14 +213055,16 @@
     "Tamaya": {
       "index": 8788,
       "owner_key": "RWjLhyvkNPTLmZi6T7sexEbgEc9sU3EMhigdKabNKHg",
-      "balance": 805407,
-      "membership_expire_on": 0,
+      "balance": 913953,
+      "membership_expire_on": 1727629336,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "anaka": 1720042223,
         "IrisBleu": 1719882600,
+        "ELEOTIE": 1759200699,
         "Pac": 1719881652,
         "mikdos31": 1719969128,
+        "Chanchan": 1759198318,
         "colibri": 1719881652,
         "Loutre": 1719881443
       }
@@ -208784,30 +213110,27 @@
     "AlexandraBertrand": {
       "index": 5742,
       "owner_key": "Rc1MoBpuSJhj3hKWfW9q6seGghoVk3dyiX1XR13JgEw",
-      "balance": 432629,
+      "balance": 472315,
       "membership_expire_on": 1720987957,
-      "next_cert_issuable_on": 1678623296,
+      "next_cert_issuable_on": 1693658902,
       "certs_received": {
         "NopamasYC": 1750376457,
-        "SandRA": 1695612674,
+        "Toutvabien": 1756953418,
+        "SandRA": 1756687929,
         "Benedicte38": 1725416853,
-        "FlorentLucien": 1695678093,
         "MioPalmon988": 1715822731,
-        "Ealia": 1695590477,
-        "Guillaumebodhi": 1695419441,
-        "Monaco73": 1695348696,
         "AstridG": 1726289993,
-        "LaurentM": 1695427818
+        "LEL": 1757953861,
+        "LaurentM": 1756700876
       }
     },
     "zabel": {
       "index": 2775,
       "owner_key": "RfBgvaWkaycMrUyYLw2gATzkqpbpZq47MUtSrqLkhV8",
-      "balance": 1128832,
-      "membership_expire_on": 1694898629,
+      "balance": 1145920,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1688368140,
       "certs_received": {
-        "OlivierMaurice": 1694632248,
         "ElioIG": 1701224975,
         "LaurenceIG": 1729487584,
         "Jean-ClaudeG": 1733819518,
@@ -208819,9 +213142,9 @@
     "ChristineWilloth26": {
       "index": 3375,
       "owner_key": "RnhoVQ6yDpM6D4Av8edRHsDKjGbpeXnRKiCcR4Dmb7H",
-      "balance": 856773,
+      "balance": 871709,
       "membership_expire_on": 1719082457,
-      "next_cert_issuable_on": 1692748872,
+      "next_cert_issuable_on": 1695524970,
       "certs_received": {
         "Katiecat": 1741206862,
         "Flocon": 1726987830,
@@ -208842,7 +213165,6 @@
         "Supralumen": 1734298345,
         "Geronymo88": 1728237258,
         "Miaou": 1747898981,
-        "lumiere34": 1696446004,
         "ChaGaia5926": 1728786387,
         "lilithdu34": 1718378512,
         "lumi": 1705509647,
@@ -208851,7 +213173,6 @@
         "SolennLG": 1703205902,
         "hypericum": 1702674354,
         "Lama": 1753155304,
-        "MoniqueChaplie": 1693765276,
         "OLDBLACK84": 1725412201,
         "AnneT": 1725876668
       }
@@ -208859,7 +213180,7 @@
     "Gaya": {
       "index": 11477,
       "owner_key": "RpZL2SQ4qjXeS58vJc2tPybRyegZisW8eLLrdpwLbwN",
-      "balance": 215980,
+      "balance": 239366,
       "membership_expire_on": 1707079986,
       "next_cert_issuable_on": 1690939704,
       "certs_received": {
@@ -208873,8 +213194,8 @@
     "marietheodore": {
       "index": 10442,
       "owner_key": "RtFnjD3M9r94x14Ev9khqfxL2GyNmNqGS4RmHnfDQZQ",
-      "balance": 315223,
-      "membership_expire_on": 1698069689,
+      "balance": 357109,
+      "membership_expire_on": 1726889883,
       "next_cert_issuable_on": 1681207442,
       "certs_received": {
         "LhamoKarine": 1730656466,
@@ -208891,9 +213212,9 @@
     "Numerus47": {
       "index": 6945,
       "owner_key": "RtURa5GGvdbwo5U3dJ9918prKQCjPjfXkcbXN9dSQFY",
-      "balance": 522990,
+      "balance": 542676,
       "membership_expire_on": 1707963764,
-      "next_cert_issuable_on": 1693131273,
+      "next_cert_issuable_on": 1696749947,
       "certs_received": {
         "Robisar": 1707791643,
         "Gaelle81": 1742709710,
@@ -208904,13 +213225,15 @@
         "Misslesfleurs": 1707791643,
         "jpeupagrando": 1743780598,
         "Diessanne": 1722554591,
-        "bab3lhipster": 1707793357
+        "bab3lhipster": 1707793357,
+        "Peps": 1758258774,
+        "Jesck": 1758530451
       }
     },
     "Mago": {
       "index": 11401,
       "owner_key": "RuGw9p9yUfZzgocKQcVJSCfE6HQ8LdVMoBHKT1ioUGX",
-      "balance": 225193,
+      "balance": 264879,
       "membership_expire_on": 1706288446,
       "next_cert_issuable_on": 1682039721,
       "certs_received": {
@@ -208927,15 +213250,15 @@
     "Corinnedeshaies": {
       "index": 6071,
       "owner_key": "RucD6rkCgo8tTk2JUwiqZZWDXsp3JUVfBHy41PYora1",
-      "balance": 725979,
+      "balance": 705665,
       "membership_expire_on": 1719488733,
-      "next_cert_issuable_on": 1688199623,
+      "next_cert_issuable_on": 1696035836,
       "certs_received": {
         "Stef38": 1720640886,
         "MaryMarie": 1709785232,
         "SalinJL": 1712185379,
         "Thierrygwada": 1708140584,
-        "Fan971": 1699935250,
+        "Fan971": 1758879863,
         "JeanMichelBrisard": 1718254578,
         "Jadou97139": 1724221485,
         "Sandrak": 1721697588,
@@ -208944,7 +213267,7 @@
         "Perrine971": 1705458380,
         "Soum86": 1730171443,
         "choupi": 1715249804,
-        "JP-Rod": 1702466664,
+        "JP-Rod": 1759790118,
         "LydieEgelmont": 1731755430,
         "Jade971": 1699956757,
         "BereniceConcarneau": 1725610609,
@@ -208962,7 +213285,7 @@
         "AudreyDilant": 1723291500,
         "Cocodiesse": 1725362028,
         "VeroPointeNoire": 1706699754,
-        "Ivann971": 1699957024,
+        "Ivann971": 1755923969,
         "Brig": 1715340444,
         "Mariedelourdes": 1730202678,
         "Mimwen69": 1724391445,
@@ -208972,7 +213295,7 @@
     "brunos": {
       "index": 5229,
       "owner_key": "S2z6u7C9oVe3s9q5DF9KFbRUXfU3xkz76eLCmfiBzcq",
-      "balance": 753503,
+      "balance": 793189,
       "membership_expire_on": 1720044854,
       "next_cert_issuable_on": 1677483968,
       "certs_received": {
@@ -208989,7 +213312,7 @@
     "Axel_DL": {
       "index": 4001,
       "owner_key": "S5gxXcacvhDDGbLBSB7TAX88QfTvaDGntg6tCvWdKYg",
-      "balance": 1173725,
+      "balance": 1213411,
       "membership_expire_on": 1723962860,
       "next_cert_issuable_on": 1662016444,
       "certs_received": {
@@ -209011,7 +213334,7 @@
     "SigridCholin": {
       "index": 7698,
       "owner_key": "SCWMxbmbQ2DDr26WevWxt4f3MwEhEwutvjxGZh7EMkg",
-      "balance": 532188,
+      "balance": 571874,
       "membership_expire_on": 1711542173,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -209026,7 +213349,7 @@
     "Buggedbunny": {
       "index": 8892,
       "owner_key": "SDktRv7EVw5RaW9eYptvLfsjTqoX8NjZCnE2bdF9qNA",
-      "balance": 383647,
+      "balance": 408333,
       "membership_expire_on": 1717465991,
       "next_cert_issuable_on": 1669220964,
       "certs_received": {
@@ -209056,7 +213379,7 @@
     "SebastienDelarche": {
       "index": 8422,
       "owner_key": "SGhei1n3zZVEj9HiAsKBta1cB7KvcubjejhsRmGUfAp",
-      "balance": 781636,
+      "balance": 821322,
       "membership_expire_on": 1717338452,
       "next_cert_issuable_on": 1685852852,
       "certs_received": {
@@ -209072,7 +213395,7 @@
     "DouceSorciere": {
       "index": 10643,
       "owner_key": "SRRDwZq83zpoZmfPUHZ1J7dJNyJuYPB8nKsLELnoyYH",
-      "balance": 289515,
+      "balance": 329201,
       "membership_expire_on": 1697671181,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -209135,7 +213458,7 @@
     "NeoFlod": {
       "index": 8687,
       "owner_key": "Sv8b9h8sifhifSRhSApNUdejFfTcpDSv3qWQRmo5NwR",
-      "balance": 509114,
+      "balance": 548800,
       "membership_expire_on": 1710804935,
       "next_cert_issuable_on": 1677135454,
       "certs_received": {
@@ -209152,9 +213475,9 @@
     "VaivaG": {
       "index": 11026,
       "owner_key": "Sx3zEo7QFuNqg8goLmSzW9wK6KtJWyUTpiqTzUcsurj",
-      "balance": 176781,
+      "balance": 216467,
       "membership_expire_on": 1703698355,
-      "next_cert_issuable_on": 1683340845,
+      "next_cert_issuable_on": 1693658653,
       "certs_received": {
         "RosyRio": 1747027286,
         "Fox": 1735343394,
@@ -209203,7 +213526,7 @@
     "Lalila": {
       "index": 10798,
       "owner_key": "TghH9r5xqMbc4HEjLKou36D2wkS5uAtC4r6CcfPvaT7",
-      "balance": 268284,
+      "balance": 307970,
       "membership_expire_on": 1702163496,
       "next_cert_issuable_on": 1673251283,
       "certs_received": {
@@ -209229,7 +213552,7 @@
     "StregaBianca": {
       "index": 9295,
       "owner_key": "TnRdhKTZEci2cRTa22keXimLAGBE25qCW47oppByvK2",
-      "balance": 413263,
+      "balance": 502063,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1670593760,
       "certs_received": {
@@ -209246,7 +213569,7 @@
     "Feeange": {
       "index": 8435,
       "owner_key": "TnaWeeJn5D38kr7MWf2H3PHW96MeW2x3ZY9DyY13DLM",
-      "balance": 418788,
+      "balance": 458474,
       "membership_expire_on": 1720389068,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -209260,7 +213583,7 @@
     "Gearodin": {
       "index": 7244,
       "owner_key": "TndRnkUz9ZMYk8LVaMZU2NZ5hpQeMX5jABL38cPdN91",
-      "balance": 569227,
+      "balance": 608913,
       "membership_expire_on": 1706829493,
       "next_cert_issuable_on": 1680700522,
       "certs_received": {
@@ -209279,7 +213602,7 @@
     "MatisChancellier": {
       "index": 677,
       "owner_key": "ToHktnc6MqKsEFNhJutjjKnoTemKqTsWAtgw8EkSKMY",
-      "balance": 1923769,
+      "balance": 1963455,
       "membership_expire_on": 1713241936,
       "next_cert_issuable_on": 1689444282,
       "certs_received": {
@@ -209295,28 +213618,25 @@
     "DominiqueRoudiere": {
       "index": 1664,
       "owner_key": "ToZVT72R1sJ1WtZGwBiXrEMS4UgwHi7eUQVSDb2QMgS",
-      "balance": 946451,
+      "balance": 1086137,
       "membership_expire_on": 1714318123,
-      "next_cert_issuable_on": 1689409501,
+      "next_cert_issuable_on": 1696053270,
       "certs_received": {
         "MPO": 1730316674,
         "PhilippeGua53": 1731565433,
         "VirginieGautier": 1714347767,
-        "Princesse": 1694133596,
         "LuciaKorosiova": 1730276679,
         "Laula": 1698265748,
         "FrancoiseEpiard": 1731443662,
-        "TheodoreMACRAIGNE": 1697154672,
+        "TheodoreMACRAIGNE": 1758817638,
         "MichelLeMer": 1726384405,
         "AlainLeThomas": 1736273745,
         "yenamarre": 1724181885,
-        "TaaniTheophile": 1695839432,
         "JeandMeryMAYOPARRA": 1697153979,
         "Joddha": 1708142196,
         "EmileMACRAIGNE": 1697154672,
-        "Nomadanne": 1693984737,
         "Aurelil": 1716404167,
-        "Jean": 1700723347,
+        "Jean": 1758586100,
         "Karica": 1735006343,
         "DaroussinB": 1715580704,
         "GuillaumeSIMON": 1713383557,
@@ -209337,23 +213657,29 @@
     "ManuelSoares": {
       "index": 12571,
       "owner_key": "U3nMV1AuhACjGGjbmG2pZYAh7KHniGe7eYBFaFU6tis",
-      "balance": 116820,
+      "balance": 121506,
       "membership_expire_on": 1714002823,
-      "next_cert_issuable_on": 1693312280,
+      "next_cert_issuable_on": 1694159800,
       "certs_received": {
         "Ferpires": 1746315591,
+        "DoisLobos": 1757132164,
         "devihope": 1746416696,
         "Judit137": 1753422320,
         "anapatapouf": 1746353723,
         "Yana": 1756347159,
+        "artenomar": 1757747150,
         "Le0": 1746315591,
         "NevFreeman": 1753501295,
         "otto": 1756347159,
         "Rafael": 1756347383,
+        "DivinaC": 1757310760,
+        "catarinajunas": 1757709418,
         "StefaniaCamilla": 1748056066,
         "pedroponte": 1745560774,
+        "SaoSampaio": 1757669888,
         "Rahhui": 1746206470,
         "JorgeDraven": 1752096317,
+        "JoaoLestro": 1759390060,
         "SandraHeleno": 1746597337,
         "PenaBranca": 1756347159,
         "ElisabeteMartins": 1755749244,
@@ -209368,10 +213694,24 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "MathildeB": {
+      "index": 13671,
+      "owner_key": "UD6HCyq2qfxudunzgATa2Zm1Woj3qPKVFf8Ahpj9ZEk",
+      "balance": 32158,
+      "membership_expire_on": 1727102422,
+      "next_cert_issuable_on": 1695831082,
+      "certs_received": {
+        "AlainLebrun": 1758736018,
+        "LionLDouNIo": 1758869680,
+        "Mamarion": 1758859219,
+        "CoeurdeRigole": 1758782849,
+        "AnnickBoubounelle": 1758829459
+      }
+    },
     "riton": {
       "index": 12216,
       "owner_key": "UKSM2dWeDHQXZGAjyP2cdXVEzg7oJ6QtFbifXVDjjXR",
-      "balance": 266440,
+      "balance": 306126,
       "membership_expire_on": 1711315662,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -209401,7 +213741,7 @@
     "Gyom": {
       "index": 5962,
       "owner_key": "UTaoxv3YHYMVz2muUNL8Rk1rPFViiNswjUAUGyd35pY",
-      "balance": 379286,
+      "balance": 418972,
       "membership_expire_on": 1724157094,
       "next_cert_issuable_on": 1672908255,
       "certs_received": {
@@ -209412,6 +213752,22 @@
         "Anthony": 1698409479
       }
     },
+    "Ngilozi": {
+      "index": 13665,
+      "owner_key": "UbTmPzsbdDRGZn9MPWtFnR7e6JXXz2C3mJqJBSjLPg1",
+      "balance": 84858,
+      "membership_expire_on": 1726658725,
+      "next_cert_issuable_on": 1696307763,
+      "certs_received": {
+        "Indiana": 1758220697,
+        "Estel97430": 1759347679,
+        "bardone01": 1758220697,
+        "Clinerode": 1758480330,
+        "KatalineMOREL": 1758833397,
+        "FredericAmany974": 1758831743,
+        "Wendy97418": 1758404263
+      }
+    },
     "Sessile": {
       "index": 1745,
       "owner_key": "UdcXwnWBoweeqp8CygAa2ZdXd3Ls2ECuNVFKgUSPu8g",
@@ -209423,7 +213779,7 @@
     "Ayl1012": {
       "index": 7438,
       "owner_key": "UdnjtZCS6eJkGNe6QUzzn4kUnEWWGsgCHhFVVgxuK9s",
-      "balance": 447408,
+      "balance": 487094,
       "membership_expire_on": 1706907026,
       "next_cert_issuable_on": 1667101619,
       "certs_received": {
@@ -209448,7 +213804,7 @@
     "Pirate2rue": {
       "index": 5932,
       "owner_key": "UfmeeSrRi4XpV8qoL95uJda7cTpRhwt7XCyPhzvoTWG",
-      "balance": 516985,
+      "balance": 556671,
       "membership_expire_on": 1713409344,
       "next_cert_issuable_on": 1688357449,
       "certs_received": {
@@ -209476,20 +213832,20 @@
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1637764370,
       "certs_received": {
-        "RomanUza": 1702270255,
-        "JeromeCoste": 1694351751
+        "RomanUza": 1702270255
       }
     },
     "TheliauMercier": {
       "index": 12424,
       "owner_key": "UrJbP62xMechqdJWzhoh4WsnxhacMdCURvRNKRFVZ5w",
-      "balance": 179678,
+      "balance": 230098,
       "membership_expire_on": 1709774616,
       "next_cert_issuable_on": 1682574683,
       "certs_received": {
         "Nadege26": 1745275980,
         "MARY30": 1745377804,
         "EtK": 1745367064,
+        "Alisce": 1756933014,
         "SolineMercier": 1745276376,
         "VincentMercier": 1745198555
       }
@@ -209497,7 +213853,7 @@
     "Elodiepont80": {
       "index": 11064,
       "owner_key": "UzUh4sNCPDsnPxNp4ZWZk3q8nxH5ejDAurgdCfHjaLx",
-      "balance": 279804,
+      "balance": 319490,
       "membership_expire_on": 1702930319,
       "next_cert_issuable_on": 1674317691,
       "certs_received": {
@@ -209513,7 +213869,7 @@
     "Chtiotecel21": {
       "index": 11572,
       "owner_key": "V14AumQoD3Y4fGDUiQGd7QVrSP7UtF51TWv3orUhdeZ",
-      "balance": 267276,
+      "balance": 306962,
       "membership_expire_on": 1707748794,
       "next_cert_issuable_on": 1677405175,
       "certs_received": {
@@ -209527,7 +213883,7 @@
     "FLOr": {
       "index": 12678,
       "owner_key": "V5wDgHb8uHNtvvfZnuovYTXgqkCyiUFNJ3gG5R8b7SJ",
-      "balance": 396208,
+      "balance": 435894,
       "membership_expire_on": 1711239208,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -209541,7 +213897,7 @@
     "Issudun": {
       "index": 11818,
       "owner_key": "V98SvhUaC5zmq3M6LQnhwUQF6Ub1sHKvmHMEpYLQHUQ",
-      "balance": 215264,
+      "balance": 254950,
       "membership_expire_on": 1708988616,
       "next_cert_issuable_on": 1684226877,
       "certs_received": {
@@ -209571,7 +213927,7 @@
     "KandysZoo": {
       "index": 6449,
       "owner_key": "VFg4uM7WY4Pbwt9d3mLp7eoaDnZ1wqmFxEDg7Uvr6v3",
-      "balance": 667485,
+      "balance": 707171,
       "membership_expire_on": 1698555343,
       "next_cert_issuable_on": 1640182957,
       "certs_received": {
@@ -209586,7 +213942,7 @@
     "Mirabel": {
       "index": 11940,
       "owner_key": "VPGVTDKAFWUZecAixTZhZNpQWiMJ3mzawRS9bjsfFBu",
-      "balance": 179674,
+      "balance": 219360,
       "membership_expire_on": 1709821624,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -209609,9 +213965,9 @@
     "LudovicMJC": {
       "index": 9777,
       "owner_key": "VeScw3LagMt2B71GkE7wCMi1A3X2g35NtS5ECQCe464",
-      "balance": 440868,
+      "balance": 344322,
       "membership_expire_on": 1721054450,
-      "next_cert_issuable_on": 1693235588,
+      "next_cert_issuable_on": 1694529319,
       "certs_received": {
         "Cygogne22": 1754249015,
         "Tidus": 1736825039,
@@ -209627,6 +213983,7 @@
         "AurElieSkuld": 1742429718,
         "Sainte-Russie": 1748200916,
         "kalimheros": 1727855204,
+        "florian": 1759336739,
         "Auxance": 1747172693,
         "Migus01": 1749896322,
         "Natheidi": 1725490081,
@@ -209650,9 +214007,9 @@
     "Gclaire": {
       "index": 5760,
       "owner_key": "VrCfcSZ9M5yqAaLqaAjmhcRWWh7HBSp28vN5q6Vha5G",
-      "balance": 380971,
+      "balance": 405154,
       "membership_expire_on": 1717637190,
-      "next_cert_issuable_on": 1691514375,
+      "next_cert_issuable_on": 1694440506,
       "certs_received": {
         "kapis": 1725311682,
         "jaenyph": 1719997648,
@@ -209664,12 +214021,10 @@
         "RomainKornig": 1710640096,
         "PierreTransformant": 1715888544,
         "carmela": 1728176942,
-        "Alfybe": 1696320032,
         "THORGAL1968": 1726272211,
         "ROCIO": 1731110925,
         "Yesyes": 1720907861,
         "Solesan": 1725428601,
-        "philippe": 1696361803,
         "Cristol-Iquid": 1727036679,
         "Fleurdamour": 1720160440,
         "lumirose": 1720029062,
@@ -209687,6 +214042,7 @@
         "Moudom": 1711336653,
         "AmeSurTerre": 1707378961,
         "Falkena": 1717902705,
+        "laurencef": 1759352300,
         "Pizzawallas": 1743550748,
         "DanielVienne": 1750274516,
         "casadesam": 1707989099,
@@ -209707,7 +214063,6 @@
         "Icobonhomme": 1709004128,
         "ChristineRenier": 1724214511,
         "Avalon": 1731294037,
-        "MarcelDoppagne": 1696297970,
         "Micha99": 1739052166,
         "Chamax": 1722293312,
         "Barbatruc": 1753307338,
@@ -209716,7 +214071,6 @@
         "Golly": 1735528401,
         "PEB": 1708175629,
         "MarieBertheRanwet": 1711258964,
-        "SabrinaFrance": 1696306644,
         "wopat": 1718852054,
         "Numerosympa": 1723709022,
         "phil3455": 1712258585,
@@ -209739,8 +214093,6 @@
         "HectorTotor": 1721281812,
         "YOSOYLUZ": 1740523650,
         "lamouette": 1728198085,
-        "joji_188": 1696306946,
-        "Patappui": 1696196453,
         "s00999": 1721809948,
         "hallalla": 1755504674,
         "ROVER5537": 1723128986,
@@ -209779,13 +214131,14 @@
         "AgneSb": 1730436640,
         "loreak": 1738117533,
         "Ninon914": 1715354133,
-        "Stelzchantal": 1696355078,
+        "Stelzchantal": 1759435538,
         "Sailorcherry": 1733914018,
         "Janne": 1732167988,
         "Phenix": 1730969445,
         "Profil": 1720933937,
         "JeromeDelaigue": 1723226431,
         "MutatisMutandis": 1707621784,
+        "fania": 1756844573,
         "Ciel": 1720034293,
         "sarahkonat": 1734664195,
         "ArianeRiveros": 1704667579,
@@ -209795,7 +214148,7 @@
     "roodinux": {
       "index": 190,
       "owner_key": "VxCoqfTQRaPaiAc1Am2Z7gtbN2LaNm6RV19Ycfb8dFL",
-      "balance": 1134154,
+      "balance": 1173840,
       "membership_expire_on": 1699498297,
       "next_cert_issuable_on": 1685423788,
       "certs_received": {
@@ -209814,16 +214167,10 @@
     "Spiranne": {
       "index": 5648,
       "owner_key": "VztwCTojW8YAaJ1uWce53H4p9B3iAMrDhdxEZgy6Zoc",
-      "balance": 5000,
+      "balance": 15000,
       "membership_expire_on": 0,
-      "next_cert_issuable_on": 1632187409,
-      "certs_received": {
-        "MAZUZA": 1693810703,
-        "Carole26": 1694418877,
-        "Maminou13": 1693789003,
-        "Pizzawallas": 1693951527,
-        "Nadou": 1693633286
-      }
+      "next_cert_issuable_on": 0,
+      "certs_received": {}
     },
     "DoMi5500": {
       "index": 1744,
@@ -209844,7 +214191,7 @@
     "silviaestarreado": {
       "index": 11996,
       "owner_key": "W8JPHmz6wvKzedaKkQK4MypG5ZhM2JcQL8PWpjUiqCx",
-      "balance": 199038,
+      "balance": 301224,
       "membership_expire_on": 1710293841,
       "next_cert_issuable_on": 1691685006,
       "certs_received": {
@@ -209863,9 +214210,9 @@
     "Anthony": {
       "index": 1017,
       "owner_key": "WE5NNJxcb6rZg7aki8sv4vjgpRear4bQ7K1SiVCxkCv",
-      "balance": 1900784,
-      "membership_expire_on": 1695567647,
-      "next_cert_issuable_on": 1689048516,
+      "balance": 2116470,
+      "membership_expire_on": 1727134243,
+      "next_cert_issuable_on": 1695649775,
       "certs_received": {
         "HubuH": 1704922334,
         "Joailes38": 1707944945,
@@ -209876,7 +214223,7 @@
         "Max": 1704327268,
         "jytou": 1699396455,
         "SevCarbone": 1739393926,
-        "chronophonix": 1697359565,
+        "chronophonix": 1758879537,
         "LaurentM": 1733195261,
         "Gyom": 1698893466
       }
@@ -209884,7 +214231,7 @@
     "KarineBAILLIEU": {
       "index": 8209,
       "owner_key": "WJ4nyqw1Cw2uEPucgHWantLnVxJPeobCyT3LmXVXoPH",
-      "balance": 385399,
+      "balance": 425085,
       "membership_expire_on": 1711993770,
       "next_cert_issuable_on": 1674942099,
       "certs_received": {
@@ -209914,9 +214261,9 @@
     "PatouneM91": {
       "index": 10197,
       "owner_key": "WL6zWeoeGRPccL72TjpWSNHd2wfUgfFwKUnHMbe6BRo",
-      "balance": 378847,
-      "membership_expire_on": 1698105151,
-      "next_cert_issuable_on": 1671458709,
+      "balance": 418533,
+      "membership_expire_on": 1725639785,
+      "next_cert_issuable_on": 1694154185,
       "certs_received": {
         "Maaude09": 1730429227,
         "Seve": 1730756053,
@@ -209930,15 +214277,17 @@
     "Caro91": {
       "index": 9718,
       "owner_key": "WS7EHf3C8EjeKsgnoy4bxkWn3TUdaFyTPPzAXY8K5uh",
-      "balance": 257032,
-      "membership_expire_on": 1695853701,
-      "next_cert_issuable_on": 1668481113,
+      "balance": 266718,
+      "membership_expire_on": 1725535465,
+      "next_cert_issuable_on": 1694050170,
       "certs_received": {
         "Sylvie-Linas": 1749961847,
         "quiligus": 1727633985,
         "Maaude09": 1727416337,
         "ollo": 1727422098,
         "AgnesdArpajon": 1727584152,
+        "NadineLFA": 1757200484,
+        "Louis_Mandr2": 1757184566,
         "Jawk": 1727484738,
         "SandraC": 1727582960
       }
@@ -209976,9 +214325,9 @@
     "Marijose": {
       "index": 9844,
       "owner_key": "WjboBJ55D8kVouEYxahSNrTavgvsNgTYvH6wv7uuRZp",
-      "balance": 104615,
+      "balance": 92301,
       "membership_expire_on": 1722691676,
-      "next_cert_issuable_on": 1693036714,
+      "next_cert_issuable_on": 1693037794,
       "certs_received": {
         "sro": 1755060883,
         "Celina": 1728266669,
@@ -210008,7 +214357,7 @@
     "Uasaquipi67": {
       "index": 6943,
       "owner_key": "X62AEYjC9mKx4yYvHwAVkxjpHpYRWSWB3nPM2bmcqBg",
-      "balance": 697719,
+      "balance": 721405,
       "membership_expire_on": 1705178419,
       "next_cert_issuable_on": 1649410551,
       "certs_received": {
@@ -210025,7 +214374,7 @@
     "Lourinhacoda": {
       "index": 7229,
       "owner_key": "X7wLCuLrnWuaC8QuzdurDgUdnHxCmRoUjEurv2dJxef",
-      "balance": 508709,
+      "balance": 548395,
       "membership_expire_on": 1707344610,
       "next_cert_issuable_on": 1686898084,
       "certs_received": {
@@ -210044,9 +214393,9 @@
     "Fablap12": {
       "index": 4719,
       "owner_key": "XCtWRidjxFmUjGsEaX3bbrwDZqufTbzwGRJgSE9R24S",
-      "balance": 1083401,
-      "membership_expire_on": 1701359204,
-      "next_cert_issuable_on": 1682566082,
+      "balance": 1123087,
+      "membership_expire_on": 1728209456,
+      "next_cert_issuable_on": 1695541659,
       "certs_received": {
         "Hestia": 1728091584,
         "KIRPI": 1742585820,
@@ -210072,7 +214421,7 @@
     "CED7": {
       "index": 13341,
       "owner_key": "XJoFqm1aGawsUzy14r5knr5nzsxg4nfg8fssU3uVZgY",
-      "balance": 25996,
+      "balance": 65682,
       "membership_expire_on": 1722558638,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -210086,31 +214435,36 @@
     "IbanNikolai": {
       "index": 11176,
       "owner_key": "XK8YCKmTvZtDgKt6hWKCTWV7Q52157AYPDvNwnhaqfj",
-      "balance": 71277,
+      "balance": 54253,
       "membership_expire_on": 1704923384,
-      "next_cert_issuable_on": 1687695752,
+      "next_cert_issuable_on": 1695123900,
       "certs_received": {
         "Silvi": 1756255999,
         "COLYBRY": 1738732415,
         "TxeRoki": 1736482205,
+        "Meg": 1759039060,
+        "Sonya": 1758812528,
         "LooseGoose": 1736584758,
         "Lolito": 1736482527,
         "RoberQuim": 1736537794,
         "jirafilla": 1742164335,
+        "Jhonnier": 1758259478,
         "Gontzal": 1736483138,
         "LuFortes": 1748124773,
         "Maritxu": 1736483138,
         "HARRI7": 1739767910,
         "Ross": 1741471040,
-        "Goiztizar": 1736483463
+        "Goiztizar": 1736483463,
+        "Mikelegi": 1756886482,
+        "Xabikyo": 1756604584
       }
     },
     "Buffle": {
       "index": 10107,
       "owner_key": "XKP3aMT8eXadZPVNAT5yU2aToNLiPWm2zjLZENfSwNK",
-      "balance": 509380,
-      "membership_expire_on": 1698502745,
-      "next_cert_issuable_on": 1682572603,
+      "balance": 522066,
+      "membership_expire_on": 1726772626,
+      "next_cert_issuable_on": 1694765889,
       "certs_received": {
         "Feerique": 1747507686,
         "PascalePoelman": 1730065815,
@@ -210124,7 +214478,7 @@
     "minei": {
       "index": 6725,
       "owner_key": "XTGiNwn83VW8cqMkT2mWyJnBvUcRNyqaSYhmKf3be5Q",
-      "balance": 471057,
+      "balance": 510743,
       "membership_expire_on": 1699462535,
       "next_cert_issuable_on": 1688738089,
       "certs_received": {
@@ -210148,7 +214502,7 @@
     "Liberta": {
       "index": 10933,
       "owner_key": "XiLcZBNNZCZ4d1s9qwTsfCYtEdnvP3qdDC1pFUHfjaR",
-      "balance": 271453,
+      "balance": 311139,
       "membership_expire_on": 1703029705,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -210176,7 +214530,7 @@
     "SolKolibri": {
       "index": 11247,
       "owner_key": "Y5spCganntL4aexYJBs1f4jHbFRGgaRi69CSUVjvBMq",
-      "balance": 319267,
+      "balance": 368103,
       "membership_expire_on": 1705421810,
       "next_cert_issuable_on": 1688746629,
       "certs_received": {
@@ -210200,7 +214554,7 @@
     "annaji": {
       "index": 13417,
       "owner_key": "Y77TMiKHyUpfoh6CgzoD4Ep3siBSw1uBTsGsKxMJxfJ",
-      "balance": 14180,
+      "balance": 53866,
       "membership_expire_on": 1723929620,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -210214,9 +214568,9 @@
     "GigiRougeGorge": {
       "index": 11905,
       "owner_key": "Y9N12Xr81fh4c1KsTwprPce4oZAci2Er3FxyoArehmy",
-      "balance": 172851,
+      "balance": 212537,
       "membership_expire_on": 1708820905,
-      "next_cert_issuable_on": 1693402356,
+      "next_cert_issuable_on": 1694225870,
       "certs_received": {
         "Wiwi": 1740721832,
         "PhilippeMarceau": 1741391251,
@@ -210262,7 +214616,7 @@
     "MyriamM71": {
       "index": 11469,
       "owner_key": "YMWmLmBGKG6ekCHvj1eopomVkfXfD4DwuznucS1Uveq",
-      "balance": 13352,
+      "balance": 53038,
       "membership_expire_on": 1706966930,
       "next_cert_issuable_on": 1684046967,
       "certs_received": {
@@ -210286,17 +214640,19 @@
     "KatchouKat": {
       "index": 10655,
       "owner_key": "Yai618sUqLN747fHPaNhYZ5XSQGoUZXvqvakLNc6ndr",
-      "balance": 202397,
+      "balance": 217583,
       "membership_expire_on": 1725047356,
-      "next_cert_issuable_on": 1678078460,
+      "next_cert_issuable_on": 1696251709,
       "certs_received": {
         "Gippon": 1733024324,
         "DanielPGT": 1744869348,
         "lydiemdb": 1737828270,
         "Fabi26": 1733028832,
         "veronicmartignac": 1738364204,
+        "PierrePierreR": 1759294909,
         "Gaelducausse": 1733044587,
         "Pilar": 1733030651,
+        "Thomas": 1757100969,
         "DameCeline12": 1737585489,
         "CedricSQ": 1733036589
       }
@@ -210304,8 +214660,8 @@
     "Ghandi57": {
       "index": 9789,
       "owner_key": "YeyQmEMBJ9ZnqfxCZteJFhDnqo4bGDTyoVCKhiZA5aQ",
-      "balance": 414296,
-      "membership_expire_on": 1696161317,
+      "balance": 447514,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1665644442,
       "certs_received": {
         "Sylvae": 1728002917,
@@ -210319,9 +214675,9 @@
     "NONI": {
       "index": 9442,
       "owner_key": "YfQu4AeNJpHYFpfjBA1bWqzhKufwENtdFPjrBLMz8KW",
-      "balance": 97215,
+      "balance": 53802,
       "membership_expire_on": 1720583382,
-      "next_cert_issuable_on": 1688744158,
+      "next_cert_issuable_on": 1696709165,
       "certs_received": {
         "Estela": 1731295848,
         "Senda": 1734634947,
@@ -210372,7 +214728,7 @@
     "Gdelachance": {
       "index": 13342,
       "owner_key": "Ym4N5iBmBhV92xCSjah72JoBpp5cMFfTwpBW25Lsac1",
-      "balance": 34796,
+      "balance": 74482,
       "membership_expire_on": 1723044159,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -210386,7 +214742,7 @@
     "grainedesesame": {
       "index": 8735,
       "owner_key": "YmnmwRTmGCag9JcuMADwPSHs96djNnhWVMi73qad9uB",
-      "balance": 466189,
+      "balance": 505875,
       "membership_expire_on": 1718496529,
       "next_cert_issuable_on": 1687865587,
       "certs_received": {
@@ -210404,9 +214760,9 @@
     "LUCKY": {
       "index": 8447,
       "owner_key": "Yr3JccHaeLZcjmSYaxoxLSUgLqtRVgvqE5peZoK1R9N",
-      "balance": 606265,
+      "balance": 688287,
       "membership_expire_on": 1719452803,
-      "next_cert_issuable_on": 1691221484,
+      "next_cert_issuable_on": 1696229709,
       "certs_received": {
         "Lauriernoble": 1717716149,
         "Ashawik": 1724076662,
@@ -210449,7 +214805,7 @@
     "MarieChristTerree": {
       "index": 10151,
       "owner_key": "YzLJSbZtpkLoNvgXLhruVnWV27iYW8cPuyV1kY3vGEA",
-      "balance": 329203,
+      "balance": 368889,
       "membership_expire_on": 1697825000,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -210498,8 +214854,8 @@
     "Collibri76": {
       "index": 10187,
       "owner_key": "ZGJA4RfnfRwQw9dSMERJrKBFiiJGGx2Xe4rYAZLaU5p",
-      "balance": 329368,
-      "membership_expire_on": 1698709764,
+      "balance": 398554,
+      "membership_expire_on": 1727098333,
       "next_cert_issuable_on": 1686551069,
       "certs_received": {
         "ericve": 1749232303,
@@ -210517,7 +214873,7 @@
     "Loutre": {
       "index": 247,
       "owner_key": "ZVaxzHx6S9NjqvoRAmqSVrk39aQhNRCy4y6VYpiaJ11",
-      "balance": 2570324,
+      "balance": 2610010,
       "membership_expire_on": 1715732322,
       "next_cert_issuable_on": 1667565958,
       "certs_received": {
@@ -210532,7 +214888,8 @@
         "EdouardChaize": 1698559540,
         "MuseaudeLievre": 1711773622,
         "Etoile123": 1710634845,
-        "colibri": 1712454014
+        "colibri": 1712454014,
+        "bert": 1759677968
       }
     },
     "Kissoflife": {
@@ -210572,15 +214929,7 @@
       "balance": 364082,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Chantal": 1695088720,
-        "Anamaya": 1693710624,
-        "melusine": 1694071201,
-        "Anne-Pierre": 1693711130,
-        "Sevdiesse": 1693809942,
-        "Sulivan": 1693715630,
-        "maglieres": 1694904827
-      }
+      "certs_received": {}
     },
     "bikepunk": {
       "index": 2322,
@@ -210596,16 +214945,11 @@
     "Pimousse": {
       "index": 5722,
       "owner_key": "ZsqSpKsQJT5g6928d9xGFvjPnjG9bfwjDXjCTAVQSpT",
-      "balance": 762569,
-      "membership_expire_on": 1724839413,
+      "balance": 782861,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1645147986,
       "certs_received": {
-        "IsabelleGlorian": 1695173855,
-        "Erikem": 1695233618,
-        "Anthoxanthum67": 1695275832,
-        "Eloi": 1695166948,
-        "hypericum": 1695422329,
-        "Scapharnaum": 1695361058
+        "hypericum": 1757215148
       }
     },
     "FredericRAGONIT": {
@@ -210619,7 +214963,7 @@
     "Inna2": {
       "index": 10871,
       "owner_key": "ZuAqLtG95FeBmxHNzbQg9J4viELeVx16qHrRUENLS1m",
-      "balance": 274689,
+      "balance": 314375,
       "membership_expire_on": 1702566607,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -210633,7 +214977,7 @@
     "MissPine": {
       "index": 4231,
       "owner_key": "ZvXUNCcNVsHrauK4HMiP69coGNJBUhWF3Vi73Y1eNoN",
-      "balance": 430688,
+      "balance": 530346,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1648646483,
       "certs_received": {
@@ -210645,7 +214989,7 @@
     "steff": {
       "index": 4526,
       "owner_key": "Zy5WPLuiQGHBnP8kusU4SCyAJCK5rva4h2u22Dm7Lr8",
-      "balance": 875520,
+      "balance": 915206,
       "membership_expire_on": 1699647336,
       "next_cert_issuable_on": 1676237118,
       "certs_received": {
@@ -210661,7 +215005,7 @@
     "Titi-yuki": {
       "index": 12139,
       "owner_key": "a9Rx4oWNQsbMVArGPmFLKRDjgNqTtA57mCitSFmBJ5V",
-      "balance": 167676,
+      "balance": 207362,
       "membership_expire_on": 1711489691,
       "next_cert_issuable_on": 1682599892,
       "certs_received": {
@@ -210675,7 +215019,7 @@
     "MathiasConvie": {
       "index": 12129,
       "owner_key": "aDTDYeQCuxBjd24d3deTpuJKLDjY9kmX4rW1oa112SN",
-      "balance": 176444,
+      "balance": 216130,
       "membership_expire_on": 1710626698,
       "next_cert_issuable_on": 1683121578,
       "certs_received": {
@@ -210698,7 +215042,7 @@
     "LODS": {
       "index": 8584,
       "owner_key": "aPiHHE6nXtHBJKepvw7zVvw3kLaUM4ErV2FLCutuwnH",
-      "balance": 316076,
+      "balance": 355762,
       "membership_expire_on": 1710196692,
       "next_cert_issuable_on": 1686271891,
       "certs_received": {
@@ -210735,7 +215079,7 @@
     "Hortense": {
       "index": 9153,
       "owner_key": "aYDeH8k37t1dK3J2uw1VGz2Tpx77tz5rA7QxQ3hc9JC",
-      "balance": 401172,
+      "balance": 440858,
       "membership_expire_on": 1718982461,
       "next_cert_issuable_on": 1687496861,
       "certs_received": {
@@ -210764,7 +215108,7 @@
     "Louisjordi": {
       "index": 11591,
       "owner_key": "aafNmhhfqpZxFUuCueiNHn79gK6FQw5qkpTE2GySJa7",
-      "balance": 222208,
+      "balance": 261894,
       "membership_expire_on": 1706736216,
       "next_cert_issuable_on": 1681826494,
       "certs_received": {
@@ -210779,7 +215123,7 @@
     "Panda": {
       "index": 8879,
       "owner_key": "agiZNqShJ2oxvzfseaVmMfS2b1QhLaMwWXWuWn9175V",
-      "balance": 448240,
+      "balance": 487926,
       "membership_expire_on": 1717962558,
       "next_cert_issuable_on": 1688393290,
       "certs_received": {
@@ -210794,7 +215138,7 @@
     "Moksha": {
       "index": 7886,
       "owner_key": "aj4C7dDPhYVB8qPePz79u88ZkXMVLusYkzafwm7FEwN",
-      "balance": 198974,
+      "balance": 238660,
       "membership_expire_on": 1708437070,
       "next_cert_issuable_on": 1683644751,
       "certs_received": {
@@ -210821,7 +215165,7 @@
     "Gabyy": {
       "index": 6946,
       "owner_key": "akREwacUgZAQt2EsHk5fnfgmUnLYKNgbcJnn1GKw1U3",
-      "balance": 364717,
+      "balance": 404403,
       "membership_expire_on": 1706189138,
       "next_cert_issuable_on": 1675170445,
       "certs_received": {
@@ -210843,19 +215187,18 @@
     "EdithSineux": {
       "index": 4601,
       "owner_key": "bDDwdUxAKzzEVcact8gkpcubqJQu63k7B372BN9djdu",
-      "balance": 504758,
+      "balance": 544444,
       "membership_expire_on": 1708047596,
-      "next_cert_issuable_on": 1684764222,
+      "next_cert_issuable_on": 1695865657,
       "certs_received": {
         "SylvieBeaumontPerron": 1700291410,
         "GuyPerron": 1700724349,
-        "StephanieN": 1694585020,
         "EricPetit": 1736380533,
-        "theresecaillere": 1696545849,
         "mimi": 1738900083,
         "Jucapo": 1748112846,
         "laurence66": 1715393382,
         "MurielW": 1715897860,
+        "fabiennegodfraind": 1758492194,
         "delaunayjeannette": 1730853599,
         "EvelyneGomond": 1712367679,
         "PascaleRoncoroni": 1739562193,
@@ -210869,7 +215212,7 @@
     "Puma": {
       "index": 4333,
       "owner_key": "bERnnAzit6harz8XLZocewwg5EUGsj3gVt7h9ddghbT",
-      "balance": 822476,
+      "balance": 862162,
       "membership_expire_on": 1715546153,
       "next_cert_issuable_on": 1665672475,
       "certs_received": {
@@ -210898,7 +215241,7 @@
     "LydiaMartraire": {
       "index": 8019,
       "owner_key": "bKtBT8ZajismKn5waNt5FAPKbkHwD64HD65v5QnUGUV",
-      "balance": 505613,
+      "balance": 545299,
       "membership_expire_on": 1711416442,
       "next_cert_issuable_on": 1677943115,
       "certs_received": {
@@ -210920,7 +215263,7 @@
     "Roudele": {
       "index": 10910,
       "owner_key": "bXeaiz3kLSZLP9LSNQ44PtfUYtf2mJh11fi89Mam1Dm",
-      "balance": 287571,
+      "balance": 327257,
       "membership_expire_on": 1702648688,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -210962,7 +215305,7 @@
     "Nath": {
       "index": 5014,
       "owner_key": "brnhDBoE8pC3yQUPpJio8otx6ty9UoLHFn3zuFBavpM",
-      "balance": 181396,
+      "balance": 221082,
       "membership_expire_on": 1718002593,
       "next_cert_issuable_on": 1691406721,
       "certs_received": {
@@ -210979,21 +215322,16 @@
     "Louloukipet": {
       "index": 5706,
       "owner_key": "btP5V4HDu45n7XaC4bFDsH3y7BrvTMMagE2Yy6smnSS",
-      "balance": 745681,
+      "balance": 785367,
       "membership_expire_on": 1723395708,
       "next_cert_issuable_on": 1685078365,
       "certs_received": {
-        "Foxy": 1695462862,
-        "SophieKassabian": 1695473442,
         "Swann": 1737711000,
         "FabriceKa": 1749162216,
         "AniA": 1747360903,
-        "rjblein": 1695511956,
         "Malice26": 1743025377,
         "OlivierDubigeon": 1749325929,
-        "MoniqueBlein": 1695510958,
-        "Enjolras14": 1704382946,
-        "AnneT": 1695489536
+        "Enjolras14": 1704382946
       }
     },
     "Elfi": {
@@ -211023,9 +215361,9 @@
     "psycotox80": {
       "index": 293,
       "owner_key": "c9t2jXgpPps9g32zmbEW9kYFdenGgoADC9nQrSTpZne",
-      "balance": 1234458,
+      "balance": 1129144,
       "membership_expire_on": 1702508485,
-      "next_cert_issuable_on": 1687528300,
+      "next_cert_issuable_on": 1696404626,
       "certs_received": {
         "Crystal": 1710274074,
         "LazareT": 1742786418,
@@ -211039,6 +215377,7 @@
         "philouch": 1710383373,
         "Tchois": 1744664818,
         "JessyC": 1730176098,
+        "diletta": 1757463723,
         "Rach": 1721245121,
         "Saroune": 1728514795,
         "Soum86": 1711632949,
@@ -211058,16 +215397,15 @@
         "Nyttliv": 1716261986,
         "FREZA": 1716259449,
         "Parhit": 1731487598,
-        "sens": 1712092438,
-        "Profil": 1695440363
+        "sens": 1712092438
       }
     },
     "Martuki": {
       "index": 9156,
       "owner_key": "cDkGNDXpZBSsSzYWraB3VeYpqswXDcUMnQCYFxddfXC",
-      "balance": 95022,
+      "balance": 203425,
       "membership_expire_on": 1716676902,
-      "next_cert_issuable_on": 1690971657,
+      "next_cert_issuable_on": 1696139185,
       "certs_received": {
         "BANESA": 1733464075,
         "blancaruai": 1749284743,
@@ -211081,6 +215419,7 @@
         "SantiTrinquete": 1738294560,
         "MAILURROZ": 1722883548,
         "JCNAVARLAZ": 1738010477,
+        "Naniestelar": 1755825502,
         "harkaitz": 1747671355,
         "latxurry": 1743361130,
         "viyda": 1733906793,
@@ -211090,6 +215429,7 @@
         "jilguero": 1739672355,
         "jirafilla": 1734712065,
         "Mariarima": 1722909853,
+        "SeedFamily": 1757625511,
         "mastres": 1722891587,
         "MAULOVI": 1726882400,
         "Rodando": 1738863597,
@@ -211103,7 +215443,7 @@
     "feeclochette": {
       "index": 7119,
       "owner_key": "cSmFo4jYd411i5pX7UtUSwQghaVherMAwaHLTTcPpFr",
-      "balance": 558587,
+      "balance": 598273,
       "membership_expire_on": 1706484437,
       "next_cert_issuable_on": 1675498616,
       "certs_received": {
@@ -211117,9 +215457,9 @@
     "birgittat": {
       "index": 5076,
       "owner_key": "cT1Qwz28fj8hvFPC8TwBU84F1VizZvPsS3Ruv7TULHV",
-      "balance": 658988,
+      "balance": 696674,
       "membership_expire_on": 1716310975,
-      "next_cert_issuable_on": 1685436899,
+      "next_cert_issuable_on": 1694525028,
       "certs_received": {
         "AMAA": 1722021359,
         "Salya": 1718098512,
@@ -211133,7 +215473,7 @@
     "Phanette67": {
       "index": 10923,
       "owner_key": "cUie1dCDc1JaoSWSPmZ72jJwT9hxT7SQXdNfa8HR6YZ",
-      "balance": 232699,
+      "balance": 272385,
       "membership_expire_on": 1702649464,
       "next_cert_issuable_on": 1671900929,
       "certs_received": {
@@ -211148,7 +215488,7 @@
     "Celimen35": {
       "index": 11299,
       "owner_key": "cWTtB9NCCmhHHji55EHfUQKpcsmEot6DAXAMpkwPrgh",
-      "balance": 247919,
+      "balance": 287605,
       "membership_expire_on": 1705244539,
       "next_cert_issuable_on": 1678375189,
       "certs_received": {
@@ -211166,7 +215506,7 @@
     "MarieLibellule": {
       "index": 8592,
       "owner_key": "cfJP7s7ct2fRQzL7d8GzVfxRMsCqt1jMiEp9C3Kvvib",
-      "balance": 502571,
+      "balance": 542257,
       "membership_expire_on": 1713449685,
       "next_cert_issuable_on": 1668837519,
       "certs_received": {
@@ -211181,9 +215521,9 @@
     "Diamant": {
       "index": 13434,
       "owner_key": "cptxWsLr5bUXws9ViyXo4nT23amCVSgAxLWKADyRVjX",
-      "balance": 7476,
+      "balance": 47162,
       "membership_expire_on": 1722022208,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1693235829,
       "certs_received": {
         "Virginie": 1755323785,
         "Samsan": 1755325104,
@@ -211213,10 +215553,11 @@
     "Mashpro": {
       "index": 11417,
       "owner_key": "cvXmfTxmoMnPm1Yx4nVhvdYnVKKxxaT95kNxqNSF5Pa",
-      "balance": 240475,
+      "balance": 280161,
       "membership_expire_on": 1706646251,
       "next_cert_issuable_on": 1691508618,
       "certs_received": {
+        "HelloSunshine": 1758357159,
         "PascaleC73": 1738218844,
         "Olympe17": 1738277108,
         "MaiS": 1738208223,
@@ -211229,7 +215570,7 @@
     "LHF": {
       "index": 11427,
       "owner_key": "d9LZGWLEvMisGbM7omiqnRjAnV842HxszGPVL4jLxep",
-      "balance": 510956,
+      "balance": 550642,
       "membership_expire_on": 1705780873,
       "next_cert_issuable_on": 1677811458,
       "certs_received": {
@@ -211245,7 +215586,7 @@
     "AsunG1": {
       "index": 8387,
       "owner_key": "dHvaqWn7ayHvN6s6ZMhjiKwrHzHwNZi1tp2TC8bzc1D",
-      "balance": 670214,
+      "balance": 579100,
       "membership_expire_on": 1714745558,
       "next_cert_issuable_on": 1671686405,
       "certs_received": {
@@ -211278,7 +215619,7 @@
     "Wendy": {
       "index": 12653,
       "owner_key": "dJzyNH3bAMDWVHYcmqJ7HsbuuLLvLst2zM87SZsZXUD",
-      "balance": 123444,
+      "balance": 163131,
       "membership_expire_on": 1714054261,
       "next_cert_issuable_on": 1689855811,
       "certs_received": {
@@ -211294,7 +215635,7 @@
     "MarieP46": {
       "index": 12058,
       "owner_key": "dKK4saBgZ7BC7oAM5iVvJb3EB8XM4F8T9ayEewkpxmL",
-      "balance": 184702,
+      "balance": 224388,
       "membership_expire_on": 1709850399,
       "next_cert_issuable_on": 1680425009,
       "certs_received": {
@@ -211308,7 +215649,7 @@
     "JulyduCausse": {
       "index": 10573,
       "owner_key": "dQSxiJEt32BNJEZwn1owRqrpqPUN2epRMHWZEaivnFd",
-      "balance": 180286,
+      "balance": 130292,
       "membership_expire_on": 1700954524,
       "next_cert_issuable_on": 1692631767,
       "certs_received": {
@@ -211335,9 +215676,9 @@
     "bert": {
       "index": 310,
       "owner_key": "dduLAxqgjupQbjXiqC2tda5ki7WwJxGRdw8Z37uDGdM",
-      "balance": 205272,
+      "balance": 244958,
       "membership_expire_on": 1713136764,
-      "next_cert_issuable_on": 1691499458,
+      "next_cert_issuable_on": 1696634768,
       "certs_received": {
         "AgatheO": 1713299969,
         "Wilouchou": 1713231298,
@@ -211372,24 +215713,27 @@
         "nitnelav": 1719253534,
         "CuatroVistas": 1741212837,
         "Nhelou22": 1712337607,
+        "ofontes": 1753643251,
         "DYves62": 1710280606,
         "Mamimi": 1713237517,
         "ALEGRIAUNIVERSAL": 1724569231,
         "Somano": 1710996611,
-        "fania": 1750841763
+        "fania": 1750841763,
+        "Pipootz": 1755372959
       }
     },
     "JaviVega": {
       "index": 13171,
       "owner_key": "dfJghxPKBk9w3em8LceJ12nFjNGWtjSs8kqR5TfMSpw",
-      "balance": 93328,
+      "balance": 109014,
       "membership_expire_on": 1721069983,
-      "next_cert_issuable_on": 1690454181,
+      "next_cert_issuable_on": 1694836282,
       "certs_received": {
         "Damaso": 1752640931,
         "AlbaMur": 1752628072,
         "luismo": 1752688131,
         "Mariaje": 1752640585,
+        "VICTORF": 1758092192,
         "Alberto": 1752638798,
         "GRUKSY": 1752627583
       }
@@ -211397,7 +215741,7 @@
     "Yakitori": {
       "index": 11959,
       "owner_key": "dfmNZMBx2oFCJkFkeCC7skdjNPMZfeJvrnejuUky6QA",
-      "balance": 184615,
+      "balance": 224301,
       "membership_expire_on": 1710163163,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -211433,8 +215777,8 @@
     "GauthierDoppagne": {
       "index": 1499,
       "owner_key": "dpt26Aotj7yv6xFtsZSrQojV1zYE5PSpN2KyA94tYjp",
-      "balance": 1820908,
-      "membership_expire_on": 1694520650,
+      "balance": 1833724,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1663035050,
       "certs_received": {
         "philippe": 1725426555,
@@ -211456,7 +215800,7 @@
     "Nadaeoqueparece": {
       "index": 8924,
       "owner_key": "dwStAXgvmKMAzx8L55ssiRVST7JDUtUz294vJXQwho1",
-      "balance": 413894,
+      "balance": 453580,
       "membership_expire_on": 1716300061,
       "next_cert_issuable_on": 1664970217,
       "certs_received": {
@@ -211479,9 +215823,9 @@
     "SylvieL": {
       "index": 13008,
       "owner_key": "e6XrmL4EB75ZGSJQmZMEgxB3tuBYQdH2phAvebetJ5U",
-      "balance": 96420,
+      "balance": 114006,
       "membership_expire_on": 1718972403,
-      "next_cert_issuable_on": 1688831116,
+      "next_cert_issuable_on": 1696241565,
       "certs_received": {
         "ValMad": 1750892732,
         "EmiOne": 1750982162,
@@ -211508,14 +215852,13 @@
       "certs_received": {
         "FanfanJub": 1724913660,
         "Nyckel": 1719863813,
-        "GabrielCorrandDubreil": 1694027918,
         "Sylvere72": 1722276635
       }
     },
     "isaluz888": {
       "index": 7693,
       "owner_key": "eYPBPJaTBBqFFkSfFquq1wLw4FoVnpCsUzgatzG6zxT",
-      "balance": 725481,
+      "balance": 765167,
       "membership_expire_on": 1707533597,
       "next_cert_issuable_on": 1653199291,
       "certs_received": {
@@ -211531,9 +215874,9 @@
     "Kol": {
       "index": 8618,
       "owner_key": "epHUGUM42a9WyoibGMaWH6TgAiR6pFSVLr7ysSMfGDZ",
-      "balance": 1452203,
+      "balance": 1454649,
       "membership_expire_on": 1714675238,
-      "next_cert_issuable_on": 1689992727,
+      "next_cert_issuable_on": 1696419245,
       "certs_received": {
         "Cholo": 1755909025,
         "MaudD": 1718915275,
@@ -211544,6 +215887,7 @@
         "Yesyes": 1721173508,
         "Wynfyd": 1752284873,
         "AlvaroFernandez": 1736199179,
+        "VildarinIoan": 1759224703,
         "COLYBRY": 1731794355,
         "Vikolander": 1750468983,
         "Estitz": 1718906625,
@@ -211575,7 +215919,9 @@
         "RoberQuim": 1739413942,
         "Munillerro": 1734254224,
         "BolidoC": 1730327128,
+        "Ardan1977": 1758670427,
         "Gorkamecanico": 1746833725,
+        "DarioOrgonitas": 1758653294,
         "GeraldineGarrigues": 1728759245,
         "SeedFamily": 1740768545,
         "PiNguyen": 1721082282,
@@ -211593,6 +215939,7 @@
         "tereseta": 1727394478,
         "Noxtan": 1721583303,
         "HARRI7": 1741772061,
+        "noemi": 1758250809,
         "CovaDidier": 1724837763,
         "Runa_81": 1721099180,
         "urkobein": 1727829498,
@@ -211606,8 +215953,8 @@
     "gorkatinajo": {
       "index": 9867,
       "owner_key": "euqmUYvoYbuBAonwdGFwtJLsXWbJPbcAwu19TSW3pep",
-      "balance": 203118,
-      "membership_expire_on": 1696344762,
+      "balance": 238492,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1690787254,
       "certs_received": {
         "Nounoune": 1735976736,
@@ -211634,7 +215981,7 @@
     "Garyculteur": {
       "index": 10918,
       "owner_key": "ezWXHDeVr9gQhvHDLTgPYpXLbWir28NCpwYsBa9ZRmT",
-      "balance": 271512,
+      "balance": 311198,
       "membership_expire_on": 1702078503,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -211650,8 +215997,8 @@
     "MattiCapri": {
       "index": 9482,
       "owner_key": "ezX96MaHJ77eupCC6c6rJzrKmFMQs1NtHdNBRv4neQJ",
-      "balance": 350840,
-      "membership_expire_on": 1694283508,
+      "balance": 383050,
+      "membership_expire_on": 1726458149,
       "next_cert_issuable_on": 0,
       "certs_received": {
         "Michele1200": 1725847420,
@@ -211665,7 +216012,7 @@
     "MarianneH3": {
       "index": 11467,
       "owner_key": "ezcpjtaBZ5vKDBzv9ndahpcLGVFFqq9Rs3jeLAnbv3D",
-      "balance": 225739,
+      "balance": 254425,
       "membership_expire_on": 1706651940,
       "next_cert_issuable_on": 1679456287,
       "certs_received": {
@@ -211690,7 +216037,7 @@
     "Hubert": {
       "index": 3207,
       "owner_key": "f6QH2sau3N6eSHtStY2gFTVtv9JiCPehXexvvadjCWP",
-      "balance": 1634988,
+      "balance": 1674674,
       "membership_expire_on": 1719972323,
       "next_cert_issuable_on": 1692405651,
       "certs_received": {
@@ -211700,24 +216047,23 @@
         "MichLang": 1754593715,
         "DragonCoyote": 1700257511,
         "Yacamoneye": 1752438212,
+        "Syltraci": 1759780122,
         "KumaNinja": 1752082532,
         "loup12": 1699097670,
         "Lindien": 1752645741,
-        "chronophonix": 1699097670,
-        "borealain": 1694681308
+        "chronophonix": 1699097670
       }
     },
     "OLDBLACK84": {
       "index": 2413,
       "owner_key": "f7LioteJNrxkR9sJLdSLBrbDoQKvzG8Y6HFmuDF9ABq",
-      "balance": 556511,
+      "balance": 583197,
       "membership_expire_on": 1722553020,
-      "next_cert_issuable_on": 1692932260,
+      "next_cert_issuable_on": 1695739114,
       "certs_received": {
         "Riri": 1698556954,
         "Sylvae": 1702017631,
         "Etoiledesneiges": 1701647200,
-        "Ju73": 1693606177,
         "angelight": 1700542278,
         "Pocpoc": 1700615602,
         "Jjacq07": 1701491268,
@@ -211727,7 +216073,6 @@
         "Christine13": 1724734573,
         "Anne-Laure": 1697994715,
         "syl1209": 1701995427,
-        "phil3455": 1694112975,
         "gaellemarcherat": 1747205084,
         "coeurbijoux": 1731887452,
         "conchitaSIMON": 1705105239,
@@ -211744,7 +216089,6 @@
         "CovaDidier": 1705998053,
         "Rophann": 1730397456,
         "Ecureuil26montsegur": 1701405254,
-        "Lara": 1696278829,
         "LaurentM": 1701397837,
         "ChristineWilloth26": 1726641528
       }
@@ -211775,14 +216119,16 @@
     "AndresXaudi": {
       "index": 12496,
       "owner_key": "fEPfZt2GEhZNwYPbKnG9EeqghTLSwCkgGc5GkkduBfq",
-      "balance": 486281,
+      "balance": 479307,
       "membership_expire_on": 1714025665,
-      "next_cert_issuable_on": 1693196711,
+      "next_cert_issuable_on": 1696740162,
       "certs_received": {
         "Silvi": 1749756762,
+        "Ambar": 1756887373,
         "riky": 1745946623,
         "Naturkike": 1750913609,
         "unica": 1746004774,
+        "vjrj": 1759352995,
         "catalinons": 1751489964,
         "Mariaseelcambio": 1745895973,
         "Sonya": 1746039744,
@@ -211794,8 +216140,12 @@
         "JoanaGomez": 1751957241,
         "MaiteBel": 1745948455,
         "RuthLibelulaAzul": 1756432438,
+        "CristinaAbella": 1756634207,
+        "Santi_ajedrez": 1759787180,
+        "DOMIASTRO": 1757024973,
         "elena": 1753984405,
         "EMA": 1752045098,
+        "Marianfs": 1757318781,
         "ElenaMavida": 1752604787,
         "OrganikSolution": 1745960388,
         "Thais": 1750841545,
@@ -211805,7 +216155,7 @@
     "ROSAE": {
       "index": 9164,
       "owner_key": "fK2oAbGXpsS5P7Q3RZXSw1eKy5mor8G6Ai14iRxshXv",
-      "balance": 356561,
+      "balance": 396247,
       "membership_expire_on": 1724523025,
       "next_cert_issuable_on": 1660322230,
       "certs_received": {
@@ -211820,7 +216170,7 @@
     "SyBr": {
       "index": 7628,
       "owner_key": "fL341WWD8c3AG2pxtrPqcezJ43HVCrJpUueC15TLoRa",
-      "balance": 142528,
+      "balance": 89914,
       "membership_expire_on": 1713574968,
       "next_cert_issuable_on": 1664447327,
       "certs_received": {
@@ -211841,7 +216191,7 @@
     "ALoy": {
       "index": 4946,
       "owner_key": "fL3VVbvaunz73ELb8p2umVfva6TEH8ghwUpcnE4765P",
-      "balance": 349508,
+      "balance": 389194,
       "membership_expire_on": 1709587090,
       "next_cert_issuable_on": 1678101490,
       "certs_received": {
@@ -211855,7 +216205,7 @@
     "Impala": {
       "index": 9101,
       "owner_key": "fLoutk1uoqweYGQbZS1Lq1L4m1GJZNrtNEmXiAjvry8",
-      "balance": 390178,
+      "balance": 476864,
       "membership_expire_on": 1719183371,
       "next_cert_issuable_on": 1663345902,
       "certs_received": {
@@ -211869,7 +216219,7 @@
     "Leonie": {
       "index": 10146,
       "owner_key": "fNoyKZ1VGXNS8HtQ3QwDxouaXusyeoHTsZtL4nKv3zJ",
-      "balance": 336403,
+      "balance": 376089,
       "membership_expire_on": 1698365660,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -211884,16 +216234,14 @@
     "marcos974": {
       "index": 3124,
       "owner_key": "fQadahQFywvFvpHZTKbU8YtzUwxCPXJaxzm2ugg2KfQ",
-      "balance": 943675,
+      "balance": 983361,
       "membership_expire_on": 1721416883,
       "next_cert_issuable_on": 1662670307,
       "certs_received": {
-        "KarineGerinard974": 1695341936,
         "harry974": 1719508767,
         "Chris08": 1708095700,
         "Vero": 1754147665,
         "BabethMangas": 1705451500,
-        "luciano974": 1695748342,
         "Celine974": 1700946353,
         "gabyjoce974": 1717544354,
         "Brunov974": 1707357059,
@@ -211927,7 +216275,7 @@
     "Delfouille": {
       "index": 12729,
       "owner_key": "fVDPRDa9P9dzf2j5mkWDA9W29MqfCdTCg98H6iRxqvf",
-      "balance": 117900,
+      "balance": 157586,
       "membership_expire_on": 1713814066,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -211942,7 +216290,7 @@
     "Zatalyz": {
       "index": 694,
       "owner_key": "fVTCTkWFHg3kCzLGr2PPL3vXh5C7x82nZFsUTG2zJAq",
-      "balance": 1776137,
+      "balance": 1815823,
       "membership_expire_on": 1699362809,
       "next_cert_issuable_on": 1683442601,
       "certs_received": {
@@ -211961,7 +216309,7 @@
     "Profil": {
       "index": 605,
       "owner_key": "fW4xi1siLtSEN6BMXgCRfdeu28HSVWT15TQHmfmMA85",
-      "balance": 1804423,
+      "balance": 1874109,
       "membership_expire_on": 1723049784,
       "next_cert_issuable_on": 1690432255,
       "certs_received": {
@@ -211989,12 +216337,10 @@
         "Georges": 1714116552,
         "Isalct81": 1742601266,
         "AngelS": 1726625747,
-        "Nyttliv": 1695791047,
         "VeroniqueB": 1714898204,
         "MuseaudeLievre": 1703302364,
         "SylvieSpielmann": 1725771600,
         "Sylvain": 1725904831,
-        "Glass": 1693820994,
         "katou": 1719612822,
         "psycotox80": 1743298728
       }
@@ -212002,7 +216348,7 @@
     "PatiG": {
       "index": 11602,
       "owner_key": "fWrfhnXnbgvdzU6yfzc2meVG7iJ53Q4y5gnSF9NZVBS",
-      "balance": 19208,
+      "balance": 58894,
       "membership_expire_on": 1707837779,
       "next_cert_issuable_on": 1679788951,
       "certs_received": {
@@ -212025,7 +216371,7 @@
     "Sarahmamadoula": {
       "index": 9107,
       "owner_key": "fe9VgrfLaMW1X5MQndJSdKAfHqxd5Qd89FRFrzCB4YB",
-      "balance": 206927,
+      "balance": 246613,
       "membership_expire_on": 1718654121,
       "next_cert_issuable_on": 1666362420,
       "certs_received": {
@@ -212040,9 +216386,9 @@
     "NadiaNadodu": {
       "index": 12402,
       "owner_key": "ffQEX6vcsFZyv9PMeGyqdr8Fqt6QSsYLqxMLgiF1Dgd",
-      "balance": 150976,
+      "balance": 189662,
       "membership_expire_on": 1712005477,
-      "next_cert_issuable_on": 1692806857,
+      "next_cert_issuable_on": 1696386853,
       "certs_received": {
         "VicGuill": 1745174822,
         "TiboDom": 1756153858,
@@ -212064,7 +216410,7 @@
     "MarilouBH": {
       "index": 12692,
       "owner_key": "fjSkFt5FLxCmRyngPi7tKL6bu9pfzAkD3wRgrbn2LaK",
-      "balance": 112140,
+      "balance": 151826,
       "membership_expire_on": 1714484484,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -212078,11 +216424,12 @@
     "Fred2Rennes": {
       "index": 1123,
       "owner_key": "fkcPAQoCPJZHmNQp6bFMvVHqYQrX5jkYVfj9b35jiTm",
-      "balance": 2184290,
+      "balance": 2223976,
       "membership_expire_on": 1702646597,
       "next_cert_issuable_on": 1672400467,
       "certs_received": {
         "Pascaloo35": 1709777494,
+        "FrancoisRocher": 1757021706,
         "Espritangel": 1729727305,
         "Keriadenn": 1735315137,
         "DomVie": 1753765291,
@@ -212093,7 +216440,7 @@
     "C13IAMisidoro": {
       "index": 6867,
       "owner_key": "frgKuZuiMiJEUG9HHsMECWCNAEfX9je5DfTiajQyS1a",
-      "balance": 463726,
+      "balance": 503412,
       "membership_expire_on": 1702701085,
       "next_cert_issuable_on": 1677169086,
       "certs_received": {
@@ -212121,12 +216468,13 @@
     "Vega44": {
       "index": 8523,
       "owner_key": "fvN1rEVRss3Aaxjgnwhcnfz1Eo9CbBhynhP1ZQQHknz",
-      "balance": 499076,
+      "balance": 538762,
       "membership_expire_on": 1713312094,
       "next_cert_issuable_on": 1690216603,
       "certs_received": {
         "ClaireBrune": 1717209838,
         "VirginieGautier": 1717524769,
+        "CnouFoss": 1757989720,
         "StephaneROBIN": 1735258474,
         "Camelodie": 1718160791,
         "Tissia": 1717227684,
@@ -212138,16 +216486,11 @@
     "Ethersource83": {
       "index": 5680,
       "owner_key": "fvZAGLzaDYeEa8qRf55TaM6WwHvabV1fvZN5wmBprwN",
-      "balance": 144935,
+      "balance": 184621,
       "membership_expire_on": 1718997810,
-      "next_cert_issuable_on": 1685051161,
+      "next_cert_issuable_on": 1696115519,
       "certs_received": {
         "JF13": 1732672154,
-        "Alinerv": 1695168718,
-        "Georges_M_mbr": 1695156889,
-        "NAGIOWOTALA": 1694926629,
-        "Tchois": 1694725852,
-        "Delfe": 1694728845,
         "Maminou13": 1733245817,
         "Alter2021_83": 1699558623,
         "lul": 1749239953,
@@ -212166,13 +216509,14 @@
     "Gaia6442": {
       "index": 12531,
       "owner_key": "gEDJuosdby6AnDE5WT9rburN6gZ84fR4o1Uxmo3kufN",
-      "balance": 137593,
+      "balance": 171879,
       "membership_expire_on": 1714686527,
-      "next_cert_issuable_on": 1691379561,
+      "next_cert_issuable_on": 1695894195,
       "certs_received": {
         "Jerome035": 1746296085,
         "Rebirth35": 1746248702,
         "Ladjack": 1746250213,
+        "Pascale72": 1758633094,
         "Moi_C_Olivier": 1746261908,
         "JeanJoel35": 1746291081
       }
@@ -212180,7 +216524,7 @@
     "Gigila": {
       "index": 10667,
       "owner_key": "gVTHpNCwaAQYvb3TCPf5R7KbG812bNcAdnKKCgcJhLC",
-      "balance": 385397,
+      "balance": 425083,
       "membership_expire_on": 1700332556,
       "next_cert_issuable_on": 1675853033,
       "certs_received": {
@@ -212218,7 +216562,7 @@
     "Dawani": {
       "index": 13139,
       "owner_key": "gry8S7DA2ogyH2uFz7Pq3JYD64QQspaLDxncXMkHinZ",
-      "balance": 54568,
+      "balance": 94254,
       "membership_expire_on": 1719966245,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -212240,7 +216584,7 @@
     "Pedroxistau": {
       "index": 7118,
       "owner_key": "gwpBWEFUeFrUjYqdmpfzNioW6AG3E4DxWzaVKRyH6by",
-      "balance": 316489,
+      "balance": 356175,
       "membership_expire_on": 1707839196,
       "next_cert_issuable_on": 1678120459,
       "certs_received": {
@@ -212260,10 +216604,27 @@
         "urkobein": 1709157848
       }
     },
+    "GalanD7745": {
+      "index": 13542,
+      "owner_key": "gyZDbadp1T5irKs8yVbD1wd6MXjPZqp56p5wrZJiLdo",
+      "balance": 37075,
+      "membership_expire_on": 1725203169,
+      "next_cert_issuable_on": 1695960985,
+      "certs_received": {
+        "Gscarabbe": 1757224730,
+        "Flore45": 1757555032,
+        "CelineVivante": 1756927822,
+        "Antoine45": 1757439967,
+        "PatrickREVIF": 1757452648,
+        "theotop": 1757539776,
+        "GMokeur": 1757197973,
+        "MarieThom": 1757391356
+      }
+    },
     "Bernard25": {
       "index": 13414,
       "owner_key": "h2Lajp4hPQ3M6QjLuMByHe56nREsM5oSXe2X4j1XKn5",
-      "balance": 60680,
+      "balance": 100366,
       "membership_expire_on": 1724158790,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -212278,7 +216639,7 @@
     "HeyMilie": {
       "index": 9346,
       "owner_key": "h3o5w3iwR28F7JJ7rWWf1STE3GAb9VEGhKD2Metu4ni",
-      "balance": 380303,
+      "balance": 419989,
       "membership_expire_on": 1715705305,
       "next_cert_issuable_on": 1684220061,
       "certs_received": {
@@ -212297,7 +216658,7 @@
     "MPGSilva": {
       "index": 13105,
       "owner_key": "h67SMPSo9N7gs4VAK7S1Mv2EsHs9FYjep6dMKggeJa6",
-      "balance": 361740,
+      "balance": 614426,
       "membership_expire_on": 1720307677,
       "next_cert_issuable_on": 1688916396,
       "certs_received": {
@@ -212323,9 +216684,9 @@
     "maBeltjens": {
       "index": 6189,
       "owner_key": "hD7ddp8XAciJ8F9gVbhWvyPT9wVytkzC1ATrrVcjupx",
-      "balance": 156635,
+      "balance": 166321,
       "membership_expire_on": 1723429740,
-      "next_cert_issuable_on": 1690292830,
+      "next_cert_issuable_on": 1694444094,
       "certs_received": {
         "Nagual": 1698966966,
         "gui_tooun": 1699723347,
@@ -212336,7 +216697,7 @@
         "Laulau77": 1720546375,
         "Chamax": 1699657317,
         "Charly-": 1731089771,
-        "wopat": 1700535767,
+        "wopat": 1758686661,
         "phil3455": 1723074881,
         "Oisyonne": 1698975321,
         "2lb89": 1750984303,
@@ -212353,9 +216714,9 @@
     "CelineDeNosCampagnes": {
       "index": 5878,
       "owner_key": "hLcYd6GMbXUp9qfhStJv7mEFvxrPeM1wfatuCqmhKcr",
-      "balance": 1132150,
-      "membership_expire_on": 1694063952,
-      "next_cert_issuable_on": 1662578694,
+      "balance": 1154648,
+      "membership_expire_on": 1725933667,
+      "next_cert_issuable_on": 1696293853,
       "certs_received": {
         "seb": 1696905752,
         "GUL40_L21": 1707475772,
@@ -212403,7 +216764,7 @@
     "Frbo25": {
       "index": 11233,
       "owner_key": "hiRhAUForWXUjX7tupUnFLKoDYfRaRjN5LVkmJjYsiv",
-      "balance": 169963,
+      "balance": 199149,
       "membership_expire_on": 1705329340,
       "next_cert_issuable_on": 1689057494,
       "certs_received": {
@@ -212451,7 +216812,7 @@
     "Yolan": {
       "index": 6245,
       "owner_key": "huKSFXyMtYUmTGwcEYAVNwz2efASSYVsaBUDABQFPA1",
-      "balance": 651535,
+      "balance": 691221,
       "membership_expire_on": 1700393035,
       "next_cert_issuable_on": 1688003424,
       "certs_received": {
@@ -212459,7 +216820,7 @@
         "Ashawik": 1756402170,
         "ChristopheD": 1718917858,
         "AmeSurTerre": 1700982990,
-        "Babaroun": 1700975017,
+        "Babaroun": 1757113879,
         "Pascale72": 1701042601,
         "guillaumed": 1701066986,
         "ROVER5537": 1727333930,
@@ -212469,13 +216830,12 @@
     "JeromeDelaigue": {
       "index": 5191,
       "owner_key": "i9J7WgbyfxRRZzoq5udn62MpYtgCorBFnw4JmAygRvY",
-      "balance": 750583,
+      "balance": 790269,
       "membership_expire_on": 1712627104,
       "next_cert_issuable_on": 1682327321,
       "certs_received": {
         "jeje43": 1731999951,
         "Sand": 1724551178,
-        "Damien": 1695089417,
         "SebastienTimbre": 1721456575,
         "HeleneSoleil": 1723248462,
         "MartinsE": 1736897435,
@@ -212500,7 +216860,7 @@
     "celine": {
       "index": 8441,
       "owner_key": "iBSFzq5jrPETXJguY8gdiHPWdDVtSbQWFaTSHQstyCa",
-      "balance": 425349,
+      "balance": 465035,
       "membership_expire_on": 1722303845,
       "next_cert_issuable_on": 1656336469,
       "certs_received": {
@@ -212514,8 +216874,8 @@
     "Aramis": {
       "index": 10020,
       "owner_key": "iEGqEEdoH3BVpMpArQwD2D2hxGnPtW1PvQ8WWNqk4hc",
-      "balance": 385052,
-      "membership_expire_on": 1695754737,
+      "balance": 422582,
+      "membership_expire_on": 1727538637,
       "next_cert_issuable_on": 1666511131,
       "certs_received": {
         "EvelyneA": 1729213456,
@@ -212544,7 +216904,7 @@
     "MutatisMutandis": {
       "index": 5569,
       "owner_key": "iSFvp2v4kdWiPpfktDkQzZNru3a9VcSrG9rFiviV4ey",
-      "balance": 733753,
+      "balance": 777439,
       "membership_expire_on": 1716977764,
       "next_cert_issuable_on": 1687924912,
       "certs_received": {
@@ -212583,7 +216943,7 @@
     "godzi": {
       "index": 11713,
       "owner_key": "iTNm5e1v4hsACabwSeMytTpJutcWnAASR89uYHUGTUN",
-      "balance": 372119,
+      "balance": 411805,
       "membership_expire_on": 1707440144,
       "next_cert_issuable_on": 1678276500,
       "certs_received": {
@@ -212635,8 +216995,8 @@
     "Aurore": {
       "index": 6174,
       "owner_key": "ikj2HSfcSQ1YQr6UbCKQKFodcqcnQEyi8RVrdab1U8d",
-      "balance": 561419,
-      "membership_expire_on": 1694699438,
+      "balance": 576371,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675335454,
       "certs_received": {
         "ChristineBrossard": 1720900943,
@@ -212656,7 +217016,7 @@
     "Carima": {
       "index": 6578,
       "owner_key": "j8DtXKzKQwwhgBriJNHoaEqY2yhgn7F36UAuvKNB6sR",
-      "balance": 435271,
+      "balance": 474957,
       "membership_expire_on": 1701536441,
       "next_cert_issuable_on": 1670569835,
       "certs_received": {
@@ -212675,9 +217035,9 @@
     "Lak": {
       "index": 8919,
       "owner_key": "jDmhciqtpJ7tymRyEudFDNX2onsA91kChDJBb76hmuV",
-      "balance": 167244,
+      "balance": 202930,
       "membership_expire_on": 1716384639,
-      "next_cert_issuable_on": 1685709438,
+      "next_cert_issuable_on": 1696241320,
       "certs_received": {
         "luciernaga": 1740647543,
         "MaudD": 1721672294,
@@ -212739,9 +217099,9 @@
     "flo74": {
       "index": 11772,
       "owner_key": "jFfHU1m1hy5PDbimh76gvC96yy7Uh4iS2PLxRpHJn7t",
-      "balance": 160541,
+      "balance": 200227,
       "membership_expire_on": 1708861536,
-      "next_cert_issuable_on": 1687773153,
+      "next_cert_issuable_on": 1693993957,
       "certs_received": {
         "MarieDel": 1740427898,
         "Philp": 1740545326,
@@ -212753,54 +217113,51 @@
     "Niederhauser": {
       "index": 5793,
       "owner_key": "jQ8o9W3CeZrAoWGffPN3kgUh6kbnEy8eY7CDe7ka9vy",
-      "balance": 1974415,
-      "membership_expire_on": 1694610997,
-      "next_cert_issuable_on": 1687149140,
+      "balance": 1942329,
+      "membership_expire_on": 1726518965,
+      "next_cert_issuable_on": 1696248359,
       "certs_received": {
-        "Come": 1696464988,
         "Jethro": 1715400106,
-        "MacBoi": 1696724183,
         "YvelineMNC": 1705272194,
-        "Sofiachante": 1696724183,
         "VICTOIRE": 1750189093,
-        "Aveline": 1696391004,
+        "Aveline": 1758079196,
         "CocoBaud": 1714720691,
         "Gigi1953": 1750189093,
         "Mayalibre": 1714441058,
         "Marionnette": 1755397065,
         "chrisbaud": 1714342657,
-        "JeDanse": 1696724183,
         "Cou-net": 1699142537,
         "bonohm05": 1702035782,
         "ClaraFeutrier": 1736705579,
-        "sylvainT": 1696717429,
-        "ChoraMadera": 1696724183,
         "DjedjePit": 1712087946
       }
     },
     "lachispis": {
       "index": 10800,
       "owner_key": "jR3FugaT9DJqNMM9GVzWYs9oJqJ8i9GwTURcdS6q6QU",
-      "balance": 165484,
+      "balance": 216370,
       "membership_expire_on": 1702312254,
-      "next_cert_issuable_on": 1692812075,
+      "next_cert_issuable_on": 1696036517,
       "certs_received": {
         "Silvi": 1742412638,
         "CrisBB": 1735228639,
         "roberplantas": 1750545514,
         "AnaMery": 1740462541,
         "Wynfyd": 1741421976,
+        "MonyKan": 1758092192,
         "unica": 1733891833,
         "Txotxe": 1744357253,
         "Jai": 1752291198,
         "Mariacrea": 1755713166,
         "84000": 1755740342,
         "isa": 1748894358,
+        "Camilarogelia13": 1758336452,
         "MAIKA": 1733873752,
         "Leia": 1733898895,
         "edubotaoo": 1733872108,
         "Martylove": 1749623215,
         "MaiteBel": 1746808009,
+        "Teka": 1757052017,
         "Jontxu67": 1754175540,
         "Roberto_Oraa_79_DDYG": 1752707506,
         "Magi": 1748658543,
@@ -212834,9 +217191,9 @@
     "gero": {
       "index": 7846,
       "owner_key": "jRRFieXn4F2i4gqBe8Tj111kBGqdZu2iBeBAXJgbj4n",
-      "balance": 484675,
+      "balance": 524361,
       "membership_expire_on": 1709752705,
-      "next_cert_issuable_on": 1680568220,
+      "next_cert_issuable_on": 1695647939,
       "certs_received": {
         "Al27": 1723793707,
         "Yeskah": 1736034607,
@@ -212851,6 +217208,7 @@
         "gerard94": 1714045416,
         "nox": 1740831245,
         "Keramina51": 1727302534,
+        "let-it-be57": 1756499895,
         "Jackstyle": 1738993463,
         "Freco": 1713914675
       }
@@ -212858,13 +217216,12 @@
     "lily06": {
       "index": 3530,
       "owner_key": "jUPLLBgY2QpheWEY3R13edV2Y4tvQMCXjJVM8PGDvyd",
-      "balance": 659943,
+      "balance": 386629,
       "membership_expire_on": 1723388405,
-      "next_cert_issuable_on": 1677076433,
+      "next_cert_issuable_on": 1693828970,
       "certs_received": {
         "ClaireAzur": 1706851935,
         "Tchois": 1725435458,
-        "Delfe": 1694729452,
         "Bob64": 1719653012,
         "pfouque": 1705824647,
         "Tontonmika": 1704846415,
@@ -212874,21 +217231,17 @@
     "FVK": {
       "index": 2732,
       "owner_key": "jUpPUNY38Kdq2eE14RvhMXMTBvjNLp3UkcRKNFoiYht",
-      "balance": 1233187,
-      "membership_expire_on": 1697110810,
+      "balance": 1249207,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1668404062,
       "certs_received": {
-        "Alinerv": 1695233618,
-        "Georges_M_mbr": 1694866104,
-        "Permaor": 1706113607,
-        "NeyKrom": 1696138193,
-        "Mathieuf": 1694849637
+        "Permaor": 1706113607
       }
     },
     "Hugoooo": {
       "index": 7263,
       "owner_key": "jV22xmSdKKWPLaGRvLrWoZuu4jBFvCLYDZFWcp8hLLL",
-      "balance": 559364,
+      "balance": 599050,
       "membership_expire_on": 1709200434,
       "next_cert_issuable_on": 1670329546,
       "certs_received": {
@@ -212903,7 +217256,7 @@
     "Kounty": {
       "index": 1960,
       "owner_key": "jX9oUtNNqcr6KeoMqSGwfwTqpgBpNq2fT4MGi7Jpr77",
-      "balance": 4773947,
+      "balance": 4813633,
       "membership_expire_on": 1709910801,
       "next_cert_issuable_on": 1685368123,
       "certs_received": {
@@ -212932,17 +217285,15 @@
     "Cigalou": {
       "index": 4356,
       "owner_key": "jdHZcFmrNhqaAViAWwZP1wixKKSPN2S2BxTKRUY9Mum",
-      "balance": 1085755,
-      "membership_expire_on": 1695732209,
-      "next_cert_issuable_on": 1688871501,
+      "balance": 1125441,
+      "membership_expire_on": 1725400897,
+      "next_cert_issuable_on": 1693916092,
       "certs_received": {
         "Mym": 1707466563,
-        "Axellerose": 1695793814,
         "Jeanrachid": 1720512363,
         "Joailes38": 1711319780,
         "MioPalmon988": 1735239981,
         "EmilieReina": 1710534975,
-        "Margaux": 1694150198,
         "CelesteGuiral": 1709753678,
         "LaurentM": 1740755344,
         "JeanPierreReina": 1710534975
@@ -212951,7 +217302,7 @@
     "Bruosteop": {
       "index": 8552,
       "owner_key": "jpkUDBzDETgpSs8KWoUYexpQeNGqkDcqw26YWiBvjRe",
-      "balance": 419829,
+      "balance": 459515,
       "membership_expire_on": 1719342502,
       "next_cert_issuable_on": 1681006012,
       "certs_received": {
@@ -212970,7 +217321,7 @@
     "jeanlucperriere": {
       "index": 8341,
       "owner_key": "js7GBPXQcYX9seTufbHv7rcKvqtMRCLLbUFm6Wed541",
-      "balance": 333159,
+      "balance": 372845,
       "membership_expire_on": 1715500574,
       "next_cert_issuable_on": 1680349010,
       "certs_received": {
@@ -212987,7 +217338,7 @@
     "CelineAsselin": {
       "index": 4509,
       "owner_key": "k7aTy3jW9ukTJ4THZ1o8VVUN88tiHceigrG6xQj75YS",
-      "balance": 1013832,
+      "balance": 1053518,
       "membership_expire_on": 1701733425,
       "next_cert_issuable_on": 1670248020,
       "certs_received": {
@@ -213001,11 +217352,11 @@
     "Bea": {
       "index": 2946,
       "owner_key": "kHgwCmGPuQiSsmYiNEnJ4MxXADorD9yihL6kbHx4AaT",
-      "balance": 772042,
+      "balance": 811728,
       "membership_expire_on": 1722880278,
       "next_cert_issuable_on": 1669449275,
       "certs_received": {
-        "Alinerv": 1695221337,
+        "Alinerv": 1758239835,
         "NansCoCreator": 1701233735,
         "Alter2021_83": 1716326222,
         "Fledoux83": 1702836141,
@@ -213029,10 +217380,26 @@
         "ortie": 1750894063
       }
     },
+    "oyo": {
+      "index": 13655,
+      "owner_key": "kLw4Sc3xxJUaBCq8CMbCywXPMFwdSvsY2KaTRqKt2AJ",
+      "balance": 53514,
+      "membership_expire_on": 1723030329,
+      "next_cert_issuable_on": 1695961221,
+      "certs_received": {
+        "FenderChristophe": 1758750849,
+        "Anthoxanthum67": 1754726275,
+        "Dracaufeu1990": 1757985905,
+        "miel67": 1756802200,
+        "hazed": 1758648379,
+        "seb2nor12": 1755131757,
+        "BertrandCGO": 1756412739
+      }
+    },
     "Cin": {
       "index": 9685,
       "owner_key": "kThc2W45TBpfrg8Dnxu7emFnzK4gQQLcfyb6a4EQQ8C",
-      "balance": 225077,
+      "balance": 264763,
       "membership_expire_on": 1722513753,
       "next_cert_issuable_on": 1686099518,
       "certs_received": {
@@ -213081,7 +217448,7 @@
     "Gina5772": {
       "index": 12509,
       "owner_key": "kUt6dCAFQ7UPkkMD9pJyrrsvSs6yTusSPJczGDPN6P9",
-      "balance": 127296,
+      "balance": 166982,
       "membership_expire_on": 1713900423,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -213095,7 +217462,7 @@
     "bobwallas": {
       "index": 11295,
       "owner_key": "kXfGuXa4ByuyNEtgA7osFcgLNLoR93LSyDXahKpAqCR",
-      "balance": 292624,
+      "balance": 332310,
       "membership_expire_on": 1705258857,
       "next_cert_issuable_on": 1674828393,
       "certs_received": {
@@ -213106,10 +217473,24 @@
         "Palo": 1736900719
       }
     },
+    "GerardMichel58": {
+      "index": 13581,
+      "owner_key": "keC9m2DgoXJepq9ZeZxaNCX5nJmAa7v7mSVj5HTUoDT",
+      "balance": 23666,
+      "membership_expire_on": 1725921743,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Icaunaise": 1757971037,
+        "Juttasmile": 1757892497,
+        "YIKING": 1757480758,
+        "Joss": 1757480481,
+        "Fee2rien": 1757523417
+      }
+    },
     "Titina": {
       "index": 9464,
       "owner_key": "kftxzHqDzPxHx9RnD55vjvWuAAzapqKWsGR812hRG1b",
-      "balance": 66693,
+      "balance": 163679,
       "membership_expire_on": 1724598167,
       "next_cert_issuable_on": 1680952267,
       "certs_received": {
@@ -213129,9 +217510,9 @@
     "BenoitC54": {
       "index": 8007,
       "owner_key": "ksKHVhAnAy1DfcsK3WpP2FmUapQ99B4ztkqKxvnsYuW",
-      "balance": 474713,
+      "balance": 514399,
       "membership_expire_on": 1711491885,
-      "next_cert_issuable_on": 1681826494,
+      "next_cert_issuable_on": 1696413395,
       "certs_received": {
         "Dom26": 1714880322,
         "JeanClaudePaulRobert": 1715296633,
@@ -213145,7 +217526,7 @@
     "Beya": {
       "index": 7658,
       "owner_key": "kteYQ5y4aGsjfbubKHW4kMG22YqB2nJkHW1uN72dNuM",
-      "balance": 544332,
+      "balance": 584018,
       "membership_expire_on": 1709766867,
       "next_cert_issuable_on": 1678278399,
       "certs_received": {
@@ -213159,7 +217540,7 @@
     "Loune": {
       "index": 6869,
       "owner_key": "m3Vi2CtoQE73WU8HV9mHqQbd7sQrWpVddHepGr1o2Nb",
-      "balance": 601834,
+      "balance": 641520,
       "membership_expire_on": 1706625945,
       "next_cert_issuable_on": 1649924439,
       "certs_received": {
@@ -213173,9 +217554,9 @@
     "Dayd": {
       "index": 13017,
       "owner_key": "m6DJ4fNSxX7UYysW4UnaYY3c3qGQL6TFo842eVedqWL",
-      "balance": 458392,
+      "balance": 533278,
       "membership_expire_on": 1719441642,
-      "next_cert_issuable_on": 0,
+      "next_cert_issuable_on": 1694519722,
       "certs_received": {
         "Gerardo": 1751013049,
         "ClarySM": 1751013049,
@@ -213187,13 +217568,13 @@
     "Sev07": {
       "index": 3527,
       "owner_key": "mAZP5UwFFLG3a5hm6haFEKSNwq45oepP4MDCEqbUTEm",
-      "balance": 1286815,
+      "balance": 1326501,
       "membership_expire_on": 1708300303,
       "next_cert_issuable_on": 1693468519,
       "certs_received": {
         "anouchka": 1707012206,
         "Reumy": 1707279314,
-        "MilieLibre": 1699502119,
+        "MilieLibre": 1759448617,
         "Stephio": 1706136299,
         "mathieu": 1707624090
       }
@@ -213201,9 +217582,9 @@
     "romainForca": {
       "index": 6246,
       "owner_key": "mBRRtVpnHNb6mDuMzWZErzjY5adti1QC7nkCCqRPo7P",
-      "balance": 262477,
-      "membership_expire_on": 1696602017,
-      "next_cert_issuable_on": 1674876849,
+      "balance": 282163,
+      "membership_expire_on": 1725892592,
+      "next_cert_issuable_on": 1695350478,
       "certs_received": {
         "SandrineMala": 1713428564,
         "Filico04": 1701025593,
@@ -213227,7 +217608,7 @@
     "JaredVI": {
       "index": 11100,
       "owner_key": "mBqDRQwV71NJFyRbJzWSvbyWFPAwRdyarFkeYGaCgZX",
-      "balance": 255627,
+      "balance": 295313,
       "membership_expire_on": 1703861716,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -213258,7 +217639,7 @@
     "EmmaBen": {
       "index": 12172,
       "owner_key": "mNddevVzSY1cyAv8r8Xd7QAkj96M7WgHsZgpyNMY3Hd",
-      "balance": 164472,
+      "balance": 204158,
       "membership_expire_on": 1710455870,
       "next_cert_issuable_on": 1684291421,
       "certs_received": {
@@ -213289,9 +217670,9 @@
     "ABuenVivir": {
       "index": 9549,
       "owner_key": "mmYkG293mHQfjFa71wkBhnZ84vtgBsQUeJpbcQwsGcL",
-      "balance": 177808,
+      "balance": 218291,
       "membership_expire_on": 1721600179,
-      "next_cert_issuable_on": 1692457449,
+      "next_cert_issuable_on": 1696682505,
       "certs_received": {
         "kapis": 1735947147,
         "ArtesaniaAna": 1731310234,
@@ -213315,8 +217696,10 @@
         "LysVida": 1751845215,
         "AnianaYpunto": 1747010930,
         "AroaVivaVoz": 1727474034,
+        "Camilarogelia13": 1759525068,
         "Leia": 1751874763,
         "NIUM": 1738524744,
+        "LeireArias": 1757572708,
         "kin55puravida": 1732526260,
         "altarcel": 1737509048,
         "MaEstherG1": 1738170421,
@@ -213332,11 +217715,13 @@
         "Jhonnier": 1754198292,
         "Elpelu": 1726714245,
         "LuFortes": 1743281922,
+        "JoRraGor": 1758785729,
         "Kris_Izaratia": 1733636504,
         "Heidiamarauna": 1733447365,
         "Noxtan": 1726031969,
         "MaAn_MeVi": 1735274119,
         "HARRI7": 1738619857,
+        "MariMardisfrutona": 1756629421,
         "AneSolEguzki": 1727207638,
         "Rodando": 1734725412,
         "GojiBerry": 1726508560,
@@ -213352,9 +217737,9 @@
     "Jean-Massage": {
       "index": 10580,
       "owner_key": "mniirhTngKehexXB5TtiF2HMu2WNMVv7rYVptfV9tE5",
-      "balance": 430192,
-      "membership_expire_on": 1700505910,
-      "next_cert_issuable_on": 1687775017,
+      "balance": 494878,
+      "membership_expire_on": 1726957699,
+      "next_cert_issuable_on": 1696327412,
       "certs_received": {
         "AnyesOlek": 1732144216,
         "Luciole": 1732263950,
@@ -213363,6 +217748,7 @@
         "Malau": 1741936418,
         "Guillemyannick": 1732222821,
         "PhilippeGuillemant": 1732568818,
+        "Tchara06": 1759294909,
         "Espialidocia": 1732064280
       }
     },
@@ -213385,14 +217771,13 @@
       "certs_received": {
         "Nanou18": 1752378571,
         "scanlegentil": 1729900004,
-        "Serrato": 1746374176,
-        "poka": 1694418877
+        "Serrato": 1746374176
       }
     },
     "MarinoAnimaux": {
       "index": 10926,
       "owner_key": "mvKBu5A3a1W44FqUUPj9VowgeTXbLR2SL5Hbz5jz4EV",
-      "balance": 761012,
+      "balance": 741698,
       "membership_expire_on": 1702781848,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -213407,7 +217792,7 @@
     "EmmanuelleH": {
       "index": 12662,
       "owner_key": "n5zbeYdqLdZYrLKnVK3pW8cTQyFBfgjNVdq7cQWimuf",
-      "balance": 144276,
+      "balance": 183962,
       "membership_expire_on": 1715221103,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -213424,11 +217809,11 @@
     "AldelaideDoppagne": {
       "index": 633,
       "owner_key": "nETcfPcYWmsb2NXEJ9EYEXwur3a8Ad96wVUsWGmEuCt",
-      "balance": 2098840,
+      "balance": 2138526,
       "membership_expire_on": 1700728231,
       "next_cert_issuable_on": 1674512005,
       "certs_received": {
-        "janhsh": 1697751161,
+        "janhsh": 1755545891,
         "JulienBolly": 1706252224,
         "MarcelDoppagne": 1700248835,
         "SabrinaFrance": 1700248835,
@@ -213441,33 +217826,27 @@
     "dymoon": {
       "index": 5734,
       "owner_key": "nG5KDqYtQWGNfpntANdc1KR9at7MehFDR2miCRYWyUv",
-      "balance": 634971,
+      "balance": 674657,
       "membership_expire_on": 1719096309,
       "next_cert_issuable_on": 1675946084,
       "certs_received": {
-        "Chantal": 1695170824,
-        "Riri": 1695170573,
         "Selena": 1718851650,
         "MARYBAL": 1717044634,
         "Harmonie13": 1718381658,
         "MAGSENS": 1713072587,
         "NaneDeProvence": 1717045686,
         "NathalieEtreSouverain": 1708139051,
-        "Maminou13": 1694455253,
         "Diessanne": 1697501568,
-        "Papillote": 1694455541,
         "Altaiire": 1721804198,
         "Yaya13280": 1698113066,
         "YukiSora": 1730236583,
-        "carineg": 1705820600,
-        "Josetre": 1695171086,
-        "Spiranne": 1695161225
+        "carineg": 1705820600
       }
     },
     "Dan": {
       "index": 12429,
       "owner_key": "nGgj1VYhjB4HfpLwKhRtsShFmMVs8xpz7VeyLmfi8CW",
-      "balance": 188840,
+      "balance": 228526,
       "membership_expire_on": 1712341812,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -213483,7 +217862,7 @@
     "Tcha": {
       "index": 6461,
       "owner_key": "nH1MuopW1Fx9cxxA96prwNreHQ1Ln8YL4Q2nC21p3Zx",
-      "balance": 522401,
+      "balance": 562087,
       "membership_expire_on": 1701126227,
       "next_cert_issuable_on": 1669614200,
       "certs_received": {
@@ -213498,9 +217877,9 @@
     "eno": {
       "index": 4518,
       "owner_key": "nL2hp35egWSFeu2kXaTaaFCtRFvBneCtBH13K3YBUMF",
-      "balance": 230479,
-      "membership_expire_on": 1700256617,
-      "next_cert_issuable_on": 1693551107,
+      "balance": 453022,
+      "membership_expire_on": 1726692933,
+      "next_cert_issuable_on": 1695043101,
       "certs_received": {
         "Jens777": 1746328553,
         "kapis": 1739343877,
@@ -213511,7 +217890,6 @@
         "Xisca": 1728937331,
         "Aatma": 1737282247,
         "CarmeCastineira": 1741583424,
-        "namagra": 1695412602,
         "sheveck": 1734678886,
         "Libertad22": 1756506282,
         "Xiscos": 1733635462,
@@ -213522,13 +217900,11 @@
         "MargalidaJeronia": 1737434713,
         "Francina": 1719817817,
         "Brahmaya": 1737435260,
-        "Lotus17": 1693754171,
         "YOSOYLUZ": 1733760637,
         "Tonibarri": 1737310178,
         "tuttle": 1729051011,
         "Rafa": 1714761238,
         "jagrau": 1740825392,
-        "ElenaMavida": 1695364622,
         "Miquel-herbes": 1739160269,
         "NORGERAL": 1717545718
       }
@@ -213536,9 +217912,9 @@
     "Cagnol85": {
       "index": 9448,
       "owner_key": "nVUS8vSVNW9USLd6B1VWj8zSbEM8D1pZrH65yNUiU1Z",
-      "balance": 806758,
+      "balance": 659444,
       "membership_expire_on": 1720639963,
-      "next_cert_issuable_on": 1674551698,
+      "next_cert_issuable_on": 1695615801,
       "certs_received": {
         "DaniailesA": 1750204761,
         "Ibnesa": 1726015008,
@@ -213561,18 +217937,33 @@
         "Calakendi": 1714097162
       }
     },
+    "Peonia": {
+      "index": 13543,
+      "owner_key": "ncckJo2nu4W1yusZY8vs4Pr96UGHXqEQf2d2gDQ42J7",
+      "balance": 36339,
+      "membership_expire_on": 1722259154,
+      "next_cert_issuable_on": 1696504676,
+      "certs_received": {
+        "LaFeeClochette": 1757395427,
+        "Aquaneo": 1757395786,
+        "Picsou": 1757396145,
+        "chantlavie60": 1757394671,
+        "AutomneIndien": 1754855398,
+        "Evanouche": 1757460301
+      }
+    },
     "fania": {
       "index": 4258,
       "owner_key": "ndYUMsDJoYLdVXq3bhxZaSVRGU6qDfuZsxDaGucRMoS",
-      "balance": 206572,
+      "balance": 132125,
       "membership_expire_on": 1718883842,
-      "next_cert_issuable_on": 1691216406,
+      "next_cert_issuable_on": 1694704532,
       "certs_received": {
         "InmaRegina": 1726649095,
+        "Zap": 1758175834,
         "RuthGuerrero": 1751427665,
         "kapis": 1729397780,
         "Cholo": 1747110349,
-        "carmela": 1694680271,
         "JACA": 1723161015,
         "Justis": 1743968463,
         "roberplantas": 1733176369,
@@ -213584,8 +217975,9 @@
         "sheveck": 1752457478,
         "Lurtxu": 1704443093,
         "Estherflamenki": 1755912581,
-        "Libertad22": 1698390128,
+        "Libertad22": 1756506282,
         "Josepeuta": 1734575161,
+        "AgnesJs": 1759095342,
         "vjrj": 1749144744,
         "Rulikauri": 1750460355,
         "VanePaz": 1706037604,
@@ -213599,6 +217991,7 @@
         "virginiaoreoro": 1746922896,
         "Pit": 1741493999,
         "Moren": 1744253825,
+        "Annae": 1757316932,
         "CarmenYogaMaa": 1727736447,
         "Caperucita": 1739870779,
         "Performance": 1740074674,
@@ -213612,9 +218005,10 @@
         "scanlegentil": 1754163842,
         "MARAL": 1706319148,
         "ziguli": 1716145577,
+        "NataSha": 1756712260,
         "Ardan1977": 1725574585,
         "llanero": 1719870960,
-        "GeraldineGarrigues": 1694455541,
+        "GeraldineGarrigues": 1757360670,
         "Bee": 1716231924,
         "Omar": 1745776299,
         "Magi": 1725608873,
@@ -213630,23 +218024,40 @@
         "Ura": 1716773733,
         "MaAn_MeVi": 1733874109,
         "moincagranada": 1737319044,
-        "ElenaMavida": 1695364622,
+        "ElenaMavida": 1757883368,
         "ManeLibre": 1742081996,
         "Seminare0612": 1735693034,
         "MonicaMu": 1744355433,
         "Runa_81": 1729976458,
         "Isalanzarote": 1728543064,
-        "SandraHeleno": 1695704274,
         "Arran": 1721083200,
         "Jkmbio": 1726290302,
         "alberto_wabisabi": 1727776661,
+        "Gclaire": 1756683190,
         "bert": 1749573781
       }
     },
+    "Patfil": {
+      "index": 13598,
+      "owner_key": "nfDoKSKFPo6p84pGfLDbHXGxiVyfwzRMzsUmMnFft48",
+      "balance": 20462,
+      "membership_expire_on": 1726256213,
+      "next_cert_issuable_on": 1696474498,
+      "certs_received": {
+        "AN-gela": 1758179515,
+        "Lilibeth79": 1758172989,
+        "AnthonyDel": 1758161574,
+        "Venceremos": 1759365141,
+        "KIAWE": 1758168785,
+        "Nyriel": 1758161574,
+        "NanouchkaM": 1758181519,
+        "LolotteCL": 1758830850
+      }
+    },
     "Zinivys07": {
       "index": 8137,
       "owner_key": "nrEfeKtdNjdhJdzWj1C67nH4GtwzvbngdW2GzQkix1S",
-      "balance": 506154,
+      "balance": 545840,
       "membership_expire_on": 1715000908,
       "next_cert_issuable_on": 1669289036,
       "certs_received": {
@@ -213662,7 +218073,7 @@
     "Delphine971": {
       "index": 11615,
       "owner_key": "nsqn6piZSQH2r11B5MT8wXQEQMM4hsJ2HYSZbkNdY9m",
-      "balance": 206149,
+      "balance": 245835,
       "membership_expire_on": 1707434243,
       "next_cert_issuable_on": 1677923797,
       "certs_received": {
@@ -213685,8 +218096,8 @@
     "BernadetteLerat": {
       "index": 6214,
       "owner_key": "ny2m7hJ6QcS3GhyUfR9a6hhNrsMmhJHqJS1g8i48rsz",
-      "balance": 675876,
-      "membership_expire_on": 1695770337,
+      "balance": 703704,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1658839731,
       "certs_received": {
         "nathaliemineau": 1700382303,
@@ -213705,7 +218116,7 @@
     "andregournier43": {
       "index": 7201,
       "owner_key": "o2DrxzLCmCGG4xGvc8XKgkmSt3MJK2XQ8ohtuctzFqx",
-      "balance": 428509,
+      "balance": 472195,
       "membership_expire_on": 1703327833,
       "next_cert_issuable_on": 1679744841,
       "certs_received": {
@@ -213775,7 +218186,6 @@
       "next_cert_issuable_on": 1671962205,
       "certs_received": {
         "ItiMahana": 1699047505,
-        "Jcteulier": 1693687599,
         "MoniQ": 1703891925,
         "Gaelducausse": 1698026993,
         "Waldmeister": 1702333480,
@@ -213795,7 +218205,7 @@
     "CloMimi": {
       "index": 7510,
       "owner_key": "o9hxqKgGSjf3Hu61sAX44cyGA2oEQkF7gyCpehNdCKa",
-      "balance": 597502,
+      "balance": 637188,
       "membership_expire_on": 1707355981,
       "next_cert_issuable_on": 1681826148,
       "certs_received": {
@@ -213819,7 +218229,7 @@
     "MissVegetal": {
       "index": 8285,
       "owner_key": "oK6soQCQVrHFiALRWVsKF3V1bMxPPKsF4uYmHxeMm22",
-      "balance": 481093,
+      "balance": 520779,
       "membership_expire_on": 1710783835,
       "next_cert_issuable_on": 1687687024,
       "certs_received": {
@@ -213841,7 +218251,7 @@
     "Kibo65": {
       "index": 10934,
       "owner_key": "oTDDQh6dyYtnxpZzyviF6T2u6GFkaAzHCczhxiejvJY",
-      "balance": 271453,
+      "balance": 311139,
       "membership_expire_on": 1702737681,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -213855,9 +218265,9 @@
     "Ciel": {
       "index": 7817,
       "owner_key": "ocAaxXJs2d6QjZZ8cjngvh7xUEWanq3eC75gHFP1fZa",
-      "balance": 25598,
+      "balance": 57284,
       "membership_expire_on": 1710433163,
-      "next_cert_issuable_on": 1692329759,
+      "next_cert_issuable_on": 1695009081,
       "certs_received": {
         "MATRIX67": 1713748781,
         "heomonde": 1728680144,
@@ -213882,7 +218292,7 @@
     "sebastienreis": {
       "index": 1789,
       "owner_key": "orviq21hjQxjZMvXfFxtsPoK5Jr2U7ZUsfNeVkWbxcB",
-      "balance": 1798832,
+      "balance": 1838518,
       "membership_expire_on": 1724786253,
       "next_cert_issuable_on": 1673085389,
       "certs_received": {
@@ -213910,7 +218320,7 @@
     "tremadile": {
       "index": 7433,
       "owner_key": "pTSzf5LidM3SQNRrxAbDbdG1UHzR7CPDQimkoGwTtS9",
-      "balance": 550731,
+      "balance": 590417,
       "membership_expire_on": 1709301305,
       "next_cert_issuable_on": 1648804746,
       "certs_received": {
@@ -213925,9 +218335,9 @@
     "Papyclaude": {
       "index": 11137,
       "owner_key": "pTsZ7ef16k6nPLfe6gndZcAQat6zgmuaCTzc2WpSnrU",
-      "balance": 241391,
+      "balance": 281077,
       "membership_expire_on": 1703869090,
-      "next_cert_issuable_on": 1686965421,
+      "next_cert_issuable_on": 1695311691,
       "certs_received": {
         "Evi50": 1736233288,
         "DelphineA": 1735500596,
@@ -213974,7 +218384,7 @@
     "Laurene": {
       "index": 9381,
       "owner_key": "pdvLcqnGYY2C1j6SGSFPTBHei53gL4nEFKhJ1TxWBpr",
-      "balance": 382894,
+      "balance": 422580,
       "membership_expire_on": 1719311446,
       "next_cert_issuable_on": 1677910013,
       "certs_received": {
@@ -214010,20 +218420,18 @@
     "tatinetteb": {
       "index": 5232,
       "owner_key": "q1wzQ5KvSBDHcFRk5SKrH7KaSDHv3JUbzRQd3XF6m4J",
-      "balance": 265940,
+      "balance": 165326,
       "membership_expire_on": 1710034782,
-      "next_cert_issuable_on": 1693277644,
+      "next_cert_issuable_on": 1696158367,
       "certs_received": {
-        "RemiBouteloup": 1694620254,
         "GUL40_Fr1": 1750192811,
         "NaneDeProvence": 1738711501,
         "Karigera": 1700719092,
         "NathalieEtreSouverain": 1713510403,
         "NathalieCatelin": 1721525445,
-        "IngridCourreges": 1696421398,
+        "IngridCourreges": 1759262365,
         "HugoTrentesaux": 1756587616,
-        "Laulau": 1694366801,
-        "Cdrix": 1696649342,
+        "Laulau": 1757880897,
         "Salsa33150": 1750299771,
         "Jackiestl13": 1722647393,
         "JeePofMars": 1749580409,
@@ -214033,9 +218441,9 @@
         "Lacabane": 1746152774,
         "Thorvald": 1722474513,
         "Christine13": 1707245633,
-        "CookieLilas": 1694832750,
+        "Linata": 1758312201,
         "Druilhe13117": 1751335628,
-        "Numerosympa": 1693522774,
+        "Numerosympa": 1758081086,
         "Dzsaga": 1752852322,
         "CHANCE": 1735509992,
         "LeroySebastien": 1703415539,
@@ -214049,7 +218457,7 @@
     "AnneT": {
       "index": 2595,
       "owner_key": "q9CTwYXueggmReufRsJ3wZx6WG7khmoEGig8JDkke9u",
-      "balance": 990634,
+      "balance": 1030320,
       "membership_expire_on": 1707104432,
       "next_cert_issuable_on": 1691067626,
       "certs_received": {
@@ -214066,7 +218474,6 @@
         "MelliaGaia": 1733211812,
         "Chantal-04": 1711822308,
         "Celine84": 1702674354,
-        "Lara": 1696278829,
         "ChristineWilloth26": 1727216943,
         "OLDBLACK84": 1702938073
       }
@@ -214074,7 +218481,7 @@
     "Ronceveau": {
       "index": 5361,
       "owner_key": "qA29aPw1dwysGrvhrZ7UWm77roH4bTE4QjRuDLvuVYn",
-      "balance": 797253,
+      "balance": 836939,
       "membership_expire_on": 1718409728,
       "next_cert_issuable_on": 1686924401,
       "certs_received": {
@@ -214097,7 +218504,7 @@
     "Gilrib": {
       "index": 2910,
       "owner_key": "qAYVccegkP5hEyVBUzuLMH8xvDt8sDBVdkyJfkHrPHG",
-      "balance": 1224842,
+      "balance": 1264528,
       "membership_expire_on": 1712053820,
       "next_cert_issuable_on": 1684325850,
       "certs_received": {
@@ -214105,7 +218512,7 @@
         "gaaltic": 1698208766,
         "Ceriseblu": 1698208766,
         "Aneuf": 1699220457,
-        "ChristopheRobine": 1697316615,
+        "ChristopheRobine": 1757474273,
         "LuckyKat": 1698208766
       }
     },
@@ -214120,7 +218527,7 @@
     "RuKu": {
       "index": 10904,
       "owner_key": "qDQJdLpcDVYf4Pt5GGmCmp3n4vU3n6ERnAHTVsq4N21",
-      "balance": 268130,
+      "balance": 307816,
       "membership_expire_on": 1702941683,
       "next_cert_issuable_on": 1693378414,
       "certs_received": {
@@ -214138,7 +218545,7 @@
     "FredericH2O": {
       "index": 1888,
       "owner_key": "qGEasgxMQnrz1fNmUTUidEL1NRyg1VavYUQV5M1sXkc",
-      "balance": 1001350,
+      "balance": 1041036,
       "membership_expire_on": 1709139152,
       "next_cert_issuable_on": 1692433414,
       "certs_received": {
@@ -214160,16 +218567,12 @@
       "balance": 1246948,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 0,
-      "certs_received": {
-        "Yannis": 1694475346,
-        "MichLang": 1694493621,
-        "JacquelinePlan": 1694474252
-      }
+      "certs_received": {}
     },
     "paulochon": {
       "index": 7913,
       "owner_key": "qUni2L8VRHhpsFwGQba6cvV9u8Yhn56rG4EpNB2bJD4",
-      "balance": 513970,
+      "balance": 553656,
       "membership_expire_on": 1713308568,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -214192,7 +218595,7 @@
     "CDEPLOT": {
       "index": 6886,
       "owner_key": "qX7h1f1gbkBMNFiaHx7z3oixr1EFhwiAPoBESEpeWa6",
-      "balance": 588181,
+      "balance": 627867,
       "membership_expire_on": 1706831974,
       "next_cert_issuable_on": 1685631414,
       "certs_received": {
@@ -214213,9 +218616,9 @@
     "Wipsita": {
       "index": 8620,
       "owner_key": "qcvqQ6qpPYs31kUNfLpVBS1fwJheP9RU4Y1acovzshN",
-      "balance": 292443,
+      "balance": 582129,
       "membership_expire_on": 1712075091,
-      "next_cert_issuable_on": 1692510375,
+      "next_cert_issuable_on": 1696427850,
       "certs_received": {
         "Maryc": 1735350700,
         "Natalya71": 1734586894,
@@ -214244,7 +218647,7 @@
     "SukhaMagali": {
       "index": 11185,
       "owner_key": "qoAjgkCHC5ZxSHo784bXhjvBVzmXVUw2RaSv4m4Hhic",
-      "balance": 251295,
+      "balance": 290981,
       "membership_expire_on": 1704999223,
       "next_cert_issuable_on": 1687952563,
       "certs_received": {
@@ -214262,7 +218665,7 @@
     "GuillaumeCapsowl": {
       "index": 6228,
       "owner_key": "qtQzpBrk8H2RCVBQ5QUKJRZsY7ypomTpzg5RwkgSuWz",
-      "balance": 482527,
+      "balance": 522213,
       "membership_expire_on": 1723764750,
       "next_cert_issuable_on": 1683023269,
       "certs_received": {
@@ -214335,9 +218738,9 @@
     "Fabricealexandre": {
       "index": 2063,
       "owner_key": "r3bYrVAXCp5yQ55uAJW3Cz4iqk4sr166m5VZBwuWCyP",
-      "balance": 933238,
-      "membership_expire_on": 1696727547,
-      "next_cert_issuable_on": 1688275812,
+      "balance": 942924,
+      "membership_expire_on": 1727445598,
+      "next_cert_issuable_on": 1696497974,
       "certs_received": {
         "Emilie850": 1701840324,
         "Helene-petiteriviere": 1727285979,
@@ -214361,7 +218764,7 @@
     "Olm-e": {
       "index": 178,
       "owner_key": "r7Ff219BKSmervyZEJcLU1ncGpgGU7XM4PrchANT8VD",
-      "balance": 2218965,
+      "balance": 2258651,
       "membership_expire_on": 1719244388,
       "next_cert_issuable_on": 1662647319,
       "certs_received": {
@@ -214375,15 +218778,16 @@
     "iafu": {
       "index": 4549,
       "owner_key": "rALm5FZ1ggHqSzpZMozY41PKYR2ZZYcpc1UAHzNB7Ac",
-      "balance": 595136,
+      "balance": 634922,
       "membership_expire_on": 1723399064,
-      "next_cert_issuable_on": 1693108596,
+      "next_cert_issuable_on": 1695459928,
       "certs_received": {
         "lavenirestunlongpasse": 1732185596,
         "NoraMaela": 1710094958,
         "casadesam": 1748554347,
         "Andre208": 1738611912,
         "Maaude09": 1739396473,
+        "CTL": 1756345327,
         "Attilax": 1756110558,
         "Houriadeparissud": 1741886582,
         "Sailorcherry": 1737000853,
@@ -214393,11 +218797,10 @@
     "ChloeLebon": {
       "index": 1460,
       "owner_key": "rHynk3BPoki22sQ8rrLMCYUP2H3s7bpF3JVW8vbZZJA",
-      "balance": 1598234,
-      "membership_expire_on": 1694024782,
+      "balance": 1604642,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1669117325,
       "certs_received": {
-        "theresecaillere": 1696545551,
         "GaelleLC": 1732160525,
         "GaryGrandin": 1742016301,
         "YanickChareille": 1727241807,
@@ -214430,7 +218833,7 @@
     "LaurenceLeSoleil": {
       "index": 11365,
       "owner_key": "rjsafdEp1uuMPcTK6pDt7GMuFnr79CAYSrw5J48nyar",
-      "balance": 361970,
+      "balance": 561656,
       "membership_expire_on": 1706216293,
       "next_cert_issuable_on": 1686383945,
       "certs_received": {
@@ -214456,9 +218859,9 @@
     "Jacques74": {
       "index": 12059,
       "owner_key": "rs86UTFZgtUvcgwRy858S7xJeNR1vAKU914Gv4TRMZ6",
-      "balance": 190143,
+      "balance": 229829,
       "membership_expire_on": 1710160238,
-      "next_cert_issuable_on": 1681884262,
+      "next_cert_issuable_on": 1696460643,
       "certs_received": {
         "CyrilPommier": 1741728602,
         "Gossein": 1744654042,
@@ -214480,7 +218883,7 @@
     "Dala": {
       "index": 6988,
       "owner_key": "s3KYcegW8Zr2bLsRQACEzdnbm6aS1D3cvxxGoZBC9Sq",
-      "balance": 233447,
+      "balance": 273133,
       "membership_expire_on": 1716847022,
       "next_cert_issuable_on": 1658045786,
       "certs_received": {
@@ -214497,7 +218900,7 @@
     "MargauxR46": {
       "index": 12246,
       "owner_key": "s5X9rpHmPzRsupssQMKjK4RSCLBEqpVf8chiBXsBP7g",
-      "balance": 157064,
+      "balance": 167750,
       "membership_expire_on": 1711982615,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -214511,7 +218914,7 @@
     "Lilidanse": {
       "index": 11135,
       "owner_key": "s5XH4Ce84uYbRvpomGLjUdpoFJGPzYY14Mr66PZeZAn",
-      "balance": 381391,
+      "balance": 421077,
       "membership_expire_on": 1702306532,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -214528,9 +218931,9 @@
     "Coteaufleuri": {
       "index": 4131,
       "owner_key": "sNfEayTf3Ndx5F1eERqBmq6iLWXxnNB2TwujgrjsgiK",
-      "balance": 867185,
+      "balance": 906871,
       "membership_expire_on": 1704726319,
-      "next_cert_issuable_on": 1657620985,
+      "next_cert_issuable_on": 1694649072,
       "certs_received": {
         "LemanRuss": 1720748702,
         "Claude": 1708337010,
@@ -214545,8 +218948,8 @@
     "EmmanuelDerkenne": {
       "index": 215,
       "owner_key": "sPdb9y2mK6SiY7YH3mBoNxFwZ592VyLdT3tnsukcYrj",
-      "balance": 1007499,
-      "membership_expire_on": 1696327874,
+      "balance": 844305,
+      "membership_expire_on": 1725996813,
       "next_cert_issuable_on": 1681537901,
       "certs_received": {
         "SylvieBeaumontPerron": 1710478133,
@@ -214572,7 +218975,7 @@
     "JimVry": {
       "index": 12008,
       "owner_key": "sYTB6x8Vb19Efn915oowk8wWUdqbCXShJPtf5XCuao3",
-      "balance": 189379,
+      "balance": 229065,
       "membership_expire_on": 1708563821,
       "next_cert_issuable_on": 1684049274,
       "certs_received": {
@@ -214607,7 +219010,7 @@
     "Neus": {
       "index": 10026,
       "owner_key": "sZSdK1imYMvXaamknxNW2x6i4rQLxnQGysHSauJD3Ld",
-      "balance": 269136,
+      "balance": 308822,
       "membership_expire_on": 1723634445,
       "next_cert_issuable_on": 1692151226,
       "certs_received": {
@@ -214636,7 +219039,7 @@
     "sarahkonat": {
       "index": 10915,
       "owner_key": "sftFK3DzrEV5LVsdCpqxFfnaWtoNuAWC8rADwfqRDgH",
-      "balance": 271671,
+      "balance": 311357,
       "membership_expire_on": 1702745662,
       "next_cert_issuable_on": 1675182562,
       "certs_received": {
@@ -214647,6 +219050,7 @@
         "Audeko": 1734303262,
         "AmandineDupret": 1734295822,
         "AnnC57": 1734579531,
+        "TailleDouce": 1757975485,
         "jon": 1734575959,
         "Corentine": 1734322151,
         "Claire11": 1734302738
@@ -214655,7 +219059,7 @@
     "Nath26": {
       "index": 10268,
       "owner_key": "sh6tVMwr9KSHQ1G7wkjhirdYM9vcmRXskcmFZnpZXgA",
-      "balance": 400377,
+      "balance": 440063,
       "membership_expire_on": 1698002293,
       "next_cert_issuable_on": 1680864311,
       "certs_received": {
@@ -214680,7 +219084,7 @@
     "abdel": {
       "index": 7129,
       "owner_key": "skekdbxpVVVzRsHzJuLXwmzQ5niCmy18kSMuQZZBNtj",
-      "balance": 531045,
+      "balance": 570731,
       "membership_expire_on": 1708009926,
       "next_cert_issuable_on": 1649304971,
       "certs_received": {
@@ -214694,7 +219098,7 @@
     "ChristineBriquet": {
       "index": 7085,
       "owner_key": "sqMJTBonrQrBiFVVrMnpQGyoKS6aE4c2bYy2seAnksL",
-      "balance": 388213,
+      "balance": 427899,
       "membership_expire_on": 1707737435,
       "next_cert_issuable_on": 1676252088,
       "certs_received": {
@@ -214716,7 +219120,7 @@
     "Tarak": {
       "index": 13168,
       "owner_key": "swQnvsnjBherBULAdtUBFcLzuWvqkpyXBwsYccwjXZJ",
-      "balance": 50196,
+      "balance": 89882,
       "membership_expire_on": 1720038274,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -214730,7 +219134,7 @@
     "ChrisAll": {
       "index": 10321,
       "owner_key": "t4qJm6eERv9RZrrMjnjFA9FJ88UU8AcNFLp78qpPbrC",
-      "balance": 250695,
+      "balance": 290381,
       "membership_expire_on": 1699740097,
       "next_cert_issuable_on": 1692920450,
       "certs_received": {
@@ -214760,7 +219164,7 @@
     "Esmee": {
       "index": 10899,
       "owner_key": "t6MMi4NSPBpNoAevb7GwxPGuBny855thLWR966iVCnb",
-      "balance": 269571,
+      "balance": 309257,
       "membership_expire_on": 1702065298,
       "next_cert_issuable_on": 1684065601,
       "certs_received": {
@@ -214783,7 +219187,7 @@
     "MarieMarquilly": {
       "index": 8596,
       "owner_key": "tBYnhmT1mQq1rhJk7iszS3SmoEVRnb5YRbQRDgsrQYw",
-      "balance": 362971,
+      "balance": 402657,
       "membership_expire_on": 1716150514,
       "next_cert_issuable_on": 1660918123,
       "certs_received": {
@@ -214798,8 +219202,8 @@
     "Tatampo": {
       "index": 6243,
       "owner_key": "tFH3ZMjFCgMbqcfZLUNUY5HdS8vDiosCXybMm4hPyup",
-      "balance": 574545,
-      "membership_expire_on": 1695770907,
+      "balance": 613153,
+      "membership_expire_on": 1727373195,
       "next_cert_issuable_on": 1675204678,
       "certs_received": {
         "ManUtopiK": 1708208685,
@@ -214816,12 +219220,11 @@
     "ericyd": {
       "index": 864,
       "owner_key": "tPjpfMi6qe1KauXU8EiHAXCGV3Ubie85yVfDTi7HikY",
-      "balance": 2074835,
+      "balance": 2114521,
       "membership_expire_on": 1698612872,
       "next_cert_issuable_on": 1645515839,
       "certs_received": {
         "AnneB": 1747770404,
-        "Damien": 1695089417,
         "anouchka": 1742147999,
         "PierreYves": 1704847168,
         "VAOULEVENT": 1706729019,
@@ -214836,8 +219239,8 @@
     "Sergio51": {
       "index": 9620,
       "owner_key": "tSjn8Emfqusa9bMuNkrJAYeZ3kox3TDC94T99hogbuB",
-      "balance": 404704,
-      "membership_expire_on": 1694454098,
+      "balance": 416452,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1675077354,
       "certs_received": {
         "dch38": 1726942039,
@@ -214858,7 +219261,7 @@
     "Maurice971": {
       "index": 7061,
       "owner_key": "tY8ZQMwM5YNsAfopYB5fsqBC4T5e8McxtSBjh8DFiju",
-      "balance": 600319,
+      "balance": 640005,
       "membership_expire_on": 1708279764,
       "next_cert_issuable_on": 1664355694,
       "certs_received": {
@@ -214885,15 +219288,16 @@
     "Passparis": {
       "index": 12702,
       "owner_key": "tcUMuuarv4a7GWLh1SjAKFnBab66ZXrPuhwofDZJUAA",
-      "balance": 115392,
+      "balance": 147132,
       "membership_expire_on": 1715712704,
-      "next_cert_issuable_on": 1692498625,
+      "next_cert_issuable_on": 1696463614,
       "certs_received": {
         "Nina38": 1750802820,
         "Rosalie": 1747682506,
         "Denis": 1747680993,
         "Furiosa": 1747637588,
         "Danielle": 1748423468,
+        "Miccou": 1759465132,
         "Mazurka": 1747657261,
         "Anolisbaladin": 1747637588
       }
@@ -214901,7 +219305,7 @@
     "Caillou": {
       "index": 7289,
       "owner_key": "td49EFQJ8yraLZ53hStNBydoXC6ZS8yrcohq8y14zpc",
-      "balance": 513357,
+      "balance": 553043,
       "membership_expire_on": 1708297348,
       "next_cert_issuable_on": 1669033611,
       "certs_received": {
@@ -214933,12 +219337,13 @@
     "EricBourdet": {
       "index": 7821,
       "owner_key": "tjKAQqxtjcv6LPE1t2NWcB44yYihrERHgw7GCbTmcs3",
-      "balance": 552278,
+      "balance": 643764,
       "membership_expire_on": 1709472189,
-      "next_cert_issuable_on": 1669578586,
+      "next_cert_issuable_on": 1696481620,
       "certs_received": {
         "nashira": 1714492274,
         "MurielLaragne": 1732315677,
+        "Sofiachante": 1759271767,
         "CaroleLonguet": 1713070385,
         "HenriRGN": 1714879821,
         "PhilippeGuillemant": 1712792723,
@@ -214951,7 +219356,7 @@
     "PlumedeChat": {
       "index": 12331,
       "owner_key": "tmWfcCEPGViCTkTVvAJySfqAbsrcoNkDn3zntDwbDa1",
-      "balance": 199520,
+      "balance": 239206,
       "membership_expire_on": 1712548118,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -214965,7 +219370,7 @@
     "Pipootz": {
       "index": 13133,
       "owner_key": "tuzfmLTDjJRHHUDCovqN6sC64jZBm3QRSGnXJSt6fBq",
-      "balance": 75338,
+      "balance": 205024,
       "membership_expire_on": 1718043474,
       "next_cert_issuable_on": 1692346536,
       "certs_received": {
@@ -214982,7 +219387,7 @@
     "RioPrado": {
       "index": 12097,
       "owner_key": "tyt5vg1gKvP597G5njJpgFY3FEbjdMfCsPf8bgcvRez",
-      "balance": 174048,
+      "balance": 209734,
       "membership_expire_on": 1710454451,
       "next_cert_issuable_on": 1679811360,
       "certs_received": {
@@ -214997,7 +219402,7 @@
     "tifoutouan": {
       "index": 7858,
       "owner_key": "tzrAAksLRkPYYhygnRYbTVdpCaDEzwayxjYimKgmyGQ",
-      "balance": 519225,
+      "balance": 558911,
       "membership_expire_on": 1713267836,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -215011,9 +219416,9 @@
     "Annastro81": {
       "index": 12378,
       "owner_key": "u1fRUe4KYVH9sRwjBzH1VkeZo2SQ5f2nSwF63XVU5a3",
-      "balance": 345080,
+      "balance": 500366,
       "membership_expire_on": 1713016320,
-      "next_cert_issuable_on": 1687123975,
+      "next_cert_issuable_on": 1696074734,
       "certs_received": {
         "Bea813": 1748833644,
         "Chtmosaik": 1744601146,
@@ -215035,7 +219440,7 @@
     "Jyothi": {
       "index": 12731,
       "owner_key": "uByXKSB82dJWG9YaXNwyBmZxDG9nkZrtzbsKXo9sNW2",
-      "balance": 106800,
+      "balance": 146486,
       "membership_expire_on": 1715200308,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -215057,7 +219462,7 @@
     "Ddeellpphhiinnee": {
       "index": 7716,
       "owner_key": "uFsVusJ6HHiaRivdWKSqfkS5Jfodi6evQmuP3fdx3iw",
-      "balance": 392486,
+      "balance": 432172,
       "membership_expire_on": 1705334069,
       "next_cert_issuable_on": 1688027610,
       "certs_received": {
@@ -215090,7 +219495,7 @@
     "Mianjeke": {
       "index": 8839,
       "owner_key": "uGyxBqPmxDymVQBuE3z26UJSr2wpQAbEANRSQRphLjk",
-      "balance": 522153,
+      "balance": 561839,
       "membership_expire_on": 1715276564,
       "next_cert_issuable_on": 1668515811,
       "certs_received": {
@@ -215132,7 +219537,7 @@
     "Izar": {
       "index": 9201,
       "owner_key": "uV9Tw9uG1TfZiuHmAurTzzn5hWdVRnWq8v4i1deYtYu",
-      "balance": 359682,
+      "balance": 385368,
       "membership_expire_on": 1721777808,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -215148,10 +219553,11 @@
     "Kimlane": {
       "index": 8473,
       "owner_key": "ubs45yfCkLBQGN8RtFHu1LfiL2VtZezvyXFJH9XigpM",
-      "balance": 520951,
+      "balance": 560637,
       "membership_expire_on": 1716770641,
       "next_cert_issuable_on": 1685418718,
       "certs_received": {
+        "jeje43": 1757138902,
         "AKOUNAMATATA": 1736107555,
         "Marc135": 1718247096,
         "TataYoyo": 1718248089,
@@ -215178,9 +219584,9 @@
     "mollenthiel": {
       "index": 2151,
       "owner_key": "udYTe9mYsU4fvr7fVBECLK6z2SxNi1Xfk8DRrvcgiFu",
-      "balance": 1595190,
-      "membership_expire_on": 1701527247,
-      "next_cert_issuable_on": 1674144967,
+      "balance": 1634876,
+      "membership_expire_on": 1728147418,
+      "next_cert_issuable_on": 1696665858,
       "certs_received": {
         "Libertiste": 1733082962,
         "DidierDavid": 1738669153,
@@ -215189,14 +219595,14 @@
         "Caroleluciole": 1697693946,
         "Cat": 1750021062,
         "Mazie1991": 1706740342,
-        "Leana": 1695067379,
+        "Camille": 1759712705,
         "VitoAndersen": 1741721355
       }
     },
     "Yococo": {
       "index": 11657,
       "owner_key": "ueU3hzvHG42LdWPWZRuoG47uzneYeASh6Vjgun7gLgg",
-      "balance": 198013,
+      "balance": 237699,
       "membership_expire_on": 1707967604,
       "next_cert_issuable_on": 1693373459,
       "certs_received": {
@@ -215210,7 +219616,7 @@
     "NICO2011": {
       "index": 13254,
       "owner_key": "ugHrMf1bD76JP47QGWtzo9CpCjSv4gHcmSdxmLrvaVy",
-      "balance": 66312,
+      "balance": 100998,
       "membership_expire_on": 1717608035,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -215224,8 +219630,8 @@
     "GregoryBonnet": {
       "index": 8181,
       "owner_key": "ukoi3ETFfZx86dw6ajQmpoRxBRZboMQVfGZyc35CwyW",
-      "balance": 440722,
-      "membership_expire_on": 0,
+      "balance": 477914,
+      "membership_expire_on": 1727097079,
       "next_cert_issuable_on": 1667803916,
       "certs_received": {
         "Raphaelle": 1715676536,
@@ -215239,9 +219645,9 @@
     "Jesck": {
       "index": 8893,
       "owner_key": "usFbRkNqkZeaH7H8B9JcNYijDuV2UkwLtkb6Smpq99z",
-      "balance": 56670,
+      "balance": 155719,
       "membership_expire_on": 1715276564,
-      "next_cert_issuable_on": 1690466708,
+      "next_cert_issuable_on": 1695487251,
       "certs_received": {
         "Albertine19": 1729551864,
         "lanoire": 1720912841,
@@ -215262,6 +219668,7 @@
         "Chrissbrl": 1736369198,
         "veracachan": 1750115122,
         "YvesP": 1734828637,
+        "Fred": 1758146490,
         "AudreyWhatt": 1731650529,
         "Charlon": 1742974042,
         "francoislibre": 1733817326,
@@ -215269,13 +219676,14 @@
         "OrAnge": 1753509638,
         "HyperBrut": 1721036336,
         "LizaCarone": 1743276566,
-        "Freco": 1721023122
+        "Freco": 1721023122,
+        "Numerus47": 1758258774
       }
     },
     "Guilhom347": {
       "index": 5059,
       "owner_key": "usKVPTu3aQQLjQDbtCB7VvFS7tWz6J1dqVhX6JHNcmE",
-      "balance": 681926,
+      "balance": 721612,
       "membership_expire_on": 1707161209,
       "next_cert_issuable_on": 1653736050,
       "certs_received": {
@@ -215289,12 +219697,11 @@
     "ArianeRiveros": {
       "index": 4891,
       "owner_key": "uyDL1ehFVgfGcLhwEN4Z4rULAWeyxBeQ6LxaNLoecWT",
-      "balance": 736076,
+      "balance": 768286,
       "membership_expire_on": 1708050556,
-      "next_cert_issuable_on": 1676564956,
+      "next_cert_issuable_on": 1693900407,
       "certs_received": {
         "FrankDeMey": 1704330327,
-        "AmeSurTerre": 1695778032,
         "AlixMvo": 1701400158,
         "casadesam": 1748502645,
         "CapuChoeur": 1701424099,
@@ -215302,7 +219709,6 @@
         "MarieBertheRanwet": 1703392451,
         "Mesange": 1720835115,
         "EveRen": 1713575755,
-        "GeneVieve": 1694233859,
         "SofianneErler": 1709936263,
         "HerbeFolle": 1720151719,
         "Gclaire": 1703466083,
@@ -215312,7 +219718,7 @@
     "Yvv": {
       "index": 8352,
       "owner_key": "v4bSiagNx2gYDA8rRTWByMNnpdHMajQwzxugWbmJBqA",
-      "balance": 514585,
+      "balance": 554271,
       "membership_expire_on": 1713670355,
       "next_cert_issuable_on": 1682103091,
       "certs_received": {
@@ -215327,6 +219733,7 @@
         "Reumy": 1726130052,
         "GUL40_K1r": 1726092051,
         "Celine": 1717292909,
+        "Jusepe": 1757128920,
         "EtK": 1717054606,
         "AliceMaurette": 1717023082,
         "Mik974": 1718215255,
@@ -215339,7 +219746,8 @@
         "Paola": 1741659477,
         "poka": 1741463231,
         "Maaltir": 1741468002,
-        "mathieu": 1746760792
+        "mathieu": 1746760792,
+        "flodef": 1756941341
       }
     },
     "Nono": {
@@ -215361,7 +219769,7 @@
     "Orenda8": {
       "index": 6470,
       "owner_key": "v6xsYkkNGjk5FzeE7WK6tCUkEWSRCXF7mAZkmPqFfQK",
-      "balance": 656033,
+      "balance": 695719,
       "membership_expire_on": 1701968541,
       "next_cert_issuable_on": 1688132751,
       "certs_received": {
@@ -215375,7 +219783,7 @@
     "MarieJacquet": {
       "index": 11601,
       "owner_key": "v9yEGMfjGYoPNaY1tH1QrQXoEg127my715HDXXbakht",
-      "balance": 207608,
+      "balance": 247294,
       "membership_expire_on": 1707441764,
       "next_cert_issuable_on": 1684146226,
       "certs_received": {
@@ -215389,7 +219797,7 @@
     "Fefy": {
       "index": 10659,
       "owner_key": "vAXKEaxhJvg5GHPxYs4wDfynDSQb1BeXARUVbmmRhRZ",
-      "balance": 186156,
+      "balance": 225842,
       "membership_expire_on": 1699828399,
       "next_cert_issuable_on": 1681795829,
       "certs_received": {
@@ -215419,7 +219827,7 @@
     "zoe": {
       "index": 12991,
       "owner_key": "vL6axQdiEJAeyKLXwEnfm8iVBZV2tg8UhRbMF1Uavzk",
-      "balance": 70388,
+      "balance": 110074,
       "membership_expire_on": 1718989552,
       "next_cert_issuable_on": 1690825613,
       "certs_received": {
@@ -215471,7 +219879,7 @@
     "Edith2213": {
       "index": 7545,
       "owner_key": "vu3GK8PN6BupdhvA12Peyxy2gU3XNVx8mNJsJ13g2zY",
-      "balance": 248469,
+      "balance": 217155,
       "membership_expire_on": 1708973908,
       "next_cert_issuable_on": 1677492690,
       "certs_received": {
@@ -215479,17 +219887,20 @@
         "ClaireAzur": 1712111921,
         "Tchois": 1712131899,
         "Delfe": 1712130862,
+        "LilianeLilou": 1756949335,
         "marie3106": 1725954770,
         "guillaumedangin": 1712215471,
+        "Cathylousouc": 1756954299,
         "Maiana": 1719029163,
         "TenShao": 1719779738,
+        "ClaireSMV": 1757012865,
         "S-H": 1712118356
       }
     },
     "EricMoreira": {
       "index": 933,
       "owner_key": "vusNg7QEbQNansN4UfkVbuR4wjeRmdYHD76SvdTERuM",
-      "balance": 1252047,
+      "balance": 1291733,
       "membership_expire_on": 1697075928,
       "next_cert_issuable_on": 1665590328,
       "certs_received": {
@@ -215503,15 +219914,14 @@
         "Fannyhihihi": 1702185856,
         "RobinRoni": 1707810209,
         "DanieleBachere": 1711093616,
-        "Lea": 1693520641,
         "Marylou": 1699591167
       }
     },
     "treflebonheur": {
       "index": 9858,
       "owner_key": "w2bGC8DeGSxMQWYFTJWJHwjeZKUzHX5BhBKLhLeMugz",
-      "balance": 326501,
-      "membership_expire_on": 1696604232,
+      "balance": 359709,
+      "membership_expire_on": 0,
       "next_cert_issuable_on": 1686726161,
       "certs_received": {
         "Sansandetry": 1728423412,
@@ -215527,7 +219937,7 @@
     "RosalieBAYLE": {
       "index": 6201,
       "owner_key": "wFiKkennVFw4iXHwsaDFq6RjycSKKXpugecXNXeT6kf",
-      "balance": 641074,
+      "balance": 680760,
       "membership_expire_on": 1704108288,
       "next_cert_issuable_on": 1672632002,
       "certs_received": {
@@ -215535,11 +219945,11 @@
         "SolangeAIME": 1700595375,
         "Henri31": 1735676400,
         "Nineige": 1700698090,
-        "DavidBay": 1700603699,
+        "DavidBay": 1757436960,
         "PascalGuillemain": 1702169669,
         "LICORNECORNE": 1735675606,
         "SuzyFrutti": 1701722324,
-        "Fabricealexandre": 1700852344
+        "Fabricealexandre": 1759541174
       }
     },
     "Sante_Nature": {
@@ -215553,7 +219963,7 @@
     "TugceKut": {
       "index": 11140,
       "owner_key": "wKYqJwwaonXt3tmPdyDNidfXepwjZ7ZUgRyXtNV9tyn",
-      "balance": 251391,
+      "balance": 291077,
       "membership_expire_on": 1704045500,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -215567,7 +219977,7 @@
     "ificouldswim": {
       "index": 12384,
       "owner_key": "wS7Vnhh4Fh8s9uUDBc2ZVzm65QrXtMGNEyawsd4sUBD",
-      "balance": 174112,
+      "balance": 213798,
       "membership_expire_on": 1711411087,
       "next_cert_issuable_on": 1689538778,
       "certs_received": {
@@ -215583,9 +219993,9 @@
     "ElvireDracenie": {
       "index": 10302,
       "owner_key": "wSSPwwBb2QZKTDLJL5heZspfedeCJWSpnU5MBpGfPbG",
-      "balance": 350754,
-      "membership_expire_on": 1695583871,
-      "next_cert_issuable_on": 0,
+      "balance": 440440,
+      "membership_expire_on": 1725487516,
+      "next_cert_issuable_on": 1696319658,
       "certs_received": {
         "Robin_et_Odile": 1727141823,
         "Cheyennegaia": 1729032850,
@@ -215594,6 +220004,20 @@
         "tomval83": 1731357069
       }
     },
+    "Manou34": {
+      "index": 13476,
+      "owner_key": "wYgCP9cQ1AjjetrSCsksLRyddgtE2nYBSXn1aqYVyLa",
+      "balance": 59686,
+      "membership_expire_on": 1722281224,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "CaroleBroutin": 1755951706,
+        "Agidoo": 1755922019,
+        "Mystic": 1756677164,
+        "franktransition34": 1756347159,
+        "schmollita": 1756514721
+      }
+    },
     "Dedolaromy": {
       "index": 5959,
       "owner_key": "wo7pna9a4dnbkxFwtB41keWQi7cTsUArkkfsW7RiPtd",
@@ -215628,6 +220052,20 @@
       "next_cert_issuable_on": 0,
       "certs_received": {}
     },
+    "conchihedrosa": {
+      "index": 13626,
+      "owner_key": "xPv3r3u9qAmWnNbtkjYVpRs9sWcY72PtQEENoGU8qBj",
+      "balance": 22329,
+      "membership_expire_on": 1726692089,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Xisca": 1758354459,
+        "CarmeCastineira": 1758393678,
+        "Brahmaya": 1758380274,
+        "Laurahedrosa": 1758434841,
+        "Silvia": 1758489085
+      }
+    },
     "Emilou": {
       "index": 4813,
       "owner_key": "xRVx5zPC6zaKGQ8VFrwvyQ7eP5pqnsseD2eA1YD49Zu",
@@ -215641,7 +220079,7 @@
     "CharlesNguyen": {
       "index": 1450,
       "owner_key": "xaSiHAf5PN8S2EJkk6nrNNYPpEPHUfPSEXGHCBp2Cr7",
-      "balance": 575309,
+      "balance": 614995,
       "membership_expire_on": 1719919966,
       "next_cert_issuable_on": 1674291997,
       "certs_received": {
@@ -215671,7 +220109,7 @@
     "Bosqui": {
       "index": 10510,
       "owner_key": "xj8qNLwE6LP6qFacDzDduP4jucm8Dn9g9t6p543uhD4",
-      "balance": 137437,
+      "balance": 177123,
       "membership_expire_on": 1698951069,
       "next_cert_issuable_on": 1688113749,
       "certs_received": {
@@ -215690,7 +220128,7 @@
     "cothebest": {
       "index": 5389,
       "owner_key": "xmMKC8hNREKA1y3s1neWr3XHjjp3E7Y5hLaNjEuaccX",
-      "balance": 684510,
+      "balance": 724196,
       "membership_expire_on": 1724864014,
       "next_cert_issuable_on": 1690378746,
       "certs_received": {
@@ -215724,7 +220162,7 @@
     "Liloo2005": {
       "index": 10619,
       "owner_key": "xxAUBWst58LQpmB5Gc2mbTZh4Qp7Kb9HicPPJEvQ5bx",
-      "balance": 290574,
+      "balance": 330260,
       "membership_expire_on": 1700934649,
       "next_cert_issuable_on": 1670073422,
       "certs_received": {
@@ -215755,7 +220193,7 @@
     "GeraldineBaibay": {
       "index": 5462,
       "owner_key": "yN9m8Y4ekKoMWPuUvnCd736XEEGeiMbJeBcufRi1AD3",
-      "balance": 877849,
+      "balance": 885325,
       "membership_expire_on": 0,
       "next_cert_issuable_on": 1644803381,
       "certs_received": {
@@ -215765,8 +220203,8 @@
     "Sandrine888": {
       "index": 6295,
       "owner_key": "yPpryezJhv6nC3nsEEejkcVKksxhwie8nEn1Y97ZaKh",
-      "balance": 624615,
-      "membership_expire_on": 1697588854,
+      "balance": 618301,
+      "membership_expire_on": 1727730376,
       "next_cert_issuable_on": 1666103506,
       "certs_received": {
         "Frizouille": 1715403423,
@@ -215786,7 +220224,7 @@
     "Flordocampo": {
       "index": 11560,
       "owner_key": "yX5Wt1U33PXEuSheEaZquvnz3wJ5MqENme36iijdDcX",
-      "balance": 80736,
+      "balance": 116150,
       "membership_expire_on": 1707670483,
       "next_cert_issuable_on": 1688467177,
       "certs_received": {
@@ -215802,7 +220240,7 @@
     "EmmanuelOLIVIER": {
       "index": 3549,
       "owner_key": "yYbYrCAMsmfzhuLjNoo9GV8BKYjcpwFuSWy3PWmyKqE",
-      "balance": 815738,
+      "balance": 855424,
       "membership_expire_on": 1724252910,
       "next_cert_issuable_on": 1692767310,
       "certs_received": {
@@ -215858,7 +220296,7 @@
     "arbogast": {
       "index": 1942,
       "owner_key": "yqBbrgDm5SLQj6rgPup6Nc1AUZTetERYBuUtbrm53Pn",
-      "balance": 2186428,
+      "balance": 2226114,
       "membership_expire_on": 1700092382,
       "next_cert_issuable_on": 1680171708,
       "certs_received": {
@@ -215890,7 +220328,7 @@
     "Sarahluisa": {
       "index": 13094,
       "owner_key": "z12q5DUDYB2gcpoBd75hrzzk9H5BiaKFph6g7ceBuRo",
-      "balance": 59808,
+      "balance": 99494,
       "membership_expire_on": 1720215029,
       "next_cert_issuable_on": 0,
       "certs_received": {
@@ -215905,7 +220343,7 @@
     "chloecln": {
       "index": 12330,
       "owner_key": "z4H4ZVEU887NACVRy2Y9VbSDyUMV5fpnUmch6WHWMq7",
-      "balance": 160720,
+      "balance": 200406,
       "membership_expire_on": 1711930442,
       "next_cert_issuable_on": 1692627299,
       "certs_received": {
@@ -215916,6 +220354,21 @@
         "Anelyse": 1744511460
       }
     },
+    "GorkaChris": {
+      "index": 13629,
+      "owner_key": "zDiJMsEkobwgWoug2uZ9HzkQ7DWt3Eo5hzAHRdqh99y",
+      "balance": 169170,
+      "membership_expire_on": 1726263805,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Aveline": 1758230109,
+        "DJP05": 1758154869,
+        "Lozang": 1758174626,
+        "Melusine": 1758243195,
+        "Niederhauser": 1758731210,
+        "EricBourdet": 1758244952
+      }
+    },
     "GuyS26160": {
       "index": 3556,
       "owner_key": "zF8GYXh74GUi6759tsdeRqLYGLnbdxLwQBS47ZcpNFL",
@@ -215948,7 +220401,7 @@
     "Romane": {
       "index": 5288,
       "owner_key": "zMgu4RAEnaK29xPWzaxeaDR7enqqdNYmbZXMiV7w2Xz",
-      "balance": 652611,
+      "balance": 686297,
       "membership_expire_on": 1720458870,
       "next_cert_issuable_on": 1688405115,
       "certs_received": {
@@ -215960,7 +220413,21 @@
         "Solight777": 1705472637,
         "Anais": 1708661462,
         "VeroPointeNoire": 1706699754,
-        "Ivann971": 1695228966
+        "Ivann971": 1755923969
+      }
+    },
+    "KarineFitou": {
+      "index": 13705,
+      "owner_key": "zPSiqdpEWyX3FAUM2NPd1We9hJtTC7yCEkb1WGSDj76",
+      "balance": 264201,
+      "membership_expire_on": 1726439107,
+      "next_cert_issuable_on": 0,
+      "certs_received": {
+        "Liliporti": 1758178294,
+        "GENEV": 1759039442,
+        "Steph974": 1758834949,
+        "SABine": 1758078301,
+        "toutestjoli34": 1758129310
       }
     },
     "Elfine07": {
@@ -215974,9 +220441,9 @@
     "FredB": {
       "index": 1741,
       "owner_key": "zV3yXy5iC68ksE93AGp6stCoczaSfNFE2Hac7h1q7ZA",
-      "balance": 21025632,
-      "membership_expire_on": 1700140485,
-      "next_cert_issuable_on": 1690565861,
+      "balance": 21129698,
+      "membership_expire_on": 1728274421,
+      "next_cert_issuable_on": 1696788821,
       "certs_received": {
         "MatheoLibreCommeLaMesange": 1737777640,
         "Dj_raoult": 1721462994,
@@ -215984,29 +220451,25 @@
         "NEFERTARIE": 1698432184,
         "JeanDelagarde": 1698123022,
         "BALOU73": 1732322053,
-        "Ju73": 1697677016,
+        "Ju73": 1759420375,
         "Ludolol13200": 1701062496,
         "Rimek94": 1744220845,
-        "LauQui": 1697439086,
+        "LauQui": 1755105450,
         "jef": 1732498073,
-        "DanielVienne": 1694128494,
         "Anamaya": 1711562766,
         "malyce": 1698031576,
-        "Elusse": 1695612947,
         "Vievillejp": 1714586210,
         "guillaumedangin": 1703743075,
         "DelphineG": 1712909169,
         "romz": 1698039335,
-        "NeyKrom": 1694736487,
         "Laurence_D": 1707204989,
         "KumaNinja": 1722461559,
         "DidierRosier": 1702319068,
         "Bsylvio": 1700460160,
-        "Lolobuss": 1695967025,
+        "Lolobuss": 1757883368,
         "ChristelleV84": 1710377429,
         "oliviercaz": 1700203338,
         "PiNguyen": 1710719973,
-        "JeanTibou": 1695972054,
         "Fred": 1723103682,
         "DannyDadoune": 1701676679,
         "LenaB": 1731714407,
@@ -216023,7 +220486,7 @@
     "franky": {
       "index": 5995,
       "owner_key": "ze39FFZMJfNrKXmwMHH13vUcUZpxCyBro1YozMw5h23",
-      "balance": 735031,
+      "balance": 774717,
       "membership_expire_on": 1700256088,
       "next_cert_issuable_on": 1685144609,
       "certs_received": {
@@ -216048,7 +220511,7 @@
     "Leparrain33": {
       "index": 11896,
       "owner_key": "zj4NgjeYB8AbKLbWiFfvYsYEPUSfCX83J7A3Km5fHnP",
-      "balance": 181969,
+      "balance": 221655,
       "membership_expire_on": 1709254003,
       "next_cert_issuable_on": 1679561864,
       "certs_received": {
@@ -216062,7 +220525,7 @@
     "Chouchou83": {
       "index": 4335,
       "owner_key": "ztMNPFcAWbdPZS6UR8oZGPdxxa8pz8K6JmdmNfHTKtm",
-      "balance": 310970,
+      "balance": 280656,
       "membership_expire_on": 1708947169,
       "next_cert_issuable_on": 1640426787,
       "certs_received": {
@@ -216085,26 +220548,28 @@
     "127MdvKfi515ebHL5EnBxeP2uMnPDpLi16ReRHMNN1Em": 471266,
     "129HmaJmoKQDqrwc7Ty6NrXX4KB5atxZXL9YTML4QMtt": 50000,
     "12A1fqxg8Ko7xzVxvLHudMkKT1A4jHF9EZgBYBkKTzLS": 5000,
-    "12JowZ1n6TwRtsktdhGkPtgE8EjJiD92cj1M1Dj1VW7W": 55928,
+    "12JowZ1n6TwRtsktdhGkPtgE8EjJiD92cj1M1Dj1VW7W": 35928,
     "12NT3XD2u8wYRFwkRyTkogEb2g6avbqQuMH8qq3fXaba": 48000,
     "12bXajNLZzuQaC8PPwtbYEb6qMH4nTWtEzyWYtMxXv17": 5000,
     "12j42VH7BZ9gcLH6bb6hXz7jaa8x8iG4wMqBbof1ZF85": 900,
     "12qofkBFUExHn129eTiQNzQy89NuVLcVH41YfBZTyhFD": 1042,
     "12rBUCERCBXDKE55sGMEGBZGW817dyofc4SHx1Eipv8B": 22800,
+    "12skMtfs81GP2sxjcMPmB1RMvXYgEkDxkLerYm81ZX2U": 100,
     "12v9q2zSdeMnsaeH87ctUUnaWBB8nbsACyDEcEf8pPoy": 50440,
     "12ykc2gDkvz6kvpHjSHTE3HeFLqNSBtzrsszJ862cpmY": 3000,
     "139wkjPtp5PWp6Z6gUQPpuHAgn9cygqdeSYDocopcPMV": 44000,
-    "13As9Aru56fDT8eL5cXzst2QAmLtHa3uEdebUyaGQ8TY": 35500,
+    "13As9Aru56fDT8eL5cXzst2QAmLtHa3uEdebUyaGQ8TY": 9000,
     "13MxT7DypjwuWUxnAB2ezSG5fMyNk6jnVNQ14Rn9StUn": 10800,
     "13PCaKLwbWBeziMaWfngqfZfV2PvVxzJYPT6KULsRX9m": 3800,
     "13PfJWVPZvy4uZpF6LiAAd9dCLDzdHK1rYrUYAMQx6NW": 20460,
     "13S45JGUkYuLFQoZ6zG8TSBD251z97qQF5NRzmSznXB": 13720,
     "13WKZ3bjesSZVoa6Hb2d1wpwDxgxnJ9PNBgEvSSraAgR": 100,
-    "13WKZ3bjesSZVoa6Hb2d1wpwDxgxnJ9PNBqEvSSraAgR": 612518,
+    "13WKZ3bjesSZVoa6Hb2d1wpwDxgxnJ9PNBqEvSSraAgR": 374518,
     "13WKZ3bjesSZVoa6Hbed1wpwDxgxnJ9PNBqEvSSraAgR": 4000,
     "13Zo9yyTxUWLnNx1tM59p7U9kPcdnSQ7M8vztQHDiqhA": 4000,
     "13axXUc9yqPwY33xqyexvJvvtY4mgB66C68DAKViM4e5": 19000,
     "13fWcMrhw2M2HTJGd4pfcXF2232eFakFgxuqWBUWAHGp": 6000,
+    "13qV3TZzu5Y1HktBgBtEGfPQiD7QyiBjeGyGJK1DsjHp": 5000,
     "13srnzohei4PUi9p6DB7J8Lq9zYq18vobU3zEpfpymsh": 1000,
     "13zFGVKC85cSpxESarYGppsHoNqorbtf1ebPBF9T9o1E": 1996,
     "142EE4omTrmFEddFRZ4oci6HS36BSbgU1E1wNuNjqozt": 4300,
@@ -216123,14 +220588,16 @@
     "14nNT7q1oXWXH5Dj453K8vUyU3Px6XwUqjSG7roHjLBJ": 16100,
     "14ocAmvBu1UVMRPqdGbkwARNXhMghuoJrpqj9F9QBKVx": 5000,
     "14osLtMQ1nYBzBSgJ6TCvmDjHbsCU7cKjsetNb4y2VM6": 10000,
+    "14pfQsr9wSXwBYprjSkK971HzADydoHVNC8BWrudkaiZ": 10000,
+    "15BMxYj2BC585sHaZxRunRZ7ZdVicqDasRanNzivX9S": 100,
     "15ipXEaLuvXxndPD7FD9RHgWjWbAFwQpyTvhSQCoMkJ": 1100,
     "16rVKVbcVujqdAFyrY5LN9VPErQmcyhyAKRFFdfAkjC": 200,
-    "1AiHnDXA7f51BhKQYv55FB66nrkyEGL6eASRioqB4KS": 186332,
+    "1AiHnDXA7f51BhKQYv55FB66nrkyEGL6eASRioqB4KS": 182332,
     "1AiHnDXA7f51BhKQYy55FB66nrKYEGL6eASRioqB4KS": 3000,
     "1DyVbqx23Sg18qek2BA6j9minFrswpTXfE52KJSuHQR": 5000,
     "1GpLAhDBZ1GWtbEx1riP8UgjJJo3q62HjhiZPxpy627": 5000,
     "1Lvf2Sw91mBy14GRujEYvDHVgXHusnadpSbAymLHcCL": 10000,
-    "1YQ8r5ermphfwH32mNQ3VwBcZEa59XHd3AcnM1PemUU": 159571,
+    "1YQ8r5ermphfwH32mNQ3VwBcZEa59XHd3AcnM1PemUU": 170251,
     "1ghpVLYmSaR7aJXs1hfxrXN9EGf8DYKoC21LutuGjS4": 22500,
     "1kodWzQDtgfSSEv7nqzXJKuFWsmQfLJw3EdJWfBzngq": 6000,
     "1qBk2XuTAr7ccTjEdVDFvEAKWttbeYkvgwZeYzZS7ku": 30000,
@@ -216150,12 +220617,12 @@
     "21YWRVGbyKKoT6D5zqFe5pMFXaZsoDPNY9Y2YAF6JK3q": 600,
     "21fEwVCqChBx89jgcZynm5AEpXu4fG1FhKixxAita3eQ": 2400,
     "21fz2txosC14FTfFQp8GPJyCr3e8egGGvWrLXEeEhGcR": 3000,
-    "21iaRapzTFQbTfjY4gonxyTmnF7uMDZDATyNAUjWZYaM": 111455,
+    "21iaRapzTFQbTfjY4gonxyTmnF7uMDZDATyNAUjWZYaM": 116955,
     "21iyJDj3UGBqncTqec87ozfeYXNWwwEegkn9EZe9gaq7": 100,
     "21ktSQAUi7M2PhD6czeviEWREvxVJvotQ4n13K28Z665": 8100,
     "21nHEFXR3ftpxJFHEmSFZNWLsx39uvzdGLrorv1ZXnG1": 3000,
     "21uV4rXFUnF4usNzCpBTPKgjeDsJLxtkquHnexcj4iEN": 185184,
-    "21ugN4x8378pmLxm88x1qPyvNa4E9BcGB8YYdVCMCDqf": 40004,
+    "21ugN4x8378pmLxm88x1qPyvNa4E9BcGB8YYdVCMCDqf": 1902,
     "21us4i4VbdyvFgEAVUNsKGWFh274vbxDToMx8qX6PfbK": 2000,
     "21xztcQqh6HN6XT3a85cYs1kSBE9Q2E4uj6mA1m9SM4w": 14300,
     "21zc2KPyhpVbN8XTBnkQizaMsDxA89KMHxgU7gUTvGKG": 408073,
@@ -216170,7 +220637,7 @@
     "22LfMFb4J2bUUHFrDoJbyXB8VHixE1A7ybYzggT1j8RE": 5000,
     "22SiTCyY2d7XmGfZLkS9BusKtJS56sXDFzu8XtjWhit9": 1400,
     "22TTh6fD8uEC9CYq5sB8QpqjyXEHH5QnAiEdy68D2Y7S": 11500,
-    "22UomiEEt9iKoeMdmeJJXAGSZ4ijZ1G8hxw5FS1n63en": 48700,
+    "22UomiEEt9iKoeMdmeJJXAGSZ4ijZ1G8hxw5FS1n63en": 57700,
     "22XF6b3GPGjKt8xnDPXbxVt5rxQsfWiUGA6RvcEvcG6J": 2000,
     "22fMwrTMtdMRiLJUz9tBNZDeyyxTexmHyKGaM6dLQj9q": 10000,
     "22m5o6SqNJtNQsPsDtXqTc4fzXx91nxDDqtMSJoVDV7E": 200,
@@ -216182,7 +220649,7 @@
     "23A1k7MDwT9GUGiqArc3Bk1MKN6Fw3gSDWDAWmECi9oF": 5000,
     "23Esavepesm38cQaTpKZHV3HU9xUT892tBKEXDHwxGeh": 500,
     "23FN5mdBaSXjkNYwqfun6w2uxhk9PiWnBcPGqgyA55N": 400,
-    "23FN5mdBaSXjkNYwqfun6w2uxhk9PiWnBcPGqgyA55nB": 242101,
+    "23FN5mdBaSXjkNYwqfun6w2uxhk9PiWnBcPGqgyA55nB": 321101,
     "23Hdo2V77U5QBuadYKG3sNsWpwqnw7o1GSbWL1nvfviD": 5000,
     "23JskFxon6AG5aP8VjEmjsJJoYqjXQsv7ZToCEDbnAaE": 6000,
     "23KptPD6QvjV7cYX3FweTveTMuhAgkEAK8BifUgAZTMW": 3000,
@@ -216190,8 +220657,9 @@
     "23aWN2ZM9rFuVKXqXa622MzHKsP6KZU92FC1LoT6id1i": 10000,
     "23aWN2ZM9rFuVkXqXa622MzHKsP6kZU92FC1LoT6id1i": 15123,
     "23fczTaFSNgWLxzzR47gZ3U2vwSXrFxpyZ679eVHyd8S": 18000,
-    "23ojGozEtCd8c4gRZ46RujkZbYh3VnbbZcppNAMTkBTL": 208831,
+    "23ojGozEtCd8c4gRZ46RujkZbYh3VnbbZcppNAMTkBTL": 209031,
     "23t2uU2e5WX4HtB7yytzhgDcBcosiMqo4wygokJjazyr": 16000,
+    "23tE4wnDsJ1QvdL2LbqXwDippwz9diuun3meyLo7Kktg": 3500,
     "249gGifaSZ8GoxH9JWriUA9nysxtypfytcuqXt16BYxT": 100,
     "24C2djpBHoyoKzAshvei69rjVGj613z78SN9tqX66wke": 2022,
     "24HoJzTQNYwD9crKx93JTxwEcbrhYZfyGHraVCC2Q3KE": 300,
@@ -216200,17 +220668,18 @@
     "24QvWCcjctjeJaTYTukAL64ZQjyNndcnKsBkqGC4FaWr": 642100,
     "24RFL1k2a1bWhX6xkkg2XddPMJWShL3oProXHMu9buzE": 31000,
     "24Wpz7ZbiXsFe32tTQgBVc58KHmAJyGbf2bmQmm3NoTx": 21000,
-    "24bdoFetM5tTYv5cn9uwT3DYBvTp9h9cksuQ6hYmkH4G": 21000,
+    "24bdoFetM5tTYv5cn9uwT3DYBvTp9h9cksuQ6hYmkH4G": 48600,
     "24c1PtVZi7Xiqf9ZL4AHKM5egMgovNfKUdb695h2r4SW": 41000,
     "24fJJ2Esz5wjPk16eGEZXf5xTdVuhdcvQhQtaRn1JnFj": 14400,
     "24sbX4ureDWNpP3tWqBAB1YmoAmhtQPGB2zds1gcdfmE": 380400,
-    "24snqwpKG2tU4KfkEFfWgCNvHLrW5DVmxggSN8meZSp4": 100000,
+    "24snqwpKG2tU4KfkEFfWgCNvHLrW5DVmxggSN8meZSp4": 35400,
     "24ve8NAmt7KHmwGujxUTrxccBVAs79Xa15At9KzXJhcx": 3000,
     "24xunmbX8vYdb8nZqdGBTRWmyFhKAfpRiayR74R4Lgso": 100,
     "24yhBHAYqD9wzGYYe77grdtBkMzzKjauRoxHi2fdoy9w": 10000,
+    "251vjtXay2k9mzSqF4HavcXcvPskHtVJz3mPQbd2UDRK": 7000,
     "257LfBPpPeCkGHxqmwnUQR4e9v6GVdtuYNvh4cQGwMh2": 2000,
-    "258JPCyrS3nJPfKhzGh3V7VsMo2oNRtqLE5ToXX4ctyH": 142925,
-    "2599AmmTM8SQmQ8LrtkLcgcGv5NPPXJ8K94aCQUwYEqL": 14751,
+    "258JPCyrS3nJPfKhzGh3V7VsMo2oNRtqLE5ToXX4ctyH": 160125,
+    "2599AmmTM8SQmQ8LrtkLcgcGv5NPPXJ8K94aCQUwYEqL": 19251,
     "25Bqo2TVgQyDGQ86cxt95TCZEcAtz3q71HthXbwBCCwb": 6000,
     "25CXUNnndj1eufyQeKvsUZ8B4JWVWYwvr5k1PvWAukKD": 10000,
     "25DREr97xy2Co1w5LAdgsMfj4b4Q4DC8juuRfvoCYcbp": 5000,
@@ -216220,7 +220689,7 @@
     "25MqK4APGQTAGo5LSrZZDverboF9QzcGzDwkS3KqTBZo": 1000,
     "25PiZPNebN9viJ9C3S5GRY2qjhmxb6Zh8RVRbKeQ6FPG": 74450,
     "25PuMpMFUfAUP5WS5jzvWJKHJ6RsjryTG5R6hviqGacM": 7000,
-    "25QsLCRC6q3Hyy3zcGVcp81Za3cHuHTdzDnwxCnqibGC": 106300,
+    "25QsLCRC6q3Hyy3zcGVcp81Za3cHuHTdzDnwxCnqibGC": 162600,
     "25VKD2CxVmL7vLUe8MeSmPgrNWk96GWaG6TtYwq5s1ot": 5000,
     "25VYamrC6PjxXxeNhw44WQs8GHSRfoWpFiVY9SZHDeGg": 1114,
     "25VqFwnyd4Xj9XShxvfWtxxcD4joybNHgYfSDaouaWXr": 5000,
@@ -216236,7 +220705,7 @@
     "25ztqVQ88gPM5ttZZLqKu7tVmBjm1xSrVLwq2rp9xiUo": 4000,
     "262Z3wwVRW9MdqUSeXpwJMjFPucKCbgcxXbjfXmF7zYa": 5000,
     "2642d2tCDTy1ANGA3bFTcDmqsadsuKFHntW8q2DyCKQP": 2000,
-    "265154tCNCLVxpiXCdRSqsXnH5ogV429eATRFvM9Fhu1": 32900,
+    "265154tCNCLVxpiXCdRSqsXnH5ogV429eATRFvM9Fhu1": 54900,
     "265dRyj6nwisUH79XuEMbVKs6njEkNL6vKUe89sEnw96": 5000,
     "265u68Qg31wJW2Mz1CwfQsQdi2zjiM1SqiwYsYHwHXP5": 18000,
     "26AgFGYHcKotyxFFtCDvDmuXufxL7tSwdSN1s5aWswq9": 5000,
@@ -216252,6 +220721,7 @@
     "26YaevWzXpgRBBGQGwayt5o7wYHZM3wvva4EdwEjwXDZ": 214,
     "26kSogxPxmypQkXoaJEQowUoaSdruEbUSYzmK81h3GBC": 5000,
     "26oN3r5fvXRQXVDX7t498HxFgNLecDDXUme1MP7XFfgL": 100000,
+    "26tFsdNx9j1eLFiCFNC7bkFycMMjh45vejQS5EtuEpCP": 108700,
     "26xwmqMKj1F5N5UaNYgTZqx5H7jkWaJqGHNrUfgQdkP1": 990,
     "271fyPFYQvCJNMitn93avXZZqBqzt5chjC5oTLJD6zsW": 100,
     "275KLxEtUF7nvznqMyBeXMTsGDk5PCH55xjS55gc239p": 100,
@@ -216262,7 +220732,8 @@
     "27DgsNbTyYuBUZmS4vArC1pNu65GFVGQopeLxPPGeVEz": 100,
     "27DqE5ofuauo2j4BE8jLyF6MguMCEnhirv2v7bgNnqo9": 5000,
     "27GN1BWNeT7PSz3zNcztV9LQEdCVq5rDr1zBNfhZQrPG": 10110,
-    "27GgBSLAGZ27awLQGQLF3oQC54ys4UA83CQaFZfjxoQm": 9536,
+    "27GgBSLAGZ27awLQGQLF3oQC54ys4UA83CQaFZfjxoQm": 10036,
+    "27RdrHNuXSALtK4CoTBMLMPtd4xhqKPU7ukJR2tc8mDx": 100,
     "27WzZ8MJt78xmNa1JZMFkRLaHzL3DuQbz4zTWUrm4WEC": 127034,
     "27b1j7BPssdjbXmGNMYU2JJrRotqrZMruu5p5AWowUEy": 131760,
     "27bHU9PmsdxWTGTk3u236zHsbgANdn1PnUzcE7j6VjNZ": 87500,
@@ -216275,18 +220746,18 @@
     "287J9QiGwWhkQ44L4LwxsVFKeeyZhfu2e6tjZyZe9m5y": 10110,
     "28BQQqdd3KmL2i3aFQaC5Xx7vJCNrwHhPUGLXHnmRMyk": 3000,
     "28BcUnzY72RjQhdcCHnemcfsVbFTfio4SCXP2JgGyha6": 18400,
-    "28D2qYkfh71bbszHqV32x82bcuorw5LxzdeU3GX7qGwu": 26050,
+    "28D2qYkfh71bbszHqV32x82bcuorw5LxzdeU3GX7qGwu": 31050,
     "28FSCxT2UziM14DDbFJ9bnnWrbowf1rifdAo3Ks9sWCR": 26500,
     "28KctfLopL9rJGiMzDrpLvD6SFyPdBJW2H5GPH3wYTrX": 2022,
     "28Lvmku7bhudphgQ9uJWiVCmkXxNEpBQZGvfA2MtFtEM": 614,
     "28M8nkJ2BGy1ETabcgo1rppsRQ3qitWdxF69CrExgkjg": 1042,
-    "28PRWehxskqZ2T9Bw9FSGiWKxzWwbZiUwRQLyTrMqkee": 6000,
-    "28U1SbTn3hM4d7kit4H6nnhmSw8GGzPNtajRiCi2owYi": 6118,
+    "28PRWehxskqZ2T9Bw9FSGiWKxzWwbZiUwRQLyTrMqkee": 17000,
+    "28U1SbTn3hM4d7kit4H6nnhmSw8GGzPNtajRiCi2owYi": 9118,
     "28VtDyzd664MCqBGAb3MnfD1uq2vQeRUUYNdrj5K3Box": 1600,
     "28YLZELNVHBq9SeofRF9nrU2T9dSB6HkzNuC8jhWq56d": 101,
     "28ZrjzQXn16W1JbveWUjFS11zV74vjcmCVkq3a6iVcew": 5000,
     "28hnc69Ebo9j1mydr3rtgGALm95UmgzRT3oMHQxbVanS": 5000,
-    "28kTzuaNb6kVTRuGtmFcJND8iemUrurkViJTQtMXhtME": 147174,
+    "28kTzuaNb6kVTRuGtmFcJND8iemUrurkViJTQtMXhtME": 10000,
     "28pQWxGeCosq271FqzUDknSQzwPz1AvFV8Hopb3nDmUV": 11300,
     "28pQWxGeCosq2Z1FqzUDknSQzwPz1AvFV8Hopb3nDmUV": 152515,
     "28xcB5myKZtkHrcm3xykVXViRdUDHsnW8HgXPffqjhJp": 16320,
@@ -216297,14 +220768,17 @@
     "295j95ZgGGrDq4pu5eG76NPWiByfNwZtgtUnyi5Lo8cS": 51600,
     "29BNfXS3oPgaQ7uAsz37k13qDDiZmQ1eDysMkJft1c8v": 5000,
     "29BjduPAw9Y5ikDGNVNJBdWJuFpoktibbXzp84o8CsRD": 40000,
+    "29DF1thkTwRPHM14ooDKrKw5va5VMh9bnrMtVKyu7wiV": 9900,
     "29FqPQLjmBKc2vPj5UvyHCw1H9PJopHssbRrfqgPcjzC": 521,
     "29JDueeqrcFDbmn3HfGQTRM5hs9sQ1arZvDZFYavN5U2": 5000,
     "29R1KyMtH5wKy5WiePM4DrkdVcpVppyUNmvJHokKka6L": 3500,
     "29U8eD26fEsNfCR16eStzEMgd9dyr9DtrXAJTon9yAPo": 5000,
     "29VFCCBAmx4Z5McaxGQSxvmq7wjeXd8eFMN6nTME7nzA": 58100,
+    "29YR8D8tiDKeQRwyCtFydSXRnQ5DgfZEgKGjkXs6MH6k": 2056,
     "29ZP1HGPwyfxVfaZ4nMvKkY194xBR2x7wrVMqxdxUACF": 1007,
     "29ZZ34Nq8s2kEhYNKfLHrgcruNoXrjBxTE68DUq9bs2s": 5000,
     "29dnS2Wu8eRsrXh7R4w5FJQRc1pgKhDQjGKFJWuuGDiN": 1000,
+    "29e2ZNxp427pNkn8MnBkS3CAThionU343gzaudi1NMBu": 33100,
     "29gfJ62ZThowGQxJGfY8xAomhkuw2wfmhvKCJV4abJ2P": 14100,
     "29hUFm6iEfKRjxuQfB6kqYe5Bk2m4XXByVERs1kqwEee": 4704,
     "29itWNqFSbLQEGcXicFVWNs32zNQhPucrMjo9EdXJPUn": 5000,
@@ -216319,7 +220793,7 @@
     "2ACCpA7W3mhLhYKGfjq7geJ5U6ee6XSLSDx9decv8QMF": 16312,
     "2AEX3VP6VbnrPa3v4UoUmm7PXePYtFQSwrJhMWiLp5AC": 1032,
     "2AP3XxdcfzUJ2GvWH57Qvyum2XneJXPyxw419VjG4fYa": 207028,
-    "2AS9d6kAWKGn7qGZ81oHeHaLptuSbiUT1vmHGaariS1d": 2000,
+    "2AS9d6kAWKGn7qGZ81oHeHaLptuSbiUT1vmHGaariS1d": 74280,
     "2ATxaaVmqKCKPwkJtPRxjQ55CGej2Aasn6SjHaLYAbn4": 5000,
     "2AWmPjGE4LAW7qtcw1SgYRvPwVAoNAhc4TfMfGYwvkP6": 2100,
     "2Aha2HwD5tG5WmrfTGhswoVENXufNTEeWfFu7i8ukMZz": 80000,
@@ -216328,6 +220802,7 @@
     "2B1TMUPaLW5hMLQVU4vQjs5A4wn5kWtr7s1gkAeHJ7Tp": 1000,
     "2B2wRGamzYnmjPAaQM5CJX6yPWs2tW2iWwm6h7pixdWk": 2613,
     "2B47qyLRycj4Sx5x4SchRfW7N44nMwZfiV96BmdpkvL9": 33659,
+    "2B7dyfxnyzUAzRFvZbkirEssQWm51QkwR9FEHP1itXcx": 5000,
     "2B9zDPYWwcA5D26iwszJczQmfPrT9RWayrpJHD57F1jg": 10314,
     "2BABAQpcMqHhd7AyanByKakKT6GcJe8cxqTA9snis4Bj": 31600,
     "2BALwGXTZPXqkdF4XpsoBdRdabFkHdFJYN2mzH6znKS4": 499,
@@ -216337,7 +220812,6 @@
     "2BSuHMWXpcP2izBfkaoTuZSQcENoK7hEN7WP5Nt6jDsY": 4500,
     "2BUurFZZraTVgaH7GjxGfXwSpyignrqSo9wszErPmq7y": 21252,
     "2BXhTHuamgLreKaYxKURBMR7MLsLCS8DWs8YuLotqFWD": 9500,
-    "2BXoAtKptfdKooJkdG65SxNst5d1QKdpo1gNKe54dV2o": 8999,
     "2BYfksADD6H6FRxyYvy6bZudhkL3mvmwU8g9z43LT9kz": 11000,
     "2Baa5ibm8kTZhSNC54Sde1YsCzLDNzMUVqJ5ysk8opzR": 2900,
     "2Bf4hMvZ2yFFgfgQxpbnNCVwLUWGPZg8J3xP5n1ayvYV": 70000,
@@ -216349,7 +220823,7 @@
     "2BwW1YbffrGzdkJdem5T7Y4wJV5GM4GxabQ2BcuNrf7T": 4092,
     "2BwkfJGaYsedFFdXgtqNpcBAhrU3XGUNQ2s7UhjLkAhG": 1600,
     "2C3janQoDiZ46tJrhYFSBW2Z4BfJMwytGp465C3zNTGh": 100,
-    "2C4jLDs2F5WpH8TcHV3zNJuy9CtYrEYaEHCb3VicBX8X": 20700,
+    "2C4jLDs2F5WpH8TcHV3zNJuy9CtYrEYaEHCb3VicBX8X": 16700,
     "2C56iXdMxxTo1YkhyYT3UM8pc6Fd99ga6snfRHbxPEgn": 500,
     "2C7c2JRV42qwtXCmHcS3pVY6DwAFRSY4zsbVACcYp5KC": 1000,
     "2CAhwbrWPsWgv2iZqMp5SbRMyfkQEK2DHeHnrvwf2Njb": 19100,
@@ -216369,12 +220843,13 @@
     "2DBaUX6Yg15j7xHhSkud7tZRSek9PqxfG3asKZRwKk1a": 80000,
     "2DCuewj9mE47gqcwTWkKswAoJeF4MM6tw5ye5upnvCnb": 360,
     "2DDT3bPRGfUvQWqMVs7wHYVKA4xzdWuA9dho82VLWZtw": 500,
-    "2DDd1LYcyRuqyoAZyVtKvjLjo8kPCkYY1jyWAPDUXfpa": 176401,
+    "2DDd1LYcyRuqyoAZyVtKvjLjo8kPCkYY1jyWAPDUXfpa": 25001,
     "2DFT56fZQmaayEb8ZKzJPY8cVEEy1D4rpvMf6EbSnx3q": 107587,
     "2DJ2dMscNPbrKbxaY5n4hZNyUFsHrTcvZLXUMGPunTeS": 9144,
     "2DJR4BG9CzFrS5Hw5snJLZvkK8QL1k5snG71nPZX6FdC": 8000,
     "2DLvJXtxS4YjQdM8JtaHwd3KQeJmbGXrrAjmbfWGikQD": 900,
     "2DMwJj2UE2AfEJ6neXFiGeNhfD3yozFJsswo2Ur33U7x": 5000,
+    "2DQXq2T3ZEVeSZvPfDnWUpvdDd65avWTv7EYii8m6NrL": 3500,
     "2DRgxhTtkktXRNqjoooqkkpU1sgyTFneikxDwuc2ToZd": 8500,
     "2DSyoty4dQYLr9zuE1sA7Y217UfCKxVeGK7Rnk1koZQK": 2136,
     "2DVtKwFd773j11LFGk9ogiQpdbjohvqHdgm3XdxU2JDB": 2000,
@@ -216403,17 +220878,17 @@
     "2EPzGh1LXhi82oNPdgRyYMhpbkVantY4CPXuv85yQUjS": 8600,
     "2EQsyYd7RPiFogyTtf19t8zm6Tdc7jhdFdshJ2afp8X1": 141865,
     "2EUozXtF19owHW1iSsaqEtt22gU8k894u4169F44rPpg": 100,
-    "2EYJR36KqcdxjUA3CYbiVFdr7smHDpXgziyoMvzx8Zpn": 49600,
+    "2EYJR36KqcdxjUA3CYbiVFdr7smHDpXgziyoMvzx8Zpn": 61500,
     "2Ea9gaqnMHayJ7AYSwCyuhyHNSY7scn8yAz4JvivEANH": 754,
     "2EbANyHKs51rU5Qp5v451abUox7gGvZeWgJyJseoMiYz": 25400,
     "2Ec7kt6u37BUqLpfdiVwGjyWJx4DqAydYSMTQHgvDnrQ": 5000,
     "2EdPJMnYhbMUvkHhaRnYHAYmqnE5CnR2CajPyzeAEx5i": 1000,
     "2Ef966y1GqtgfJ4xW2ysbCojp2YHLpz1GXsMCQiPtfhM": 20000,
     "2Eg5G6QCjoBfC1FV8jhcWm3jDq6Q68kJ236zhWuW218t": 1500,
-    "2EoiGS4BAdiwrazCRpxj19Lo8bUAcZ7KPHZ8fQQk687M": 27266,
+    "2EoiGS4BAdiwrazCRpxj19Lo8bUAcZ7KPHZ8fQQk687M": 81266,
     "2Ezr2cdbyd8KzK6NkTP2d3dVSmrKTNmgMLMASFD8YsBa": 11200,
     "2F36N9oFT7kGMrM5uMMNB7NYyYh8s9QZHy2pS4bf8JNH": 5000,
-    "2FBpvS6ocSb9BMcysMKhviyggxSXfgSCZ1vGQsadgygv": 68900,
+    "2FBpvS6ocSb9BMcysMKhviyggxSXfgSCZ1vGQsadgygv": 71200,
     "2FCQ79X9sQchvjqUMnaRtfY4Xg8XKEUjtcDX1JUxVUDm": 20000,
     "2FCtQXTkdQV6g9j2WPBuuJnptb3n4sDVTqoDJzrGpxtW": 10000,
     "2FDEMN37m8qwyXSrPiars9PVM2JnGnBUvpAyKocycJnV": 6200,
@@ -216424,7 +220899,7 @@
     "2FLRZMJbVxnvRop7aVS4i13Y2uSCuY8vRY3atT7YGGxx": 650,
     "2FLXdXFH3Jen6YV1Cb3ASd3k7WUSDcAvrQvsuSswvCEg": 3000,
     "2FN5vxZ9Z3RkxTztA2Sup9i6uKtMSRYkaVyRSAb7WD2F": 40000,
-    "2FRyuNn6HGgQQxGExMGXqhbHR8noNcyRrEfbfkmXGPFe": 124500,
+    "2FRyuNn6HGgQQxGExMGXqhbHR8noNcyRrEfbfkmXGPFe": 74500,
     "2FUHbgwXvEgtEvXs9TTDgfgAz7g6SguZVjEBga75LftA": 87200,
     "2Fcq5ZVgnnu6WMxTbeaiLkEDn3gxA4U563fBXSho9zwS": 30400,
     "2FgahWx8d7sHhzsdAmJcDTgYaXFZbfLuwVubbPTFu6aC": 15000,
@@ -216443,7 +220918,7 @@
     "2GRGfrnxkZKbtk1sZNmTED8Z85cYh5S3JoWtC13pV5Q4": 30000,
     "2GWDWRGKb5UG27wbmm9ExM8L8eZTLbUs81r3hygauF2d": 48000,
     "2GXgrbDbVo5EkHcR1LECZ2fk2dLeCneUK11ryp1uKcLM": 200,
-    "2GYBf7YwCVNXMRFfXyT7LCv6GyUqYmKKJ4pUQh8CKLMU": 227400,
+    "2GYBf7YwCVNXMRFfXyT7LCv6GyUqYmKKJ4pUQh8CKLMU": 215400,
     "2GZqMo75AL9j1osXh1SbSqnSC6xTiRj1W1iW1MQJ55UL": 1000,
     "2Gaah6dSYUt29ujSwhximAALN5mLuhx9aSRNjhif4PqF": 500,
     "2GcurufoXTJBaccbJd1i6r86Nx4Z2epnMyb99VUXXAmX": 1000,
@@ -216451,6 +220926,7 @@
     "2GfgPAeTEjFPHmBgEpKzvkSCyNp1AAvJt5SpSBPQFkUm": 2000,
     "2GghUsoVFnJzjrFf7Kiapo815CSV9g1fSyxqvMySwqon": 5000,
     "2GodCrPTpDcnCxayEKa58FB7jj4bTiZh1vmiYHY8QmjE": 8000,
+    "2GwHZS7i3cS9nYdhudTEh8V5CDzEK7DhG9r5Ppqq57CK": 15000,
     "2GxndQa7cDSkGNuYdX6sZBcrTBoX3G1SXw7Fh8GnoS5h": 500,
     "2H5ew1qeSaWsKYgxx266RbQWgU17E9npVqD3JiSLNw6E": 5000,
     "2H6iSYEhby6MuNN1fc25JCQBcqMoawnfodzkz2Tjv7D7": 17000,
@@ -216459,6 +220935,7 @@
     "2HKyaZh9PrVQCJWf5P1qDFshjZPmmQp94GykaYDrk7jA": 31684,
     "2HP18naGRmyFvPV5uZCfARzSARpRfqMsdNBaPQ8JmZ1z": 100,
     "2HQgegfJvtS9aeGowVB2uNEpnYYKuBshofPR6iZzzH1o": 3000,
+    "2HT1CzVB1WKpoYeugVtCy3QX4mbwwWpNpRgJUyYFaUvC": 10000,
     "2HkMnUaUGKR2Y5wo9VbFfaFWM2usqE8rTNLQBRsgMeqm": 500,
     "2HkPTVovyaN9LkA95JCKeLAa6hAqLqQEdXTcGgvg8efx": 5000,
     "2HsJo7E57xdnMtRc2o3egRX7eeXD5X4Je6Royiyw3Baj": 400,
@@ -216472,11 +220949,10 @@
     "2J74GUzWs1HYY8vHrSeosfTCvepnYNg9jwz1BoWg7ywi": 47500,
     "2J9n3FizuyKJtMzijHSf4oRCqPzL2H8ah1VR9miR1Apg": 40000,
     "2JJDvxHKwT6KHWqUWASoEnfKkftXFcEfGkwLRNAYHMAV": 5000,
-    "2JNuy6PcTP1trDKP92Wkn3dVMRZM9KQrMQgUQNpGDkUV": 35000,
+    "2JNuy6PcTP1trDKP92Wkn3dVMRZM9KQrMQgUQNpGDkUV": 51080,
     "2JPrPZ9FgbyU97xrL3vsWmhTbA6qU4uZFzZ1V4wnEFCW": 21020,
     "2JUE5RH72CNhHVrD2kwcwgHnq26yZSdbkFdNHNFXtGBs": 1900,
     "2JcWNGo5h27o6WaGfnWTCKHZjEyMuXi43hB42tj3CuRE": 17000,
-    "2JoHBKSLARa8uzCwDegXkGa2ooSoGWyDUTjAtvXwJBij": 28500,
     "2JpBVt23RQKMtZh7oKzQWUi5LwrZ38qYY2ufHmY427Dd": 200,
     "2K8e5WwvmrzFi39ed9aS2mWAoMoC6ZgEro6sf5pa8Lsx": 9000,
     "2KE6NRsqi1MQLYa3ABL4pYTMJ7qJzy35BoixETkYCj2Y": 10356,
@@ -216491,17 +220967,18 @@
     "2KePnpJJHSeu3UJGiDMuSAHoXRmwyFKxVsptXjiUL89J": 2548,
     "2Kg2aQfF2RPPaptQjVMChdesQetrtmrrbkoibgze85b": 40100,
     "2KjE3UenSq4URNYC82mzXndruWvEovpCYmn6fsnsEQn6": 5000,
-    "2Km9Mzr7xrqzmDsirDCmmu6wUBuSbMuAgopCDYuBJF3i": 188120,
+    "2Km9Mzr7xrqzmDsirDCmmu6wUBuSbMuAgopCDYuBJF3i": 250120,
     "2KmVpQh9kAhquy6yp6Z6AiMDopNPNwFWfJ3Fh9Y6yb4y": 15000,
     "2Kq1pvqkqWuR3z6nrxAH1c9vsEatmXrxMSg9QtGPjgrR": 10000,
     "2KrzrV8ZosR25K1wEXLYmy9aqd4vNuzK5VqX4p6a3yuJ": 4295,
     "2Ksc7cFQic5Jimr98Bf2bpgnGSMeJsnv2pDyYRmUpAYa": 100,
     "2L7YwkMb1qcZwN5cAaVs1qUCPUmpWdrJgQDy23H6iB3n": 64000,
     "2L7nJknnc1vCwpAYFmu2nY8pyaz8BbEmYo1MdshJiebN": 1000,
-    "2L8vaYixCf97DMT8SistvQFeBj7vb6RQL7tvwyiv1XVH": 80612,
+    "2L8vaYixCf97DMT8SistvQFeBj7vb6RQL7tvwyiv1XVH": 90812,
     "2LBbrcXKn1BXbdVop9oQJiwi2qVtkGdP3AGsmmCF9xpk": 5100,
     "2LEce1o8rb62RnesWHchAmbuRgZHmqqk9S2HCXcz3w1P": 1051,
     "2LFHT8S44P1vCwTdUYZvH1d7X2pTdEjXimCVTof811LZ": 5000,
+    "2LGK5AqGxvymqZ8Z9GHwtByZzWk8qEPrusR77o7799Mt": 50000,
     "2LH7kHQAZKn9hwN9eVeTeZNp43pxSmtvHd534BWVGQAF": 10000,
     "2LJgV1fCbVFyYju1FJasQNgagEre2iJNq1jCYJMhKkMU": 3000,
     "2LKQLFHveJzXEQMtC6mSDAmfpSUDSE9wodudi4MiggBi": 16365,
@@ -216509,15 +220986,17 @@
     "2LRDyDtj5ksqccdrxSPb3MR6aqrvqBfQrRyuV4smKFCQ": 2000,
     "2LSFNRU6LiQkTqovtPUPELjW9kBJyQjjRTNwbRCp1exZ": 79000,
     "2LdH71bYwCv4nQK2VcJ6kVmbCwa7GYyCxj9e23TxbCbj": 3000,
+    "2LdKaKTxVUfDdNttiiUPwHAu2S8Q8jidvJEzQgfMS1vP": 3300,
     "2Lerkccd3sSwhBxTK1Rua4WCEcA8264ozXB91TiZdiQa": 5000,
     "2LfktXANzR5S8vzCjUemegVadCkEfB1LWTdHdHNRBdTV": 100,
     "2LfnGkSrEDmJMeyRhY73PqEbSbbwbfp1CHU8Y68c5DdS": 5101,
-    "2LgiScgeTxeSNKNDCg6ddsHrMPzxPXunMjuDb2PyYycn": 6000,
+    "2LgiScgeTxeSNKNDCg6ddsHrMPzxPXunMjuDb2PyYycn": 8000,
     "2LsAnEPtS1Rjscp9VPT5paQPivKs2ofhBZtensxvD77P": 40500,
     "2Lzx9CukdFRQqacYSGmdzqgb5WmydL4FVLaWjXM5koFe": 12000,
     "2M2274aadGQCHkFMJCZNgsBFuXJsqetCLVyfhHNCaqp3": 300,
     "2M4jE5WDSfFTMerJ5xN72usm9StdihYji8o7jCG4vxuR": 8000,
     "2M5xoHv6W3bkTiaiLhJTKSrpmQRsH6aSLZ8HGqmTLtQW": 30000,
+    "2MAE2wtC7tQ8XReHodwQzaz2dsdCC78NKCYVGr9z9XjF": 28000,
     "2MBYUcqZkadrSw1VMxL5AGBacuK671dTyiJwWRCiqjqu": 20000,
     "2MH1QGyvnYoLZo9pnhhxs6NJtuRuxfKfHoMhhcMAGxbt": 10000,
     "2MMgTXy1ZrczPSLT7FUMNwSFd8hPwFZLoQgBDSneySwg": 75000,
@@ -216526,7 +221005,7 @@
     "2MRcDGqDDBmZHQW6VArA7EW388EeD9gLBGkrNsAZshnn": 5000,
     "2MSchM8ywA5s5nQEMc6jf1uT7UpBT8rKHys793Fp5YCo": 1500,
     "2MTRZvJ3r1cgXmeztdFM8Xjf99BHph2vxzEPpEWaExqK": 3500,
-    "2MXSXap2FMKmkR2TmdbBAG8i6NvMMSNFs9o7Uk3Hxxg3": 46674,
+    "2MXSXap2FMKmkR2TmdbBAG8i6NvMMSNFs9o7Uk3Hxxg3": 78204,
     "2Mb11zdGJ12WqVetgTnvcHJc5A9kf6woSKjBnSou8EM2": 15765,
     "2MdPcsM35YmWqJhFyu4B4bC6Ebi5oghNBP73aNxBeJDf": 20800,
     "2MezY2qNQdahjbUW4sJQ1H89K4XNmdJzUfUTxmcf6TKJ": 500,
@@ -216535,15 +221014,17 @@
     "2Mg22LJi5L23Xf3RCP6F8woTS6ducNbpyuDJFXXf4a4y": 15000,
     "2Mj3SfFPpCFiXsNEHnvoQ6Bf5JdGM36dMTbzDPLi4R3c": 5000,
     "2MjKB3hocmFQzLssgcpoXTYczRxWewqstszLrtvTj8Y3": 10000,
+    "2MjXpBc5g7iyKt9DJ6tivc8PJEdQKD6cC31rvKogcp5b": 4000,
     "2Mje4eK7DDfCeEnKyZmFJKYXtYjCzvbiJ4ipAXXTvJRV": 314,
     "2Mm73GqbYYTotpBFrbRZwG8hLecyerfdxXPQeJBbAJKQ": 1000,
     "2MpgRE9C88WdaiSBSw2h5MvLMSePC2RpiKTNxWQ4WggW": 5000,
     "2MtgW37tPZXtgSfxppDY6r4wYUBcqZbG5E9GtDscyCqj": 3177,
     "2MvKbeBzaApHUb88pEPX6npHfMj87g9bRjT5UoESGsTy": 2022,
+    "2MzdaaFpsJqqfhdNskptmLtS5ih359TC1695d3JNwvUh": 2500,
     "2N3ei73hz6kfmnmYzJ9BDbxJGRNPqqU1EWApvfpCcjju": 4000,
     "2N4qMEwHAHtPzwSjgXv5ayD9JLj8KQHNab4spGkE4XWJ": 2999,
     "2N91ACRUZvi1LPYPnDnQ4k46CaGr2M1yn1cNYydL7fda": 1032,
-    "2N9i4mcaJ17wYTgLmCUnxXhKsNkwRZhMkjrWbzNMELTZ": 217288,
+    "2N9i4mcaJ17wYTgLmCUnxXhKsNkwRZhMkjrWbzNMELTZ": 230538,
     "2NAKFM3MqCJu8dQvA8AU53aWkYcY5mF3VEKW6T4kzTG8": 14500,
     "2NCQWkeQyYxdUMpW9TbsjpTh8FWFSa6icKdZpY7krF9K": 400,
     "2NGWNSKk3yedHvwo8gQWehDGL5z2UgjH9V6Ciq29TptW": 100,
@@ -216572,10 +221053,11 @@
     "2PYG8eB2aVduoLVhm1GztkwYejGNrJRLHVKzxEqs58Ay": 200,
     "2PaCPeQGwxuior33NnohMe5jJJPBsWtFGi2j9oH8M3gr": 1000,
     "2PbUEqxqLasaRTUYWZNsNByFtEEeuLjDPrJ4yh8gzsHM": 3314,
-    "2PdHy3EqSRYbYHkZcz1rcGkoKqFCfJqt3aqgskLXCZbT": 50000,
+    "2PcRK9hw2fTTGLL64KBPxFqng2zDrnY9ehJfxan6NcWt": 10000,
+    "2PdHy3EqSRYbYHkZcz1rcGkoKqFCfJqt3aqgskLXCZbT": 58000,
     "2PepZ8QaGZmi5f735aarDeJDGEqNJ6XbyX4XCHTGoX9J": 1042,
     "2PqFEcRkrkCguDxXnB3prtm43BBTtEzVpN5Dxewb5gF1": 22161,
-    "2PuMnkp7YGBE4nZqM2khPoyYCHdNVkvbGzkd6XM9UeMZ": 14000,
+    "2PuMnkp7YGBE4nZqM2khPoyYCHdNVkvbGzkd6XM9UeMZ": 14001,
     "2Pwvpd65ZyRA5FBbCtFA4fujEJkyhGAtLWykPjHGDG9X": 11100,
     "2Q2wwYN63uKXX9jNCBJB6mB2pbyo1TpWNivtYxTYrjPG": 4800,
     "2Q3qim3nv97yNQ9tLq6sNKmSU7L9JgdrfsfhcoNZFQj5": 10000,
@@ -216586,9 +221068,11 @@
     "2Qa2mYnjm5nQvGgmvhADannx6gfBJiCtYLdW2uz7UyEM": 800,
     "2QdyAG3SDmN6HjLDhogJ66t6HHaa8NVWNiBCK9MPUJay": 3000,
     "2QhQ4tXcAWycRP2PDVB6PzKXs4bYrZ415zQEd1hWcAad": 100,
+    "2QhaGiQVhiJB2z8kGuygq8ny6CGk5AZZQgdBcpHDULJK": 28858,
     "2QjahT8gYKsxshuEWCMZziTcUAgKUJjPc8hU73vPzNNX": 2100,
     "2QqANSKPAjgfdANSYHWVxRDwGeqnkdD6JzHVq46GBUS7": 100,
     "2QruhLHgr8ZSYGDAZZrXXaGt8RpHRz54KvsFytjCcoUW": 900,
+    "2QuL2kCAL2zd2681WQzq7N7cbTZ4nbnKambRWUvdAkuJ": 6000,
     "2QzoMYR6QWiSRSU1F2Ku8z8TJGbQRZJiexfCzRbWD4je": 27240,
     "2R4izkdsYEAGrp6HpeBrJhVZU5dQecw9MEkJ1RYahxLk": 8000,
     "2R6fU7xitqnNyK6NPuKg3b6cAsy7YGeeg1H5gpobnxfq": 2500,
@@ -216608,7 +221092,7 @@
     "2RvuamMPxASijaikx1x9f8SsgG2bzHwn2YJV6egn4m2Y": 12000,
     "2RwfEHekhi9EXpRPxJcYZ1BPaJZeyycU3jjjejWxb3MN": 500,
     "2Rz4Q8yrNa17PXvyxDArNUemQHNHBfqFC7a6Qqdf9kCB": 500,
-    "2RzPfgwh6kVtsfNwNZV7PMp9EXrt2QqiHVxd93ZrMQdV": 1368339,
+    "2RzPfgwh6kVtsfNwNZV7PMp9EXrt2QqiHVxd93ZrMQdV": 1485819,
     "2RzXBFg14oaxanLnvBiqYj569vC6gcF53SgAdmRxNfRu": 7000,
     "2S2TEREJrAwcJxGuJUHXNgGWUVtsJYFLBXGn6aQD9inm": 15480,
     "2S7xJjtfgWXiqqjrAqa7qFXDNP4749HBPhCPiJYFWGUE": 15000,
@@ -216622,7 +221106,7 @@
     "2SSzT77dhH9nRJr4TGGhVhYLVcu2k3jBy9cAMXGrmYWs": 5000,
     "2SYq12iFwjBWB7uDTTAndxsmiHuZXPSYuxmbX2Ke3tbb": 2000,
     "2SZLh2AVza8asLJp8Px5xEvxREoFVFKtS2R1CnKXDRGF": 5000,
-    "2SjDu1yy374PdQ1wqKXBuh7fU2WTytvChGvt1j9tihC5": 795300,
+    "2SjDu1yy374PdQ1wqKXBuh7fU2WTytvChGvt1j9tihC5": 796000,
     "2SmdTAn9ncWWjeYeMK7yDGUtfCpCJTDYJLjAEGK4tmZu": 10000,
     "2Svo7Cc3Qmexbi4L8KFBMaKGax1SmraCKrrJafRLh6zm": 1000,
     "2T254hoYQHCn2yo71Tb3p5q3Z53ToELvvbHUdr2Ujg72": 1800,
@@ -216631,11 +221115,11 @@
     "2T9kH6uSRpkEZ3Q9a7dzJXthvNybBTnqycRC4hFrkEaK": 20300,
     "2TCswt91dwbUtVMqUySn4at4YzZZvrrGBkPU1TdHibu6": 400,
     "2TFuAqyDGhj8GS4nwi4yZdH8X9FTHuXER2eSDHGk6Xaw": 100,
-    "2TMDBBdaUeUE651dxSun9Tvq7tbv3VJT8iFVEzj6fjwK": 47900,
-    "2TRg1EG9JeVFReagboasJnR3gAVzLvmmYaSBoviWuaj7": 17500,
+    "2TMDBBdaUeUE651dxSun9Tvq7tbv3VJT8iFVEzj6fjwK": 75900,
+    "2TRg1EG9JeVFReagboasJnR3gAVzLvmmYaSBoviWuaj7": 17501,
     "2TSwtFJNbWRqEwjviqqhG2pj6UWhVcxrN6o7W1bqboDf": 35100,
-    "2TViGzz4jqGiVA4eFZw9QKBvwm7fL1isdTUZSt3r8wkL": 20500,
     "2TcgEnvgmreBQ4YtKGdtwMMYLwvqSeXH8PzyKNaPv8LX": 7000,
+    "2Tcq8yK7Vqrp6AJzrGN2UrLKu1rKbQwRSdk1rxxdzXLr": 5000,
     "2TcwxAakrcYGostsLmxguu57bHhhmHMk6A2vUznGojzp": 6000,
     "2Tjd1iNguM9ztbuNLU6WUJtxsLCwdongGpRLiGQBDL5F": 15000,
     "2To9cy3LAZeqPm1sSxjPL1WWDYp5x9niBodGsaUdkpqc": 10000,
@@ -216646,10 +221130,10 @@
     "2TtM458ntEmtZq6GpichnGtfF3aYQHor1tcAovwLKGcd": 4000,
     "2Txn6A1D9Uq8LPGkHfyDd5eDivnpGPCrGS1WawXFokwm": 1100,
     "2Tzucm7ZXbNo24TyLoJ9RgaWxyyGUG6rgwVCkvEwQUpG": 10000,
-    "2U29y3T5Rvh3cb78s5RW2L6WbtRT3tYFGhyjc7uSLXD9": 65000,
+    "2U29y3T5Rvh3cb78s5RW2L6WbtRT3tYFGhyjc7uSLXD9": 75000,
     "2U2ajDfKDmw8rGMk2eRoCz6CcSQemTgFgJjjposFvKsk": 5000,
     "2U3fGgianD57fKFvgtwbV9V6s6fUSWiKqdiDAzN1A58H": 2500,
-    "2U69xQ46aNdB5H66hQEwf7UiH1yRA1UQXbD3fAoJpnw8": 102400,
+    "2U69xQ46aNdB5H66hQEwf7UiH1yRA1UQXbD3fAoJpnw8": 87000,
     "2U8zYyGurjNqcdUxD4bG6WtmZ9vt8ZdsdXsBF41iyW6r": 5000,
     "2UC64aioVnzHNCkAmAiquxFkNHtHPykTh49oRSprmvN5": 1000,
     "2UENc31GbfeiEph75SjVFkSmvhXSH9EsEbXpYbxCZP64": 1000,
@@ -216663,8 +221147,9 @@
     "2UehyyJdHjNxGUVzGcxcDx3AvJK3asMReSExxDsgCWFi": 600,
     "2Uesy6Pb8cDfhS8PJ2exmnenJ8gBYB1zwy3d372MXf8R": 50957,
     "2Uf73V5WRUVxoWVRrfDFnJTdPQPnPuuYwX8mLJj3YnM8": 10000,
+    "2Uia5jQWKER9DQ6AWxzducribUjFjE3NL1BRaxk2v3Hf": 10600,
     "2UtHqiy7sedXPzBzHsLy6aUmbj6CYJes6tnCJui7fyDN": 5000,
-    "2UvAD3Xo89tfwWtCxkZRJDNx17rpiUHeCNyZQrfCrNFU": 408500,
+    "2UvAD3Xo89tfwWtCxkZRJDNx17rpiUHeCNyZQrfCrNFU": 198500,
     "2UvvFG8N1npeEgfbGFL9fv2MSFbNoCb3eRGRU6CDK39Y": 1000,
     "2UwCNopqc62BA7qxRep4UhcFQbXN2X1rGgUEn1sb11J4": 10100,
     "2UwR6owvju6ZZy68XAX3vT9TaBBws3Wf6DKMMcvvQ339": 100,
@@ -216673,7 +221158,7 @@
     "2V9xsJYtDjtDLGBsGc8pWuTVeL4axELpT5QUidpB2fBj": 23000,
     "2VBmX4DetvHkJjsaDpFy2ZgZQAqFwrkEMhPGQ7nJ1FMY": 165126,
     "2VNS6c6t5mqzkDn3F8MKrWhWNasWnaRKdLLe9LC7tFAx": 220000,
-    "2VYX3aDNrw8kTUD6LxktgU2P1vc7ZYHKCzDEpt888BCk": 21360,
+    "2VYX3aDNrw8kTUD6LxktgU2P1vc7ZYHKCzDEpt888BCk": 21359,
     "2VZH8mQLynokccH45siStBvpXeMtocqQQ63UzcVbKXXV": 451,
     "2VayMwCyxsdA6ny6frfSXkf2vLtqcqPbKRWY82eFnNBx": 5000,
     "2VbiVGf2j3vty3M275CXaNEtSPMSJBMn7u2gRWvzMRZD": 6000,
@@ -216682,12 +221167,13 @@
     "2Vo3Zi7TejQidRywCswZ6ziQ5mygNtS3Mjhk71v7nXtT": 10000,
     "2Vs86ARU9nDjHDYk6ojVdG4rKQJtaAqusmKiYgB43gcp": 103300,
     "2VvLeWoQCx5KzuvMt9Z2vnQfdvwpJgQfSZLTdd7xaReH": 17500,
-    "2W5EtMHdBoTAFW3gaeoQ5Ja7gCLQJ6wPekcVYmyHJ9B6": 930623,
+    "2W5EtMHdBoTAFW3gaeoQ5Ja7gCLQJ6wPekcVYmyHJ9B6": 980623,
     "2W5EtMHdBoTAFW3gaeoQ5ja7gCLQJ6wPekcVYmyHj9B6": 5000,
+    "2W6CTceYo72sQeNCKfwEyMgb8jbMbw4HWhbokjzPKMoh": 5000,
     "2W7jYJpGiGUQ2uLM8pUdknJ8Cp8kiYb7eZWdsF73LztY": 5000,
     "2W9KAfjYeHJJfxmfyRRpBt5KSqnfzQwfexpS5r1Y16fh": 7000,
     "2WAA3nnfcGLNKQaqb4oA8ZCE4CPByLmXqhLcotyixXmB": 480,
-    "2WAGynJaMruyr9FcrpyjU5nBnQS2XtrjZyLV7AbeRj8b": 29500,
+    "2WAGynJaMruyr9FcrpyjU5nBnQS2XtrjZyLV7AbeRj8b": 25100,
     "2WDpotYkyyWrXydzDMVFLynH6JSygu2TMfRjig292RqG": 33000,
     "2WGXDeJFGXqtFVc6UiqRMdwWCq4Ro8eF9aQbsGYD8aE6": 13700,
     "2WNsK5jGazz1B3e7X1ib6ZX8B6Q8RkU1wqDvPoTLYAVk": 100,
@@ -216704,6 +221190,7 @@
     "2Wp7Qmg2SeG5oKeRPeKuE7zCWTJxo4iWVEogXpxx9r1z": 37600,
     "2WqgBx89qE5VCJRfgVe2u3YwcjVfC5VzUB36ot8ACCwJ": 5000,
     "2WvGtUZ5GDo79CbWV4m3GhMeApRJ2x22Se4fAgPpyJNn": 5484,
+    "2Wwcw1acgrt6Aw6KryaoryYtbpeHWRwPVSi3dbGqDLr2": 10000,
     "2WxobL3fpsYcCyDYsmu2YjWCxnEgUnShJQeJWFhafdgT": 30600,
     "2WyEuSnfrB23PhV2ZpE7wpoKAGp5zkw4DffddxuLgMyR": 2000,
     "2Wyc7q9eR3nmdvkYrtycWJT3vMPVHdB2witxBJcQ3NGn": 54219,
@@ -216714,6 +221201,7 @@
     "2XB5QFnjP9yFzYbNtHrDsDZRLqnMyxzdrM3vjxDnVUXu": 8900,
     "2XJ2bL54ncTqYeroCqwekLM5q4qCBdU7zmAzd43SUQk4": 2000,
     "2XN3KXL89PYmeevv9tLs4C6RAgUhAAzYcQuVq8f3z8vG": 41960,
+    "2XP1y7XJcGDs1dLvBM3SK4FRFHMuCoeCZfVD54Zug7LH": 10000,
     "2XPGF5pzuww6Gk9jmh2ku47CrupXPpQLDNcoHM73fneh": 100,
     "2XVH795yP9kibcULAD7TAYuNKnGfrDCqEeT4ru4DW8Lv": 174000,
     "2Xdr7QcwgMUQuaK5qszCuj1beA2SWzYCsUgjyPQWTwsW": 11900,
@@ -216722,9 +221210,9 @@
     "2XiKRdzNEX72hCgZErnsrj2AG8HoBnfiDLGdBU6zyCtV": 2500,
     "2XmFSM8tY56AU9Ku6ERNwyykXvm7ibiH8joxVABMh3dS": 30000,
     "2XqmBvRoZTmqX7kKhAp8LJYkvDgLCfPP8e7eGobH3jkW": 10490,
-    "2Xsp6ZC82y3jwjBpZ79g68DoqFRmUU7tWnje4KioSdkx": 140520,
+    "2Xsp6ZC82y3jwjBpZ79g68DoqFRmUU7tWnje4KioSdkx": 120000,
     "2XtXSdWbiMJn6WB7qxrH7xppL8oR4QApyCDtkXPmCD5c": 50000,
-    "2XzS39t9ooTDmt7PRBnG9qQMLZaM2iSJ8cWknNGSwuKR": 16800,
+    "2XzS39t9ooTDmt7PRBnG9qQMLZaM2iSJ8cWknNGSwuKR": 24800,
     "2Y3P1z9fD43Hkj5cPKMnoCt754QCibwaij8Qag34UQ5W": 1600,
     "2Y4shuUxLc1fUBR6dYtqddXPKEaxu3CMNqZqXzJsKifR": 10970,
     "2Y6jj465dxoGcPKGGXccVDvcbiApRVr4NUquF2xLEWPb": 295000,
@@ -216734,6 +221222,7 @@
     "2YQgxXJpzF14sM8ZwTotRDr9RPsPM9GWBsfMZ4QD2v7X": 2500,
     "2YQqB5gDhuneXxdMRL9aXKvT34s9Vh77AdeP22o9eKFz": 10230,
     "2YSxe1dFFkGp1iXfwobVpFwDbQKQb5Hyn9XDBRL2xwgp": 1300,
+    "2YUQpNJv3vcs27UiD6eB6zsTzmdKd4h5GwVNHacs7LEw": 8390,
     "2YV9EVGw3v3ZGvcBQG3trAXTw8FvCgsRoceU7av6xkj9": 300,
     "2YXAn8MrysbejvdoVCNHjmcLvAY6EJzykYvMVBYjyxVD": 400,
     "2YXmsbewk5Er7gYb8v2SQc6B4pR5C8ZnUEDACFUXtQZ4": 20000,
@@ -216743,6 +221232,7 @@
     "2Yi1Hjix2s7esUxx22JCEtAPUXN7CpWm67HQ5FSXRYpq": 5000,
     "2YiWP9tTmUKHwCiQ6D5Rsuf9bzvuZme7Q9HJZB32HaRq": 1000,
     "2Yovz2UBvnJqoPj3TBNoZm5NTSueuDtDJiSNTyWW7PMn": 6300,
+    "2Yq6Gq52XPYuRcJqPCN14DTLM7gxp6Hf6qAk5UWiDNJH": 7790,
     "2YvBb82TzXcGxUUJxZduUjDYCmGzy7bMTSM8avCzbRgu": 968,
     "2YxTktm95y6oeoQ7SbvzbeAUZqF2zFnZsp8TpLNkpwJA": 1007,
     "2Z2EZMzpUC4RNqeMt9XbPE2tf2pVyNsL7ptAUAJLrgMi": 1500,
@@ -216763,7 +221253,7 @@
     "2ZnagV5opqngHhzvHV1PtjJ6RkZv4di2Ak1wYi5ArkKC": 5000,
     "2ZpbkSadoJzwoC996hRudu2EuxuGAczwNnnjUFVRAS4q": 10000,
     "2ZqJ7kNSxS918XScob2x9Z36zVedDvn8mcTJ58QSLstA": 100,
-    "2ZqeadWajdq8YFhyiUgAKSTKKTVhqRG3TAmjtDU61zRY": 200,
+    "2ZqeadWajdq8YFhyiUgAKSTKKTVhqRG3TAmjtDU61zRY": 10165,
     "2Zsxgi1atisSF6DNWDrWDbAW6hczLh4a2RgtoR9arthk": 5000,
     "2ZuJ9MJuFJCBc7YbaQ24GoAvEwVVxwSRZhDoB6P53tt7": 5000,
     "2Zvwi96jvvYyZXS4cmao2oR42rrvojeyqYwns5N81qaE": 46504,
@@ -216782,6 +221272,7 @@
     "2aV27JAG7fudQyxLXBU6tu43VmNvaWb9oswj3u4Cc753": 30000,
     "2aXDJqkfbMqa1vGcrgVPuh8vmKc87Vf472AVNbnEzxPW": 5000,
     "2aXNgKkFkaM3uG6fZku67K3w5R3JqGNzxERP2AjcwHRS": 43807,
+    "2aZf75zvQ8Q5vaeF6X4Qqj5HTPs3BkkurnzTtCB2JhcH": 7000,
     "2aaGjccjmfSro4nt8A8DcNY4YtGFd6sEZ4zgsS2wFMCz": 9000,
     "2ag5NsW9CSVi2cCvtn48cwbFNvzMpX99cUeDHLAsLsSJ": 5000,
     "2ahNkUHpwZA8vjxpTCD8NoyUA6rGWyMcNuDoggFxgMTG": 10000,
@@ -216813,21 +221304,21 @@
     "2c9Zzt8LAMPbPTDzg8buyTaeDZZXqr7kSEiDn8DWqdmm": 10000,
     "2cE4M3XUhBm9Ym5osDuVpDv9AvZNQGH8SSvZYwFz535L": 1500,
     "2cMwKDDMn5NRZRy3hXaUt7vfiy3TM8mUvRNor99fa63f": 200,
-    "2cNbQ1fUMhztKAPJmYLfULFM7wwAaPsraBqU5nzS2oQ8": 601809,
+    "2cNbQ1fUMhztKAPJmYLfULFM7wwAaPsraBqU5nzS2oQ8": 614809,
     "2cUKimHfSwyaRcG4PgTSu7rSHevEnW2X654vZHmGx5hU": 11624,
     "2cVEejJcqTGaJup32JiCy6rRNn8fPyhYgmcpb8RtDCDx": 404,
     "2cZvzP6nXASJsWUdCJD6GGr7s1R81UiUkrc2tFhcCPL4": 180000,
+    "2cnErQw3P1cP2cDjM8Rp6JyS5pBZ6wRXgZKkPnRNSifb": 54400,
     "2csYQLUGk1CEYr5r4coWkmzTiY7pJfzsFbsiRP1RMnAF": 8184,
     "2cuRHEEFWFyvQU3zwTEtjmFpibravBVE9N8oevL3w2Gk": 2000,
     "2d1Yuj5k74SSFFW28qkpDpghWrg2kNoEn1cf6qTzbEPY": 15000,
     "2d6oAGa9NgpqW2XbYjp2ESJTYzYEt7DJ2REWoTPkYSkh": 200,
     "2d6vNpzo1EYMeAx4WgwTzHkqi7ViW4EKbCRPzP8zbjBh": 13500,
-    "2d8kWNsXEH14rXRi27fnomc9SQYmhy967dyKd2v1cnqJ": 5000,
     "2dBKdsE1vDneiTwrTuDstzUfDTBUSaVf6EKeeoUyKm5u": 500,
     "2dBSYsV9XZwxZfSrPcz2D5cAh7WYJCqB2pVRNLGoUHjE": 8000,
     "2dE1fptxTSp2HoZMTbGnRN9Fv1oaAoUSozBt9iwWz9Ky": 900,
     "2dGYa8p9e2BSLuKtFioMY1UWeUdP3qJBYx6GGUSLXFSZ": 5000,
-    "2dHde38uCVX1qhJ5VcaK2juQe2qM3rUX6ZJGJHnBiThr": 136500,
+    "2dHde38uCVX1qhJ5VcaK2juQe2qM3rUX6ZJGJHnBiThr": 222400,
     "2dMJAsSuMjcCjNWhjsZ1Lb1GVZqELxxnk6Vuj8UfgMKr": 1000,
     "2dPjkLiP9VkcJ3p4P9J4MK9JXWrjTeGyceVp38DXANmX": 10000,
     "2dRpsdP8Y7Jf4yRCxhBxLghFeZLPX4j32Kihj2dNMnAU": 3000,
@@ -216846,7 +221337,7 @@
     "2e3Xm1JhfFnuBSYjhs4iPveNvLnNBSAQPtnAabbRc1LQ": 500,
     "2e4WzCJysXfDpfqDHhwUPzmm4Qs99NXdpb2mc8E8VXAA": 100,
     "2eB8fWL7xXExoiWNGmjiehbWGiKyqKkzffZVfjNVjAPS": 5300,
-    "2eBQqHKn9KMspJDWgmxZz7QcfEa6xXJRsdLfvdizXCke": 739180,
+    "2eBQqHKn9KMspJDWgmxZz7QcfEa6xXJRsdLfvdizXCke": 619280,
     "2eCAdVSANZPt26mA1MdskxZzinVEwN7ZJBuX8Lzq5fgP": 700,
     "2eGeRpMsii8BNcTXv4xq6rcPjP1wzL6rsaKEUsjUJHdt": 10000,
     "2eLvjBQLWxXYszomeTyYknTFEb2fYHTU5hvEQG1aBP3G": 5000,
@@ -216855,6 +221346,7 @@
     "2eRa7Ca9iWtysAZgsbEYjAJCqe5LHufMA3AgS1rz1HN6": 2000,
     "2eVEd84etF3JPFzKHzd59uGkhbggutPiDjGc6626TEAy": 2500,
     "2eVHqrgRBr9fV85G7i6cEXYhyroY7hxpzd2EmATuRz6E": 5000,
+    "2eWtNzad37DXy5FRVfWhRp7EQcn7sj7AL4SJ3PwgTmVX": 1200,
     "2eqDjd9JXGVYVx6FyifMg3hWRXYBBuZc8SbatZjSaCMx": 10900,
     "2euzgFRL7yEWhHRZLBrujTnq4BwtB9Suo4pnLKSoWLJQ": 17700,
     "2ev3xBnZ4ehAYWhoas2u5k2HXb83T9CTQzB1eFqQH1TZ": 1000,
@@ -216874,7 +221366,7 @@
     "2fSfnrFZYVeuUrvfkL3xKARcQDEt95iB1ijBQZWDHux": 2000,
     "2fSfnrFZYVeuUrvfkL3xKARcQDEt95iB1ijBQZWDHuxv": 28355,
     "2fZagM7oDUvjmXRr78bqNeWdbnVtUwryav7QCN4d1gnx": 1000,
-    "2fbD5cTsRDA5xNNT77GRcVzSXUx6HV15R4FzYsqzoDwK": 7340,
+    "2fbD5cTsRDA5xNNT77GRcVzSXUx6HV15R4FzYsqzoDwK": 3840,
     "2fc2k23gkmq3cKiot9nd1bDjUx88ppdGRjcSzWp4jG5K": 10000,
     "2fggigBmdEjC3q86ApMvfY8AcNJsmTDYGjfGRXxq7FRJ": 1000,
     "2fjrBVwM49DfMfrCgnzZHLvj3PtWRRYBPMYuQJ2yxha4": 120000,
@@ -216903,7 +221395,7 @@
     "2hF4Gtdw5LDqrEL7AoWked1n74vSGtgRdBq12d9rhE53": 54468,
     "2hKGyLYiebqkw5yaV96cVGeVDeadayohzPkPwWBECej3": 9000,
     "2hPkRdzJFP57hhnrAzRi4MJhYkw3pwtehKoanTUq6gFz": 100,
-    "2hRrSsfpcporZT4wSjoQtBzEMxJkSHSwDREPNw1ayD57": 9000,
+    "2hRrSsfpcporZT4wSjoQtBzEMxJkSHSwDREPNw1ayD57": 28000,
     "2hahGs3d4Z4Uuq32qirNCb3xRvpTRBW6dAKBHzpXNShB": 5500,
     "2hddjHuLFRB8fW34KdoVsah1ZiPgm9QrdnjifLyDTEGs": 4300,
     "2hfsq6f7hhrteBWfYgWZ4LhUak4U6Sy7pM2WPQWdd4FL": 500,
@@ -216919,11 +221411,10 @@
     "2iR9QQEySYiGTnkMvSnhb9uojMkkt39QbvNrxxk7HzmV": 10000,
     "2iT89Q4pArTicpmfhewEZN8tFhwFYtUSrUAdALZV4zEX": 10000,
     "2idgCuaRcN1uHpvaycF2x67NH3PocBDtoiJhU45LTJfv": 2999,
-    "2ig85fNdo9QP75frjKB1efhQoGVk4HjCGb4xxhhtG2HH": 136393,
     "2in6V9WLiVzoRkrjBZibEixNg8o6jjv9cWP6xNWcDqRM": 14019,
     "2ivJ79ccCCkso5XiyjEajwWwH7oLe3zwjHKGr4di9SgM": 12042,
     "2ix2Xkft1EvXbXAkNv7kzzKy1oVLgMTabJKT2ftL35ka": 2000,
-    "2j627cXKsWU2PXiTTEqQsKaSVBpijhgmBs4yg4zBXUrp": 26800,
+    "2j627cXKsWU2PXiTTEqQsKaSVBpijhgmBs4yg4zBXUrp": 23300,
     "2j8wa2Un5W2bPo2MsmzrLgrJje2oiBw3yVsWaCK1iEP3": 600,
     "2jHxciPD9bgoSXopYpJCwZgfVx4hTU1YUkFjWNrcjgb8": 8800,
     "2jQUH4HfHxdTesjCjvMCx1VJgA5AnpuvrWRq1swfRdsS": 10220,
@@ -216932,7 +221423,10 @@
     "2jZCKJYkFniWg9RDi5oQ1Lhy2uCDKctRqqD6yve3uyVr": 10000,
     "2jam2G3G7U6p6aqbTF1PiVuXD9v6GBw2avcbnEWFnJa5": 3000,
     "2jfNEtP3SKLGfbnG3WzyeXntHthsdQGD9uEeca9dEBDj": 10500,
+    "2jfUTY9pSs6FZmS28ftc3aed1jKVv5iUrU4ZBTDAortx": 30000,
     "2jr74GeDGW6XESQvThUGJu1NXnoBYFaeEboXKaeqBdxy": 200,
+    "2juDNtyX1kLYsYoYJxkKcXpmA8RFxgZP2473mVUQf5nD": 11700,
+    "2jyZvfYbneE8PoC4mLqqJVxuE1yoF3X8sQvjdVqNnGN9": 15400,
     "2jzZWBWbzaUQpSJTnSgupvUG7r4LaKKdrkq9btYMbR7P": 2500,
     "2k279a5gDWtPvZtGYhMeLKnUxNFVu5iWjwNEXfAsm4QF": 8000,
     "2k7iQxchwqNC1AfFnxfvZS1X24yodgsuGGSWToqvapfD": 100,
@@ -216940,7 +221434,7 @@
     "2kDesRH5HS62eZ3FEdM1jdAq4phtZJyZ3eaUjyA4RH4i": 15000,
     "2kHCWVmHS17a92VTjkRxzdLXVU7oo6BXwqCeTS3Fznci": 40000,
     "2kJs1EC6hQKS8Dp3YseLjhXjQsHtVqj4KqW6W7Xeatn5": 2000,
-    "2kLFCPdkxR73Ay3vjnkUCvnaZmyQY5S6nH618aZg8mgw": 191556,
+    "2kLFCPdkxR73Ay3vjnkUCvnaZmyQY5S6nH618aZg8mgw": 117056,
     "2kMPv43fQ9cr7ea8h9eZ1JJML2vLybTSNZ2yZWJgUNa6": 516,
     "2kMQzj83eRXuk1QpCU7HEGELm6ybLDUcddQTXjYf19GY": 1068,
     "2kaSGPaK9AbaJ9pg3ZnfSfGXjSgXfF9cc1GoNaHCNHq5": 20000,
@@ -216948,6 +221442,7 @@
     "2kg2aQfF2RPPaptQJVMChdesQetrtmrrbkoibgze85bv": 5000,
     "2kg2aQfF2RPPaptQjVMChdesQetrtmrrbkoibgze85bv": 25700,
     "2kmpj5dutVKehkCfcyJTLc4E8tNeY4PPJD5mneTBARHK": 6469,
+    "2koSgeBNBDhRVLcoYW9htE7WJzYFUVqRTC5UPvPjhbbB": 7156,
     "2kq14LVjED5m5up8n1fbzWHmb5WLicGwwYtNRkZsn7v": 500,
     "2kqxZKD6vwAkaep7PjDnE1Ebbu5igLVhurhj6oFjuR5D": 15500,
     "2ksJqMYAyzGy7ePZP4TUEWgp1qnka419pFYph7Nnypku": 5000,
@@ -216959,13 +221454,12 @@
     "2m6y5gVoY1wK8e3PQ8qoBwtcSaJ2XAVR9jnquPuWxWyF": 5000,
     "2m7ts4iWDivgMdVHwYTbpfvcdCsk1AoWUkG5zHS93cTD": 3300,
     "2m8uGHRR9s4vcQWiXEbVv1PE2ZkQdEigphECPmp5Niu1": 30000,
-    "2mHeobuWJzqVmekaHSnoup6yPE3XaQ8DPPZHS59wwcXY": 183916,
+    "2mHeobuWJzqVmekaHSnoup6yPE3XaQ8DPPZHS59wwcXY": 193916,
     "2mKPcJJfhng9PAoGXHaoioWHD1npDaCPWP816zVdbqvB": 5340,
     "2mKboon37jwuaQicm3Ek66vLP97esMggiD486zjVz34": 5000,
     "2mNkE2dh8cXZtMo4QPHDqvcpEAWzke5p7Mbh2LybtJbY": 59079,
     "2mPJvEZRsP7FQA5JJgvnW2THt1FitedApwFHEZGh8ziE": 1000,
     "2mVhxyFfDyb9So5eMfMvgrgUHve2iDqeFGnBxydDdtd4": 16500,
-    "2mdx8jQ53p5jSSHjqBwbfFruJSgCyLL7WpdAGWDy7rC3": 5000,
     "2meiG7ojjjX72cFPfJu4UhAbN8hBMUMk6YKBGNyPoeeB": 10000,
     "2mhbkvnQ8m1umMbQhxWNZh9u2cbzbDsDGEZWWoH9DfuQ": 25100,
     "2mmF6mJQm5tvYxGjfrr7ZhjS7wgjbv8twJeUFqAKBPio": 4000,
@@ -216975,12 +221469,15 @@
     "2mzgahHViyqMAArrMjeP9mvSuwrMydKbgV43AJJnkifc": 10000,
     "2n2EqsVcRs7jDpDuzSP4dSAdc5GGTaPDbZGXsSZTSCRQ": 1011,
     "2n3S8BTVExKsvXbXtSbs2Jpiy9qNn8tZVzkGtJk2YzRP": 2000,
+    "2n3fRvE42yhZewo923KRpKQKxyjn3LkPo5UHteeBWbwf": 100,
     "2n4eyWdthTXwbGtJku46FFhkNzyneSjb8AqjwtZz45qE": 5500,
     "2nMMiaRCkUoAYrCjQaNxYQ7QHE2aXH9QhKRJ2SFuk4VQ": 5000,
     "2nTHMxp9fFfCtZoNuytAUdfnNoLLr663YYmGyc5bkFFT": 37800,
     "2nV7Dv4nhTJ9dZUvRJpL34vFP9b2BkDjKWv9iBW2JaR": 2022,
-    "2nXJKjL91FmTMr61RSNDgTojPemPnozdi1DsW48vHEJe": 107768,
+    "2nXJKjL91FmTMr61RSNDgTojPemPnozdi1DsW48vHEJe": 46988,
     "2neTkJ4QmtKs4Qd8wT5iP5GvLUcX8DBneA5pGs75Hjcp": 800,
+    "2neZ3XhHbxxkL2pJV7bfruxnoefdjHNpuMi5FkB4jGvk": 44400,
+    "2nfvHtC2KDfMnSUwtUJvhdSB1jz6g5VzW9u7AjFAbegL": 27200,
     "2ngUaubJ65AJSEmA3XcgVFMMEsp15EwvNFRNZXbSFRov": 314,
     "2nnmZ5b5oBFmjoWBa4YBUHTWKwqMeMbtHyqqifhkJtcZ": 8000,
     "2noiD5PnFBTVBj8xBTvUAzQfgWm7cQRtGJnjLaSuabja": 52500,
@@ -216993,7 +221490,7 @@
     "2oBABQbmuNEghbzKnGwSajSKZCQy3MUBj8uNkpGxmqsN": 4200,
     "2oG7sqss6A99uwp59UwDUwmFp4JKmWP31WmaA7PVVtjy": 1000,
     "2oGhNkeASgaaMiLwHyiFAENPFVMaAXxj9qjvDWjQNMb3": 3264,
-    "2oPRopkCe8PMzCCVUcuabFMidQbnenkP94WHMaQejPcK": 34640,
+    "2oPRopkCe8PMzCCVUcuabFMidQbnenkP94WHMaQejPcK": 114600,
     "2oPmJ5v9hDQsXHCyCnTPy3YooUFYJeFPLbwvcAmTy3rM": 2000,
     "2oUDTvPxwFx5QTuHybmq4q6kSwFAtzpRDK9gB4LG5ZoB": 70000,
     "2oWsV3kzqJkAifwd7fexvsZuVnHKUCQjrTwzX8tiLTno": 10000,
@@ -217011,12 +221508,14 @@
     "2oznA6PMfpivJEausR9xxkTKY1z4sPCb8FRp4AqB4dgT": 12000,
     "2p3MUF2x1XRLhepHxMYpSs6y7aGGZ963uxe4MqqhGXDz": 3000,
     "2pAhCmLFL3TZFRZE3dj1RDfVqzxLE4qoFQjE8hR56uKm": 100,
-    "2pBE6bizqqvXBPEgP95ESDvSxgYs8v1Gm6TBRZcksM1A": 681200,
-    "2pGVpsapsNMs7RdxV6ajst3KUXkkD2DEFtayWJsHisoV": 51000,
+    "2pBE6bizqqvXBPEgP95ESDvSxgYs8v1Gm6TBRZcksM1A": 981200,
+    "2pBc5VGUkLtngCdZy72PMKJDzaKVLXPtUefmwdtJF611": 25000,
+    "2pGVpsapsNMs7RdxV6ajst3KUXkkD2DEFtayWJsHisoV": 54796,
     "2pKh8MZdgWdTqDwaf1Q2SbJDPUsGKnYqSwy9u6NEBmaQ": 50000,
     "2pQ1SgfSCX9SMvG7MVbQXbKkfiAsuzcgwiGYiVtfyCMe": 17000,
     "2pSSnEuvmCSH5JzViGuqEKPyJYBofNNvdSi5Uw9dgbTx": 6500,
     "2pTk3aHet2z5qBLbcox2NXC41Lo6EphuDCykG9nowetz": 3500,
+    "2pU3s8REZjv56QfyLidrdAJ5pH6AhbMZFu1Zd4nDQfzk": 500,
     "2pYSojBcrUqx4ouRbye3eX9LFxQSjiUHTZfKbpxWShD8": 2600,
     "2pYtuXWCttgh8iMW93QKvCwLQvVCuEJMXNc1URTSBMLF": 48700,
     "2pa96P3RGrR9cCTyR9ymcifk1Jr6GNeJi9ErVRqCbC2B": 1000,
@@ -217027,9 +221526,9 @@
     "2puDpbAmFcNe21ToXoAy6jdKeKHyBFQ6ERPfPAyXJvfd": 2102,
     "2pwP9vakfppNZzb2hVnhyorD2to1a7XbyxZUjZ9RxeeY": 29900,
     "2pxzJCMTXvKKwrCa4ie9WVTVAdoBTx4DcbqJE6CiULu3": 23104,
-    "2q4AvqeNjGuHVjoYhPcKj8msCKAYhQBjdjZszu4UdD9D": 27700,
+    "2q4AvqeNjGuHVjoYhPcKj8msCKAYhQBjdjZszu4UdD9D": 48740,
     "2q8ebZqcUmzxMPJYi22qaKyV2U7ZGugZigwwbTsbPinb": 2000,
-    "2qB1qRrVW8QBnDdn375WgMFWMfsD3dcdjTbtFHNSEJuV": 36500,
+    "2qB1qRrVW8QBnDdn375WgMFWMfsD3dcdjTbtFHNSEJuV": 120000,
     "2qE8v1CPPt94q3StaZFnMNtcM9CXQAvW9njTcLymnd57": 1000,
     "2qL6jJpCd13Drt1SsZpkFG1xRrAbpvjw9EVwNJ8AGMKV": 1042,
     "2qPaSHLLKvR3CvjeewzRo1z2efd66cRpH3bepkuim4xp": 10900,
@@ -217051,7 +221550,7 @@
     "2r5bWd4JUWvcMSQ6nFuiwWMVZyp9AuYrneLtg1bRsoKe": 1100,
     "2rChuZjNr7CRc4TKtnUrLoidDGhDBc5gWV5q5Uq7NDBh": 6354,
     "2rD5vGjUeUVsUTz56s3NzVvg1sbMfvzzX5UsvsAfqnxT": 2046,
-    "2rJEK8zwiUU1eHgLmAJDosrBfYGoNrw75PPS5A7k7Mtr": 33000,
+    "2rJEK8zwiUU1eHgLmAJDosrBfYGoNrw75PPS5A7k7Mtr": 36500,
     "2rPQAynP3bW52xCtW2jk8XkAAuujiL5CKbyk1Vf3g9FK": 13500,
     "2rT4ikhhKLAuW8mKoGCFaGbKZZuyqsvtTGk3tmqzgqC1": 36386,
     "2rbBUGfqCdscDdMMNgNHmrhur6hXHDeiD6ugRhJuXgc2": 5000,
@@ -217063,10 +221562,10 @@
     "2rzvR6MYYxSekMAF1v8iiBVrgXGF3JnLmJEtokLhkUUR": 1000,
     "2s3tVLT2yky4zkRHfGN4o9nLyX7UGdWh8RV4ondLqB5p": 1379,
     "2s4XFc94QJmtrBVYoouurFxRWedcXLGmY3N3EuNqNpBG": 7500,
-    "2s9TGZqKDB2dVLUzMLBc9VHhqYyxcTkdpyggmypLpQfW": 10000,
-    "2sBEibZibmBDBaBn7zhMEfBw3jTfgS6tqgPyAKn7AyKG": 20000,
+    "2s9TGZqKDB2dVLUzMLBc9VHhqYyxcTkdpyggmypLpQfW": 218950,
+    "2sBEibZibmBDBaBn7zhMEfBw3jTfgS6tqgPyAKn7AyKG": 29000,
     "2sBfTXoz7gQvu4L5fKSuqmtHHJzSeD6ZUQXJCfvVuhPf": 400,
-    "2sCZA1hjkDEtkj7FLEA4GjoX1qzq7ExYQJQdJ3LYyGWz": 54800,
+    "2sCZA1hjkDEtkj7FLEA4GjoX1qzq7ExYQJQdJ3LYyGWz": 33800,
     "2sM7y8vXHckMJLmuHT57gQz2AcAzqBr3oktku9rUDchS": 6500,
     "2sVEUx2NQatWPH9EagkzC7FcqsHnfv8sYjE5qJG4xXo8": 5000,
     "2sYsN8SqRxNYhsDMxBnTy32jE3TbUgMjBU83DuvoG1uy": 3000,
@@ -217074,12 +221573,13 @@
     "2sf8mvs3LKV9JR6uA5S2QeHY5F3FCG16rUP9mWpvHXcg": 191000,
     "2stnqWzsKdgTFa2PYZ64xEHjiVnR2hXe7ekLC2emYDjS": 2000,
     "2suA2Bm737S3Dt1B8d5WFEC11QLFYsH2FX9NSW1CCnY1": 10000,
+    "2suPBgdFcJLjEMMWQrkFhUneLSuUF363b7hiUp179HPu": 5490,
     "2svKVwnjzJse38pk6Fg4Yz1LDC3SU6w9Qu4KkPRzBFss": 500,
     "2sx1b8pQ55VYp8mR9bkkoFnqAvpobSLaPXRKTyFcAjcG": 1800,
     "2sxx9srTv57rWZUBBq3W1mXTJuQKpGhXK6A5wxTQpUVm": 2000,
     "2syUWJwSoK6UpR2D7xP5S1jPok7oiSYTWyzgbG14Pr9X": 1000,
     "2szKV55Kuas3n3KGJVg8CrHR4M43B8yNCVnzjmiraPCa": 5000,
-    "2szPf6xA3Xr8HnXq1u24DnoJoMg7vcXohmu9KReuWP5W": 186600,
+    "2szPf6xA3Xr8HnXq1u24DnoJoMg7vcXohmu9KReuWP5W": 218000,
     "2t3mPeGaZUra3aV17fKHTCgChCuCvwD7wWpWXsFFBdMY": 28700,
     "2t63rAUUg1zgPSzKPoFtKoFR4k41awt6QtgKD9csRP5V": 34000,
     "2t75zX6pwJnazLT5c8koMqUfgaT3jenPUMTfbJGKtbKG": 100,
@@ -217087,6 +221587,7 @@
     "2t9pzFndzZAXZjx7Pb4MpfcqQUD8GG4paugAHEkUmYkg": 17544,
     "2tCZe7gtHpdDjGhyMrag4m8Kns1kR2CuZk5rLMBQct63": 3000,
     "2tGK1MWx2mGMEy9yrHm8w2tpWq6HThgDKoeH4WmuZuq5": 1500,
+    "2tHDdGgLwvNdP1Jo8KVscQ3H9LzE4QNxHDjiLRJ8pBGm": 13568,
     "2tKYfjyp1nbbHVnEYvHZ8tZRijLMyLGPPnT6GK5vi3ip": 1500,
     "2tQvRznaFfBCbRvQM7BTSwAqpUCh1bisHjXcwafAYURZ": 363500,
     "2tT9seSmGouLcXHtDbwdEicNdLEPD2VAQcKWp8F3Ag8e": 100,
@@ -217099,21 +221600,24 @@
     "2tkkUb3dDDM9FHWfBdL2phMDhqPCgtxGtBKsubn2mYny": 200,
     "2tnRxwqsXDgb6m3BaZqoZjHkdshdWvi52sBsM8BfhnAV": 1059,
     "2tqipNvnVLnN9Un8sdVRt6YkFLeyqQAgQCLKbXYdVqEE": 1000,
-    "2u47PZnDaRyudkDpitfcuzmGcu2VbMtYkSErvRJNaxDZ": 18800,
+    "2u47PZnDaRyudkDpitfcuzmGcu2VbMtYkSErvRJNaxDZ": 16800,
     "2u5QpadT24LQYVGu7HR2nd294m2dvUjLbQ76dZHaAn5m": 1100,
     "2u5WrCssmMgXRnMLHiQmP8f1eTf53FVyRUsXSVPY44wS": 5000,
+    "2uGrLESMmJLxzL5mAx4dZqRZpLucWEosYULV1ZJ6KyMu": 59900,
+    "2uK744jDXDTiMp2XkeN699d1iTTMGe5hKHzwoNb2mvvP": 631100,
     "2uKkNkMakWvbqHohyQ2mSmfNXGZ3eTyJuFHXsE2gQJeS": 400,
     "2uNroyQn9tuWh1qM6TRehBKyQ54wte4WrSEdaFunVWgR": 2000,
     "2uS7ZJA3MFkv7FZVsG1DATsULCJHTFgRBSau52penL9h": 750900,
     "2uSUq1zNLGeNvEk11Zeo71ZXYn7qsW6EmyfzRUuCkn2t": 404,
     "2uW5WNcL1ZxHRG7B13nXFK5tyDjn9Ueh5Z65domymo14": 36000,
     "2uWgnvqFAEPz786qH2edoGPePc9RUzwqHhwuwFRQAMXZ": 18600,
+    "2ubyboG3m41z3jgc3qcLx2SgVe3vyDoHkPUpJAHBsz7B": 1000,
     "2ucZTEAZVMToBurMFVfrWR4RyE64K7ZDMTAz2389dAbY": 9000,
     "2ueQnq5VJsnmqCjZ5t6Z7LfZ51R7gUxa7xK4uiTQ4u9v": 107,
     "2uexbT5YDSeWG5raM91LRww3kiHyS7hNaPxSgba2Cuan": 49700,
     "2ufoGH82escd7Rj4a5HzJEx2doJygPWBSq3XRrFy5iG3": 5000,
     "2ugeDD8eXLiBexeyb4XHqHdr8hW2H5mX8ze72y68Uert": 129500,
-    "2uhE1SqYA25QrU7AXEQYZ2AhizvUjeHgvzjevxrPDYeY": 23400,
+    "2uhE1SqYA25QrU7AXEQYZ2AhizvUjeHgvzjevxrPDYeY": 2000,
     "2uhE1SqYA25QrU7AXEQYZ2AhizvUjeHhvzjevxrPDYeY": 5640,
     "2ujZavSSQuuKEJxnk3GUWgbrvXcxajTNJ3GiUnbUvdY9": 3000,
     "2umTjyf4etfexkc4447R7tJc2e3PCKqHNsMNp3KhdRcN": 1360,
@@ -217121,10 +221625,10 @@
     "2upzAGjymERcjSRE2RBMUWuUsXdPS3r6K8boTLfwTJ18": 100,
     "2uu7dwYZfcW8BQSTPmzCGq8ynbY8XYSEtYL3ksKikgVB": 186500,
     "2uuHyXEH9Ko52275M4ZMgonthunuAQTftZUPEsL1nYHr": 5000,
-    "2uuKmZ3uThoH5eFnAwQr3mHyP2QNUKtBbjWuy1f6KUfW": 25000,
+    "2uuKmZ3uThoH5eFnAwQr3mHyP2QNUKtBbjWuy1f6KUfW": 100900,
     "2uwEJvwda3NbUEVvHVwNC7ZvyjAgS3g2i8oG5cvxXvVL": 1000,
     "2v5XH2eBg7Tw5yndLEz25913y2nbFjA1ri4171FcWQnn": 3600,
-    "2v7BttWzoVhjZ5qEbHH6bmkWE7BbvoXrmQQhEyrbwKnH": 37200,
+    "2v7BttWzoVhjZ5qEbHH6bmkWE7BbvoXrmQQhEyrbwKnH": 7000,
     "2vDNeHLD8CCEi8ZdaSCL4HizWewJRnYG6RHzvTtuFysQ": 5000,
     "2vDS1mptdj7MqDYbWEPMYxwAhuyx1xeCpriMZnyp4ioq": 15000,
     "2vESWfAVDyXm3yAsFKt2GattsiKC5DsqayoU5VEVaq4m": 3000,
@@ -217140,7 +221644,7 @@
     "2vtx5zZFpjmJSeu2hEYanZtQBUvYB58bbbVpmHjM3Zkb": 10000,
     "2vvQFnNu8XiVAXnQrxHBhcyAbVQRVPN1de5Z31CZyXd4": 55000,
     "2vvnVnGhHRNv3qbyH6FWyn9JrajTUQSpu1JbUdjY17yb": 100,
-    "2w4AYu4SQgMdoHtrm47FTd4wgph4GiH1XoEMPfhMF8iZ": 46483,
+    "2w4AYu4SQgMdoHtrm47FTd4wgph4GiH1XoEMPfhMF8iZ": 39983,
     "2wEjeD4Q3Wa6mH4KdJ6a5rE9YS9CA6CTDhgayWPKaC5u": 37300,
     "2wFzZHXQkHwvsjJGNsiu36mXmqHMH8jEYtEgd3AFUjm4": 15000,
     "2wJqyvC8yBHWwjUzY38WZQ9MpFuNz8NHcN6RyKpdEKPm": 2000,
@@ -217151,7 +221655,8 @@
     "2wT2uZuqiFgRLvVX9u2U2PfVHieNT4xLecUa3dysq96Z": 20000,
     "2wWTZAHrekyDHsunGD9L27ivKNGRdnq8VuU9gEPE5Hmm": 10000,
     "2wYLaxWpKEZWBytESEejwQtFX5TBsJ2rUeMSmT8EgN8V": 16000,
-    "2wZyJKCpSuLNcboCWbXCWo5TYTA953T4D2vfsDZWTRWu": 45148,
+    "2wZyJKCpSuLNcboCWbXCWo5TYTA953T4D2vfsDZWTRWu": 44458,
+    "2wd7hSh7qxGjrThbEoQzJdw3Fox7Kyjko2PsX6sU7WYw": 900,
     "2wfeaQHsT7XqaWvs5E2CgofhhZuQsUMFafPaERZ9BnTn": 6500,
     "2whG9tPUfzSystt7zBJgFdg9yQrNt5ryM2ZBeG8j2x7f": 1100,
     "2wifHRmBa4tNkokCfBf4iRBw75dcdZzsP6ZsafLoPtaC": 2000,
@@ -217160,6 +221665,7 @@
     "2wqnhb92GdpThjdpZWsmhgQGMy9gqKe2HqLvhcLPdqcq": 80000,
     "2wrgBUi1is4v8BCZuuPJ6f7szMtDkWHjtbU1vMgxU7HU": 20000,
     "2wxZGgSyRpQzDKf1ZfsJgGxrb4uL3bhMHK6DczxC8H4j": 10000,
+    "2x6DZXH12wdgbGp9FAeako5MH8DVFUnPKZ23rtCy6sSg": 200,
     "2x6EjadqEBCbq8TyxYz3mwpcFAC4qKtPQ6x7XD43ae5L": 23800,
     "2x7GHTA9HcNHBQovGbsbeuc6vTbuzrnzBR5Gs9dtddC8": 2000,
     "2xCrq97L4cZtRV69g6xPJspjN8DeNjq99TVRMQRAGi5t": 2300,
@@ -217174,7 +221680,7 @@
     "2xj9tF2TQExHXFFvYmhNTRiC3QkfLQA7edaMC2w9XFdV": 129340,
     "2xkqWdQA1davTc2ewmDzHvWSRBdjdfND4c9j9kKyufxC": 18000,
     "2xmdcs7CGsK5GeoeNLL3yD3V9JovEkSBScFUXm3bUTbW": 1000,
-    "2xrUw5JRuyRuum3uEUiwfVu6qJsTtx2p9NCVbAWazXvj": 126195,
+    "2xrUw5JRuyRuum3uEUiwfVu6qJsTtx2p9NCVbAWazXvj": 110195,
     "2xvpcRfxdkBuA55UJ7vcTwbnZucKFsjh5X9AUTCrqLFt": 1000,
     "2y4BkJrZodCceMSNNcRxzzBGzhB85GkmaneUDLxigpmr": 29000,
     "2y4oXRUbdW5xq91UuaZPG7mU4zu7wtkPBHTNyFAW7nBB": 5000,
@@ -217188,9 +221694,10 @@
     "2yNxEtWXDGpcQ24cMXD3Rd9Ub6URspCPJF15JBi5zH1c": 5000,
     "2yUG6cr1jV69jWdUvKJu3SceuQfDBCPbyEpUPh28pefy": 12000,
     "2yWb6X7voryc81wMCtqQ2pQ7jfGZSeoPPLj78GmxdE6d": 300,
+    "2yaGqSf9eDBXo8g9dQQpAAbzAVekHK3pgydF6zTtkoHe": 5500,
     "2ybfUuwa8oyiB8ALaaEmE4Y22GqwUGtnZCHBFVe4rkpn": 1000,
-    "2ygnadcCdyUYKovMLRrJGitt8GS5DgdxNurPGa7LfhGa": 10000,
-    "2ykHroqGiEabASBQQ1vEaF39bUJgCv6yVUthpFBebBkL": 6800,
+    "2yj7XAL4GtBsnZDrVKKyxqEgvPgBA5w6NGH7EtEMxemY": 25900,
+    "2ykHroqGiEabASBQQ1vEaF39bUJgCv6yVUthpFBebBkL": 35800,
     "2yndrT4HxVQEgrMpW3RHk5JiCzdxKeMmkeQ3crDN6MJY": 100,
     "2yo7KFTRGYoQvfoXHnTv6dXdmF2kDNdV6vjX7tifc9wZ": 5100,
     "2yp8ZCiinkZYDK1Zcj7Wu4do41kUMuUE6J571Gt6PjrT": 6000,
@@ -217214,7 +221721,7 @@
     "2zfZZdBVan2v9wBaaiz1KaU1FJWXn3H1L3oDJJ5TfD25": 575000,
     "2zgvoSmsoxt2cgsTpywg7uuViWdbUc5K1UYg2wSmaSpt": 5300,
     "2zhrK8Rney4pqU58dBvpYnk9CSV4Ac1dsXAakXzLQnx6": 5000,
-    "2zi6LWytw9ZfeCHWC9Xwcw66RwoTDqP4CvQ1NQRLfWhz": 8700,
+    "2zi6LWytw9ZfeCHWC9Xwcw66RwoTDqP4CvQ1NQRLfWhz": 146200,
     "2zjJCK1ZLZdoApk7wve2vWuGmSfvw4ze8HySCYxDmA7u": 500,
     "2zoCMVoG1fv3iUaRg6PZvVv7UAn4HK7Jj6cbduuA4did": 533330,
     "2zongBCDQv3c5UNpan8jNzzFNNCKHYHY5SdVUYzjweox": 5000,
@@ -217226,20 +221733,19 @@
     "319VxCZxEdR6t3ovZ8qJ7niaJpMS531F4xWMF6CZAcEv": 38200,
     "31A99RRcJmDTewnU3zXaK7w1Y8bMeTkQdJ2pmzJbGzmM": 19000,
     "31BRGW7nX27tcvBYmSeKRZMZUJQggqdUpRQZ1JFZhsop": 16000,
-    "31Cj72VhpqN5hmNbUc88U6y7H84QutRAHVeVDcHdqHUj": 19275,
+    "31Cj72VhpqN5hmNbUc88U6y7H84QutRAHVeVDcHdqHUj": 21375,
     "31EFVhvVHDKs41CM8YKU7V1N9bUsFzyDnJw1r4h7vq8N": 5000,
-    "31JjfstQCYFMvnW65C6SjkC2sd46Lq3cMAEa2zyxcPc1": 5000,
     "31M3pNRrUx3bGVtM28vXgXaE4zXGYLKN8x7K2G7E9Es5": 6066,
     "31VC8fmzC3QiXEJ3uR4DrotKMjUMLhKdYVSozZPZAHtn": 38500,
     "31VYDxJ22uCdWbeyjP2AMdHsBS1FxxWJ6UDNiuKX3nFK": 10000,
     "31WcFfjNwSA6YJQaWpsEDBtPMkAf2923gYNmuhGNYe1N": 5000,
     "31XpWVEbTut3dTKSohoyP1xU4x5VvsTgYGQTKU5TMV9o": 10000,
     "31Yqd4bjaJ31McSWqi278kihJ9E6GZwmEb7MpNGhn9tX": 1007,
-    "31aL6NYTxVXPazhdTcRyZFpEimCM5AaeKEs2mYdQFarR": 17500,
+    "31aL6NYTxVXPazhdTcRyZFpEimCM5AaeKEs2mYdQFarR": 7500,
     "31aoeifM6XqfYBUGiEoVwdkA7hEcLUHQpsXd7ggrAv7V": 10000,
     "31dYq6Rikn1UyBYNs71NRM7cbdAvjqrJVfGR43FeJwLE": 5500,
     "31hTp5j5oyxCAS5MwhehSRVEqSQ1hM2LwWHThhcdNtgg": 22900,
-    "31kZh7X1UsmFuPEzrbDfBKcSLP5rcxaRXqPaLaFrXyHE": 277891,
+    "31kZh7X1UsmFuPEzrbDfBKcSLP5rcxaRXqPaLaFrXyHE": 282891,
     "31mZ8VhCMjR6vgpfgqxm1T8a4mWyxjR4A3An2q8gb6W7": 1300,
     "31oYaThUynewdQMg7YiJGtUNJAKcTREAxJD1ks7CaGTt": 48900,
     "31oaeifM6XqfYBUGiEoVwdkA7hEcLUHQpsXd7ggrAv7V": 76500,
@@ -217265,23 +221771,24 @@
     "32i871EqiJU8CTShhMtvuy1zUT3uzQsaj8WCGQ1LL4qC": 5832,
     "32iUx8BFN8V83hwBSS9BJFUHWHbDSSUCMXUqkkRjvGjB": 3500,
     "32jt8myBwNoH7UBTcXteDW2mgRqr4iNyXYFuqX1GUZL7": 10300,
-    "32rsQshyD2sfaXG432Ft5BbxuWNrfR4mtacecqVrY3vy": 100,
-    "32ssUT7meyL8MXSPfPonYsN1TXv5VLJfSqH3qFwM15Jh": 27500,
+    "32rsQshyD2sfaXG432Ft5BbxuWNrfR4mtacecqVrY3vy": 10100,
+    "32ssUT7meyL8MXSPfPonYsN1TXv5VLJfSqH3qFwM15Jh": 28500,
     "32t3pcSFKZzKN5KRVTaLdBt8e5Q2r8iAwCaKutcfkZPL": 202,
     "32uiHaBrreZvHnuDpYj6tUwJiajJg5We4uo4sQNEKpWa": 3226,
     "32wroQEGi9Qtt8RcUs2Y4fwhX7aPH7dbS2LpmRb7NsjA": 24253,
     "337oEHaGQDo5rvYTJSFwEMhCM5fZZP1F5q89JDC8D2kq": 9000,
     "339y2a4cYqAHqwEzu9K1d2RBheXuXP5RFJRGtZkx3BYD": 4000,
     "33Gds9eLcBhFkgBkeQMsAm3daexodEMHQJnUncASx6P9": 10000,
-    "33PGvkY4WCb3zwqp3Go7X37UWz6MsEmbBpL9VgoiXjLB": 361934,
+    "33PGvkY4WCb3zwqp3Go7X37UWz6MsEmbBpL9VgoiXjLB": 804,
     "33Phv2KS1A2E3Ug86B4CUZMq8S7YhKAg4P3srtpjM8WY": 1100,
     "33Py7h8W9As9tFAPHAqEUSTcgSp5MiT6map9k41MQR1W": 750000,
-    "33Q2fCLhCVnpdqyixKEU9eTvGypW5XwSwhobzpZbdG8E": 22338,
+    "33Q2fCLhCVnpdqyixKEU9eTvGypW5XwSwhobzpZbdG8E": 25338,
     "33WdqVxhtW8gRfVWwih9GatY2sLPjXhYaDykGesYYfix": 5000,
     "33bAPNVQgwvV7uqhM9oVj5nyMSTejNDWoy36kG7fqbH6": 100,
     "33dUGsYGzwWf5a2JPSJXCoXh9Jrpiq5thFMZwtR5KnLM": 400,
     "33fBiURLxZCxVw6hqnDuU8cJbR15TdrDHzfAqN9gdiSK": 1000,
     "33gCfFEzB2Vnb3MJV4kJ9qszYT7JqKkH3cqjKCZmjzCf": 31100,
+    "33hU1rjiQvvF7LD3qM2375aZfKp8Y9Gepb8r7JS6SCNA": 100,
     "33mwdX3xhsL2ry1ADLLFzsh2dcFGwecuUECYhbHb9udA": 400,
     "33oFcFxeC7h5k1SE9WDa1fHtazQhw8XtYTHxDyTofbuj": 1000,
     "33rKHmwBXX4NB9zWd1FDBbDQmzrk2YqvRp4PtcbxsMMP": 100,
@@ -217301,9 +221808,9 @@
     "34Qcy7GYXTjGjF3A4gkoa8xm38qgpeNPNANx3m7AEigo": 100,
     "34T5MHYPkLNwgJMEz3yrFq5iGetQuxbEfEnu7SDj5JeP": 1301,
     "34W9SjaqbNfZR2vSVo1aUnPS5a1FjgWCbV5fV37Uzznd": 7500,
-    "34XgTPfenc9YintZcUQhrGmu5YB6MeNpHLDQ6Y4nUFRV": 69000,
     "34ftu1sPJUxcGJYFPYawxiELfnneWCXRLrczuNfrh7Vm": 100,
     "34fz22K4yCCdshMJoCHZFpMwCzTGsDxw4qvGwaVuT9HQ": 5000,
+    "34sZFwGi12wRQGNkj76vwBeSPAPabbcoziJMwFbPUGGb": 10000,
     "34u6KqT65FY2ih4UELJytbZr7Ge9NcAV1YrDcRxj6CqT": 40400,
     "34uNgaQVSASeWub5DCnHeumqZbUh1KpV7VtQd7u8uz5h": 8500,
     "355syXEbiuCSNFNWHunMMFJsAUwK9vkWJLHt2fz2LrJU": 5000,
@@ -217311,25 +221818,28 @@
     "35DsjS53Gb27uYLUXnFRz8tpcqu4VmkhB8jHeKKyNrDz": 8000,
     "35FBfLekxtkPEFCQ9dCDmANuYe1W2PDqur7RQmXa8na2": 500,
     "35HbdQHugFPUr67FUfF96oqVjQzd62v8Jq3siDBMYm9m": 35000,
+    "35PgbUadcG6gyS2G1kFoqXpXf7UnLnXFz3GoP9Qop3Zt": 20482,
     "35SqQNq8B8exWWRBdmzgstv7znwHTtSizavY7SeopnFj": 2000,
     "35TpnwPxMoP972uhNY1MeqfVRw3uXX5mJ9bMrMZnZLyx": 555,
+    "35V164FZThCgUhjtcqrzLjmftyxgwRFUDKV8RL8xCakD": 5000,
     "35ViFUFJoJfmpdxPXHs3yFSoGFpPo7wiFAUNFQA36WSx": 10000,
     "35Yvn9bMCYm8td92oWW8vAYFgisAePyq63WSDUTpGK95": 3502,
     "35cs9nPpSd9oC6bNLzTvXBKztUbMrpYrdv5nadscirrZ": 23000,
     "35gDLADHv53yPaZr9H5h8XhqtiDCznrDqfTsro3UuMXU": 1252,
     "35gxpA4xAFFukkfAGsXZzQ7nacJZiSi2J4fcpcRCW5PR": 500,
     "35hsqNqrqfVnHvxAmD6pr1wPNajwodCUYqSpmR9nFFWd": 786059,
-    "35kBTCVgGkCtXXxJz9Ubb6PqKoygSXKWfA4c85DoPfqY": 6800,
+    "35kBTCVgGkCtXXxJz9Ubb6PqKoygSXKWfA4c85DoPfqY": 14900,
     "35kj2AKJr1ujaH4y8rLsgeVAU2zYUK8ygGGyMFwrt928": 17978,
     "35roRm6fyUPBNDPjtQr44HatYaCkZwAWpPdgUgwsk8Cx": 20840,
     "35w1wGZVbuFrwGbfqpXqpZDDxvu4W84SGpipdAUfAh5k": 1011,
     "35wrLuRMzPhAxjm7ZHuWPyjRgw2XVx7GZYCUYaxZ3gZm": 1059,
     "35xp5AV2559eQYYdQkUwcsBKNdJ27JksrhTnf3dPat1W": 3000,
     "35yaRB1nEesXL7X9CHXXu3GdXh7shVVUTRBV8qq8ENEi": 1016,
-    "364WD93tAhYoTH5DXdrQDCaQCiBLWsCZ3b6EL9TPs2pj": 68000,
+    "364WD93tAhYoTH5DXdrQDCaQCiBLWsCZ3b6EL9TPs2pj": 91000,
     "36Ap9ub6gANBqtHgK1zmRas2EaUHCJfUbcNWyzP6iVvG": 37200,
+    "36EvbFzkrVDCp295P4gx2NabaLzgBuRkFup1z7ymmWn3": 10000,
     "36F28wDh4F7kDUvcDtdVp9ALoYHFa59Xsa1jX4w1RCBR": 5000,
-    "36GLrwL1c6sChemyu6yrChY9ccj1TLSuVGUwXoatc2g3": 117464,
+    "36GLrwL1c6sChemyu6yrChY9ccj1TLSuVGUwXoatc2g3": 132589,
     "36L5cyWriop6psCbaGtWU2HMMax52m64wWh4m2uCdzz1": 345130,
     "36NLp1RZqQMRfC7zZqHacbq5EeS1u1Xv3JsHR18XbXS5": 200,
     "36R1NgFCcxN2wcuSSv1aQeyhE7UZb1x978XZsUArpcYH": 1000,
@@ -217342,13 +221852,12 @@
     "36eMcAzzMnDHnsKGzUwKWykeh8rDHrhmwRyW7aGoUMjt": 300,
     "36on91a7QxB221hp9TV5Dm59XZdkDmbV234j6YbTU25L": 43591,
     "371kGrVmPyr2GaTM1Z9kdWhm2BVpgfdCKRELP93BDvYG": 21360,
-    "376GR2CUwPXikbPA1KzxvsNxGob7rsoGVvMH6pP5gFq9": 44100,
-    "37BBh98JXstTKx6ueXbzp3XtCTnVe6BP2CgaYzEUeUke": 44000,
+    "376GR2CUwPXikbPA1KzxvsNxGob7rsoGVvMH6pP5gFq9": 39100,
     "37BPRHx9FPSKSQhe8yK3ZBRowaNBTGSjfnrpKHQeaN4b": 5000,
     "37C9rVr5kxn5gbChiYWAkn1kd6ugko3Gcz6dMwYFhfQg": 50800,
     "37Lvf481bxxJqQz2BuefmtyDz7wLriRjUGksXCHT3ABB": 5000,
     "37Mdr9DAcDAPw4F2Xs9u8zz5oymGJQsXR9GYD7kNL3h1": 5000,
-    "37TV9MEnD2gAThbHmLPLCrB74txo7G6SgdDZ1idDLS9B": 80866,
+    "37TV9MEnD2gAThbHmLPLCrB74txo7G6SgdDZ1idDLS9B": 96366,
     "37WP5U3aRgWUsfnw7Lqdpeh8Nc54k1gskz6ohn9ArJEF": 15577,
     "37XuApWyJBS2HALe6jf54WP1cHYG1CqEfHTVezNXqs4z": 114,
     "37h4p4WZgy49o8ZmkukH1HgaiCZDSZx4UxJzZT3roF48": 4000,
@@ -217358,6 +221867,8 @@
     "37r9prrvcqJFWLZBWdxe4SvSFfybxBLCUARuWzpWpH2A": 1500,
     "37rvi66ijU5Qhfj7aHc592bHNgPbNTmPQR4hsVPszWxa": 1000,
     "3812vsP7QhWz3MQmhq3jhJ2cCdCb2tWJ1J5QB99argdR": 200,
+    "382xRqaTS5bh21m7DiHoJaHKV1Sti84DgYaUKNvFGwyz": 1000,
+    "383AHtwY3qBNGZjYr1k4UCVEGst7EGE4WrbWxntjiLit": 224668,
     "383DnQanzDTskxg8zy4i2tGaVHMx2VbA6ESdPmPBsB3": 20000,
     "383DnQanzDTskxg8zy4i2tGaVHMx2VbA6ESdPrnPBsB3": 120000,
     "386Z7oGETY57QvbgNZhPTHzQqp6M7QymghmmSWm4EFJb": 1154,
@@ -217365,7 +221876,7 @@
     "38CeZTdm6yMoMRBivVhbq3CtabiZs8jHfU9owWPcV4Ld": 2000,
     "38EHfjviLvKr2vvfnaz3gXfXupw6W7AK8Wo9Vupe15F5": 3000,
     "38MhNkPs22LhBMZ3FJZpLSPhm5UbkbWehm8rEHLddSpM": 11000,
-    "38RFRGwkQgTRoewhAq2DVtmVbXYg6uQPeL4rhLFmEk3y": 26602,
+    "38RFRGwkQgTRoewhAq2DVtmVbXYg6uQPeL4rhLFmEk3y": 602,
     "38TQ42f6YY8uG16o2UBtKP4u5bQTfyoNHXJAiceyeQmf": 4000,
     "38Wv7jiW7UwCf8GHuDufPqtih3M3kGe1JzdaDM6kcxBi": 4500,
     "38X6TsBMso9gzpEVjXwwUDEpQZF2k4Ns8uqeBXVmgUzQ": 1000,
@@ -217375,9 +221886,9 @@
     "38kv58WPK7NeJFHCLw7vj74knadwJ55zbHBCrupWPebz": 10000,
     "38o5zDLMuAofqePcoEJ5dCmMf5BpDgM44XtwfEjCXekA": 35000,
     "38sMrhaM12zSs4yXjQpjzXx68E5L5N4B2VCRJkSaS1Bt": 6000,
-    "38uJZxh8jZt1aUxFMBm6czGkDu7Yb2uyoWE9qQDzeL37": 1600,
+    "38uJZxh8jZt1aUxFMBm6czGkDu7Yb2uyoWE9qQDzeL37": 3000,
     "38v7FpqkbG7e45mpQN6coe5JDjLEb4bvbkSStaYdsRyn": 900,
-    "38ySR6mu2sxKyvHYsenVdHj1gdRw1RWxSAAmu6KeQ6bB": 179100,
+    "38ySR6mu2sxKyvHYsenVdHj1gdRw1RWxSAAmu6KeQ6bB": 211100,
     "3912JZrF3CgMq4Khbyh3LfoWikKxct5tD4qC7Hv3akFA": 10000,
     "394i526PD3U6uKowRzx86XJSgtctKnPbFtYkH5hXXMN1": 2768,
     "39A7SoksVYdvEsjwGUbVvzJ7eJHbAvxt8oK6HduXSEW2": 200,
@@ -217389,7 +221900,7 @@
     "39PPU2QKe9DPxa7ohwqixWH6JP7k9hXVEG5UTYUNDKSR": 5000,
     "39RZ4gB6q5j5odkQqhnrmo9bKLZbatdwL8nELWN1rfDE": 17500,
     "39YDL2ZimMo3Zu7ZkVTvwymYWb6Ft129XQDy1Mi7WWxi": 3000,
-    "39mneBJeA6gedpz6RwhbbJ4i768wgNT9kTYkty5nF3Gt": 76396,
+    "39mneBJeA6gedpz6RwhbbJ4i768wgNT9kTYkty5nF3Gt": 96396,
     "39qaMmE6cHKX7zw8Vma1KcrMaMQNLJrYrXWWnhrYUsWC": 400,
     "39tVfLbnC9WMWwi5RhYoMSKY38vCBC2i98NbX6wapArP": 96200,
     "39wMiAmNqgbz4tqL9FCc9P5CmCb1zYyKTpFXSzaeUgy1": 1059,
@@ -217403,7 +221914,7 @@
     "3AJqEFStYCj9SCRJZGDzvGjP63hAJYn7MAmijhtQtaWA": 9900,
     "3ANPtGAvrUULCxjKqwbXAxqrrvU3RqmPDH5rcT5csK4b": 750000,
     "3APJ7ZNTAFZ5bqLrg2WfETVNDRGkYQ6FvEW1M1UufjD4": 9470,
-    "3AUP77tzjLXHyv731ytWbsN8M1zwNPhx8RQexGmUqFX1": 30000,
+    "3AUP77tzjLXHyv731ytWbsN8M1zwNPhx8RQexGmUqFX1": 35000,
     "3AYuFsao6WpLxnZKLgXV72Lujzea7sHNXJ2CvV5rvJeY": 5200,
     "3Aav9trrKs46A8zuMq8j99kJgLPq8ScCBFhfA3Gwt2Cj": 5000,
     "3AcAH4H2yBkpX5KVDbY7R7Z2kSesnCjYjcSffG2Lyd84": 13400,
@@ -217416,34 +221927,33 @@
     "3B1DVpsWDLDkY2sK5FReScbRP1qHPDgABXzf6DDU1DZp": 6000,
     "3B3WDhTsDk8qZC66PahWxKBij5svSqPPdu7HWj4K4Ucj": 10100,
     "3B3eLtHFLQDdoBE2rfx2CwcUdkqY7PgrzFxQY93L9LZF": 10200,
-    "3B4LJ4RFHDeWkMo327suNVLKyA8rxfjeoySUANiXSq3k": 17100,
     "3B7SB8BeBRQM2f4bKXPyuzVexgX1eosU5u7NvRXHuFVM": 2000,
-    "3BBZiBrBTjHan39292KkqN3ymFAKEx5L75XcdMejuVQo": 12088,
     "3BEmJ8WRsFg3bY6HXDT4QBp9yrzZJ3s25CKfPas6EzUz": 10000,
     "3BTSAaAz1T1eKXAUByN63LePKinFswg38CmaWihtRffH": 82000,
     "3BU9aiU8qHJShB3yuExPAamaHgoyBxwELGoyWinhKzhp": 6441,
     "3BY7kUou2p4iaDTTreSHX9hKRqzSrxy744vHKuc9WpFZ": 5000,
     "3BYqcazkFVAtjjSeL2nyJ8SNBxD2hQFFEK9LQADjs9an": 20000,
-    "3BZNPG8BeEnQrssH69KuqSkifjV7AA2g8m2DfYynfD5V": 17300,
     "3BbEDQ6T6PSwshSwy3yddxDtCcC8bqJDJDRmpQS3xuND": 966840,
     "3BdsbimQruyQQxYyC6xWGJiX2Pk3FVRBbDX5vmv9j5dr": 340709,
     "3Bdy4sQG641qs9d8diaZbWBJk3sGR6MDpfMzuiZKD7AS": 15000,
     "3Bf9CMoaZ1MrjDjkMmAg46qeWkZRoBpRoeBuJttkpX95": 1900,
     "3BivGmxu5mW7NLauscvTgaddvyVYCeHYrfqFjHWSgnxw": 2000,
     "3BrBw6afUVC6RHDN5H9dQc6YjE8jQWFfTKtKYUa3yN1d": 10000,
-    "3BsGLZh61r1BHrG2JntMPtxq2dJ3Wm7vUegRrXFgZYoo": 298926,
+    "3BsGLZh61r1BHrG2JntMPtxq2dJ3Wm7vUegRrXFgZYoo": 45266,
     "3BsT6sc1nnYeS5a7FXeQN84sj4ZqVP5wx6fE4aezfkuy": 1000,
-    "3BshMmqcNcFB5nKraTKh753r1CJPzB9isRZH9tTwAuJB": 900000,
+    "3BshMmqcNcFB5nKraTKh753r1CJPzB9isRZH9tTwAuJB": 1000000,
     "3BvEWD2MURq1AP6oioQrGx4ZuoefGAuKd3QRm7aVqawa": 5210,
     "3BvZrPbuzHuYSy2dAPDCn1tGXZWV2HaP72cHYwu961ft": 1300,
     "3BwpetAe9RJfkBCYTw38MF91E3VVyQHAUZX3K69yBwan": 10000,
     "3BxZ6ESNer4UCVwQcNzqNAccBSytdS6hagf9ynwh7Gq1": 3000,
+    "3Bz3XkebaxrAutoCNTNFuFVB17CLAYLsfNjmHBmRxMGm": 5000,
     "3C1yXt86KWsUaypCY7K6shhxdMLky7s3QTyKEhTZTV2S": 500,
     "3C2QRa4zyh9hqG1qA8mNhg27mDSJDG9MdBDSjP9QWgVn": 200,
     "3C5uf8tPGayVLvxXjbudreoXpMzjcQaNDMNPp8oDZDV": 10000,
     "3CAGdffaJuF8svq2A27gNDNV5rRet3wa3vTGC2QgjsED": 72000,
     "3CBfasNeWhv1ovumg51WBpwqNvVYYUVwrHp87WFrpTo7": 60000,
     "3CDznpLtNppEFaWJKPQNWFpTzDF4DcWVMqG5CdbstZvV": 7500,
+    "3CFZNZEncRdQy7YjqNdf1gTWUnS8LaVhLgecen9FwEN6": 3340,
     "3CHQ5Foqn9bEbxBmXW6UVrDjGJUbcYk5CYmBEvaP9PEE": 1000,
     "3CHhK139yiPtoRxASryp7YsmoCVAwAfa4KpSJUhuNuvy": 5000,
     "3CHzpJ46QU5kJpS5Wi3aVDUmXXnAw389ySMyjW2Gqt5B": 25200,
@@ -217456,8 +221966,8 @@
     "3Cr1EiKvLyUjqp7Htho93aEPmuoRM6ou7se5aJK8zeuZ": 16500,
     "3D1NC7raxXYPwbT6S2KPpzZ8rTeFZHpiXg4jHSh88xwW": 5000,
     "3D4F7zVixYYup4AQ4AQy3d29PXyTrfB9LDi9Mb4F4Ymt": 3500,
+    "3D8qYLE8ejMp9AsMejPSbpTHdn6amxAS6imx4Q6XCnuT": 100,
     "3D8uhjBNXqZXKY6RQ2A77MKg6Vpj2uASSYhkJFqjWyCJ": 8055,
-    "3DAvzew4pXABBpwYwSBgh3Pdt19onzJsnnmjBsNaCP1B": 31000,
     "3DD5Dv1V7k4MFWxdTeVQuQpLZvGFYKYdAzFZ8D6XAY8F": 700,
     "3DDmPzQc5Tcg97EXBYt4F2URhtABvWAordwsxQdgoi2W": 100,
     "3DGzXJN1Rv9UCiumiCMW6mpg9FKbVg43f7hPfcd2N2AP": 1000,
@@ -217470,8 +221980,10 @@
     "3DmzPUvUzHpRqM72jgG7aF8UvQaaLWYpfexf5YPoxtJz": 51600,
     "3DxZq5e2B1Cw628NbZD26N3mooLT7dhrxDhdaePLQGRT": 500,
     "3E2r2mCUs6LREtUZzLQ5AkEkDy2bEYSKiz4a4uu441Lg": 26059,
+    "3E4ADFxraXmCd6m9gWZHkPcJRjthhAPaZUQ99nTT2gm5": 3000,
     "3E5z3Ej1jBVNhBmp6EsevN1gVEWnrojvQES8NLQyLvwF": 30000,
     "3E8RaZPqLkSeS57jX9Gc3SqFpnRiAyHjuThWTH74Ky41": 1011,
+    "3ED9dGshW8vUa2JBZtdwGWDyeU6aPppBLEdjBURZfhsB": 5000,
     "3EFGXDbiZmxrRRV1fhyesZAFhHrYMVPVNaTC7y5JmdKz": 4000,
     "3EMCeWhtULH1w7bLnJufV5t9cMNuRDmT75vwG86fsM4x": 23000,
     "3ENAncrq1hBFowDbRuYkcMv4xmLtHRozyaz5H1CniyFU": 6100,
@@ -217488,7 +222000,7 @@
     "3EyyBWYf24TvjwTbkHhEz9StxySnvDoE4cQrHrA5G5vB": 40000,
     "3F7BbY6ugY6xAZ37pN5C7ZaBQtiyc73xi4cF8GJNvACy": 1000,
     "3FACxUJb7of8hm9TDoRKynkSXocnVSsWNHN2Juc8sHZL": 25000,
-    "3FAEdWcEqc6JphiJPZWGRAQc3jWV4bjp6duoHNXfK4JQ": 188840,
+    "3FAEdWcEqc6JphiJPZWGRAQc3jWV4bjp6duoHNXfK4JQ": 143052,
     "3FBCoKCddHpu3X5hX7o6S9pL4HMVAjsG3aM59Td4gFCV": 100,
     "3FEg3oaZ67mQ4PRxtSV49X72yn9un9UiyjvjA33X8Emo": 40000,
     "3FMbTghZV3SfemsQKyJVSQy1zdwVwhSmo1C9fqPrfcHv": 7216,
@@ -217500,10 +222012,12 @@
     "3FZuSsyLCkke94deNihbos1jDp5jc9X92C9rv7At4r1z": 54000,
     "3FdLwLSi88JfA2DLbPZgcwesEGdexRWk2d3ohXdLZK2p": 1023,
     "3FerBLbb9a2FxPLJBMuMNgbPyQ947Z2y2oDTRefuVkjs": 5000,
+    "3Ff8pb8M6pFaFxburccVqSamzK2wibuhfDmGUZsW5XEy": 80000,
     "3FfyT3BbeBxNW3o4yXkajwEirPr2icVL38r6zNrzhfhe": 217500,
     "3FkDcjFFjuBCrEgnL29wZfHNqJDSP7B9PLLYMSb3q4zs": 17000,
-    "3FpjzcLujxkGg6j3iiLs2va4aFPSysqAmhAuVd22KgAG": 46900,
+    "3FpjzcLujxkGg6j3iiLs2va4aFPSysqAmhAuVd22KgAG": 235240,
     "3FsC2urarn1hTyzC7SzLBgLvePdUwifCjyPgKamiZTwK": 9064,
+    "3FtJtFG3Y8tM8p3M77why4XAncisPMicRiUzGLfzUZei": 10000,
     "3FuHLRfvqjPiBvxMnw1CiNJSaTFv8LkcERA9K7sHVFvp": 1600,
     "3FwFA3YynvSFFEjXTuHXRRWmLRnj8TLXBV67mDS772sE": 15000,
     "3G3VbjGpdSMWz9Qv2nj2ojXrcxHXu2r8xfbE3CtTmd9Y": 100,
@@ -217511,7 +222025,7 @@
     "3GBEXCdBYerM1pUtLrMNsUFzjhCgJw7ZEsXrjLbiHkKE": 225100,
     "3GDvgC894jVVFQxUfgczqdWy3UyhFUdwPJ2ChDwa7xEX": 16800,
     "3GEDckr9kBHWgXyz7bKaqEziLvDjCoEFGLVg57UHrde": 3000,
-    "3GEDckr9kBHWgXyz7bKaqkEziLvDjCoEFGLVg57UHrde": 14000,
+    "3GEDckr9kBHWgXyz7bKaqkEziLvDjCoEFGLVg57UHrde": 9100,
     "3GFQEg2UvptpHUzyDWPmVHe6u2tAYMtyoJdbm5pZWoo5": 1000,
     "3GH4AApRwwDQLy7FMKPpJTmFMTH4UrJNyne94Ed1myJa": 714,
     "3GHAhf28FvKUPdZE9garWz42bMh6KWL3i8v9Vs6HT7Ly": 2651,
@@ -217523,15 +222037,17 @@
     "3GmYcxgXug1qXgy8vYETPCGj5gs2SgBHjGX8MZ5YmYHa": 500,
     "3GpF7jB17aPt8PHFVuKU1b3G3tEppXySAkASQaUNLi3z": 43069,
     "3GrHRtLxqC3RgR8ZD7nTLun9DiK3pKM8kmpGPjawaQ2n": 554,
+    "3H6ViwnBoHUiMpdKwbWCpVjcAPoHAkcApwypyTkTGonC": 4700,
+    "3HA9bDFv1gqo67KE3L679CyHX3ySRw5sFNz9FXmAFXNZ": 53000,
     "3HLUgB6KSrxtYKhcuPKfQNgcfTMZ1n7DvL6R6vwJYidz": 2000,
     "3HMBNjAVmzUFDQfke785EqCJWTp5ZeNS5m3o2Awpg6RT": 15000,
-    "3HPFmErGYCPRpfz9jHpSUtsbt9fWUQjEZUHocgUwyZki": 54000,
-    "3HRiCipJuTmFGyRuF7achDKtKStpKrwejcUzPYACrNGY": 10100,
+    "3HPFmErGYCPRpfz9jHpSUtsbt9fWUQjEZUHocgUwyZki": 66300,
+    "3HRiCipJuTmFGyRuF7achDKtKStpKrwejcUzPYACrNGY": 93700,
     "3HWy3xf7v4iAP42q4b8vaSxaUhnx2aVMxX1XDdCm5GX8": 2400,
     "3HZvMBLxDMVo3uB9nQpVKVQ13KqjykLi1fF9hrD36V3c": 2500,
     "3HcXnd7XNbs6h5KNRYMjUctJ1TZiCuutQVMZArUbZUSb": 24000,
     "3Hda2q1zWDJXFWYFhtGAmRaRYzTrZMkHZvc5Jusr6ypP": 2200,
-    "3HnfURo7ZdMDVD9wte5cwcdi9WYLZGXsDnKDQZCrPpGV": 51500,
+    "3HnfURo7ZdMDVD9wte5cwcdi9WYLZGXsDnKDQZCrPpGV": 29500,
     "3HuC4rKcnL59Lx1sja5BHPoZUXKNDUVtTKQTNGdTG1KC": 1000,
     "3JAqJoPFZ8EuNATyVqeY6dSGW4eZinRmPCAo2Bv4QJDc": 53000,
     "3JBQeQASq9J5cc1pxoebJuW8tJhk3yv3pRL3ow3ULJWm": 1181,
@@ -217544,14 +222060,15 @@
     "3JNNc9CCniWrEVEoUtyTgfR3vzaYgwXABFrxS9jWJBJh": 9200,
     "3JNQV6dj5BPtvZ89y9t3vxRSR5mEqksNkn2U52BSxMyG": 4000,
     "3JNwB2Q8a7BWb7sxBWdNRGUAaywYdmcE4Prs3pm1f8sN": 114662,
-    "3JPPQpFPm6P4rHnMCFqgYJ4MKUQxshLb6DMM2BTRZJyK": 72500,
+    "3JPPQpFPm6P4rHnMCFqgYJ4MKUQxshLb6DMM2BTRZJyK": 43200,
     "3JPuM2d2qHFKYp3qPCDcN4cxVbQ7BgGyYioYtSJeMBH3": 1000,
+    "3JPvkAZRW9ktN8Zxu3JjknMt98bXeepz6ANkquDWr7aN": 60000,
     "3JVBgfrvYWaHHc5pAmU4LfdzGJgtJDrDUxjSYoR6b6nr": 10000,
     "3JXhrdNyETcpcCWQNSwvsQ1aQtxY5BsPy3wt8jTSj4eo": 21000,
     "3JdeG6Hsd8nhiD6PTcviKMMkdnrjbSaVrEoHHnCHcmA8": 5000,
     "3JhvyohjHNAGfgrBqRydzPoaAhWS8qAUPBE6kwnZh8yF": 1000,
     "3JjgXjwBc86KDdZy8xUeY61bXKuAPay5Xq5LFFj2xZcZ": 1000,
-    "3Jn5pFnP7XJwEefRD3pAS8ayRFbnKEaAdoEKJhPo5d3E": 20200,
+    "3Jn5pFnP7XJwEefRD3pAS8ayRFbnKEaAdoEKJhPo5d3E": 10700,
     "3Jrv4MTQtyfA8i76pHBLbYLBUpaqyijZPTEpnxxChDuB": 5464,
     "3JyhZv2hC9GY63aJ537sZH5gmMtk8oseYMLiv2wd9Jkc": 8658,
     "3Jyiv4kLRGWg4qW5d7HmAeNkswmAPTNNLftmwNTqgQnH": 4000,
@@ -217562,7 +222079,7 @@
     "3KJqaXSMS6HfEj15epBSK8SJrzia7XnN9rFVAxot4rJz": 124000,
     "3KN2wQ13em6mAYXX1Jw1wrH9a71SimsFEWPQ5tDJXGw3": 473500,
     "3KRVhi2x27zC5AMRQJbkLSKFgrbLXFTDd4sFrDcdgKik": 2800,
-    "3KTE5U7E2K9t6Lw8K2VJMi2DFD2EhrKyaN7Tcy5ChdLw": 387500,
+    "3KTE5U7E2K9t6Lw8K2VJMi2DFD2EhrKyaN7Tcy5ChdLw": 397500,
     "3KTE5U7E2K9t6Lw8K2VJMi2DFDEhrKyaN7Tcy5ChdLw": 70000,
     "3KV613RCyvM98N5egYy68FPd7S6ybydQn4xurFJX4gti": 62000,
     "3KXFN9QV93DcW4KAYXxtCJHuQmjYhy6gS9hQCyWdPtqz": 17500,
@@ -217596,14 +222113,14 @@
     "3M3WYdMhYnfWmNyYD2Hj9VgcGizeeuAjSLRfSMDXTuEG": 10000,
     "3MGiiaQGsVdunvVqSmnKac7naq6VEHxCGJrkwY3g33ht": 600,
     "3MN2ZZQXmTnHVAXvjnt1dhfohRyeoLLGiDX2VMk85V8N": 40000,
-    "3MNQkzUU6EU1wETKx4BvDvz5vkwzL5V9iHRoZGbfdPRf": 1400,
+    "3MNQkzUU6EU1wETKx4BvDvz5vkwzL5V9iHRoZGbfdPRf": 5200,
     "3MNTKtqsePCLqBCHKakvNAdhPzgcuDURD7VDxFbeoHFi": 4000,
     "3MQV2zSybsLLr9R2WP3SJr4ArbVgg8VkvoT8av5jhV7": 100,
     "3MTc1Bju7xDLpkJ5kKjRL3cduen2RgJ1wweBhingZTDh": 3000,
     "3MVuNidCwFqzKJxtwVXTT7ux7cYm6QG4WqhYMXortrqA": 20100,
     "3MYzdwQHDK2AMKoHC8YTh4uQPu6Bd14AACzbVj6F6EvJ": 45000,
     "3MZuZtTC57TLFVtQFjnU1H5mpJX73WNJXAzTFoKbpDQR": 13600,
-    "3MdJXuxCSWswhvA4W56g7jVR2UskCD22cRMwwJjzp3qn": 19498,
+    "3MdJXuxCSWswhvA4W56g7jVR2UskCD22cRMwwJjzp3qn": 1998,
     "3MeZFoXwGy1SHmxCGDVmrmntCPTFvEoYiERWPtp5aAq1": 145000,
     "3MfMbSrCstnhqJqrjfiTon4yMMQy99RXTf5RTdxLEbbs": 20000,
     "3MhSiBTsr2xD6MpJamNRAnCmPp1VyUqhcKLrhWDVWFNv": 2000,
@@ -217613,8 +222130,6 @@
     "3MqpJEts9SLPSMULnpsrDhh8rWcuLYX3BM7jFCxmj3MR": 500,
     "3Ms3wk45vjpXSovYGE57cRaDESYoiV6SVS88unVeWN5R": 10000,
     "3MzhW7pjJuVtKDtP7VKuZ2166tNZAs5Y9dQohGJmnCk2": 30000,
-    "3N3KSPQw3Q8nHPkfzKuEH84jRDjqR8sWjSCNUwjwRWbz": 5340,
-    "3NCcFanmjmRLhQkZziDQG9yz8hH6mxC6p94qUQD6VdPu": 5500,
     "3NJWt5r4NQu5iEL4R6sjWSNySS1axpPPAuXdZT6c3WUn": 10000,
     "3NKFPWxioixx3BWmA2nH6P2MFyVkMwURZ9AhkZ8og7WP": 15000,
     "3NWHik7PBA42jKaFw3C8REGaferEFp76A9Y8wNzixUmk": 1113,
@@ -217634,7 +222149,7 @@
     "3P9ruvtbjQXG4RSSohmhNMtM2ed6BsqUAUAqtnUqpxxW": 14800,
     "3PAyeT1JFMqnvm6h6zaJtxGe6hqWzLjPfMXdZdyLdg9m": 48500,
     "3PNHbn1iUrTpAcwkPFkcWn7XdRk9BLyuoVs8FcDgT3S1": 20200,
-    "3PRWBrYokvEBhnNg32xuFgcFH1rNMaiQ9wWuPC7Arxw5": 10767,
+    "3PRWBrYokvEBhnNg32xuFgcFH1rNMaiQ9wWuPC7Arxw5": 7563,
     "3PRz1RVzt2KZzYh1cbgfdVuM5ohsbPbdSAAz2MwD68wJ": 68400,
     "3PSw7Si4DqL7zKwFRUTNBiG2mCZPDS4wDXm64ALN7DnU": 12200,
     "3PXxCz37Fjdets3hcPL9Jw7rm6kPBPoWkoaFj5wB4xiE": 8000,
@@ -217648,7 +222163,7 @@
     "3Pr1cG7JaTXvZFmmkwPerLKVp9WB9hJ2mWkHVCajkhAc": 9500,
     "3Pw81EbxQ9Yi2RqNdk682Cnozwe2aeRgYtfeNZn1r7nu": 45000,
     "3Pw8uRtaTuEbkMsYgj1yvYkM3DDByTfrw8czqyxq8Tzv": 23100,
-    "3Q3fECJ8gYZcusNeRDqLZ845qbZTBnFPEr31raYgfnHB": 19600,
+    "3Q3fECJ8gYZcusNeRDqLZ845qbZTBnFPEr31raYgfnHB": 33300,
     "3Q8mUmik7DDS2cR6croX9ZqCdNYgKiNjGnCxpBPMKwuj": 46000,
     "3Q8rW9P8qpzsuFe2CUk4hL3sbCDQnT4qbvoBc9yRSG4Q": 516,
     "3QBjeQc1e3hgnE4oey8zaBpMBcEevTPNFatQkUHS3szv": 320000,
@@ -217659,7 +222174,7 @@
     "3QQvtFZx76vkispkHnhHFkEXW9btJ6w2E6wYrG7WVj8v": 500,
     "3QWRZJjAwFEHbGSjeGatjRsAG15P5Xr9nr465xfE7CzS": 24000,
     "3QZDtCBAHNrEQ4NgfpPFLRXVwAsHUF8FyY2c9Gtc3EqC": 2000,
-    "3Qac4GEgTM6FZDxmsjPuZLgR8tYUX9CcYDtGw5nrdpti": 250000,
+    "3Qac4GEgTM6FZDxmsjPuZLgR8tYUX9CcYDtGw5nrdpti": 263000,
     "3Qbu73CPpdmc2tBMcxSk4sLbM9XKnp6dVocFZRVZ9gf5": 2349,
     "3QivddNRMNaYkGXDjziBFsa6dzFfD1mCyohBQEtSzk9m": 5055,
     "3QmMSV7npcHB1s6ECzfGUvfhACsZ5RszFYwAQ3UviNLa": 18500,
@@ -217669,25 +222184,29 @@
     "3R9nf6ThDPoNstnUTB7uuEc8ELJvug762acvv2ZME3pz": 10000,
     "3R9xQcaPEbhXCR5zeCFAUpq3kmY9oBPyrLeThupTXmeH": 4700,
     "3RBidrp1M579nocxrheC1dCaLvYZhaqargn9UfRmRoSF": 65000,
-    "3RKboPjbeqw5dv3QTxkUcxu9k6dDpbeq6YhmqAGBNZBq": 162500,
+    "3RKboPjbeqw5dv3QTxkUcu9k6dDpbeq6YhmqAGBNZBq": 1000,
+    "3RKboPjbeqw5dv3QTxkUcxu9k6dDpbeq6YhmqAGBNZBq": 177800,
     "3RPZQtUqqTyaLLAWgJHGdNdj1zWRyHwMjyBC9BCQdkL9": 5000,
     "3RQBA8RkP4oJ8BbQ4YpwxaA8SMyjTsF4ZxkHBgyMrgN": 80000,
     "3RQBA8RkP4oJ8BbQ4YpwxaA8SMyjTsF4ZxkKHBgyMrgN": 60000,
+    "3RR7z3QUVvVjPzJQNdScGnpMcLG2tRjwrohhJ4UJwaZU": 3000,
     "3RREqwmaZfE1SZTe3Y8xRZMtaYsoNJAWdhtRCPk7bC5B": 5000,
     "3RZt7kArHNSHLuqY5yEUMwjTFJtuvUBch2iBqW55V634": 521000,
     "3ReJBJ9WtP2CtbcnoNjjQpPKJgH5u2LGrz3MkrqAY8zd": 369000,
     "3Rfr7C561hnbjGTbUbi9YkkhLWFU8PbXbD1dMf8jsXJC": 10010,
+    "3Rg9UPmcu12F5Wh9aDdrajF3Dccqtby39PywAFtBM1iU": 15036,
     "3RnGXnLVCY3FkDTHG2mLHTdL49XjbhhRVHfLcaLquEEt": 610678,
-    "3RoW5mZuv1nhHbEJuZTN5h3DRgVfyZVUd9VXZz1jQNcS": 111234,
-    "3Rsk7cZxiWCq9ZrVtN4nPppPGGp24uCKHM99ceK5TvMm": 1000,
+    "3RoW5mZuv1nhHbEJuZTN5h3DRgVfyZVUd9VXZz1jQNcS": 90734,
+    "3Rsk7cZxiWCq9ZrVtN4nPppPGGp24uCKHM99ceK5TvMm": 5500,
     "3RuLHYrSWqkfDtk1iGxFy93Ja9WY9ac1zPPSGQgiDL3U": 2500,
     "3RuzS6JxBKKCcrNuYoYFT3fcZv27WJoFp3e78pfwAfuZ": 100,
     "3S2Pe66Z7n7y2P597SSv8NizruQHyGKJXaWugp2TtuR5": 3000,
-    "3SE4ZUyhTNVvfEn7WwDGU5NjVxM763myLRdBFq8Cvf2E": 199600,
+    "3SE4ZUyhTNVvfEn7WwDGU5NjVxM763myLRdBFq8Cvf2E": 302100,
     "3SG2GgzHnVWe2rftYxk9dzt5UYTZfevUsXRRrT2gfZxX": 100,
     "3SHtWZqn8tVvZuoUDx2hHhgyHdEpP2FacMB7YAAhD3tu": 100,
+    "3SJQVrdThMURfm56usrwdDJBfztrmthMaWsdQxe9QRFK": 500,
     "3SNJAAvodtS46yrcns7p4y8YR8iVXLDx5Wn8XUEBP2os": 9900,
-    "3ST9sCwvpybafrsehEVmsEGJVfHPkA3wYtufHbPGs2nb": 199100,
+    "3ST9sCwvpybafrsehEVmsEGJVfHPkA3wYtufHbPGs2nb": 251040,
     "3STdRwbBEuNwu8DkGLgGjVvwueVvVNSD3aDDiA1CjaiM": 9900,
     "3SUzhQdKoGc4U4GpvhMNELYubNczdTdq5yruHg8NnfFF": 900,
     "3SVd2Tb19977prK5JxsNLetY3G8ckZD8J9NNdc4R19Df": 7110,
@@ -217703,6 +222222,7 @@
     "3SxgLNpipZMkgy23JjJVkRiuFyyuRECsnhH1fPD6x7RS": 4000,
     "3SyttGDyGT4dbUsouNWDwgnagCuE8sepC9Es6vyuneWy": 62028,
     "3SzKRevXSBoYGqfWQSrpXkDfMBAQjboKxCLGmuXuzYo6": 4000,
+    "3SzzNUue2T4mL2wANWZ7E1TeeYFm73Y5LXnQBMoPmJxT": 2000,
     "3T4xpuHjspYc3UC11C5QSBcR9oraqoRDoJk4peZmNB6J": 4300,
     "3T5hN7xfKVU8JrTGtBvo1inS2nsr7FykPWAxwHwHiJbS": 9500,
     "3T5iBm8vsDs6F83X67qJYFjeEKMzQB9H1V9o2Xmu5sBz": 3145,
@@ -217715,7 +222235,7 @@
     "3TP3mE4dW145rZnmgFWY28TF4629jgiVMefRU8QReBja": 25300,
     "3TPqFZYgggbkJqEx2N88oCBLPqnrg9eEbM5ptqn7FD1F": 2000,
     "3TRLzxe6u9RK4UNvc89EAvpov93K2ZzsTMMaWXWZJwSZ": 30015,
-    "3TRgT4KK9p6pRVsWLbcL6MZaMt6q6Yu3igFoStT3Pdef": 5000,
+    "3TRgT4KK9p6pRVsWLbcL6MZaMt6q6Yu3igFoStT3Pdef": 5001,
     "3TTbLBD44pp6qjWMnTB7L8Q4jp7pzHVDdZsG29jboP1h": 327248,
     "3TWp4tR9WUWK6qRPzKwWB3sZx4sianAF6cvKGVsNVEwd": 105600,
     "3TeR7PubnpGZFWNGYP26yQMzkfgxJ5uwMEd7fwnk7wTT": 5000,
@@ -217723,18 +222243,20 @@
     "3TffLZm5ozKGweMxfW5s6mreekD65Ut167FHqwhGFZQ5": 10000,
     "3TgfzuD6s27nFvuRy3osTiJfm6EfrXyajvob5zJY6DSH": 40000,
     "3TpgSJuXWExDw8ByFR6Fgizx6ECymYb8jUUocZZPdaHs": 2000,
-    "3TsYqBq2W2XwHtcuMbFvu8AzdExj8szMUPFyQ1sjB5YB": 89000,
+    "3TsYqBq2W2XwHtcuMbFvu8AzdExj8szMUPFyQ1sjB5YB": 111000,
     "3Tteg8BiT26W6uhBZqrSa3wmZY8obpfVatpRJveRfHMo": 15000,
     "3TvnsB4MoCMse1pK9UgCKtPHr1QRmAoKQvYKGPwTLJqp": 31900,
+    "3TzbVjBM951aq4R41Sz4AViihA6Cbbbm1hedoxRrh8gu": 2000,
     "3U27My5BUXQPfc1iRLqF4LDJzVSEXoYgQpupgzxaL15e": 33942,
     "3U2opkJFd7Yds5RPc7pmn8kovXa5RoSgHpFdjKUHbTPq": 10000,
     "3U4BMUY11ZvkJrietXaqRJU22uTfQ4eLeXETjggzjYSh": 160200,
+    "3U53gqf1H3udPpAu1ygyAp4vAAtEiSVtYutB5BGuKRjH": 7000,
     "3UDut4iDBmA8ymrojk34RC9jRqoovACbH5x6QsYeQ2KF": 10000,
     "3UFFv8LsDbjD359Ef3nQ7jfxhojx7y8Cqs42qvhQJiur": 112495,
     "3UFmBZWYKLZbRDZ1rSUGLaMGVYCasRGXcnqFFdfWJtha": 25000,
     "3UJeZ2b7TL7JhTD17sebpoWjA6EnG26W4GQPukyHo5WR": 31000,
     "3URDRW58sv6M67EohdzUzy49jeYgBdCWSuePitaY8H94": 15765,
-    "3UVxi7PHbBGg85JCcGKe6Xf9CyBQjFHVRMtnSdBdtuqA": 53000,
+    "3UVxi7PHbBGg85JCcGKe6Xf9CyBQjFHVRMtnSdBdtuqA": 89000,
     "3UZuFGVydYrYVkwVGjJGjF8WM8NHcg9y2PexfDFe2277": 65642,
     "3UaKgJpa4XkrNDFbpZcN2QJoYERFzYYFyuNAtzuaim2Q": 5000,
     "3UbTRfd9huk5X9uoVWX5bDuJnkW6DvGimtggt8ids2nz": 2022,
@@ -217753,6 +222275,7 @@
     "3V2k8p7BweRRoBVcf1KGCPCnPp3uKY5pBfzpyWTxqd9h": 60000,
     "3V7d88NoZ5gvNuwRRnMMorCfsvMhbVxU5a2vd1QgdicE": 105,
     "3V8kBQUGXM8k8xrVfxUYpaP6bgZZfqP4oWEnaNV7joxY": 10000,
+    "3VKUnnr43eyRoDKvqCmeG2Ae2UPFp4UfDaeSXFG7m9gr": 3000,
     "3VNLS6nCnUG773r1dzWy44cH2FCPwBwe1728mj4685FJ": 80000,
     "3VRxjkL3hEQkLuPMZ6VU2Aq378hFZjrCLMq2tuwPZ7s7": 2630,
     "3VUJcwhs2SgR7MUAwcoUTPTzXcqLapuCZqAEaxPzcNRP": 7000,
@@ -217762,15 +222285,15 @@
     "3VZ26CmpaHHAJr8hTPHnE42FtxojwNBttbWV7auCB6Pj": 11500,
     "3VgYKQr1CqfRrpjCnnw6fdk96YfveRM7RT15AcG1EYbZ": 11300,
     "3VmxKre9PFKnHpBPCteZxHMnMCksFotKDbSHJQgtPjkb": 20000,
-    "3Vnb8BBiJUUuu9H2Xp91eAGdhYYh94V5A8KeGadtiMNa": 336640,
+    "3Vnb8BBiJUUuu9H2Xp91eAGdhYYh94V5A8KeGadtiMNa": 325140,
     "3VrHYNevX6aKxjWWHgqEwEzb9ujNTfV92CdMb4xkGVyG": 50700,
     "3VuZPb7DAjrF6M9fnWT9vkGv886oHa6ZyPCjfjizDCEr": 7000,
     "3VzssB7g89oLUFm29VhGbk7GPmLYmYV9i9hsq9ZW8ggE": 3400,
-    "3W7cw7YwoP5ZFsEgERHvkSQU6KMP7UWdmtbszVGtzGV4": 5300,
+    "3W7cw7YwoP5ZFsEgERHvkSQU6KMP7UWdmtbszVGtzGV4": 31800,
     "3W9HGYTgVUeWUavJBMzYbGFSghMaoP1Zgs69wEt4tWdy": 110,
     "3WA4QgCrV1yGdDqxGQc1fJQ4NcDkjtSF2Rc1rFrpMuVs": 126400,
     "3WAbZDe72cmcSAx3XdxBph6kbaGGuuN1gzUaUaLKdfDh": 14000,
-    "3WCA8yuDj7V6f2jZ7X9xWUL92ScfDRFVDFfXFUdtp8G3": 11000,
+    "3WCA8yuDj7V6f2jZ7X9xWUL92ScfDRFVDFfXFUdtp8G3": 16000,
     "3WDotS2RiYwQEf3HbcFfP8mmWKAyWZ2v9BNaHAiCZEPA": 400100,
     "3WKfbzMWYTWf9i1UTdx7wWCcFuxoQfAbCxcdUGum3X5q": 10230,
     "3WQ6vqFCR4gMtsSJ4ZESKZFUwPRyUePh6ReuBK1qHu2p": 500,
@@ -217786,8 +222309,9 @@
     "3X5y1QSJSDWZTDQyncZHwrZBE662MzKaRCVbRh8xYE9D": 30000,
     "3X6Tqz6EjVXW4KtKkHsPVryoSiFmPEe3VGuKAWLhQTCH": 200,
     "3X7Y4QU51dDoXiggzdVMCdUgx3bbp4q2cRERMMUGj6AE": 1000,
+    "3X7wLJzXdQ9ijUeZP6ZEMMJ6rzB7mS1HpNmRMMNq4f8L": 15000,
     "3XBQyifRSHbXLFgFfphahrEKUPH4Xo8hrJtk6DgoUvW6": 6800,
-    "3XD2ZpSidhePsks4NJJNJEZWRiHLoUJbCvqDXhFfdbjq": 66068,
+    "3XD2ZpSidhePsks4NJJNJEZWRiHLoUJbCvqDXhFfdbjq": 98108,
     "3XDqtP7W63rGwLHCVP8FatxLFLqYk3Fcze1mMSx6Bywb": 178825,
     "3XFLwXAr1oi9tRtYAwTSLsgu4ZZVkgtxWTMVJ7KxPbEh": 326200,
     "3XFdPGp9tR4WzLP5KGTdwtJcKcE2o37hZHgf8aiim5s9": 4314,
@@ -217800,11 +222324,11 @@
     "3Xc9j7dJVC9UNbuUY2bctAg1XE3LC6P9QAP6dYbvWKEa": 24500,
     "3Xf3GAZarGNzYhaAy9icDsnZcqo8Sbp8ow6x7Qtumk7L": 8000,
     "3XguaA9yrUyj3uYzSx8hsQLZJy1R6PZgqwqhpiik2Xf8": 6000,
-    "3Xmo9ucdQyTrvbNRvZQgyL7Cd65RNKGg4xQyhWUNi1SR": 101700,
+    "3Xmo9ucdQyTrvbNRvZQgyL7Cd65RNKGg4xQyhWUNi1SR": 511340,
     "3Xn1nmUyevt23ybnCVtKpcjmKREPF8ZM4neag2eRbAux": 400,
     "3Xp7k15ALR1yj5je7qG9912Vy866GjVZVCwKuR1eQotG": 5000,
     "3XqWRwFsmyoFvkisHUz5fSJNicXVhS2N3JCERQ4E6dzg": 112000,
-    "3XstV17YFdmNXrkV1BybkxaMQBZhLByNadBtdssuWkc4": 3100,
+    "3XstV17YFdmNXrkV1BybkxaMQBZhLByNadBtdssuWkc4": 9100,
     "3XuBm8aEEsmm57RLDqbGWwjWj27ZmLEnnj2Yi1CwpBvR": 8318,
     "3XvjnF9MPs5fc35MSHJkfMtKRwtSuY8cZpR2guS1GFbG": 7000,
     "3Y3nj78uhchxKogEXm6BP2G1jWgp5rxgbNjmwABwAD5c": 3000,
@@ -217836,10 +222360,10 @@
     "3ZQPbNnkhDwrSYyiV93xJVdKHyRpwGPHKXT3SkaADstd": 22000,
     "3ZSUB8ZFV4JQQreWTNuM8L8v152BMpxZdh3gnbpRg1Pt": 2500,
     "3ZT8mVxCF6iFXS1W1LgJnhWP3c7mnU8iDJH34jbdD1Jj": 100,
-    "3ZWHFY1XLMDxjKMzvUnA3Y7Bq8yTgSbQhWjxQ3ouH8zL": 32000,
+    "3ZWHFY1XLMDxjKMzvUnA3Y7Bq8yTgSbQhWjxQ3ouH8zL": 12000,
     "3ZWq9nnhSwHTLdbeVoj5LD4b1e1gYxMjNLeki3yzmHLu": 3500,
     "3ZZHU2aPWwW78ygvxjgWRRHjQDTpEgC1ZwT2itEk5kTG": 20000,
-    "3ZoAiq82mzE5dwSsEUYkhNFo6ahSxHiwQAF12XMFhWza": 9750,
+    "3ZoAiq82mzE5dwSsEUYkhNFo6ahSxHiwQAF12XMFhWza": 18750,
     "3ZrL2PxFvhFFPb3eTyoCTaKYSkt2ydysRp45StS7J7wa": 10000,
     "3Zu78LscNTdiSsNxH6dSUbcxNf2yBp27mN9W1aBQZ7KQ": 5000,
     "3ZvYsGgyMggtv33FJuL7CTLzP8A8ZGDxqAbDbDcL5ZW5": 14800,
@@ -217859,7 +222383,7 @@
     "3ahK4p2JPL915BKiNMV1YEaEA2KArMpJQzxaUfHmRCcY": 900,
     "3ahadhh3PecZDwt2pSYaBSQbCP967hjL7uY8DbfVGwCb": 5295,
     "3akCsTdMdKquqQJhSvJwJkQ1DZsGkBBvMUpCsJv5g1DK": 300,
-    "3akw6wCdsrauLgnMFQuJ2BoC7waB1ao3xovh7NRZLU1Y": 265622,
+    "3akw6wCdsrauLgnMFQuJ2BoC7waB1ao3xovh7NRZLU1Y": 527922,
     "3aoHpVyyyzLxSetoZiPtXfQ5fycFxcJ3MwzUCzewNC9t": 9612,
     "3as3GJaAnaNAajrvooJLBtXGqLdTU9uzhtvFVGZgsPTq": 15600,
     "3avamtrBWKaYXUuZxgqNSHqvw9cqbWngkK7Mg3dGDwr5": 7500,
@@ -217867,9 +222391,10 @@
     "3axAmuBEpozXko13jNAvFXk3qVEPcrD9HaexfR6SSaqz": 12100,
     "3ayhX7h18eHK3hov6wj7b8dc5xrsxigrTMHzdswNsDXZ": 5000,
     "3b3Kcfdf9avEwN46KaXFFhrRVayN8RuegP1DNXLBRqfU": 35900,
-    "3b6NVWQ6stMG7kyewfVAFKjYfgXCwjYwrWJhzvWEHGsS": 11748,
+    "3b6NVWQ6stMG7kyewfVAFKjYfgXCwjYwrWJhzvWEHGsS": 4748,
     "3b6VX2QeG4Ci9JJfBN55zmcFy4vu69D8jmH7ZxZVhkf7": 25000,
     "3bF9skSKAXUSWjijhi1ZMdS37jD745rDpKFzjGApanim": 257700,
+    "3bJ55s6heEripsaziw7BegfPbMQps7YLCLjCiUCEjSoE": 3500,
     "3bLUQSV1d6CTyfHmCNEkKDbGNX8KhKG1iUF1D2Vr87yF": 334490,
     "3bX9VzW7FZHDJms4ANtGcXexAyhiqX7FmCheGbwiuiuo": 3500,
     "3bY9iQ7bMQb2L3ycmSg9R7ZKcZsXDgZvAamGB8uXDzKV": 50000,
@@ -217888,7 +222413,6 @@
     "3cKhyZCEto4nKZTnGHTGcyAaueY3qzqvV5L9wbr4zqu3": 99900,
     "3cL6RFwXZ4iPSnRPzndnYy6mJxxxEaQjEbppASXKtxFc": 10820,
     "3cLFGVhyEr5B1VDaD1fVkaWbTXxgj4nFoSqehY6jhM2g": 2000,
-    "3cTZ8hgmDYpPffexvWgSc9ogn5zp3AwV9GXvyMHz2ZCB": 275000,
     "3cUBvbiBMGSbUujx8C5XHPwGzmny7XrdHUwnmeeCMSFB": 60000,
     "3cVEJiaqs8PaTj59ogd3fnKinYqVn3e2R3pDTvxZBJGm": 458888,
     "3cVSzXRfunqhE9Hqum7jhbsqBdsmcsrdhRakZZ56jAhY": 20000,
@@ -217909,7 +222433,7 @@
     "3d56imRQjetNrGgMhEHPjbx4ydKEpBdgJ8ro4ZhPQjcC": 5340,
     "3d5vxWN25qWGJuLMMTKbW5rhs1eP2dQHkwZipLm7iSaJ": 4000,
     "3d7kbFyLEfvb1gcBdT5xVfJ5qgSY6ivwYaUe1AjKsQVh": 500,
-    "3dAsXHW2U3aK1rU7Wm9R4izapgGD12fMUcMUNXCRBcxA": 55100,
+    "3dAsXHW2U3aK1rU7Wm9R4izapgGD12fMUcMUNXCRBcxA": 20100,
     "3dBi9SR9U9KFA5Fhx6ZwEX8MkCvP8qnpqHVddyvLDwQs": 16000,
     "3dExkJ33b3XQdNomru7mA7aQT8jLEeUGSj6MuSdix48f": 5000,
     "3dLrJuzCSGmRzBSAMYECcLPZQJptSFkH3gFx9f9GYu9i": 6066,
@@ -217928,10 +222452,11 @@
     "3dyf7UNWiukHo9CCX4BA3n9T7LcJspxBBQssowGmmoqD": 30770,
     "3e4xwECnx7nZxfJCibDTkwdmZNwaMmPQueqVrBkuQ6q8": 4800,
     "3e8fxCa3gn7mCsfgq4iArZ81PAFVpbz3WtH1vxbhaBKN": 14700,
-    "3eF3eQmcP3MJrnkiCZ97e2bqRnvza8acnHEi9vp2qykA": 393200,
+    "3eEv4dVEr2WiX8WwqmiSRXhauE2bbLgdt6W5rybB93MW": 140000,
+    "3eF3eQmcP3MJrnkiCZ97e2bqRnvza8acnHEi9vp2qykA": 600,
     "3eK7CUVcas1v8RLLAqGCD1HVxoQTEyCe2kkUhxJcYBBk": 65500,
     "3ePdxRZkF1DGRHc7NdXyrJvhJ77j6o3ok8sZ58tQQKsf": 619060,
-    "3eRybQWJ8norXGmDYvPKp1cB3wJviAYrr4GhYewbR23V": 10000,
+    "3eRybQWJ8norXGmDYvPKp1cB3wJviAYrr4GhYewbR23V": 13000,
     "3eZmvmfFDZLPGGu1QaqMjdNGVTA9jLJ6YKNjJpRLsDto": 1900,
     "3eeouzz32Bx2F4tiy1mYUa1NmVica91C3cg5M2dYAD6f": 22300,
     "3egKY76tc6ia2DA2JkwTzpsW7zfpF63HzyMRcCx6zJSY": 100,
@@ -217939,10 +222464,12 @@
     "3ejjJgyzZLVCWtSZ46iCoSR4xhcDpw5p5cLAEeuGa5QJ": 20000,
     "3eqN7JJEWUFGhXbao3dnQycu61D1hzvZs72e63NRhJbX": 8059,
     "3eyADNyvq12wvLuiKi8SuZYXvKTQostgLYmvDGsMNn95": 5000,
+    "3f6AxMtQtKiqqkUqRhEYAwwPyG36Vya2XgPoDwiUb4hu": 149700,
     "3f6RqTf3scBEPRPY5DkoPZQudyKqm73wRgXdH8xBesEn": 11846,
     "3fB2fBYPziPusDZMyGxgTUkR4jwnWpVbrzcVh44LzmkY": 1032,
     "3fCHVji7CbPXEmCsMpPQXSFxxMhrkSwX82mY7o3hmwSX": 500,
     "3fCQ3KebByEBGTxpDK6LwdAX6eayFUbDjvX4je3ZZ3J1": 5746,
+    "3fDryMzjSAx9mskjK21VJMWj5AQNnbrmkBWyXwzbd9Ja": 10340,
     "3fEggyG44N5paJcDetthbX3FX6dATAVjQVsQpTpcc1pe": 2000,
     "3fHGNmrtdkqJkANGJMGfRnkh3gXueDWt9QXbTtiaGjNU": 5000,
     "3fLCyjMrocPRYTMPoGBgedhWnBVQjUZFqKEuxCQ28RHf": 104170,
@@ -217961,12 +222488,12 @@
     "3fgDRGNTnHWYjF2rYLkxNGc2WzHZTFVS26Z65snVmE2y": 17543,
     "3fheeZp1E5ZneSKc4J1icxJGcVTS3UYLfSBGwe2hevGy": 9000,
     "3fjT8vHxixG9qUpZj999D5Sy82UKF3nsGuj42yVQZQg5": 100,
+    "3fnd9VsiNGf3Z9FEXrwee65771vTQAvbwJfsNikyygA9": 81000,
     "3fw9GPhtiD4Wqe4ECkaZFhpJHRJXV74fr3ZtWX31Y8bo": 700,
     "3fx1ZteKKzpiNceFGp4EkNVX2EcMdX18hohYbt6JozXJ": 5000,
     "3fx7QffY4dkdoQhukRVPovqnpRANBvVLrGcqg98YXX5Z": 5000,
     "3g2Yd113fS9ieSUB2Fvs7hjqMkg5SZZ3J3nm5A5bW87W": 1400,
     "3g5EhjmNxh3jzuNqNSvT6mc8jZ2W8ETr86117RWSFAV9": 2500,
-    "3g9CbyMnRCt9BTghMpLk2GAsUGis2xvmLfhtDdMKBsZV": 52000,
     "3gALMQr7BLTaNTs3W2iEezTX5trtx7Dqp2usGdLsDyDz": 5000,
     "3gHS4LssahTgdSQ6pWxBQ1Gfo5LHp7SygGV2fWPWbzkW": 53000,
     "3gJwDnFjE1a6yT6Ucd53dXBiNdzQA46mP5YihAUNn216": 200,
@@ -217984,25 +222511,25 @@
     "3h5wmbdtsX76MjKFSLkjYYTS2NGRYTarb5D1f4Y3xirY": 502,
     "3hKFtYhELavUXFhuaDd3rkmXSXnMkanB1VjYfYdy3rgZ": 30111,
     "3hLeGf4f8r3UTrG28e5vUVj4J7x2Fz3wUfDoqMDySHUK": 1000,
-    "3hNRHt48BFuuuTLP1zcCZML4TamkQtxmAnPKSj1duZv6": 16100,
+    "3hNRHt48BFuuuTLP1zcCZML4TamkQtxmAnPKSj1duZv6": 44100,
     "3hQ8aVzQrD7zrGUAEcwT3ECoxTD7DBUfrc5hdDtpEFio": 174200,
     "3hSRfKYW7Ewqp4wNGohZhnbXxRe7EucLauQ3xWM9ogGJ": 2400,
     "3hUdGo9AczpDAUC6GvnPeqqmtj33jNe3sKR1mFiJ1YX7": 3000,
     "3hXTdXdiBhtS4eJVmww33iHXcn1d2XRptNqATthfGz5y": 12400,
     "3hf9shGjpuyjnzJKc69NwZcbimKowfeyhGrGoJnAcfDr": 3000,
     "3hgV5UmLYDg7a1G9jwCtfsriLnacUE1gRHkmb9GtTqKN": 4000,
-    "3hgpcweS81AarnA5LLDBYLhmvvWThiY8WmgfkErLjteu": 20000,
+    "3hgpcweS81AarnA5LLDBYLhmvvWThiY8WmgfkErLjteu": 15500,
     "3hjUTVgCAF4k3mAjaxmkskDukwvHn6Qd5dnXFqaJ7dNV": 33000,
     "3hknyLys2wuvHBZ5LPkGaKUxT3BCKo8oUkrCc9JejM9V": 9000,
     "3hn49ANtdPR6fyLieaqSx4mWd2reVt8LMMKum6sKeNsP": 32000,
-    "3ho9ZuHHr9L6nhX3ChE6m9F6iuRBfCz6WcSi9UfNMp52": 393760,
     "3hqARZkByr4NLrbApe4PEAtKHq6DxUAjtW32QRed4sqX": 1500,
     "3hvXt7yrH7ctgjSMSoqYfL7PYWTcKLv5M57szUFnJJLh": 500,
     "3hww2paEFSdPyzLfx5pcp4WuMpzhTw2vWE7ySvsY55yW": 505,
     "3i2fgDDBTHnTcSezu7pUEBjYyXqZwz9QjWkqv2XWs63v": 10000,
     "3iC8xC5gSzEmmBVCiRmB7T1dLWjeKuyaxNS7FDqeaipG": 10000,
     "3iJkMYam5NRTGSKtzMckgrHAKh262wFj6o4sXc1Kzah": 10000,
-    "3iJkMYam5NRTGSKtzMckgrHAKh262wFj6o4sXc1Kzahp": 101854,
+    "3iJkMYam5NRTGSKtzMckgrHAKh262wFj6o4sXc1Kzahp": 372754,
+    "3iM5GvLkBtuE59TRQ8fg2dGNjpRfB52253Kps8GDXrs4": 61000,
     "3iMCrN9TEn7EYEAt7Vy76hjJsG4DhHdLSekS7hTszs8g": 36000,
     "3iMGVtsZxCyJLsQApqw9e28cMNNXUW7NYcsnmidxWZ8e": 45000,
     "3iN1R4j3URVZAU1qXq34LaqAcPGrpRn2gMVg3UVr8oEo": 1000,
@@ -218023,8 +222550,10 @@
     "3izuq4x3NMVA1Q724RbsDy8WWHqkejezk2GBPf5W66Vn": 21436,
     "3j3N9VyGZzS4QYtJU48A1LTXkwuandepxNhXSm4UHQAt": 50000,
     "3j533fPJAtHg1MDERFA385yVSGZ9NRvc7HENaVJcfMqz": 20000,
-    "3j7FLKFTYmt2myNqRwmGQUcUx854zQAEkq1wTWiPzbT3": 172800,
+    "3j7FLKFTYmt2myNqRwmGQUcUx854zQAEkq1wTWiPzbT3": 207100,
+    "3jKd7t6EdD4QzgbHsWwfaQ5uq5TYbKQYhPepukANLF2N": 5000,
     "3jKy7MLfpVwYAHDkp3YLauBUj21RYkEaYSX9od56pD75": 500,
+    "3jLK9WaMM53vTqxodNMb2vtjqqTRZsmeQYvJHJbNABMJ": 4500,
     "3jQLXzPbb1B5ocvXbMsDjVLKLaN6dTZya64bkj9uke3A": 2000,
     "3jQnAKQkTwgsPrnqKv2s3q8T8FBcQ91H6oDuFWyLuhSL": 200,
     "3jRQvu7FVW6QiLzFqHf2VRVNkTh95QxNQBxMPtsJrpXE": 1000,
@@ -218035,20 +222564,21 @@
     "3jpysHvkxGqk2dY64SLTTYConkoK6Ni2aNxv5FBvPg9c": 2172,
     "3jrTRiCTZAxegRqfoVnescKdKvzq21VJxkG9n3eN4P89": 51600,
     "3jsBz3Px887Bq3HP2iyaRBbsKSduERVUZiuoy7DhHorW": 15000,
-    "3jweE14bp1TE6pkCgYUoJWuK8ZdoDxKiWM6bVPZi6ky6": 7300,
+    "3jweE14bp1TE6pkCgYUoJWuK8ZdoDxKiWM6bVPZi6ky6": 600,
     "3jweE14bp1TE6pkCgYuoJWuK8ZdoDxKiWM6bVPZi6ky6": 2200,
     "3jyqiJieWiADZDS2bez7CFZY7E4ovAX9QB4nRv4sr3V1": 95000,
     "3k4CS5fGXyxLj3D9wbfUxWmGeBofgCDJED3zzQYN6QGB": 8000,
     "3k5sRzdU6EVm8CTLE6dpcMYZDcaNkAv8bB6cHQbt9qjQ": 40900,
     "3kCePdoabD7jLi858FKW1nYyCiPfcvoydNTvGVpRmmFC": 500,
     "3kH27fEHjxd4RRWSA2yofXcmqddKeXd3EK8jWmGpDW2Y": 8000,
-    "3kLdE7JUmj1dNsjZjZFKL3a6CcAJcBhRcuumQZ3oB5wQ": 5600,
+    "3kLdE7JUmj1dNsjZjZFKL3a6CcAJcBhRcuumQZ3oB5wQ": 210,
     "3kNMgj3ucHZAbpxD7amjwwcAZ4NMeyKjf982uk8Uv48u": 100,
     "3kNR5hwEbhhmZb9c75an3cMTmjQ5BKw1WERALHAsN1im": 33274,
     "3kNTg23VbPTSu1mLL9u3H1e1YYvaEymack76TUmGHaKz": 3500,
-    "3kS1Nyi7UUwxezxpSHwvL9iN56KJq3c3KcYRxH2KwiZo": 6835424,
+    "3kS1Nyi7UUwxezxpSHwvL9iN56KJq3c3KcYRxH2KwiZo": 6880280,
     "3kXP7vGLPR6cEUjqniqs8q6MGgJWifH1R5N7LaVRmN68": 1000,
     "3kZcyhU1KY65iArbMzHfpnVn9fnUQFkDwMLaE8ifvAjN": 11000,
+    "3kenznJEPJ8NWBLn9UVdgwKYPoGytqsVTsBNr1ZKboPh": 30100,
     "3kjSgS68PKnKgbqo9mP9kJD5RLdZsSP2f4KBNqE7JJBs": 22126,
     "3kq5yKx336GoJLjRUfEtAEg6d77HfwB2DUmZbpNK4JMD": 46407,
     "3krKYsWBexsU7pyf2T3hWkzYqavVYu8ATSctaUmfPa8e": 400,
@@ -218059,25 +222589,26 @@
     "3m5V63Hd9WgPZdXx4KfYFtKFYWofR36BTLrU7N5KwdrQ": 10000,
     "3mKcdPxHVkmbQAnFe4bMtyzCF7vACRX35RCNsp87vduZ": 2200,
     "3mXtqyWPUQZdpzs9wxjmm9n9WBTtjv2MyYS9J4jrM8Zs": 1000,
-    "3mbyrqnquwGA6HfHaps91KLKpvYcBqjVjZdg29CTva8X": 36000,
+    "3mbyrqnquwGA6HfHaps91KLKpvYcBqjVjZdg29CTva8X": 106000,
     "3meM1rfFCfRuv3zd1guHhfhZySiD3hiqUuZkCHT9xch5": 96500,
     "3mk1ieAFAxm25QatPYS7uTPz4AeEJYxALGYSSmyoAj3h": 10200,
     "3mk3L4QAEUCPNu2i8WiG7R9VFpnFLJTcLwr9HnpZnPiP": 50000,
     "3mogEMjSLFvtitCSSdnvHNnoFTRN4uhXyrjEiJvw2qbT": 5000,
     "3mpwMtLQ7Eo93BJnVZqnd2aAh1WYD3PvDSRjcLi1ftZz": 800,
+    "3mr7E5LHAzgQnJNSH5PWnVh5idjWeedfdpKvhJ4dZXPY": 500,
     "3mrE9473eZAk1o4Pgs3JBeah1XLEFwr6RBdws4DgZo9a": 1900,
     "3msGRb7mCPxTmvHfMcgGFh7Fw6gSew5pc9RvzFBqukNH": 13400,
-    "3my4EE24vLAffMbGRRVGFE9bcQYMAnqYqb9cfJnjJtLJ": 43600,
+    "3my4EE24vLAffMbGRRVGFE9bcQYMAnqYqb9cfJnjJtLJ": 32600,
     "3mywpgg6jQHi3udRLkp7JrKN447F6kBvZ9nUPJeoaPrA": 6000,
     "3mzUckANwLXyzZCxVyeQTUunRPtQNDPC8XdwBmjkJAWy": 135351,
     "3n1Sf51kLBvkKsSfaV82JChUApCfJG5PC4cDZY2zfNtY": 1000,
     "3n4bKew8mMMgSBsEzW777tNtJFEn9tysogYFBq7ZXpyT": 1011,
     "3n4zWXCxvoQEP1FTceNCNbbEiHD3nxTMmgYytEmcbUG5": 31570,
     "3n54gzkP14g83VM4Dsk6anCufC7Pfjc9u44t6GM5tioJ": 16430,
-    "3n5udWXS7BhRhnjkdVW7nAAhL4YHq3MojTeoRKDRKRB4": 229,
+    "3n5udWXS7BhRhnjkdVW7nAAhL4YHq3MojTeoRKDRKRB4": 10246,
     "3n8mMxzmKYkNe868LyFZkVLQ3snSG2mSPFisYqWi8Fs5": 5100,
     "3nD8vxtzXk2iwKBReFeXeewqqiFJd1uJzD35vhQyfdAZ": 3000,
-    "3nDFoCpjpKXX2vb9ZAmNU76Jxw2X1vqziqFANxBufVNj": 50659,
+    "3nDFoCpjpKXX2vb9ZAmNU76Jxw2X1vqziqFANxBufVNj": 75159,
     "3nDFoCpjpKXXvb9ZAmNU76Jxw2X1vqziqFANxBufVNj": 12000,
     "3nPisyMJ22CKzvY6gHTwmRWtpKNTxG74HDUtbzXE2TQR": 1332,
     "3nQZBwkTqVeviAKWpXQSAHqFs8TmbmrJUrvttqzfU5hM": 10000,
@@ -218088,6 +222619,7 @@
     "3nsuyPoL1gk7ecCGB6RRmiLCrBeWmCvg7ffJg128bc1W": 5000,
     "3nvqwkg4kNcBx3xMKLa2sz1dgghcaJsY8anZmzRYq3nN": 5000,
     "3nzLt4WR7UFq8E1AGGzsCjyDFBuNynzwFz2rSEXZpoAb": 20000,
+    "3o1MFsdm48Z4KG9g6uJrm8xKFb4UuGKJ5AntsbfyEfQR": 1100,
     "3o3grhidSjwtYvBjqmgHKuMrbL3jkfVTVjofLneZJ2bB": 2000,
     "3o4L76nwVwCqY82CH2Ce7oQoC9A6EBL1a9MGyV3A9rk7": 1000,
     "3o7prWsDn6BYvVg2VKVWWk5YbdKExRPa8qGn5mZubbR5": 314,
@@ -218104,13 +222636,13 @@
     "3oh19bTGPZ3mZMzjs7kzQU9e335NNbNuLxfYZ1atF8Rm": 500,
     "3ok3EQQkEyZB6DSiJ3gSqJiGnZSs1nECyLdjh5gduBAZ": 30000,
     "3ortCsGYe23WHMa3WKbnRBk3smzTpQHDUohsxWyndc9J": 6000,
-    "3oxqJMScE5vyxBYSr18hA4j3sLm2mRyCpsXoPCsR1UPS": 5000,
+    "3oxqJMScE5vyxBYSr18hA4j3sLm2mRyCpsXoPCsR1UPS": 4891,
     "3ozBMyUKdVDDriZ4gqYFHiY3EHd5ri7645fd51fQyAfe": 1000,
     "3p2FAx2HoQbuCeGhZLCiYzFHgUW7qvX6EWVeff1AWgtp": 10000,
     "3p3duMBUJznSy4qyNUSWwNyAgrfEmJvAo1hzNUk3CK8V": 4600,
     "3p4UYrJ5d6ARcZx9dWT45AsePVTMDi7gRaJDkmrVqkeF": 5000,
     "3p5FsuPBtDeJ7WFaqXkLVHmxzTy7fiaXAkiRm9r6Ha7T": 3000,
-    "3pChz4rhESzr9v4U5kRdHLR2qp57Jd62zJa2dMDuUvvR": 5000,
+    "3pChz4rhESzr9v4U5kRdHLR2qp57Jd62zJa2dMDuUvvR": 16200,
     "3pEKTscXakQZADyAMbLPMmNqpwV4v3XBcVogA8cN6dJT": 3174,
     "3pNg5Ewp9G797jM6ijW2H8D1XAXq2tuucVrTW6wbBjp8": 10074,
     "3pSWNmCvoCmoWJhJTqhvtJaZuqkA94jR2QfkEQHi6sk9": 5000,
@@ -218125,7 +222657,7 @@
     "3pnSZq4ms3PSmvuVBmx3XUrByXiGdRRMTgQcnxhsyexR": 11100,
     "3pnsmBGMtXmJGgYn1EDCN7N48VwiSd3dFyfbBa5UZ79y": 380184,
     "3ptAwPXSs7Hkc8morFLb5enoG5pfwN39hZp8Dbq7boL5": 7000,
-    "3pvmTqd6LpKtn2sowaqcQwd35fxbtfj79tZtTAP3cF1B": 91854,
+    "3pvmTqd6LpKtn2sowaqcQwd35fxbtfj79tZtTAP3cF1B": 30458,
     "3py1Ymi2bE68uNcpN3bFLjPVURPWQ26eoyBB6gRqVNFH": 7647,
     "3q449j8zuJQSyGp7k67rUGHwxABWNVqkDkpi4QiU5Zj8": 51400,
     "3q5Cw9SDGpXuAaLwEMWNjNt4JC9Tt3sWwetpgtFFvZzK": 62400,
@@ -218138,26 +222670,27 @@
     "3qQLKPgt96sSjSvzEcoYfxk9wur9LXaacZ4tCeaUmQLs": 36554,
     "3qdyonfC5fs3buQCgiiBRNZSipMvPV45dUXaNmsHm7tz": 1500,
     "3qiHT5JXNZHS8cr1cG3Qf58RHXRGYNdwPTWE1i7UTYWc": 510,
-    "3qrHXpMJCYDBGHfiFnm49VGwCZrMbuScC3R62U5cWP7C": 33000,
+    "3qrHXpMJCYDBGHfiFnm49VGwCZrMbuScC3R62U5cWP7C": 38000,
     "3qrLohLMX58bdV1KXGofXYiDVbNaVJRcqBRCENhVHokD": 34182,
     "3qrkCMUui3EyrdHyFBFJS9qHpQmagoxayXamWxUbh54u": 61373,
     "3qy9onRB6Npe34QwGLBgdHwhxpw3K1qpxVUUCYWZ6ojq": 60000,
     "3r2Ww6YTUX8uPQ86ZVVD3y6c9osJ9bprGjuYHV42L133": 1000,
+    "3r6DhWfD8HBRfskYMidBdZ9UThEzJMfq55N9mGTKrHGj": 1000,
     "3rDBLycWcmq9sL5dSZr5BQz1XynVdxRRwCXY99mKedKi": 51842,
     "3rEwdsAXSRQ2HXt2R6TAWk1he1FvW1rKVDKSXzsCwqEv": 2000,
-    "3rS9dzei3Na8epuTBCRnd7zt9yv8zZCrUyf9JSzF8C14": 26400,
+    "3rS9dzei3Na8epuTBCRnd7zt9yv8zZCrUyf9JSzF8C14": 24400,
     "3rcZyk51eQvbKeZYbvSnwUe8cuL7BWZVxYT3WJsXwcSx": 1000,
     "3rffGK6cV9tJRzUEeEFig69iVASTADZqwsmRwXmuzSWS": 30000,
     "3rohNkyUjrqBDUWQ3FnRwxj5GKKqmtVuQWRBzm4JkLvu": 5400,
-    "3rotGVbWGMFWvPGnjdceNtrfQc8QvGtmgxqLfKYZN9YJ": 49796,
+    "3rotGVbWGMFWvPGnjdceNtrfQc8QvGtmgxqLfKYZN9YJ": 119796,
     "3rpUX2hMyDPf19NrUgFv4YKaWP6iCXWoyFhNgmxvnGn8": 5000,
     "3rtcyyjKutLF81Bt9ebzt6Gg1m7oPJJ9avX2E1NbNa4F": 5000,
     "3rwQyyaLprjCb68iJwN4Zr1LsjS5UKrxcNuTeQ9dP5q": 20000,
     "3rwQyyaLprjcCb68iJwN4Zr1LsjS5UKrxcNuTeQ9dP5q": 10000,
     "3sEDWFhnNEG6HmJgfjqqMLZ88QqrgJvoRESwzyF77EJD": 9904,
+    "3sEZaHNrrfz6b7Y35AzRV9iSN8wuhUakrhNgao1Laqff": 3000,
     "3sJhHXHJkspBRykemhRrX95ipTFv2BT4Dsb6rVbW8qmV": 521,
-    "3sMcF8z6BP223ad6zvToeCuHTbPJDS5acnWhTBJ2PDHj": 10000,
-    "3sPTCpZFy5wGXYxT9r8XKTUz7gxq5iqTMv2DehNSkkm4": 6500,
+    "3sPTCpZFy5wGXYxT9r8XKTUz7gxq5iqTMv2DehNSkkm4": 3400,
     "3sQ2dZneMcyrmet3tGwjdw3rysc8GSdi2mEDGkQsvsUU": 100,
     "3sTm8CNqkBNn84jh8feRPMVnyZHqYmAFT7gS8PZ7rWzP": 2400,
     "3sWVPmLbvLrZaUXSmDwPKg1F7wAWEzrJc48yNLq7hkrG": 7864,
@@ -218184,10 +222717,12 @@
     "3tcWScwFsabjE6kFigbjBCFgvLXaCNYkw2e4H9yN58Zh": 16300,
     "3tmUrMQGhnQUSKMb7Vu9x4kwQoXYN7rDURKE3sFc15Hu": 100,
     "3tnAd3WESM69H92oVELgWsNuNywwMwCUbNJk7KHWgw2H": 100,
+    "3trEoh6uafcbj3SYrkW2MqDA97SHsRGZwz1hn6Kr5XYq": 42300,
     "3ttsKd4cvKeHtezovQPMsA8HN26ypFZRYjg81LHfeWqt": 5000,
     "3tymHAYEiC5AmnKRue7YMWonta14jUFMFDo65xHD1FRu": 5000,
     "3tzEevytmB2UsTskP3pWjmTxoHbHL7QADS8ET3cj8xGF": 100,
     "3u1UxJ4cg2jW6mazsahwTfPvJ6DCQkndJNy3a3MAX42m": 4700,
+    "3u4ME1QrwZ5sz3NeHYfXBjQsV1LW9irHo626gGBnvNTk": 69000,
     "3u4vATz9BoVQmqwJf1MoG7utYFiyQMQ42ogqU6wu8V5w": 59793,
     "3u6xWnoX2wrRxSVhVeYa6adGdUHXN65g3zJrsKnF59hv": 10070,
     "3u7JoDeTAnZGjXLpXfv42PgqhnX56jKfAaEQmF5gfjVE": 1201000,
@@ -218195,6 +222730,7 @@
     "3uDfEUv8WiwcKdX3G7b6nGyuYfgC8RWcWy1sqxAbRZzi": 100,
     "3uTPD626SQSaeqHGsdzaJ8vrHEfsrqbr43GBMuDuscXs": 1000,
     "3uTWTNo8EpE3qoSD83Q5JNqWDxniLd9Ca3Rqn4s72TeJ": 61000,
+    "3uULP7PB64mbt5Ea8QhuGCMgYpuWVH5XaPQ1vSJZ1fcR": 5000,
     "3ubV9KXqGe8TYuX6qHCgvZ1Scq8V4d6Avqv1uoo8GAd4": 10000,
     "3uc4umUDBpZnjJE9fXYsqMEH72nsZUh2Lf1UxwUEEy4p": 42960,
     "3udjnzxVjtUgJApcmM45fbvMTvKiWQ38WLvtsiV5e2rb": 5000,
@@ -218206,7 +222742,7 @@
     "3utan4FPJePhD2N441hGUB8gMmjkEByNNetKKfSpSDGc": 6000,
     "3uvAPgVGSQiWLvpJEq1k9GgNRLiN5uy6qufFfRxoeKxD": 1042,
     "3uvCNL7HJKSC9rHUnXwYK3yECYoWG2u2qWjxHiwk71cD": 500,
-    "3v1ho6Q8GHgSn6wcyzWyNAsoQZ95VkgixC48TE31rYca": 13087,
+    "3v1ho6Q8GHgSn6wcyzWyNAsoQZ95VkgixC48TE31rYca": 16987,
     "3v675KvC3oouqVevKmZSuQhHPFaWTcNuLE8fv5JsN4s8": 100,
     "3vD2orDv2VBAJkTd9QoMr3rMNMo99ZgUR4LeQSgTb1nj": 469950,
     "3vGAkRgd2uVBLDWe2g4UCszJvv5KEFSGkPDXb6b3ds49": 5000,
@@ -218215,10 +222751,11 @@
     "3vJMwMVMXUjEDZj3vdVjAkxyqGzwLfaBXFYeyD4sxpFj": 1000,
     "3vJw3pBeQGca7miL9WhdP7UCcMENPJjsaBK4wQp7nTSR": 40000,
     "3vJxmJFEgJyyYA1mY8MxTxQCWpD34kaSeNV8a4jkpNrp": 5000,
+    "3vNhwVriAVUEFFtQkiugaQrfyGYot7yF13pYPvdTPH6P": 10000,
     "3vQZKnVEsNeQNVFJawnk69yzVsAPCo11Zcbztt2M18Vd": 31530,
     "3vSSRnf5eaKt483qVv8WXMJCs1FLwuEF85QipZQEmp69": 22500,
     "3vSdUCdUZof8iJKKoaEZijFfovjMrGmbFLuCRFpSQegE": 8500,
-    "3vUZqJqGgzGH5HtJDWvYh5Smd12CzEuoDWyhYmWxFK42": 626201,
+    "3vUZqJqGgzGH5HtJDWvYh5Smd12CzEuoDWyhYmWxFK42": 840801,
     "3voAVuSK1yZGyHCqTZ5VjZUmH7SaApwsLDE5qG5uZpBg": 3000,
     "3vofJUQi2M7YE9Q47idtC2NqZzNQK3VCo92J8CQN3T8L": 6000,
     "3vopTGWjf66vuKVMs3MayvoN6gJ1MsFRs9ZBqN6r9fgE": 12100,
@@ -218228,7 +222765,7 @@
     "3w2znnJRLZ1cmxrLCxyUWhPnwTvEsBJZCfqVuCG3XwuA": 1000,
     "3w3HeDFNoNTJTZHxfq2CNHsNCcueqFkSsY4BnHZurSMf": 823,
     "3w4fpVGuhgs3kAJmnpVmuWA35MsPzCXKwvf8oTYSNH94": 200,
-    "3wCmX46ZuRnRn7mWhds5GVw8oUzamrCyXTXoq4pVcTNz": 10590,
+    "3wCmX46ZuRnRn7mWhds5GVw8oUzamrCyXTXoq4pVcTNz": 85618,
     "3wD3rr1GdiDXk7minGWxPcm6fKrt3bLQgKDv9ezRpy6n": 200,
     "3wDkeD63H8pFu24DwRdfeNPm1Grwro3Z6ZVXE9rwrDE3": 5000,
     "3wFqCtRHcSm2JB8kx44eYRcQKMFY2wdMQZcKqP5JL8Tq": 45741,
@@ -218236,7 +222773,7 @@
     "3wJYWg8yxVj5DYB3U7v46hfowfEAc6S9GZgY18pQr1va": 22800,
     "3wLGcSZXTuNspbFBxGJaNGDjS36982imbHu7m6YVLHWH": 2600,
     "3wLMp3hq3HnfVfbzy1r2NAXYNbDJ5U6revztzvjXmcri": 2000,
-    "3wN6z9GGFwYy7Sy685Wdgi2sZWrFXp4qeEu3NsVyrDJZ": 6100,
+    "3wN6z9GGFwYy7Sy685Wdgi2sZWrFXp4qeEu3NsVyrDJZ": 36601,
     "3wN8A9uWwoeZa59nG3bcoPBkU13Cad1xHjt3tqng3baX": 2500,
     "3wZTMtD11n1ayxaA6ng8h24Lo3kdkh5ubt47xJjBZxcE": 451490,
     "3waFDmh5CmDSUirZmqrhc5PjLzQtZSPzDJ3QvP2y1Diu": 1059,
@@ -218264,10 +222801,11 @@
     "3xHzkzFNAk5zUEvXCCmu85KT4efPL7bW5eZcxBb3rbfn": 2300,
     "3xSdBLjLeQvGmNNtfCqqJgD2EfPcHZao2isBDFQP9bns": 10000,
     "3xYQBJJbk2JkqXJs8NbqHeXKCdNEpRnfZgxAvshQV8xT": 5000,
-    "3xbMcXLi8XRgWk1sy71nFBo9xo7VNEARyksaNXGKUho6": 228722,
+    "3xbMcXLi8XRgWk1sy71nFBo9xo7VNEARyksaNXGKUho6": 238822,
     "3xcX5ryhtWLoft5ZKK7SoU27quGPjuieFquRdQ8v12YU": 145602,
     "3xevBU61Sp272zbebf2BJeeS13hM4Wt4hJcnw9eqt6Vh": 1124616,
     "3xfHcHKG6JpqNxmwNgJdSCMauw6EFesjKL5tquA2dkAv": 10000,
+    "3xnN98K4zn4XELZiGivZsZ85YjDDsc8kmJgLe16SfcMA": 60000,
     "3xoFe1jcHQjEqeJsXdvXyEcntsNrnpZcyJJpE7oUjgR2": 49000,
     "3xobaCACnkokqq5LwmfV8SAWaWzvwfBJLPccb24HPBR7": 7136,
     "3xop2urrwpzkkP8bXX6PtvnmkwyMSkVNVNro7D4L5kWb": 94390,
@@ -218288,7 +222826,7 @@
     "3yJDbZLWAXoPxGxNiczoVqQpvWBiJsSc4ibNXLziBqxD": 500,
     "3yJEd2konA7iCvLG59zmcqU4U3r4QL7zNJpq4RXrwVHU": 900,
     "3yKXheyg5tmGPWRBxbDRUg8S1em5zDueYBTuhQp3mbqQ": 9163,
-    "3yM6cV95e5biNi8eH8wrC2znRyLmxYbCg1wXTm3EqXD3": 50000,
+    "3yM6cV95e5biNi8eH8wrC2znRyLmxYbCg1wXTm3EqXD3": 56900,
     "3yMmJgJ9sYAdWVudCVmVpNHgFkJzRVQqWqbGQhndbpXv": 1000,
     "3yN8qf2DsxD4Utm9GYQuB6Skt9f63sh29W8968REnk8E": 20000,
     "3yS57p5Dd2KxG91GcVDd3BJhAYvnNScwFY5KRq8McvhL": 5000,
@@ -218318,6 +222856,7 @@
     "3zkaC7DxfbA6P8cyCVms3fXqhzntcenE5S5AWTWAwfJd": 1011,
     "3zkpzhWPUCMSUU2sb5vXNmuLgETJPNTXwEzLZrSNiCWc": 500,
     "3zq1yF8nkS4vTRV9C5fi723v7JvwyGVaT6f9TiAmhxVZ": 24500,
+    "3zqbvxd6sDMbyHwpik56Hmsz1WUm9uiyNJnrHubzh152": 100,
     "3zqjUAXh28Ut68uSgnex1Ce7MdS7jva3xixmsyZHz7E1": 11000,
     "3zuHoFEdweGv6tHEmestUceYbb2sxrX27A135oCfANuN": 19200,
     "3zw1ky4CVJY68NnBEKqB6C3XtvGSDVbz5KGDApMEon5f": 500,
@@ -218347,9 +222886,10 @@
     "42EhhHtgUKH4ewPkfN3Tibtr671Rer4FLARDWu5rEz5C": 968,
     "42L6SomhPNN3cfeZ2RDkgsa9w5x8NZuEJEdpYbW5XAfE": 1051,
     "42NEPdYyhY7aHCY2UH27ihPDD89v7U4Uu2fWzCgESHB7": 30000,
+    "42NysSiAaNyz14WRa2TgaZJPghL399Fy4aCBQjVU3VUR": 45900,
     "42Xa1Mtc8JTCfo7hkKAT8ARaZH5zNMBjLU69DFQ62JdV": 33900,
     "42bLEfmh8LtoPG8ARAzHUQJb1s61YJk9cLZaZbXkKugZ": 100,
-    "42d38aLrTaB7yKXBdtK3fpniJkvWib1TZDLfgVXfzJR5": 109500,
+    "42d38aLrTaB7yKXBdtK3fpniJkvWib1TZDLfgVXfzJR5": 126500,
     "42dfT4y4kEi9DkzWQTzJbfwXKKgXGGbVdRF2XAGPvWJG": 16900,
     "42fZfyYu9xzRCNfwpqHLEzBdPDyj3PKVhEsXyCsKRXKG": 314,
     "42iPqnGT6aZPfXyWSun6eVogzMcb2dB2gPDYLKrLcqEz": 40000,
@@ -218368,7 +222908,7 @@
     "43SEAJNrDfebBmYYMpjvQfEwsHCHqKWrX3Aeug5RTrhE": 11800,
     "43SZJ3AiK6h78sbp1FxKhDNH8DZPL2jm4CnACZ8rDKsD": 7115,
     "43TawgxwPEzVd8hsjC65m3avYQc678Jm3Qd2PtwuVgGW": 12320,
-    "43Xit73Jy2aySAeb3DJFBt6V77cTATbwjRxuyPsjJjZR": 57059,
+    "43Xit73Jy2aySAeb3DJFBt6V77cTATbwjRxuyPsjJjZR": 55059,
     "43Y5wdacB3XPWFpMg7ucHqW5JqdRFu165xCLQpzb9Mnr": 5400,
     "43fDSkyKrbrkKrnSwNQv6L3fKcmcJig2gsnd1Ye7NP5F": 200,
     "43gCXCRx3VKHjbnd7aZKnXJSnwqayFwDgRebAUAvddvE": 5000,
@@ -218379,14 +222919,14 @@
     "43vj9YvR5RVaS2goNUXLRzvpZY67R3Fwrt9zKp8BfjeN": 303,
     "43xT2ez6ihJEzQk3ctmWcpbKweT7a4KtcLFCzaZRs6Tq": 10000,
     "43xoJ9EMsU5wbamHXkpjTThLKrqgQ4SjyhsuMWtEEygW": 100,
-    "449iXmjnuf6Gxgi85yExJ4sQitwt4feJXRb6VPVGDn1B": 36000,
+    "449iXmjnuf6Gxgi85yExJ4sQitwt4feJXRb6VPVGDn1B": 238000,
     "44BoXH1RPjW2hm1dQzMcHV62WV6PQRHYvRhqmsu1gtEz": 700000,
     "44GFtS31D1ALBeRsV8sCfxaca82Ay8ckeFJQSJh3d5Ba": 1000,
     "44Qouvf2VyYRnJuFaRhdLRa8XyvyS3R5LMyU3spNazDw": 3000,
     "44UkGBp5zUa679jxBrLQuBBnnCsY5PcQDRKB8ULFjJr2": 5000,
-    "44Wiaiv1ponCKwkzLDZVeZgxvzsBjLomVN9foRXGoSU1": 67225,
+    "44Wiaiv1ponCKwkzLDZVeZgxvzsBjLomVN9foRXGoSU1": 7225,
     "44epvGMPiKRbnPu3sWr2XaDUENxJ8JNoSB4a2YLzNXCN": 1000,
-    "44j1DCnhzw8oUmhn1tVA5guPpeYhLroCVqTvXfQdC5u7": 26500,
+    "44j1DCnhzw8oUmhn1tVA5guPpeYhLroCVqTvXfQdC5u7": 1500,
     "44nV9W8hzFwe2VQE8d9vc2ocrTwFBYgRBeeMXf87gHQy": 2002,
     "44osgLZWj9i46YH8VGF3Z74UtPm19wqksMxUiUvSH4kz": 5055,
     "44otKLQhkZUfiJNzjQS2e2huQnyboe6hyc6Bc16s5sw7": 5800,
@@ -218399,7 +222939,7 @@
     "44zYc1s4CHmC1ohrYCpi1bo6GVMk1QJco47VwtvpwAJ": 15000,
     "451P9b6MekwMrrfaLVtnhkMeDxxn5KMx1EQu6UjBeaik": 1200,
     "452KUYahnCpBMPPJkiGj1p8GMaaXX9DZcWTqnL5DwhPA": 93590,
-    "4545Vh68TYtb7WXqSBvwfam9BZBerCuA2NAE5e3afuUM": 80100,
+    "4545Vh68TYtb7WXqSBvwfam9BZBerCuA2NAE5e3afuUM": 80101,
     "454SSvtUCJ1a611JRRvX6zrbJyqVr35UQPQJpMAMRm7q": 5000,
     "455EA2zT7Sp2j6wFXZde6FxcFtgc66tvrve287yjrH88": 5000,
     "45ACQKCnVPeY4C6rLMZuLymodvVwzh1bxTLuPDaguFfw": 12200,
@@ -218429,14 +222969,13 @@
     "46K7PReAUeUWc6yihUdiRozMkMdzWZpp2STiSXsmWha6": 5000,
     "46WKFApntfjvq8ziwLZdjX2NNTPwsYshYHf6eWHsdoDM": 104000,
     "46Z4DME5Rnh3RfdQUY8maZ1wnCDGWcFmVEJ79vv5FJXo": 317700,
-    "46ZUpvNswbFUeBx1Bt47c82oR9UtccC1kv1GwLmyfCzB": 5000,
     "46bsMQFQo4T6vjcfn4WK35Zhha5tyCuY7VevZHp12r3q": 1000,
     "46cddpzCNm2mMtG5rk1iP8mXmbM3W8xK9iP6DcwrB1WE": 26800,
     "46h4FrbtnFcVRLk9K7xHVxqnUV2L4YpHUJFi9HLW9Y1J": 314,
     "46iGzwo5J7NYjvrMxD7DiYqTiaVNSyFocW7AwAijXKFv": 400,
     "46pEVD449uf6H7DZ3KL94JVV7JsfXJkYZNp5JumRyNiT": 125000,
-    "46rBtN7KZLzuGoziMUbnWGjEgmaKWyu2ru7aMJ17TkEB": 8000,
     "46vrHtouzX5gsTMSSSL3MZJhH7iHQYHtK1HSU6Aac9VS": 459,
+    "46y9MUkexP8Kmzh2sog4hUkKe58ERVHPqRgyU7aDsoPh": 78000,
     "46yJLsBbusT27G8hxena83FPHhW7pEU62WeKcRLNaELx": 100,
     "46zdoY3183GURhLF37cNNrXmSiUSE8Y3ajACmSwExoR8": 10000,
     "471hPnz4DpMV51sRUqaSXYJuWZtbz2o5M2uS7of3oDaV": 1023,
@@ -218453,10 +222992,11 @@
     "47jimEjbrcRuJJAUVJeTADhYMkYn7Y3dPLECgXPut6Qt": 5000,
     "47qdnRAcVoJDnUDKjoz21ckK41Ld93L1pNiH2SkJDCib": 121500,
     "482ZDcZ5ZVxNjemYcPNjX6gkft8ahPWwGTMQqhCgeRp3": 720,
-    "488aeJ236odHywG1ZusJdabdBiGMPxRdv2hDb9dwriVU": 763200,
+    "488aeJ236odHywG1ZusJdabdBiGMPxRdv2hDb9dwriVU": 729600,
     "48AVwnudawQ1CWa5YYUiypGMgQXWLna4AH22dtJ1VJjL": 99200,
     "48Q3J92vZa1qYEeeNE9Mer4Bqug7AafZ4rfBjnizF3eK": 1518,
     "48UVCYqqujyaaUVeiDRtNJ71z1JKKmdBPunzQ6VofmSj": 7830,
+    "48ZXTxEvzfLXfciKsUE3Z7QbuHGmChm7w4R7UNQPvuBW": 2500,
     "48Zvu3cr95FxpTTWaJoDMbbm5x6aYzmwsLc6h1sWB2F7": 5000,
     "48chupjazxk8VtAKjMCaHY7to5SU7uSwJrApQFjyMcWY": 39906,
     "48d3sVRKvVqPZJYfB7Cb9sio8wCgkbhtrQASayXT7yGZ": 39000,
@@ -218469,11 +223009,11 @@
     "48tABPGBWX21d1RyRB36A7nPvjkhpS9oZZd51ZYKkYyt": 4000,
     "48yhK3FmwqEEFeJFASQ3CEWWLLiutwEaAvnHXAfjyYPU": 5000,
     "493RiWpb7B5McLGrgZpZot69iUQPgKKogiVbGtkirRaJ": 75589,
-    "493rwfXoTVZ4Qwtq7QKi2cAu57Hcrjz8PuWBx6PXtTZt": 66180,
+    "493rwfXoTVZ4Qwtq7QKi2cAu57Hcrjz8PuWBx6PXtTZt": 59180,
     "4951E9DyZ2fCP8iPQjJcwDc55BgcUwV7TKBUncu8k3Aj": 49000,
     "49F8anssQ73ydoGDWgqmTcLV5HWKLteym6NXGw2fKAQs": 35000,
     "49Hnzd2QX4CmEEqo6hCPm3yWUCYQK39GFuCJY9qS2WZX": 100,
-    "49KGR77D7ognEqjXWrDP9rT7kVUYnZwfF9bF7Pi3SjPH": 2077820,
+    "49KGR77D7ognEqjXWrDP9rT7kVUYnZwfF9bF7Pi3SjPH": 2103820,
     "49MeXwwCmaBAiXLHBSBFvFb2TmMz5aDzJCTxEzyqskmq": 10680,
     "49UJGoyYopeW3wWCVVMqFCE4CxCmC6ECbKsopRzGxc9h": 12000,
     "49WVMmntvKoUE4jBqJ8vDpPbHm1hHFVMDLQhodGYTzxN": 2000,
@@ -218482,15 +223022,16 @@
     "49eCdgs8PmobXCAt73aUmkTHGe4ctJh7RDhcVL25fAPU": 400,
     "49h1K7aJKaK9SxmfoWCryELMuohPdTUvWKS6Q53EeQ6k": 1042,
     "49t4AwKnAdkaBboTFpsjxZ4FdwNY9NRnDbyYvbQwyzRo": 1800,
+    "49tUXQJAvvGLqm7ksdxgSapRTK4WpyaQ45RQf2mMA1B2": 14000,
     "49uXnAfjLtvNER3L9UUBpaF1PoPfsVEmtP8Ls94BVDVz": 5000,
-    "49vZdkNfozvLbNyGBkvvtvUvPRtcmmBWtCtwsdmA3mGv": 50000,
+    "49vZdkNfozvLbNyGBkvvtvUvPRtcmmBWtCtwsdmA3mGv": 34000,
     "49yewpHoTFB8qgXskfjyKUr55TEPRsYhfww21XpZbhPY": 111500,
     "49yjp2tDrrFtddpz9sRRGMHU9b3cMWcTA5jiWVov1dzM": 6281,
     "4A2Gh7K6sodZXusfat8ZAR8HXkco747b1CayGo4FxJJy": 35000,
     "4ADGuAUb4msirVKAyUPLCwPcpfvw4ZbrvTX6YAgF7udu": 2500,
     "4ADun3FFXpXtrf4rh8JSodbNhR8rARWUwbDpZK1HXBNE": 3000,
     "4AFYq5bQMbBGu2GA9Mc1kku7mbavX4gvb8BGFDXVPfTv": 1000,
-    "4AFuupda7prdeBLd13ADmgwckhunDwFTuhbEEX273ez5": 220,
+    "4AFuupda7prdeBLd13ADmgwckhunDwFTuhbEEX273ez5": 28220,
     "4AHkVoCmFfaHf4bwm8aV81itbhjGJgj7qNNqZHq74cZh": 7500,
     "4AKJkQYnKcL5CLJsSL3x6nFPZskHXHXDKfNnsrTQM5Fu": 600,
     "4AMNdz7TZ5Wn6t3RTTmTFGLziUo9ZWKYhdsZywszDRNs": 9000,
@@ -218503,13 +223044,15 @@
     "4AmyYadfiQS7fT76PuefMaSqvfRoE2n2LqeDRc63PZoh": 16000,
     "4AsiCipgpgVQLQK1ZA4R9egBszR57epa4tSddL33T9vg": 5000,
     "4AsiCipgqgVQLQK1EA4R9egBszR57epa4tSddL33T9vg": 50000,
-    "4AsiCipgqgVQLQK1ZA4R9egBszR57epa4tSddL33T9vg": 696718,
+    "4AsiCipgqgVQLQK1ZA4R9egBszR57epa4tSddL33T9vg": 868718,
     "4AsszPQBja8352nrTQHCRpcLgh81rPjtSssZDvhCMNZZ": 1132,
     "4At2gnxnFFGEms5wKci4yrkU8Qf3jrGBGM8dgaaGjsNB": 10000,
+    "4Au8szywWN9EtN2uiYN1LrSeagcJK1hjVW71z88dodXw": 3000,
     "4AvbJp45ohXuJs2VsdTh8d2NQktTEDHsiufT5qhanqDq": 20000,
-    "4B2qDdgwhYpCbH2iet8oF28pMembkPVD6ynr7jT4FqhX": 25000,
+    "4B2ZvKk86kbhKFPeAcfjQNf5tJPHBHWTNvsbKE6wkTcS": 42400,
+    "4B2qDdgwhYpCbH2iet8oF28pMembkPVD6ynr7jT4FqhX": 153501,
     "4B7HDxXjZRmeGyQC8FJMgd8eTKvKLSYhMJu1MPEtr2ay": 1116,
-    "4B8TiZWjFY75FTiT7PJVH8dGnx3zqXDCFGaF2Trx1xU2": 1000,
+    "4B8TiZWjFY75FTiT7PJVH8dGnx3zqXDCFGaF2Trx1xU2": 31000,
     "4B8vXAbyzPiXUed7k6BG2iurTZRNm3t73j4JZaq3nD1m": 64300,
     "4BBwnQr5JtMak4AkgYEwn8ev7Cf48TWRSbxAdab7uDvs": 10000,
     "4BCWiYbzGzDwZ62uCGH6grVn18VhVEiEM31zPStrVYkE": 10000,
@@ -218520,7 +223063,7 @@
     "4BP23XH6T7gnHUZTYPz5UDZHwKs6gtNC563j92AFjgwN": 16500,
     "4BQ8V7tbNRBsGAkb1A5MweSbM5z2aasbsbFyYTj7QZxV": 25000,
     "4BSdLu3nnQM5EKmeG9dBorHYKcGTtoJoc36xqFN5QXqU": 10000,
-    "4BTMaFkmecpoDVxMPpVuGHtnPJLG2YXa7wKQkqQTj17y": 500,
+    "4BTMaFkmecpoDVxMPpVuGHtnPJLG2YXa7wKQkqQTj17y": 10500,
     "4BXjQJBmWRMvr6NF84PQgtZUsW4DaDk1KevtxSgmyq7s": 700,
     "4BYRkWrACbi6xJbbbQMQgmWakeqBCpHizpnsAW3vR18Y": 5000,
     "4BcRt4hTMqiEoofEHuZa7k7wcziwaaLBC6gxLbmdUNZm": 42500,
@@ -218530,9 +223073,9 @@
     "4BszX8Fg3HSSZqEerf6rCwNVPcGLwdEuPkdoSFnfc7pV": 5055,
     "4C3mK9yCAfTDeLEbXe4iSdzBNVD57a6LJLGsKrZiSkL9": 8336,
     "4C5fth5CTd8ScSDRKmFFB2iHeQzBGbeF24PgXz2DWEM": 2000,
-    "4C5fth5CTd8ScSDRKmFFB2iHeWQzBGbeF24PgXz2DWEM": 858091,
-    "4C9e6rouNj23UMi7ZrrQNdSQ3NwwzfsBPZDfpUPx1jvx": 5000,
-    "4CHMUCHMm1A1dzP1uyisJ4ZEdBVqcerBRC3pnqnyVJcC": 9500,
+    "4C5fth5CTd8ScSDRKmFFB2iHeWQzBGbeF24PgXz2DWEM": 843871,
+    "4C9e6rouNj23UMi7ZrrQNdSQ3NwwzfsBPZDfpUPx1jvx": 5001,
+    "4CHMUCHMm1A1dzP1uyisJ4ZEdBVqcerBRC3pnqnyVJcC": 46500,
     "4CKNPzuhCYV4CEsNYEF18myTF5Q1HARbP9RjPSquB6b8": 52550,
     "4CMWEw1oTgnb2FcJtYXW8fEDkHZjAguP3vwcHgVMDBnZ": 41500,
     "4CNi19Xy7ChyhjybSZJ2w1BaFKnLX36JEzu9K5svjWjE": 2000,
@@ -218548,11 +223091,12 @@
     "4CmBk2VCjcXTVf1fzpFBhcoN2QpLf6sB35ckcrfHAhgM": 3000,
     "4Csu3fZtmJxnWBUiwzQYJqTXgUMV8pdt3mNPhnqpWVZo": 10320,
     "4CytH1ZrvbhMKqLimDpAAjeMf7BgfK4uCcBh6B28Ziit": 3500,
-    "4D3ugoaSEWZ4hUBrBdtmMQjA5HhmbB8AB1NcnXKAXHKW": 92500,
+    "4D3ugoaSEWZ4hUBrBdtmMQjA5HhmbB8AB1NcnXKAXHKW": 124000,
     "4DAKEsgFGPTBR8xa1sM1uc7icnJ7x9hfdUk1Uso2hsPM": 1000,
     "4DAaVW2MNLBzbXDbZARGcUFh1zjFnfcFGhhfXCS3jKX4": 1000,
     "4DBZR6N9P1tcm4WSDRfL3NMRx4J3iirw8FdBc58KPBkH": 1000,
     "4DJ1b8EN65j2yk9U1NJnQWDtkWarGipQijo4Ro5EAkrb": 13000,
+    "4DKfwH1uZnCsM9FGfAbWofA4X1RPymxRWW9DUGnPdUav": 3000,
     "4DKkHX6APGZHvTA9FjKZXfDuxZNE1exj1HQ6HPYKgwYg": 10000,
     "4DLCixzemn7NaHUSibJvdNbBzznD3e8bbnvp7U2oj5fo": 10000,
     "4DUgrFrMemmW59x8Gh9qzkhj4Y5YQxMabFYjVZmyfAbG": 100,
@@ -218570,6 +223114,7 @@
     "4EDcd3VR9sfBcxCABbfYn33HMCG1mdibKRF52iAYdbWA": 1151,
     "4ENsSduJnfXenjFEsVhooscwkcX2SJ5U33PoxNhY6xwc": 343000,
     "4ETowoQJB4AWJ7vNckiSBq7rWNX7ACRH1kfXA1p3ughr": 500,
+    "4EVEPUEHz9nfuCqGrqgTfZg6yjsypiHysE8enUKQkm4a": 6000,
     "4EXF5uvTPoR3CngdYXXqgVZsCFkX16Bkjnoszz89bo37": 500,
     "4EafGePuimFedYMnWktTdBmMUrhkn6CbYm4LRsWnr4PF": 14200,
     "4Ebf6zi6aFNZE54CXXbePWQiVQGwprY8aEZA8eZB997s": 1051,
@@ -218579,7 +223124,7 @@
     "4EfgtE4uxDsbUuLHgrwQ3wJqofJj62AzxhMceNzzjDqV": 300,
     "4EhceNyXznFLVdpYFr2ydvBhdv46zSZ5NnxETWMRzgW5": 3000,
     "4EhyPYHW22cjKgY7Hip57vasd9ngievpTunsDDeLfWWz": 6200,
-    "4Ei71dvBtKCdpDhrrAUy28JzLdW9azHXBod7vcqBvPzZ": 1600,
+    "4Ei71dvBtKCdpDhrrAUy28JzLdW9azHXBod7vcqBvPzZ": 9760,
     "4EjQJuTSGy4f74Zdjj6tREAe52dFq8bX74bMdv4pTbjv": 117000,
     "4Es5pBRqi76NycEKyfNKuPg5ieZqd9pmyupfPpuhRMfR": 100,
     "4EuupwGLCrhK1nL6WBMEWWJqvZkUojuTfsEytj7UbujS": 3000,
@@ -218590,7 +223135,8 @@
     "4EzZJtWNEj4JVz1YVXu677oA4sh6UZ74VSvmMxJbg8GR": 16300,
     "4F1QsGQU1ghKzeVheeLiitbTmm6Ghdne9jLsJb9i28xE": 17600,
     "4F9gRjDgFgGcspiEhpeiE8WQtHZ94PiT46h94WbsCH8P": 500,
-    "4FABKWu2HdwgVtkCq5DZm6vycnri3nJXxTU185n7BgvV": 47500,
+    "4FABKWu2HdwgVtkCq5DZm6vycnri3nJXxTU185n7BgvV": 37500,
+    "4FAWHPX1HoezENsQnVHhXSwPgPNuZjVf8bd3kYxC2RRQ": 12816,
     "4FDfZJRH9yJncpy5ciYUZDjMnEc52StYEbMK9rtF79Cg": 100,
     "4FLkJRrGFwqNxtmHTTF7Ng79MCCdHDtadhymAKj3zZdV": 25570,
     "4FNFMzShiuFnBRjt4RcADcRPP4iCLPSsvPXMkPtrdY2z": 5000,
@@ -218599,15 +223145,15 @@
     "4FQCJoXL4dCxV4oMRHvXtdmCTuoqqohN5romJrLGt5YW": 30000,
     "4FQjTKVAap2faajTEqPzMBDeEnZayKmhMwcp3xgoJBM4": 17664,
     "4FSQUNn3MmEaMqTBrr9sRMbzcemxYma7T7eSMQVv2N46": 24300,
-    "4FbVkyQrvhcAKE3o4SH93h1u1nXo4eUKQM53fLPDwpdZ": 4200,
+    "4FbVkyQrvhcAKE3o4SH93h1u1nXo4eUKQM53fLPDwpdZ": 2100,
     "4FpN2htL6mCSXQ8csrKsZAU9VsckSJtNBpZyoUE3LSLc": 118094,
     "4FpdQ3JQsocMYRMdtjyD4F3PjyzV3GzZ98DyHdX8pvai": 17800,
-    "4FqekZSrnrSdJrnFg2bBoqXPDrJKsL14EnLSQT1tjS44": 31224,
+    "4FqekZSrnrSdJrnFg2bBoqXPDrJKsL14EnLSQT1tjS44": 62224,
     "4FrdHiktz6TK23HToya9UxeAbWocAdcuw6ES4j2FsVHg": 2500,
     "4FsLQrkboSfn2K8J7AhDdzz1x7ExBJUU5SDZDFWXZ2eN": 2044,
     "4Fu7bhNuhJJkgqNYaUTkSx6EraQgMYQK35uzihjJU6Nj": 14700,
     "4FvUWywg9q2rC4Tjdjgu7s8Yg2EwT3yi2KGgFSfyVAvz": 45000,
-    "4FvUWywg9q2rC4Tjdjgu7s8Yg2EwT3yi2kGgFSfyVAvz": 385378,
+    "4FvUWywg9q2rC4Tjdjgu7s8Yg2EwT3yi2kGgFSfyVAvz": 484178,
     "4FymKcFB5w4m1s1wEjukzrgHjs8PBEFYpSwmRZVxEYVP": 6255,
     "4G3xzJSXkcAgtUp2i8mkPjrQXtfoCWNyCZh1EVVkgVuR": 5000,
     "4G4uPhNJi9Kb3QQgZViPsQ8PmyJh9RkPqi69Bg12YWkj": 1500,
@@ -218616,13 +223162,15 @@
     "4GEgD6gkkCTq8zP8XRQx55pwkpvm3neWreprFhtPSVaS": 10000,
     "4GJByjuCLoXcd5yJBGkzWtZfA8c4EbffCyNTPrhZt4q5": 7210,
     "4GLJfwhj9S24zr7NKHtMUA7oPFhjVEa2d8H9VFdYfNht": 1000,
-    "4GN9cSwhNUaAszQZtwCvvY882MdcMhctLWMy6RvYGWL1": 5000,
+    "4GN9cSwhNUaAszQZtwCvvY882MdcMhctLWMy6RvYGWL1": 30000,
     "4GRD3j2DaHcuvoYp6Jn1bEbmW56wLFax9gkBYQ3f4SX1": 10000,
     "4GgQRN62vx995a84svVe1bwPz2GjYzobrtZJoWhpixLq": 8000,
     "4GocTLXRRA9LU53e2rYPwBReLBVaEXgCZWNyvDmRg95p": 1007,
     "4Gov7PvVPsxBs8ZQEwLZXNcMn3yAZScsbKBzoVaZdyXU": 686200,
     "4GqGu5bcbBWxNdsFERXXaoyJyb67MTEBdmQ7nREQXk6r": 15000,
     "4GqHTQT9KvXj6rYp3Y9Ryb4VefuoEYmFgrQBGFqgf9Gt": 53754,
+    "4GwACargmfaRGNC75P1dW2KjheQxUXHfvrp1hwDS3naC": 10000,
+    "4GzaCmbHajgWqqeRCxuGU6WsZKbVz9Hf4FUQ4w82YYNZ": 100,
     "4Gzdq4to2eZnC92kJxjvPcJNR7BZ9pL7rZThHu1TU1xi": 100,
     "4H9famuApqtNrFUFsQfAikn2KenerwUvwRstF5qPEs8r": 2500,
     "4HDD6vEYTrtx3ZxfQ9aiRPdnXGwF4uUsJAaqCi2NWoD8": 8160,
@@ -218630,6 +223178,7 @@
     "4HHmXnvKRAbcGS1LZ2PHjrzt9Kkw5f8xC1WJwNKvBGQM": 20640,
     "4HXTkaHPFCqtv879wpZn4xYCRGEfVNaEvtrMsqVt3maf": 5000,
     "4HYvKMjoQGkt7XAYgH9oAa4jzfJusEHc4cWH4kaasSj4": 5300,
+    "4HZTHwyuBrm2ac5N84F24ZUgtvYAsauhQ3ZLPsRKdkgk": 3000,
     "4HbKzgEWSR4KCpGqQRQaNGvDdyi5rqz4q5dphuU8eEeR": 1000,
     "4HfWpECZiuKewceVHjwC3RPVtpCkhy5wmvka5mak3Vje": 17357,
     "4HfnZMZiFc27sUeMZkty9LCPG6f7TTd88FfwGX4ApJ4M": 1011,
@@ -218641,8 +223190,9 @@
     "4HwX1Co6ZzcrwYuiZi4nr4VBVd9ETHf8pNxUb9pKeUNf": 26000,
     "4J1XQ4Py9uvqMVaoVWd57FooEBkRJ7bpKsgcsD22Pbh8": 59000,
     "4J4rED1HuHsGzmDcJ9GynAcLM5CKoZntzP9fD5CKbhuX": 100,
-    "4J5y693PTtGVvJryPn1oBwdbcSQtwVwHcRn2kvBas4jj": 10500,
+    "4J5y693PTtGVvJryPn1oBwdbcSQtwVwHcRn2kvBas4jj": 14000,
     "4J7Tfb25YtYcn33grh5DYhEtn3iWiiEPVbR52harfcPc": 300,
+    "4JCTm2ZydRL7hDf147gryC845TNRAMYe6ZeiLtfgZmmz": 5000,
     "4JCoMHjy5BDATcEaSEMVJzj7qQeXYQCxUDhK9Nkk3oER": 2000,
     "4JFagQtqFth1ijxHw25uGqVwCUNtVJxLe8LfFQxV3fdT": 10000,
     "4JFg79NuP63Fti8d4EWDryUADZg7EFzsrYWYmPgGAthx": 74764,
@@ -218650,6 +223200,7 @@
     "4JRu8zqC9E62W6aBu22LzKAVGPB7n68seeifnXmitraT": 5000,
     "4JXEyFr9gRKRnMjQL8HTvFHhpYNYYLGr4LjEeQTE3k8L": 12084,
     "4JXGN9oArriTwfGw2Y9k3dMarGAxW7cNBfCn1vMyzZgp": 26000,
+    "4Jdbz72XNM9Zuna3NX5iSrmSjvb7YzVy2u5aByvdtXkZ": 1078,
     "4JegR2WsFChwtoLvCsFF92m1dcB1HHWJg6U5MGhDrqaS": 507,
     "4JfxDjALsYac8rdDnxSgLJCm44KamM9qiyYYUgELopP": 28000,
     "4JgoKkTKRcQKidjYfxeLMyKBpKgyx6MBTMPjwqBE4ti5": 4000,
@@ -218662,6 +223213,7 @@
     "4KPcuXyxFBpfdrbTzQL6T7qZqa94CPqhKNcQsA5fb79o": 1011,
     "4KSkwtFP297pprUxQ4tPNBCorh8bD44jdeQueAFMrabR": 1000,
     "4KUvBM93XaBcQKQVYuFydjdUZXsdtwjQu1fYWiAYTt9p": 1362,
+    "4KVBFwQBqaUxMoRK2dMSk1yNNvBPaixBCf1uSHJTv85e": 150500,
     "4KWFeN1b6uvjW8E59EvpTUQjgNcTrBz2QKjyxkitFiUC": 19424,
     "4KWY6edc65WPH4TYjGxpEcxoiEUddvR3WcpNciCySJsZ": 8468,
     "4KYC2GHQ8FTnYwS4aZguZeMqVCAvwXsQppx22X2MDRZJ": 2017,
@@ -218670,7 +223222,7 @@
     "4KjqD2osUsgg59LWVbap8pzRdc1BSC6ABwpPyF2jXifr": 8122,
     "4KkrHB5DuvqpqxdN7geVBnJdj2ckJp4jdH9cQhs1nSWX": 55000,
     "4KrbG1P8MTAeHJwRojz4tPqhsSaUp1UCAfwCeSS2wJqA": 4700,
-    "4KvfAgish69iA3msLggyXsLVAvVFvqyLfH6DRXFCdtPc": 100,
+    "4KvfAgish69iA3msLggyXsLVAvVFvqyLfH6DRXFCdtPc": 101,
     "4KwFq5D26Kc1fMEdzLUZiPyLxutS1KVtn5dm9U1DCbcJ": 10000,
     "4KwGEb9PEcyU9C8UKcVcYciksZnfuyJ5mhKGfXZnqBzS": 1000,
     "4L1EQCdB8wBkuiSnFH4n7AkHHFaFhb9LWXX6haZ1FBho": 25000,
@@ -218681,10 +223233,11 @@
     "4LBAuzUJABkhzXX3TmJ6pZXdAxkPmxWutYe3Hk5RSYRm": 500,
     "4LD4ETwP3R11h7W6v6sQWt5c8cGZSGjzmaCZALz8cdGk": 1042,
     "4LUshj5ZcRLVb7TUSJxkn3ZAdpyJSfpNaTwTTMrVafKK": 7357,
-    "4LXr8ou61eEEvVzb2JoJhJhb9ivWAT8ysz8qNQ82WkT2": 1000,
+    "4LXr8ou61eEEvVzb2JoJhJhb9ivWAT8ysz8qNQ82WkT2": 3500,
     "4LbDuSexAbKMseZWSf3Z3aixDFtupEmrSRhXtXHeTM18": 2000,
     "4LewBUaUtjpiqFqj45Fcu8BuMDNsLWa6jph44hb9ZfX3": 14250,
     "4Lfj1FpeneQE6rYfCpD7yX26Z2qMQtEsRz56gb5s4CdH": 36700,
+    "4LgSySNopzDuPvb3XHPx6p3uUSAQjbQvbTzjPz1kTM51": 60000,
     "4LhqMrzXxsDBRHQ7WHJh7NPvtnueQGvuek6re8mfeGP6": 10000,
     "4Libcm33r6kvP5jeFNgmtgXqtG8pc3UJHmEcXy5BBoAG": 3000,
     "4LkSCAwfKNwWPuxVencxtdDXZiMMUVtWREfocaZjWNWz": 706412,
@@ -218693,19 +223246,19 @@
     "4Lr4YsLKFV9dQnaomrJ46VreiCmwtvK1Z4fComaKWRWA": 2000,
     "4Lr4YsLKFV9dQnaomrJ46VreiCmwtvK1Z4fComakWRWA": 3620,
     "4LugZ5E15qvAufhkkFMUCBZYecH4ABa7tgYTYK7TrMN4": 40000,
-    "4Lv6mQL55anR2GP5tG4bvRVPyjnutke6K1eLSwRka7EL": 51100,
+    "4Lv6mQL55anR2GP5tG4bvRVPyjnutke6K1eLSwRka7EL": 43400,
     "4Lw73thxcqKTRTXsuTSmxLTLj4fd9Wjk974pgemUGz8N": 18177,
     "4Lwa88Jz7aaToJ2ecrJAzjxPKkv5e97LFiZ8otDXNoaZ": 14400,
     "4M2HxsRwYrpPjP1oD7MHNzS8aioUvnM4gbwkeCfmNgdR": 5000,
     "4M9bimepSvTEDGHUCtBVeBsUyCgCJ3WhndSn7yzDCCNR": 400,
-    "4MAXnzgADkxXZWDgckkZ3Xnz6otwEKmYRWwnZtvG6Vry": 50000,
+    "4MAXnzgADkxXZWDgckkZ3Xnz6otwEKmYRWwnZtvG6Vry": 60156,
     "4MBkiCk9SEz7vZQEo7LAnnhRt39mzUKfRtBWcjnJehLP": 1000,
     "4MEDxMD7HsJfk88tyfMoPYzhDTqXKfsP6c8TJoRiBWzF": 212300,
     "4MSANypGTWW3DXLj6WUhJ59RymVfS7AVxUp77DrGag8h": 5000,
     "4MSSvGtf2Xx9EVMkzHqTvqE59PrBUNakbnmpBxYQkZsP": 160000,
     "4MUpja88z8BkEkgBQepFjxCA4CBu6jVsFx6RXCdSKBTe": 13276,
     "4MVoA5Rsh4sK9X5QiEQ6yf1sKPXM2AJ9eAuyVPkhKYUg": 25000,
-    "4MbAqtYyhFUCAuXdiq2hQdLDNKGavLD3a6kZgBgyKANV": 6904,
+    "4MbAqtYyhFUCAuXdiq2hQdLDNKGavLD3a6kZgBgyKANV": 6914,
     "4Meqmn28S73Ltx2TZBRxst4s4h4RdK3zs3KKDKTizXsq": 10100,
     "4MfZ1cQbrKJiZEgaiewSrKxU7FKwacVsgpK8xMif1V9U": 50000,
     "4MkcX4pbNVYpyaquCFFq7u61eKZ6XFuedR9VBwSPosYZ": 30794,
@@ -218718,7 +223271,7 @@
     "4N7SAgRx7EufPwreZoQ5ovfkM79vPRzgb9beg12v8cVf": 10040,
     "4NABH9yidr1XjB5DKuGStDxcuXqWmgZc2G6ZrdNFWJbg": 9700,
     "4NCEWApboRoPB65suDPvra5eKdt25avKoPzZbf4b3wkF": 121125,
-    "4NCZqc3jos5ktrncwYkcsusPZjjNZdH8SsV4NRUZgjTL": 33000,
+    "4NCZqc3jos5ktrncwYkcsusPZjjNZdH8SsV4NRUZgjTL": 36000,
     "4NJod92swtkGdjHZAuGFk2WgSDbtim3mCB7Sc7TJrtFJ": 119577,
     "4NM1aT7xDLbLaDGBKzswSJFY8iNsvrHtGmRPUdmTYu63": 3600,
     "4NMdPwnrNm8iJDujHEWrj4XHDkxdD2hRKxgNEcYzpxz4": 1442,
@@ -218757,6 +223310,7 @@
     "4QBRSSHZ4RWeMKG5sc5a3XCP44L3uyDxxcmmBJgqxrS1": 100030,
     "4QBRSSHZ4RWeMKG5sc5a3XCP44LuyDxxcmmBJgqxrS1": 10000,
     "4QC9YW39q5d8KyffAbpKCQGenNqxNS8mLX7LHCfg6G82": 5000,
+    "4QDLaxwhCb2TVqhm2tF9DuAqj6b983JweHy8YYEojqYq": 100,
     "4QDafuXCpEeNXptK7jUNhvzCebGrWbH7zPTdHyezJ1ds": 100,
     "4QDhYGo91QE296JT5BaKnHWcHkZL2aKw4Dvg5gCx31iT": 5000,
     "4QGb9HanqZdCw4c3zhVcpNCgMCHm9GfKf19LZB4JSB2c": 4000,
@@ -218776,7 +223330,7 @@
     "4R2t7rxkZbZWuo7ERZUh1SCWrSLgURwh1gELq7FDysi6": 35000,
     "4R8gRWTgx2kyC37mRmAUZUU2Le4Kr2QzrstcESYk2jyP": 171100,
     "4R9rcRnoT6k6p7K915VR2WQztNVf5aRS5csYzSjiL9X7": 402220,
-    "4RAC5imz7bsGVzS53RiGx9EoCZxQRUGD1Dvv58Z1caNX": 500,
+    "4RAC5imz7bsGVzS53RiGx9EoCZxQRUGD1Dvv58Z1caNX": 24500,
     "4RAhqeoAmzJib287Fsb6Y9PJRcA8emdKLqdYQ4BYwDJR": 5000,
     "4RDvjTYWmdxQ2tNi9ymJRPCiPaqnTRnM48bzv8Dn4beT": 2720,
     "4RJ21pWY76HgikSVKHbkeJNrZnPxbTftCxaaum43Zjyx": 1300,
@@ -218790,26 +223344,26 @@
     "4Rj44YjdiFERyZZqTSWwC5haiFjTJpHVsNABVxiYpot7": 300,
     "4RkXgnW2Fb6Gw93HAt3wtSAJoVCHhTFmqraGCBSMw5oA": 3150,
     "4RqXvkGN1hQWJGZPLSPDeL9sEuPrqUW9KQJTyG7u181E": 1900,
-    "4Rr2jPCD4z2tMRyXxU8Ph5Ss8v3TSXLbYaukxmsKBNTf": 115300,
+    "4Rr2jPCD4z2tMRyXxU8Ph5Ss8v3TSXLbYaukxmsKBNTf": 171400,
     "4Rs1tMdfZbLkkT6bKhN3ThAKpn6TLSbYjMC1XqWJ5d6j": 100,
     "4S5fYxqDkUUvBZGmoezzjArMwVhnEQzm84Wdh8DwKmod": 5000,
     "4S7XEuRVTJ2Dxwnf1XB2YhV6tzmic7Lu8T1dC8s1zKos": 12000,
     "4SDgFKDmWPR5QjtZGH9c4fDw7mGFJK582g5bb3v395va": 5000,
     "4SF6Wk48MNyi2VCMvdYwYA3mMhsSVCdj491yQTYHaemx": 16501,
     "4SFHYjX9qu4EpQaewK26f8pQU86VEYyrzAB5aEy8npR3": 22500,
-    "4SFXw9jSdYo8H9LzsesC3dCcnrcsQBFuYKkZBedP4RdS": 107000,
     "4SFYbMbwAjBDyAPpUggay8DcyXYHGE1gtrBFF1BRaAkm": 8000,
     "4SG6hMHxwnRkTwQubTUE4dsTP4Sz8yrAL5eVqZm3kxxb": 25100,
     "4SLWEry1H96AGcqBtsxXuA5DZdNdaG4VMGkTBxe1u4JM": 1000,
     "4SNZUkhcX8B9B9MEPYPNYePiTWbs3qxR5sVdMrdVydfe": 200,
     "4SQSSkrqkhQiHNgyjQReGJ9hKs5hhY7mDQHKKNT6xvWh": 1900,
     "4SWJjJxGsvVH7P5NepyXqmq6yChaZmJ26QCs1Ufx53AQ": 106460,
+    "4Sa1vvfJUHpDPHJ7YojBUKLrLyhXMT5LxwL1r2ztfkqk": 23135,
     "4Sc6ptREUZT5Vh95AePyqVfCnEPVZ7XP1sP8eDMQcK4X": 5255,
     "4SdTd5CDiJAn79ex5mXEqLn7vZ87G9sh241tzggYmicp": 11000,
+    "4SfaXcWzP5E6sbDBSL5DbPVwXyBCj83T4aJ3pHnfCemN": 12000,
     "4SpsbjtgdVsWLLoCaewvBC2cW8edNcLKAs3ephbfkXk6": 50000,
     "4SuV9P9pnKMbP7hD5H5wRHfgvoepByLPL5sW91tvZHSj": 900,
-    "4Szskb1Sboai6TKzUZckQsVCon7wzkdTLMtfh2wmX1F5": 95000,
-    "4T1PSee4FHQCf86zmLf2KaQEDgyy2VJM828fkv2QTu8V": 140220,
+    "4T1PSee4FHQCf86zmLf2KaQEDgyy2VJM828fkv2QTu8V": 145220,
     "4T33q5tmEBzUuo7Ciw4nnE6af72JcSvQeapwkZXbRmaz": 15630,
     "4TAhVes2AgNhcxsYhHW8xiS3jYcXMtN3fsoJPzLJFm3t": 5000,
     "4TF1xK67bNxubMz4GHhVpXLgi3wYhJPAMKM6JujfsQTD": 12000,
@@ -218818,10 +223372,10 @@
     "4Tbta54t1MoZfarsTV7n3ZuVDecKafoCHQ6Bz8JZo62C": 1200,
     "4TcET6MGxqMuftfWZmrLXpNhKhLMZL9Kby2FNAEcp7v8": 7000,
     "4TfSZP8Zm5SZE22AqF5jw6CnYqPd2kQoo6peKzigqk8R": 36500,
-    "4TfjrU9cMEzxcRqrrRwxKFiigbqtAGqRZxrz7ttbZums": 1816,
-    "4Tgqa61qGad2cXP3ZDvgcSPFwoHB4A7v8YjJfbgCj4vh": 2000,
+    "4TfjrU9cMEzxcRqrrRwxKFiigbqtAGqRZxrz7ttbZums": 17176,
+    "4Tgqa61qGad2cXP3ZDvgcSPFwoHB4A7v8YjJfbgCj4vh": 5500,
     "4TputbPLGq6AXopXHYakP7JTWFp6Y5hq5Rc8VFzxnMNR": 10100,
-    "4TvCkkcfiNVWMwBxxj1cLo5cXjBBLkrWf62XLNUZaUwt": 1864,
+    "4Tqdn7RMC2hPNyNbzLk1mHuyHe1p2ABLU9wVP1uQ1Mfb": 5500,
     "4Txd9YxLMbem9enUWCwUUjZc9Bti9ZU6JxLGigcthsao": 1000,
     "4UBdg1fx9AprgHpYR1Q8oYFWKuDnf8PEeGr7zeqHb9Yu": 10000,
     "4UD4wa7qvZARJmofsMnX7TmwzjAotUK62SdF9FN1VGVH": 15200,
@@ -218835,13 +223389,14 @@
     "4V1vnZYnZjpy9NM44n6GNcTAknd4jyVVLwEPfoZMiFGn": 1000,
     "4VEZKLERzSXUaQesjTKE6kFxtVVqbG5AXiNX3i9ckVs9": 2500,
     "4VEZKLERzSXUaQesjTQE6kFxtVVqbG5AXiNX3i9ckVs9": 25154,
+    "4VHs5m8FQ56CxbnkL7RGMdWzbwwjMQd3SMyhmc23XGfM": 500,
     "4VQ61ZcFpnBPuMKiYEK1JzTYHft1B6ypoysGsNxZ3e4T": 1011,
-    "4VRs8irPAcMQsUWxdCEge2wzvdH3NxLVSW9gJj8TEjXA": 75356,
+    "4VRs8irPAcMQsUWxdCEge2wzvdH3NxLVSW9gJj8TEjXA": 93956,
     "4VS7DgQioDF8zW13V5vjCrfZAbi8Ssio4v6r687zbQ4r": 200,
     "4VZh6wYpa8gYqXLfcYpnFytJXjjjAWUMxtDQvZ74u1hn": 5000,
     "4VaHiME8JHvjgbi5YujPGG449WUh55NH9bdVre9m1MJf": 5500,
-    "4VbvAyRs75xyj9pbRskRmFx3kUAeFims9CyEi4JjaX8V": 273706,
-    "4VcW9wBusrD26LL6Pf3YRVjM1V468GKHT5CfyZsfeRLE": 600,
+    "4VbvAyRs75xyj9pbRskRmFx3kUAeFims9CyEi4JjaX8V": 371922,
+    "4VcW9wBusrD26LL6Pf3YRVjM1V468GKHT5CfyZsfeRLE": 15600,
     "4VeHazKHxjxyBkeFkzqTLHFhLySQEibDiLdn3q97Lpg6": 9000,
     "4Vf7KxLVute6GSk2zWC1cN3VzbMhhiFDtUqAAnkWH9Gs": 2000,
     "4VgXKqHXVuJ7jX47N5ZmeCY86qEuTpgcdPpzo2g6XqoP": 31391,
@@ -218849,8 +223404,8 @@
     "4VmxMPgmHGFNz4J3QpTDfiES5kVc1JKDVWKvLsAsxyBh": 26100,
     "4VoxxuwtiGW63xHrW2aKmBkwYyWGm8sT8uBK4GPNDGxJ": 200,
     "4VrGQLouApKX7ijE3rkiYbcQCeVMwps9cFhQzFFoCnRA": 125000,
-    "4VuZwzz75pdKQTBgmGszAUf2MbK3YK1msZPQ3FvLuJrB": 76548,
-    "4Vw1ukpMhcLz1Jg6k787LtpwFFMTsWdqyh9Kq537Zncu": 36988,
+    "4VuZwzz75pdKQTBgmGszAUf2MbK3YK1msZPQ3FvLuJrB": 58548,
+    "4Vw1ukpMhcLz1Jg6k787LtpwFFMTsWdqyh9Kq537Zncu": 31088,
     "4VzwsrdxRcQqzF7dXJvrXTKUskpCgfHsTu9KMUVS2CE6": 3500,
     "4W2Vjq1mD7YHfXJUYFBqA5oYAVUxmkqCyzoBkRgLJHQ3": 260716,
     "4W3M8VqA1rp8RbcDUi2K9n2v3EVSqbdu4sWvPCLMQfha": 35840,
@@ -218862,6 +223417,7 @@
     "4WEDkvt4oANN4myRdhryWiMaN4VqCiKuHf29h88NEJbj": 6000,
     "4WEL94WDUsaj9M9d8TJT8qHv8zeNSLegKcQusXJ1LKTa": 1000,
     "4WP3NpniMSnZq51LR84Zkqym8NB9bB75fiKVZrTtmpwT": 40000,
+    "4WXKBa7v6kt2vN8L376Jzr4HqLauz8nkiuqy34fcC76w": 100,
     "4WXi19YboTnSVniBDd8EpfL2rtmKVvXUYCcinKZEp971": 16000,
     "4Wf8ijxpmfTAbSSU4pdhJoRT5fhuXWBQxChFrV6jML5f": 1000,
     "4Wg2ZRak86ZbdRArBD8THiepHU2B8FegJRrDFpNJ3rL7": 10070,
@@ -218872,10 +223428,11 @@
     "4Wt9WzgNQ92SbUNEfvd2AV9opg3WXNVPQ433p1eyu621": 4400,
     "4WtYKx6DcZGmp6jvxphowMQgJY1dLaKx5umav6j9wajw": 46882,
     "4WuNxUd6gHt68ooUNcdEneDUH8dzmp7EzxibFZHDsHkp": 20320,
+    "4Wx1BrkokCqnM858mepuHJcJohvZtZ2s5K6gEyNdCxWa": 6000,
     "4WyAJQudRvtbXJ51ekNUS78HCypK8cEJAu7jKQCHFCNJ": 1500,
     "4WyxoKZeui3UJ3pEorrcUbzoF3QCoH6rqcpTqWgXx2j1": 25000,
     "4X4TMsbCTYqoaHsQk3VknW85Lq61mkjNpN9HbJXY6HQ9": 8000,
-    "4X9QLzuJojUpv61DwqxoBrE5ga82gUzH4snf3jU1huP6": 138802,
+    "4X9QLzuJojUpv61DwqxoBrE5ga82gUzH4snf3jU1huP6": 116402,
     "4XBnGcJGYs7RbuTsBb3UXGAWBfHVndHikCAD4CRfujy7": 40000,
     "4XF5SBd1uzygscX6127txQqLk8oHBPeis7AbDuWoSm2W": 900,
     "4XMDGvYRmcYNbR4Y1yPENh6fuvSvaN4ggyV3qVTkFSUA": 200,
@@ -218892,18 +223449,19 @@
     "4Xme4un4QQZvtmf3433Xgg91mgtesA6bXa3ewi9PM2Dw": 80100,
     "4XpevRUtA8er5CHJup9QBPwcVSxMd5PATaEyZq55oL3Y": 12200,
     "4Xv3navPsSy9gA9LKcQXB44dHiYpu52S4QgpqDm2RMCj": 4500,
-    "4Y1MUUeX7dwwRqvyqc4Kubgg9HdaMPWjrXiEYLWC3Njy": 13340,
+    "4XvCkXqh3emUoa8HEvvu7NttqRZttyzkQtkyzjHZZArZ": 15000,
+    "4Y1MUUeX7dwwRqvyqc4Kubgg9HdaMPWjrXiEYLWC3Njy": 21340,
     "4Y4DDQSsyTYuG5YHZKXVGMC9pBzbTnmbBv1ArURjtZLj": 876394,
     "4YAo9RgNmn3VoaoPXCiUWxVmgzK4k5iKYeS71efUrAV9": 7000,
     "4YGiiZPFNjXmoEYHDAtyAFHDk3vG2bwRf48JCkH8Kr2z": 5000,
     "4YGkFGk23VRqfkS6hW8NRYijmA7y5nzFxhXFzjKDBat9": 27133,
-    "4YJAdXY9J87H9JSnakyy2Ww6aNrCgvjpJXDacFD1KSKD": 8001,
+    "4YJAdXY9J87H9JSnakyy2Ww6aNrCgvjpJXDacFD1KSKD": 1001,
     "4YTu9qVQjDuL7iATVmkm77upr5Rss3LTGE467hZnpCNh": 500,
     "4YUYaXiG8aSwZS5h58o6L9Uim165qnh6gakkbTSNTSpK": 1042,
-    "4YWMfQnRF9Xb4aN3U49fCsQ7ske7zSp9yMS6eapdySdy": 8204,
+    "4YWMfQnRF9Xb4aN3U49fCsQ7ske7zSp9yMS6eapdySdy": 9282,
     "4YfkXUeHH8refY5R1R8UWpTktrTZs1fCu3uF75VgudsR": 500,
     "4YjGKxndrp3vo6nZBexZJXGLEnamDBprA586H8F6w2oZ": 5000,
-    "4YsQZ4gNHrZYGeKHaJRPWiScyxhj5AYsRg7oPxqgXCw7": 10700,
+    "4YsQZ4gNHrZYGeKHaJRPWiScyxhj5AYsRg7oPxqgXCw7": 15200,
     "4YsfmejrpssMwvqZ317d2xpVaL5mTeCeA1wx7ETiXF8N": 6000,
     "4Yuq6uwWunBQh3Zv1fWTu3EMVRN4KyhR76hjpyBYzyRV": 100,
     "4Yv2wRUqaVD5FamAMpmhGPFFcJiNtjT2AZqGKHYDbiX2": 51000,
@@ -218912,7 +223470,7 @@
     "4Z4SdGpDpyFr4zEZ3DZNtBm2QzwBKp8nX5zUJepYuxFo": 10000,
     "4Z52fmKxy5DxyATkwa53WPQGUFogBFrVdA4qErzHmA1i": 350,
     "4Z8t3DCkuwdK1LvAesigT8yDTXdywuFWYBuwf8udg79r": 5000,
-    "4ZF5LaqmcZZefPZowqZ5R5RbSV8Bqku5eQbkJ2AWJtqA": 205500,
+    "4ZF5LaqmcZZefPZowqZ5R5RbSV8Bqku5eQbkJ2AWJtqA": 255500,
     "4ZNyEfnPXHenc6HqQLHkHgZFz6A5s6vCY2fqRsyN362M": 2000,
     "4ZQcyF6zQJZHcfkQhxyMVD7Fuc5Pc5FfaiDUXAZzjmEa": 8000,
     "4ZQcyF6zQJZHcfkQhxyMVD7Fuc5Pc5FfaiDUXZAzjmEa": 170932,
@@ -218923,26 +223481,27 @@
     "4ZkbMPYioLwXciobHd9YKKTxYBtbicwgYnpjRxcYoSjq": 16800,
     "4ZmhcyaYtpAJdcKxEnsy3zMkRD8aKEFnPCPoyxSLcBJQ": 2000,
     "4ZpXNmFdCh3gXyvvpdcacsLcRys5MFzqNoGB9oJkrGNa": 500,
-    "4Zs94DhkfPWT8ZvUicr6HWBEqDGQF8nBMWx2T2kZLLpv": 36900,
+    "4Zs94DhkfPWT8ZvUicr6HWBEqDGQF8nBMWx2T2kZLLpv": 75000,
+    "4Zsy4YtFmusN7P6DZRT6LPYr3Feq2nRpJ4xEfL5kQ1QJ": 11000,
     "4ZtEyGFxJJs6DrEWArf1wvuXiCirZ7uHeVUr1YWkpf34": 93580,
-    "4ZvrA5ukggeczdNejxKqBqRdWzwfN8RZeZRQuRJvjaEY": 628402,
+    "4ZvrA5ukggeczdNejxKqBqRdWzwfN8RZeZRQuRJvjaEY": 689940,
     "4Zx1k3P3fHnWeSNvpZrJMhC5iTwEsdeegWkzEby8knV6": 18373,
-    "4ZyuWqrrvGnQc8Cb9L9yHFXSXt2KaGhg2jC3EPvyVCTo": 37950,
+    "4ZyuWqrrvGnQc8Cb9L9yHFXSXt2KaGhg2jC3EPvyVCTo": 7950,
     "4a42NXcUSuAXgQe3prv72Fi6LQffzzbRiRLDfs9Au8qZ": 13000,
     "4a4xNtC9LTYwKYiQHD8KSCvKpxkfHfFyTcaTwc9SgzQB": 4050,
     "4a8HfG2oGKtoXdeq2kjkZNZ4PS7dViqis24onVJ8oFz3": 4900,
     "4a9FKDC25CfdnFijc5xFRXEY1Cs5uXA2B81isVvpHuY1": 33616,
     "4aAERL6j7unNXQgKwxkuxuJv2xyVjHPtkbd9YLPFEfrp": 24500,
-    "4aHqoDCGECys6q3gmvJaCaLMhEYsCw4P3Mm5mdMXXuGv": 7000,
     "4aJBJ66nufdEZb1nqunirU3WEHR8r8AsHq2A2nqgkELd": 5000,
     "4aJgVBb6aeEoBpk7JtVctKhm82nspJGXqzz6F2yyptGT": 10000,
-    "4aQf6owXZDBNDJNLWyPCjfKnctDwe5WfXVeS8rSbL4Lm": 28300,
+    "4aNzDauGJQuWuAYXeZZ1nMZEW4rtvyfMy3GbubCYdRQN": 81380,
+    "4aQf6owXZDBNDJNLWyPCjfKnctDwe5WfXVeS8rSbL4Lm": 38300,
     "4aZk6rCtezJg5Mwn4tjf6Lee3YhXUNpkDfxVZkjpkgin": 7600,
     "4aapmo1FDWWdV8BQsfu5p5P1geA3H2ijv7Fx1MRMaoVd": 10000,
     "4ahjFx1pVcgbgB9WujLomD64UyiKzKCGmikT8yTEZFLN": 15000,
+    "4amPYueFRBNsrZViyv1A9xuRwYjKY8yrNE7YKLEKDFZD": 10000,
     "4ao73TEjZJcJUBkPSgyrm7BN2L9ngWUov2xUV5kBEN8t": 9800,
     "4aovzCi3q9aKoFdQ3KEfjcPPYJ51346GeAizTCfUPtqB": 35800,
-    "4aqDPGdv2Z1g7WRrb1uxKF8m6knfEuqhYDfjrJifkdUo": 885950,
     "4aqELKdQwPHpXXQFGrkUzLGh2oVqU9KY6R3f3mUcZ8dZ": 5900,
     "4arz3GLNWePYsXW2HemqmumAJ7srn2n2gZr9h4Sd77JC": 1000,
     "4asHfr9QxbTQmraeLaB9VZyZWP9WixCeNiweg2H4ApJr": 4800,
@@ -218966,11 +223525,12 @@
     "4bdPz9Vf9NEtmYqJBWxkx8KEmYJMSUBVQx9yfrrNrL5Y": 1000,
     "4bePWyZX1FSHZjvtbH3t1rZtFQ1kj5vqss83qdRBwrw9": 227309,
     "4biaDs4Nj8JS7ktgj6Nw9BLfeewfTsnqFkLzKM7fhBgf": 5000,
+    "4bjgDYvRwgHUf7TTzQiQokGj37P4fLvxmUe5NM9tiXku": 10000,
     "4bkDBiUpSCPEY8ULo2vWM2V4NdAYFMF7AMhb3PE5EK1i": 39580,
     "4bpNQ8cfWftwqTttjdf9T5Vb9K54k7W24H87DDbbCau6": 923,
     "4brKPYowcKWVHhev5uiyzLZPVfMRyyTN38iNcDomqZbo": 2022,
     "4byLhXH8VKRGkgdbJyCKCsarTEddCrjAQFw2L8LXpxsS": 71259,
-    "4c2wbPQpoWywFPd1uYdQNdmXuc49h5bpmsTwN3tDdbse": 10680,
+    "4c2wbPQpoWywFPd1uYdQNdmXuc49h5bpmsTwN3tDdbse": 6408,
     "4c6p6kHGXoXAjYvsu879AqVh8SoMmZ8DTQfz2ueQqY5": 5000,
     "4c9yggesocBrN7EwCs7DGrpM74G68Z7ZgtpBm3RF8XrU": 100,
     "4cAkMCd1N7gjz2JTA3ac5bxSCkgxUgWjpEmKkySCGRzQ": 6927337,
@@ -218980,6 +223540,7 @@
     "4cN8bf6tn7waDVTcLrcq8pJz1NYSC2cbdYiduhujcLez": 2000,
     "4cQHFgSwVupt7WCB67jp8arcHZhPBrpzatiTE2F7HBVs": 4896,
     "4cQxyYm7gqEvBXxc7YMfVGqVWdXgPiEtMEEnxCRrdBwn": 5000,
+    "4cVXWDaPWvKMAYyuBLN5hb3JiKjhazbeUugD9WkrT8TS": 5000,
     "4cadyv689wf7MF6X6VSGtFhb2XinsoGfQACuW8hfoCuE": 11000,
     "4capyij6mPFAL4fQtZDswrcRccgAGfPjTvnHCCejvaaG": 3000,
     "4cbLsaP9XDdW7QehfXpNP3pFYy27ePUbgxfy9atGCQQi": 1011,
@@ -218996,7 +223557,7 @@
     "4dPVtoa3Rnqztsf6S6jHMAUsBho6qH5qSqCeguUAUBcz": 11000,
     "4dUhXDtnKG8Z31ophNoDTExpXGCMxwshcievgKfkFbJm": 200,
     "4dg3VfaTVjyKhXTUqZ2srkt35KazH2hJneJgo85pfXK3": 25000,
-    "4djNP8Ps4xsapcVF3wiZ9ukUfdhVrcW1wi5jd4y67jtB": 73600,
+    "4djNP8Ps4xsapcVF3wiZ9ukUfdhVrcW1wi5jd4y67jtB": 168700,
     "4dmVNYLVM9LZ1vTssHs46meBuvbE6XuZviMWz9Y3tgAe": 200,
     "4dobhrQMa5xAxBoMBh7XE54yqw2psgJZgihsepNCHb6h": 19000,
     "4dww1fvbosfS7JfApZnUFZaFqRH5LV67vDRE9Nqww5HJ": 7100,
@@ -219005,7 +223566,7 @@
     "4e6hhypwZnnzxbr3JM8HHEi5A63zhBHitVpvUsKNj7op": 1000,
     "4e8vgfKpXV1B3zvBVoCdfYBw6NVuXcQZXqAfyGmorra8": 7161,
     "4e9hDeWYDL62hmz7WibdGR4dmTQJaMZUrkucKw7919YL": 51672,
-    "4e9s44PBTq9GpjEGhwhiRa64Xi4uJnbdZp2kiuzbCgpE": 21451,
+    "4eAAMNc9ftA9G3XDCa2Bud8Mwb83bE9nTFZsD1bf2Gbh": 1100,
     "4eB7yYed1mST4XffqHWbN3W7NenBD5wSAvTxhrQGcXyP": 200,
     "4eJtpsCpQyVXGNS1VoVfZuVnHN3cU8XPoMJMDyLG5jDk": 200,
     "4eLidRtkdpuJvJ45RyaViT9XtWAQP4Gpfx3u1bv8eEH2": 1314,
@@ -219016,23 +223577,23 @@
     "4efY2rnMc3srRdag85uEQrC7wn4sxmLvMsFMASDwxwLE": 1099,
     "4ejdUT2TfxziMw5Pm6D7gvja9zV7F9atx3nCJr5P4sTj": 5000,
     "4eoNWkeo5t6CoevmyVNJssXkwWGjBqhgHaxYeZPFzwA1": 1347200,
-    "4eoa9UtULsxaHexT3EmMUXz5CLCAnL7pmi8V9j8prqkZ": 67500,
+    "4eoa9UtULsxaHexT3EmMUXz5CLCAnL7pmi8V9j8prqkZ": 79000,
     "4erraAZQCEEirTq6CodQvRwBKk7joVmR1hFhkDW8RzjY": 10000,
     "4euLp1ZQygHZrh8yBKRLuZ7BsgEEgvTRqFcaaqpPvC6L": 20000,
     "4f1RK9FJrtJAJCRjw6w3JjZMrf5fVUaTgjYkAZpZPBzb": 49900,
     "4f2EEVuVgKf7Qxs9E3gMjzwKxnB3SxsaaPRRKBCkEgjh": 13500,
     "4f38JrFGnxgETFnRezoRxF91zTfU9dvt4jhhtig8tgrf": 15000,
     "4f69hGfY1ebghiAwEAxtjmF8jFceagbK4w2QPPZ6jVzk": 100,
-    "4f7MnsY7jmiDHR55nge8NehE2xdm4hU4KuGfpU2qGt4k": 10518,
+    "4f7MnsY7jmiDHR55nge8NehE2xdm4hU4KuGfpU2qGt4k": 6748,
     "4f9HsBiEzSsUTUD2VUGQ2ikhxX7uAENto3H8dSCfZe1g": 100,
     "4fFCkX5coRHxs31BcVyQWevp8RpATDBKYSokjFoAoHkV": 314,
     "4fGB8WBDiXcATTn9votoo2pGf2h8N6pS1dJgWYZ7LWVQ": 500,
     "4fLcxybXd85v8vtBfjjNXCPxbi2e1GgjQKngQEhQhBKn": 5100,
     "4fLzZS1uMPaQwDkyL9eieCb6soDDRMuq5hEGiXy5HuB": 1000,
     "4fLzZS1uMPaQwDkyL9eieCb6soDDRMuq5hEGiXy5HuBJ": 712,
-    "4fTbwjtnFPLENmkQ2mXGFau2BPrCwMa6TiArwhhTompL": 5000,
+    "4fTbwjtnFPLENmkQ2mXGFau2BPrCwMa6TiArwhhTompL": 5500,
     "4fdC3YVMBpVUFGz3fJPuLaEAKPEhjHfGehij813167Vr": 1114,
-    "4fmamw2aNuiZYo6gUKe1JAiRw31v5WfixCVgc5vrAA5e": 20000,
+    "4fmamw2aNuiZYo6gUKe1JAiRw31v5WfixCVgc5vrAA5e": 25000,
     "4fo4mh5eaLXYp5ESL7jCYe9R77btT7xv39S41a1mh3LG": 4000,
     "4fowE6pf8r5HzXQHpdJtFABre2nppbx7JWPEZEnNH7RV": 20200,
     "4frXDeWBUornq5ZkkQZ888k9FBToiemzD5dc3WG8bf1a": 5000,
@@ -219042,6 +223603,7 @@
     "4g3kLEQxyNhV8zDivkp6UHzc7hp2HftMZHiH1ikU8eVN": 2500,
     "4g6S3drKR94ZUhi68fotieoVwNbwZC4khHqavZ8h2kjf": 5000,
     "4g6ae8dCy5sDAY66Tg9zJAH2e2DunygsmZT3wjiQCNYw": 2000,
+    "4gJ12RBdooCpJ8Uo77tWBoSCTKS7FUSfCHc7bKphEFgC": 14000,
     "4gNPBftDh7PSYcsMNetsW6og9jcHDWv71ehudWGJhHQa": 200,
     "4gPuashPkTk6zwrNsmNiC8xVWXSHZXtoETkhD6zFQA72": 2701,
     "4gTTG7oedNrmB8hqxgbc9KAwhMnbkno5jzigar1wTE37": 111932,
@@ -219057,10 +223619,12 @@
     "4ghSFZoNi6d8eUs5s2GdcDPZJPJuuLGMKAnWxRPLMGLp": 9900,
     "4giszfGT4wsRqp7DsxhhszT8zdjFLXLgzCTS7d9epc6v": 63000,
     "4gj77fLBim5KVBUyzETnHG1D3yyMqgNX6AgnnKVrnRuy": 2000,
-    "4gkxziKB48NqvsLcR2zR6QFTqS9sX61kKfd859b1gzgB": 3300,
+    "4gkxziKB48NqvsLcR2zR6QFTqS9sX61kKfd859b1gzgB": 3301,
     "4gna7qUoyG6a4EeTsXQsbiASbtXt3bQWzVaNBAAvEfdU": 3300,
+    "4grXwMU1TinWx7BW98o3DgGrpaUwpaNwvurMyHjUTNkc": 87000,
+    "4gu5b3ZQNyPe9jazouH5JDYcgkiayLG5qBEAa6UARZwq": 33400,
     "4gusZihfJEdVsPh2CAGwVM5MetgJqaujw2VHaoBMprfr": 286000,
-    "4gwNJeQ9uEbEX7WGpCcYNCDBExmj1teZF1BwbG9a5dNY": 69000,
+    "4h16T2GBdSHuQyH57qyzCddA9R7PikuLd4PnJEdjgQKR": 10000,
     "4h8RPHiLX4LsajV1vhqMBXJCR4nFH3k4g7cuvPqafqPe": 1011,
     "4hExtDFuPWkZ2bqKpTwgDDQNQ1HJ25fyiA3qahentBfe": 100100,
     "4hGvj3P7fDxDNSdVqsfz5rMyojeU1Qg9oXi9oXycFUcU": 5000,
@@ -219075,7 +223639,7 @@
     "4i2LFav3A5WhseSh7tGNkMCNWu2SPKowvVNrdvbfRNEr": 130168,
     "4i3StkMGjnQHQtZvTqR4cPgcLcwBuggqsPfYi3c1sVAa": 34000,
     "4i63bM4VL511yjUkofNZYhc4mc9snxg74qmjGVBwMFuf": 1059,
-    "4i7f5v1XVKV496BtRD2RbsicYYZr3aUFChLwdFVMiMvt": 31500,
+    "4i7f5v1XVKV496BtRD2RbsicYYZr3aUFChLwdFVMiMvt": 33900,
     "4iDiH1aKkQBxvFo88KRRBFo2uLhoYa6whkhZXN1TBoJo": 31654,
     "4iF6bw2cHsSKXo5bAFLRVt4PJL9dVu9r7cEbE2TTndvY": 24000,
     "4iHcDFzRFS727Y6cDDtMwLeP4FshHG1gj2jP5MrapZkc": 1002,
@@ -219084,15 +223648,14 @@
     "4ia85fadw4uu86kHXZemaSiSMuccvMfLqUZCy4gjkJur": 10000,
     "4ifhTgjzYmRaFfBjryyGg6xGRTKhowiYUXajNodKkryW": 4000,
     "4ih8AXGSrnyF8rzxhufNfUHDhk2wysqLehCfMY9ur7L3": 2000,
-    "4innNDDyk2h1xN5YSJtwqAAfmiWLh5j2rqFWyyquPJad": 7600,
+    "4innNDDyk2h1xN5YSJtwqAAfmiWLh5j2rqFWyyquPJad": 1800,
     "4ioYwCom54sjQx6PgexNCP4pxCkfcNY9jtjYYvn7KFLZ": 7700,
-    "4iswhrGfFdQrWwGyAf4y4A3yDh3Cc16xAhdevqkVcu4p": 1000,
     "4j2YfX2GyQ1VthxujUcjWhbsFPcTReB6iEc43UeAMU9T": 3174,
     "4j4RUARtru46TXgLW77PyUfHkZFifZ5rZBJ5vBjKGKm4": 50000,
     "4j7UZMbmwdGfoUNtASbMxvC2vWCNbAtHtJ5zpXfhiWtP": 900,
     "4jFwNc3rB4Zr4p6Bnov2qxXvnYFTNCmAwVjTWqjY3mRv": 400,
     "4jNERW2PHdayLHNbDsMQUEXAv8Jswe8SgVg4TH3NepzX": 6159,
-    "4jVb72rX6M4eSUp2TJAMP5xf1gqurRGesQ9aTxpg9BG2": 518284,
+    "4jVb72rX6M4eSUp2TJAMP5xf1gqurRGesQ9aTxpg9BG2": 631684,
     "4jYJERiJnJMqQeEaCn5aLT6M1knTJdtuGNaPPY9uZ7uW": 106800,
     "4jbMhHBjM4UZixkanidT4qWzH6ooao6RWqKv2hhizj99": 59600,
     "4jfBF3dkZcBNMUqje8gKsXPaMj2XcGMc1cqJ5RtXabHd": 1000,
@@ -219101,6 +223664,7 @@
     "4k1G97EXbdw1CVhQV5VJ2seexFxRq1nBy4kVwwH8zRrH": 2000,
     "4k4PWREK73ohhh88tW5giy2kYfuBsYnjNGzBvQro88kN": 20000,
     "4kA57gC3d4S8iLFGdeKMPR8SoWFSkihLsBiRwwNYAbAN": 21000,
+    "4kAwyXPzek1Etgv7M791e6DPdQW52QcqfWjzqRKs2Qcp": 38808,
     "4kB6jjxL1MqsvLqmU6FFMC7ARKqB9yCuFGTZ7DBL5Qkt": 5000,
     "4kCTRBEcwoYiepkuyeArDQVJRRGAFZ9rXUnoJgwsPXmr": 16000,
     "4kDGxpHnNYoaowwLuAdGVhK88v5LfE4KaGxi1FWjt8Ef": 6000,
@@ -219109,20 +223673,21 @@
     "4kKWcueP8ptgHH4KrasTKF7RCL5vujMa8NHeMXcewVn5": 400,
     "4kLyZTS65bwJ7ZHocXAReBoo84KQdjSZRnQ2xfy71TJq": 367552,
     "4kMvD7tZUMcjbEFFb7dEtjKS51r7YY5rRbZ9Pw6aengC": 4000,
+    "4kPsT891vZBsKZGVpbNDN3ijeRP2vDMCJ3QvWuZfe8Mb": 2200,
     "4kVHDGLJJKVyVmumAuKWhQgH7CWJBhQ4eX1BEtkumCtE": 5000,
     "4kYiSbn7R28Kg9U61Cqr9aUYCE97EjxonAT3CJD7TtSX": 10288,
     "4kbgbTpndxoK8U2eTsxXfwEiSxpE6YU4iwUC4D557UUN": 10000,
-    "4kfKvFchvR87DSwdM2UEEDN7N8pXbaCrpxMKn9YXLU8R": 35234,
+    "4kfKvFchvR87DSwdM2UEEDN7N8pXbaCrpxMKn9YXLU8R": 21769,
     "4kffpoh6Cm7zMdRv5u4Nd9adKDaJpzFdt7RymByfVot4": 7500,
-    "4kfn4r7nFfiFfbQ9zbhJ5XkNviWTvqSyQ4hi3XC57xWo": 27900,
+    "4kfn4r7nFfiFfbQ9zbhJ5XkNviWTvqSyQ4hi3XC57xWo": 29900,
     "4kgJ83DCrebVJZ7PczxPBDC4ktpjXd8VhV4R2aS4xcyj": 100,
     "4khh8CQ6oTFC4Gid5G6HBsJGGTwP7BMNq1r5SonNk5dP": 17500,
     "4kiNTRNZEvSQ2sEKJjMNAEd5L13YwXYpeL8A2NWFE5Jc": 85000,
     "4kjaq8gUtrdqATvRWEbjnFuaa49o7vNGxMyv1FkMEKDX": 94092,
     "4ktwbRq23WCWSxTseYwTpSvEDWNEbwYitT4jqVfxzA6w": 5000,
     "4kzntTwCyQwyjsP7nVqfgmf9WosopkN2vLbiiB6FbkWp": 5000,
-    "4m2Agfsr5iGtVNKLQF1Pte9UGqm5ZoBthgsDXp8AGSpD": 50000,
-    "4m33nExnEeueXzUdEViyJ4DaePJhYSRw4TR8b6LVZ22x": 15200,
+    "4m2Agfsr5iGtVNKLQF1Pte9UGqm5ZoBthgsDXp8AGSpD": 35000,
+    "4m33nExnEeueXzUdEViyJ4DaePJhYSRw4TR8b6LVZ22x": 55200,
     "4m4xgempwuoUtYGAA5Tm9NsxnzBm4iBhvTYzpimUDivk": 4100,
     "4m5abfFxihpzDULWPukGWJGxB95Q2H2jhaBnCaYtN6h4": 40640,
     "4m7hAA1PLEZRULJdgQb8wZzZzHykCdEVm6Lnwcy4cPe6": 36000,
@@ -219132,6 +223697,7 @@
     "4mSYZhjpyYiE3ENQiT8nvp4PiRpdKmYjxjk2NWhMpg3a": 100,
     "4mTxocdrF819wSt2zpoy5Wtf8UmTeQAtuEWQLewPBQAB": 1589,
     "4mWs3LBi9JavrCgXS7G1VQiFvb3GTbZap39LY7RcGWw6": 18499,
+    "4mXTeFfEKEX1w8ERHLb5hPLFjsk7XxGVooP9JKWC1JyD": 13400,
     "4mXajVHqozfGK3r9jNdCdRSpASgovkQNYE3A24Vov3T3": 5000,
     "4mY9jaVNrWzHpXTfs9B8TRdNZTPLxq75DdgQCKxefbR4": 203,
     "4mYVRiEjVTuenZmaKXbQ9QsrsPoZTC1wGSf1g4pCuxjU": 10000,
@@ -219163,7 +223729,7 @@
     "4no16bBjbqrFzMBkv1fhoYfT8xbCQFTn5HnYax3ToJEj": 25000,
     "4npx5qYY5y9xT6oNeraYgqdTbojbcdNdo8wCzJ211o6R": 20000,
     "4nq42ZjEc8NBWYmiCew4rGePrQyHkDDLTUj1dBWq7sZ2": 1785,
-    "4nvjgidytuTNKBedNbWeJh2cqn62kuS4twTCu77rGwUq": 45500,
+    "4nvjgidytuTNKBedNbWeJh2cqn62kuS4twTCu77rGwUq": 44000,
     "4nvjgigytuTNKBedNbWeJh2cqn62kuS4twTCu77rGwUq": 18400,
     "4o2eg1kMocRCCybKoA9CZGFGg7ZMpontoHwxgp6GxjVU": 100000,
     "4o4NWefpMpLn9FYybioiyjguiocr9f7Q9thxFveAzfFC": 10000,
@@ -219173,7 +223739,7 @@
     "4oGks2BUKyiotGyVRoHrTPntD5dUxt2tVk1J1EiSvYcU": 65000,
     "4oJmRYuF9VW9tgBWSjN9Cnxz5z3AiFgdv7JgBs2symJg": 3000,
     "4oNPFSoDNQQR48rvzvp5Um84L1ztAPq2ecu43EQyXKNR": 350000,
-    "4oP4Qkagt8fui59sT8M5ktvEGEez41KkueTrrKB8oMmG": 192240,
+    "4oP4Qkagt8fui59sT8M5ktvEGEez41KkueTrrKB8oMmG": 337770,
     "4oY4fCPUyxM5usqh95GqVU8LfDcXPpGUEa4EjCAgUgEY": 6942,
     "4oezS3cERzN8C4XxrMtbmsu3DAGwPypaNmQXyj6LDDyP": 1000,
     "4of9rmgCmNiuTaAwYBN7zMLammBnUnrQMytgf2nAPHqi": 100000,
@@ -219190,12 +223756,12 @@
     "4pXG9uiAwjJBRxqGmjzyaxcexbszFmdtBmm1CZVZZTqp": 100,
     "4pXYwS5YY7gEVpRUmEuLUMRJSkYX1rxVgE6ZRDzW2peA": 34100,
     "4pY1TLWSk7phZui7saVw634owobmzdZuSoDyHa9Shug2": 5018,
-    "4pZxjVnqFrLUePANjYJmqvMzEsiM9zSWRY4JMHBrVFPh": 58740,
+    "4pZxjVnqFrLUePANjYJmqvMzEsiM9zSWRY4JMHBrVFPh": 40740,
     "4pf2wPCZMuQipxsBLF7awsHfAWb9Aip5MzrRXzqfmBdu": 1011,
     "4pk69N7Ngkdctmcd5ShAUbUCmYVHsZC8fzXi4BYjB82o": 500,
     "4pmuM8wWfpjGEf6veeu4GQvUzXKJb4dN5C4fQsi4NTd6": 46500,
     "4ppWsXtJ9Vyq6dLntQMb3FZzbvcK69mz64w8NJKjN1Rm": 3700,
-    "4pxnbwFLht8zSJntbdbt7LGKPsDiydcSMKn7a8iDawdy": 141028,
+    "4pxnbwFLht8zSJntbdbt7LGKPsDiydcSMKn7a8iDawdy": 91028,
     "4pyYk2rUPFhoKLb9jmwHuBYVgYi5zxxdVNMzdGDijpcx": 15000,
     "4qBTNq6UBxxiTxByegn2ZyQskPiC7B46teQNkakX2Sog": 5000,
     "4qE5KiXuR1jasUNF5DQAamqBd4D7dUCt2jsY7HEjWWBp": 52884,
@@ -219212,12 +223778,12 @@
     "4qxoEuhonu7u1fAohEx7G1VYusUsNo6Ayd2BDpoHNwsR": 39300,
     "4r8RJetmcbufX2rsf9tgu7gkmQPtxneZeT71v42o2Umd": 1051,
     "4r9FmoPfmLcArBgDds7F54AdKPzf74EcQWQqUm9EWVLU": 1000,
-    "4rCfX15SmAeSARkSmwXiT5bFkDKFCzXUanpFj6pc1yNA": 95200,
+    "4rCfX15SmAeSARkSmwXiT5bFkDKFCzXUanpFj6pc1yNA": 95202,
     "4rE9AyuMAM9MTWt6UnKcmwR3rDrgZserr4GMyQWDJad": 10000,
     "4rE9AyuMAM9MTt6UnKcmwR3rDrgZserri4GMyQWDJad": 20000,
     "4rJRdf9pPZwEovw6wq7uNLUxm4fHzGMzwhAupWy8TYiT": 10000,
     "4rNQZ3XT9TUBU2uE6aRLaDWyvw5unhQfiiz5bMguUVPr": 34000,
-    "4rNh5hx8QJ6HCSNaX6LbyM3ZFFGdwDMFGKp8vxng7BFC": 7500,
+    "4rNh5hx8QJ6HCSNaX6LbyM3ZFFGdwDMFGKp8vxng7BFC": 8500,
     "4rQcZbeaqd1yo1F8NFftXRSkx99BJSi3hBdpQPYUEzL3": 1958,
     "4rTvXA832YwmxbrXr9Uu6vi4zCPT1H97bkds3XieKnJ7": 56000,
     "4rcwfdEhjTBZrBW4bQht1Y7RtxMFkXZwrD5Syi48SLJS": 500,
@@ -219228,6 +223794,7 @@
     "4rnHP6s7N4g5i5TYUB1PQ6m5sedKybMs754UZAjsYLBC": 5400,
     "4rofy3wk4WTwAFezVYggQfWjHPGXzYHvMtiE5wovUuBS": 263840,
     "4rpnwBeuFEpYBgU13XQepUcaE9BMbKJ2rFtTABQTMnqq": 1032,
+    "4rqeT4CLPHgs6EFtVY9i898F4AP2EccYeZyfRbEWEk6D": 5000,
     "4rrtfJst7DjAUiUa4quGH6cJEsYvD3CeiLBSeS2Ly7g2": 55400,
     "4rtfEYmWRxgdMkNHb6rXDBheYZ43aHTrYNm9tv29iRLb": 18500,
     "4s9ZTyzGRrHL8GK1XjDLHwxfmPianBLjrFn9r85WaX1P": 15259,
@@ -219239,8 +223806,10 @@
     "4sWZnVK1NWp1iC2mmZBF625oqyk6PaEyqzUZ1gLBadqy": 3000,
     "4sX1ZvqnYJbPN9EkZdgFa2r742DqpLgAM1A5raPAJJMK": 600,
     "4sZfUNbpxrYeuXiYpNsKgCbDL2z8KzMBmWXnYr5drm7f": 3500,
-    "4sfQWXBBy811CCDV6J3YP52EQGK2Ko4x53AAiPa6GGS4": 109418,
+    "4sfQWXBBy811CCDV6J3YP52EQGK2Ko4x53AAiPa6GGS4": 104326,
+    "4si469X3jmcmFAeLGHsgeUW8T8UYSssibTEn6b3nhdja": 2500,
     "4skwofGqkcNr3S3723edKUs1XpWfqH8yx2VezeDLGpkj": 3500,
+    "4spD4d1xMEUfRibqisy1dSZRrwoHQ4r2sZGbsPjSdMXr": 5340,
     "4srHvBXbnZ4yoxqN6HVSALo7fpE9BFvZQ5EdARhQzHwv": 5056,
     "4svoCTj4RcXoXrXBTYZaR3ezHkRg8orfH1FMA58ChZ6j": 11900,
     "4t8WpENK9Z52pfM3RT5KYzUvX4p9oiBEfeq4eYYoWD8Z": 900,
@@ -219248,10 +223817,10 @@
     "4tFRMTRb5NRytdCWjp87P4AgJrwTmTzkU3Uk3qTWGzMg": 3100,
     "4tX9krZzubQDgXZqbcMfVQmCJB94XHti8bwbBmNiyeHA": 12200,
     "4tdibCLbnvxyQrm8htYyY7F1rEtthDANCRo5p8F7p7S2": 2022,
+    "4tf8YExdgpJUX1buWM1fjcHuefT8XMsvkhBExw5F7L1T": 388,
     "4tfbybuStWAUMyqp9mMxWqXPn778Jg7rTuzUjaoh8sLe": 100,
     "4thpPHXJP41mgNvKUJhMc8Dmxz89R6TgJ96PufAJdvnF": 1800,
-    "4tn2UqcHa4sww6xiRuRuudrM5Vm73HVZLZDkLWiW1zQS": 10000,
-    "4tnLziEZfSMVCeXjwEyascDaDEFnGpYVgjrxaiDpoddG": 34500,
+    "4tnLziEZfSMVCeXjwEyascDaDEFnGpYVgjrxaiDpoddG": 22000,
     "4toNgZx3NeyGzgkj7HHHnbwpTCxifvVJZxwtAJcFUQJu": 2000,
     "4toQHA4MH6BwcTzu7J6aYzVZJHVgbh7kcZbvdUtQKP3X": 8000,
     "4tqd7ZPARzePPqkDpEER3BE3ZZZgghSkdmFgGkS9Hp5g": 2600,
@@ -219269,8 +223838,8 @@
     "4uGG1jGv2Jw19iNt52JCEtQAgV5kAqwmvGEK2z8nKxpo": 1000,
     "4uJAs6TiwQAzufUKk52adFA1v4MSgEos9XeMw3DQWoec": 1000,
     "4uNFc1tMpCEHh3FMa3uquug346bFniwTLcqzjn6fV6FM": 60000,
-    "4uNReEDTMUFcf6bpMBJ3YMw7b9DMKkSbm2MxRatUgpQ6": 80164,
-    "4uSqx2JGk8KQCQPdybpnjzChMCVif5G4FB9J2WE5XT2t": 54511,
+    "4uNReEDTMUFcf6bpMBJ3YMw7b9DMKkSbm2MxRatUgpQ6": 77664,
+    "4uSqx2JGk8KQCQPdybpnjzChMCVif5G4FB9J2WE5XT2t": 33011,
     "4uSzyHhqpPYUnpMBh9udPdfE3rH3dci56XoEPJucoWzj": 1007,
     "4uU89axkRPfiRrgEzJsLmNHeDgKT9qN9LqQ7vuSarXs7": 38729,
     "4uUBdjUcTAiiFeiavCY5znERTjSARZvVyq4gNECWnsiG": 33000,
@@ -219278,10 +223847,11 @@
     "4uXrLPs9xmu8n1HSDjkzWqDo8XE6A5ma6FLoxbVRWR1f": 500,
     "4uZSM9DSiFroU6sagXwwifRRsYLrbZJ25bk93ChA8AUT": 75000,
     "4ua1NLiRtC3TtjQ6c5GMyBX5a4yfpYQizqUCajuQGvHA": 2000,
-    "4umhVLGCCEJunLEezM8PnoBfUKAGFsWbpzPD1c98PDCH": 54502,
+    "4umhVLGCCEJunLEezM8PnoBfUKAGFsWbpzPD1c98PDCH": 68502,
     "4uoWxJHF3DZZanT3AgobjuH64b7hqo1DRu3k3QRZryLw": 2000,
     "4upg8cxjMszAexkvnAFjAAXbbPBRAvz1Bip7wmaSrG62": 540,
-    "4uryGu9nxNyFysUpKpThxofbrfaR75QXCDgbyfi7gcJL": 11900,
+    "4uqoH7sDkzau7NZfmByMtnF8QaQRS1xYFsmSsoi32T9v": 17900,
+    "4uryGu9nxNyFysUpKpThxofbrfaR75QXCDgbyfi7gcJL": 17900,
     "4utdgHhTHWgHAQCjP6daQzYpW4u3kfa5nkqR7wjvzgMZ": 17100,
     "4uvEdUCFuVxdQrfLfXoi3sKo2bLVrz1tmToWuquxAZdU": 5000,
     "4uwtTDguEC14RHM67WBvstLzufvB3HctRG8BwDpzjzJd": 3900,
@@ -219298,7 +223868,7 @@
     "4veVDWaN51TEfJuiuq9RXK9UTtpNfHoH8wcoXtGkWT3b": 1000,
     "4vgfv7XdHsKSnJfCK2pcbC12kZuADXQ1T8JsNgdmwx73": 2000,
     "4vgfv7XdHskSnJfCK2pcbC12kZuADXQ1T8JsNgdmwx73": 332650,
-    "4viu5bv6Uk4DShsVsRXNDuRmgngxdtbmf8MmVRSTn2Kp": 4654,
+    "4viu5bv6Uk4DShsVsRXNDuRmgngxdtbmf8MmVRSTn2Kp": 5654,
     "4vpMuz5zEAfAq2DJhHc5A8Ra3NQa5zxsECwerLbxn7rE": 4500,
     "4vpQLXdK41D1QQ5y3T7yyrhxNgqHSixz5tDBYryT8Cdq": 5035,
     "4w4Qa3j78u65NNeKx1QvWLF8STyNfdoCmYuP876NvNNh": 40117,
@@ -219307,7 +223877,7 @@
     "4wDYG2Yxq43MjhNU6b4MpZeV2bCdy9yPamDoJ9QubWDy": 5000,
     "4wE3haBPcEn9d5kSM4he9tckbJmtPZB62ygX3uNyfQAL": 137900,
     "4wFHaoskPX1DZgKFFRa2hNyWsHevXR69FczpdZxZk2HJ": 35712,
-    "4wL1B37GRHRFLwS4A9a3hjnCs34x3iPwybHNDwQQsYVi": 143620,
+    "4wL1B37GRHRFLwS4A9a3hjnCs34x3iPwybHNDwQQsYVi": 104780,
     "4wTLFKv1qZnT4d6zqr69zeGMF9wHJWTynDoRHDJH55FV": 20000,
     "4wUCBpCZWZKyX4sizhY5WsniBc7ysyH9LphMG9PbEqjH": 15000,
     "4wY8BceRd7rCjVgybFixnjnBV9Y8BDCyEhTfi6vmPZHo": 81551,
@@ -219317,7 +223887,7 @@
     "4wxHKPe6D9LckqAzZGvKtRcFPbHtKscbtUr7hstZi2EU": 100,
     "4wxk9GUr1GxS3jkAYVcSYxacvx79VaovgiTwWmQm4n2n": 5000,
     "4x7QBjRcjB8uhu5wTnwSyhPf6WrP6xufPo4hhNdMTkbZ": 200000,
-    "4x7XL5JKdnf4p13cbNZZW96BQQUoneEGVgsm8PNCNzdf": 200600,
+    "4x7XL5JKdnf4p13cbNZZW96BQQUoneEGVgsm8PNCNzdf": 220600,
     "4xCenctCo9bPqd9dGtBLuXvHVrYs3ejGQd21TcKsToDb": 5000,
     "4xHLNn5fzjL5gVPSuouWhxxjiyzMGC8QQB5CRx5Diyrd": 1000,
     "4xMiQzab3gvByWjPMGaamFLXoZ4Egvd9SXaa1qV3i2uD": 5000,
@@ -219330,13 +223900,15 @@
     "4xZqhChFpEVvZJybdD1k332crCoQcijApbFJshJaA6kP": 1032,
     "4xbnR6p1DTNCRWzao7uVMKND7VjMNA9eQvCvpSmkxfhG": 7500,
     "4xcxgiVCePU3eeQ7gyAVJpB2YuMCD7YRzXxuFXeUCdmq": 7000,
+    "4xdxs5DrkdRYiEQpCwxRTVQLPRm3XBGUHpgBvdnUEiNd": 8000,
     "4xfuRaJQfn34472bRLEja3G8GTgS2sYZj7KWJn5KQ9en": 30500,
     "4xg9H3rZLHDHA3vRBerTVZYQTeYNCRSZ3mx3Y5ee83eo": 2250,
-    "4xhfsbxdjhNbnWbmREBwLsVXcjNBZCtKRTkUSpFtJmB2": 22000,
+    "4xhfsbxdjhNbnWbmREBwLsVXcjNBZCtKRTkUSpFtJmB2": 29000,
     "4xinTpgqS2tqgKBMCPz8PUwYfp4QBtygtg3EWwzH1hqn": 96200,
+    "4xmExqvPhNX1WTMb3j3MWfPPHLJ4Juyps3fLibLowz8e": 100,
     "4xuYZ6EgxjX4yS55PzL6CsWW2jSYa9jn3HDnh2g3kx1": 500,
     "4xv7CWg778uZodaJfgwtzMimKQEhKJRCB4cDR112e7pK": 1016,
-    "4xvzE8mn6fE6uMmo4kLEgVRVbTWxQsijanDY5EPgo77N": 208698,
+    "4xvzE8mn6fE6uMmo4kLEgVRVbTWxQsijanDY5EPgo77N": 321698,
     "4xxbPKCvtArAZpbA7LkSYowZPw8hBsiea6swBWaW3ACF": 1200,
     "4xy12g1Dhtip9okiMNb2a3bb8qGG1BCzPd7GJuufjFXU": 500,
     "4y1rhDFVdmaJXDgoVGgSVofSnyxPw5MYj6NCmQgM4PNV": 9000,
@@ -219346,7 +223918,7 @@
     "4y6SMmXUUPcSu1rJM4SQmMsXQnDL53FJktKhg5SxRskt": 550,
     "4y9wUg7u6vgBLEziU9xs1JS8jvsmorCH8UzfBx88qzsV": 51400,
     "4yBFTqa5ufLLbUQUDCDmSQCx8fyVKJexwJcZWMJDGtSF": 87000,
-    "4yEM6pvJYs9X3MXLVM3rp5E6gtjXMe6rkQipVh5nkD1F": 6500,
+    "4yEM6pvJYs9X3MXLVM3rp5E6gtjXMe6rkQipVh5nkD1F": 22000,
     "4yEPEzZgkvbMqD6FeNF8KPHCrYfNpaihrnzSua93FFHY": 1007,
     "4yFDM4NRTRja6kEnkNZDBxBxTcA7uZ9HExB7XxY5Ri3f": 9500,
     "4yG2Cqa9YZVswne4iiwtEH18xtS5EAkbqgVyhFMeBxAq": 24500,
@@ -219354,12 +223926,12 @@
     "4ygFBzx6wUuGgCDuNzjS5qEBNEFoqP6eXEJpdt7UX5ki": 13800,
     "4yifcJL623BvCu9T7bqcDspaBVuNQbYe7tyHmBQsftJq": 1000,
     "4yksPE89VZN7u5TxGkyFSnCQ9vkpvzSbhm769uCWt9iF": 900,
-    "4yoTT67HQs7gVJnoiN43UxMVfQ7Kyc1mDBSBbv3qvenQ": 162587,
+    "4yoTT67HQs7gVJnoiN43UxMVfQ7Kyc1mDBSBbv3qvenQ": 214947,
     "4ypjjYo6TZQDv4NPb4bs9yqYA1E7N8DywT334D4EujAr": 3500,
     "4ysjcraRmeQNfLkicpA2L4vyTqUqe1NQwb3mtPPKSETj": 2000,
     "4yzi9FGBPywXpTfSLT1VB2rEpzgbT79DmctWjtvuLVSt": 5000,
     "4z4QYZKKrHv3L3aeEHrMnViHSXZXN6Z4ZWCzK64Z6ZdN": 5055,
-    "4zGuBfPaELoTKE1W9HbHHXG3wqjwhBHGP1rQ9Qjpxex8": 5000,
+    "4zGuBfPaELoTKE1W9HbHHXG3wqjwhBHGP1rQ9Qjpxex8": 4900,
     "4zHyG3yTGtBErU8aAHty3WSmRAhrGDXSdj7A8CBqakR6": 10000,
     "4zP8KDoCbsBw71QpaB3TyonWxAuWNDLDZi9osw5WafVq": 614,
     "4zU8tqE2kPxv6pJnfDpPPPSAgZUHM59nziHGSbyCGnu7": 20100,
@@ -219371,20 +223943,21 @@
     "4zgWdytThcLH43CTmgwNNAywbyVUPzyo4amcR3FHMNsW": 17700,
     "4zucPM1j5f9MXvVaEuUT6aHX44qLL7DRJxbSakgVxSr4": 10000,
     "4zvwRjXUKGfvwnParsHAS3HuSVzV5cA4McphgmoCtajS": 2022,
+    "4zxv628hj3uHkz8rwruERbo3NBXQv53XJ5dGoj4RSvFE": 1000,
     "4zzehj8RxmnZJP8ZkBkEys4GrF1J4F1YWYJHMAFxwcNo": 1000,
     "511W474uaitQq9vz5z3q811xCbqMaRvMWUEm9fbGmdm1": 10000,
     "513C6W9Lfw3KqqsqfiEpZY1xsoxBVUtdquhFR1TKQqqV": 110,
     "5146mGkoow8PqAkxgPU2qGkDZFbGKx4ynib5oJUpk17c": 2000,
     "516URgkeVBAVP5HSggQn9bhZwa3MTA2E3rhYiTDu7hkS": 2000,
     "51GJUjzpagARkn5kuMSMs9kVuULVtzGT4r7fEfV1wTKA": 20000,
-    "51JzwFaCQDVx3LVh65XSTH1Bj289RbNcTVi8LuPSrwyP": 14000,
+    "51JzwFaCQDVx3LVh65XSTH1Bj289RbNcTVi8LuPSrwyP": 1500,
     "51KUbb5mtTZNTVhEap38qjJZX9Hx5KtTkBEHFiS46Lne": 23000,
     "51KXtKNScjdGkTcgspah5sa5Yj3VbjrFyRvyfdkJ5Jn8": 14000,
     "51M87eRmpAboJtLGRXY4Wn3nhpGpeoTn8RAaxMcTCDMd": 998,
     "51MfPiQt1kNMxV7TVJoWqJTCnbmCPfutHSXjCm11LJpj": 5000,
     "51XXQTiEw5wdf9kLqSNR722vamWtFuA8ZkLV1PTZWKxZ": 60000,
     "51YNRvBvRnWW1i5ogNnzwZDsWfyKDvhQ4vZYVNHRssY1": 20000,
-    "51YNRvBvRnWW1i5ogNnzxZDsWfyKDvhQ4vZYVNHRssY1": 328700,
+    "51YNRvBvRnWW1i5ogNnzxZDsWfyKDvhQ4vZYVNHRssY1": 358700,
     "51YNRvBvRnWW1i5ogNnzxZDsWfykDvhQ4vZYVNHRssY1": 50000,
     "51YvAycgAMPuCEzSA2gJAZmYmyUUQSzX8NHxovkFx5da": 500,
     "51mF9CFi5RZzdpja6JybXvxBJbCiC6wt8PfNdebH9rQK": 32955,
@@ -219415,6 +223988,7 @@
     "53JP85er6LVeq8VhQed5quoJXbRqaC367xryY5LQYED3": 84500,
     "53LTSgL6VGyTAszPvQEj8k3JTY5AtdtUdAtmAWW9DfJu": 5000,
     "53PkcDKBjEG2u1chR8Mtmmp7JGM74XqkR4Xhn6XpRScY": 8000,
+    "53S8DByggsu4gMe3XpqD1CxB3CLp14TcaKsFEJ7p6nXe": 100,
     "53SnqudPEruC6ffoo1iFCP6M1MZPhx6bEfSiMVpfYtbG": 40378,
     "53UH1o1nrqefwJHy58yvyyg1M1Nx3Zjvsxccpqaq7tbu": 5000,
     "53ZyQESsVAQ8AJQf3PtoSBfg2Ecgvx6CbPKLS3qeXiTR": 1046,
@@ -219424,10 +223998,11 @@
     "53i73kt9nq62Ghx44CbPcyL5b6cm1LrhaRVTjHGxtJaT": 20510,
     "53ieU4tP2QigaKRrTYD9cSehKB8qnGzcHHgvet4s1Z7G": 15000,
     "53k2ir3QKGvqe6mox3g7ty26bmff2r8ubhza4hZQXaSJ": 5000,
+    "53n9oSJBoTy2Y1UUFuNCxHc18fNea4YkkBXDa28A4bwR": 27098,
     "53nMfWvCGWvFLbrHCwkp739zfqCMVmgomWoDaCgFZjXe": 4000,
     "53vRCN22i7W2UYJ4ZpTB8ZzHu7XV1cQNSoVUNJ7tgVSp": 9900,
     "548wgicocq4cqLXxMjFcgziPpAxoDXwWKDKicFn2ucP1": 19000,
-    "549gB3r2DpNaKMkr7sxLQxr7n9MX3UchNVxgcJoR9q7U": 82000,
+    "549gB3r2DpNaKMkr7sxLQxr7n9MX3UchNVxgcJoR9q7U": 113000,
     "54AAKymExU8cdDcPReVDr9tCwobzjt4bbfsz2KUt4uK6": 5000,
     "54Fjktgn116u5aNh6mci3tcpVyFgBENMrcmEnNW8mXyJ": 2300,
     "54MXBdPfxSpM6sT5etD4Jg3NEaVVbLyoVzoyt2H2VYdn": 101,
@@ -219451,12 +224026,16 @@
     "54zyc3cQpxQueXLemHcrk7vNXyGgJfqscfG3v2tkCD8E": 20000,
     "556Fsd9Ddv4qXBVG3aY6AmW9W4DHozRp8mEC1p2wA11C": 5000,
     "556UNwXLeSNwpSdRWTUCCnX9cHUgpfpS9FwfVG4ZkmKx": 4000,
+    "559huW5a98KxV4ucshJ9eS7sgHAghmj4LuVwpCEGPTWb": 15000,
+    "559znAG7kULdyuh3NX6hd7LcxxPuoN73iw2zV7nHzC12": 46100,
+    "55BaXeeDR4fg6YNzDWZBMPYcGgymu6d4ioZS1cL4G4xa": 5000,
     "55CeRjwnKaka2NWT7xcQXM1qtQ5GTE1BRis9jHpucfd3": 1151,
     "55FSj3KTu8ACjz4XQbVFRUMWT4e73sTBudJHqPX7T2sF": 10070,
     "55QHw5j5f67gGUgFhzHcXj6mTtEYKKP5KnUEnZ6GNqiw": 10000,
     "55QUiKzMUbxBpEpLPYwAKgQDpeMYwLMmvbJCbiH1EA69": 11000,
     "55QYnKRfoXMnDsFrovFfBhWDCHbje9qgyFGFwg8FCJwL": 200,
     "55ShSFuShutCeU3pFLdimA6QhSKpvhJWGso6ztXudMwx": 1000,
+    "55Tjj8Vgx5EeiRjym2SbTo6M5bEbWbwQe7GrWiBw4mH5": 10000,
     "55Vio7GRUY16bEdfnGbfTdx5rmkMWcNVZDEt7NvFyZJ6": 19705,
     "55XkVdDHJt3ERicXzeE19HeotHaswxdqsfSSCuqJSHjP": 351561,
     "55ZyhkhbCJA6LqjaTN2d5nUW7rLAR6MDAX39ZagVz8cL": 10000,
@@ -219465,9 +224044,9 @@
     "55nuJANZzGG2HRn3dMnjDA3tgop1jgYbc6rZTB8Gpkoj": 39000,
     "55oggdbfWn6RELiziULS3x7y5vLoJ8KbmKw1UYmoZJtv": 10000,
     "55pH7Uaxou7S6p19QQ7bgL1omkFUD93QVcimK3p1heU": 7000,
-    "55pH7Uaxou7S6p19QQ7bgL1omkFUD93QVjcimK3p1heU": 98520,
     "55pYR1CcB1Q5VBwx4T7b9xq4BK4F9oVnsmmg7eGaHXaC": 3600,
     "55uTY7wPec8kG7fyeKirut8fXK25f14uSXDEpKL5iHAK": 46000,
+    "561RbkEHLCKhVmJpr65UeqDfEi9sJ7P4KsenK8zVSeRa": 1000,
     "561TVutpP6XEGfYuMJVUCCNXuwJYJFiiPfjEs69WcdS3": 10000,
     "562f6y9jHj4m2Q4TUStNMMG8ziPAFdwswy8qbHCMoT8n": 5000,
     "5678s9vc1Jq8R3HW79seZDsQYCnCUX8Mdqwui6bYkzHE": 1074,
@@ -219479,7 +224058,7 @@
     "56eEfyb2j9M5W4WKYuG3wu1Wmp2RzRSPWJamB5xrfaYT": 4500,
     "56gUfdqc2e4ThKUohtN7P9RycmSS4yr53Gf61ahDUGaN": 93500,
     "56haDccAb7mjZFPiudPBh4RcV5hLsZN3ue246f4XFjyG": 22200,
-    "56i4RcaCC8wbf5wjNNbZbfR7XbTcGXbp3mkhSCuRaGn1": 5000,
+    "56i4RcaCC8wbf5wjNNbZbfR7XbTcGXbp3mkhSCuRaGn1": 5501,
     "56kL5dboFVDtnAspfWQW4PnRfsETbMyU86WaiecB3ixG": 1000,
     "56maJEiNizArcsVfTefuv4SqgUDofb7BXWFBCLNwEkR1": 20300,
     "56mfVL3MwwYA7jXxxx3toCWfofJ3UoJ2DYidJiDGLWhm": 50000,
@@ -219490,12 +224069,13 @@
     "56zUG5Hiz6Jyuj1iCaprNJXi5dwxbuQQraokEZnFmEyN": 47500,
     "57Eam5Mmxj6931cd5Yc8MNLQA8unigxV47JfksedbXuc": 2084,
     "57J3NJaku8fDwMxVFDi7vuxrRiVcoHRRDNj4YjVkNSio": 15700,
-    "57R8DrjKK5SrGkwa4NsrdEGqcLhbDcB26CMZuoMwdyAS": 212400,
+    "57R8DrjKK5SrGkwa4NsrdEGqcLhbDcB26CMZuoMwdyAS": 140140,
     "57VBUFQh5nxrfrxezdySX22eH36EL2zvXHRUQBz4NT6s": 100,
     "57WRZQzpLCrDLH4kGC1MxEk7omzK1S4BRFEKDdeuT2Di": 17500,
     "57ZfzhRF1ySj8BN4QVuVXa94Ev6WxqrV9agwS4y8QPfq": 13100,
     "57eYMfTi7RaA26H5GVmTZmiJJPNEZGjk1ypfvHZ79os6": 50620,
     "57i69GVru5hiaj4GTDrFadnyK7Y3BqC5NTdFo4eB5hro": 700,
+    "57imSGSFV9ky1CY9U3DCnkkrwr3kmNUjZBvYfZ36p1TU": 1500,
     "57jCU2xP7Zgb2ZX1qdRjQpQha8nL1cdRebUTMyJrgrNN": 500,
     "57rjyxzZPb2FKosAbnsQd8TBeeYFZwt26dwSkuMPypyk": 100,
     "57vHeEacimHcUfjXD9Hx9fMvTkNs3m4y9g281peLJrJZ": 30000,
@@ -219523,7 +224103,7 @@
     "58t8N5n26x3uE3XTKVgg9UGMUSYgPSdMhXgNcG5WDU7r": 900,
     "58tGkrAEzSF3oqtdDMgSBMtraMUDTLAjf3VKf2CmFddA": 7884,
     "5927SrC8kUHgLmvuZuNqgq2Na7ujtXCt4CZrPzPxv6g7": 1011,
-    "5928Fd4EkSmiBALpYe3QBy3dKuFXVKmnfJ9GDBzzMAtx": 16800,
+    "5928Fd4EkSmiBALpYe3QBy3dKuFXVKmnfJ9GDBzzMAtx": 23800,
     "593yfqAXWUZRiDbWF81FjdZEqvoVro3M7gGECSsiunwM": 5000,
     "596c1g5pTGXucVFH5D1YkSJ3AeoUqrgXzstuA4Ribkq1": 6000,
     "597q7EeQqMftmGhT4wd5R4cVN4PFFMCX9s3b2Q9jEtq4": 5000,
@@ -219543,9 +224123,9 @@
     "5A1ySLLdpsTyuYxdTh8BzkyGkGgz71H5HTubRTQERj4B": 100000,
     "5A9Wx9Ry5AmXBADWfACbhzKZMK9Kx85H8sPw2kaJ3hNb": 70133,
     "5APaRibQipccgwQ8FA2yV3A7JjyQ8nfXW9p62A3RuVtm": 5160,
-    "5ASiFPbBk8F2WAW75yuucevwMDggAZEUw5qp3ohtezZ": 195100,
+    "5ASiFPbBk8F2WAW75yuucevwMDggAZEUw5qp3ohtezZ": 175100,
     "5AT7hSvPyr7rdodJAAh2jRQwpFQnLtGcDtSwhngHyzzH": 4400,
-    "5ATD5ahP6eTYBz78Gx5i9otYQhyHGPmNcf1ZsxLMuV1x": 21300,
+    "5ATD5ahP6eTYBz78Gx5i9otYQhyHGPmNcf1ZsxLMuV1x": 33300,
     "5AVTxVAE2oi4NoVpRW7CUX74pe3AdLy9jC2HbDu2nZBa": 97276,
     "5AWAQ6U52CLBMTH9UYAc6JD8TNSj2yGi83au8pvmeT11": 1000,
     "5AZ3AmTE17AmhXhMC5bqTqx7bL2ApddGCKn7HUMuEeGv": 5000,
@@ -219567,6 +224147,7 @@
     "5BXg4gJpiGUosYoFX7MUgzYEVaWgtk6JX7vwJBfwb8MW": 1100,
     "5BaehLpY49TTiHvn4q5rwDRjeMQiLvc5nU33WNojru3C": 5255,
     "5Bj8ik3pn2kYHsvC5ucZP5JNBWeDmqqfzFQ2U9jj876M": 5000,
+    "5Br4iyqh7vhe3oKCS1bWg2azG4JNqnnN8fbjBaa7Jp8N": 4500,
     "5BrH3adjJxCGStfC4qGycArUeRjseikPzxLjsw5ZkTAA": 9000,
     "5BrWbq5t2SUkG6aCL7ib7SD1Nwt8j7GHcgBiXrobtQnU": 1000,
     "5Brn7Y5LdLcop3yCYeiBjKM3NJZUvBbgPjfEGJAafKR4": 200,
@@ -219592,11 +224173,12 @@
     "5CcuJ5pjr6TexmqeTxDaXUDoZZdg7aUtbBqoVNidAEmx": 300,
     "5CdNb3CdwPF7rG5F7T1zm8ygEpEJy4FVUDcSSSa2yYA2": 5000,
     "5CtLFPrh782bkqWatqnbYpnPDGoxaj7Ez1NUzmwWznDC": 1000,
+    "5CvpNKRjpL6ywK4yLomYYryB1B4dceR8YcADzN6WvHkf": 317800,
     "5D1xWyFEs9opabVSyudJ1tauziBRmybDMsDNf3WMWdZk": 11924,
-    "5D2rk3RP147c8QJvCbQ2mnba7xwkvuepejXidAdmxZex": 700,
+    "5D2rk3RP147c8QJvCbQ2mnba7xwkvuepejXidAdmxZex": 16700,
     "5D6gJLwyzU9DPcigcAQCvL2cDcVz5NgxntLopa36a4Pm": 200,
     "5D6youH4yL2daZyvWHD8pMtD9XyhwWC5Po7wmTPzjJmo": 5000,
-    "5D878X3c77QL4msG5mwFfBphbbgaagVbJmbdCz2cCWqq": 5100,
+    "5D878X3c77QL4msG5mwFfBphbbgaagVbJmbdCz2cCWqq": 23300,
     "5D8Fgeg2Hw8M4R87csTD3d1ZJGHPvgSh7qEPrCncemNT": 1011,
     "5DATF3k4Rrv8gLsFd8wcUgBgcPCopS8PuAvmWrhiWFH4": 5000,
     "5DFAqSzwzrfmd2P8gfrzGqzQ9qkxEWEDDB9CXC9vmhFK": 10000,
@@ -219605,21 +224187,22 @@
     "5DJDewSFeDKECMohecxnpM68zLS7v9HDhCUife4bmnVX": 3000,
     "5DMCqDfe1RJFtvVb8yCemLoo46cGLNdwA1NDp6NSFxFD": 93600,
     "5DNMru7pcMr5YGvadF5TTodbqAQLVGXBYEGPvxFNphqw": 800,
+    "5DPUFkUSgbGtFZv1yDDnjMK8okEGzzpbHysGgLgkAXVx": 7000,
+    "5DRbos4jr3DZKnJ2Awe5DqXNqCnF9SxKk3ZDm6Rp8zV8": 5000,
     "5DRuK4mDewWqX7h2MUgYK1XnNjuYZxLkUsS4V4RrnNGr": 2023,
     "5DSYPS9gTENd9DfiRJGinUskXNgvZBNjkXEyCjfigkpU": 6000,
     "5DTTrTzbznFBjTHjP5crDCWXQH7wZE7JVxKqGM4kPMcE": 5100,
     "5DWZ1LAU5zMzc2q4AEChryifauG13M6a4oFo45P52zLQ": 100,
     "5DX7tCE9X8Mg3yPeD5Zmj5CyDTmz9tg8uqx8eudEMHTV": 27000,
-    "5DcrZEUHQD6eEw3ySnqkGi2tLKhHMZJsoVKB23VibMdL": 45680,
+    "5DcrZEUHQD6eEw3ySnqkGi2tLKhHMZJsoVKB23VibMdL": 39280,
     "5DcsZd1W3F8DBN28zpEGwV1m1kM1txqQJjpdFpd94SDF": 1000,
     "5Dexj7uwnbBHKzLAfbrzMWwFA7Yz9zMTNcHmZjcnrXqN": 99056,
     "5DiqsLeUQEiR2g4q3PN4pQq6EbaZUum96yjoMpwah9ho": 185000,
     "5DkCwhE9PAJedN5k8EYKLBwnkphSTHYigkLsVebtHcKP": 3000,
-    "5DmuLeuqRyC6qS485bwJV6um12ekhnFziyrL2cRtosKu": 4900,
+    "5DmuLeuqRyC6qS485bwJV6um12ekhnFziyrL2cRtosKu": 5800,
     "5DnSekGBuioiJoEFEsULbFF2FxLqJpvZUjtKczjF74Pb": 30000,
     "5DpXELLPLXhMjLcq7ACCGqfaCdkpMo4ojyKMzd4L39Do": 132000,
     "5DsuYEuDPeRQx6PxwySy4gQjR8mMnTxNm7DVZ4zKXQZk": 20500,
-    "5DsyxziA1v9KQA8wfGUWakcCMJeAU7fCMmKTkhYLM1Et": 10000,
     "5DxUKcsocFRRGHGcGk6o8TahvVMDYTVshtqAAnxQfpf2": 2000,
     "5Dz3YSq472H2st2cBNB35z1axVaXmeY8RoiGKv4zLhzJ": 11100,
     "5E14QHoqN9oB4tGud4Npk5V8wsQ5rhDH2VXBPCkJwS6P": 98100,
@@ -219628,7 +224211,7 @@
     "5ENFn3YapnZqNkPCV6iAD5aEpZQhpDsonKQQckHnvhPK": 43253,
     "5EPAg7uLCUTDqFEAHA7ULB22W7rZkFtvCecyyit3ZTbs": 314,
     "5EVzGvfspvoGqmPAXKcHeYPLMgFAyLfoen2pKY4aq84x": 100,
-    "5EgjdPNCzSm43ZAbBNzsSsUtz9FasaqGzUD2hHUGnSN1": 28050,
+    "5EgjdPNCzSm43ZAbBNzsSsUtz9FasaqGzUD2hHUGnSN1": 26050,
     "5EimeuVXooFf6zqfp1yWrka5HuNDjLxhVuAU9onhFXZ3": 5900,
     "5EjpGpeoRaicDusKnwdc1sj4HoqCrwi3XkXC2XxPrvpr": 46500,
     "5En8YKPwJdC7bNcUGmzzSF2U1EpmqeefJA3zaLcPtS61": 10000,
@@ -219650,30 +224233,29 @@
     "5Ff4Gx7aio54A57iPdmRQfcvAPhChcQa21UPuYNjF4jc": 500,
     "5FhMYXGzrtrEjKoS1bHjPrdTGJdNDxjZzqs6GGzksSfu": 17714,
     "5FwYib698iBtria1ZmJcQvWq99Bpb4d1jDrtcaB1aqJ2": 5330,
-    "5GG2rF2Kw4RWBu9AiXKXd7G8sC9oQNg4TgkqscAJ8Uqr": 12000,
-    "5GPHgGnbaWZNgcSs874j7cJf7wYyS475dD7XLrNcdbTC": 478867,
+    "5GG2rF2Kw4RWBu9AiXKXd7G8sC9oQNg4TgkqscAJ8Uqr": 11500,
+    "5GPHgGnbaWZNgcSs874j7cJf7wYyS475dD7XLrNcdbTC": 473867,
     "5GPHgGnbaWZNoSs874j7cJf7wXyS475dD7XLrNcdbTC": 20000,
     "5GR6Td5FrMmqrXNu7DbPnK2cqQCkDSd3SQeUUsYsd4j2": 10000,
-    "5GUMZ8bdZrVtxhCDpJ1TUMEzsFPfjhD4pU4ZkczDoAHU": 20000,
     "5GWLRcBetC9x9CW6XEGThLNSeY28PHAau6tRJ7RreVrP": 2400,
+    "5GXodpWmdMC1XFZidZ2EQBiWPtEhJRdEDb2yE48BpE77": 5000,
     "5GZFMPXwpz9dE2ywLzeKD1xns5zFYfrNrnGrpQxUNZwU": 15950,
     "5GZLenFu1LWzsY4yYwdLD22FwwcuqYf3bdYs9zYUFGVN": 5000,
     "5GZXbzMiiLUeNgpHSN4PpuH7Dsq8f3W8wCoiCUg49Gq3": 8000,
     "5GcwaFcyEJzCBN5CgGjhkSEkp5TgFxFyi2Q864TZrpPi": 5160,
     "5Gd58dGUyaQwQCa1VPqAGuE4ceEtgyJaY9udQ8yGHBd8": 100000,
     "5GhYiziaQTDbUXaHkKrszXQ87439TkKj8hTdY7hSpEgE": 37531,
-    "5GjWn4kBb2Mn5MeKCjUqqBpqxv3XJddGyEqoVx7yuKig": 5000,
+    "5GjWn4kBb2Mn5MeKCjUqqBpqxv3XJddGyEqoVx7yuKig": 4900,
     "5GrWGhvSuV2AAnUkEJRRBceJ1qP8GJDvhG233C4CRnw9": 40443,
     "5GuqxiZPhykYLJrSZz3HbpuCuo6qE3no1XVF6Mm4DTtm": 20118,
     "5GyT6n6VGqBNrW7r2vzbZZxiLqASk9snYPbXNvdmGM3H": 100,
     "5GzCAanzSwBwCr6UusDi6wHpooekUegaLSc3bL6WC8ha": 10100,
-    "5GzuLJRHqzjXwazyXQgrgSfrUrax4G5YTkCjMJfC3xL7": 35700,
     "5H6nWWiPh7xgQsnpYgNNuugVvrocVFDMR5F26CqUtCV4": 1300,
     "5HM89ki2BcXmR74q3Xv6CJLGTkdCm5X559SRfJTMR5bZ": 35000,
     "5HMhPzwQDM2h355k8YTiMCV7oDg9vmcH4v39SxPPNATC": 100,
     "5HQukpz6fTY3MXkK9zDa4Vg7nRdTXWdyw5Reh66CshBc": 10500,
     "5HToSh5cD6Zy6MXmrnERHjJVnhhXEDCesh3dZbko7nnk": 20000,
-    "5HVa7Ahg8zR3FvjwT1TNCJ2ZCwLEuAetDh926jw7QRH7": 539257,
+    "5HVa7Ahg8zR3FvjwT1TNCJ2ZCwLEuAetDh926jw7QRH7": 529257,
     "5HX4dx5JHKviUwQ3BAWahtS353DDxKcxfBEBFhNmAwu7": 5000,
     "5HXBFi8KvxCPU7FFFBWBnTLSfVUFbj4cMhjsRZnMJxqu": 2500,
     "5HcdwBBncdXmJCMAmVvGWELsQMepiM5REn1Tm7ERqzGW": 31000,
@@ -219683,22 +224265,24 @@
     "5HxgWRoLA2F1c7Ca5ikEyfBsnhHTes9zQsWCs2qF71YW": 9500,
     "5J14WzRfFeTJpGcCL1xgu9w8B1DnV57dH8AsWpxtJthu": 1042,
     "5J16MdRzfn3TYuWYDSisaxfxMc69YJgX8r58LviStf46": 28100,
+    "5J1SuBuVspFPd7k8aHs3tJDxcYWeBPGL7M4FEqb5oNWq": 1000,
     "5J1dpGNDwyzXiE183wFifyHGrHsYAhfP5c3uLKnC5fGm": 314,
     "5J7AnfTp3wn8zsPE28kDSdYz58z849SUSN8dy6Zwc8CV": 4700,
     "5J8DTuLc3GMzCHV3XLpSTrZaiyUqPe7fuw7QzZHB3ovY": 5000,
-    "5JDZPQurujSiBkWUnDBi6BzdZ42VFGEAy5huEfm4exHj": 10400,
+    "5JDZPQurujSiBkWUnDBi6BzdZ42VFGEAy5huEfm4exHj": 50400,
     "5JMt7fKFWoKoAdiVNGGcVPher6UDgA7BD4SB1dC1EAQT": 100,
     "5JN13pgRQ3kJ3Rgkd4b4xsWPwDyszVJ4hQq7zW3MmQN4": 20620,
     "5JNQcajwFEYNdnDbfR8nm2usg7QqzbQ5WL4164F2mD6m": 3000,
     "5JSpD1pSUGd64J3paG4pSPEAfW3Bcc3D3B27ddK3T9eZ": 3290,
     "5JVFES7AKCCDFDv5BVnKoLH7xvY8sf3K2YNMFPsJMNGy": 30000,
     "5Jd7Hmrnbw4TkxU6qLLMPYp1k1oZwA4QLYcqUpTWKn7Z": 104000,
-    "5JfkSJvJ5UXENufX6YpSxV5x4XGtYu3kdEjKiNCPDAxG": 10000,
+    "5JfkSJvJ5UXENufX6YpSxV5x4XGtYu3kdEjKiNCPDAxG": 30000,
     "5JhP867iGqLPVZy7gMHpC9zCAtv7nABwSxtohVcwSqYq": 1000,
     "5Jhs2tvDfCQXQJdCf7mJ88vsU6yi6dgFmDZy8mmVMLUB": 10400,
     "5JjGDjkJgJTc2W4FHBZnmVvDsrPxPPvkCYsdaAFGYDSp": 71574,
     "5JvTtNWEyM3EEssWJ44SNQwausMDz9QZz4Gx8VQ6PDFE": 39707,
     "5JvuC7g5ahWjZX93cyHVZdUn4RGTcyXZNkGZs7ZJX4MH": 500,
+    "5K1bECjgE7WucV9EFFTDgzuusSz1rk35h89kUfDSAySf": 22328,
     "5K1cM8jQRkpwYwgBoCP5n7osga9tmfGHhn583tASC6hi": 5000,
     "5K2v51KushyyekHAiDUP6nvNGkgXdybh2oEK8xzKXWeM": 22000,
     "5K4rCgxGumuqY3L3nSnCiqawG5dWXcfvajFavsSHGtgz": 5300,
@@ -219717,6 +224301,7 @@
     "5Kf11ZFL34cevQWKG4BKugm5RYftUb8efAm1kMVrgkT3": 500,
     "5KfPUVpeT2vF2Na5hktmTqbTwEKj4Ys5P3PAiotXQNRy": 5000,
     "5Kn1872zvqF3WELbq5fnEHoR5hegdcxxRsYA3MfcJnoX": 9500,
+    "5Kp9PjTpzrPmNZTZUD3BW5FAU1YpuMDnRDQ14TJmf5Mp": 51000,
     "5Kp9PjTpzrPmNZTZUD3Bw5FAU1YpuMDnRDQ14TJmf5Mp": 100000,
     "5KpnMUGrGtEXEj7gU21ewU4xGF26EYKiDvFvHRxvnxtc": 5000,
     "5KqxqZNPdq5Peo8ELgHXioCkMshpU7mv1z7eG5cxzmWg": 31250,
@@ -219741,7 +224326,7 @@
     "5Ljx6d3TQWJ427poqEK8u4BuQwY6A8HYSWPa24wrbvHB": 300,
     "5Lk8LgbNieqw99KqhNd17iZE135jPvKiFjWyKoMYibua": 5100,
     "5LsgYA5SU4mUWi6BzMjP99xxnBgsm8UwqKZMNx63fozS": 20000,
-    "5M1wQppu3ZTNoPUschcB1gqQtLuVS9EUyoFXTaQHQATW": 96800,
+    "5M1wQppu3ZTNoPUschcB1gqQtLuVS9EUyoFXTaQHQATW": 88300,
     "5M41T7A2hWSjcAo8Lo47cRFWN6tcn4veFaFGzo8BuHuA": 2000,
     "5M4XeovwvPC7XmMabkTBFy856Y29yRVG2YZwzu75Nq9p": 6100,
     "5M5G6ChfouoT1WWi5p8aXoX4exnxpHWuJBgZYcJT4g5a": 9900,
@@ -219758,8 +224343,11 @@
     "5MUvAsw3bkdYLkerCmcYuuWJHTmxQCkdQJ4XLLecrcCu": 4000,
     "5MceLWvRG4NEkbEJ4YBtiatZdwcdz21atJMcf57w2mah": 10000,
     "5MdrnEB38PmwmKCQJHocTEaA1SmtJyti4YVwdAn7unVe": 100,
+    "5MkJEhacM85SMoCMQh2Q8FaWTW2xphCck4wqq3zUoPqe": 5000,
     "5MyGmAhQbGsgUiNsiGmosFbmDUkteGRmY4xfFpGRHc41": 886,
     "5N1AN6uU9MjKR937FR1uTooUM7Tam5apUo8ffGXXcEXo": 84450,
+    "5N1E6W2HBdUedTrLYwcXqEWGLSNnPBu1LJrdvsSsLb4q": 42800,
+    "5N1tpF6N4UGHyMWknRpXVV8qVLw37SDmwvUQtr6KPS2s": 7040,
     "5N3Gm12jJTvut1ki7fKizxGhrE3oiKwg4TtVMjjbkvxP": 13000,
     "5N3eHSRpYWkr7ibdc2Vdv6WbaWBMhLxXz7K3dLaQRpHr": 1023,
     "5N715m1HGi9PZB6KMqYjBbCRb1FnxEQmDb3nUmou8CBf": 4000,
@@ -219769,11 +224357,11 @@
     "5NKUprYPFaarDiGUzxYYd6nCcMhv4bTrwNnPd1k9coqu": 500,
     "5NX8UtvvLvEnvxJ6gPciFUc51bu5eUYXQBaRsmTkRCRf": 5295,
     "5NY5TwjsJnNgLdGoLkvhTXibBRDvihph4HFYGWdMMrJX": 2600,
-    "5NZznJGF88k3Xje9PZcQcvQBvbj7g4aVfE7YmNVzbaxw": 7500,
+    "5NZznJGF88k3Xje9PZcQcvQBvbj7g4aVfE7YmNVzbaxw": 12500,
     "5NakHnZNWLQPN1dgn5dgr2bEKTbdRAcC6iyauZySG4w7": 1000,
     "5NdwagCuwnrnoiSFSFfyZhvwHob3fJLinQSAjaqeKhCY": 21230,
     "5NdwagCuwnrnoiSFSFfyZhvwHob3fJLinQSAjaqekhCY": 250,
-    "5Ne7VrWz5DEPKXzBYG8LKSPzESFMoczb5xnq3S36v6ne": 1000,
+    "5Ne7VrWz5DEPKXzBYG8LKSPzESFMoczb5xnq3S36v6ne": 7000,
     "5NeK6K2W8AoX5fbYmecEaYC3vqDXPJshJqGGsNSYsuPp": 3800,
     "5NfCdYVESTUhhfPwrBuQfKjNqTB5sLZ1WDFjLgNfFGYg": 10000,
     "5NhGZSv5juGofS29CzReLYg9QBUjHTctapGJp2S246fa": 42000,
@@ -219789,7 +224377,7 @@
     "5PD4Ck6t1hu3C2UprB7hyVKPnDBXErEhJtDKk7i5VF23": 10500,
     "5PP62iv8wUeSL8eaM37kYTg5TtiDTxBD2cU6jKjB5xMm": 2000,
     "5PYc5qXUc9pCKss3T7eyABL97PDusonLrX5RQgob16P9": 30000,
-    "5PZ1X56pAMza2Mb1KJwACBsiNrb384cyyVdutTAmS6M3": 32122,
+    "5PZ1X56pAMza2Mb1KJwACBsiNrb384cyyVdutTAmS6M3": 34622,
     "5PbQbR61So9oeA7K4iXzSt6b17cQmYL3ieUhMMYT2BHD": 15000,
     "5PdNXZajcB9oC1wmu5SfsxvzJvZb8BTMtsqc1WrXYyeu": 20840,
     "5Ph4ShTNUqcaJgkMLEWq9rC8KG1hR4Y2ygAesaQy9QwE": 2000,
@@ -219797,8 +224385,10 @@
     "5PiRGk6jAN6tfnySZZqEQthFLHammep1UAFjvQqgc1fQ": 67500,
     "5Pjch8Pc3vMkK4e7JZnWGPUUG1fF6kTncWumCKAis7JX": 5149,
     "5PkKXzt3kgLcGnjy8rv1DKr1KpeR8pLQ5B9aYX7sdtsv": 1300,
+    "5PoPCmA3rNSkHB6hEhSaTsDtGtDp6NKEXoY8RoakytaL": 3700,
     "5PpK2pTwcBYBwkjN7jeYCpzppwRXfVtoNMw6u7Pi61B1": 500000,
     "5Pqbu4NXyFB6uNUBnbxSs3hwjWXj3ssLsiZiGBkaWtkG": 5000,
+    "5Q2BRdXuDh9y6YGvQ236xAyteNhWhgjW5siWeeCqZnuV": 7300,
     "5Q3hKwHDFk7We41Qc7YMdkjKwDPA1avzNTZiaH4WNRSw": 400,
     "5Q6c4kVFiwe6AQECNHtsJ6Hmf1CVNg9QDJvgHo7i8Ecx": 5005,
     "5QAE7UAruPcBL7LeWrrRMUBdw3nMSGcMHSUnq27VPUnK": 400,
@@ -219808,26 +224398,31 @@
     "5QMiM2wCksKf16BMQBXNYTSYeie6yzxqZUmnbM79AdSg": 194,
     "5QN9CWhJLsD6r8Tg31DVkf5xR75u398QC6ibGZtJxnp": 3500,
     "5QQ6H2t2sQ1oJjrDioF7tMVRD1vpA6dCA4w8CFPtaFSK": 10000,
-    "5QUVy4hiSFfXQuro94x6k2vSWdeYdCe4wqPEXzhuHDGS": 1500,
+    "5QTsN5vdNmGDG3TZeUUFriqPw1oWZ6ZJG7jrvf3nRknV": 49128,
+    "5QUVy4hiSFfXQuro94x6k2vSWdeYdCe4wqPEXzhuHDGS": 11500,
     "5QVrPW1GAzqHmGZDPmt6r2fVYd57dE28K5TmpN4qiQ8j": 5000,
     "5QXh6iCPY9TWjYhko5uXRyar6wRUDDa4UY58zs4kc6ma": 800,
     "5QbJG1LL9ZVBUTGRaCTSk4ggUptTyLLkH9gtQdYmrK2k": 700,
     "5QdBD65JQ5rKs3kJgq59bsMtJU6SiYsNhcR2Srq9EUnk": 10000,
     "5Qgi3QCLetzYxnCJBRNjKoJtgjXdh4KFabRcvY8daNKz": 180000,
     "5Qk2iGwhkaer8QTiNLxF9yHocpTM5B5v8WNQSUzriWjo": 5500,
+    "5QprLngoUsf4N1EihQe23E1VuqANEFkfB7tPVd9eRHqj": 1000,
     "5R2AyfmTiAAqJ8vmzVSCcDg63Rrnht64f11T8jdofmQu": 40250,
     "5R2epkNHw58nYNJAuMYNyEyQMJngztaBJCfmm3RvL73b": 14000,
-    "5R49p5Ptzb36WydS8XfmGysFdiemNjppc2CQ5JpHjCgU": 12800,
+    "5R49p5Ptzb36WydS8XfmGysFdiemNjppc2CQ5JpHjCgU": 5400,
     "5R4ecNEEpdQ45zGiSnyzBN38wfxAZES1WmoMYz1anHYq": 100,
+    "5R759mkfyxwQC2yaQPLWwPPysxTX6JnBKLYRRH5ry9ei": 30000,
     "5R91unzksqoSSoogQDF4ht2BXYxax3ZRArZGzt6BfCBF": 800,
     "5RFxWGo4VZxQxw74Pf9MWizTzB7y6WyhSCDmrM5fwUKT": 9200,
     "5RHjSFyKH5M7eY2HbyPfM9pD8c2aqswkN2gZ7BCvBQ17": 4000,
     "5RMmRQFZEKE123mj7t8JjGxNoWxDWuCNW9s1CrZZeF4U": 521,
     "5RNiidx82o5vnbjW181hjovMPwpEmxRR37AQkuNWzxXF": 12500,
     "5RPbvfXUe4ygSQkN3CZw9Ayob5UDq3f4R54kZNpWZFJ9": 5000,
+    "5RTiiL3YrWrrnNLjMmLWoEeDWXPqXhcpyvfZWi9DL41d": 72500,
     "5RWweqPq2WH6BmauZH52rgRrebsSsP7AS67mBH3ZHBKQ": 100000,
     "5Ran16hDwXZkLLWtmNmL7EGJfA9kZPxLGz3f7nh1dDKW": 112500,
     "5RcSsKeMkciyftnHA1mSzN79XGFrgv7uYoCcbobmT3St": 4000,
+    "5RfHi8Cuzo9zW4C6HtFMmmjTCvxd9652cGB2nJbNsmdm": 91000,
     "5RoA2zezuZB6d1Fpsj6Ghma4SHsTLZ8uJMMBcc8YtcNb": 5000,
     "5Ry2WLGsGPoUdUtfERsYXcrVMCzVgfJ2rcKX9TstfNH5": 4100,
     "5RzC5tuqEk3hnA5QCizF1xA4JwyWivx7wf2rvCodv7wF": 3400,
@@ -219835,13 +224430,14 @@
     "5S4Dj9AxGNJ6MfNWkrvfnQ9xZFoKekRmfr7tqnuEFoso": 17500,
     "5S5w6fNxLhV8nePTv98NF61XV3g1AGPLjAkaTS1VD6QX": 10040,
     "5S929wHe5fqehVPwznEY9b8WkDfHM4n9vjgpYk3K8Yjq": 46270,
-    "5SAxBbQ9bR6pDQGATHcTELgxQ7hEucZnhkL9dAX2NEQv": 442231,
+    "5SAxBbQ9bR6pDQGATHcTELgxQ7hEucZnhkL9dAX2NEQv": 426224,
     "5SCj1YFVR4F6qWUXR2xJ7MYbrvEuTZfPo56VWjXKMCxZ": 3000,
     "5SLkL6nJyBEaCR3Yf9igrNBVNa3pSaFmhbfkzsM2qVrS": 10000,
     "5SNdsvcshywHoY6oeAGrkvy6gZdnPngKvwe9aBVJqjZ9": 88696,
     "5SPFtWFUWreAn4vYdHmpHHa4xcirBGFdKb5nUbCL9b63": 968,
     "5STUst7LapWi8Jm5s8LwRjcw8fPnsrbpUbUwC5Y8vFyN": 51000,
     "5SUxigWgqrUxYUTnB3Yod1rWPkkJmiwgtTwRqPqSQKJG": 15000,
+    "5SVMgufSNwekiae5LXEFJ4X9GedPy6R2KhRHTJ4QSUeK": 200,
     "5SXF89yDKKgSMYNKQzopgHpX2KxzSKDT5kEptVkeSAzf": 30800,
     "5ScypwTYFYaf1WhHFfMaYuhgkY6xNbWjR9HkBSNSXVPC": 2000,
     "5Sd4t8XVkBhrTe3b42zGwrm8anYQAqcdwg2WTWXBvRx7": 95000,
@@ -219861,8 +224457,10 @@
     "5TQGAFnnVEDoywYbHKQbyKtAa3L8DExsDXgPhSHkXZSQ": 5000,
     "5TRfcFgFdDuSk9gMBdtbVsiGbgg61TRvFwJit5T3AHR9": 1400,
     "5TSdg3tn7VcEXRFw9q8caxsAzzNXkk5PFhGo4qMrBinq": 4900,
+    "5TT8RbkZH2yvkGmVz7P8X4uufyxWHj3zUpc8sG1voCJ2": 204340,
     "5TUb62cAZHkdBUHNCUtsHe3SJjNsHUceJuJoZuiruUoV": 1000,
     "5TUg791nugjKdWBwSDrwrRLaALPMKLwWPeE7dvcrH2z": 16844,
+    "5TX2fZfXKt5PWGnCuc3nuAnqkBgWJMjdm3HToTrS78wU": 2600,
     "5TYthRk4AYYXPVyuwmkR1tjJMC2M2uTARYLfwRi2Kkid": 3210,
     "5Te1VCpcHFpkBPHePictqJSebNBZrR2GTbxzkZ5b5j4E": 2000,
     "5Tj7wfoQ3vQ2z3YsXMxoXF1MhiViaSb53avDYHDaQt2g": 1023,
@@ -219881,6 +224479,7 @@
     "5UV8WkQQoWkHNaNArqW49c52jDW9vbLPHUeriEu6PQVV": 5200,
     "5Ugiis7TmHVMM22A2htNM7m3REvm7kbY6HDrFgGPCngN": 25340,
     "5UhBWSPx1YwC8qEmtJJYCumt4EoUFSwpZTNnHDLvcqtg": 2000,
+    "5UjAJxupkmGwrzVwfdzbBstNygv97nsLceAtpbhPeCvb": 22476,
     "5Uk3oabpcpxGmAHX7KQ5fq33gJvBMVZSJk9MsMNRExax": 1700,
     "5Unusbf8NyVhStsrhn5Q9a4G2e5DkhuaprzE7LYxYBfc": 3000,
     "5UtMvZKvbca1inYkVW3utiPX5XtZ84DHxbxZcKoPp6hT": 6500,
@@ -219890,14 +224489,15 @@
     "5V6MBBt9jzBwPsnQC2ZpCyWavsM8hAGohnzF6bTjYY6D": 5000,
     "5V7Hp6TzhvCdqSDujg3YYbq69sowTGM1zwKDJ8p89yba": 2200,
     "5V7T1nNcRZtVmMJcCydwJSvK79MYR9SNudAkUu1FanRX": 100,
-    "5V9KkxpvUibUuHvbVrSUeL29NQSxsPQa6iGRFnxRYcS8": 90800,
+    "5V9KkxpvUibUuHvbVrSUeL29NQSxsPQa6iGRFnxRYcS8": 99900,
     "5VArxUDf2tY2wnr6owXkYvTYi1g5Y2gANudvycjHAH3S": 4000,
+    "5VDfuQYkauhbA1HGDfgcCim2p4XbibDRy7CBiHJrXeTg": 1000,
     "5VDgfX19UXayzzykN4SKnwuHqRbKV25C6dRbHKjdG2DX": 5400,
     "5VDwgAsxDLXDNoZiB3Lc8W82rdRNcQZfrsToUZ5N1J9w": 10000,
     "5VEPHe8DmKUXW6NyHzoutUAn2ko6aB4gTdkMhzjfPkeU": 151,
     "5VEcCVRh8fBtHS5rdTvuMrZDhxzS9SYNU6tZmpuVvWXZ": 314,
     "5VL6hcFGX42aQ7mU3bqmH6vwFnVP2dRKmkXtT23m24TL": 1800,
-    "5VMaafeoMzGF6tVWpA8yqwUH7u71Jq41c2VTss9jMs6U": 10000,
+    "5VMaafeoMzGF6tVWpA8yqwUH7u71Jq41c2VTss9jMs6U": 15000,
     "5VMehSjF92kUqZWatDvLwhtjYSgrmaHtukZzmAWZj4Ge": 5000,
     "5VNpJfJVCxrRvToDgJTwek7jrCb2PLQSDW7F9181WSJz": 2000,
     "5VVFJ6zqS8rGrpNMSp6fQnTB27WiDvJm7xNG1geenvfG": 100,
@@ -219918,11 +224518,11 @@
     "5WFQYQsvQF5iKAKr5hopxjVua5az3CdM7LipFArbMAYs": 12000,
     "5WGTQYMXGguKMX67xRknVswH9HXTH7Zi1KYdSYqR12SN": 5160,
     "5WHGVhtMw3m3q8dCXubmH6FyPoUD82jTU8sukgHEe3nA": 500,
-    "5WHd5RTmQ9QYxmHgQUznggiq5p2BDJtYyyY5DvjGKfaw": 601014,
+    "5WHd5RTmQ9QYxmHgQUznggiq5p2BDJtYyyY5DvjGKfaw": 139014,
     "5WNadEuRqw3RR42HQspQ873zvioGU8tCcLKepEjn7MaQ": 9000,
     "5WS3e7xi7QxZfBDoa3bos2EWEKGc7ugnZFyKfC64sWvV": 69340,
     "5WTxBBucQV2x9uUPGXpPcZcSEJtioAdRSuH1T8LCn2Fv": 522000,
-    "5WYzEUPe8apC7mBtDFi77VSMie6eyGHUN3J8EaJRjjVE": 3648,
+    "5WYzEUPe8apC7mBtDFi77VSMie6eyGHUN3J8EaJRjjVE": 29648,
     "5WjHr14sTotPFfXHLZRrTwA5LqbYn4NCVDzxiEUYEjC7": 2000,
     "5WmNknGa3KSWLZqrgpmohUQMD5mMJU9FaLsVtDu6NRNY": 64700,
     "5WqBV6VvbUYGsyVrBuLCY8GFJHLTtRmR4TW5GTAFQDZo": 62500,
@@ -219932,13 +224532,13 @@
     "5WuFc8iHbg6D2YV33YH8ADPw1c5vdpXnbNsFds3JqXSd": 10000,
     "5WvoswyLw8oy3nriags4zGdFGtGS6QoiTwd5gn7nVVBN": 5000,
     "5WxB12yTK2Z6qwHnMaif3imbGcjjWsXJLubwrxdLaYP9": 30800,
-    "5WyjceqqeUhCKzrUcyW9aHVVXDjV6QMyTKrAustpDaXW": 120054,
+    "5WyjceqqeUhCKzrUcyW9aHVVXDjV6QMyTKrAustpDaXW": 109954,
     "5Wz33janM3uGVuk69V5b23CGoLRjo3FWfHVGJf6CQAfb": 2000,
     "5WzZSP4aLUCCyPr2dHbjtWoRg3gSesKbwpkRaq9i7RFB": 70000,
     "5X12KpZoJKPYmceUFPJZXgPsptMTw4J8Y4e5BNRNucjN": 2000,
     "5X1T9RZsgbvHFZ8NSSxejvfQnqcXRUGE7hycGgvdJEAL": 1000,
     "5X2upigAJ2mbQqYxsm5d4VySwnt8D39sJAxwPjLSaADn": 1885,
-    "5X5TtnYM7ySRKSaaUmqxX7YDM8QRPQ7kQYM85EdFBYvt": 2001397,
+    "5X5TtnYM7ySRKSaaUmqxX7YDM8QRPQ7kQYM85EdFBYvt": 2004597,
     "5X5cr97B285JfS5BDMne49HAZvQLCJHhAjru1Q9hFUV5": 100,
     "5X6URVntjrd9Co7JJZGdr5oSQbVKp4G9DqTG5WWrRG5G": 2000,
     "5X9539TsP4kxjqNjrDHYA4yHdALU4nnHqZMhtnLexf9v": 1651,
@@ -219958,8 +224558,8 @@
     "5Xs36n11R26ZWvuqczGKGgkMGYZHHhHBKA5Ae6T2aBFm": 900,
     "5XtzxjRn1DZPu7ro8z9KpoA4zLSTG2BTrqrRoMy22qSq": 6150,
     "5XxkpheLPPcEKEgnTSs6ACuQ4BkiDM3BE4pPvksE9fZf": 100,
-    "5XyM1tBWYQhqahqSLPJFgCss7JyPorh7JKtf6RQCz3cv": 34801,
-    "5Y1udTmY8rJg6kTttmzCVpM7FcrvVytv6oDtHaEYKG9P": 4542,
+    "5XyM1tBWYQhqahqSLPJFgCss7JyPorh7JKtf6RQCz3cv": 56801,
+    "5Y1udTmY8rJg6kTttmzCVpM7FcrvVytv6oDtHaEYKG9P": 9542,
     "5Y5W6hBxxsfTiacjzoLhMYBumEEnBmHAGUqbrt7kiVV1": 11000,
     "5YANwJfPC2tZmNLtrWvxPRJQdtMaYyUL5z9S3oTc49gF": 2000,
     "5YCzVj1mxeYtsPnnpi9Dvkaw3cS9mKJzQTC6nSL6myi2": 7200,
@@ -219971,16 +224571,15 @@
     "5YaGqYXJh1qnMxdZPECdvs9LTSNXJW7nAsPSNEGdoFXr": 2500,
     "5YaNhFZhAioveTToGZBmUba6fafPRzKRxJn23L4gUcpv": 1051,
     "5YamH8bLeEW3EdF8HB3EYu5RKGYx3MJEUeR7mcUUSVNt": 5000,
-    "5Ybnex1WBF1BJQxJJGLYC5vDsmE7mLMnk6jybhW8mGx2": 103928,
+    "5Ybnex1WBF1BJQxJJGLYC5vDsmE7mLMnk6jybhW8mGx2": 93128,
     "5YfQUkyADfhBYkZ1TKcvJmxCnFQKuVfKRJAX7t2PXn3i": 141340,
     "5Yg3ph9YKWq3mKwGHGeqo1oisGihpM6yKCjW1jRZoeqW": 14500,
     "5YghJ6LHCNNFd9cE2TsDKN4qUT1GimtZoL3nm1frgzbw": 31700,
-    "5YieQ3VpzrwnzqtznRSQg3CC2U9ud1EmHdzuk6JXGKYN": 13000,
+    "5YieQ3VpzrwnzqtznRSQg3CC2U9ud1EmHdzuk6JXGKYN": 16000,
     "5Yj7NB7dDt9xs46uPXYRzKq4PVG4bGJjif2Aa9v64PMM": 25000,
     "5YkfcdqhuBhyCz2pE7JPpM8KcTFwgMAoNV9jLQzJXhiY": 50000,
     "5YmiyeunkqvQPvAsrmP2UoFamW6RLtdSVVa2R55sb3n6": 5000,
     "5YoJjumbDi9ETrkBrXbukEim4iopwuBksgb2cZvRbrJy": 200,
-    "5Yorwx91is3dKb1sDsoeaJ6dcQm2bRXJCEzbzS4Upiij": 2000,
     "5YsKrVKU5rJSn87QdJA7d4QnwfnizXyeP7D67rxfFV35": 6500,
     "5Ysq78bxFStGH3WftRAYdD4A3eLNYK1KwGkbW8FcwWtL": 10000,
     "5YtXUNZ2hZujD6ha3hV595JZvL9drH4mLEqH33YhevnS": 9951,
@@ -219991,12 +224590,13 @@
     "5Z4Z59NNfa1Q7gneZC5kFDqqJUjyXnLfuv7dXYFPG3b9": 500,
     "5ZBb1GpctqRWJT5SsmJWqzbxfgMvT4VXbaSTbxxR1ZoC": 10314,
     "5ZD3ohRXDSP5vzoTMepKADTLSBGLUtyRwqeTBsFswaF4": 1000,
+    "5ZJ7XbPALgE17DE88BX6XqoJZUKhKJPnutiu2jwQD66i": 15000,
     "5ZKG6caM93D1LfJnCg9C4pK5KcB6TwPczH4NhYnWA91L": 5800,
     "5ZNn1CNi7b16XdZWDBpN9dxfu8EDuQcK9WismqrXbXm3": 2000,
     "5ZPLgxNfxtPBMR8jLSawgCdoAYVdW6B3uzwB1RGcLvsh": 100,
     "5ZUt5ikgZt6hEWnXNWh96A5ngGukpLruGr64ezDBth3": 5800,
     "5ZVtyQpnHBg9VM7JdrRbZvizt62RhWvudMLFwvVZKL54": 1000,
-    "5ZXn7EpzfJDAbxrZVptxVvVkyfMN7K3PLCnWNSoXj9LE": 38800,
+    "5ZXn7EpzfJDAbxrZVptxVvVkyfMN7K3PLCnWNSoXj9LE": 4930,
     "5ZY4PXWbSkSXHPkYUuxej59Dzsd8wGmDkYYejw9m5Hu2": 10006,
     "5ZYkxekWyLf2kLSuFuQptKRiSL8okk4xm75tcG2fLRWx": 270800,
     "5Zc8rSk63JixAsXNEYZWhxZga34P26BbjCMa1XZhMvnp": 35373,
@@ -220004,7 +224604,7 @@
     "5Ze5xSK1xeot5Fg2YuFytHjTpiHyceyvDUJ6wZoybyWL": 3000,
     "5ZerKj7Z2NNM6X5emcHB27GmQK72gm9d9YFquZb2LrHy": 28000,
     "5Zm9Ww1mKk4P6LL9iBSVr2bWk3hqPT78NiAGfMv3fcQp": 10000,
-    "5ZoWS1VNEgfJU5nkjGT11wxydt1AEw5BxEQUh9bKVkdS": 314281,
+    "5ZoWS1VNEgfJU5nkjGT11wxydt1AEw5BxEQUh9bKVkdS": 214281,
     "5Zq9xoFbhUCpwcDaxGiSydfup2kx5ZnBHER93mfvq1PX": 2800,
     "5ZuYGRoqAsU7ayau9xCJF2rmG3Xu7X6NBnW5TpxJZWmv": 718700,
     "5ZvabJFJyepLiLXMiJPzhjaL5rVZL6yB42v2vsnUE8uJ": 1000,
@@ -220022,21 +224622,23 @@
     "5aaz1ZpZVXnViXfWbZmMB2KcxMzrMa6wqU48HiPJpm3M": 19000,
     "5acSsxaFiZn14X1sq6yjtfua7Y5sXPsfDgdAuQKkjuJd": 2400,
     "5afe5m4MufhBRhmGvPruSsuDdfRREuuKPy7BjsPoWvkh": 10320,
+    "5agAmtYhXKL6ddkiDKps1rC65QwH5HXCwmPMvahGpoRs": 3900,
     "5ah8UcvvnJqHVNuaubW3ept1VUNfhay3HbJX56ao3MeV": 5000,
     "5aj7vee2D8BjdV63QGiyx5yfXu8zuhydo6EG26DkZkwe": 100,
     "5anKHNTLFk31dh3EgBMbfRSW738hviE5L6AJJWGwZnBs": 3000,
     "5apYVhXogq3ZLhQpwPK54NLWkGVx7WuPqJ74PDsKNxQW": 5000,
     "5aq93mRArkwVkjU6R2PQ7RAvyir5diALW3RQ1JwA1mW1": 1000,
-    "5av1GbM9fNTRFdKjBDyX6Ao3XQS9JATa2fntiXiPrpA6": 29700,
-    "5axD75W9C8hqTK4NCgFbtrsDYqnXDSG1fGbn1MSy5dHV": 145000,
+    "5axD75W9C8hqTK4NCgFbtrsDYqnXDSG1fGbn1MSy5dHV": 174000,
     "5az4WoYyv4WNMLSQMcerbE7viAXQXPU9B4GEE4eCgqWn": 25800,
     "5b2BzEtaN5puEdrz6JBWw6xz6J37BJkhaUgqAJyc8j7F": 2000,
     "5b56G2Y8ypy3cCY5YcMQrDPvA5DDRBQSpfNF9BR7ZSk1": 521,
     "5b8c9hSQaS5aLBQmqDMqYXCAEWsg39yoZKtFRVg8Hw8q": 14500,
+    "5b9w36aWLQ1HDdj6dYS8vq2zv8t8bXCnHk5GaafR7S2d": 5000,
     "5bEYCJdbUTw5Y7xVWPzhs5D5GnZKtEuQxat4eXzu23kR": 20000,
     "5bHDc21rapufaokvRC7SNPoQhPjRjZYURquwuansftDu": 4900,
     "5bHgxTAceZhE97ifAyNNbGmqPAWtX8YUPg16WZqD8soV": 1238,
     "5bLeR6BcHDgfk79Fq5TtXichG1bcLZsevGSUyxsofPpH": 780,
+    "5bRkgf97P7pEbzGLbbxALAchjSERtX4o9ZTNBGmJWyX9": 110000,
     "5bS7hPve2vgAkRSG7cbgxWM7pHAp3NZoqr9VoAywoSKn": 5000,
     "5bSPuJNgzAYxwbeAqvXK9pZ5vpR1Dz3eGcvWRjbrLK8a": 100,
     "5bUMdtXmhApiF3bmwvtmjPRjXWj2GFVFYdnRax6s7Q2v": 1000,
@@ -220048,11 +224650,14 @@
     "5bnmes9syUhQhHH5DHZy8LAeqUQes5bAZb67HgjAtbv2": 8043,
     "5bpYjcqJxAVaDjgXaHyCdFdjN7ck861fugqxnSW8Kyu8": 47600,
     "5btTMbKXiiV4UutDtpqW9BpjaYjhUqbBmbnd5Jk4U3ih": 4164,
+    "5bvevYEeBzSysZttdVKrJ4xncqvFU5htzz9yGr5CHYsT": 5000,
     "5bwQDs2PLdZqywvtPrZrYEzR3LneXL88vKaBAPiYu4Do": 1000,
     "5c3GsFDthT7S8UpsLogYLjN6ykZQcv36Lyedq5RSku7i": 5000,
     "5c4z29eeubMhCbA1SprL5sr5E1qWJbFXooGr9AsaRyby": 5000,
     "5c6XpFVJq1cuBTRTX7Ci4rLexaHQh85gSEfQu3Peu3hL": 5500,
     "5cBbkyNYtjEpxMgF4WVuSeutoNYuEoPkCegcxghjUevy": 7200,
+    "5cCv9h9oiB6RxzYUQ7RwjGGmn24LRexY3YhAYWynwPE": 10000,
+    "5cFbktURJoZMMnkqcQmErGG4vJWANGfpFpmVyFUT98Qk": 115000,
     "5cJWiHzu7tzxW3JRnwgdx4wXEt2YLsUpCdJ1x8b8AMxy": 700,
     "5cJpsJ7tPCbDLrSe4mCSUEoMkCV7u6Wsm5rhMmRBQPi4": 7300,
     "5cLQrte15u8c1us86KZVeLvxZekMBNsjqosYHWh9Q7s2": 300,
@@ -220061,15 +224666,14 @@
     "5cQJt442bCVT5tRiBybDjCze4NTBBARjtMTuVReMjNk": 100,
     "5cS4Q6uSi91Y5pBLbhqAUW6ZTUL41kQjjZUoALRKNN8p": 3177,
     "5cTW8xtq7HM8XqNBoKdea2YRCyn7y8DuSEDqb5u4Tj8L": 1023,
-    "5cTk9YUZdiTdBx35BEVohyz7CJcg9sWRrgXwSp4Jgjc7": 160936,
+    "5cTk9YUZdiTdBx35BEVohyz7CJcg9sWRrgXwSp4Jgjc7": 165248,
     "5caxCpYFDn33oyoKDisRXztwtV2aRBtsXKadz9QFqQTM": 4450,
     "5cbi9vKggMjT6qh2m5T5DHRdTdjAkt4HEAqFhMqreWwJ": 3000,
     "5ccFrprF7jZ7FTZNnZYyeuaU2fBLyWrs3zZC9PH6Rk5L": 15000,
     "5ccyX7tncJPaevdxBWjTe6Bh6iZekNQozxg9hafivTg2": 3000,
     "5ceC5B658cU8gvmXpPj1vMxeyHto391dMNh3FusMDQTm": 10000,
-    "5ch4X2LwMGCEeAqPghunc1S3p8ir15S2baJ3nWtBuyEp": 3000,
+    "5ch4X2LwMGCEeAqPghunc1S3p8ir15S2baJ3nWtBuyEp": 3500,
     "5cm4dX561FTXb33AvnwJtbERAT1PYztwxhqEKQjjqtmU": 12500,
-    "5crzcsvQqK6CW8LvUofC74nd2uJSETKpn7vv1dedhoQw": 49012,
     "5cttFfeQtXuez8zZRGf24JkqFxqtyE53Gz7fvFpkcdJ3": 22300,
     "5cut1BSDCyUuuTmM3ZTdDac2TdGRpfQCSTApThNkzmwW": 161686,
     "5cvrfDdtSQNSBuMs9EVUw5Wcjy58nY9nwwNKawWoyeEo": 4513,
@@ -220079,12 +224683,12 @@
     "5d7cD5j1jHdKV47t6MfNJy5P17HgXn9ur7N3bmAKdifT": 4600,
     "5dAaHqDpkbwXuRvVyNipUNgMhxorAKNNvwApjpjN1Cfh": 6451,
     "5dBMRz1FCewiyFZuCoXAwNghPQt5ovDSLXYdZx8nAqv7": 1011,
-    "5dF49fi3bXCas7ByoDuMd5N59sh1ZM4WWtzMAkZruveq": 61600,
+    "5dF49fi3bXCas7ByoDuMd5N59sh1ZM4WWtzMAkZruveq": 75550,
     "5dJZoqff31Nfmbcc666y6AvTSnqSduEBbSZLDKHrx8ma": 1000,
     "5dLuPAWz4n2Kc92jjkXFYCHpw5BCXpQiEPGj31pdiXyY": 4000,
     "5dNFWpQ17npkCtHHjdbNo1V4xJLwcyaQbUxibRF1qeWf": 40357,
     "5dNKbMnxmZ4XQPwqiuQ3ot1pHsFixqV1M57sousKMtim": 5055,
-    "5dTfJSUJrTSDLe8bTRY8R8k9nvrMWuguGpz6deXkK66V": 46000,
+    "5dTfJSUJrTSDLe8bTRY8R8k9nvrMWuguGpz6deXkK66V": 76000,
     "5dUjAJQFhWVwiRF5W62NTodQLyxtMciaeFG8wgv8tgGT": 1000,
     "5dUjvpfgQgGfCJgzfmDVcAz2AfAb2wJNbjV86jNwCPTy": 5500,
     "5dUvjCGdLh16daov1TgWHVupZt2KDZWwBRVDrtGdaPa6": 1000,
@@ -220093,7 +224697,7 @@
     "5doopfERvQ2SkPt4ssyQN7TSsP19FvW8tdXpA5mLM8t4": 5400,
     "5drt7PiDKMu6CWcu5d3LGFSu8FZdjtXdPYCHFQSVtgQU": 2000,
     "5dvdciqFMpFkM97ingPC6i3sw2tPiyo8xpDv9Gi18498": 100,
-    "5e1vdATsyUhK89bPprjQt8CWAnC6tqanQsUsStDQSpWz": 28400,
+    "5e1vdATsyUhK89bPprjQt8CWAnC6tqanQsUsStDQSpWz": 400,
     "5e6AUpis2AC7B3vf74VRAGBsfs3CbFdHHWuomamZjiVr": 1000,
     "5e8gZ9YuTq8vNvbCgtxcX7afEynytxGimXKq2gMrzy1h": 20000,
     "5e963QkDUiFcsGW6WXcJXpD7dLfma6fZp46EKwKGbouu": 4500,
@@ -220116,11 +224720,14 @@
     "5fBs4vh9KfU9YwNoo9tFkx6oJw7z7Tut3RELuvjVdgFs": 3000,
     "5fDnWcvpTSzghjo6oGRuQrPyKX8i4VWYU8r3u73ZCkiH": 240,
     "5fDyNhx3RveYxGDxNznutt6kSz8sQ7tzrStcdmrBwWv7": 10300,
-    "5fEk1AQWaCEKqWVqVydvrHHiuFJGwg7aEWvkcTfw3gpz": 100117,
+    "5fEk1AQWaCEKqWVqVydvrHHiuFJGwg7aEWvkcTfw3gpz": 78507,
     "5fFhncPHhKgyo17mEBL5eRhBgeKLiXYsX3BYbx1XadoS": 5000,
     "5fHySH8YFfqne1MR9siF4n2oaL5wqNnGCfxJBHrm4jbv": 100,
-    "5fLqFdHHCFBE4nMJfdH72ZunPLz7e14cxi6Upb8KWvKm": 9068,
+    "5fKkJQsCAPKFH5nf3z5nN81VLT8EqC8u1Z23LUwFutDY": 9636,
+    "5fLQq3fB5njcpJFEywUF4dkE3VgzYCYWM8qCD8wcKMVc": 5200,
+    "5fLqFdHHCFBE4nMJfdH72ZunPLz7e14cxi6Upb8KWvKm": 4068,
     "5fP65be97hJqyQvWH7Z5LztjYZs6Umr84vBtZn2tUCBH": 500,
+    "5fPfV5tstEC3MNprikPVqPBQdgSLCLmP84sUoC7LagGx": 16000,
     "5fUuSvtiJW7N8KpWY3geCLsNTje2XpF8B1RjeCzbjdQB": 3500,
     "5fVR8GYm4SgxtA3PeEKfuk6i3tcr9DPF41mN8dAkG57V": 26490,
     "5fWF4ndiz5ARD2nYxv1HW49ym5V7aN4noiwGGujV36ML": 10000,
@@ -220129,6 +224736,7 @@
     "5faw7r6c5R2KcP5JgRMqfX2zMkEGTcSBxsY1Qp7FM6jd": 2000,
     "5fbeY5Y3D7k78zLh7nQko3jdsJiATeDuR3FDZxjhbQzr": 1000,
     "5fpHasuLnuRKDYxNsmJtDU3L2KvU56ZnJRH9DSH5GPdQ": 2000,
+    "5frUVaTBFf7MZZUH4kHdsGbyNN1ubGtv6WF9MsjVmMje": 1000,
     "5fss3X4NjUpVij3uWSV3GxqCkfMMFtiBivPrZpd594mp": 21020,
     "5fu5KYiwfEeuNyViZLUvRUA54Cu4BDsbAb74GapC95uf": 1000,
     "5fxw1hdFzMyuntVL9TdA4kBStCWyCcPrvUYA1EEuNRaH": 5000,
@@ -220138,7 +224746,6 @@
     "5gSWEun3pyG4Q2FxDXpigzipkknxwBFYbcKDihauAFEz": 77484,
     "5gXgkPcnucbv4VagznhAzWxcj16WRwpbQhRd4igMQ1pa": 64597,
     "5gZqc2JbWMTbEfh9YNsCbKdvR5W1PuQhZ7nVHFrBTPDE": 386,
-    "5gcoF1B8Du5GaBkrJTnWRc63odiHTzKiXWS1wmCkQKkz": 1900,
     "5gczQwGZwrf4TFu8LSKTDwA9cMygnaaLcPUjiYrDnGzu": 36000,
     "5gebLKZhnxXfPp4w4SE5exVNN5XQazuHHSCauVMiXHaK": 1000,
     "5gfbXx3Pbe3AdQ7T8KSeHT6mvXVTANq1rGf4TR3dN1Lo": 5000,
@@ -220146,16 +224753,17 @@
     "5gjZHKSJA7y5Lfu8VgNEs6SxG39j3YGESUM8VSSwM5KE": 10000,
     "5goTFH29BYyVCMuGgwkamWZkrF7HTH1mT5ifeDZiG7D6": 2005,
     "5gxjUUoxT6xBvpe4j6WHq64q2K4au8Y9UYuatfoHAocf": 500,
-    "5h3iAA6Ruir3PEvnqWmvjp2PBtyz77ZF9UUhtgV96eoy": 12000,
     "5hAiGj23uEcaWgmsFe3uCWkLMbkmzwTqK34186PvMJCA": 2000,
     "5hCiFzuRhkvvULUtuhp4DhwhEtnic5m5rYF1fhNMQQKC": 900,
     "5hDJw5g7wU86AwAoMU4FkhtuvtugiQchxJmiFNoPpdj8": 1011,
     "5hDjrLDdKt9ZQPrcqukLbPgCbCGEGEaf3EGysSfb6weK": 200,
     "5hHzKPMHoJpR3wERBvrc3tvVS5qXoGP1D2h11q835EZp": 30000,
+    "5hJPFfRwmyotm5rS7FZgcMGeHt6nZJqb6yZJTAFmVcR1": 100,
     "5hLmGvkueotCn21ua8bndzLMdqxz8PDeirDaCxfrBg1Z": 11000,
     "5hP7UnpbkFbC8qAtLtiMbw96vtH2uKico2RzWoTH2CuL": 932,
     "5hVfqv7Mhx2LQxczfbtcbCuz2aeZmrmhDzgYD23tBS4h": 15000,
     "5hXjua4p28FtmTn5uJcZKpxzD94bT6JuijyUxRhAKRAi": 10000,
+    "5hZufyf87RjMR69pCYQfGHKiSXeNc1skGdoX91qrdEyN": 13800,
     "5hfH5yXgASeZMomLKYCULo1kZv6EWxMQVffGNNENNLF5": 15000,
     "5hi1GvtgFCCWSDJgA5Hzaro9gCfpKJXD6ufq3gg85S9W": 10000,
     "5hikv4SFRrWmKrkFiAuuj1rPjEizWcDRC5QxL79hRUUR": 1000,
@@ -220163,12 +224771,11 @@
     "5hkXhEP8x9ehi7SL3LqDoYcvyp9PRarEvVq6XfYg3B8Z": 100,
     "5hrtezsf69cYLaTzcowA86VtLvzW4CQdvBqDReci3knk": 7000,
     "5hrtquNxrN3p52khq55pKjH3bQ6uxxe11SfZvTCSdBfx": 16628,
-    "5htQbxXnLaDj53QH9dfGxE3KMjQohjZDCQGi4m5Vbt9U": 78826,
+    "5htQbxXnLaDj53QH9dfGxE3KMjQohjZDCQGi4m5Vbt9U": 182110,
     "5hvjzQK2bGfaKduGSFJHTsE7UxZSP8AkH3YS5zKjzJuP": 1000,
     "5hz78N5rbckopZUjtpwNA2j2zK9hVa6ZTjk4V7NzPHqe": 5000,
     "5hzGxzezVWRMa8u7XRiqTJgeXLFMru1UmyvHGgsDFnzC": 15000,
     "5i1PLBRER4ztAwsf1WfmuuX7CdMASuGLT2pkYhMffWfK": 4500,
-    "5i515Vu8pZq6a3ps2HFWjUrTrqBMF49zhnKxG1RUSJ4r": 14750,
     "5i9BKByeHdXPXCkqdAj3Aqjs9eD2Krjxv3CDP5VoUp8g": 1833885,
     "5iE93FhYe1aeu1JM9Tqe65buHHJnNgByXVbV7YMctkH3": 1042,
     "5iELnV4z7LiKmLfgeDAeYLqSoKRWxhrBye7J1Dt9d5c4": 1114,
@@ -220182,6 +224789,7 @@
     "5iid5vVfhK7GztDEjhtURfSACxXXffDs7qpmgYvNGvXV": 10000,
     "5iihL7Ytzeca4uRdq4bWgJyUtH98CuJRdnichSB8cxVD": 2237,
     "5iioxCZAqG6WmGjEceihgtrtf5Zb1L4uyoBbS9vPwEAr": 8000,
+    "5ikr2nNstYuoe6ARAG8wTrZvyetPiLo7G8qaj8BRwbQN": 10000,
     "5imnnXiR7imtYeVfF3w5DQ74E1RmbsoHo1ZFUPXnTWoU": 3000,
     "5ipsgab5BFjWMDTHYeRVQAAPAsfcRUtQ7poKtiVnv1y7": 61100,
     "5iq98dzPFmJA91hKiFCP4shooQExbRcgFYZZnZskXFkB": 500,
@@ -220193,7 +224801,7 @@
     "5j7Q69uq4zXV1fNSgGkHHCV2FTF6SUwzjTqQuXc2vgmQ": 231295,
     "5j89i4W7Ui3ivJC7D6nxJhHTi4oDbengMqG1n3qSGP7j": 15000,
     "5j8vRhw8KN8AnSZXeMawYN9J2wEkaBJ5mHfaF1d4YX7K": 2102,
-    "5jARJVjsJVMgTPBBkE4uunEtPpJ8dDM3FmNZx1jHSHPk": 120780,
+    "5jARJVjsJVMgTPBBkE4uunEtPpJ8dDM3FmNZx1jHSHPk": 62680,
     "5jAudMTs8ac257Q1Dfd7tqdkeGV61v7q9SssMiqDibtL": 5000,
     "5jBYi6M5X5ehCHWSCbjmDFLYuMXcmCSuDGJ6b2fuk5Ao": 800,
     "5jBhf9B2RKCf2XFZFBfJtEePpDg8J9CcZpWWjVtNLX61": 142500,
@@ -220201,10 +224809,10 @@
     "5jGSykeeajBE4LYbaTmH4AvPek9y5UwVsTqhcdTAUVu6": 1900,
     "5jHX8P464Ldymd7z1Ndv9FhpUxB65XLTCH1cWv9KEeVh": 1059,
     "5jJ33S1Jgp4a3rMxBdBERtqf19voAKdojEPFtGxJfNSH": 1000,
-    "5jKy4hYn7sF9wbi7S94a2UbmPAzQHUDpyupUjuScotsC": 2400,
-    "5jLBHDzA4FbRPbCw3ZSucfnJUqhxYWtDyjeAE1ju1AxV": 201402,
+    "5jKy4hYn7sF9wbi7S94a2UbmPAzQHUDpyupUjuScotsC": 22400,
+    "5jLBHDzA4FbRPbCw3ZSucfnJUqhxYWtDyjeAE1ju1AxV": 23182,
     "5jLGADfAFnwqRfUZVt1V9KK9n5F7BqP8TS4HFgifAHrF": 12148,
-    "5jN2vRDpBzUR6yvor3ttfM193PMhSddA3YWboGLhLf3A": 3310,
+    "5jN2vRDpBzUR6yvor3ttfM193PMhSddA3YWboGLhLf3A": 11310,
     "5jNobeQKToFrkW71qFTqamM4RbuYukebbsqu8fa8cYtz": 5000,
     "5jNxXcad1qNuCkDEkhqyJc1p1Y82KK86xftqvDKjZDWr": 500,
     "5jPXgG3GHv8guGbZYLzxPLb8ZsPERUKANd4ctwNZ2WKo": 12000,
@@ -220222,6 +224830,7 @@
     "5jhco7vdU95ZyEmJQWFwXAu8WE7XSRq8PCRLMnF143UM": 953403,
     "5jkQq7fw9ZH4LVUXawdQ4bgMcBEFDFoQ4QmKYmuBfz6c": 100,
     "5jkqSUx6vzA5dCaSYCF7N2p37stxBk5fuGCXKK5XsZPz": 663201,
+    "5jpYXRn8tD6KGMdJUvmMKuamoNtjacKkCGTQd9WLVTqF": 100,
     "5jvvzwaANKv17Y8rMQLeTQgEZkqDwieRYCM2jVcbKgFD": 10000,
     "5jyPDLaA9LyVybxo9iu15gcHSQQ6XggtMWNBkTACjobA": 5000,
     "5jzhwDzDW2BUmckwuU2YHJWXi6AbkHn7w5RUZMqat4f8": 10000,
@@ -220230,11 +224839,12 @@
     "5kJSd1bYNxdNUvSVwkFR8z5Ee13YYi9JR8H2NiqoBn8A": 14368,
     "5kMrGNtR5mUyogP84zVJMZasAmoRSFqWPV26DQhjTzYB": 30000,
     "5kXTh76Ms9U6wut5MNuMxUdYsLLvpgTSDi6Fx8JERQVN": 9305,
-    "5kY3JgPTtxJGGNM7cDPH3zDq61SnNm2ripvwzDhfu3jT": 5000,
     "5kZYhssYkifZdUwpPuEKxuVabPP1URx7QZuzPdx4WNDm": 100,
     "5kbfGdDioTwNqGt46WiTTK9T6srQbMWF2fATYxqfNm1k": 400,
     "5keDTiwnEKaSyfQyXRVSvkofk3ryCMiQAB78TXSTvoYj": 10000,
     "5kepaY1wZFzUoDYRXvLvBDGZtZBbCqsyK5L2tfxBx4GZ": 2032,
+    "5km6um6yxDQAcUfgF5HFGTpRqyeBte5wzB3z71o3hSx6": 3500,
+    "5ks8yhQ5GPEzuB5S62gJ19Q5XDZP59X526RDEXBWqAQd": 1000,
     "5kw2feR9i1DsQyZt8yha752SHeHZ35Xxf9DvoqXiCskA": 1000,
     "5kyhwgijvYWy8Gg2q5i8yVfu2SUY9z8RGf5p5aNtjXa6": 40000,
     "5kzG485Gah5ffpYXR1kozH8XxQhPYi7t9SzVnuFaG4Zb": 13000,
@@ -220251,16 +224861,18 @@
     "5mfr4vCJ9HC2coSzncojFL3YvrAtNAFCLnSxRZUXSaN5": 2900,
     "5mfwxYFShbw8oxzZvtJxBHFcyvVk2ZtWFkMuyDFq6Vef": 2000,
     "5mih6TeBt9v7SagS5WyLpWr6XfsnduK1tfvWBqS65rC8": 203,
-    "5mjH4yzXBHottre3iirxH7cZtTNDBCBRr3foKvoXbMgs": 73941,
+    "5mjH4yzXBHottre3iirxH7cZtTNDBCBRr3foKvoXbMgs": 60941,
     "5mjH4yzXBHottre3iirxH7cZtTNDBCBRr3fokvoXbMgs": 30000,
     "5mjnroofeN2apeAjmeePNeSMuvNjhcS8DATSuEmCYrhF": 100,
     "5mm46ickZRyD3cPYptzrNxMD45WPkU7KSrYCetYJY1Xs": 11042,
+    "5mvWR3WYZqE1YFbFPkcsn53Xi5dNvS51PtK5q2RGaBYJ": 12000,
     "5mwci64N6W38LEXuC7bLqCJeaEt7imJkR9ruZ93nXwMv": 5000,
     "5mx1PNbPRwptCxrLvw4uDZXFH4jZSPMbyf1SJMvg9hS4": 2100,
     "5myBhMweozDdecE2ruEw2sBoqhP5gXTgupusXKTD85ch": 17500,
     "5mySPaQdYXjLZEKMpYp5rV74sCr1qrLGqLn9k6x4CR9h": 2750,
     "5nAcG8vpnVpcqWiCUnTBfKT76PxeyYyTVWNAD1Yp1fX5": 12000,
     "5nDyUr2pDqHkS5GHpv67uyVmXo7MmJfbk643FfU8KWWi": 5200,
+    "5nFT3uri1rWHxyrsob7LD2sPpJCzJD8AjrE8NmduZoiY": 19000,
     "5nG9Z9uXbRrafCJEVxDH2AKD5rLTHu15NeVvNsE3HkvD": 100,
     "5nM3bgJJBepDgW5TBT1vgvbRRtdbVTBof3Hck2fnWcGe": 2000,
     "5nTLAbCfCt5msdzjHTAogCoPWnHxQFsn6RELNW8thgHs": 500,
@@ -220269,7 +224881,6 @@
     "5nZ56s8y7SA965vYng4d1PEQVTbxUejqQbwQ7Ax45yZa": 22200,
     "5naJxSBmAm7nfSsQwGdHMpT2qc5FDuFTxPeWJUsd7LoX": 6000,
     "5nbQFjP7GvSiPpAujPaoPgb1hu2qptGpVzU6DHVKgcie": 27000,
-    "5ncSDLLMbAKEk9yzMUYaofbgRdx3CT7DS8i1Forgwiya": 19000,
     "5ninGANsFncNV92mQjdTDgaGV5dEg4Deqj35io2WU8PH": 47501,
     "5nj8HRmM7G4cpVuQpr2PuD2aVUm9ksr4bxNqKvQi56Hr": 2423,
     "5nnFKpRTJes3CXKMVm6MosySkmwTG6YUKLX7RtgXnoTs": 5000,
@@ -220280,11 +224891,12 @@
     "5o5UATTCshcEXAFKnDsMRTRXGnP1cokSBwbhyNPqa5Hq": 1059,
     "5o5ZeGwhC29dexhnyJNchHWQcLVRhQQgRCwnL1nAeGXg": 95900,
     "5o68pYJ7Poew1LLDXNaDg4xKJj3KoYp2a9aC8xCruEfQ": 17161,
+    "5oCsX5tMd8Cq4QffNSEES436rKi5o8P4F9rZbhGX5ctH": 5000,
     "5oFpFSvh3jFeMpUcG3Xsv5bDsPZFULPQcg8dRksHJgA": 30100,
     "5oKBx2CRT2qeCmqBhMahScHX5R5KYUvrP3JYhUV9Wpwn": 3174,
     "5oLcgYiXyUot47SVmpr65CKuvAJwSjdd4JJFSC9uy8Uq": 2700,
-    "5oPBgGtNB6LAUV18b28rbuXa36mJYLFtwjf29L1yxus9": 37200,
-    "5oQGxcegcV7rhpu2AN2W6YMXW5QHPGqSSrYuUj6Jb4uw": 21500,
+    "5oPBgGtNB6LAUV18b28rbuXa36mJYLFtwjf29L1yxus9": 218800,
+    "5oQGxcegcV7rhpu2AN2W6YMXW5QHPGqSSrYuUj6Jb4uw": 16432,
     "5oWUJeT8Cd67Rsm8kjZyv6FNYikVdQf5x4vgJeJHCbJS": 2400,
     "5oXbExasz114Bfo4KZ6Sf1BfSg7CN6qf1cikSdUhFVGY": 5160,
     "5oaEndvr7ZMF1ESv6r77BUidobSSmqxcjkrDFPGpY9yb": 15000,
@@ -220302,6 +224914,7 @@
     "5pde1Kt5yYQQyD3WZbXabuqFc5TUDYotS8TDWNnQMqXa": 5000,
     "5pdswjZXvqReSvKaxBMntQ9a5A9shGptFjcNGB5pzyGB": 2000,
     "5pfTpa8NgGb9yQCuM2GsauuAazsx4BY1hBToPTiqrBnE": 1059,
+    "5pfUigwoCs49N1KQK8sCwBcnDWNrG35cJ4q33oHMMgf1": 103700,
     "5pgrdviggwLCXNsYumLio1ZyxDDX89e7QSviTJCWsDZp": 5850,
     "5piRkUUn36X2o1q5zN2bPeToo6Rs7woTDUC9fZkTS2pp": 1500,
     "5pivvGcyyqKU8ZSxPLDesvBbqhd2Q2djBoZNXzh18x1q": 23967,
@@ -220311,7 +224924,8 @@
     "5prbFZYfboYF4h52CToaTGSZqmmKqmEarNyKWwVuSbQF": 10000,
     "5psutgGHgCQECs6UBHmN2Gxr2N9SkGVGo6MpuY6YoWNd": 500,
     "5ptoq2eoKLEqCJZVbrBaFavR3yfquLcUtWbUsyFwyGXo": 10000,
-    "5pu3tVaNNsMZdYufBHeeMLxQVa4dMUE4k1sDnSfo9tr8": 5300,
+    "5pu3tVaNNsMZdYufBHeeMLxQVa4dMUE4k1sDnSfo9tr8": 152090,
+    "5pwcu4SPs9YNg9NniKVMdNHvRcBGphRVeaxm259jZBN1": 6400,
     "5q1NWmffvzH7JvXBec8uXM6Fgctx4cYWUhX616c1an7P": 2600,
     "5q2A8pbhTrzVi28jRuvuH9YjieUfrEporfKbY8gk8uLS": 1000,
     "5q4MrXv7ikhSsTxQmryAUWqAp5sj2ucNFSXXsjg28vk6": 17000,
@@ -220323,7 +224937,7 @@
     "5q98LGQofALWBSjgdqMMxtRWxf3PJKTbcWDyviAoFeMK": 1000,
     "5qA14vKJrLkL5Jbws2cuyyG7Kzc1fbvzMMuW5NUw2zwu": 16900,
     "5qCCgW9m78xRTT3sG3GQJYY5QeoV1aBWXfsQ3b1ppSjo": 800,
-    "5qD7qmiXFAVVZQHCEJEEE2TmnnrCYyaVATrbmLkHBm1n": 137755,
+    "5qD7qmiXFAVVZQHCEJEEE2TmnnrCYyaVATrbmLkHBm1n": 147755,
     "5qNm2MLdposURf9prX3Azx5bHLsBW4uz3kxAhDEJn5hf": 5000,
     "5qR3FgRFAJxCgzGY9rpuQWYgPFSNzQRsb4X63nH9kxGv": 800,
     "5qSCcTt62zubWBm9L5R78NwQcCWgPREsKLoxATGkQYor": 951,
@@ -220333,7 +224947,7 @@
     "5qYq57CB1bFMJZ2EfTbWiNvhj22nSXN1A6i5BnTnZtqH": 222500,
     "5qngyh7XZMGDFstgZrha6hizDyd7EmENoCYxFCyBaCbo": 5255,
     "5qx61GDDpZ8RQ7U2cPAcsnLsydqagpzgNAXEB1NK1eFx": 4500,
-    "5qxveTQH2BmdCyfX7QtwtR4cicj5VTzhLy8stqsLHTiM": 118350,
+    "5qxveTQH2BmdCyfX7QtwtR4cicj5VTzhLy8stqsLHTiM": 106850,
     "5r1yB1ZeWSYfXLFGZA4NZYDWTY2F9SVaLFsXw2KC67Zz": 1042,
     "5r4a5JKVN2Zzq451b9rrfLmmWrr6taaoBJcmswrKFubN": 1000,
     "5r5Jo9RC8LwAgCreZHgupF2F2ztrREzdU7iaRgA5GSWQ": 18851,
@@ -220348,7 +224962,7 @@
     "5rNsfJ1G3c5TDhiMvESfArKaKEVzXNAyJgJtWeyQXxT3": 5000,
     "5rSZdJf1mL1qq8YAMYuLwgaNDNYitNPAKZ1Pu4WHqMCF": 1000,
     "5rTSupwbupL75zZroWzwGRAy9GECMiBcAEgUEmpcpA8j": 162000,
-    "5rTsupwbupL75zZroWzwGRAy9GECMiBcAEgUEmpcpA8j": 396100,
+    "5rTsupwbupL75zZroWzwGRAy9GECMiBcAEgUEmpcpA8j": 691100,
     "5rUZ3G3cvWtTNnxvekDjgYPEDmbxC2fD1QQu9f6Yker5": 100000,
     "5rWDg1ybbVRzARfrhznkdVsA9XTrBLALwc2XbG2Agfwv": 10420,
     "5rWRaQWkPp4cuJjZUVaHdJMb9j4qMMBiid72vMKsgF5d": 5000,
@@ -220359,23 +224973,25 @@
     "5s8WLSyRv2zXX96s1xTBQzzRfZVGtTY7ZxZy8ejo4m9i": 500,
     "5sAXMDdXUK6c4cJ2eJZPo1dn3Mnm16WU7SFdk1JxmV9T": 29000,
     "5sEXd2gSW1MUwCB1C4oBkKvThwbJBRmq3jWuQetBxCF2": 3000,
-    "5sKQWJu6wLk7jTXR7DbcBLUToUBVx1YMSQtvh1T2D8h": 401179,
+    "5sKQWJu6wLk7jTXR7DbcBLUToUBVx1YMSQtvh1T2D8h": 566979,
     "5sKderdWexDRcQCEXDaLgtXg8pq5RJwsorGDY8kvFMKT": 4000,
+    "5sLqZxmVpePrh9rMBvA2mz4b4S75i3SzAyWbkh8mybPz": 5000,
     "5sRsMCwBEx4Rc28tkUZitgHuF6NwYVSZDjHKn84NNrhP": 112004,
-    "5sSejBfNXB1EW6NEhZJQ22uKVWojy682ACPtsAxZjuDz": 55000,
+    "5sSejBfNXB1EW6NEhZJQ22uKVWojy682ACPtsAxZjuDz": 55001,
     "5sYwqAgP8KRsQ5RAP8ZZ1x3C8jTM6n2gFLxKjU9eZhWC": 1042,
     "5sc7i23xvNGPZYhTewHDTqVzVy48dR9GbQrSFUuUGaYw": 19671,
     "5sd1WKhbo6YANQtFGh31gPVV4auWfHidmVvUVgczsJDJ": 11306,
     "5sdcypPRDrzEirtTqXwzvNnMwGpjXK6EhNdti8qsdS4h": 10852,
     "5seBQtAp143EoVjRR8eTJaDtg8x8sMXWX3KjGsuJjNnV": 2000,
+    "5sestALjQ87qGGpt5BbGk9Qpx8DwFsr3Nqvnms3FNECd": 35000,
     "5shA9XvpKRg632UaxTSYGqUK45hwrErusQDVcnTrzunL": 66000,
     "5spqpUAeNH3KfjK9hNpANvD5BbtodbqMsjCha5TbYf87": 8000,
     "5srBBSkaqgi3KXzyoFvKzDw3pLnVRAwXtVSHEQ49nE3t": 152600,
     "5t1FyMQr9H3asgpcURroeKWxfqhLpzumeeVuVbuAsZFF": 10000,
     "5t3o8TnyX6CHZLRT9BS17SnSUqcxxMfhb4bamAFiTV4Y": 700,
     "5t9D93dW1Hb5y2aVPmcvhr1qKszUFnFLHD4oQNjHMUpe": 25255,
-    "5t9Y9dJncYjDyTqhUpDwbCa7CLFR4ahLGdMzebKo6UQr": 78500,
     "5t9jauA7YdWzsbVp3xJ4k8RB129K2jaXdkYn1oFrW9VJ": 900,
+    "5tDw6iGyqcqipWmobwwdWdzNEQrEW6YhMqQUWH2LwaNa": 3000,
     "5tGci7ZF5kkpmwnzBrveeg6QDXpBS3DG1vZ4pG98Dri8": 7100,
     "5tHPBEQpKMWWB2i29x8z5orFbd8cwBieUaPghnUqdYjb": 19718,
     "5tKdbNxGExhjRxHVBnykkS47W6aem6h3cx2hAJNdVDZW": 91832,
@@ -220383,6 +224999,7 @@
     "5tU98XEFfwfNFdAwDLAsYVzyVq2Dd5b3ZiTSGZimW5gW": 7000,
     "5tgKDahxtXB6D8n9d8VgJgMxHSYbbrckQMuvsYy9Tejp": 84400,
     "5tgWQiwCY4a3Jz1uf1Mir5DEHZXi8qeBKfyEfz6ZV32K": 10500,
+    "5tiirsWeSWnJMrEaiZJWP828RkD1PQYaSCqYzhSvP4ye": 2864,
     "5trCTFxRWyXGtReMszXXdThUJLUdZCVgvaCzhX2b9a4N": 100,
     "5ttfanszoB1VKFzMWdQfaULuNRUng4mr1Phg767tpZjV": 45100,
     "5tuEqupBWg6Yg8Qyvtjc5pydHhpbHniYVpPzUsAq2gSA": 5255,
@@ -220396,7 +225013,7 @@
     "5uCNN9TrETRQB5AyTnaMy5QgbikaLf9DkkPbTPg4vDF8": 15000,
     "5uF8qaZeD1EkFDA2GoPPVsX4YsDGpzSh1qbgg9B9b8mG": 100,
     "5uFx4LtdY6C6xMNAjXcZxuUE3g8FmUfXF3fk7u7P3X8t": 900,
-    "5uHa1fphic87JaP4oHnZbaVqb3pGBTEdJnAtG6CumPmC": 52000,
+    "5uHa1fphic87JaP4oHnZbaVqb3pGBTEdJnAtG6CumPmC": 51500,
     "5uLtUeo1AvzqZpYi3VA6Ab4N31qwkGFpTMjeW2hVedKM": 3600,
     "5uMjysRphyUNJ1sYCHQFrccupqhxxkezc4p62sZTfWjG": 1000,
     "5uTSdtbdoWH59gyftRuv2TrvV4xX8hZ95NbNbEnWmbo": 1200,
@@ -220404,7 +225021,6 @@
     "5uXCYPF2C5JVRgFgevrCiELtCH8pC5UMrt2tZJmMbcGD": 5160,
     "5uatFSahH2wp93j4EsWkWdSM2ofbLJ8U5YN4gVK6GEfK": 22199,
     "5ucoqQvRCnwaNV3SSFMQevJ2x8E2dN7eN7u1u1URzsuT": 10000,
-    "5ufEqtxo8gFYvNBwSL76AdTJtewjDcC5rwXnDHoALtB2": 85488,
     "5uoMpTgMtxUJ3Xrqj88dHcU86nMW6dHGFzoPKeWWrxCX": 100,
     "5up2tMCviNDZaNMgtkb2MJK3oQkqTSk7RzcXM9jmRtgb": 26500,
     "5urz39sv85qjD7LXq7pptg48HZDSr2tzUei5cgaGrE9": 5100,
@@ -220417,18 +225033,18 @@
     "5v6VbGdnTwH5kvbvUkwza91khhACcJB98gnR71ZNKoZd": 36000,
     "5vBeDt83DG4rbewp5jJR6njQxj2Nd5zMn58CtJXnBYuq": 7000,
     "5vDfx6dBuaomKyjQGaP568TcTDABkbsFtLfEKAZWM79K": 100,
-    "5vH5PgCiCJ6eSmcrfyfzNQnLL9htYVpjmAcHM3VeaELJ": 60200,
+    "5vH5PgCiCJ6eSmcrfyfzNQnLL9htYVpjmAcHM3VeaELJ": 30600,
     "5vHK6XCWwszfi5SrqpJEi54C5H1K4cob8jHHbY4y6H9u": 16000,
     "5vJvtQ3vvnJ3thFXHCKQY2cVxWPirwkx2pF3X7jX4MwZ": 5400,
     "5vPsyR5i4DvxKhBjwjhYQjdWg9QhYdRxnCL5hsJJA4iU": 400,
     "5vQpxXHZL7RJhKCe8qaD2X1Ztow722Fis4R8Eh3HoCiD": 10320,
     "5vUCRrDRCLJoVHTvd3T6GZ2tKRpSB8FS4Pgh9aT8yYdL": 100,
     "5vUiacxi2idjmUjifb59Aqogz5w1zxqet2FvyLN3K1fZ": 11000,
-    "5vW3LHVgPVZBb2xj8XnuxvS6AGKN2bnvPBwCF2Qz6Fon": 5223,
+    "5vW3LHVgPVZBb2xj8XnuxvS6AGKN2bnvPBwCF2Qz6Fon": 15223,
     "5vYkzPVJ7taH9FZdHmiBNEPAr3K1GiJVNLC3Pgcc2up9": 1700,
     "5vZkDJv3tTSFFk2m1ptMPQ3zczwRfeApDG6ec3MtAjdc": 11000,
     "5vbGa9U4M6iT89mq21Sw2ZNdBwbXUzLdfor3ET8iTNKQ": 9576,
-    "5vehUxDYiNBrYupxcjWbzfHC4t8xhZYJcBUZM6b2P7th": 17500,
+    "5vehUxDYiNBrYupxcjWbzfHC4t8xhZYJcBUZM6b2P7th": 37500,
     "5vicRsU7Z1gSEMNkQfk1LGXJ4BhMntMgzVrEjyybggjB": 1000,
     "5vig8GyKeRp7Bvrzx4JNKcBP7cKViZF5B8AxswHinr9q": 37382,
     "5vjjTsUe7995nexejxFwBWRBXTmaSKuvy8L9Z9e1crV4": 5872,
@@ -220442,11 +225058,12 @@
     "5wEH8oJXxx5pFvYsFjyc8MU2N9UVz2trH1mv2w7dsKDS": 17000,
     "5wK8r2x9DVvurNuGqqW859ETmRZGqFikPGrKxoPun63W": 100,
     "5wLaqaZq4sN6mTAYGataLrtnFQqyC4oEGwhuVKYth9st": 31100,
+    "5wVsQAcyrXCP1pNeQdo5KjDFjx5MDeUPrWdn1HgEX5f9": 10000,
     "5wbrqC9v5KcAEwJhodXXX6HoQSwfofu462MAjHEs5Gqu": 5000,
     "5wco8mFpsp8FgL8KUFGvLF6m2GXGkBZdqayb4TSecCJM": 400,
     "5wdaHPH3fmo2VhCaPkfY7tUozgCajEaycYb61DTJUvTo": 12476,
     "5whoMxrMeXGp8vNghX7qH9Gd6zngbET9HQR8fbUifL2n": 7000,
-    "5wjRbsySAkG5jMpBnRVzNkYVMtdo6zXxZNJg3Pm9tNjR": 51950,
+    "5wjRbsySAkG5jMpBnRVzNkYVMtdo6zXxZNJg3Pm9tNjR": 89950,
     "5wjf6EdJc2Eq5GJmzfyX3QgVaqS6vwRg976bpd8Vxz7": 10000,
     "5wkQPM8s9ACmt3CqFKh3Kmz1hyEyGpbTMCE3Vo1LeScn": 6000,
     "5wpdtqkjgNxKXo2zwm4AufGzZhVN1SWDvbNRxC4UQEbH": 1142,
@@ -220468,9 +225085,10 @@
     "5xwZNRAks4Q8ALcN4ynjabh2eRKgiekGKhG27hrBhTbV": 5352,
     "5y1GjQwn5MxBdsmJhSBDnsCzjd2b7ZzirQFDevneUJEY": 1200,
     "5y7jGhRy4FwuKacENbBkR51VZ3Me1zttjgcFgiYZ8A3f": 2022,
-    "5y9DpuGNkMB5FDH2HgEt1bqxDKXCNmsSGkDrJ1PrAaQq": 30300,
+    "5y9DpuGNkMB5FDH2HgEt1bqxDKXCNmsSGkDrJ1PrAaQq": 40600,
+    "5yBjHiSpPrBwiaLvE71cWRHnTGWgVm1mpgDepNuHPTXV": 1900,
     "5yBrCtzJruJ7C17YEEK3KH5UTfFL77KbrjjeTcGGFvy7": 1032,
-    "5yUudAPxjYoa5gWcNbkxXvWmhscjQfYNv4kH2ajn23eX": 38000,
+    "5yUudAPxjYoa5gWcNbkxXvWmhscjQfYNv4kH2ajn23eX": 46200,
     "5yUvdMAkGG5FHKRmPRZ9e7o14FzAKqZtDCoj7cmS9XCF": 2600,
     "5yXQi2MxSJ1ugGHLp2rzd1WfYGn6FfK1pHx2DTaRW7AR": 45000,
     "5yaptneRsUzrwgGFh7XTv4zNZaw9saDi66srL6R5mPqA": 150560,
@@ -220484,13 +225102,13 @@
     "5ytFnbee25BcnnkK7T282o2GxgaYxi1TJkGQxRSqL41L": 10000,
     "5yw4QHg1YmU2AZLUbQni5v8xbnGQjA2fgwVvedpzT3xG": 10000,
     "5yyJTHC2XrRhGzzKvHvfLg9DdxWb5nneh8r2LmZLcRKp": 1000,
-    "5z28EZhFrZEbcrXtAD4Bu1xrmZTNe9VMyHFCNzo4dmLr": 12753,
+    "5z28EZhFrZEbcrXtAD4Bu1xrmZTNe9VMyHFCNzo4dmLr": 12253,
     "5z35GP6GM6AHFYe9hwPUwnp2HGzJJpDnYEwu48ozSoa5": 100,
     "5z6BVnswnnXFhL3u82JSu88vrhKuzc1i3wH143qtmce6": 30000,
     "5z7bMaJyDfcZcTaW4aN2ppQCo5w5ftJry6BTd2HXWkAA": 13900,
     "5zAKsydcZ9ZZiFnLk1wumujU1THLM4ocBhQ5LjrVkCxW": 227660,
     "5zEJfDiZ6DUd4UQPp4PSQJdjxRULCEA9W1iJq8DKjV6j": 2118,
-    "5zGU1VNSL1vcxZvtC5rjhPZ1z1SkxbnQvBZC51qePMTU": 23500,
+    "5zGU1VNSL1vcxZvtC5rjhPZ1z1SkxbnQvBZC51qePMTU": 7500,
     "5zJSwhmbmFftyHRtekQgHEnFpKo3zuZWb4ZDE9PLJbTk": 100,
     "5zJV4sW39bPDFpnQq5ng5NKQozaRSFygDdPiZG9E87mE": 2000,
     "5zMQhbBvhSHoJonNEUuF7CdZEe6fwjVsM6Z6LSJfn2H2": 2000,
@@ -220508,17 +225126,19 @@
     "5zk5J2mQ7QzbWehs58RSG8PSRVCR2iciSKDHChCNa1cs": 20000,
     "5zkmdVaTgacJkXij4T8iS8HKeC3BSUxfWTvsULBym8Vj": 253400,
     "5ztBnKRUdpyFbKNA1xgYDANufCoJpbXeXndGAoon9gGC": 1900,
+    "5zuYNb5bLjn4iEEywDuPnce7euJHGgMiLHGHyV9iKuZ4": 42000,
     "5zwwUKA3oPVXRMC6epNjvVh9EtgLesVCmoHwVinoTkgM": 112236,
     "5zxPGeZ2muNPJunKFi3jk2QmNgHNL7MofA74Acq9epuS": 2136,
+    "612Ah9dCZjvQG1idQEACUj8HCfr6tTtGFXQUB5sbn2dv": 1939,
     "613GE6MUVH23j8HU44s5UMyAvoenu1WbmhBunD8W4oAQ": 10000,
     "613RxS8DH7EjFT8aMiziWXUSR4Thk8gKs6S5i1iypAhn": 900,
     "613Za33DBXZB5KPi2EreVf38UUuEaKzckVNYRzfTwzGK": 4000,
     "615gULQCHZVecQhg6uazSGLi6Hw8jy1gYhpeTmGkjewL": 968,
     "618NCKqPa9YWf9N9CjahKieKQQvqBHcPdzXuSVcHL7KX": 314,
     "618Tk6F4aKKqdBxoedk4hgY9w6x4waQs4fD3FNHqVcPn": 500,
-    "618v3KWHggwa9Ud5hoFVAPxaJg4UVCDoU4BvCBzPXiLs": 17300,
+    "618v3KWHggwa9Ud5hoFVAPxaJg4UVCDoU4BvCBzPXiLs": 22300,
     "61AErmgwCKLAdPwyA3zvaei7487wXwuUMhfX5brfrGvE": 500,
-    "61EGesqRqLNt6ykmhi5od613U4oAookjNxRbpuNZet98": 18700,
+    "61EGesqRqLNt6ykmhi5od613U4oAookjNxRbpuNZet98": 15800,
     "61FD2tyDdyMbrCDa9KALdgGTWSn9yHSK21tv5BhyB6E2": 500,
     "61FwQDWPgHBXC9vbLDgcd4G5VeZsmFhe2bH6KPMPrNRb": 124100,
     "61LeMtcW7yM6Ux1q9BhkH5cL4cNiX8ea2AMNN9SQbEVJ": 1000,
@@ -220534,7 +225154,6 @@
     "61maBuUgh7toDjFXxK8qYFvHKDMispBMSSBaaJtFkQtT": 1700,
     "61re4aW7vWdZGjDydw6hgG7sHYvAZ33Ww31KGwYjgHFv": 1600,
     "61wYdBMcsEUANNQJwkb82AyabUKcjNXnweGVpAwLNSqe": 1000,
-    "61wc7dtf83bcay1LDZ3jRw9k5KvryX9GuAHF48HjiTgF": 900,
     "622MPsjrQqiRhneWzqSeqdj5MA7Fup8GLKSUW8d3Fb5i": 680000,
     "623drv5zccimVfgTJv6xSDdcsvzbvaNPHo6DZGfd3c3V": 10000,
     "62BRZTdtzP9LLSY9L4wJEvCGFSwaZRu8VPikDusQt6HL": 2300,
@@ -220552,26 +225171,29 @@
     "639ZNtBSX2P7cY1mniDSDh9Kp9bak53Df45W3XLNVVbB": 300,
     "63A9phFvbvtBGRqwoKrYTJkwHErytK8DK4ipxtJSXxC7": 20100,
     "63BKnhV9Twgfv5pNUFyp9KZ82iA27LVWMk3eCMet2XTV": 50000,
+    "63BZBw2VE1vh2HaCWmtnhQCT8RDkRooVUrtj3aoySrpf": 20000,
     "63LjBXpRfKuHCMBgcTGEgotqxnYhnbx4cd7MLCX2LvMs": 5000,
     "63NFZnht67XY5hVyoWNZbtDTAChTapwVJTPLa6JBT2qY": 2300,
+    "63QrV27aTGc6R53MUjgcNnPMHQqGjqnNvyW2A5Gc5Z3L": 123900,
     "63QymzVaknTSyasv1Zhr8suwae34Y9K4pr3riabAFVdq": 2000,
-    "63SNRYjbaxBpP5LsUK6v31rLY5ZqxDNWPiBtreD7MuX8": 610,
+    "63SNRYjbaxBpP5LsUK6v31rLY5ZqxDNWPiBtreD7MuX8": 310,
     "63SzXyLZWaFL3W78BNDgCNqhkqb7P5RK3FejJ7xoPkQD": 303,
     "63VR7Xh5P7cAZ6YDVbDqJAcLZ3PJzmvbAVHvWiuXLt5z": 1000,
     "63WsQLp18CpCjjDRCPCVhFF4XE57hfoEJ7qQEHg9mYce": 19551,
     "63d9Uk2XACMpk4bsLeokm7CJsPpMifnnuURMAjBkhGWx": 5600,
+    "63fHmrrpyAsA3rjvGtfGBf4Eiv26tYep5Me3v7oUkzDi": 5000,
     "63kYSJiNEztAi1YHik1Ht444oyBLhDazzAbSSwZpyKSb": 26475,
     "63nCtk8khza7KuJkoj1U7vAe75MW2P4K9GozkQ4M6C5m": 110100,
     "63rVWEjhGdwgCW7EmZR4bUx2Pb6fvES7Sj7qgTmRiQ6h": 3000,
     "63zLeFmvQowCyZrKQgfzYb5m7d9U5ESVdnZodh7j9YK6": 1000,
     "64251YYwrsk4w1Fha5tiYaxeYUF6E2mur4RxvBdBJTPa": 60090,
     "645xhmevG5FhnP97nx1uCaTtv18JHQSV1447H5WnqUQ8": 852802,
-    "646bNMHhSXGWFeD6Wp23oxgxHwcRMN6vaif2q1dujkgK": 17100,
+    "646bNMHhSXGWFeD6Wp23oxgxHwcRMN6vaif2q1dujkgK": 14900,
     "649akQuKuNG2dgbWPHQEpK8q2XbmcMM8RuNP3HKd8Nfy": 1011,
     "64ErEDV2bjgW8s93vdqTTaAZpUUTXqZZbtc5abjCbVKr": 126300,
     "64FvEqcpwPzWm3ya6t1aTo3brfz6HGrpnB4teFbpXhZj": 6400,
     "64GfXxEvuT7ReWcnNT8Snjh4ihVL8N2NSvXdD9u5E9s5": 200,
-    "64LuQASHgnUMRheCewGBrKzi4KmRqHomEchLNEkiPwBr": 11272,
+    "64LuQASHgnUMRheCewGBrKzi4KmRqHomEchLNEkiPwBr": 15272,
     "64RBEfUAMzDv9jgrdUdzx2kqPUp4512ozHs9eYSTyb6Y": 2022,
     "64TyNY87Xrd3crYBhEbqKRmtMmmViJfKeA3svMtjZx8w": 1059,
     "64U28xct4xMGaxHHW8GgFprHsKruTaNHqnHTHUnGx5EQ": 11032,
@@ -220581,6 +225203,7 @@
     "64cRoakFE1r8uB2KMKqQuayjNuVxXWEDf3A4PiyMZDD": 500,
     "64ecHNYq3AyEBG5S97gdzK2JsMJyxGk8DxS9u4KVDquy": 10000,
     "64irTWtj6brLKQmmZRaSrUrgggT8MyNKF7tGtG3KJTPq": 500,
+    "64isaaVrFTbLj8DyLPcHgPChZtTtvoGNeyQKvRd9XsYx": 15000,
     "64j8toFs3PeUVkY6BSGjsrjBFRtcrX35WwwodrE737kF": 100000,
     "64tjaK6xqZhSY5STjBvUWH7R5X4bxFZF2bdZJbja1dp1": 1000,
     "64uwXLA8e8JfAWRrQe4MzYNLUSPVy3H3HbZm5jYikuic": 200,
@@ -220599,7 +225222,7 @@
     "65UdmTKn3A4uf74Ssqd16u2gMNsoh6gXb42RNELHagkN": 66473,
     "65XygwUtwSrf55WAMwn8iihZ1D3L3RfrWd6B5St5yGkc": 3000,
     "65ZcEpCp814Yj7riU2xLDd2j2L1nAitxkxxG3tKgR7Y3": 30000,
-    "65cfD8coDEJNVwCwvkHwHWuBed7kFJeuGVWqo3td2g7t": 258745,
+    "65cfD8coDEJNVwCwvkHwHWuBed7kFJeuGVWqo3td2g7t": 133745,
     "65gFUCA5DJUrFvjCmijwGzncDJqnzxf3yTkjmCpL9gkE": 68800,
     "65i5YF6BUewNz7rrUNF3Ri77EYZm3jMujX2dTd6wDrTG": 1051,
     "65jD65wiEB3U95fyy86nH9VuQFKUjyHbVc748c4LbVTe": 1000,
@@ -220618,7 +225241,7 @@
     "66PZTzm62ji5ne2MQ8LV8Y2L7iawtw2bi8jV3Nu3J1S": 1000,
     "66cqVcxCY6Xr6cF6ghRvLWdicCpp4uGRnSww1f3SmiNg": 12000,
     "66dVjai3WzKJ3QV7Gh912ZtH8pfaQjFMMuF6VqJE9wFE": 100,
-    "66gaPRwnaYfV4sHAXy2fhvcygtANEJxBGPtDTkv7ELKp": 12200,
+    "66gaPRwnaYfV4sHAXy2fhvcygtANEJxBGPtDTkv7ELKp": 25200,
     "66iTsjp6T8KYC5XrMmBgfW8TseBBS5xsHcrkbrg24h16": 33000,
     "66kumi5o2C6gtMDBYURV1sfZxjb2NjcLZDmM2qB7D9qo": 1360,
     "66tfNe1FtSx1xSqDBzZcCiEPEDmLURGqfdPn5XbQerVf": 10000,
@@ -220648,8 +225271,8 @@
     "68An2L6evtp78AEJiFQBSfpEBJdt7d5f4y1B76mU9Umi": 4500,
     "68MizYr7zZ6js5RGYjxVCLPX7QfupGEh3LBx7pDnL3uJ": 3100,
     "68UuaNo4wgvZFghg2cx96tWMm9bGxxC3jVqMUVTKfeph": 5000,
-    "68aYUGu14vWte8JucJsxJUc8ExcwK68GRVg38oSrDzZ1": 29054,
-    "68dekH63kAVaazB4HrNZaq835EPdxKjfmGAHW5RPGdkz": 48474,
+    "68aYUGu14vWte8JucJsxJUc8ExcwK68GRVg38oSrDzZ1": 29055,
+    "68g3ebwNJGq6CuFN28z8kmoahWd4nBWJMqT6bmgypcUy": 97958,
     "68sV48tVYNTZvhnfGAWik9RBzFWf1HgAhaKqkaaSQUEM": 21000,
     "695sgGwqEQFRer9bJenj2JYv7HBFrjofXf7mveg6Q2PW": 1000,
     "699FsQYqYrTMJQxe59C1Wcn7ts1yVYLu9UgNWytKXTyQ": 9300,
@@ -220658,14 +225281,15 @@
     "69QkytCZjoCYJURkAK1iD3BejZABg3C4nPs1qJ8sFsHC": 26900,
     "69Te29tZ1zHKyNrKHkLcfHyTYZM2KWePrnSLJcNcxZLr": 404,
     "69W5hSuQf9KhsEJN3cPbzZmGGNCyBDhppma4Pa4DuHZ": 1000,
-    "69XFN88UVwLzAD4quxvXPioD7wxge1qSZ4b5vmi7U1Ep": 79000,
+    "69ZV67jdorvh7CuKgMXV5fsZKTPaqnr9ZvoVHEK7Miwa": 10000,
     "69Zcu1Bp2MxTkmbPMxqJrzrymfeTeXofy4C6QQEsTBK8": 10000,
-    "69cbkLb3oBMM2L6KLv4WAJPdWMHzVhus2kiSQvoPMQRk": 5000,
+    "69cbkLb3oBMM2L6KLv4WAJPdWMHzVhus2kiSQvoPMQRk": 5001,
     "69f5kwZMsSZWsYTWDiCfm78oepnZ5RVVq2wakmZhwLKc": 110210,
-    "69oJfJxji2QF7y5eruK2ecVyvjn4LWpyT35PCSmFe1r4": 70000,
+    "69mjAh1aP1FWEdKA6ouLdKrMUqPM7tQhvGroNYaexDTs": 27000,
+    "69oJfJxji2QF7y5eruK2ecVyvjn4LWpyT35PCSmFe1r4": 75000,
     "69xtdTuyhz6pYvq1QnfW1Urzz8N1BAANS7neGm3v4FKi": 23300,
     "6A52xLWTGvm7VKDuxsasuEvSAaZ9eRKt1EtSrBxhY2dD": 4500,
-    "6A5qoYWdB7MHJzB5kYhAhh3ResfqnBArue6h3LVKi3Kf": 72700,
+    "6A5qoYWdB7MHJzB5kYhAhh3ResfqnBArue6h3LVKi3Kf": 118200,
     "6A76vvF9JzZRDETHsbSf254V5ey9WoFqoDdKeDcLJpaN": 5000,
     "6A9Q99sc4XXv5f16C5VFajyNa3qhMYz2pwrJwf3zK5jJ": 19000,
     "6A9bCah3eZ3Z26WRhd2BTUAcfKL7HWiEVZhF6CBuL6t6": 1400,
@@ -220675,7 +225299,7 @@
     "6AMBHGQ66tpqazMgSQn83YmcwAQ2o9oNbspiSyqs3FSt": 18000,
     "6APhBo8m5UwhpTRaKkCTZGgjz1Z3FzVXeofK4vfzx3oF": 47800,
     "6ATuL8r4bMWtTMF4pNtJsBG1K1eZ1XsqH5nyNPZwx3CH": 7000,
-    "6AXUD28whWqNhV5CGQjZTfrSAb5aH9y92md6DFLMYVB7": 900,
+    "6AXUD28whWqNhV5CGQjZTfrSAb5aH9y92md6DFLMYVB7": 500,
     "6AaZVCUsj9kesAMtnpqPZNcknr3KW1atrv9eVTdUA4PP": 687020,
     "6AdyVEvjL1de89cPzGX9ARytt8R6DNxvMmrijFjyD9pq": 175000,
     "6Akr5FAAwz2EqvnUESk3jgyUi9fNqB6grVcpBqztuC5K": 6000,
@@ -220683,7 +225307,7 @@
     "6AruHj88GjDDFR3cHgUzV8Gwggutsnt9Nd15iUWDNrnA": 7500,
     "6AtEr98svFwXodUyUc3yv8RqcAcqDFvELQunMgZYf2HJ": 5000,
     "6Atr9DAW1Eg6jr6t7US5QuiECPuvMbCqK6F45p89Luim": 500,
-    "6AzCHSXberAcs6tK4YzDzCVuYT2WizRQPJ9D7HipD1Dz": 884072,
+    "6AzCHSXberAcs6tK4YzDzCVuYT2WizRQPJ9D7HipD1Dz": 874072,
     "6B2FV1sNPyNTB4g445rP7QiuzzKrA1pmjWTrXigYbgG3": 1051,
     "6B2fV1sNPyNTB4g445rP7QiuzzkrA1pmjWTrXigYbgG3": 49227,
     "6B5P1SK3Ew8oTK64LunDL5fCcr7UHdVx8b3vaNzXWar6": 3012,
@@ -220692,7 +225316,7 @@
     "6BAQbNpXZp9vzYwXohP4VfGoSkVbYdoH7Q66tRiGb2CN": 938,
     "6BFypLqzZwSgdZAstWegV3L9tGSAkaAQkXtt2eG2wswW": 1016,
     "6BJmWr8jy7dXJ1pPhfbyDUCfxSv8vvWhDCzGmBAW4P4g": 40000,
-    "6BRMRPAXuKTq88wkgQFhfg915Y3LGjt1Wec7UWspfisU": 94621,
+    "6BRMRPAXuKTq88wkgQFhfg915Y3LGjt1Wec7UWspfisU": 91566,
     "6BSsQQU7Bgq7vNvEn1vLwr17DYfQs9C1u1KZcqPd7yhs": 20500,
     "6BTVxSSzohxqF9CYsCNTmtGNYNH6LrhPbb8yTo2vkABw": 5000,
     "6BVKWE9b5LHx8zd11rvYMmTNsfd28hyotKiYUhcjQHVC": 164730,
@@ -220701,11 +225325,11 @@
     "6BcR1fowH41TeWJs4eBNfBDjAWG6GK5zEUYd4A9JSkpa": 111068,
     "6BdN32uZ1T5tvjpUJCbwcETSnNSHqrXeMmste3kjFXnV": 4400,
     "6Bfu8XGT77HL5CiF4xccN1YfVFVGtP5jCQUnfw692PJg": 10000,
-    "6BivpZFQRxDx86HS93TjppoxMPYYhjfeFNUqhiMyp5Mp": 10000,
+    "6BivpZFQRxDx86HS93TjppoxMPYYhjfeFNUqhiMyp5Mp": 10101,
     "6BkvZ1W6VeFUvqVcLSHFxESqRy2kBPyau6NKXVUEvSRh": 16670,
     "6BoLkiCHx3drBtxK78dPFTzBcqm7oJsGa9E4hxcJsxeE": 139491,
     "6BoRMg2fe161SNU4jW2iUnhrC84mGqMkqRTWjV5RytdV": 111130,
-    "6BojbVWVTb8y7a3GK9F83vviwF5xrqywvJ1kPTUfPjRP": 23000,
+    "6BojbVWVTb8y7a3GK9F83vviwF5xrqywvJ1kPTUfPjRP": 19000,
     "6BqFCDsL4XgZtjaEtSFZhyN2iqngJvKU6hNvCPyLaGhb": 4000,
     "6BrB8upXJSgJ7KJaiBAFsepXZDmDE2S2rk37BfXnyroy": 20000,
     "6BrGmHQBieEVGRcqpJHaQ82ikCh4RvFX28cUoW9HMNca": 223500,
@@ -220728,14 +225352,13 @@
     "6CisAvKXqt7hRmrdVUvxb2R18ji4CZSWmt38c9kG2SJ9": 10000,
     "6CkKGBYpquHK2oYRDq9qGaK9XdGjmNhzX4qAq4b8auZH": 14500,
     "6CkLjZxy9Jt1EnYdmDAzAak6Vrcgq4nCx7LkykBjWnoK": 122084,
-    "6CrSGkWDMRuxcRcuWMuiC3LXuYE35Bz45d8pB2CZS7zK": 24200,
     "6CscT9rQ1M4q3xzMqBhyNqxBXqNnx9i98RHMVpHuz3C2": 2064,
     "6Cukzmr9E8ngXnPqzLwiym8GYKCxK1MoFnunmf2VPCDW": 4602,
     "6Cvt2jKtpNBZbfCSHXkX921gqj85nB8YGaB2QgDKwRWz": 1500,
     "6D7QuHoLaYtLD2T1jPSHCE2r6SCtbwFJvi4ENzCEavrx": 10000,
     "6D8bvryPmgyWXvyStWTtWvQ3LW7RqtU2SGfXg2tLshkg": 2000,
     "6DD1piw2gUznJ1yvfLzZHRbFHq9ZBAVVzaxa59iefuAX": 900,
-    "6DHnqoA45RXndoQGUz78e5fs3BzmBWseXCGwioodEJKf": 94600,
+    "6DHnqoA45RXndoQGUz78e5fs3BzmBWseXCGwioodEJKf": 92300,
     "6DKgAcUnf8uk9k2dstQ9x5rQdpYrLJ3bk6WnwLx8CeDm": 1626,
     "6DLVKfiRyzij2r3Jps8XLCnJhQ9btz4A3rUUDFWWmiXv": 20000,
     "6DNGkMqv5FSQe752CdtbveSpRZmNdaM8DRAZMJXjZVVr": 3174,
@@ -220746,9 +225369,10 @@
     "6DZPFDoH5YDbVHuaRuavAk8jQV68rFk92PEMGNB3FnBf": 10100,
     "6Dci1q43UtRvNnMkWEQM1TPSwvgGHvqQyiZV8sSKf7Sc": 6700,
     "6DfKyex4r9huYcZMxP5VpYFMkohiogEuDw61jmbyZE2w": 3169,
+    "6DiJBFSbvqU5Dzwrj5HsvtpTGi7xd5DfANfmjQx3nLBV": 20000,
     "6Din1DxQ75Us5zNaaZL97VqnYZR1V4aT7BKJ5skBU939": 1000,
     "6DjU1DuhLEranXBk3D9uRjUZvgJfRNVsaoV4QyKm9LcU": 14300,
-    "6DomgLejBRDTaBN7wCxX3y66o1YxUM5HDjKVrKJGrvUK": 13500,
+    "6DomgLejBRDTaBN7wCxX3y66o1YxUM5HDjKVrKJGrvUK": 74500,
     "6DpSv21QUndhMqS1ttN5cZ1AztDFekb5AmhcEBDmSrPT": 200,
     "6DsSMU9Cyk1dkdFpoUGkPhWfhPitRWqeBhbogjbz3mF": 5160,
     "6DwDurZUf3By1J4s82iFkgR2CbXPQ2k4Dfw4pLBcE9mu": 11949,
@@ -220773,6 +225397,7 @@
     "6EXxPWkXMaj3LSHAwBFgeKxvwGwDi3yQj7SeSVmXJn4C": 10000,
     "6EcHyXUNjktJpnmbHMRGmML7DC8dZLUC4ABibCosGaBy": 16740,
     "6EcuunY9v3HmZrsG4Gq86VUGLMjhRtJRynpYTvdS7Evb": 4000,
+    "6EdszrQDqWPhn7knXyzXHM8psPcQ397DAKHpYDepKAuX": 5000,
     "6Eeoi6mwSXwD1DEu9qgDhn5zApwZsq5VjPqkyyc4yB2J": 3000,
     "6EiwZWHStCnVGKuM4eUTWd4DSsqDWfydZUSvAjGtmaJ4": 8700,
     "6Ejnz1Gp6smEx6133VyaAFrZyLVzrPoN5NFyoZ7etRHU": 203041,
@@ -220788,7 +225413,7 @@
     "6FHvGie4mar6gZiux6FfGnzC3Xy7hWbdq7VzWp33fZLL": 4000,
     "6FKDofxYo2e8XBuiAedTvCpreEipPpAd7QS7EppSHLww": 3084,
     "6FMSQxCCFyQvmeZpqiaxfKgMma412RfSDoyCfDiMSks7": 12680,
-    "6FTGWiKxdQaGpHAQgt84yKBP7CFFrjBUuccwhR4nHEBB": 38000,
+    "6FTGWiKxdQaGpHAQgt84yKBP7CFFrjBUuccwhR4nHEBB": 26000,
     "6FfZ7gmWCcq1AKPZXdfktkRZoqgNLN9AfXBeB4FkHG3n": 5000,
     "6Fksj9exHxNVLFSEtGYsPTjyiWT71Ah1ng2QWCRiJbYZ": 20000,
     "6Fqr2sLu9GLQ5NvgRMWKf3x19NPqDRo5ewx187uptAXr": 1051,
@@ -220798,23 +225423,25 @@
     "6G2TzNFWVqq5gs8jgBv8YchDFD1JR3785erAT6Wxq6yi": 10000,
     "6GGA7biWWKZ8A8RwDCD7KdNhJjouLSAkzXU42FisQkVH": 5000,
     "6GKbcXpQfFG3Rw4Lo6w5cQEe2diyMqnVKg4iMgYNbi5j": 83000,
-    "6GUAMZXnnF9tDCQiCFJH9kWXepzkfVeW8UbqvdB6gcZV": 54700,
+    "6GUAMZXnnF9tDCQiCFJH9kWXepzkfVeW8UbqvdB6gcZV": 38700,
     "6GbvkxCH32exTeeey4ZU4ELiTPxvdMmTaFyCYgwWaT7E": 87200,
     "6Gr3Cw3SCryZJJ98YDdrqLiqXWPumBXqJH3sYDs5xXYs": 1000,
     "6GsHgvDC3mdrXKtkpwKtcsNz9xsanj8LchvZoR1BQqpa": 100,
     "6GsXeWDUF9Zz8gbvVVMmj1oAir4mmmHk1EhphNv1SK7U": 2000,
-    "6H2ogVEPn63tquh5qn4C2YjHsMpzor4Sc4myrkTRxTvo": 50700,
+    "6H2ogVEPn63tquh5qn4C2YjHsMpzor4Sc4myrkTRxTvo": 180700,
     "6H3DdL13g9YavtNvqUtsxSNtgh7W2xfV4z8s7rxbQfAq": 10000,
-    "6H6A6mTKttxbXmnpRrc9ZbAMomxMDz5rYWhwzAsGZpoD": 226000,
+    "6H6A6mTKttxbXmnpRrc9ZbAMomxMDz5rYWhwzAsGZpoD": 746000,
     "6H6TtrQQNvaLwCTEwWRJ8Q25yQLJabXHnGeNZLAug9f5": 99000,
     "6HApvM2y5drPHUdfWxS9TfHcvEVFy6APqtVvR568iBy": 10000,
     "6HLosoMtNzAzgrZVzRQbUDQTVD3fGfqtQKMWtKFRH17G": 5500,
-    "6HNmb7k1aoD5W4S5DFuoijiHWVQdELeHWBnaTbua6fcp": 10000,
+    "6HNmb7k1aoD5W4S5DFuoijiHWVQdELeHWBnaTbua6fcp": 86000,
     "6HPp4nEXfWTebzmfZZ3r72GWL39YxE3vLGrrHoair9cJ": 700,
+    "6HQ1M9exAbZeXdUWVM5oKGVXazdCBTCiB7SuTYdJwWng": 14552,
     "6HTyhn5Ch6ERV1qMpJpco3uLRwwXHoLRqHhVvyhNi6jj": 2064,
     "6HX6dxnjrVVnoNKEhXG66TzLdwN4SJ4QCD9ArNhHNVUF": 100,
     "6HZMvBiwPFPFT2SC1NWD6jieUqojWqg2yFAqB64bWaw2": 10000,
     "6HbMTUKzyjUuZfAwRGZWjpB6LQhLCPSKSDLEr1eKwkD": 10000,
+    "6HbmeSkpPjj3cXhYTvXeckqXCDtQxBUHADbEv5RQ9Btw": 4000,
     "6HeZcdEC2CbkTZz2PxchPvMgp1CZZvEvA36Xq7fd7WqP": 10420,
     "6HfC8jXUfkKm3ZcViVe3zTuWkJx2DPxHpP9awE9uAPND": 20000,
     "6HgrcCUrHhY8Y1tZYdK8bB7r9sTMNGHB5y53uQLzWX4i": 20000,
@@ -220824,7 +225451,7 @@
     "6Htti24GuqoyukR1m3kEeHYZi2PbRXU3WQcT1qqLYudQ": 10000,
     "6HvmnBUTcTKGqDRy1FnsompTb3qgsdjUMjbHVMjAiJEC": 5961,
     "6HyBDTJbwYzPnSyqZMxMc2ce9tHqJrHGEeqsf4iS579m": 55000,
-    "6HzWTAuVtjePddXg8VkMmfruskkDuKs3tbbyoPr8weg4": 89000,
+    "6HzWTAuVtjePddXg8VkMmfruskkDuKs3tbbyoPr8weg4": 44048,
     "6J7Kv1DwNyXzBUhjpQdnHzRwv7PdkQt3SBTmpX3KQVDq": 1118,
     "6JFW5bX7rkvUqEELzQRyXv6GsoojraG9nzpX1JU8Kigy": 28900,
     "6JHdVXD2JjBFdnL2sPoGzEmEis5w6SsyFZA2Hu8qBCyJ": 10000,
@@ -220836,8 +225463,7 @@
     "6JTtpxLBBoaMCDvKy2pY38KetFiqpHzm83CrqKegNNmB": 63815,
     "6JUxFtodeNi46fZY8QYwXpLkUHTyCChFMMixzpLP9T5h": 30000,
     "6JWdoMfcJBp7gfpgvxLYByeqsAGc7J8sz3nQ778SkLVN": 69500,
-    "6JbJ6ugZ6Wpt15F7929fL8zKf47pUmPYq3WUFumnPrzK": 5000,
-    "6JbUcrTAzSMbz32iRmmKjwBdkDvudnGp7bfh3vcgKnGf": 100,
+    "6JbUcrTAZSMbz32iRmmKjwBdkDvudnGp7bfh3vcgKnGf": 27000,
     "6JdDyRjkhwDeAU9BhLUVwvhyZVAaDud3ra6v5NTpiFKF": 10000,
     "6JhGujBnFdrUURpVQGxpofmUQEzoVCNWbK1bGRgye4Qg": 1051,
     "6Jm1ZxAdzPBqs5Kisf1gZwuzoYwHKfMsF5dacqqxDZd9": 27000,
@@ -220846,11 +225472,12 @@
     "6JrQJ9jG4kcbxGtZoG3g4Xp7BY8pkGA1rPFHNXdrzxPc": 2000,
     "6JruWLpexEHq2xZmLUk67FeVBcrSjs4xQm7uTREAJwar": 95000,
     "6JruWLpexEHq2xzmLUk67FeVBcrSjs4xQm7uTREAJwar": 8000,
-    "6Jsow1KdCSFuaRM9kBukN8C5Zzyb22edcR43z1VySkFB": 59000,
+    "6Jsow1KdCSFuaRM9kBukN8C5Zzyb22edcR43z1VySkFB": 269500,
     "6JthR8HyMALkG6tFDbdupbUu5MbJQ8wffonpaCytETmm": 1042,
     "6JubS1cgUe4ioMGdVFkRjUtgcbiK3PAoUYpMmKNqfBeU": 1000,
     "6Jvm4VVqQsUZPqdreVL1w8cUdBmjnwrtNYQpjxfcHjnY": 44322,
     "6JwJLNwf6NHrn4cr2skz7xoKC3JLxh2U5a3dpfUNRWVD": 1000,
+    "6JxYy4roHHQgPCqA48F7fZSzG74sy7JfbYpVY5nkgX1Z": 100,
     "6JyE4Vv6FaxwbspNTE8ExAzoACaLVDJMN7mcMEwzS5ba": 300,
     "6K2Q6DbnTYsoiFFTtspkdKnCikx18DRA6nFEAZgRX1Zi": 2000,
     "6K4SXV11qDvmtZXS42qQBNie8VMxCNU4RCiTXWMBCcDG": 5000,
@@ -220861,7 +225488,7 @@
     "6KM3P8GSbQ211ttpxrgJM2VKnbCfdPWxiYTPDgT7CfcW": 1100,
     "6KMCdEteUswcczkgno8DELz4aW9ARFDwRc4r7wWHosGi": 22500,
     "6KQ2RusAy23Zv5oFnwVC1rD8j1usY7eNpSd5hmE2BSvz": 14200,
-    "6KR825ZMPLmDwKHR2nmYq91h6wVRpy7jG6Eqsq6v8DM1": 202500,
+    "6KR825ZMPLmDwKHR2nmYq91h6wVRpy7jG6Eqsq6v8DM1": 217500,
     "6KRWmGnwkfx9vZtrQu9f4yRsHx48oj7KLjQukj8UtZ34": 58688,
     "6KWYDYUysJPXPAQJhRzNfTAUpMCn7rTTjrV1MiFRQfKs": 10000,
     "6KWhtCqXudNGonfqB7jZc6LvhWaWepLqdWmGLAhpcmBH": 6000,
@@ -220888,28 +225515,27 @@
     "6Lha2X3BiFu5yxuxeFuBGkPk3ovLaj7f6JB4GMwPRsXB": 517,
     "6LkoPH1bFo8XQu4zH86PSJPkeA3QPtrRHeknC4wSbJQc": 12000,
     "6LniXGiHQZuaZERtCFoAdh2VhZpZ3Aq76NQVAGKG9o1R": 44387,
-    "6Lr3NLRTjP377RvcUhPfyn83ktbZGibhVZzFvcx2iS2b": 462315,
+    "6Lr3NLRTjP377RvcUhPfyn83ktbZGibhVZzFvcx2iS2b": 436445,
     "6LrpAMJSAdJpwePmTwCP8rE3NEBACPMXjv4mD9rdLX5U": 5035,
     "6LvXjYoP6ShFp7yyi9XSdXxnLwifj7bCLJ6S1C6eqcBs": 2000,
     "6Lwe8PvBHxWfhKKguehmxZCkifxhB1Gp5YtUThrDA6jh": 40000,
     "6LxBDuPAQKQGGWwUXSN1h5KMBEdJRQZHSMuGV6UEDVkG": 10000,
     "6Ly1jyTnREvC12M7YbiEdQxU1fuGmqZSTVdddCn6kV4g": 270603,
     "6M4r5j8P8j1vDt34Dq2FByWL7GWZssN9MDoFQDs3abTQ": 17816,
+    "6M7TfBPLZYSpqgNY4VAr5yG2gQvu94y6swjTaKA2YzrP": 8300,
     "6M9WbVtUAFeSiRSmaokGpRqaFW9EZcdJ4mT3KTb7FvWh": 10000,
     "6M9Zw4kwCGxKJ8fydVUZ5sBeBKmkZbKaUc5v8YhDQhAB": 5000,
-    "6MAUUScp4HS3UcMtGNqCDrjurqx31teEiCpU7sa4MMAa": 100,
     "6MRQnBrh3iLPDNGS3nspvDcjPL66hPh4uW1qLzWpPAu3": 13510,
-    "6MRrkWGdCSf7pTwM8XrDix8rmRgm6vTTAJfPFbZJiNXt": 1000,
+    "6MRrkWGdCSf7pTwM8XrDix8rmRgm6vTTAJfPFbZJiNXt": 11000,
     "6MUKhXBTVdMxnuEAqXCafWSz6RU2CKuNGsQFWgmQuUWk": 100,
     "6MbPGm4egJ9432kPVvffZRXtFEdUxK1vPr8cVzZjCt7": 42700,
-    "6MbPGm4egJ9432kPVvffZRXtFEdUxK1vPr8cVzZjCt7D": 71500,
+    "6MbPGm4egJ9432kPVvffZRXtFEdUxK1vPr8cVzZjCt7D": 90100,
     "6MbcNBLH3L36ShkcqHXDRjFiVmbh6krBWWk72htCZ9st": 10000,
     "6MgGQVPboowBmhRWoCPTtf77qXdfQFHJLb43pdi3igjZ": 11700,
     "6Mgy5DLk8rKxw7cMrLmHgAMNj8iMrqtczXf7PD1TLiin": 3700,
     "6Mhd2AxkC6Z7Z7tv4E7jq3qMwqmeeiHi8NmnreqSeCKK": 3100,
     "6Mns1eTsPaXswwzEDZ5UE55YzJo9871YRypZ9oR9eiLP": 61920,
     "6MzcWMuuHygFJfFAbDk27EMwNuftVmoNokfPKCtyeKpH": 503,
-    "6MzoLzPBQP4JjWGMHaanofPWbd6po6TiVJ7UrnEf9jy1": 30000,
     "6N5762qQ8jvLdqA6g7BE5WSu4dqw3BRdYVeq6UorKGmi": 100,
     "6N6Vqoq2w2hfhvFv86vbcu1hfb59i2kRkdQuaYEpro3s": 5500,
     "6N8pdw3JsfVLo3kwJB11YStstX3E2VRwAHU1EC59Akp4": 4200,
@@ -220924,7 +225550,7 @@
     "6NKLSgDXPpBbhpuqEddN2sdsKCZARpde8TohHKTXbgtn": 2000,
     "6NKbxmWTdnGdvUcjGv1QTv1g9qKX4vaRYv2fK36dBoEN": 2000,
     "6NL29vvnoVi2gDvWmMNgAsRJxXzGGen5GpoMTYdamK5o": 35959,
-    "6NLi5LKB6PyigXXLr5wGpVSe4eBFrBnp8sj7bhaMqrG8": 229361,
+    "6NLi5LKB6PyigXXLr5wGpVSe4eBFrBnp8sj7bhaMqrG8": 250922,
     "6NLkxZQHdfam8pQtFQitxpqhKHWXco57YijfAwa5dZXN": 34300,
     "6NQDKrfS26ZcaWz7EYJVnkFFPqRYzk27R8QpAFca1yUW": 1032,
     "6NTfucr47jQ2yksMfKPXqH7eCZr9nHRZ38avV4SAp2YU": 23000,
@@ -220932,9 +225558,10 @@
     "6NVnstM41wk88boN3wnZm5wwJYVbivp3ZibERVR8TRDB": 10000,
     "6NZtFdxrL5ndG2MDvnzrm95XwxRCBwcCfUPfmnGFzXY2": 6000,
     "6NbajmCB4S9qzZKEnXqcHki9KKozFpuW2cYbeeoTgptd": 2000,
-    "6NmakED7nCKuTLAgi4FHZWDfjTMpdGF8ufBqP4Y9tMs8": 24900,
+    "6NgjjTqrwHqE3TmWCPQcmp4fmZwpwksH8gCztfA3Dasp": 16032,
+    "6NmakED7nCKuTLAgi4FHZWDfjTMpdGF8ufBqP4Y9tMs8": 10000,
     "6NnyUKch4Dngb4kX9su2HKGVENjmQ8QRXRfgz5D2NUty": 1000,
-    "6NpMjmXj5SykTCYWvb8xSSRaLFaeP2TYs6nQ9rBJBb9g": 188200,
+    "6NpMjmXj5SykTCYWvb8xSSRaLFaeP2TYs6nQ9rBJBb9g": 118200,
     "6NvM6i9KjR86ixx4BVQp6m4eZcbf2E3wjJ71KX3yXp6b": 10000,
     "6NxmPwAZnWUx9ZS3LT5PcRnue1mFwzzLeqN41vhePChj": 10000,
     "6P2RtrvPF8f1XvUNwaA8oxHmUMPVzGFH7ZpgEhuXh79j": 101756,
@@ -220946,6 +225573,7 @@
     "6PPEN2oku9dcAeaRemNeYuS6EuVQJSkx6Qe8W1wtDfXM": 1011,
     "6PPUwKDTb53RqJciVAE6cEiqjV3mvPLesY3v4CNAsbKj": 2100,
     "6PSRuBeaTR1hu8TEKLEb43jKzyXRLV2KAiPDyoT22qCM": 5000,
+    "6PSdpTRJKYShg4CwzgjzgSMGbRSyHvEM2pCcrsaEGxjk": 10600,
     "6PSqmXqniW7TbGowhCW8ZQLoSx3Tv8iC28PQSphr8LBk": 15000,
     "6PTSuf3fzQaU2bHp4Wem3mVJhoAR5oM69mFbQVHgRwkk": 25000,
     "6PXEsYijqpnyU7FteDSGKrUSH38rt1VNZZGLD9t1zbQh": 53000,
@@ -220961,6 +225589,7 @@
     "6PzhqShTkyexPWFvERf8cJznuVFvfooe3hDEL2rV79xF": 942,
     "6Q2bUALSRu57uq5ot19FLCJCeUNohc73GcLtTQfF4gmF": 5000,
     "6Q4YsqJfoaRoGvDY2Dq4PAfuuVEKLNQL5zFWnk4rUhKE": 100,
+    "6Q6oG1CJcGMDAZph5eP5mj79DXz9sR386Ns5UM68DrE9": 28848,
     "6Q7bPpwA3NXvAB95pQJZ2MNft53tpNb7SdAuyKF68Fk7": 111885,
     "6Q99ywqmEtTrxPhvJ1DZg2kWrsXzwE26HxzDbNjZpsFA": 46117,
     "6QCWhpUXtJpubGnV3oZNXFZHJiCCVhGC8CKhq7KiJ58": 4000,
@@ -220968,6 +225597,7 @@
     "6QJ6nHUesKR5HegKsqH1ATjBzr9p4FTpnsUBowCbDBGC": 5000,
     "6QJ6nHUesKR5UegKs9H1ATjBzt9p4FTpnsUBowCbDBGC": 10000,
     "6QJ6nHUesKR5UegKsqH1ATjBzt9p4FTpnsUBowCbDBGC": 2500,
+    "6QPFD5ASnD699HzEKeiMbTLtbELnNnSSUpwz9j5vufod": 10000,
     "6QQve28r7WmFDFu1ob77SeUbgUEfNVGHg2DsbyMsCgHZ": 700,
     "6QS8H8hZw9aLEDbE1B7HmUPH2qTJxXojpbdKbyHu6xD4": 48000,
     "6QTqrdq69WL9stYPqiuYtLJp3km2jM3tK2DYDewBSZmr": 1000,
@@ -220989,15 +225619,18 @@
     "6R9KHVMfithaJ6tKFrQBmiasKTwWZf3Lm8k9LxQenjvb": 5255,
     "6RAEeuiRkTzRjrSE3Gt3YSDE8Rw4rKAKC2NBaXAFtney": 4000,
     "6RDLPmcJqxVGA6jKF141e7WAzEKheyDfLU4jCqKJymhU": 100,
-    "6RGdYJ1ETb1bepsp3Ngw68cExsKjafBKHSQu1uGmYisG": 11159,
-    "6RKDeQYtP63NXtyaRmb8sqEdf7DAG2MdTeYaxS7e84r5": 22340,
+    "6RGdYJ1ETb1bepsp3Ngw68cExsKjafBKHSQu1uGmYisG": 38559,
+    "6RHPtzKvQLNdzvyJkxwfTzomjRarf3k8RcZi52gE6zBV": 6000,
+    "6RKDeQYtP63NXtyaRmb8sqEdf7DAG2MdTeYaxS7e84r5": 36340,
     "6RQkgF2VSVbfgPDY9xsC9wt3eEaB4i9iorkS1XmHeea7": 1200,
     "6RQymwJhPdBoXXQS1ydMLK5h1eaXUTHGY78AsLoU8o8f": 147000,
+    "6RRtJrhwwm1rQXGHDWXBML8XYv6cHJKn2k7Cu1htyTdX": 10000,
     "6RVhvqHh1VGTL2qmVwMg3wyh2dzzNX6gSFTdP4Tp3EVa": 100,
     "6RbY5wia2Ak9bqJ8xd3f7yUn99EwGUHqFnWT9YH9iK5n": 90000,
     "6Rc2QW46x74Vvsy76W6Z2geL3kqcSzkUjbxHK57Pf3VQ": 10000,
     "6RcBDbmcWU5NogThMPHcG7TfgdtwAFb9onkJcXo9QoVb": 8000,
     "6RjP74KSwAiWVqZu66t9D23QBsqJpWMLTRxk9954AWdd": 25516,
+    "6RncN7dXsokXgmZtdtzMMYsEu5rdgD3PSFaibh6BtWNy": 4272,
     "6Rz6eYaHqsXqKhDmKJEZYLh8poSG4c6t69oDHmziafih": 22800,
     "6S2mMSJwGwP36seLR99exhhvFMypbgyHwZRuqmTygxCs": 300,
     "6S4CEqA3rbJBHBDE15jPENEdDC6rKGWfqy3X9r26c51g": 200,
@@ -221013,10 +225646,11 @@
     "6SQzxsCb4rmvRNdBGx1kudd5ZnmXothCufBs6L7TuPEk": 8669,
     "6STF744C2w95QSJKJ9UygTRSf5GZSmkrjYUkKFpcS3ac": 5100,
     "6STHp9oJv7kHm6wfdhRXXbcgssEYkTFd5ChoZ5f8xatB": 12500,
+    "6SU4FEodUSx1hU2YyTLQhTHn856aCM6YXV6m448EJiSv": 5000,
     "6SWtnhecEAhERHQ69NSxNKC2SsRni4jsc1aWzw6Lgs9R": 4900,
     "6ScnXPJG8rxpJu2AjeCKN5upgUJ97AFuXuCbRPdTNA5c": 3000,
     "6SdG1tT9R7CpcsG1UKTxvcEQwsvrbYCRMxQgA4CRzxmT": 230000,
-    "6SgUDoTcVcBLcWFkx8ZCrtjsqY4uwvQqCM2Bn1B7WAUb": 5000,
+    "6SgUDoTcVcBLcWFkx8ZCrtjsqY4uwvQqCM2Bn1B7WAUb": 1000,
     "6Siyi8B3y3e79DQD7fRy3rCkaG8WMMSNPU27frc9XCLY": 114,
     "6SqLAYoba9jpFsKrZwnRFx4RhhNXJyAQMHch6rD8JbCs": 5000,
     "6St9ArPzj5xj7i2x2rQBcML6Pir9WkRBk4Pdxx8eaYyJ": 100000,
@@ -221028,27 +225662,29 @@
     "6T1m6m9QDrttwVNebgBSU6f6huEgXK26hQ7iThuewVsf": 10314,
     "6T5X36ysDTD1aQsoqkavXeLSKkygcnGB5vfSksGn4KKv": 15500,
     "6T9epdHLewfUVCvHDQLn9XgL6kmC1oQTXkHwqWM5qhN9": 2102,
-    "6TA9WtQa4hoGyXJRYaEHiob1tRMSmbuWnry9JUvXL8Nd": 5000,
+    "6TA9WtQa4hoGyXJRYaEHiob1tRMSmbuWnry9JUvXL8Nd": 5002,
     "6TJbjTWK2w4meZ2Lr4WeJ7HtiAgymV8gFNJjJmzYLZV7": 70000,
     "6TPfTJCVZb43s4Yew5rss9jetqvrFpAvmQWKLtGPd6RC": 500,
     "6TScMAVCss4F9UQFgGtQoLGxswqFgVPhicfzjiGosAon": 102876,
     "6TShckcTvyoD8rvP6D4AhuiZx8vKVooJcYa5EHqbtGcP": 1000,
     "6TU3Yq3dMVkYz1Cy4GDzShupQJWy3ipcxLBpN2CEv2Pp": 7500,
     "6TcUXkJoyZmmht4CiaQ9gokkhUD4KStCcwTC9m8RXDiV": 11012,
-    "6TiQCXTVEXMU9DZRAWVLApUgefFTVkWwTBVzj42jzuBa": 1772168,
+    "6TiQCXTVEXMU9DZRAWVLApUgefFTVkWwTBVzj42jzuBa": 1643168,
     "6TmBmiVMKCvRwgbMcH5F4Yooz8HXNW1zVQKmTb62u4Xy": 2064,
     "6TsxGNkcBgmiyp5DLrU2jY4Qm5jXSwJ8VYk6MYtF7mTQ": 4700,
     "6TvPXvE4rBe7Gq5djcnASsFChrs5ir2RKDsXLQfkEkqN": 500,
     "6TxE1X2zvomCnjzZmNDY1RMqgWgGyLTmo8Q5kkc3PqFn": 711300,
     "6TxE1x2zvomCnjzZmNDY1RMqgWgGyLTmo8Q5kkc3PqFn": 10000,
+    "6TzQ99s1XLSjCjAtNMBhwkVgdV4dDqFnzktJjyhf2mMa": 5000,
     "6TziyBRt2VFGvKULuFfZVdPEAFbpa23JefrGjP8XAvJ": 6300,
     "6TziyBRt2VFGvkULuFfZVdPEAFbpa23JefrGjP8XAvJ": 500,
     "6U1A7JPSiLAyRGZ1zh2gPwUjbhB3EgdDgFQtxyFqwp8T": 4650,
     "6U1ntA3vCa9gAAtedWJ4q5eUWHgobTZ4Q7UZvdZGD8v1": 50000,
+    "6U2NgLmHJQZChvdENVFz3sFHDVaYPBW7ZxTRCfiNJXqL": 5500,
     "6U2T5hKftFyFEDPH6mTAgvCrYtJUSDFCaxBXMsFWWoo": 8500,
     "6U6eufR2BJKRNzvBVcEev26i42cTLpuyfquLFd9nTiQR": 2900,
     "6UGq8CqirQz2knuZDSuyPtRhfCw2pRMdDfsHDLRa1VRP": 30000,
-    "6UKJ91Mb43u5eqQnhLZjMtN32D7XR6WRPPuYiR8HLchq": 138482,
+    "6UKJ91Mb43u5eqQnhLZjMtN32D7XR6WRPPuYiR8HLchq": 48382,
     "6UNckA4WTfd3kFVC12Xo51HnxQj5tUNbcZzDaE3D7JC9": 4300,
     "6UPWpcgSsUqqrd3rHQgJHhWeCNJPUUVYmxjxQ2RRhnFo": 10320,
     "6UTdxsHFrDFuUG1hrKg5KuPbizFyNW2XaYBruq6761Xf": 7000,
@@ -221059,8 +225695,8 @@
     "6Uf2br1VP6HCWBWAoRayCYgGjbZr8GuppzASCgR8v4N2": 15000,
     "6UsffqK5jhV7tcG5JbUVwLGjPDoUnzPNBavpujFQQPPX": 505,
     "6V3drU9ga9wSb9C27PUgRxyz6nYMwQtavuDgzdXLrJ7": 12000,
-    "6V3wZyYi4h9yXiv7zpCd8xxHLgzCmBppqi9gjJoPQEZH": 34029,
-    "6V8yGUgoVsYn6MTo9S74AdzXG1NyRUR9fGXLvVZ6dz7c": 17400,
+    "6V3wZyYi4h9yXiv7zpCd8xxHLgzCmBppqi9gjJoPQEZH": 29029,
+    "6V8yGUgoVsYn6MTo9S74AdzXG1NyRUR9fGXLvVZ6dz7c": 42400,
     "6V9wL9Ap8wuizP3pvi8xYMNXN2yFTeHKuWdF7uiKRUEY": 4400,
     "6VAHByyByy9URV6TbsjS9Jf2HEMtuuqKtDtaYNjWuX6D": 12000,
     "6VF38DUBzLFGHgpwUYqKXUnnmLZqecr1umJyadcWwJuv": 86680,
@@ -221073,6 +225709,7 @@
     "6VWWaP9Hk96zgfbnee8cwMKi7dgTcLuQmgAtEyJrEhb": 868002,
     "6Vd8KqUFT2nPq1QTw3esYk8Bm6GV9GkQGJQuhzSVZ3VH": 40000,
     "6VfCfKcWcjRADGDkEPdjfWzcGRZ8ptAnqjpsr2QFSpcs": 12798,
+    "6VgV9idXUeCRfH1S9YTzQXsHZnpzYoAKSqTcdZiV5HUx": 51000,
     "6VmcePVjNor7LtoVDxdpFnEvoUVE23w6dH3vbwYpVYQ1": 48500,
     "6VnSGDQW2MAwaQKrrtzm6xZas3BwSqqz4khCjiCrmSmS": 100,
     "6VpLKs6LNTsnZBZLxuVbM4ahngZNshgTwmhLB3mMc11X": 20000,
@@ -221090,6 +225727,7 @@
     "6WWUJr5Y4d3uQ557W85phQS8Z2aAEHRZgtPNwynocxQk": 12000,
     "6WdLfc4DsuBfK4HCHebu2u8cDcRivTMZ7qoYU919cpaU": 100,
     "6WfwtCLW3uhYgmJrtohGQEzManyQb3jEyJ5y62YHKjLY": 51000,
+    "6WgdB7SD8ts2GGX2BJMaMB2yVozVGq7D8grPNRRnPYD6": 3000,
     "6Wihp8tPC77QrjbvcNSSKHLrmbzpVQ6mnP3d6mZDEmz": 59804,
     "6WiqRMLvBLt8rQ97LVXccPyQ9BMV1Ea1BMdHohV38cvq": 10000,
     "6WjhdLAnusJ2247fh8LE8hKrZ7ciivJFnnYTaBHdnH4a": 55768,
@@ -221101,6 +225739,7 @@
     "6WzS5x2ns5Dk1J8rbJ85y1phGMksvYeuRQnwaz1pr66z": 5000,
     "6X2WfMZuD8KxyRaEgN9YodpEwcqY65ibTWPrxoc2bXdy": 10000,
     "6XCZKjnvATRhAS1kCpo6HvNvEQ9FHyVHXAVq6ocKaoUg": 20000,
+    "6XMGhjDyqdPohHAwMm1kawL53HJmQ1zUGsdmowdC8y3c": 41220,
     "6XQEoQycqrDy7GtSRb8eoxeDMjZ38EDooHqv8evD4GF4": 4000,
     "6XU7HWM6ynjrPJPCoJGmx6AurkfuBmW7imzdBMJS9FhQ": 10000,
     "6XY8K3Nc9D57tRJiEwAW9wcExfuVfDuh1Nd5Uw4oQEe3": 50000,
@@ -221110,7 +225749,7 @@
     "6Xq25n5EJzTCd5oRLqJS49r1nz3GaHhCNC3vxocLm3tY": 10000,
     "6XupMqzzuJ3Mo4de9iLVNGHuVQXLU5m1A8KL7QtwKip4": 10000,
     "6XyzNZHicaAcWHNLD19aeXt25JSYDEaDg3oV9stfcJ7": 6100,
-    "6Y2RibbHbEVK9B1hW8ZzZmii3i3m3BNSsi2F9iHXR1Km": 201220,
+    "6Y2RibbHbEVK9B1hW8ZzZmii3i3m3BNSsi2F9iHXR1Km": 219220,
     "6Y2XoFzu9GbhLEq2Md5LuhaMYxr4i7vCGvxt96riagDv": 34100,
     "6Y5eigxFkQpfD7fhGB8jwzLHQGTntgzMo7YaaRTkmjRC": 4800,
     "6Y9PUs2aGjKAjMTqqYEETC3C6A4hR4eL6qVjgT7E293d": 8400,
@@ -221133,12 +225772,12 @@
     "6Z8Zm6ZjdVeYk8Q6MFnZfbq81yoexryXu9jetDas1s1c": 54050,
     "6ZBdJVxVC9wc99xkqwNFdwZiYJUnT6USz8NWAW14J4yL": 1100,
     "6ZFt3r3YtKwDwrv9fvtYGtKj8BG7U4AgM2uMmZWavTo4": 20000,
-    "6ZJpf2etk5HrenbfyQjiF2WfFZ8ZXqceQc7JymiFxNGK": 113969,
+    "6ZJpf2etk5HrenbfyQjiF2WfFZ8ZXqceQc7JymiFxNGK": 123003,
     "6ZKyWsVBcbMNrPetVUkGZKu9KtXQsrtPnMKxAHtsauHW": 10000,
     "6ZN9Y2rMu9PdereDJA3rrjnosfHS5pUau7wc3tVMQQqr": 314,
     "6ZPUxNfDUcnaPMLWJhqBYoWAHezTjaJArsRzTGetrFQW": 5600,
     "6ZS58xpi2di9rYAvJMwE2bLh5YuMybSMR7tcTZdHHf2U": 14465,
-    "6ZVLf7EqqHQDvK8Q9XuXiLqJVC4snYA5iGG7cDUy6G8t": 71868,
+    "6ZVLf7EqqHQDvK8Q9XuXiLqJVC4snYA5iGG7cDUy6G8t": 119332,
     "6ZYn886EJrcCX6SABrogMsGJqVQNM6Eacwd8o6gfr4V3": 5210,
     "6ZaJLTCyUGRhzqp3ozhFc5UiPQ42psd46YdWLJCAgd4g": 200,
     "6ZaXbf5RA2ZXKSo436na8xmdS3q4mqmb6sYyCsyfdnsH": 1000,
@@ -221146,30 +225785,29 @@
     "6Ze2Ez9tXrM1yi46CY8n69hFNsnFpXPxz9mSCkuHfxjM": 2200,
     "6ZfnFNpiiB28PdXaPjYLzHs4LPPZ9P6RKD55a3Jzcq7K": 40105,
     "6ZhaMSvU1seZybyjyMfMDGfKNLd5Siqo1qsiovSAQfUP": 5000,
-    "6ZkRGCEZBgvrJrm4EioZFpwpD3TwW5nVMW7oTqDNgqTB": 5000,
-    "6ZkSdXiLGkZHFuxA7pUYdtPMTu3X3JEqFesLgd22Loo": 9500,
+    "6ZkRGCEZBgvrJrm4EioZFpwpD3TwW5nVMW7oTqDNgqTB": 12500,
+    "6ZkSdXiLGkZHFuxA7pUYdtPMTu3X3JEqFesLgd22Loo": 52500,
     "6Zsq3Z9dWBEuV7Wnueps6Vcf4uTKC5DwrRHg2v9eyPCK": 9000,
     "6a1nUkTtsSb5bWXBQn8jUX5Hse7XsUFXVRdGd51gTCRv": 1000,
     "6a1xWdQ6cQVvjdtwzGU3PtQYBUNbLfiEDB94omoMMf4D": 10000,
-    "6a3JA9uwxyocMNBcEERs6k6LknEr2Z1bFxWmufPCyNuB": 38500,
     "6aG1DazFw72i7Aus2rgNhDY4MrtQrq217qeK96yMWho": 8000,
     "6aH5dRRnWz5zxVLsdfGvwDijPBFSr8rSREVwduqsUdk2": 200,
-    "6aJQLaKXwsSvyU2XsuLYn5U9PMHrHtpjiAsS5MiencGH": 9000,
     "6aJRX8doSemFrmuWTnpkDNxUnLVH7HJ3AybUqfrLvWM4": 1200,
     "6aK6W4LF5ZxwP7yyY5woUBEhX7SaqZdVruaxxPX3UU28": 5000,
-    "6aNG3rTSnqobfThLRHEX9YxYos7KHT2nP8rmG2jkF7ZN": 19000,
+    "6aNG3rTSnqobfThLRHEX9YxYos7KHT2nP8rmG2jkF7ZN": 9000,
     "6aSYdqMcYNGRDGcK7YNmaxw6jxfBKqfxaKoV4umXntJU": 51023,
     "6aUNT129WhyBV4hfZLBiWNM3UQYJ8XKjRp5a7otdMhRE": 1000,
     "6aVim2j1HYapSHDiQ9mTjXxBg3MnCDB9riBR5vHAczoZ": 18700,
     "6aZCr1QyWWH9ahykq1dh31Gmb3aBAYWBJYvCmjvBnihc": 5000,
     "6aZmXFtPATb9Qkfw4ChUKBqrG3J4qt2UNWVmHiBNXJux": 40000,
     "6abf1rMSNaw8McTyND5hZiqBD5MpEbp5GYyaZ5DFYeBB": 100,
+    "6aixcPdf2sDcZzoTSADYdjCwU1ZH8oVApkGVpVS3rWMj": 500,
     "6asKGaU4LWRME2FXca89Tzgyz77NGUoJakuKHNYoiRDM": 120000,
     "6atmcP2MuqbTy4Md4APFy2ciHgZAqhnNfFp22EHjb58A": 6000,
     "6au5DUJGx8JsTgZR51pGJkyNbJ4bEsc9hQQo19EsjGj": 1700,
     "6aviZU3tQ8F2MDcuVJZfYfFmwhRg8bDyhLzV8hvfkNed": 5000,
     "6avz1i6aDU4JMY6FAEb59QVeqdSc7xt1oogJfMTRraoM": 2400,
-    "6ayskoqZVbD4cKeUqppi6NV1Su5gvJyHwAyNWkqGstTF": 72300,
+    "6ayskoqZVbD4cKeUqppi6NV1Su5gvJyHwAyNWkqGstTF": 5700,
     "6b5UU4nCyY3goWAKG97hp9QRkwaLNXR893B6jVk9Abdk": 100,
     "6b5iDwZqqKbpHUo7Tduhr8Ti48PN3kuPGhmk4fdvKgmg": 87000,
     "6b6mcKQ9mzdPZVnYtXWhDGTEysgSBZRJaYCAMaMd9XRv": 33000,
@@ -221197,13 +225835,13 @@
     "6c4sqjPgdk7zv1KN2Zzc1So2VYoouHN5iPvyazvJujbN": 100000,
     "6c6pmpWic9C7CoFguWKbJ1eqLMQVgRSrdskzvnEU1Vz3": 152500,
     "6c7RpTB4atG6euDhNyJiQisxF1VFRFGdvVBZ8LufMykc": 3126,
-    "6c7uEc3HxDkGYRx54EVWuxpX9ytvpaXKn6v4ehXXJNXL": 710500,
+    "6c7uEc3HxDkGYRx54EVWuxpX9ytvpaXKn6v4ehXXJNXL": 753100,
     "6c97ptNQCPgVDgAEnbQqgyisTvvmQwoyn1gNuq7qLbyf": 1000,
     "6c9fLgLWK9THCkJRSJjrePCKTi3CLj7nVmtkECk4WgLd": 20000,
     "6cHcVJmn6KSxtgmDhLWDD7WGXKP9f1jEVoZMYpMpx8wy": 24700,
     "6cKw7VSSsDNAnSu8mvrcLJNwBGd94a6mgdVHoMFmgvgR": 2400,
     "6cPLeuTSZwQRX8jKPASEGXDic6baYybr1bC1UbXkgbc7": 10000,
-    "6cRpRZ9YRSESFWX6ostNRFaWGnWVf3mEFtCFeFGLyQa4": 270700,
+    "6cRpRZ9YRSESFWX6ostNRFaWGnWVf3mEFtCFeFGLyQa4": 415200,
     "6cVWsK4Cjkgv7uFqa4dEMLSEGQJ49CDfRs8cLzhZXpjr": 400,
     "6cXe3oJFoAdENSujjPtd2D9pZqzspCSVzwDzzecDWLhW": 10000,
     "6cb7abctsTm1s4FJL9JfzuYh3e6o7h7PeUjND1vKa76G": 14600,
@@ -221218,6 +225856,7 @@
     "6d1SbKK8stwa1gvgRDzKdheqfFEqawN3mL33Yw4ZJVi4": 100,
     "6d256haaRtY4EEcnMxbo3TQFq15x7VAE7ZeHzfaWbPuq": 2500,
     "6d6xwQJzbjvMdeFXxzgRxPpfM9wodDRkY9JM9qJiWGDR": 3500,
+    "6dCyz85hbzDFSqnF3L4QsszzPpsKA46MWkFxtihB6HtQ": 13500,
     "6dJgiNPTVUH8kH9Y39p2N5QjPQRP9jYzUYd2G8U9t8Wp": 100,
     "6dLKSpdQE3pwFNUo4QKqPMCrGb94idKfzSkQCUXpyXd": 10000,
     "6dLKSpdQE3pwFNUo4QKqPMCrGb94idKfzSkvQCUXpyXd": 20000,
@@ -221234,9 +225873,9 @@
     "6dm2fJgQwiLdXunjbeHsNdW5DGJJEX7wneohd6oEovza": 433,
     "6dmBNZLYP7rXE9CrL24V6mC1DCzVonJLKkCmUNyB1P2Y": 111500,
     "6dnCw9BedkYeZukSfZ8mvUcFAUyzWSwwM24ePtf5wTEx": 8000,
-    "6dnkwZDQE3VwP8Uwah94zTE3qcCFYheGF1bEwkqYVqvj": 5300,
+    "6dnkwZDQE3VwP8Uwah94zTE3qcCFYheGF1bEwkqYVqvj": 10300,
     "6dpagH8bJrDSSQPSmGnceHNy3BpQyY5saaJsjK8ESFkf": 152000,
-    "6dwmhsPwjAoyUVbRBgnZstWWVtHKMN8TpGHhvgC7YBW9": 162360,
+    "6dwmhsPwjAoyUVbRBgnZstWWVtHKMN8TpGHhvgC7YBW9": 244360,
     "6dxeoeKwtGo16Eqk5xiURRwiyhkm3Rp7rpAsEkPgoRRh": 5000,
     "6dyDzSA5k8fpDVkwHgaBRVt4LPX9QxU2QnU8AECDX8qQ": 30000,
     "6dzfQNk5MA2UChK7BaDHMQWYw5VnwpGi15Nk1hdAMJen": 700,
@@ -221266,6 +225905,7 @@
     "6fLxsVJq2mLN1WXzkp9hAK6t1UNiGSqjj6wuMjoejk2J": 20000,
     "6fMDawacmcHcHfRksuMwvrZEUiv17mERkoxAdf2MAdPQ": 200,
     "6fNttu5YaJPsY2Z8f3dh9ECN2eW49gJFdNVfCXyZsEFg": 10000,
+    "6fPaK1VTz5HUTKGvZY5nksCx87khcWemCuSX6FT4K3ZT": 5578,
     "6fQq7D5S6ag74xSQmgFj1QSmBxBZms5nrfvE78ATkQH7": 33400,
     "6fRh43TFQVoy4jCb1GYiWcQR3U1rEfX1buUJxjv3yXoN": 10000,
     "6fS4MYw8ySKkxVU9UNd2RZx1zVdC8KDC5rs53AtDUez": 14126,
@@ -221283,15 +225923,15 @@
     "6g2VKo5MH7Xi8yW51bncKzk86rp68zK2YHLUoC7MffK1": 1000,
     "6g6h5oKy4tcMXUcHhzCVMsbNQYEYBLeWgXjt3G8muhwr": 100,
     "6g6mwKgwx1WKMmV1zaNKQJY7zgWT5broVX5YpxdKjqRV": 1400,
-    "6g8SM146mQvxpDGJiWSSP5Eb7xsyXQCRyj4VSuKaSz4J": 280000,
+    "6g8SM146mQvxpDGJiWSSP5Eb7xsyXQCRyj4VSuKaSz4J": 295000,
     "6g8f3VbK6VFYpUtgHbiWnPdo6b97PA7njaiPtoaiPxcT": 2500,
     "6gAAQRarzoZxaXcLb7d3AKQrfJfoVhRyUDrBQis5ptzs": 21500,
     "6gC5f4FEXVZ13yfG92tuCLBh1sRTknaRR3tjJWgHvKE": 1251,
     "6gD3P8vjAFYHWvyu2YHK5iQp4dMTEUVtdBXxmHH1a3y9": 738921,
-    "6gKj7h52gjWNCyUaz4TH7Dte9Ba6smcrf4MDbN9bHRqZ": 15096,
+    "6gKj7h52gjWNCyUaz4TH7Dte9Ba6smcrf4MDbN9bHRqZ": 45096,
     "6gQCyQAMUfT5LA7Rdzm381dyog2EF9FrJ7255GdMv7R3": 5000,
-    "6gTBoY3pGUSNCM1rd9wyF8SG9TaityPzJYM7PD5kPyED": 33000,
-    "6gVxihZzwpHmhBNpBeMQw9VdWFnhsVYFaWmuddETMH1c": 15000,
+    "6gTBoY3pGUSNCM1rd9wyF8SG9TaityPzJYM7PD5kPyED": 2796,
+    "6gVxihZzwpHmhBNpBeMQw9VdWFnhsVYFaWmuddETMH1c": 20000,
     "6gWDFt7NLRfDc8vZcnbm3DwxPUvgmSjAQp4bBjAYPUcb": 614,
     "6gWn5aLnvpbmdaEWiW5n3QZxwyX2uXTFheHGrqjbvvfP": 37900,
     "6gXGCtw9T8DestBMv1rPgfSKxMK7CyyyXK5LvcDrFpwC": 3100,
@@ -221301,8 +225941,8 @@
     "6gXhoWQNmWhP19ocuVwQan8Vdz4UduHgGR4cQtA5ioT": 10000,
     "6gY65mYgGo65VnUxVnU2Dkd3C6uGXcK3KjsiD1DNiqUU": 1000,
     "6gZU8BdmU8whx8z53Eevxd8UtxqTrY6DpR6pa5q2e7X6": 1000,
-    "6gZyVZjDRoLupL5E3Gvj34ST7uvzCBXQh3VrSLkhQgmx": 110313,
-    "6gaf9W2khdxZDwVTYz3KarVaE9AJjqfYVutiCrvbVesP": 15000,
+    "6gZyVZjDRoLupL5E3Gvj34ST7uvzCBXQh3VrSLkhQgmx": 203173,
+    "6gaf9W2khdxZDwVTYz3KarVaE9AJjqfYVutiCrvbVesP": 25000,
     "6gkBup7KEcpB4fA26vqktBi1EhM4MVtrB8TAiSn4ZZTH": 33888,
     "6gppdTfscAfV79ZsduA3b8UTmZyA5LHqChYxu1dw1U4Q": 100000,
     "6gr76U82gbgHXWKxhsSunsVhnkeJdffSwfAVaNT92w5k": 14800,
@@ -221321,7 +225961,6 @@
     "6hX7uP7fiuUf6Xkgbb6pkf5UBNDqsWYwfEiYyF8SB4JX": 50000,
     "6heQAJHM8zBujtkxfbmGURo9Cqw2iUTaCxMfWnWS2SAb": 140000,
     "6heu6iL3cieftZ2UpR1j7AefJdzpVm6ZXU4tcNmCrsjs": 10300,
-    "6hhFenBdkqnV8bcESwwtFBet2vUizytYuxhbDGZ3VggL": 17000,
     "6hneyRGKFXPWpvW1VXRdvCNqFFtmNi91JoXLEgAqEyWm": 500,
     "6hnjfQzgdJ9WhzCFWvzDScE8easzTGAaDtmVtyAc1uAX": 3700,
     "6hrVUcNo2EfNNdfR3K3LB8KSrm5p93T27jjXdCEeNZTv": 6000,
@@ -221353,9 +225992,10 @@
     "6jXmDAs2ALdgPa6m3EWQQcKD2KCC4uqB1WVrVuVve2rA": 1100,
     "6jYNhBqJGDgCC7kr2QRLauTkP4BbSn1WfK4XTb9YN3HZ": 2064,
     "6jYq8eWWfDST9nU6ijAeJyh4a5KdryqZUc624TaGiKD3": 7847,
+    "6jZ4Yosc3cgJJi2twJ6jhQDaegBN932DiBhe16pLYieF": 500,
     "6jej7SVZfFX6emFRNyAx87zrEtxRkDBQSCGz3f7vY9iN": 10000,
     "6jjLAPTEZdZTJ1BoEDWmRJDDAiHkmfkaehowE7pkMFvB": 10420,
-    "6joGdqA4hh8AZjRfaHf1M8MRcaSsvnDGqcThq17QmMxz": 2000,
+    "6joGdqA4hh8AZjRfaHf1M8MRcaSsvnDGqcThq17QmMxz": 75301,
     "6juRmJuz7icTPmJbDWvNEX41XPoVBJ7qAasYVCFXaorC": 102,
     "6jvuveNSGopBLNQFx6KMB3qcHzcoKJXTa4fJBHZXSeNQ": 7000,
     "6jyuRb4fA4QFnwRuS4tFTbZ7go2ERYHHB1KBmQrZ8WkC": 108500,
@@ -221365,13 +226005,13 @@
     "6kBv8661vL9i74okMTkuZCqd2D14ugWuXCx9RtbaURUH": 5051,
     "6kDgqhDUNGFH6HgN7WeZvUSb4TS3PPGiA7ERLphKmEir": 5812,
     "6kEeZCwW6qDmZ94nHXTrGeMkL9CNH89uQT3xNcMuH8H9": 9299,
-    "6kFmy6Dbx6eHaXCjoapnhofJ1eWYQBZkVGSwuzByLWMZ": 638902,
+    "6kFmy6Dbx6eHaXCjoapnhofJ1eWYQBZkVGSwuzByLWMZ": 649153,
     "6kG8EzejLAjdh2E3CuC4L7t1G2bdLGSedhUpBfwbW5wu": 2000,
     "6kG8hoLKmhFBgcKj2ZmQkfyS8JVHk1MiKvQTH7PBGMoC": 2000,
     "6kM4srFN7aUi1CFq6mHtYT24jQkbiRo7oUwnqECA4V1M": 5000,
-    "6kMeMd1GGYrKcYnZHxvxLxZzRFMwixgQygiKLAFHKK3L": 157908,
-    "6kRwZaVJWtGz56gSmuczZoWtApaestMP8Va8H7Etgoar": 7300,
-    "6kVy5f6uphsC9V2AY6maDANUZ1Fo7E1bxKGkQBw5STSe": 12100,
+    "6kMeMd1GGYrKcYnZHxvxLxZzRFMwixgQygiKLAFHKK3L": 142908,
+    "6kRwZaVJWtGz56gSmuczZoWtApaestMP8Va8H7Etgoar": 42900,
+    "6kVy5f6uphsC9V2AY6maDANUZ1Fo7E1bxKGkQBw5STSe": 9100,
     "6ka4138tEuUv5JtvKDD3FZubykWbHtDVLRkCMgu9ExFy": 15000,
     "6kaj4E68SYeZFtQrydfZ9BmyLEZC8rUbVWE64MDBupqM": 100000,
     "6kfbgwe6nKXPTbmXRGneNyMGVC1PxVecoj7MKwHiXf3R": 40000,
@@ -221380,18 +226020,20 @@
     "6kn6EadfRnXkBrMXc1k3K98KDhoaN2BuDpssWj3fLEVm": 55000,
     "6kq6wcUnzS5SibhTEsVzq6qX25Vx5zaPrufzDMd2EBxB": 15900,
     "6kqfR2EDbFGFmsCkscKDnx5QT1CUwyzhgXAEGKAUGw1R": 5000,
+    "6kwxCC4fgeY6iz3iRBBHaGCcBZhe1NZZ38qceeW9DUbr": 8800,
     "6m67RJGEAh8fKx76HCXf7QSi69UaK4ZFxc7Ls4cVsQ3": 21000,
     "6m6e32dGDnJmJcJr8s8uCxNJ1UaMPc6sYhQ3uae8peXZ": 25000,
     "6m6xZuPqpLG4TibSUdMzaHGzKFriLUSAkuojP1dzmUTx": 5000,
     "6m7Mf3bKsAPAvwyAmq9GY2BBwyeTxZ6cfuTddKgmk5aL": 10000,
     "6mAcEVUAXSnfCWXjpv6oZZgyZednLxJePkrMAUP5G1NJ": 3000,
-    "6mAuWkfKUcF1oUsnnGhWr5Fz2vALMdDcxUaX9skC5Lvw": 11500,
+    "6mAuWkfKUcF1oUsnnGhWr5Fz2vALMdDcxUaX9skC5Lvw": 48000,
     "6mJtjL3G65f3hYFfgxBX9jBKyqaivwvE4a4DMJBD3pEx": 505,
     "6mU31fX4CkrRZnaGPNFLvhwng3261NdypKqCzTdynQhf": 4168,
     "6mZmXGDcwMrtKYHoHeJzpoeDPfQXxt2Em4mKnZCbLanw": 2000,
     "6masggYEtY3xRyytEjzFCjhmdQE1KAPsPCp6RnjosFCc": 50010,
     "6mcu7ZMFS4qySmrSpnwBXF9JJR8Y9VbptnQrWANXij9R": 7500,
     "6md9ZvVWMyuYC8bnDfWNoFKPiSMijrXmTMJJW1MppQod": 32800,
+    "6mdQsMhkyZUX4eith2NECkZT8xuNoQAC6C8mwTW2JsgB": 10000,
     "6mfyiNqAGRGUw4GMuo4SWTWwmCTDxwqcEj5B4wwJLVCi": 5900,
     "6mjuEb4AYMvM8k11gwzkNXVgecG2gS9Mz4vn7RSMhfdf": 1068,
     "6mm6vq5zyym3FHG4u6RrhsJTCBdxWHk8Pc7nXY8FPb3k": 4000,
@@ -221406,18 +226048,21 @@
     "6n47xikez1DA7q3GaDPXDY4gFmWyLUaxdYSKzb1j8pQb": 5000,
     "6n6wpbWwfQXin2TCLpRSjMLrJMkHAkxgL71RMrjoHcVE": 5000,
     "6n9YfvAgzkLmKv6EFj3JebMtECFpuL6QLEAv6sLvUbau": 2100,
-    "6nAhFz2mp74q7sUaoCw3fukXfiHeUjWQZEuk7ZKRPfHR": 13500,
-    "6nBNHcbEdrakfR7GgDYM1HHbydZbxnKPTzNDtW1deF8v": 133500,
-    "6nC4d4mmZmAjxVUKQzs47wHQeLVVbDa6sb769XTkUNpu": 1295056,
+    "6nBNHcbEdrakfR7GgDYM1HHbydZbxnKPTzNDtW1deF8v": 200000,
+    "6nC4d4mmZmAjxVUKQzs47wHQeLVVbDa6sb769XTkUNpu": 1716456,
     "6nEc5ApkwQ5y6hrzUnWNsRwNpVcc9uRA6JfKgS9YRXAW": 371970,
     "6nFfomyr95staxg9sCCDAeresq8YoXdUjR299JZPvmex": 1200,
     "6nGSfqyzqBSq1HtDEUvrvCoPU2gx9QMhirS2Y38n4e6R": 8000,
+    "6nGrxcF7DPzX1DyhEAQWWc93jJ2jQJU6S1p1SQf93vgs": 5000,
+    "6nLBm6rKcQ6NBAmmavkpiwKUNYvU8SaBax1t1SoQJrkw": 55100,
+    "6nLJvmFVAF6xFzb6ikhyANSyZom9Lt1xpu8U4bZ7uQXV": 500,
     "6nMFcARpKzEE1uagy1gHvfFd9ZUCZ3jBrSmxsuY9XRsi": 314,
-    "6nNKCYZ4hdEkJzL4Mj8GVVLdTdWobSt8KAHC1B4F3Mz6": 5000,
+    "6nNKCYZ4hdEkJzL4Mj8GVVLdTdWobSt8KAHC1B4F3Mz6": 5002,
     "6nQgbhcf1bwLQbB9Auma1RFkhiw69YnpJNaDpQxRTptd": 15000,
     "6nRNyrAcrkw34NLgZUzxtruuRhC4J3YYCvBKw4pGdTtu": 2100,
-    "6nS2msE4hjhz59n94iPPSysStxVqxkrG1cEgTQDoxq4k": 771406,
+    "6nS2msE4hjhz59n94iPPSysStxVqxkrG1cEgTQDoxq4k": 695676,
     "6nSoLRTLhgK6JbGqo4r4FdTKm3pFWG3AMig9grd3jp6V": 27744,
+    "6nTLxWnnc1uVNrqxDTDk9NYWDjy1dMY6UBKYHetgLVg5": 19190,
     "6nUzp2w8FfrS3FuQcxyv7AVWnABPdojGgBNPmnRpMfJj": 104200,
     "6nVyBFzs2xMmBRDy2GNhp2GHGP3Jkyk1yVteL659SySb": 4200,
     "6nZ16jM2xHZRuXmMuu1Szh3dAkhAn6RmzrSfVeKYFwUr": 1000,
@@ -221426,23 +226071,24 @@
     "6ndhcaZqBfhxwzi8zpLDGRNxFF215h3cs5v5vZV3j7sn": 20000,
     "6nf7JgqZ8t5ngoYtXyPM2B7BMP7EebvhfW6NcrJXL7TD": 24200,
     "6nfQRVythgUrasG1mFcYCkBbRvLg5KscHGRa2NpfxQew": 1000,
+    "6nfdQa69nymD6vZKfsYa1SXQuZb3yQZ9ysLbhLJ15bvg": 15670,
     "6nir1ZAMCcAE8SSB2YtCN8KbADAM4RRzRiYMHc27Y5ap": 7200,
     "6nk39MQJHLHixieJGXGGM7wVANp1hrBpyTC33yFoDFs3": 1059,
     "6nrPo8vsEFmi6avSEZWFmmJwfkyaxCw6CjofKby1VvyM": 10800,
     "6nsmsHR9T8FoXWEDhKHhZizVTgDmvZ1QxPBGyk59C4o6": 500,
     "6nuiMcsFTgKVB5W1ZbjywYdnW1mLN7BQnx5atnrQXQfE": 4000,
-    "6o6HJ2GGMCSjd1yXpK1bAHLZoKqcQaqXZTuGPge9xCf7": 190888,
+    "6o6HJ2GGMCSjd1yXpK1bAHLZoKqcQaqXZTuGPge9xCf7": 210888,
     "6o762KQmx7amGbDf2fBM8Ne6j85PPHt6bFhQqCuYZJNx": 400,
     "6o76KQmx7amGbDf2fBM8Ne6j85PPHt6bFhQqCuYZJNx": 400,
     "6oAP4en9397SXbrsX1DzBWc9Y13YcD8c2cV47LpZgY5g": 9500,
-    "6oEE3zN9cT6SmXQDfcraveDdHJ8vbxj96QCUGdy2Kyke": 5000,
+    "6oEE3zN9cT6SmXQDfcraveDdHJ8vbxj96QCUGdy2Kyke": 63000,
     "6oHjzj7zhL1VtswtJboKbd2zXiE1dc3xrJtD8zM1KcKD": 27000,
     "6oJzHcm8VdP6ZtyijAF4FJzUvd3EBfZZtuusGCR1eYhw": 50000,
     "6oRXBzw8bWGSNUw9PS5cSbJBr6nZJemX8ZHaRA61xGD": 1032,
     "6oYwH3d6iCSVDB9gKEkamL6JXDKUA28HiEEnw3v8Qqxb": 5000,
     "6odNcbv1Ccb4iHXcoYrYsSHp2beuxgH8MKeYxxhLuq8K": 45255,
     "6on5MskdiiotTXpTTLVvPEfANN5gbo4Tvza9P2ir7U8P": 3000,
-    "6oobPXr8RfbSy4HFggVyEcnFcp4oPxKijnXnc3KJvera": 1312825,
+    "6oobPXr8RfbSy4HFggVyEcnFcp4oPxKijnXnc3KJvera": 1315825,
     "6oobPXr8fbSy4HFggVyEcnFcp4oPxKijnXnc3KJvera": 40247,
     "6oqtAJNyqwHoCjA87yp4jeBN5ASRSaZ3TfrVVUbLpGu8": 30000,
     "6oxRyTvUYZzFfuSMLDfPUUrGLaoddnoNbzsY7xW1i92E": 10104,
@@ -221450,13 +226096,15 @@
     "6p1UATXAH9MgJ2SVY4a7W9gvYEGPPHLiDkpaVFgqXEfM": 6000,
     "6p6Mhuetepy4icjcqH9utAZ35uxWNsMykeXNF2Xfziz5": 500,
     "6pCi1KqSyQmHUM8hdFdGQ8jRnrthkhWRZwGv9JdPwArQ": 20800,
+    "6pG8KkWYGGznGM6ZuS6TSxms1bRLmoviqYPoXky84vFi": 45000,
     "6pHpUuJ9uwod4DJw9JYyBLbFbuH6Gn8JE4uNuHNjffDE": 47885,
     "6pLufXTPnTiN8YyuqLWR2WAS4ZfCzZVGfyNRmDJCdEvx": 923,
     "6pVzBkLhnZsvHScmD3tFmePmgbaUtqgfVWBYxjxXuy9N": 8800,
     "6pXEFHmZUEdYciBHPeSDCL2TTU8xzCSX3yu9MFReCf8u": 4300,
     "6pXSeCxrNDiip7WN8nmaWpkyht8WM1F93bReytUFTCpg": 6479,
     "6pcZzrYTEVqjgMjSChm92arvi7x99hKWnEncNHoVHVUw": 150,
-    "6poNvGeP2nCDa1EcksX6QUrHdQ8YmpkvsVUS4TfEuEj": 5000,
+    "6piKodoZnAXCFpVFMYmR5nm7a5SuQd6SMm3DNvbeqpwH": 5000,
+    "6poNvGeP2nCDa1EcksX6QUrHdQ8YmpkvsVUS4TfEuEj": 62000,
     "6ponky9uHCo7CLDFNNNsfgMsVUKXFsLyEDSo6F9Wvw2y": 60000,
     "6ptMXAQmph7m6fkZ8aaAYyDvGPZxbxLjd4udPVYBWjkh": 6300,
     "6pu332F7uunrqwuXb9RMKsxEUwKXnSDmqSbPLYZxhZ3n": 200,
@@ -221465,7 +226113,7 @@
     "6q215AAdVeWMu8iox9wMaW14Muww5rKBoMapT1L2DqPx": 18000,
     "6q2BXqD8xjWjy9CHLhh1qAnB3RpZSUDnkqXhhDhej5T5": 2542,
     "6q2aKjfYaoe1T5Hf67xBZgKJrZcQQCmrFBkiiXVUbdo2": 2600,
-    "6q7hNrSbYkiM8umh7c9sTcTSc7nBun2dYLmaLrFsmmPU": 160400,
+    "6q7hNrSbYkiM8umh7c9sTcTSc7nBun2dYLmaLrFsmmPU": 155400,
     "6qA1FqNqvg9tJbE64DZ9qaboG2GCYwBGgxUg89vBr8aq": 20400,
     "6qBdYY4JKmdvg5kByLMmbWYiDrGgRDjRYFNZFdeDkVSZ": 1000,
     "6qHburu5qCcVhqkUeE8H5XH5MP2FoiiaR2rC6VohSbsY": 20100,
@@ -221478,9 +226126,10 @@
     "6qvoHFwYDzA4YwqXtzxzbwWY2RN4Nber7i23Wg7Lx6LV": 83000,
     "6qwwWuC5miLDD9vHsqaWFbBFvrBwjCuQaRLFPVPBbXCR": 6900,
     "6qyWmyaBgsfT4iUuGc79PDgiMAAkyGqhWkgsyP2Sng3y": 2000,
-    "6r1wCxDxotNdA276pkKForS8GicugzuMCM1E5ExLpbZZ": 46000,
+    "6r1wCxDxotNdA276pkKForS8GicugzuMCM1E5ExLpbZZ": 67200,
     "6r3yBtFTABSxg2QPjAbbsm5xBhkrpcdiKxZMGXX8wRFL": 906339,
-    "6r5Ebnsmhjwd1kkm87A3VdLEjaNAVDfupChmJE9Shf93": 207334,
+    "6r5Ebnsmhjwd1kkm87A3VdLEjaNAVDfupChmJE9Shf93": 237334,
+    "6r9At89fXGbYdogqqjg9jocoLYFyB5kyZQidk57RHd5b": 2900,
     "6rBcj16fLRab11Fpc13La1N4sjeLi3H5enwBUC6XEjwN": 6400,
     "6rE6u2oHZWwNhuEgZLUArrVNbSEdw5WPrPjNU5KidHn1": 805808,
     "6rEsYNfUNf1s7oMbVZ6kP7m6e6C5ruSmgaB4Kp6uEpMF": 1011,
@@ -221490,8 +226139,9 @@
     "6rZjsoUVRfUBvMn8eWQWdYarJmsTEcDcEzjMHBW1x2dh": 93960,
     "6rbXonPfPwiFav8BYMbufGjY9fJVGWgyJdGm5DLQJwWq": 24700,
     "6rjo81t3b2m5LCQJr92tf7zZKGjyP79eQou9AsDmLC2J": 1000,
+    "6rkVnkUMbdVYtLkqeZAhhbpRKTqLxWy6RUaj6nkUGXAT": 4272,
     "6rvxDo8SpjZMbAuRhGdfJdNHMBBHGjoM3cFGJCpxhQNS": 100000,
-    "6rwXmP7xzeuGTFfz3NZDivucaXDeMRD7qh8EvaanWhcG": 101500,
+    "6rwXmP7xzeuGTFfz3NZDivucaXDeMRD7qh8EvaanWhcG": 116500,
     "6s17byizDuGF68PMBGt3jzva1hZ8wrX5Fb5J5Ze2VWuN": 100,
     "6s2MtEhuiWQYJB8hX7HVA2xdAAtkQXphvkf5UUAPN6hd": 41059,
     "6s4ddQahkjqURN6WaFPUkNV26PpZmerrVdWaSmn5rTXV": 100,
@@ -221509,16 +226159,15 @@
     "6sUTBQvL33euNT9oyDsRoSLEppxzqDzfKAoYyMALjEkp": 8000,
     "6sVG8KtVGKia1tWhQKrXAYFEoNabutf9EhF2GyEPs4hg": 6113,
     "6sYDrP56BYopn4HpLaCrWMAxfdmRCvvFDMXDqvpFjbiu": 5000,
-    "6sbYtMtDmskdCbGQPKoKcvRC8X5D47GPpywf2Ss5b8WD": 1000,
     "6sbbsHsA3dt1wdGzcfaVWTKS91gfDM9AGM5RtndrgdUQ": 184000,
     "6sbkCbuWsPJbR1NKQBMASrEH1Zy1iUrJ411PptobRS5K": 8100,
     "6seEysShTPk6ESZQFSj1sacYixhmmduDAiieSvRwkpEV": 30000,
     "6shfeyutoRVG2XhBxq9HK8wGhS2N3cvzizENKrak4hJt": 56500,
     "6sjEEUyvD6ufwJrriMEtgQLQQ6PijBXgmTJ2yFdru9fR": 5000,
-    "6ssu8Vuu78pCeMwG6712RbLyY4HCrzcushoYef6Fwkbf": 206,
+    "6ssu8Vuu78pCeMwG6712RbLyY4HCrzcushoYef6Fwkbf": 10206,
     "6sueWrt7MWEPjWPNtELddXkRow5Tzqzp1641nvEwELVu": 1000,
     "6svasHAj5tYcDAiaDGknvqu5BZaK5hgGrYukcQrU4Dxz": 26500,
-    "6sxn3gHnVRigY4tA8NwmSJAVTmyKP8zawtNWZwvkUuqD": 59900,
+    "6sxn3gHnVRigY4tA8NwmSJAVTmyKP8zawtNWZwvkUuqD": 79900,
     "6t3cM32PopZCGvNF1QXV4EJ62MTNaQ8mXXTjSeXgmpAg": 500,
     "6t8nW5Yr3NbRxnEQmRXEJpQiEJ9L1CrLASrt2UAEBWeX": 5000,
     "6tB9idUPQE33vE1JEQLQMvja5KhMVNAkPaygkVAcVzt6": 21510,
@@ -221538,8 +226187,10 @@
     "6txR3CUuLqBEeGZHu32vGEnQ4GQPahVSaH6ApR3pHbt": 20000,
     "6txR3CUuLqBEeGZHu32vGEnQ4QGQPahVSaH6Apr3pHbt": 15000,
     "6txfMmaRiUGcBvJFfLV8miLsq9fhfLKjAWpFHLHBMLwt": 220,
+    "6u4fAbJqAtazhVh8LC6BB4HTgfNAcEawZyXYQRGkUjqS": 7958,
     "6u9Uu13KUTjMNWP96b7EF8cttjhDVNCGjwiCKj58dx9B": 70650,
     "6u9eNpJ8ytTKay3EascsPb6KzoY2hJFFJHTUBeSmVDoW": 506,
+    "6u9qWWFUr4kqeby75tvcgdjSsAnkhHCiPtaAjmvCBRFv": 15000,
     "6uAEPaD79EqHnCdvSnaKGat2wTJajC5pymCLBAieVoit": 20000,
     "6uARJEFqquMTsHd9QQVyCfPoZ4K8rbrSv3GMwduh6VHs": 87277,
     "6uAUqEUiaYqzkUkqSv6hXbG5At4hBoyiHiUNcve15eyz": 10000,
@@ -221558,6 +226209,7 @@
     "6upqFiJ66WV6N3bPc8x8y7rXT3syqKRmwnVyunCtEj7o": 1234,
     "6uy1wzPntvG2zm7tX4mz4J8vLfaeW92v4S77ZQpvDedZ": 100,
     "6v1gUAR674PP1T99j2wQCpaNvfTWnhsB8frTV26YFH3s": 10500,
+    "6v3MVJQkjmTCnTCG9Yu7JkQSupnCRDE2w8VMGzPp22m3": 50000,
     "6v3hVkWhaorBtXi8HwY7Fg7A1q5qz8ofUP7jiLqYPqpw": 10000,
     "6vAMbKHQFNuPPQJRRTPwcEa5h5YhyfCRnyD57KCDaa3C": 1000,
     "6vATvmHoSaDVDXJEhQaKTURSosCcm4dhC8knDcjUL1Qp": 3000,
@@ -221567,7 +226219,7 @@
     "6vJwUUKxLZdezYKSf8rH7yR4xnXWgFeM63kRBKYbRTVD": 4000,
     "6vLbUuKvA2uQivXgknmJDC5p45cKF53YUwMcN8H19Nvp": 50000,
     "6vMqsQZWtN5hEjvcsH3JjQPD2XPUf8nfo8rsnWxvcRLz": 6000,
-    "6vTErndMiU4769BrRH6gNCHDPX4EMAdJ1JSJUy3upT9i": 93599,
+    "6vTErndMiU4769BrRH6gNCHDPX4EMAdJ1JSJUy3upT9i": 254819,
     "6vTErndmiu4769BrRH6gNCHDPX4EMAdJ1JSJUy3upT9i": 65000,
     "6vUbRKM1JZbSSshxSngmoTexzpwp7ogjz32XkhF5g49g": 5000,
     "6vWLzCC8aL5n78MBdcaydtQR3xjig5GkW8qpWHjWCDxB": 4500,
@@ -221576,6 +226228,7 @@
     "6vgb1fEd4Mj56moYwrv12sF7jjytDLFcKbEV1BFdaju7": 11000,
     "6viwz3hKCeDeBYh2N3WgqpmzK8ztcoHddqwsZhVbEt3r": 10000,
     "6vkGY4N3QiTadmJvc2uiAuEdbAmVw9uChRLisRL16AFv": 64000,
+    "6vtpA2nUyKLh9oCt88W4TnHtmTnTdBJ7xeu6qmQPg4CQ": 6000,
     "6vvK5gq53gUAGNUARE9eKXRSRGR3BhEnXxbPrkbwQJxE": 63000,
     "6vxF3Jt22cTRUfbjuuNVqFEvxj39CCrZfPvxa54fQGzf": 2000,
     "6vxgr6giuTCeAgGgvyXV1YD26Pb9MQ1zpeSJ1nyvu3zm": 1051,
@@ -221584,6 +226237,7 @@
     "6w7gXhGU7AnzgPjRKH9TrpYQrSMi19E3yh4MtusJcjy": 2000,
     "6wFKbhdG7GJRmHVVSZoLfBHShX9PwKsEQtJ1gDM7fVXr": 1000,
     "6wFxATL5jTMXefVdR24G4nUE6VJiPXpcHKnicwp2BwYH": 5055,
+    "6wHXKVK6C6ZSvZvx9ddrQ64dZR8fP1SQk99enN3kEUZg": 600,
     "6wJgVCdeKAmKUqCnGgU34QJvF4JMK8GHbUnSjbYDisDH": 500,
     "6wJgVCdeKAmKUqCnGgU34QJvF4JMKBGHbUnSjbYDisDH": 10500,
     "6wQizLiLN42nDevr4yyHQ4L2TNxYBCrvFNXerLW5vsF7": 5195,
@@ -221608,13 +226262,13 @@
     "6x3otndE95u84aoG4QpVHFieYbR9WuvYTAU54oDjgBAc": 23200,
     "6x5AXpkntHz3mk3ggaA354wdhbfBiiudzzvg33dYHSiY": 1000,
     "6xGGpChRzs9QaraS2nvokecWsyjQytbZJwm9cV4eaUEn": 130388,
-    "6xHcJ7y9v8w9pnwRcV8DNEg5hPttJAwisrrizNECvBM9": 4985,
-    "6xHoLctS1QDGsoxgJsXBTpD8SB57Y3qBuvtNZnzoFnVy": 213800,
+    "6xHcJ7y9v8w9pnwRcV8DNEg5hPttJAwisrrizNECvBM9": 34985,
+    "6xHoLctS1QDGsoxgJsXBTpD8SB57Y3qBuvtNZnzoFnVy": 204800,
     "6xLu8YGkVpUhzcSpnuA742i56taaWPaDs3ck1Z4zCs3Z": 5000,
     "6xNDuidc5FdACQnwUK4cEHXNhtxYnfvpAUkxHxBsoquk": 1000,
     "6xY7qGk9yWDrj6JtuN7CDKinT9NFSWMzFNX5iXui2W66": 112900,
     "6xYzVHDP78SHxxztkEZQYdahofdwnmqccJZWVNwS51Mo": 204600,
-    "6xa29GBQis2RAWRZzguHfkTZXraBTV1a5BkFnimjmGFe": 55162,
+    "6xa29GBQis2RAWRZzguHfkTZXraBTV1a5BkFnimjmGFe": 85162,
     "6xapF622fA6YWuEzgn2HRR7fySxiFTf9QxsK2tab7sVM": 1949,
     "6xbfEu3MAyUguEasShFkD4T2kCTVfQ28WaNak4eQocFY": 200,
     "6xd67kRhtH5Vcqotgj9tVbi3cZcvypQXDEQo1XSjp9A1": 10000,
@@ -221629,10 +226283,10 @@
     "6xpF2gZ5Y9aR6gvCxcrnrobmvzV7wxE4FvLLAY2yDeep": 4092,
     "6xqZERJjpBfQHfvK2VT68SDqNjqYECf4C8goq8BDiUS2": 37046,
     "6xtznRqEwZH3ZimX4C6fgRnXbyeGS1EUHnu1jfk3b8dk": 5000,
-    "6xvJ1kTjV3U1SLnCQYpB5SEX2ZgNpPmNRZLELDQk1hE2": 80000,
+    "6xvJ1kTjV3U1SLnCQYpB5SEX2ZgNpPmNRZLELDQk1hE2": 108000,
     "6xwfA4B5aLRuMo311LKaMS6Ho7rrPFJH34Ug6nXg4xpB": 5000,
     "6xx5uCyVhkdWW4BYYCHTK8VQ6hEpbf72WP4Ghp2osEA3": 146340,
-    "6xyootUZ1avuhkAhLqR8eSxJg1uHT1muHXYfatmQNiKT": 125660,
+    "6xyootUZ1avuhkAhLqR8eSxJg1uHT1muHXYfatmQNiKT": 225660,
     "6y9Hsw864baarDSpEawRwBF8EeJiiF7vAV3k8Ba8uem4": 22500,
     "6y9kBqkCsexZ49zfttQFHqfhM2YoDkJ8xvrCapX92jth": 100,
     "6yKpQACL76p81gzK4RmociiceL3rf5kRQzdNqNsCg6Z": 100,
@@ -221651,9 +226305,9 @@
     "6yvkBEA2yXxVMUUAB7AQ633L3qeo319Hxg4Bw8wkL4Uu": 1000,
     "6yxCUn8VtFRMFFizow4CX8R35BNXQtZBg9YosRAiKmd7": 5000,
     "6z1GEox7DEssaDhz5MpsiFodMnin8rUSSxVoD2uus6E7": 100,
-    "6z1HcajrTJwCPyJ3u6b2yuWfRQJmcdjyxmhvtE2jiJGN": 60000,
+    "6z1HcajrTJwCPyJ3u6b2yuWfRQJmcdjyxmhvtE2jiJGN": 80000,
     "6z6MTeToGAZn9YFWGzXwvB151NyMsXa49G4DtjYi3wZL": 6407,
-    "6zA8VURsxViNwR57idiAFWdCdqfvZcrR9kbit7VJfoZ8": 136328,
+    "6zA8VURsxViNwR57idiAFWdCdqfvZcrR9kbit7VJfoZ8": 112228,
     "6zA8k8qxxHaxQG8m79UCEn19AxWucjGnauPGhJPSqHmS": 30500,
     "6zEV6YeVnpu4CT3mwBAVvvzJ151xdfsmUZnGHqMhydKi": 3600,
     "6zFHQikRqUnzQRBoeE43zjhFXBnPgUEcASrCfjTq2t6n": 500,
@@ -221662,6 +226316,7 @@
     "6zTiNJMm8njUCNcoDCzk6kTB4AK7FWGmd4JriTZ9jHJ9": 100,
     "6zVPN8i5saupHWrstU3Jav7nSgd9qWkkC1RABAPNyCHu": 14500,
     "6zaDWGSK9FvaX2R59ibPtGDDMumgLPTdWRTeoppW3fFh": 500,
+    "6zb3i7DordPvjhj9bY5VK7dELmCeSBzm1CFarvG8TE3a": 18100,
     "6zeGJ1xzLzbjPUgpobnJEAZi1W44VLAFaY7kRXsFSYvm": 10110,
     "6znC7HH8tqWwmrGFZj8PW9cXnLK8R7EjrhTbTqY7wk75": 100,
     "6zwQ2HSzRTjYnq3hGkk6Tuh1nWkyJJsys8U9u7ZTzwbe": 5000,
@@ -221678,22 +226333,24 @@
     "71Xy3Bkzr5o9WXwuFbcq4GrPXkDLLTTnXreUww4fneF1": 7800,
     "71aJN9RVQSsqsAphEXCPeEvtybU6LNau3dmyzKowvJnM": 14000,
     "71hLrxecnDCkQXApPYKpxNiJbT5aVwsvH1X848keRfFt": 5000,
-    "71iDT44ksrS3iirJPNQjYoz19qCFtYfH2FRrrx3CP5BT": 137647,
+    "71iDT44ksrS3iirJPNQjYoz19qCFtYfH2FRrrx3CP5BT": 147647,
     "71piaqPX6RQ3qKnFacojc7YRg8VRkhxFUayRBfU2f1ow": 2500,
     "71qPoKrAyRtK4zUk5g7qfU7hb5VcAJb6B8gQ6mEDU7WX": 3000,
     "71uWgcKPVFyPirdcWNzZiagPC68nHADP9p4outbjqVaA": 2500,
     "71yvsHkjepBttgTXuxAwvECK4zsBWD2dduCqwKoJMieQ": 4000,
     "72189fxWkhuSF1xp3MTCL1vnLm7qdCg1hH96mn8KCdkj": 83584,
+    "721B2Rgj1Ybdkand5Te4SZKjrwWUQK7fs1Fgir42SawD": 500,
     "728xzEc71LFNkjgkGr2ej18EZiyUnoSm6qjuVqZsJ3vU": 7900,
     "728yyrJVQHSx43dgLzneeCEEiazawQN3PQs2LM2hSSqp": 1011,
     "72DyUgW3va9eAnC2dhYSsZKGRHnzUhWsXh9fvuzh6796": 5000,
     "72Gr82cByFS1Q1JwFFMKDJcJPmKcrUfwiJrM8GYvhWHE": 130000,
     "72HD2pJRB6qKFc6Vw69KLtXqZGWZWsPaVeFn8wWvWzLL": 147500,
-    "72HW3jx9jmDj3HofqYEXbtW2i1FzDwXiqpdBaZD3i2zc": 1200000,
+    "72HW3jx9jmDj3HofqYEXbtW2i1FzDwXiqpdBaZD3i2zc": 1700000,
     "72JPDBzF8zChunfCBc5n9nzQ4Ds2LkDQWUi9GsDeFoE": 15000,
-    "72JPDBzF8zChunfCBc5n9nzQ4Ds2LkDQWUi9GsDeFoEK": 481800,
+    "72JPDBzF8zChunfCBc5n9nzQ4Ds2LkDQWUi9GsDeFoEK": 529300,
     "72ULaniRkZVZoU8QusNiq8iGrguBheWDu86v6XBbdsC8": 3000,
     "72ai57KsSnCZLC1Sa7SBMvFVSmaJWt52VXc5yMHygjSG": 100,
+    "72c2MSx8941rdPn6UyH534zbRbjfjTtsR52wUPLqfxUX": 1000,
     "72fzdZAaZBghDbqJnnK6HyBFhzLcVY9Xew2B1TirUQQH": 10000,
     "72n3rfyyF52gEYt7msf55MULjizbftRvR5XCEm265949": 187000,
     "72qiaFsk7xtnVgFgbGC3AYMVD8tHDe2MWpSU5aLijvqL": 78000,
@@ -221705,7 +226362,7 @@
     "72zs6YSoaVmoBqTdqz3NXsToNo42Qzxg4ziRUWNnmCKz": 13000,
     "735XFwiMTsMpXy6cvcM9BAKSQvtAA7EVAffcfStfsg5W": 25000,
     "736nCZyN1BAjzuxrkEz3WeSVqwNPFyy5vfBafoPi5etM": 2000,
-    "737kixmhD91rznEto5FnK16TY2ykusEgW2G3iYwqhr5H": 22500,
+    "737kixmhD91rznEto5FnK16TY2ykusEgW2G3iYwqhr5H": 28500,
     "73AEJioY7VkF4w9nbRHRUgMN8xBUQHYi91HHgK8ovV3a": 10000,
     "73ArdqtsQScypV35H4nYGH65Qg4HLhT84Wf9xGVtxGZ5": 669870,
     "73ENdtsA36mpsTQE5yyZdhcye4kcQ4EVh46xTQYTqFR8": 97440,
@@ -221715,6 +226372,7 @@
     "73V1mec5xjG9JnkpyK7vok3cd8HDyok52DdJJypSEX1A": 165458,
     "73VD6a5L4V2Z5aNh3nKmM1qkjPLRYeyovrmEAUF4ZXfh": 300,
     "73cM17sawvgJ58sdhSsKzmfW3vJ2CQBUroQygAgnuaP6": 1000,
+    "73f7SzjvmDjMGQw9Rgbsi6tkqXJVTvs4UFViUcYWhXP1": 900,
     "73gziNdga5jNPfjDg7C7bErSRPmmKzFqzspEVDgVX9Dd": 13276,
     "73yysNnJ7qg72WPXhSHjkMFCaaJq2wCRdS6yvr9BpyB8": 25000,
     "73zysv1yn7KQP3NsDRSCrhT3mkyFrWaj6c5vP3XKeq7Y": 100,
@@ -221731,10 +226389,10 @@
     "74QCbTvN8GxEthD3SkSbuw6yzrDH96JzNBvoaAcsZ9g6": 31000,
     "74QfziFMrbRF7C8o9GhWpvL8B8wzC2BEREizF7QbWNg6": 10000,
     "74WxW77QWWUwb5UpSWLa7c9oPSCVyMAz9RHZPe6RsDGJ": 64799,
-    "74ZsonibjAgqsz7h5B3KU61rSAHK2xyEpx429yePy4BA": 50000,
+    "74ZsonibjAgqsz7h5B3KU61rSAHK2xyEpx429yePy4BA": 55000,
     "74cNtVsfekH5ZvqdE46W4jDSouh1q3QX4NfTNnxQQe9k": 5000,
     "74no8uqio5u3esXR1MaJDb6suYzc8w9HFy7tw6bYv3yV": 1500,
-    "74rjXYSWer1p2t33thQLuFmvmFgMNmeMEy1wgaDiW1wT": 6900,
+    "74rjXYSWer1p2t33thQLuFmvmFgMNmeMEy1wgaDiW1wT": 4900,
     "74tZtpcPXX9fnU3SKPpEr9PetojTGYKqnv9YB8ZxyGDv": 42500,
     "74yv4zR7TY94VhVDzgKUY7JdP6BqTdUdrKiJxgRYJ7Pj": 5000,
     "74zZ4NVwtS4cWLZdnPztZEXvLDyQmo6Ah3aKi9wzbEhx": 845,
@@ -221751,7 +226409,6 @@
     "75jfPqRr4UN2pJifDjZUBByM6s7um1yThaqeRLyxcfGz": 4295,
     "75jyMcA3escoRHLYQk7zGovgg7qqKr94ALFSLVPmDE12": 15200,
     "75pBXk6aykTvvXicWUpSTKJNZhBUutZnDpeeBxhLpEhZ": 5000,
-    "75t8SGZn9BDmbB2R3cbUYR8N75sPPTSmmJog2VGAm46C": 141700,
     "75u3FNhp7M4ctrC1djVxKeLCem75xTUTpHhqHFMdjZA": 43400,
     "75uY6Joj3ysX7uGmmFHA4NenmiTKPDTorr143SPJACTA": 5500,
     "75umHBHDJqtGyTggp9JZT7yiqbSJZ5burZr8EZjooGfY": 28860,
@@ -221782,6 +226439,7 @@
     "76jdExfxjitCy7Pacs1ANynDdH7CX1X9d172SErBoiiQ": 15000,
     "76k3frvgVzdiBsFcRoALHP7qjFtqUpuGKmxyW9ewNK5N": 6605,
     "76khNBMYv7nXB4SjfdBiLMhiLtfAwHYeb63bL7utZsz5": 3500,
+    "76m39yc6ke4wio2dUm8taiXL5gHZFKyvHix4urmZf7e": 38500,
     "76nw3ziyvK69Y4igxKqaLfRw97ZxYFRuziEHP7T1Lkj9": 1000,
     "76owd79ty1WsQkXxW3oR3GcskDY3krgD3PhtsZCFkCFu": 41881,
     "772SRBQsovYVkqj7k59QpMNu5GZGbAZPE9mhp5rLTy3t": 80400,
@@ -221792,28 +226450,29 @@
     "77GAeSrhJDHM9T7HAjhXtyygBXijTvJaDLrzRgwAcNTT": 50000,
     "77HS6JjYwee6N9UWpkrepcLpPRgosgEzKtr1gU819QtJ": 1000,
     "77HjuM8oakwGpUd6FfGnJtEM3EDtgugEdMokFEmD3WzF": 100,
+    "77QNEnS5xRFEgRorQ6N2z8EbUmfRNeUYa1cLcEh2FQYT": 5000,
     "77SMzEJN1mhnsLHwybS7obhPHdENSvUBfTS2WXDViKzM": 200,
     "77TnWiZZPKfSJQRiHHBhaLjtpGzb4WNCvwvdFYfCBQZC": 292000,
     "77UVGVmbBLyh5gM51X8tbMtQSvnMwps2toB67qHn32aC": 381880,
-    "77aNLxWJLNQKL3nCfJUzsk5py7gCzsWm3Bn7K79n31qe": 5000,
-    "77ddUyN3HzdfrDhM2HAeDkhSQwR1FLYsBUuYUpZDnmmi": 198444,
+    "77aNLxWJLNQKL3nCfJUzsk5py7gCzsWm3Bn7K79n31qe": 5001,
+    "77ddUyN3HzdfrDhM2HAeDkhSQwR1FLYsBUuYUpZDnmmi": 188404,
     "77fSDGCzzZaW8fMGkwDrPGwqNszNw9tMQTshrktLhRPg": 10000,
     "77jLVxeajDucxZfaDUrLXgBXhGVj8X1RXG9sCvryzM2f": 1100,
-    "77kTGZskoXi3ULL5gCutGH8eGj4dLxUm7K9NsDu6Xb18": 48416,
+    "77kLFDSUedJXj4jha4iNYksvtZc3Cg4oZevQjYaEf3uQ": 15100,
+    "77kTGZskoXi3ULL5gCutGH8eGj4dLxUm7K9NsDu6Xb18": 128916,
     "77qJtXwS7CA4z1xM5Ep6efChMstoCwYwAaBh9qh9McpC": 1300,
     "77sgW2RKcqycD9KMgoVNSse5Xa3iUrZXkk5qCyT4jYHL": 7118,
     "77xA9BnirxARzRgMK8G7y9jFi64sZUcfGpNB2ukmHtHE": 195000,
     "782GeMXejpQQ2eTX621ErzTEyYNpAqpqceTn1t81ypve": 47536,
     "7884KyFzAVkyui6sSSUhPbGcChXX8YN48Vvoj3D4LxTK": 100,
     "788U2C8mWBTgXC73jJY5WN77FbroBAxiwQhJtfv7z6BP": 102972,
-    "78AQhNwd4r846UTEZ426hPcvUgfwdATbSxvVfDQNt7oq": 79500,
+    "78AQhNwd4r846UTEZ426hPcvUgfwdATbSxvVfDQNt7oq": 101500,
     "78AnYH3m3BB7wULEhsXbAC6aTrgqXGsDaRpThpyLGmjC": 60200,
     "78BtFz4wMaXmsaqvfgyuQCafMF9FfMRkZgHofNPuiu7f": 19000,
-    "78CL2o85c44SA9V8iHDxamk3oNzjBum3gpdP5fZhMpvW": 15640,
     "78Ch5xdrh3iSzHjaVWPrvipV5yX4TxH1YuJ3J5Wm5Ypf": 1100,
     "78GDKjVjdzXseXSWqj8ifQECAj7WARH5ZrfXuK6oWwq3": 7000,
     "78GT6paZhgzeuotY8HdQa2VrXa1FV7DZvuumasN89LR5": 55000,
-    "78HXjWqvucAcZRfh7nFoJuMw4moRRqzVHVweKBu6gnHu": 10320,
+    "78HXjWqvucAcZRfh7nFoJuMw4moRRqzVHVweKBu6gnHu": 30320,
     "78R2cfvVWFZDiHLEA54d1M3Zmx5EgcgZPVyeNXXVi7WQ": 8000,
     "78RHG4UWGK7S9yqA5vq7C3uK3yckrE3vFnucmqM6V5f7": 4000,
     "78RjQ3yHCfSsWBpN8UDqv9Ua8TKM1hnKB4GVyEnTHZuZ": 400,
@@ -221821,7 +226480,7 @@
     "78WsHEwNwSHm7T8uCMCXG34V2jJA2TwScQiSCFt58uRx": 949,
     "78ZDHzSS2ckGxE97m32Npm9U58oKYEXqTpGdRst9TVaw": 5000,
     "78ZwwgpgdH5uLZLbThUQH7LKwPgjMunXfLiCfUCySkM8": 30000,
-    "78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8": 24518827,
+    "78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8": 24960677,
     "78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCyskM8": 30000,
     "78ZwwgpgdH5uLZLbThuQH7LKwPgjMunYfLiCfUCySkM8": 19357,
     "78ZwwgpgdH5uLZbThUQH7LKwPgjMunYfLiCfUCySkM8": 3000,
@@ -221829,7 +226488,7 @@
     "78bwh5xCGQc3u2XbYQ6zEqj56WSWXw2i18STGyxBEJbo": 100,
     "78ezS1W5TCLzHp7vQ6C3Qd6esFRzcrj66ng4JdwwvBQ": 100,
     "78ftM9UdNqkCLgHb2Ya4s9XMQ1p3hogaHmSQjzzo1RNm": 11600,
-    "78h2YuRZm1q7xRukWCG2e9S29woA6bwTNkv9CZVQgFZd": 4301,
+    "78h2YuRZm1q7xRukWCG2e9S29woA6bwTNkv9CZVQgFZd": 39301,
     "78kgiWKBZd6gunV6CubkHKkRzErMzbCsWf5eSdgetxqG": 100,
     "78n2eUHz5M2X767pHerCoo9LDMZR6XmcXcKpXnWvx9ic": 800,
     "78uTZ8djjedZZj9CQcGccagywRrLQtVRKh5VzbdEExVc": 133000,
@@ -221849,6 +226508,7 @@
     "79UaBUnMacG18ELGRULyBFLdbcJvyL57eh92c1hNbLXm": 25000,
     "79WnvQdyaQUrfQJGdYrMEw5MgxUZAp5hTq96ter2et4T": 100,
     "79ejKUgBdHMRojVuYuT5zU14nzTAJKwhPApB1VZyoLyM": 102,
+    "79gTESrB8TZ1P4wVN93BZjiBmXJnoYncS1zSxkVaANAh": 147000,
     "79heuagrCozQkUwkGySLiwaXa2L4r8cLGgLLm1D2WRJf": 5000,
     "79mFoyaJKJGiTubxE1neLbVVMCvbyr4q9p2Zi2AkSPE": 100,
     "79meph6LfxNLEtKqXjXBqaFDLG1LT3JYArQaXkjeyz7u": 100,
@@ -221865,9 +226525,13 @@
     "7ARDwNf9jWiW2YptdJ4nai557rmbF12nxzdFXRJaLRuo": 20000,
     "7ATWESY58998PeoemxYnNthtNU7LZZmFWA7KgEXUCGRD": 18000,
     "7ATWESy58998PeoemXYnNthtNu7LzZmFW47KgEXUCGRD": 2131100,
+    "7AUwVPJnsioEmaoGDZ8a8k6ZVRqQdnnyzXuHkHWiK1yu": 5000,
+    "7AV6kmhm8T3Ea8e967ahJsrNq6ofasuEztwnhzaVTULy": 5000,
     "7AbXyb9QaCAPwPJvNAQsreUV578z1jKNtuobTpXSxz16": 5000,
+    "7AcHzZVmFrqCZ9VXq3VjhCudwpxyAQb7d9Rg4UxbR4fT": 30000,
     "7AepSeKvbz71ZWBH6ggPUxymwYyRyTRdxZdHTPYPJ9xb": 5755,
     "7AfsQPBMw4nyd4RrjcYGcAP7jBRveVyF6J2LRpCsnzoZ": 4146,
+    "7AkiUo8G1CJGDyFS1pARWfkUyW8ZFhtLR1JszeSLsNUH": 84100,
     "7ApRmzTZs1foPpxLfd6p6qW7QBxehxEQ1innbUPT3NKT": 10704,
     "7AqqVVTZyzJYbMUXeAKzFtxQhLpdEUKEcFzeC7mFCj4k": 1103,
     "7As3LFkcm3vtmrDedRbJZWVtY58p9b9ucvSHmAGa2Dky": 10000,
@@ -221884,7 +226548,7 @@
     "7BmgZx7tH82tXGBAREW22Mtu8mJztZaMyQahqUkteAti": 35000,
     "7Bo5asQ9E3pBtcKCkZMyonBXsubc5fe6TTb8ytqdEN3j": 2500,
     "7Bogch9GgUWbfgRmAxiiix1eA98SPtnVJom94DEmvCAT": 7800,
-    "7BtohJWXxHzTMy27LYAGiYa7M3SjzCnPJUMutTkWnTmA": 28500,
+    "7BtohJWXxHzTMy27LYAGiYa7M3SjzCnPJUMutTkWnTmA": 8400,
     "7BxGKzhFhY5MrpvoibLvxeA3TH93iVwgwVjgH1KfsWxL": 202,
     "7BzcRBMnohWnHWkQiHVuCiP4oYFEjMJho7MgWbHF7p2c": 60000,
     "7C7W3PRttREspAqb72sKpa1XsZSjSLTSfddYFxUuGLKf": 177253,
@@ -221894,12 +226558,13 @@
     "7CEKJS4qdjmab8LtiMPvumHZZZV8TuoCeD9F3gdSfLrH": 2900,
     "7CJGnu7v1Zk7P1CVnm2JfP2wyCcydyDdXsCMfcmvfCMu": 123038,
     "7CJZVNvSmCPJ2tjjqqnuYVbWLFYzRKRabChAdq3QnFsY": 10000,
+    "7CKudvdU9p4V8HYssEibUMA8PxrrrLR3gWuiLPj4AQG6": 6500,
     "7CPgK7ke2DUF5Hhc3zxgUEVHVFspyPhcutGa68NDqKjr": 17449,
     "7CPjZoViytPfCaXhYa5z8N5X4a1YszVZexvaFZhRqERD": 10000,
     "7CRM1ihnAUyxBY7ZZUxwG7uA61hkQ4HH9MkTGLBoRDRM": 36900,
     "7CT3Z5oCvBq1tPZ97RRnCjn79TPPyfHrAAmGAL47pgYR": 200,
     "7CTdCBEtnbPFQapj3UqY2zNZL7YQKk9t35RyGeGL2xyJ": 717853,
-    "7CVaH2PeBjEcvYbCrR7jRtVqkcVnVKEAxTepKccS9Beu": 3000,
+    "7CVaH2PeBjEcvYbCrR7jRtVqkcVnVKEAxTepKccS9Beu": 13000,
     "7CY1Bu1tTrLeAS2u8bh7KMJQJX4ne62Nw6QCu2fknNAX": 1700,
     "7CYubdUUXVB9fLdxcCzE78pcKemDSjPnrZUeLhuL1Ep": 30000,
     "7CZfTmvfixpwrNgTyDQnii19AXk7qf3XhvPXZok24Bgy": 600,
@@ -221916,7 +226581,7 @@
     "7Cy6ietUhjKBEFzrA7RR6RVkU2PFHKo64Zg2ozcHzD12": 195360,
     "7D5eLrwFpSbD2L4zRxJwRZ61e6MwZ2nxa9NSnaiRNT7B": 20000,
     "7D7iLoGtZ3WKwjivADYCeWY7XFJxqNEEFCfcxAaNG79j": 1100,
-    "7D7mkTHuVbG5dKimW5cw1iYJavoNsuFBWzSYfiKVZPeg": 299534,
+    "7D7mkTHuVbG5dKimW5cw1iYJavoNsuFBWzSYfiKVZPeg": 333434,
     "7DEZVdEiMnt11ApzCmpPPEnUSd8CJSPfzrTV5PWD1k45": 5000,
     "7DGm3uiHvykDcwUVp1fKX2XqefVC7Xa1vikgEPXHDAf6": 1000,
     "7DP5TBGEH1cmuTa1QgpuokTYLzbGkrpNYTKdTAyaoze6": 6200,
@@ -221928,6 +226593,7 @@
     "7DfZp8ydRHvEK9BLoF54cEnUxT1DYaKusWB9XTXcqB17": 5000,
     "7DgHDSZB2o121ryL2crjes2G9zFf182rxxU2KsBVqskN": 100,
     "7DhNqG7bDRmbsXhohG7vCDSppETsuBcPNpa7cTKVEbf": 8000,
+    "7DqHAeGowwPtSk7LKHf55b2p9eFY4HkiRfq2dNqkrsWH": 21500,
     "7DqJvZ8scsXSmsCiqKZJ6VmGMTdc6S7Ft1pomzKhppYa": 100,
     "7Dt5j5mPmcFyazEKqBTtoZ7qs2BNn3wwhUMWbUcczggV": 173600,
     "7DvjkQ613H8rh4DYU8ntBGPz8K4aB9D8zkM7kjUdCohr": 2000,
@@ -221962,47 +226628,48 @@
     "7FAkF51KJwr43f17ERyDpphj9TJ2ZFhHdogaP9Sd2EqC": 3600,
     "7FCS6j2p7GVxdatXz2485Tewpwpg6FxT6HQvSp2djJAY": 58414,
     "7FJKpGPqUniA76LSV2EnXRoVaszWtXXu6FPjRVwdKT1v": 18100,
-    "7FMFrddbgc4H5XuaV6i4LjN4BTQzVBxrRy6fM2awRzZ3": 30500,
+    "7FMFrddbgc4H5XuaV6i4LjN4BTQzVBxrRy6fM2awRzZ3": 14500,
     "7FPgzNpKLEe61FMhvEZNU3W66vwHmChMyPLYVX6j487m": 20000,
     "7FS7vmHMGZw4vgx8svXVtvEkkSetRs599v9Jd6A1LWXv": 2200,
     "7FUTQtoobxJ7u4HBznoFHtVkL5CWsDnoiQRmSwoSWKv4": 4000,
     "7FVPoSnd6oQhziAFebkLv4bucyT2GuWUiP7UYvFPwTQK": 5355,
     "7FXC6U6EkBGPVtM7ntHbtUwvNRchYvWQ8GGN5BwgF1Ty": 100,
     "7FZYsKfUgjxqt3gj3RNeCQyi1hBh7h77HTKqYBW6tzK": 2500,
-    "7FZYsKfUgjxqt3gju3RNeCQyi1hBh7h77HTKqYBW6tzK": 186500,
+    "7FZYsKfUgjxqt3gju3RNeCQyi1hBh7h77HTKqYBW6tzK": 220500,
     "7Fbr64hL7nyiQCaKXt2zZPoH1ZZBrwaD2WotEnppBJWk": 200,
-    "7FfDUBNVsfRZtjeycowcEVvhzNfWyBBuYeuyF6m7N4cV": 40000,
-    "7Fg4euL8brPhX7BKeK1fwq6x87mqeBUHzprqrZig55Rg": 200,
+    "7Fg4euL8brPhX7BKeK1fwq6x87mqeBUHzprqrZig55Rg": 3700,
     "7FmHNtGtbvWGWZwebQtdQM2oVTtycXrDJZYYQ7ma34Zs": 8225,
     "7FpTe9KGp4XW5wvSoL1Chey5qM5ERHkHqjxo12C8b5J": 100,
-    "7Ftgjxok44tPWDkAYY15UKNAV9vfniAnmW2SsPHrk2KW": 98200,
+    "7Ftgjxok44tPWDkAYY15UKNAV9vfniAnmW2SsPHrk2KW": 200,
     "7FwT7fWnkSpsCu436napaj3vhtX6eNXqTioKRysA6qJ": 251,
+    "7FygMwjNXsbyuzWhYC3GeNXk4jW8Y6m8xAstNXE2qtRd": 4000,
     "7G6X4SmcojfJDFqbgHpnpKANSudkytEgnngJGUB8NSK9": 500,
     "7G8M2zzQJxnFX5SmTMEms6RV2zg7ZcgMge72BJ2KA1Sr": 1000,
     "7G8c52MPg6M7Sr87mBptBDjMnqiWandowPn3wECpufWE": 100,
     "7G97ccY5ZPAXx5xJ6YZcQLi3mYiKBsA7CLbY7MGm94C5": 96000,
+    "7GCD63HdfdxuqYfo9ePKwABrWgAnA3Q3kNPNUSjw7b5x": 200,
     "7GEDBfzt1bf7uhjrPf6wrwsPyT5eVZBTff1Dypzv9fzF": 2102,
     "7GMie1Bt6DJSoAj86k73kzf4Zhqnxs119EBbV9aKPkM2": 314,
     "7GNayk9XSAWPtAKod9EcRXNU8ogE1DGg6MfSXV1RFzCA": 44272,
     "7GRS4j9rW3iECpxUL5dUSMWFiFhBDjAXyVJPHdLdCcM3": 80000,
     "7GVy5egzo2muhPjW6nmo6DJYCT785FeCm7bVwzqwFHaB": 500,
     "7GYsM2E7XY99z31uBDorhniStBqHaouHeKj9S6hbSZaM": 37040,
-    "7Gha9yHnL6KbrfHwhnFjQmLnEgUwB7GULiK8e7Fz73p3": 251519,
+    "7Gha9yHnL6KbrfHwhnFjQmLnEgUwB7GULiK8e7Fz73p3": 84926,
     "7Gi6cPJ5SpukD9PN55sAz57mVaTHGrsAdc5V1dKPbLPR": 300404,
     "7GjxnYShQ7nv9BU3hm3qV9EKhAJrpEoFJWMTNaFkupxi": 304000,
     "7Gk1rYgLZhK3n3EEa6HaTLzDEVGG2med8Qb6rg5CiJfX": 5000,
-    "7GqSaN1dKtF9D1wgxZ3YTGmhPPiUgWWzGxjEMJdJHSGQ": 694900,
+    "7GqSaN1dKtF9D1wgxZ3YTGmhPPiUgWWzGxjEMJdJHSGQ": 695000,
     "7Gwe5AXLAaGDf3G4yoYkDds98TfLLBCZ3cNsTuLfwvsU": 6500,
     "7GxXLJVtgadpgk7VLdnrTZckMtityjnLy4KUKbJFWd5e": 24000,
     "7H2vFr8NawwSif43mNK9f5yze6SYWhGr4xpdNTTpmatC": 100,
     "7H6kbX8jxEjuEAbp5KWTYychhAsrXWPQ65NjKFXnZd9c": 500,
     "7H77WcrVyu5i5pVUPB2wAeYupAsrnexdvchGNGJcTpZT": 321848,
     "7H8MkWFK4H7nienoaME3SJmZvqzShMopbB7mpgBGnYsM": 15000,
-    "7H9bvrFgGEgz69Jz2A5zVS3wFffCvgkrdp7dESUd4hGC": 10000,
     "7H9pWxS3Y5QYg9H8suQuq7J3gV1VbQwsV15kVLwuqc6M": 1100,
     "7HGpPszGWuoDDDrCaqTgLj2LNy6vCjss5MmaNeYfMxpf": 5000,
     "7HPFNV8jH7HC2GshGzi8PVTKGUbv8iUWUGEckr1fcqq1": 4210,
     "7HUKe1XnWm1qd2u761pWTdCikFrt39KzED6bXyQKoqMk": 100,
+    "7HVCa2CMoUqqrEMWo87PsDywseq4wwRwDCUJpQEpE5e1": 4000,
     "7HXLXeWCfXRJUzSLV95zqJXF8EHt8htvQgqvdydREbsD": 93500,
     "7HaBFC1oByjuTCvfe57LgFEaHUDc5ojDyoB6v4igNs8K": 500,
     "7HaQUFbxovkjoLuJ7RZZN9DF4SKW7okkLDURyFmP5W4q": 5000,
@@ -222010,7 +226677,7 @@
     "7HiNYro93xZEoRtHxzF3Ujhr3uxtBPTrHZimycgBuGiM": 7000,
     "7Hk9MceW4KvyDG2Maiu5NuzxFM3bikN64fKf7iKm8Uvg": 15000,
     "7HpT4L9Fuo6qEnGWfALrepMHKFgfsff8zUEeg85CHHbz": 49000,
-    "7HrBcR2oiWE1SJSyTSvBAsQzmsCHTYRFr9cGvCPhNiDA": 36500,
+    "7HrBcR2oiWE1SJSyTSvBAsQzmsCHTYRFr9cGvCPhNiDA": 167900,
     "7HuWoBUQ9pPTpYuJCz4ojAm6TnHActUsNoUKFdn1evmT": 1700,
     "7HuWoBUQ9pPTpYuJcz4ojAm6TnHActUsNoUKFdn1evmT": 100,
     "7HzZAnGRjHp9RpuhWw7ksPksk6BJBJ97RNpqmTyrNsez": 10000,
@@ -222022,24 +226689,26 @@
     "7JHTXGWkuz2NdtZDFKL9Ufy5Cwzz9nFPt5nrAo4AnSe": 414,
     "7JJyE2YepUC1JrwX2Cu3CZHoPKuGetdtYfQDbz44Pcm2": 10000,
     "7JQZ8dUNE7kcBHchX5msfQTrtJqsmUTge9E3vjdtgfE3": 65000,
+    "7JTNQWqNcFBVVejgPzxsrAfFmfVrRw9xefdB7o699211": 7204,
     "7JTXKYYzns477sAwUXXgkD44PAMRWh7TwPaqRZMvDMg1": 100,
     "7JVqZuHfzPeabeXEUL2DnBMRq3GdKG9d5cWAQMCAb7Vn": 52435,
     "7JX4GSEAuW91Zt7CaK138nhk865KSEiW4dcd38iuThjq": 60000,
     "7JaQQea2XZHU34sA7hirNPRhqRpRJBXA3khi9ffVyq5n": 3000,
     "7JavbsxYPMVj97Ai1eJQe8dkpW8PfasAqxtpvwowvi5Y": 2000,
-    "7Jb3BLoLztKMqyA64ozfxB9aXqN9tsfKCprmMGFWm4Wz": 500593,
+    "7Jb3BLoLztKMqyA64ozfxB9aXqN9tsfKCprmMGFWm4Wz": 525157,
     "7Je6oJRkZ7GHB7QR63LGK9qRHXnbqWkpfnNi3Riu3F7D": 100,
     "7JegdjSUnyQW9vbcKCxZcSi3mvxi8cH6HoBUXa4pozFt": 24000,
-    "7JfhnxSSYmfc4SkVGcJW9enf8D42g2NWCRbBLEvqZiWZ": 27984,
+    "7JfhnxSSYmfc4SkVGcJW9enf8D42g2NWCRbBLEvqZiWZ": 20484,
     "7Jnvx9N8AnXsF2X6rxtX3g6d3EM1bSQi8GCtDb8Kdjb7": 2184,
     "7JnxeKPgqkkb5DJC7FbZeXHMKubTHK9yon2jXSXbmfdq": 314,
-    "7Jp9QLQZ5gctfCmasir9MJjvJvhUus3skLrrwLydi3ZR": 181700,
+    "7Jp9QLQZ5gctfCmasir9MJjvJvhUus3skLrrwLydi3ZR": 155000,
     "7JtzAbo5sBZba6py6gJUj6iDiTgfrxgUaR4kZxHK2DwE": 10000,
     "7Jwfvc4bfqnfiYTGpUtgS2WfS3ykiePA3mmwCJAbFdD7": 400,
     "7K2r6MWd8nzCvU2ibcCNgHKuSxiWNYNBwk7e37wcKsQW": 344500,
     "7K2zopQ1j766REwWbvLu8xU5yfyMYmShaWVUNJzDvaUF": 50000,
     "7K7K82sbFjoX3SWDaxuuqALy3ySHqqsHTWn9UBmtwKvL": 477607,
     "7KADeBNtfVA9ysjB444tQuGcUYUvbGFS4UdnH3EMvMdU": 9077,
+    "7KBYRwS9JTWSBncyAzJvhLddhQRUqgHViMshJ4jSS3H2": 1078,
     "7KE5jJjXFthrtEjCxtaz9zPdpv7WfmM362UB8ZcCBx4Z": 10000,
     "7KJuWBBwVMzMp7t83eNUsvqFKYnbnpgeo4WYyUgNgZG7": 11000,
     "7KUJ8zeyZBy6eJGK46jJM44RdKjhZozJMsQ3NaiTmkkH": 5055,
@@ -222061,37 +226730,41 @@
     "7Kx9cenckt5WrbKK6UhTAP38L8gp2R1EdTJJneH7FrRW": 1340,
     "7KycRzXvWGuCaH74zBkWxFMkcPLxjebuckefWXaWATBk": 10000,
     "7Kz3hnTiBEpinKEjjPEq6J829wyyeLxsEKe1Se9JQiQF": 4500,
-    "7L4D1z5wSHHMc96DTHwXXpaMKEbW94aw1tRU8b67v9SV": 1079346,
+    "7L4D1z5wSHHMc96DTHwXXpaMKEbW94aw1tRU8b67v9SV": 1145346,
     "7L7gBtMyvJtjvM3ThSkhdPsHP6ddgmtndzzjjRzwhbiE": 5035,
     "7L7tuBPrwzGCErtkPB17phh4Jb9ESEvjgKG3YRDdMBdW": 8000,
-    "7L9Jo7gW7dnVqgw81drqj4tGkNZCsGoYYicwbwYHx6AD": 104000,
+    "7L9Jo7gW7dnVqgw81drqj4tGkNZCsGoYYicwbwYHx6AD": 89000,
     "7LCFUJ6Rkh5C7kps7AoGwS8oeH9QBbGHVzf4eJLUoV2H": 313,
     "7LD6nAXG2BUepnsdd9irsNJkRVZJRqDy2tDAZNvtY9Bg": 200,
     "7LDuK53iQJB1pzD78P2oGRemQ2TwbiYxYoZK6D2JknQp": 5000,
     "7LEgSxaGwqypG6u5DLJA21zsq5b5fRimAHqopn8HLmSE": 10000,
     "7LFZe4fEYuCbuc5FAdpx7hNpAt48qk2vycm3BgdsaQXC": 13300,
     "7LLSAE6FhMrZkcu3xCECyG38NtRwUB3pmnwZbMWqiaXG": 1000,
+    "7LPMADtMoJ9yNR2egmYEbMi9gP8ytTx9WaY1prDRqSpa": 192800,
     "7LR2zvXSHqMhHwvrabR2JSBGVRZ4uz8BwnFucmXuv8p2": 1042,
     "7LRUSCmFMHvr71VfiP1ZigWg4mwZbFGFihWRo5Du9wVb": 2000,
     "7LRwBvLGL7KrYwnES1jRv7WB6CRB2rCfZJzhcMqTsR2t": 500,
     "7LSAd2X1R5Edrry6zaPmLoDTUbQ8iGZPzGa4KTwmZNxy": 40859,
     "7LYuGJQstKfdSkMDE8AJjz2ZQxsZ4PQiBVRMerNuvKki": 11000,
     "7LZMeDUuGzd1pDAhW36RidVHRvQVgT45vDKteiYrGHUM": 1700,
-    "7LbqP1CxwPiJdqniFh8mVWSpAwrYPKUoCS76jT6KqLUk": 34800,
+    "7LbqP1CxwPiJdqniFh8mVWSpAwrYPKUoCS76jT6KqLUk": 66800,
     "7LcnHRBaBv1oQh4q2w5nT59AuJGxJoZ415AoSyKqsu9Y": 12052,
     "7LdQkU4WCaCrMzuHJvtSz8pfwwNXkdjtu7ZBYon2qyGG": 61000,
     "7LiaF1h7kG3z295oP37xp1vc1SAT6PcwxLVRDWSLKJnU": 37500,
     "7LjjFyPt7vK3w6EbHBTkFgiRqC3xsGyb694AucS1jQYy": 5020,
     "7LwWVnYJWNHbEJzyYmu1ayNiYRn8MsZrwwgXcj156A4P": 25000,
+    "7M3xsyaTJRpwF1Yuf8CVMjTe1V56sZseLjr3FVq73ket": 3000,
     "7MBws4NZ2Pofg9D91fvXDwgpM3NUegPSHiyqBjXT3RWm": 500,
     "7MJXWByGMsr6YVEzQRF9cyYRgMqvTDTtj2G15AXdMwyM": 1011,
     "7MKczjR3yThhQx8enhFnaL9RE8nemXw8K8Zw3H1z8Evu": 58000,
     "7MMeAkNfogc2fAix2UNMh48toqDsrhd4yTbjhC9wa9dj": 30100,
     "7MMeAkNfogc2fAix2uNMg84toqDsrd4yTkjhC9wa9jd": 10000,
+    "7MQniVaAmLugDxuJmB8ReyXxSv92hPAMx3rF8wUgU5c8": 3400,
     "7MR9GJikr4nmf6CdawtbV9nCqjfcP1FcdtBRAcLamUPu": 10700,
     "7MTVyGh9Ya5ohmbG64L4sn38sJTsRz7oNCu9peU9zcdq": 4314,
     "7MTW89XsY37MV57B6L9zaTsRXivH9DrPtQtjNgCA6Uxw": 700,
     "7MfXe1nvXujsUGk7mGm4VvFRs9AwQph7DDGeLhMLraLo": 5000,
+    "7MjmQM5wxBbKmeV1vLSdX8JCDxmSXwDChn6YeP8o7QVa": 20000,
     "7Mjmh3g4m9N2q1jL6LaPL1MK2ZKX3TKpeE1vwLLdvDyM": 200,
     "7MrJAspM22QrTrm6nu813fgX8JSLVy1qwXMpaAHpGqDd": 110,
     "7MwZEmX6jNaRfVmBUdaYTkhENnhmwDNRPB9JuEH3CmXk": 10000,
@@ -222103,6 +226776,7 @@
     "7N3v99b2LfS6R6RAJvADs3p43WDfbxyLnFdFCqZzFk9Z": 11000,
     "7N3wugjnnhmgaQAd7Ur9mfHetfEgJ69xXccQbqq2BPUr": 17816,
     "7NBwUV2w3vfQa7cme8Q7Koef3uEqXVe1nCvYf4RiLWak": 14288,
+    "7NGPobJoQCcxt2YUvvv1H9NDqvtAumqatZhyrGVhscWU": 5000,
     "7NHnuNrKquDdF8CkvReTe8kxNbeGjd67ZBaxMKQKWTQx": 30000,
     "7NKp27ZZBg3qHYhg3zY3b3fgWMqQBr9hkNHinq5r7q9o": 12000,
     "7NLjMkWf46vPU7DaLqo8Y7Tzt7yheV9syFnDwpYR4BvK": 50000,
@@ -222114,9 +226788,9 @@
     "7NatygtQLVAZHnTfMFCpA6Tf3AcJEmCRW1KydHfgKMob": 5000,
     "7NcTyWav7XnuCPzqWBg4cgdzQJ9SqhovTm3vZ1NwJUSz": 86000,
     "7NgBigev2ULJzSVRXsm41JLU29sA44uSCQCafMeR4bzG": 60500,
-    "7NokBU1zx2tjeevdjk4biVoYdisLKDYsanqxSsujrZRx": 334185,
+    "7NokBU1zx2tjeevdjk4biVoYdisLKDYsanqxSsujrZRx": 342575,
     "7Nr1bLeF8c9cuZiyHYL9AcF2XrNSN26DEtQRYGpqEQUo": 8295,
-    "7Nr9JCCFBLShhtriaPd39VSr44AU2K4yKBXoFFi3QU3H": 6600,
+    "7Nr9JCCFBLShhtriaPd39VSr44AU2K4yKBXoFFi3QU3H": 1600,
     "7NzY8QXtQbPtNrMCQoyc33bJtKXPeuPir6AL6jw9MUqZ": 200,
     "7PGLhCUtP1DQspUQugsygc9ELKQ8pkGtynNUKSSquZsT": 900,
     "7PJPExcva4LbRMc9cmhLVd9c1CTJ5UaopF7YquBwPW6s": 550,
@@ -222133,13 +226807,13 @@
     "7PfHPZUzFvqbBfncPo51s4d2TDX3JCUJHr2e4cMDa2GH": 5000,
     "7Png5HkBitTVj4FKakUqmyNia1iLGEujZ2hTP571M3Sm": 5000,
     "7Po5jsq665AJ4x28wbHtZhnw9dgr5bPGDKUebZU4SKB4": 6000,
-    "7Pw3qrfbRkaoYw8pGJNYH3TfY65U4vP1op52JPeq5nC4": 51500,
+    "7Pw3qrfbRkaoYw8pGJNYH3TfY65U4vP1op52JPeq5nC4": 61500,
     "7PwuerUzqjzfjiFTE28zDC2qsovEtqa7XFwNyMdm4Jfu": 5160,
     "7PxJEstCeKbZQAZSdXGobos2bj8f9bMnw1w6F6BF5zpD": 2022,
     "7PzLT9zssp73DfHiNppLpdgiKuzuykLXcNAvf54fsxub": 5000,
     "7Q253Yu6A1RwS73y6pgV3vVAuvA2dwCrGyhgnx1tXj7c": 1059,
     "7Q2cyeZEeoPuKiETHe5ZS1royavZqmfSTJyQpZoCApdp": 26000,
-    "7Q2tvUf2uhvQa3apF1FSPGpUZZQFkT57uxArG1tNjtcK": 14900,
+    "7Q2tvUf2uhvQa3apF1FSPGpUZZQFkT57uxArG1tNjtcK": 21978,
     "7Q3JbEjzV14wtH7R6ZYRNDJyevoWmKuxCkwAMrmesqqn": 100,
     "7Q4Rz1otUCygjQCafTM4tmAJcLrvXADb8Xn86xuW26XW": 100,
     "7Q4bnjVy8rvUsEdfexmDvcaWTS8Mbx2FbuJVj85mNJAB": 44800,
@@ -222150,12 +226824,13 @@
     "7QCjbqzZoVidz1sF2TzjfS97WvQGuRUfuZp4pNrPxkz": 1011,
     "7QDwjd8LhzWsF6gGVf8dwP7Gdpw5cJRgMgf7SbKfuzu9": 22222,
     "7QGdhx2dsn7LZiAQhuzZQ3uRF8M2pJNJvgf6q2nLZ9Ju": 14600,
+    "7QHxX81pPFFWoWmPvsjzmd34Zw5cTYEJjRhD2NQ13mcF": 15890,
     "7QKWZU7nP9nqMCLGYeQ3f4QX9WMsUXptvfnMnxd5nwmQ": 1000,
     "7QKw12SwYXGhB1qYrUDC5dTt9DxTraagXv1nsrWgh9fE": 8798,
     "7QLThaUhSjs1S25HFsfXKcsJSLTUQ8rb6bv8yNhS8imP": 15000,
     "7QNTe77Gf3hUWfrUEms5RZirZXhPBAvZRgKXMATU2d48": 33900,
     "7QTySQRGnnRBCnsUdk7Qp4g5xtJpYpVKJGGFp1HomXSM": 1000,
-    "7QePoy1FcVDLkKmqjuLgun5qn4H1mJ7LXySRqkyenvWD": 68000,
+    "7QePoy1FcVDLkKmqjuLgun5qn4H1mJ7LXySRqkyenvWD": 88000,
     "7QeS1tAcpRXdnsW9gDjQf1Pq5ET6YNzEt8XNLmZFJBmX": 5000,
     "7Qr7Gr7tj2syMGvRVeRtwowhHkKjjeQGhgMUnmMVA6a3": 5000,
     "7QyA3gdpLdfzUyvmPw6cPLr8SwvDurumzmzDzYjiSzZN": 7108,
@@ -222172,13 +226847,13 @@
     "7RRwaJvpdfgdxi7X2Z3nYRWsYvLVYKxJXbPnat26rgiY": 2300,
     "7RSBMzgZWBBjmJoVhFLHN5JNZGyajh6ZjZt3YQZ9sVHh": 6000,
     "7RSBYQSndnbzmsKGKMvaeSddBi4nrUHWJMkRaECBBVDf": 5000,
-    "7RXxUoZsGVfesfFgj9uH2rkx5UNXTHewXjx7ZrxHYNTD": 14900,
-    "7RcKzoaD64R6JDNDoFtWvsPdoiHYXM7z6SkdVUANEeGF": 70000,
+    "7RXxUoZsGVfesfFgj9uH2rkx5UNXTHewXjx7ZrxHYNTD": 20290,
+    "7RcKzoaD64R6JDNDoFtWvsPdoiHYXM7z6SkdVUANEeGF": 145820,
     "7Rk4xAhW4f9G6GJckvmaMJcPQPwpvC5bPTHAn4MwujxU": 15518,
     "7RnwoVJgY2QAsKhNy6BAn8dVwEvnHvV5tjwVgTJhFHdf": 100,
+    "7Rx6Cb7CZw2NN5ZRKePUs9NLDRRhkEL8dzZYyZec63zy": 3000,
     "7S1WGTtHAVcYNXqwDYQqN6qfqJuJbccCnYy4dAFVjGBe": 10000,
     "7S3obczaLUK6f1kwSu4H89Y2FVp1onPuHUwD96rq1HTM": 18000,
-    "7S6aqqWJsg6X1PNBvi4YuLTQ1JEWmtnCi2NKzBkSni6i": 40000,
     "7S87rkWoxgqufGJqpmcngXmvurzyHZ5MgWcEGN91EBee": 305,
     "7S8kNJ1JoEw92bQbvwAiDSbF1QUFW8WzqDhZoeiPiFhb": 13000,
     "7SFoXi9hzfk7qoYqhiPWuWCpbKpTm1Jb9jiakmwFVrgF": 25000,
@@ -222202,7 +226877,7 @@
     "7T3TQmVGesZXZYVYCvBKoeBxpr6PHQrPx3HWeU7cnHUe": 1000,
     "7T5UTb8V3qGJ5jVcMbeZfNRFQPgiw2sUMJdfbZwRGxW7": 4000,
     "7TAuuH5eVjXFguhM7PrgBwCc2xRT88WF2Y8cBKnX11V5": 45000,
-    "7TH7FFVyzCX3DURhD99fS88HP79eKGtccPHoy6mvfY1p": 24200,
+    "7TH7FFVyzCX3DURhD99fS88HP79eKGtccPHoy6mvfY1p": 27200,
     "7TH7FFVyzX3DURhD99fS88HP79eKGtccPHoy6mvfY1pc": 4700,
     "7TJuP44gTxNh3vrESYxsiW6hXkWevoUbH4jkeUYbtLwd": 16059,
     "7TKEoXstBez2LaTPK2Wd5M3qfmfh9nMUzGvKCkEfuZV2": 29200,
@@ -222210,11 +226885,15 @@
     "7TZ5NqmVDWnwLAcg7vmqiYHeyzxHZ7tEGLvJsXQehMM5": 4900,
     "7TgBpKfBrrTEswL1Aq49V2UTftFYfZVSit842xXQgEcj": 25000,
     "7Tht3Hdufj53XbxMc4aS6kHFr4zbqxMSK5yp2ZkdEdSY": 7600,
+    "7Tj9ExTV98KgroKEFdszZW6zL1YqdapN4okeV87YDRxR": 5000,
     "7TjitajCdkvbKmLgnEC3Wg3S9b67sV7Q7hmTNY6H9BAt": 150413,
     "7TsSegJAeMV1geq1QyG115KztRAY9nukuSKARUtKtZFL": 5000,
+    "7Tur3zoMbC7PWiNeh32pA9tqERs7ezhReDCeJJhcyC6q": 209000,
     "7TwJRqd118aq5eM8Jm7JeRkGeBPvzyabNMrddG1muvcx": 5000,
+    "7Tybas36Vjt9NuPbreb1UPMSnDs8oqWyxBLwHrFuyDPH": 6000,
     "7U2sEw4atwaHWMVTRTDwR9cb1u2VZ2sjHs3CyyUA8ri9": 942,
     "7U2sEw4atwaHWMVTRTDwR9cb1u2Z2siHs3CyyUA8ri9": 1100,
+    "7U7j2o79qyTX9ScseckB7LmF659bjw9CZSXUPRfHKLPK": 3000,
     "7U88tg5ygb2CmLUyERToWurcZATiSMJLwoW84mAes6cJ": 29900,
     "7UBG2TkBjssSRHyb7gm9Wyjmae84V6rTExbshK3Nanqo": 77000,
     "7UHctGfaxhHSirfRTkCS7CgKy2PawZJoutFSbvcnCjFB": 1211,
@@ -222226,7 +226905,7 @@
     "7UVhfP9MjqmJTQrPF7Lg5QwE3ZkwKwbh5qVQwxcSspXC": 7500,
     "7UaNviwoUr5TnL1qzSyFRHybU5Pe5Wt37xXdx5KyX3m1": 5160,
     "7UcbutaoSbXJuoDLsHKYUL2baBK6scLH3pJ6z5AS4NKp": 1000,
-    "7Uejnw1gXgLKQpXZ6FhdDmBKzxSK94dtYhk1RrC95oQD": 57100,
+    "7Uejnw1gXgLKQpXZ6FhdDmBKzxSK94dtYhk1RrC95oQD": 64100,
     "7Uesa9FF2h677nddiqs3ipSaQo1yWvykJMKcZb6G4BCz": 3000,
     "7UoEqWofuRMa3SW9RrtaZxe1NmtGJRQMLtZHzucvLdnf": 1100000,
     "7Uoj1gfJughCvp85jyAPNSvoJ7Miviftv13bdb61Ffvq": 48500,
@@ -222235,13 +226914,15 @@
     "7UqruoiFs2pUfoGsvG1LJPvsRZz5hgA2XsZqkKyXAXR3": 4000,
     "7V1xpWf4WSTL1shA3TbxKZcrHcQNCsuqGoMmXvLm6GCY": 900,
     "7V2frU8idgpEp1NMzV13Y9UPM648iD55sDoFGtLeuGzG": 1000,
+    "7V8ikEc3u38VEVzJbGrQgjNj28m2Ba81uwjjwbyXxY2s": 3100,
     "7VDAergWYMG5kWrqGzSJVJncUhM2m2cMRD5oshT93nmF": 100,
     "7VDzET9bZgSvMpscr3egCEXSpU3dF1n934n4VMinxAaZ": 1032,
     "7VGbUXYf75hcPcQKM9eJHPRDXXqBhyyNevfZDFTvcsbs": 1500,
     "7VLzBYCfqTYzT547uPuBUnsFSGNM6gN4bD2TbC7A9siY": 4400,
     "7VNPwGJnQjNEitbMR3inDAmvTfK77sbaKX7nbiN7URn8": 8900,
     "7VP7pR8gWhsbvd1jTt2onm7zEjLFt96TvsHywCQZ3PSX": 5000,
-    "7VPQkRDD5ZD2f8Q4mTRiw4WU15HuRME6si516ku2XmAj": 16600,
+    "7VPQkRDD5ZD2f8Q4mTRiw4WU15HuRME6si516ku2XmAj": 25600,
+    "7VRB9GeHYBBLaoWUnvt44Da9UU18UFiCu8nNVc61ZCVQ": 5000,
     "7VUM7u34SAYH795Gf4NgTbJ1bcRBkSnL5WLieW966doy": 500,
     "7VYDN5rWatSdeQc3KZDjn5LWbPFHB9uJYru6htNtVvTU": 25000,
     "7VcknyhHxy6Lr8GqsHv3hHYTmFvxt24QU3MGfYeuwsca": 2600,
@@ -222266,8 +226947,9 @@
     "7WvwpkXoGC1ApX3wmKv8ZsMAyUWNpWDRmcTSMv2kJXMS": 609,
     "7X8z21wxo2kjkZP12drbcRGvvaa4U2An2iF7rHdqj8kQ": 24396,
     "7XGN8etWEoGZdTBeXQtJAw3tbk8SofKUieuP76DeDBJD": 2250,
+    "7XMXiHPB33cr5yUEnEojfpdxTAa59eM2SCq251wcLVRR": 4950,
     "7XPzUcePis6SMuZw85U8P1tqAAERW1DGx6rUjUMx9moM": 46000,
-    "7XSF1NEs5VDsWXoDJeemZaNmh2HPeUfXhG1AKXiB54Qt": 168700,
+    "7XSF1NEs5VDsWXoDJeemZaNmh2HPeUfXhG1AKXiB54Qt": 147200,
     "7XU8PY7sAQjNZoYYDVJynHCJMPH1eA2SaQgNQnTnVjs3": 50314,
     "7XVXQTBTKCn78o5PAT8xoHdYdvYtoU9LTDeojndBZgmt": 5035,
     "7XcVw74ipdWU88RLVtXC2koeE9EYCfUdiTnXvwVQiQUU": 2500,
@@ -222289,6 +226971,7 @@
     "7YS2ZbEJTjpEt16yvdj3f1jSjZPEXEvji9X6kNS17LNd": 12500,
     "7YVhrepbNGnaK9dEW1MQoUM5ZWzPeYMd4K5SkWrgUJx3": 3000,
     "7YYLA9fPvXADzjmhnDi8J6ptnoFyrPaBWjTowxLy6iuD": 20000,
+    "7YdUkd7bN6g6WNjT2h1Di3UVrdLUCPYdd3KK8te9bW8T": 30001,
     "7YgSBJdjXaAaGpTfkfJSdZpA2igzbRD33z7yHsdAcXBr": 6000,
     "7YjPFJwCGTcN253va7dUmJK2PGfFCiSBCRsRzFtkywFF": 28000,
     "7YjtYRHgUpywu7XYaADY7TFtSWTH3C7kwa3dSQTMrnMy": 1342,
@@ -222303,19 +226986,18 @@
     "7YvqpgXsbfNbkoqvT8eZ56SELGbg7pARvKSgdwPSGLrw": 33100,
     "7Yw7m8o3vyXu6kHUigX5Gyb9np85i5btDJgH3KxKm6vb": 100,
     "7YwZTZdGWDDYmairR9Chvay21tP5fN4aWcNqjEavLVBv": 3480,
-    "7YxUK3s73TnJRQqzuVGEkWLT8MSnb3HKJ3XE28owKeTH": 72358,
+    "7YxUK3s73TnJRQqzuVGEkWLT8MSnb3HKJ3XE28owKeTH": 122358,
     "7Z4YKwGocb2cvgP859MndHRyot3fEv6Xee83rziBeYCK": 24000,
     "7Z7vFnh7JPhgSC3YsxF4Tzo26on1dBNpsima33may3v1": 5160,
     "7Z9W2UU3utper1TtysijG8TKXrHkdDNifEACBi3APkdn": 5000,
     "7ZCUHfFR84uUG7DjkS8AMoBs6jQjNqc8f9qGDa2MSM6k": 200,
-    "7ZEKrCSeUEcDN1gMwWYzKLbZhXfM2U8k8rpaGUgTcf8F": 238404,
+    "7ZEKrCSeUEcDN1gMwWYzKLbZhXfM2U8k8rpaGUgTcf8F": 41604,
     "7ZHwQfWVrrt1HAL7BfbKoTxheGbqAic8BwzYqPVXSvFR": 3000,
     "7ZKRqYBSJAHZn4MqvXCQaTCPmVHj4zuU8RwvTD5Zjnnq": 53900,
     "7ZKuk3fd4TJZHp3t31JnegTeJFrhGVyJPAbd8vkd6NZW": 5000,
     "7ZNWa57wBebT4CWFwgrTyw84LBMWpm4apEHehw1x2uzj": 5000,
     "7ZPp1W3jyFQrUa341d3s8BofTgHSH4CDfUGDrDk9mhQm": 100,
     "7ZQSXsYsTWY6BvLUS1bpX312YuzpeLjcf1ANz2xL9gtA": 20000,
-    "7ZVXXtJKANqiYd1B1sYWCUvo8nJh6cKLdAMCE1BnHWQJ": 1000,
     "7ZdhWWDBgaGy25KTdk2398Pb1JwCJCvQtxoWoiqzUVPg": 3000,
     "7Ze1MHeozCZayEg67Ao1CzuWyz7jHx1Ya8YdeT8wAEin": 9200,
     "7ZgGDequTKURSPFTPmN3Zyz518Xd6HVqfgHZ4h2Lp3oq": 1200,
@@ -222332,6 +227014,7 @@
     "7aC6ANXUtv6V9f7Y5qRcyLcAFv6rMK5kSmpxgJbK43vz": 1143,
     "7aETJtpkiq9EZisaaXRHCcwF43dsAuoHwKb2XCtvQFDq": 5000,
     "7aFi3Dd7PjRPBoPPdys3vEiihusUv1KZxn4zTVajnN1C": 118,
+    "7aHwL4EpyMHuJuNeZfPthEsbn78d7rxB9jt2Hsg2RMLc": 3620,
     "7aPQzURVkcxm8jhkzSF2cwAd8uZQasHe1dLy42jsG9Tq": 30000,
     "7aRVQqikbZjaqParLB2KCHjJUtZ2rGuwpz4JFEpsZAQo": 14700,
     "7aT6duG1beKRr5xMo3cqZqVTQ2fTNHUuGyWLmxHzJkeX": 7000,
@@ -222342,6 +227025,7 @@
     "7aoc7EwYHgiGWoM6NDaCnANr4eJBY8zMko73xTCzkzPt": 10000,
     "7apCbpKkgXguEfBcDnBU4g1YSWB6rcD1inmzxond4w9S": 11100,
     "7arBwhjWmaz7phv8up9KHqtk2WQWgnMFFnB4xRAXCAGX": 1500,
+    "7arE2CKQ1Ex6S7bt9GUVhkhc6ZeuWB3j9zQG37DWdbEL": 50000,
     "7b2oijYdUWoXf3s7rEVhuKnp442KYoS5bohswn6Tb3Wn": 34340,
     "7b5Pp5Fyoyfd5r1AWsS38egj664SqgJJdWmUzdRA3zsr": 11500,
     "7b9PfMX2cYsurw7WR92DWmWgdqePWmoofME6x9TS2m3E": 1000,
@@ -222350,11 +227034,11 @@
     "7bRcdqdzHJoH3ngPVAwgVtTZQMeWMtTUPKNECXibUDcV": 10000,
     "7bS4xsYAWSMuaSwhKBRyJmLiQ1abTXf893NMkU562ozU": 5000,
     "7bT4jvDUA4uzMYFXZFkJaa3bmchokw4NeKmWkpE7XD2f": 2000,
-    "7bUqWmmeKEZjgEuawosYbsNGo3qpUkmimua2zmGFv75B": 99000,
+    "7bUqWmmeKEZjgEuawosYbsNGo3qpUkmimua2zmGFv75B": 95500,
     "7bVo7U94SwvxSxmPFG6DgSsQhaMB6cGy9NPeW4fuxLep": 46000,
     "7bZCKqiecsj6xn7z5PXdCFk9j38mNjsdtRdKKxyA33fq": 21180,
     "7bZeWZzVDzwjE5Gy4HAziAx1qSGBnXNJmkV7d4VLUEep": 71700,
-    "7baryagRdPcVjagWnVUUxZWmNmXgA6gpJhQ6t4G733WY": 37500,
+    "7baryagRdPcVjagWnVUUxZWmNmXgA6gpJhQ6t4G733WY": 52500,
     "7bcmWbECoM8et5CEB9VN9tAuQUjJoHKKVPs6YxQA99Ge": 5160,
     "7bmc528J1YVVq9nSKH4ey147TVPv9MEhZpREjn8fxNbk": 100,
     "7bmrCRnHMiiQng8LTvX8Bz71mYC8ktnzx8EgcDHnNRCD": 2102,
@@ -222366,6 +227050,7 @@
     "7c3jsuZnLSyrHKpoFjb12kX1R1vWAvQeBQ2tvuY3uivK": 12900,
     "7c7hrQ1aPwv9Sdpq4SQDedXBqECkmTJnTJXSTpLZU9kY": 4000,
     "7c8Prc4eksG75txuYARkr4vaMcZqastCyLdp313fDZQJ": 19900,
+    "7c8g2EKhQBVzgjKb1kj5YD6PzersXhYnZyamRbj73Lrk": 3500,
     "7c9EAnynHvSEXHUq7MamGZcD8Ay7ypWpPFvsXejiFEti": 300,
     "7cBGTHEvdov2vRP5qwK5ewePDpeMbss8ZVLmshxopakP": 1059,
     "7cCiAdq3eJtF6T9hjA84MquSp2Vg84Go3Agx12zEgSda": 2000,
@@ -222379,17 +227064,18 @@
     "7ceEyQHKKfMsnmkQ5CmmwBMzfu3AcnTTPpsRfQpHMNhF": 6000,
     "7ch1wTrqo8KoTF7xt2XmvtAMF8FSbTL51qo4oH9ocCHh": 1051,
     "7cjkqWw5SQLXysaPYuqHNd4LDfjteCWMpj6nSb4WBubA": 16000,
-    "7coBRCtC7h168wWD77DrGLTWsZWchMJ7t5N14yXouBBX": 181500,
+    "7coBRCtC7h168wWD77DrGLTWsZWchMJ7t5N14yXouBBX": 187849,
     "7coBRCtC7h168wWD77DrGLTWsZWchMj7t5N14yXouBBX": 100,
-    "7cpvc6x6GLNUGgpCPxK5sio73M5zrduMYZS356TbBdif": 4800,
+    "7cpvc6x6GLNUGgpCPxK5sio73M5zrduMYZS356TbBdif": 4801,
     "7cu2ushkQ2EufE7uvPwcSbbhWYqNtjQXbr6WhbrSCE9d": 30032,
     "7cuMpGdCGmosLytdERjLBY2G3io1sSmRRrHjHnJpnDLR": 5000,
+    "7cwSxoSG8rpptT4zphWkyqSV2yyYo6ThiUMYEw2xQDT1": 4000,
     "7cyVeHyqkT8eYnWB5WLqtCa9PZLHUoFXQRVfJ9d9in9j": 314,
     "7d7p1nN5wmD84vK4xLZGGJSBwszzCFCJJTjZHy18j5fU": 2000,
     "7d7rSDUioTtvtoBxcYA1VP29RHqd9WguYMjbDTJ1Y5RG": 15000,
-    "7d8dw1jCdqKRfKzUcghjCatARSoS23EUTKcCiWQr4Cdn": 44500,
+    "7d8dw1jCdqKRfKzUcghjCatARSoS23EUTKcCiWQr4Cdn": 32500,
     "7dBjFVBeKP51o9kFB7AH6ia6JCX6dDhUJG4AM3eGKM56": 50000,
-    "7dCMGHmyJJSmE7B3MXGx2HgcbssrGWgz7BqR5zDmKZYw": 9926,
+    "7dCMGHmyJJSmE7B3MXGx2HgcbssrGWgz7BqR5zDmKZYw": 8626,
     "7dK6hTmuTnu1W1YQMzpsR4xCPJuanikggHjJVpFjKxpc": 304,
     "7dQmkEg8DEEr9934mkHUsHkiiMf6xFqrzjowChKUFsDm": 35770,
     "7dWJAnURRjWPPvLSRDPVC7imvc2qR4pPvL3GmWZn8MUv": 15000,
@@ -222399,13 +227085,13 @@
     "7deJ9btvd4975KzYHoUP6hKiyhSGLgdSgxGDUeUmbBx": 70000,
     "7deJ9btvd4975KzYHoUXP6hKiyhSGLgdSgxGDUeUmbBx": 35000,
     "7djytEcpPgktZM8vD2W9zCHqi6Q59cVG1aHau7hKwwgf": 10000,
-    "7dm3XnaaFh8EUss5NmjC9Briq6ZkdQB4gsn3MP3C3Fpa": 18751,
+    "7dm3XnaaFh8EUss5NmjC9Briq6ZkdQB4gsn3MP3C3Fpa": 10051,
     "7dnGThZzWY1og4qdJujajBwgoQMkdgKuyRGRFPJfGDiD": 86374,
     "7dpFUNyANhaLLzMSr5pBXGYG2sNYW9wH3LKMkNFtuoWT": 182000,
-    "7drSEnNjjySgMsz8a4qKn2iwwG42eRLE2tq4TRwUGwNE": 54556,
+    "7drSEnNjjySgMsz8a4qKn2iwwG42eRLE2tq4TRwUGwNE": 48615,
     "7duEuyYdpnpmU5YUGb4xMkcz1FiadDS95kTN1Hrfenxt": 6000,
     "7dvqc7mBbbTKjtmHtzWYocLzsd7wQ3aLPncdq7NgjMMM": 500,
-    "7dxNZPXqB4X97ta5LHtQtgkrePsDH2jhu5vNtJj73Zj4": 14700,
+    "7dxNZPXqB4X97ta5LHtQtgkrePsDH2jhu5vNtJj73Zj4": 24900,
     "7dzW6wy1piu6ac56JMEWbaKG5AkTXN8PdqnqQrQkC4ef": 18000,
     "7e82aRB9ZwJbDeFWt9tZxLteqrPjCSLe2RkPxVXmLuqw": 3217,
     "7e9RrhonasEepQRqoGYTYut1BME3iGTPkeuYXd87A4qt": 1120,
@@ -222425,17 +227111,18 @@
     "7ezyfoDofshAEzbrUvW36FKB2feNqxnqD3zpBbrGQQXF": 696000,
     "7f3NRrbc7FAAqZPMuuXSXvLKEQPawgLx8XdhsfNLbLdf": 10000,
     "7f7TUZfFxdsMmjyJMreSQJfB6vV5UEi9V2bTKGniHkSP": 100,
-    "7f8oQcMoKdPEwfMrBsgr9TRMkSkFApGqS1Tv5tjJeGZr": 18000,
+    "7f8oQcMoKdPEwfMrBsgr9TRMkSkFApGqS1Tv5tjJeGZr": 54000,
     "7f9rNMjdg9x4WHKNBzCWCQ42xm2iFQdvLr5oX2rHYEKK": 50740,
     "7fAiByJP9MghAjtVzFuG2ShFVJwJhpifZyeSEu8HGhzL": 5000,
     "7fENcgAi7XXPRSnLzBWAe8xnRfeusXY448RDJn44eVw2": 700,
     "7fFoatfZ5hGX87XcGj6GPvfUm1k7nvS5wEpTB1ZvhBzf": 1000,
     "7fGLLTAtUmKYAjvc61vNJzBBscNtUS4YzgDcrixrjyFo": 5000,
-    "7fJkkML3L73x2SNJC4PcDE2ekYSf42wmWjL3YDRQzERY": 19000,
+    "7fJkkML3L73x2SNJC4PcDE2ekYSf42wmWjL3YDRQzERY": 116300,
     "7fNhCWepv9khLBKinknSarxFZGd9h8T4dRn8DKs9ityn": 5000,
     "7fQcyYEyjLzaLKrejtJ7Su5p9mDdWnetkMTEH4hPor4A": 36032,
     "7fSdsrUh9rxU1eHdSE1Wpib33BcAWyBzLwpJo1f1VW6y": 34000,
-    "7fUsodhYxWZa2NSgd5NvGj1HHpx2pgtCuLQ7BZ71L9rE": 2000,
+    "7fUsodhYxWZa2NSgd5NvGj1HHpx2pgtCuLQ7BZ71L9rE": 4400,
+    "7fY6aqiEoQ87d763q4pBggQtfkfVV6J4q4ik9wBfeQ28": 54000,
     "7fZWWWKFQ1Lq9ZintYFA52jrvQHogJT5CSHTSH1YvotB": 9500,
     "7faJTkCD3hGzy1Ayf1DAkoHVbwnJzh1gQnJ5dCHASi8T": 2000,
     "7fbTX3aZFrgCRPwGDP3uaaJoGcPe8H24iUG51df1FEJk": 1059,
@@ -222453,13 +227140,13 @@
     "7gEn3Kn8huUK9GN9zCoQ9SaBqUHoKiBLNHirZN4frbDZ": 10000,
     "7gFShbP5WfDQkeV7zkQWY1AofvJKWyDnkigvSNjesmyt": 34320,
     "7gG5FboJBfTPXdk8xR8Ag58zTpvAeVLQf43Kcp1bhf2q": 5600,
-    "7gJCJQ52dCrSsiMvEaTujRCTJVPdNQp35XTaFb1MD5hn": 28500,
+    "7gJCJQ52dCrSsiMvEaTujRCTJVPdNQp35XTaFb1MD5hn": 29500,
     "7gP9UM3udCezpZd8Gq6nopEJxSrwKjKeVSt7QxDXg21K": 4500,
     "7gPCQtMzGGYfBxxt8rxYCxg9J5fktJgzjrnNEVFRvm7v": 100,
     "7gPymnvL1x3nKnWH1Y34rChW49r394SW3znA13jU4Cty": 500,
     "7gQ3uPQYNzqqnEvxcVJKkArWUByg4VkeWLNk4LeTXbPu": 5055,
     "7ga86ZJQz3B2EpNYNKJ7GGBrRTu7VM6JvkAJ2FJBLuRi": 2128,
-    "7gccoLvQFDPrcKTYPryqwT8mysZ3gcgkydLMP3dA4a4z": 346939,
+    "7gccoLvQFDPrcKTYPryqwT8mysZ3gcgkydLMP3dA4a4z": 438499,
     "7gfaeqeXiH8F1MnefJnB48xN2qDoosD31zinEnU1d8vK": 1000,
     "7ggwDq4XbmCJGJE6VZZPTH98SuDWCcQVBUgBvcEsq2dZ": 10542,
     "7gjAD6LyfV5fLbXm8Fy6u1aG1ioHp1bacHfCLgT1eF9v": 900190,
@@ -222467,14 +227154,14 @@
     "7gkmwcNbJtzBYDsTXg1hTEhHPMZDHxMZn6zAxjbGwGfu": 8300,
     "7gmNrKeFY3EY1hKzob7A4U6Htza9E1zegbRV3mUnoL6M": 25500,
     "7gp2BVC4mRnytsn83YHHqbSb2xTcZ2Z9no5UDaqvTNV3": 800,
-    "7guxYT9Fns8D489ndHriqjWu7PCMoYqTb4qC7MikwKjo": 29600,
+    "7guxYT9Fns8D489ndHriqjWu7PCMoYqTb4qC7MikwKjo": 63000,
     "7h4X7Vy3TZdB7HzYaFZnZh3NMxzCkasvuCLiS5sEvR6": 8800,
     "7hB2AHyPKAe2j22BrB2xEs4Xsm7wSYNHfn2NYHDuSZdV": 5295,
     "7hCV2qvvRV8Hh4BFVBjttAvxQ1Re9yCADgwh6ghDUeML": 300,
     "7hJ8he8x2DsmkFrAS8yRCfJKuuTingw7uSnUscW97EkP": 10100,
     "7hKZB3yEq5c4cw2Du96UPRKSvrAdU42AtFDG7qLB85k9": 237820,
-    "7hL6CF8JcuX4PWPF6keUtXwB5BiVzC28yKcL84CzSQMB": 1000,
     "7hPM7s1bEJDu81ntJy5bg1CiZ7sv5hFypvPqi3bUtXsc": 1100,
+    "7hQ2nGaj3czsPmZ9sHUgowQ6bjybqDW9ZEotVjUw8jn6": 900,
     "7hQXeHGNQM2HRKeKSHx243YzcXoBCK6r8JnMQU7d4VaS": 58500,
     "7hQyJgHhANV5CnjijnWh8x93bkCJAVsLU3aWFV83hnfv": 23500,
     "7hSTnHshhPWdsgkWNS54uoKe9JC1EYWCp9Lr2F1GkqaX": 600,
@@ -222490,6 +227177,7 @@
     "7htNwbaWMA5Wmcrexyx5DorYcTygB8YkZXNa22jfsoY2": 1000,
     "7huJjCHnuxB4L67LvB6Yv8W6QEeu3U37Q9yiqUkv3Eya": 6000,
     "7hvmrCH5B8oW9QdHQLXdjnjhEgkJmqQgmEGJcZNapQUX": 46042,
+    "7hwvaHvpFNWC4igapmZWWz8fXuBVZLvtoCBkbJMrT6Mj": 107000,
     "7hxJLw5MrkGbZFVw2CnSMVzNSWKbuhmVroLRKwpdSeCK": 10000,
     "7hxo1ibf9iRWGjmXosBmoG6W9EKaq6P5w8YdZLKf7TUd": 1080,
     "7i2MMhdhiT7FqWgX9a7uKCAbk4Rp7ATzba9UFMbwn2EG": 20500,
@@ -222498,7 +227186,7 @@
     "7i5M7iUBtQCgEzgR5ySBkoZCTjPpiGapLyi9pvbfizYe": 10000,
     "7iJTK9rEsD39DdaqmYqJxdjagQFiGwngEBXDqWwveTuK": 2650,
     "7iL17QKWxDD9SymEtfuxNsEfrr52VGrATaPCjfBnTu7x": 75096,
-    "7iUUR3ChWqU8MWkxQrhaFK1aMRB7aUKnS4gxSVm7D2no": 65000,
+    "7iUUR3ChWqU8MWkxQrhaFK1aMRB7aUKnS4gxSVm7D2no": 94900,
     "7iavW5V8MwzuCQpNHrqoUYT7NdWyzc99oUMG8UHSZaQ9": 1042,
     "7ibnG3zdfmg5osbW5g3G4a9aNBpVpyXZYDSVF6UHEDnN": 17300,
     "7ieyk4VKPCXX4BVMPoAbkdEtsjoipUYB2x6MT4vo54da": 2151,
@@ -222506,16 +227194,20 @@
     "7ihfKSHJzcnFseypubwnWNvCp4RkZpfaGgSBd4vCVbPB": 1000,
     "7iiswifqTw52kgDv8JbLa4uWdSLE89XgRwNnmhZ4RfWW": 1011,
     "7ijXdCKfMeqqeUU23rkEe4951cCtxKczQWDUCSqe7LUJ": 5000,
+    "7ioxmr1yDTNrd7vUSv4vEQp82Qt3cn7Vjh2oZLUtUULj": 9500,
     "7iw3h3YsnQvCAzTesSi4p78fKfnS4RVogz136DNdjaw": 15000,
     "7iwrhHRKhRQ2mafYpAaJ86vMLTJp2m2KLo4KDGVVF7LA": 1000,
     "7ixhrPmoHjitreh1WqbzWctiqmZzYerFpNSx71bWwUM5": 2100,
     "7j6uGD7SK495KAQmYFbaDgUaUn3o9Rx7n1itnC1fR9VL": 16000,
     "7j8smCwBJmmMgs3VtEEjKovvdJGt7png5dCQ8Rfj7oSg": 1500,
     "7jA5LvXpWuno3DGPRHYs5uxyos8HbRG9dUnbsAm37F7m": 5000,
+    "7jArRmgqPUm75SqaeH8ASpqfPG4Xz7CC463CzC2FzJpQ": 75900,
     "7jDMjsH1TqMNybu1DN1e4BVxpFiNY4iuLoQyyw5s8Qts": 2000,
     "7jDp48fHsvvdg8SxvZBSZhoPBVuWU6n3BQ8MNY7Nh53h": 10100,
     "7jNUiweXvyTJyteNEYgbdcWS73AgtWRiZwgH4fJy2vYs": 200,
+    "7jQGtMAbbMgJGxArtKF22MuXZMB2p6jcm1P2uR3mWTmh": 9000,
     "7jRVrMyx3bHWcgZwfHnX7ueG6e3UfpMo348jiAGXrkdS": 5295,
+    "7jUQPtFrtY7R6Hhc2i1S9Ln5YnqrUNf6o8HfUT2HcUcT": 5000,
     "7jUe6thn7PQUH2XQG7XpVdRZdKQrpfeoNLEDHEzEhP4L": 40000,
     "7jcB3fb5K6fovPbaFdU7FKrq2dX8Q6MxrEcpzeKyWfWu": 4153,
     "7je5m3zoUapbKwvv4AT1yPu34BfhVrPCX7BgVCnK5hYg": 9100,
@@ -222541,24 +227233,25 @@
     "7kYxQB2sEbNXuka78wesLizZekJRe6mTkM9rJkFzsanp": 5300,
     "7kZeYzjcK31GCKhkjCvAWt2CESW9Rqy11WsoTMjMkGZp": 26500,
     "7kZtXE4r2GtsNSn7PDhNdUw59Tn2pQtCVcKx5q9eSWKs": 100,
-    "7kePnhpcPbRqMFkQmEj2N7dZv88VnppZswUeDyjBn5r8": 10000,
+    "7kePnhpcPbRqMFkQmEj2N7dZv88VnppZswUeDyjBn5r8": 8000,
     "7kfiob3HT4NoqxVWu2XDkqUEMMDsjvaaWQtQVy5GguL1": 178746,
     "7kg886ZMWQiqyWZDpEvvRefL39YXAFF3RCEHvHghsGgh": 19000,
     "7kjDhLxk7Z1wkbybL27MGfU22styR16wyvPRFujWdyAb": 10340,
     "7kkvNXMHMEh27hxonwG9XiYDTmtHFGM3cganFMr7eg1A": 500,
     "7krrGU5AvHSDkNB58PvKJ26pzzzrLShynXMp9rwwDLB1": 200,
     "7kt9iDV22uScVeDC6AUyq6pBuhqVZaUZe6UQXKkAaPRY": 101,
-    "7kwhydJpeDSfiMV5YydGdDBsQuaakquJ9JrD7WABnSsn": 23936,
+    "7kwhydJpeDSfiMV5YydGdDBsQuaakquJ9JrD7WABnSsn": 59436,
     "7kyt7e7xcfpjxn1WsP2zisqCpgx8bWxBiYdg4Qb7s4Fu": 1900,
-    "7kyur9ddmBbeerEfPtHBWDEw2zpJaPEzrP3RZiuWAUT3": 35128,
+    "7kyur9ddmBbeerEfPtHBWDEw2zpJaPEzrP3RZiuWAUT3": 18638,
     "7kyuskB2KwppcjS46fHq5K5tzjpshdSP1GRQWSB7jaEH": 20000,
     "7m1vw5rFyEXVSECgCArjPkwyWN5kx2LTnj1YJYU3Vwbp": 10000,
     "7m4YhUwMqAQCAHCfTSKGPcvxKYW4QP5x1zfVBzqQY4g7": 240,
-    "7m5uAHjMo2icDyVZvZsR3mnRF1FKLMnGupu7gNsTF9np": 138465,
+    "7m5uAHjMo2icDyVZvZsR3mnRF1FKLMnGupu7gNsTF9np": 172116,
     "7m6tUvep55F6oFbC4ZagLrMVzTPhGRahw9NePMSZnawr": 5000,
-    "7m9ypjp3N56CY446Hrt6vLbev54AMQGCLBpQhmnU57oi": 501877,
-    "7mDXDBGPq4WDpvUV36iNwtwrLAE1fAZufdqybKr9HDmM": 28800,
+    "7m9ypjp3N56CY446Hrt6vLbev54AMQGCLBpQhmnU57oi": 595267,
+    "7mDXDBGPq4WDpvUV36iNwtwrLAE1fAZufdqybKr9HDmM": 23100,
     "7mE5SPKYKhmotruB6E6DmXuvwoV5xgjwd4fQx5v3zcXg": 4900,
+    "7mEbb5EPr97MdXnMBnNxkjcCaPfcVeUw22XQaF3ejYWn": 5000,
     "7mPNymZpBt95t717E9Ske8G1dJV77j3dHugKycCvLksW": 43811,
     "7mPgHcFhaHeM1sjmo2nhT5SP3kGzu5tYGeFjbeByr4rq": 24700,
     "7mWeAxmt3ex2Enq4KfEbC5c6LdMPETn9tEz25bEsXHRR": 200,
@@ -222578,9 +227271,9 @@
     "7nTH2nGrZVXQPFedybMAj9H4DpsNLQ9Y9TdkfTb5aKRv": 20000,
     "7nUHWGPjR5fjsETLxMqrHZn6ryoAAVo74dgpGFgpa1zF": 35000,
     "7nXNNsG9A3HKxtGjivEUivo71wgy6Fg43yNZ9v6Vs7An": 4740,
-    "7nZqjmh44bnprRfMA1W38FzL5Uic16XW1fKN19Hk1i7q": 3900,
+    "7nZqjmh44bnprRfMA1W38FzL5Uic16XW1fKN19Hk1i7q": 11000,
     "7nbi3epHT9Rxr76pZSB1DUYZpgVKNH2jm3GxWUjEDBgr": 10000,
-    "7nkBZt9SHQpdv8Prh3Ky9qWs96arTzJrDM3BF9ozSX4H": 112500,
+    "7nkBZt9SHQpdv8Prh3Ky9qWs96arTzJrDM3BF9ozSX4H": 120500,
     "7nm8aHSBjk9jWQ3ZVFxd5tCajrNRE9QzvuwPhgn3izQ4": 100,
     "7o92oRdNLXMc5FU6Epc3ncbfqpb3qoXY8bjdvwV2toUH": 314,
     "7o9rcy9MEFuDKhxoyrE7GSdktG1VFEfHA2pZnQzSKTjv": 1000,
@@ -222597,7 +227290,7 @@
     "7oXDXveY4WTGweuuuC6Aq8gfaZ18dJVxPqDvqtakLW4d": 28000,
     "7oXevboVGH9EASBLrxwKAXrb58uSDPeLJWZegbm3Hk6F": 8700,
     "7oXrjofbepUBAacHTNJ2r8N7xWiNuRv2Dbf8gnDgvYRu": 10600,
-    "7oYhJeCiXZPQuJkzEGBFgPecwiutN8t3tpvAfwpSK4BF": 98700,
+    "7oYhJeCiXZPQuJkzEGBFgPecwiutN8t3tpvAfwpSK4BF": 99800,
     "7oZibG5aACJ65VL7MrVmxvcX4KBPC8C1qk6jE6UiHFyT": 36800,
     "7objq9eDG3pxs8ggBq1M5V6YVmUrHLe26e2x9JFhitHr": 1000,
     "7odT3n2JWaZpQZ2dEEoQ8bWRNbnrF68msBetw6qyRtgX": 404,
@@ -222608,7 +227301,7 @@
     "7oxP16ELf7nWTELXYZforZZJ2Xt5ZS8EBsZu9qdGXHw8": 3001,
     "7p24Uy8BushNWGb3JfxiG3qUZJuTzpNopEPWc9HqL5mE": 1053,
     "7p31u8TQCs9dSU4uKNQSB9S7KsBrrhqYeobvqgkYXdw8": 15000,
-    "7p3pkUWCqhzJKyRgZQUj5iiNtK9wmrvjS6rXz8fYxsfT": 29000,
+    "7p3pkUWCqhzJKyRgZQUj5iiNtK9wmrvjS6rXz8fYxsfT": 35300,
     "7p8A4WZHfN5w63eXw7LKpStRN9FdQ9Boq9BmGBQxK7Z2": 673200,
     "7pAGn5yeXjZHVRzjRgTceLa4St7XFAeNXwNMcJB5sTUe": 2314,
     "7pCEjZvzK1E273qfjanSkZMwWj8PM3dT1hCwhFfxWX7x": 2500,
@@ -222632,11 +227325,12 @@
     "7pcBy2vz57itFESG4yD5quei5rurtRqkuzckj9CVhKr3": 4900,
     "7pn8T6SQb1f8DSPXfRk3YWvDHuQJjRfQU96QaUQ4BTma": 100,
     "7pqeK9emR8Ne61JWEMUT8cZkcG78G6YecfbKE3zAEGNV": 15000,
+    "7pyPtn2GtSvo1bAvF6VbqdEenUQX9n5vM6ZK4hTUkxHk": 8134,
     "7q2GyohBYfRQorYCWC25xc4DfJkceUB812ePJFnNkSbU": 15500,
     "7q4cUFozR4UB2KCC2DAtVyc6rzfmLRD7m7yFc3RX7rha": 100,
     "7q9oc9wFLBV12SjGbxRhyST92djwBXySMXc4Xk2SMZZo": 38000,
     "7qAyAP4DwAkS9N55uY3aJgJGrZz1hJyc7h9zp8Reuu7w": 490830,
-    "7qHi95nW7fwCEa8SGKv1GcsqaNnKNYyc1jUPTiUZ4CEG": 18500,
+    "7qHi95nW7fwCEa8SGKv1GcsqaNnKNYyc1jUPTiUZ4CEG": 10000,
     "7qL1foXM5g9Q3sHBP65fz1Uyb6ajjUdMBmQLbd2HHF8F": 1620,
     "7qNZE21kgX4Hqyy3VSgD9m8TfbZEk8ysEa2kCBJTqwqT": 900,
     "7qPG1gf3sUwvq1wL8vwfRJurEGvX424uxYH4Z9E4ZUXP": 305,
@@ -222647,22 +227341,26 @@
     "7qaaM5GVMcwaVtcVEPNcykUD3F9WH4bUMXjFGVgEsE1n": 6000,
     "7qcM6Pu8uu3oCs39UkVeH5XzkJjV8KTdPrQNYAjaY2fK": 500,
     "7qdund5E7H6YNsPrSQuG36NBEWq7TSQbsFNGhNiqm7kN": 100,
+    "7qhJmzqV9QJRJofuBykQmEZUW5A8peWd8v43G3XqGL3Y": 9000,
     "7qkJGCKpgXBLh1Memk4MAvSCFy17DyH6bEt6WqGUHL6": 5000,
     "7qnyGU9k1eiaVkdDwbTdCJs7xXbkuV49iL9F5aJnUw8R": 1000,
     "7qoZCF71zCx7pMkbtBRFvZ5QHm1quoRXRkngHq4oh35w": 6900,
     "7qtKshWC277eoPUUiDz6cLAfUDUKyZoRn98CMuQtgw49": 314,
     "7qteT6zdSHLXLQYCuEbsyKiDjdKq1S5PQeDJu5qcc4G8": 2000,
+    "7qwguw2MoN9rCAZ19TVARsRAPDdB9kHScd5mGdpC6WWR": 6000,
     "7qwiw4UXhcte2PLLd8S9MFtq3WLJ88rcSh76ePhaSch6": 5000,
     "7qwkuoaKPJz2EW6boa5cvdHe4K1b5gvgdVHez9DfgUEu": 3000,
     "7qy3dcxs7nh79pSwDt2h9qx3GKGszJZche2VFtjp2mfA": 10000,
-    "7qzfb3gBhwmwzsfkVZfYpGx3q1mUfW15VzaV1g5vf37j": 74200,
+    "7qzfb3gBhwmwzsfkVZfYpGx3q1mUfW15VzaV1g5vf37j": 77500,
     "7r2jx2DsZS8ZCBX35rZqhv2k6dB22K9bRnzpFCYopJoE": 10000,
     "7r5K4tiCaWquk7wfaaSLuNzmRhoJTFtsuxkC4K8WFGyE": 10000,
     "7r5LWiU9y6Rha5EkFoyAUQjvW3Lyqa7YufAUojVSAoB4": 505,
     "7r6pyFse5XbxVPC5iT1Gy61i2KdMkbvmBziLCvM7njMU": 100,
     "7r7y3eZNLBbfgrxcBTK3ZNWtmeZ8stjdtwWHeWGyobZ": 31200,
-    "7rALDay4ZZfEycLcYQDy7MyTx8JVVvq1SEZX3qaxAzAs": 5114,
-    "7rARrtSPkfDgBp86SCJ63QpwGL4mRGRGJq2BPMbPKSnv": 13000,
+    "7rALDay4ZZfEycLcYQDy7MyTx8JVVvq1SEZX3qaxAzAs": 59014,
+    "7rARZ6GRF1rZxdVGhbtvYRoLwXHAATffYGf23s9cemBn": 101000,
+    "7rARrtSPkfDgBp86SCJ63QpwGL4mRGRGJq2BPMbPKSnv": 25000,
+    "7rF5NfTwQGtUfRDbz3TNxwEixFotVhNez2WH7LoLXTJd": 10000,
     "7rGy7nCQbusRRm6zEZ9jsTGpWntVSjePUHqewcFXVFRM": 9384,
     "7rKBnyUaDstD44xa1ZozK49Ns2mx9k5NcM7oqDuM5KHC": 700,
     "7rKKgGjQMv3sebq11g32rWvuH63V4rNopLe2YKVpm9xg": 16177,
@@ -222678,16 +227376,18 @@
     "7rv7ahvNYUZpMppw5eCcLoUvRsYbm7QN9KnL4nX6VzsY": 100,
     "7rzpxEwAn7A3oyLp3RmrGeWoZBGxQUC8qyp8VzNAvbcT": 5000,
     "7s4qy8YPzMyz4BWbczfk1VpBvJQrC1LJa8cHhgKRHTyX": 39000,
-    "7s5gjByYv9pfT3ew3ogn9vCmb1BhD37o4Tb4tU6a6fVF": 40000,
+    "7s5gjByYv9pfT3ew3ogn9vCmb1BhD37o4Tb4tU6a6fVF": 22500,
     "7s9NYTjU3mQpZj5d5KoLHMbAi5DX1jpfsiT4rHKkwkkx": 5000,
+    "7sAtK8UE58Tqywy58JkWws39K8XEJ5Hi6mLkgjKmoEND": 4500,
     "7sHnox5UqoP5WAYFwHRF8TxWyHChv7wTqdLqoizGjbD7": 100,
     "7sJ2jSpUK8ByKDV17wDkDhVA77vvdMjso5mTsmeZhiJp": 5000,
     "7sJArsoWijXUbdvHTdha7XytbiGsVXifwt8kQfJey15r": 5000,
     "7sM76Yz68Hraaqs3Qy1KvpC1TrrRaZ8nggtNbznXizbx": 5000,
-    "7sMuzbuNKDiUxJXSWMBM3Djh6PFHcQB26kiqrha11trQ": 345260,
+    "7sMuzbuNKDiUxJXSWMBM3Djh6PFHcQB26kiqrha11trQ": 312260,
     "7sQkqWUDGJd4LpZ5x9W7ifwdjG6nUdUZPj51bQvBCQjA": 62562,
     "7sRJoBsMpqhN8grLUEKgcUh6kDAE9dKsyvX7sMTUDDb7": 5000,
     "7sbtJqChL3vSBjwHBKRkjRjhAzxdZzp85GdDFrwyTzow": 5000,
+    "7sdRH7AZpxDVuxdhfLNN77hdUQVSNYh16Qd23Dqi7cqF": 44900,
     "7sgA8Ukcma9S5PzDgQmBbk1mdDdvBDc1rkYFKGmBAXQ2": 10000,
     "7sgfHL8pX8K1sXvV3gXNLuGymFujY4fxZxwcASuxybZ": 742273,
     "7shaCrsgcbEsF5RdmhxgCBjpPMDvdSdji7R4RayusCYB": 7000,
@@ -222695,7 +227395,7 @@
     "7sn55dTvcBBvvUwxszV7zcu3WgoezGP9cWUjecRLe5VY": 5000,
     "7snEMndX6hHztbceGD4w8bGEbyk6KUZzjzigmSgryD4": 10000,
     "7spK9oxwQMFPa4DBv1v1HgAkN4oSzbkuHX9HZhkbj5Ct": 7235,
-    "7svc6zEg9G3XXDp5MsSRetWvqB9DPzrBxF5uzh94GRbC": 10000,
+    "7svc6zEg9G3XXDp5MsSRetWvqB9DPzrBxF5uzh94GRbC": 23200,
     "7sxVybS5mmpBVvjQcPzcs3nhPyhMprDhRE1MfwHnSr3p": 200,
     "7sxz1Ce1p1XqQNx1cxdx1gST4r1X1enk4EBovqxeEcHw": 16333,
     "7symN7uXVz1AHi2ZG5WhiXJHwkrd5haSyXjRjXubHqV8": 2492300,
@@ -222716,6 +227416,7 @@
     "7tczpkZQdpGSq8VMcU2AQeUnvQXZLQWsfA3GwjCUM2r": 1000,
     "7tkuL87FWdfSWDHDao197TG4yQNCe4kXHPEvdL4qjABC": 100,
     "7tsAqZDiycqLebQsHjX4P3JPeQdFh6agaE2Bb5Xr5MK7": 6000,
+    "7ttiZtp7FEoKqt9br1ue48ZNKo2g3mz6tH8y8bpQRJfb": 17000,
     "7tzLjSySTmwEdx5Syagh8AaeFDiSdw6ddAiQn6sCqVXH": 2084,
     "7tzSYySkU22H4MkNPuGbKKw5gWgNKAD7h2cR1PPoXdpY": 4700,
     "7u2oiwz7odqKv8TcXSFVi1RDAVP2UXzDLW1duiNNUiF2": 26000,
@@ -222747,8 +227448,8 @@
     "7uy5gK2rg2ZsUaAppuETZsS6f3fsKuHm22dqZdxR9FkJ": 10000,
     "7uyjbxR53yn37hNtqsBzg2QDSw9WdhanyU8sWtUTbHDH": 2000,
     "7v2wbtQkb9LsNS9AnUDHYpjbit9VfmUjkWZV7Zvxpigb": 500,
-    "7v3t4Xp6X4vjQ1btMyV9wbULaYiXjCbzGsJ5EzD87HMa": 16100,
-    "7v8K565zH7AK2abB7vbo1jgna7ypRhkgXyrP5djJsDKY": 5295,
+    "7v3t4Xp6X4vjQ1btMyV9wbULaYiXjCbzGsJ5EzD87HMa": 38000,
+    "7v8K565zH7AK2abB7vbo1jgna7ypRhkgXyrP5djJsDKY": 25295,
     "7vFJzBRnEFbHRNAyJB1yR4Ek1pUEvpKhtDTx4GwwZ5Wr": 200,
     "7vN7bh1C7AC2TAoTkewGtjpmfzAkRss1CcVLWoKJFZGv": 1000,
     "7vW9pJqvYwcTYU73HcGZueSa6zSoGDF7JnBi7VsaSNuy": 6100,
@@ -222756,6 +227457,7 @@
     "7vbFK13jnoi2kz2s5VMuuwRPpGMf4wJAUGMYcvbRbjA3": 61000,
     "7vbwWMyaCv7WKgQfVBrpzvFEeVf9VpHGwbokzaWehTbW": 56736,
     "7vcPDZ2t5pNPfSPhqo7zc9nboNJjT2fjH2FAxbfZKESv": 3000,
+    "7vee6qXunm2yyEBeLA5nzAoQjzdQMTn5NDBv7XGA2kkk": 7000,
     "7vekyKF1gZp1ZvdnvHG5NsjqrAG8ckACVtWQx5ARjcWL": 21000,
     "7vgWgMAV38QhekMgYNWTh2pimh3VNeqm99rE2j5pQLyn": 2000,
     "7vi1y175GDyvQmo1uipWiS3XTrk2Y6MFnBh7ZC4uYtdi": 36354,
@@ -222764,6 +227466,7 @@
     "7vrcUXm1cZxdpVXpzD9VrLaDHdUMfUjFf22v7UDe2xLh": 10000,
     "7vwdT396PADgpk6BALB1tE6L7Qy3EmazHoXZYW4LKyrV": 9800,
     "7vxyBdVnDWSFF2upiDbz3GQXmaTvDEqovBxJVbQ9HQLA": 5000,
+    "7w1cTqD1SP83ka1sqXEgAy3LGtdTCqUiVs2s3iXorocS": 5000,
     "7w1dgnk9dbCkTjSbH4N6J3njXn586NsNskF6aWs439V2": 20000,
     "7w1gYjKHsAW5Wi4dGThKAFPFUxh7qgQQYTJzhrToBtmq": 5000,
     "7w9dS2SQ27iJcrVJ1WvLs1vBih57JjPG4t6HvTa73hKB": 3100,
@@ -222773,18 +227476,19 @@
     "7wSGXTxaLRHxtticoysizJPmMpNQd9N91Ya4HcTDiMnE": 91202,
     "7wTLEWXA4rSPFF4vVF2JosCBXVbyoSwsS6HQ3yYy1dZG": 2000,
     "7waY4spcbtp3iCJQAVh1UZyGVHi1sdk7jjv5C1y3KwNr": 700,
-    "7wh8uSn9coyAJRAXjLfwi8VsrTNdqi8Bj6RSdsWmjqDq": 16500,
+    "7wh8uSn9coyAJRAXjLfwi8VsrTNdqi8Bj6RSdsWmjqDq": 15500,
     "7whNc7Yjtgn3a3XxRjYqGEYbYi2pFcck7vd7omMCgqaP": 100,
     "7wkFgBGwXDPTLd9zkqM9jeaJDSey6gBqkBiay4c8KkrH": 202,
     "7wkYxxBBsg39zbx6WYmeHr5MfJnubrSuaKi8xUCr981h": 9000,
     "7wozKqAuoqC2JJkKEzTMUZ2aAA4G4b6Hz3tejivEPdxL": 26400,
-    "7wsGWXpb4Jz9pCLezoXq2Z3q3LhW6RdCkVR1T6uAtp3D": 855896,
-    "7wsP6HpjC3UzQTZtLuHnLbbkpeqDXCixu314n8CsvhFC": 107870,
+    "7wsGWXpb4Jz9pCLezoXq2Z3q3LhW6RdCkVR1T6uAtp3D": 845896,
+    "7wsP6HpjC3UzQTZtLuHnLbbkpeqDXCixu314n8CsvhFC": 86710,
     "7wsxFovrUedbNNiD4e1NfxV8Lrrq2YdZZ3CfFHAUDzCs": 5000,
     "7wtMDbf2JSTPsq6hzy15AQ6FKBjUHAkVjzdc3VU8gZyX": 1000,
     "7ww9io9T8TGL3pTai79A5df8zmW8wTxsAotCYUP5aR77": 69468,
-    "7wyMYDkLenPYpz1vKH12L6C6W65f61yF3Ukx4us8nrws": 44900,
+    "7wyMYDkLenPYpz1vKH12L6C6W65f61yF3Ukx4us8nrws": 94900,
     "7wyfbsH2c71jKUQKMgkoWpzQ1yXjX63A9mRqHKUSYUSe": 25000,
+    "7x81Ah3VZPBGqE9d55c9XBnRzNRZE49pEjhdL5PcbSdZ": 600,
     "7x96qgy3THkJdzuffybUU19psSHK874Hd6feqy4sdWVK": 6900,
     "7x9byG8BvinmVz28X1M6t8ekGmw9iYGchUBgdS6U1SbX": 4400,
     "7xAKcvPtQU4uTHYe3JpMa9Dk69RYLePYt12gmGh4Av2J": 7500,
@@ -222801,7 +227505,7 @@
     "7xwLakdq8GAvzUesXeAdQMeXag5GPNdj3jQsfLySsc8e": 5000,
     "7y5jNnuwF24uKwDUbN5xPeyeXhTwWbx4C5tehn4naGVA": 2022,
     "7yB8HVnuDLhKgShYXc9K3k6WSBEjxAZwFNChm1F7hq6P": 310435,
-    "7yDPc9fyuyWgW8b4c8EihRsNJwRwHvonZqtSg8nJ6J7e": 288208,
+    "7yDPc9fyuyWgW8b4c8EihRsNJwRwHvonZqtSg8nJ6J7e": 298208,
     "7yEGewnkvr3yr8H9vxJTGHQs1qhLbYNx8S8bJCZyif6h": 5000,
     "7yKDDVvhcvstD3Np3jHMEBRvTFSCZudozD6EqmSnFYFj": 8000,
     "7yQEwmRQETR11GyoGgBs9qg96LLN6Cyf4YUHnd1b63WL": 2800,
@@ -222837,6 +227541,7 @@
     "7zmtnv9X5dFMCjsju93XVsvfj8d4YYDssCQshLN4aqDJ": 2000,
     "7zq4LKv5ugECUbyPZ3MjrKWEynajzMvrHyjK6orrLQsJ": 100,
     "7zupfUNWUVdw4EyUDJp9yupN2jg3LaJVFpGPmJFMLfZo": 10320,
+    "7zvDP7R7Ng8cvTEDL9WWbux45FGzbJx29tboCRrb9TYu": 2000,
     "811pPhbQNgwmWVNYas3mdiuiJ84PUQBz9fcM32VmZtvj": 2500,
     "812aksuXbFBTUnZXrM2rhryaorb89PjxxtZyYGbsnhRu": 3000,
     "812xBQ5c6oP2H4SRJwDwebpkFAjwCza99xbWBN46HV2G": 81580,
@@ -222887,6 +227592,7 @@
     "83CtecHKKkorkkJLJVxrPEjTSxrjGxco1apFY2pDEUtF": 5000,
     "83HMfz9W441WVTnDwerpB1q8Ux5WhYbhRzW9JoWVyZfb": 200,
     "83Hz7BWxNBksMk3Z1MvwUGVnSPbQ8gHay4bjXLpDeBWw": 19068,
+    "83JHLiatFpwLB1wzB2WJNn17rPgug56ZbDXFfferWL6y": 103500,
     "83N9pyEghXAZdC27Z2WLNPWUND3JPfKyofqjV7nLaVY1": 4000,
     "83VdMsX81Xc3w7kT1zCHpQkhborjcaBoq7tYYAagj4co": 5000,
     "83aA1gvPxmamr8nRNrqyZvQaBnXiQygoSy35xm3sDMmt": 1400,
@@ -222901,11 +227607,13 @@
     "83zdMhs24VPoeVcnFLjzFGLNGv6zL5sJcomGUy5Wwyqq": 100,
     "83ziceBX3KGPCd1F3zabG6pf9sdsiCSU3cHtBpkV8dSk": 277,
     "846AgqDd55Sw5E6uVx5n3AyzY3JJvBJwdZSnbXm9QzPo": 72845,
-    "847h25kqAQASE11Yjz6y6CdqHXLHLnibSn4wRgyeeAan": 19600,
+    "847h25kqAQASE11Yjz6y6CdqHXLHLnibSn4wRgyeeAan": 34600,
     "84AUUQK7HgVy2UEoTCD12hJ3ZzrXWoVGQbJynNb6EUbF": 15000,
     "84BEMWgqaxZgTZqiF11q7mzL7Lx2YHd3f3iThc1C93RQ": 24000,
     "84GepZrBSrbAY4uVEUv77cfwFHmaTaKW9kBCp1wThV44": 92600,
+    "84GyV9jcH2L1dJ8TGiPNyLJ73eUf242LCHo1Up7mwKnh": 120500,
     "84HswJFJ6BKXvVdkqzKgZxx51EBB545p9z6jpW9TrpWQ": 200,
+    "84Lbnaz8rwnxH3JA8FXjiLeE7GPHvtVcX9Zq1JUcKFPN": 8000,
     "84LqsbKvSEuRHifBjixx7ALJodznEgBp69JziRXpVNX1": 1000,
     "84QBVZ6B9TK6qhqEVpr6xpVnuyTz1dEvwR6rAgLtJ1Jw": 1032,
     "84Qy36kpazurX53eM7i2FcqPKvXLZqeTnLjYJ2CuPWDv": 2800,
@@ -222915,6 +227623,7 @@
     "84TgS3jicYZNWjCpNm2Cvmy8hjyi7TPkWmhDGps35EWh": 7000,
     "84V8P7qwvLxyExvZQR4p32sKqQj6Wkte6ghezgm6x2Ze": 5700,
     "84X81UYuF6BhxnQSyCHBaaps1JdQed7gHxbanE7KHrkd": 2500,
+    "84Ybr2zT7PwZn7LTPvPt3Wq34hBsnYbRuxjuZ8pcsSQD": 3000,
     "84fic4fQnpeLGKHveHokvSTaJAYGTQuMJGbNtsm8uCEJ": 100,
     "84fxUNz8FfS2MvpeR7i4VGjFv4u9Yt1qtSzpMxNqLGEf": 16007,
     "84ghqxBeb5rpj1yXPHpehweJVifgU3MtCmWqqeC2Y4VK": 41400,
@@ -222931,7 +227640,7 @@
     "8568uMq34bvHStQwjdLnwkAScnWCQ93b3N4oho8bRKKi": 6142,
     "8576Lp4132rHmFuWmVVdfMrUv5Mo2aE9JhScnUJNppKW": 2500,
     "85D7quabksjgVHwhrCe5FA9KKRtEZJiVmG2H12KGtbts": 3400,
-    "85FUQDixiUEEyBQ3HVgqMtZU2VrERrPWNaQYiVbyQoqN": 133976,
+    "85FUQDixiUEEyBQ3HVgqMtZU2VrERrPWNaQYiVbyQoqN": 142476,
     "85GC73Vc78yhi4tv9nMXszhCh8VjSVgjuggCv8yqyVoP": 5600,
     "85KC3GQbusHvGQZ7h6FkJrdLhrRik8MWFUuz55C4mRtS": 28000,
     "85KLoiYBkDf8hhHUW21e4ApEj5KeKk6nE4EMvwKositm": 6500,
@@ -222942,6 +227651,8 @@
     "85VuNitZHjtoVUY9GZcPsq4EZrWf8VUeQQmobBvrM1jH": 1391640,
     "85bfsLVhRwsLJq4cs95qhKUy2B6qdHt2ztfXquaxmecA": 60314,
     "85cH33MJonsPZzm1jeNAq6WNVCQNM6r6hw3BPXa3edec": 500,
+    "85cNCYoagJtrsrGxgHsy8qkptUZKG9Y86brBuD4YemUn": 18500,
+    "85dBwQ2evtWfvT6Ane4WmgE6Rik9NTTViJLh6zek6ao4": 5000,
     "85dRM1eo8LmEsGe49nF6amXrnqHoLDVre4CTG3KywugW": 4400,
     "85fxXm4G92Vu4G1mois1b6kuinXoMd2AA3sp6DtubPT7": 24203,
     "85gwKuHiKGpaLqinNT8U64Z3BHKbvo5V8QpaX4DRoH8W": 10000,
@@ -222964,27 +227675,30 @@
     "86qjrUjQGf2nU7voPbbnuW1yr3W4psAAH5Pgvw7GUbGA": 900,
     "86u2NyyQH6HUVLAMcHEUippSRTdLmzRT9M6auZ3EjM73": 200,
     "86vJ7hvq987LLnv6U2wRF6bQemnTh7PHT3DssMCRHRf7": 11300,
-    "86yFtoi2BHEmzzhcJzy1CEQu62iV18YPqwyCgLXtwYMx": 241300,
+    "86yFtoi2BHEmzzhcJzy1CEQu62iV18YPqwyCgLXtwYMx": 241400,
     "8719kX9EHrHppPYKM7aqANuCL61DAWDFynbyGQFUtyZT": 4500,
     "872xRFgHG6XbjqhPX4dSnoo7XauGHHMJzCoXpF37Kbg7": 100,
-    "876y6m19cQDL74CZZDParKP2XPKCLR2jnkF8grGZyzKA": 105420,
+    "876y6m19cQDL74CZZDParKP2XPKCLR2jnkF8grGZyzKA": 136488,
     "879QTHBT5cNRSdSiMkxWH9bcDAEiiEnvR5AcMXjoSSPZ": 5932,
     "87BXGk8SesHnbT9D5QJgj8b24fh7H4Fd3m9xCZJkgENe": 2300,
-    "87GFnz2ka8xpmmFuWfp57R3ho8YtyuowUH6XfDvqcqc7": 700,
+    "87GFnz2ka8xpmmFuWfp57R3ho8YtyuowUH6XfDvqcqc7": 701,
     "87LX2sSiXm9h87vQ9AurcuFD37QdorEuyJAAtLtar9ic": 8800,
     "87Tp9pqknjB8gMmfbLwVWw4WWEYrMDmfsXuRpc3zpgig": 6700,
+    "87VavPqsqadpAPzFGG5jeVwUgHAW6XJqrR49f7LMCNRz": 19000,
     "87aR9SRdzHHXkU5sdp5pfkTFCsBJgDu57kENDMzKj1PW": 9000,
     "87gyq2t9eg7EqJ1w2ne5xX9JiJMVURtGHjqgoJAapDsN": 1142,
     "87hGCt2wCSMNMXEAYLKiFgqM1qdLHiABT56RpSxGBTJC": 3500,
     "87iJKsCzhYTYkfydxKvWjfjUFyxJ3T5EnSFjo213LoF8": 8000,
+    "87ifiosMLvgqMwF6GzKd9d8jTiaczzFtpZtZGiqbUySg": 1000,
     "87nHcHR9DCbtyRW19cYEbecv5JJXPoDjLrz4LFXbPA9m": 505,
     "87nmMtUuwNGsr5gYxycoSDR7sJCwypdSdNFCCsQ1Bars": 100,
     "87oUhkfBkQPXt4CWzxXdX6JXHN7BQX749MgPm1poA8cF": 11500,
     "87pmVCER5oBai1bGCeFgXe93CKFjNGfQFLCw93SRjG57": 30000,
     "87sdLSJD4EnhqHuhavJTGJMzcwM8uDirLUa199r5aJvR": 15200,
-    "87yRzGhuPH3CxBbdRE3k5Ffb75oFqEGSKRiEzq6ssxzy": 196845,
+    "87yRzGhuPH3CxBbdRE3k5Ffb75oFqEGSKRiEzq6ssxzy": 169345,
+    "881qayfqP7vW2jkqmRCRGp9YRVnE58cuUx5d9NTuJEmm": 5000,
     "88267jKNNqZSCwDfZDwjYEB1EUpA4VUamoSomgMA1W1b": 17900,
-    "8826pSpyQpXVmtPXmqUMZ5Mx1UBvfmnBxbmjSGNAMcK9": 3200,
+    "8826pSpyQpXVmtPXmqUMZ5Mx1UBvfmnBxbmjSGNAMcK9": 8700,
     "882eUSbdv2gWgvpNVBscebgkzhFduQM1pznQuSXrFnih": 900,
     "883UZUkWvCshNCYdqyV4Rnr3f6GJXGfzKgnWozah81Gw": 10000,
     "884hW4225hiLKPL3wEC2deMHSt9rDsUyCfmTWmi8pD1Z": 2500,
@@ -223006,7 +227720,7 @@
     "8937XFWNyQWBPE5PG9sbiNPeAMPtMPri7voMdP23Csa8": 11300,
     "89AE4psYJEX89utCNC5xiGxhay2SvN2tHHrVifB7aL65": 34500,
     "89CVug1RMnuMvoAc6VcLbA257Esp1co7cKxtfgtz1YTu": 3000,
-    "89GcE8GR28gNFY4LEhdDweCnd9HB2HuTCuhcJhgKyJbK": 71400,
+    "89GcE8GR28gNFY4LEhdDweCnd9HB2HuTCuhcJhgKyJbK": 8700,
     "89K3nUWyCrGfGHnSFMBcpyvYHu5gVu39zYhJQ9ThEUQa": 293,
     "89MTGWvMr87EQ5XcvPmxmJc9aj5kmFaqC98d1fmwZ3av": 300,
     "89VPYY8YggVxaSdPo87KLk1oTsGHq6TuorQ9dHCFw2dA": 5400,
@@ -223014,9 +227728,10 @@
     "89c9NtcWDLTPZX4oUCQKyTF9LveEDCC4WWExAjaFFB9s": 5000,
     "89pqx3kHkACpUsQSw2VV4Py3uiuEkqSGYaGgQdQTTxud": 800,
     "89vD5vdZBHUzihU2McPr53wEnWPGSYge4Atm48uf67bt": 10000,
+    "89zeWHQPikZ3mcdzgTQnx4Sz5KNiU1R24HMuoDaHiHyi": 2500,
     "8A1hRKiLWx8AdCpvzrPXsB4obcgz8abTUxYvDaeTvaQR": 4000,
     "8A2EyP678292Vx7vv6sxwJFnLwDVVjkUN2MqNJRKbcMu": 206051,
-    "8A3EE8wEuTrKEcAM8MGBit7oBhveVy8D8AkhPZX7bHGS": 1036120,
+    "8A3EE8wEuTrKEcAM8MGBit7oBhveVy8D8AkhPZX7bHGS": 1169520,
     "8A8fm3h2zcr6TVB52NewdDYTAhM1WRB5Cbm7JtCVTqif": 6000,
     "8AM7zv7KDJa8tbnPpnYkVvFHXGq8Pp1YD9iY5Wcazoxi": 646600,
     "8AQxAv6WnKdQ95RGCn6Rp53d6XPx9C7WYJS3YTKaA4gK": 6500,
@@ -223026,6 +227741,7 @@
     "8AVZemi3JDTAGcbfeJVpo7TTLq3BnbxiDCs94BUwWoDt": 15100,
     "8AebfTMRqUZHbXGur5XBYYUwtHhz1WDYTbZHs3fTKHKa": 96717,
     "8Aef5GkqKKiB9VdPyHymH6U7CDRQ6i48rNebB6hfjXV1": 70770,
+    "8AyCJUo39F4ZzwUiZY7k2nMyXtEyit2TtLqnVWzPdMRD": 21360,
     "8B3xTT2BYyjLtEGRcrYVboBECV3njMdwevv2Ffb4b3kW": 5000,
     "8B7cC6mNREhHgXPsyn4zTqsJDrnZ6k3fFY82nVEwPN2": 1000,
     "8BDnxdnEeJsQzoioiBQFXoKPoArM8xgdMzZ9iJEwzVX": 18500,
@@ -223056,21 +227772,23 @@
     "8CL3eoRc6BCAMYMUizJmH7gysre82EsSsCDVg7aa9nv6": 1000,
     "8CRJJAMXTpvjhZzoXhBpS886N1uAuxhJ9X4sJzvJN763": 5500,
     "8CTemRhxAk7UJ5DYgT2oSnrDCeK99tWGYM3sWd2EHxeJ": 1000,
-    "8CWuf4f1jYoVzHh4DEFpCyzZYC1pgz4t2wU8F2zKCthh": 2125891,
-    "8CZo5NQim8hxEdxV1wUXEH2t6bxTrxcJUANGY2C2aU63": 74200,
+    "8CWuf4f1jYoVzHh4DEFpCyzZYC1pgz4t2wU8F2zKCthh": 1675315,
+    "8CZo5NQim8hxEdxV1wUXEH2t6bxTrxcJUANGY2C2aU63": 93500,
     "8CaKh4o792zbNVqZTkfp6KDFiXEJwYw2WmF56LYYstDi": 13500,
     "8CbMB7wxCaGwF1n2hSoJBnZqRs4w9pUa5nMru3ZzgbLL": 12900,
     "8CgScAJfGzrPx97rsguNUUXmNdo8HS3jRBniX5aUqkeA": 56900,
     "8Cgk9Ei7sHLtUoeCASFJcEDCvkJjdV83baGMtx8EJGkN": 601,
     "8ChBeoP2hu2ss4HoLaF3xfwZnBCT5t3sMj363SmSQ8Nz": 56846,
+    "8CjyUakiHaGsTyi9sxPyXuxP6NcvkUuAVwEFFoCBS29V": 100,
     "8CrykxBFPYid2juqogTVoG9PYkB6AZiiy9hkcR97QuHY": 1000,
     "8CyYC5RWhzN7YH4TxzbJpfgrGdGzEYZmDo2Z9Z7n48JE": 1000,
     "8Czd6ZWxwskHXaJsMbcQosaCFcMfrTSCUKs5Bvv2o6X5": 500,
     "8DCVz71rnNTvR2gnzgRDaozZP6NSVAqGkeN9atFzQqcZ": 15000,
+    "8DDgJEmc4vRJw5aNDJmzn4nG2AMf8VBbjU1WVSUwk5t2": 10000,
     "8DNeXaW56dfkC673Aw9Xoe3aeB97gNCsWwxR8vgtxoCq": 3000,
     "8DQ2npS7sUnkLJ4rcZKKknphoFW2H83RmXsDN2sxtp4Z": 5000,
     "8DQyRPvHxd8xEC9GiEBA8PuXd5hjoBQbd4WfZjXc9xfL": 2084,
-    "8DR3MSNK9235PFTWaHxTJVxHn49GfTNydBZvLkgM5R1v": 617862,
+    "8DR3MSNK9235PFTWaHxTJVxHn49GfTNydBZvLkgM5R1v": 739862,
     "8DR3MSNK923PFTWaHxTjVxHn49GfTNydBZvLkgM5R1v": 1000,
     "8DRL5EfLcgFbUdCvENQKw9BNghh8mDpovGE7tfT5pRGy": 1000,
     "8DRLQqC55ozaJ5KfLM81FNjQFeuvP28D63PFB8qpuBoV": 314,
@@ -223079,7 +227797,7 @@
     "8DdgiNc8Hu7NUWoDr5ZmzsJuaFbDroj4S4NLNT9FAvcU": 30000,
     "8Df5KWVnX8Nu2h6fsG8fiSeaURx2RHQLaduqLnsVmb82": 200,
     "8DgPDkiDp9ZwgL9hBCSagCtbfztbBHULUgDGkMyxXjB2": 24972,
-    "8Dk9sRFaJj7msDmkP8WNe4rZTaLMnKtAWegAQX47sHRw": 99150,
+    "8Dk9sRFaJj7msDmkP8WNe4rZTaLMnKtAWegAQX47sHRw": 109850,
     "8DmycBR8r3Bf3cuDcnedGC5X3a8bWTb2coJHbDuRZ64Q": 20320,
     "8DnbzEh1xaMefsnDRRHg8Cp98YiR9nPRxRUxCRYZRvB9": 20000,
     "8DtNDchQZxdYSoYgjruhWrFsmucm27xA6fxmzC7dCmgV": 300,
@@ -223089,17 +227807,18 @@
     "8DxT8nrYHVQYybfyTxEnX1TaTW1TsFAW1eirHz43KsKw": 173858,
     "8Dypx1gdimZHMBiqRptiegf4DXkGwrTvuTv5iPPVguaC": 14300,
     "8E5yueZzo5abd8HubgQctNxeq183CzM9TXign4b6w7Gk": 700,
-    "8E8h4DNVpXkcfvgE4FDFrefwCS4CyYVwpGk2N39hWkce": 516896,
+    "8E8h4DNVpXkcfvgE4FDFrefwCS4CyYVwpGk2N39hWkce": 526896,
     "8E8h4DNVpXkvfvgE4FDFrefwCS4CyYVwpGk2N39hWkce": 9000,
     "8ECeLECGbFdHojiC5DhpavPbkyTeqGBKGaaj1gBTESaG": 3500,
     "8EEQKzCTkNzkynL23AtxTAmmwNvTyyQ6rx7oX37KrTV4": 63100,
-    "8EMamiTs3z18jbg1h2LyR28W39NERkuvkwdFaDfkWGDx": 1068,
+    "8EJntbL5GWc8Ly8n7gxKXThxoR9HgRpguGYfZNWj13Kk": 500,
     "8EN8qH48to6EU2Qi4Bz613TcaBQdEAuPfrS1knfSg4SL": 10000,
     "8EQtpcoxd9Q51epfNkG9eR3Yyj7MdocdQZ54SZsuof1N": 12590,
     "8EWRzs4xFxehCzTG7RV3Zrtgq4cg6n3ooHS6csJ62rAQ": 3500,
     "8EaRcru4ZgyLtBdtUzPATDoTmnGNCb4W6Ne8xEvRaSLH": 100,
     "8Ee1vWa7rQBiDFaFoieN1F1uwxGUQ32jdQ49zdPiX3dT": 10000,
     "8EfeAfyekqGoKiJUVb9EiwkXeFm2zh7myrrwo8PaCGTk": 1000000,
+    "8EgzGmydngAGVqDVuHdSLW6hC3sv6oQwUvebEvCRAqJs": 5000,
     "8EkKfdaGVLwNH7QJECefDivkHiXkqyQTWBD3gJLjfMDu": 700,
     "8Eke8ubdXtRWq8uCMGPaT8DSVk5SCuLBFvHwzTkXVMBj": 500,
     "8EmBKAyUkwsRQt1oeNXr1VbhAKQqb7fL6vGY71aebAYP": 5000,
@@ -223113,13 +227832,14 @@
     "8FDcBjekS1Ew8A48pcrFBGKPj7cqoYugCwkQe6z4fBWg": 31100,
     "8FEoBY4eStPFTqeW3kWuHSyfnEQum2Rd8M5qEzEajwSD": 5000,
     "8FLMqUejA8T4CPHa6AujvGjmA3rFvt1yWd9PNyZH2fGy": 5000,
+    "8FPgsakkfmrkoNxw3aezEwAHNA4M1WoBPxuqv7ymkd9i": 50000,
     "8FQ5qR2qUSLacWmRrYk1HxZweQLumMBqQXLKMxP3X4Ud": 100,
     "8FSDZugBJRRT6H3RwYHeXfGYGUEPHqGFPXQGRnF7Phgm": 5000,
     "8FbBHbMsYVZQHi23yexkGoETVfowSyuAPwC6JN27TiTN": 7200,
-    "8Ffr9JUKSVgdQzJATSRRHgf5A2Nw4ZmNuXBKARXRWG9F": 60000,
+    "8Ffr9JUKSVgdQzJATSRRHgf5A2Nw4ZmNuXBKARXRWG9F": 100000,
     "8Fh74i9q15UcRcRwT8T3StXtvp8Cck3Jbkvh6eu8ickb": 5000,
     "8FnMp9StWDUxTxMa5XdVrDgQZ4f6i7koZ83FeUCBHJx": 1000,
-    "8FodukgsUXEipCA31F1vgh62Y9haM8y3eGGW4fkBsfPL": 56000,
+    "8FodukgsUXEipCA31F1vgh62Y9haM8y3eGGW4fkBsfPL": 5200,
     "8FsQNntcfrv1UyExAUpBRdQJfUYwVu719jaeDFHGZ95G": 8000,
     "8FsXSf6Fvy5krux3WZoePmR6TXi6R5CKkdc5zzCH5w6A": 1706,
     "8Fu8TdmwPdkniaEbEysHCiDzrokMebSL1JcGqzTgRGr8": 654021,
@@ -223135,30 +227855,35 @@
     "8GF28jKKySo5toPUj4vSGgCTmN7aUrogpaonzvNfwHrP": 100000,
     "8GGLiBMHpBGxzQ3A522etgY5urW3ok6pFFhdVndxu6p6": 500,
     "8GHDdV6b2o39jsGXgtAZ7dDG4ypgkxQTJf6o1gQKBgi6": 500,
-    "8GQ4W7NowZXviQcahRPkLUoUzk3CrZ3XkmCoDj14FbUp": 26100,
+    "8GQ4W7NowZXviQcahRPkLUoUzk3CrZ3XkmCoDj14FbUp": 62100,
     "8GQMRB8DY5vWzQ67Y9D27pUdH7dLRiP685t59CSpXWEm": 5000,
     "8GRbaEELGr7nEDYG66U6orZyQXZH74H45LagcBs6cZWb": 16462,
     "8GVpVwJ3gqvwRrnnoQmZempLNCUuKufUdsYZHHqAScSX": 3000,
     "8GZWXntVJs89gQipVKbnox7JHALzB5vYua1JoXWXHeLU": 500,
+    "8Gb4LbcsHRbfYu3MamAfAKa6cPg83NYzq2PuHjniTkK6": 5000,
     "8GcaAz5jepEr3fThjRGT9X9DzVQ77RW5LZgtZPznJkZJ": 39000,
     "8Gdt9heaRo24mKEj2kjUWViKHvs27TixFe65ET3suFmm": 16572,
     "8GhMyUyV72DMFnU1SQAVcuAcbhKxwy8r5iYyBw4bqiLm": 1000,
-    "8GjoFwWc8SGs6g2brFJwqnAfHFrauUv72rJDFVuAmweA": 139310,
+    "8GisjP4sHwsmBV861NsjddJSCjxtPramuuk8AjEiw6h1": 38400,
+    "8GjoFwWc8SGs6g2brFJwqnAfHFrauUv72rJDFVuAmweA": 164426,
     "8GmMbw9XCLN62KeueKgEmiVHUAyhfFUvtpVvQbGWv1kc": 30000,
     "8GmMoZGDYgofN5RN68AB2UJM5PnH2KvZqyyDTTBstH36": 7000,
-    "8GmbZBzKXVucaPz94UeF3sHfgV2L1qipPXpULgWybkSB": 5000,
+    "8GoX7jxV6JQ8xkQtQWKGsb3yvd64MaFybqqkspGuDmgC": 10000,
     "8GpRWsrmAVokZcP9F8ktyYxjXt1A1A8ewm6VbjgkJKBR": 100,
     "8GqNE9SyGev2dx4sqj8Sv9ijrQNQuL7B3qAQhqS5k4H8": 14500,
+    "8GqpznGswstiuFPg3zXzpBReYZtymFSB8zkshYfpLZAJ": 25600,
     "8GtQCzp7C7iNAieoFr1KyftQBpirKEgXyP3T6Ng2UdDH": 1000,
     "8Gz7Pas7z7QfouDaUeJjvxBz4UiDkiMHUndySQAh22bG": 100,
     "8H4B5rRi4fqUhbVu7fTjks5Ewr9brj1Xuvyb7Dvzm2Yy": 1000,
     "8HAdasrHSGE1giDrCRqm4LLPdhni3NM5u3vk8r5GpSyz": 5000,
     "8HE7An6Vp9GXAgr9ZDLqqQF3gBQYpniuwQFeLCeuwnAD": 10000,
+    "8HEHpo1cGTqnoDzomvUKtzt1rCtL3fj7VUKQDeWm6m1X": 8000,
     "8HHLFbwJNesUmoC3D8VdftVeBedaDXoi2RJhcsDNpmut": 614,
     "8HQPYyApE1wdfAq4YmcFWkyhbwMKgi3oFJ95GF7aGgZy": 150000,
     "8HZoi3UQHPfcpHpx4aKBVpAoveqqb1Ran9xLYVqrPMi8": 200,
     "8Hgiu8hj7WFih3tFZSsyz5SXzEjHZSh6eBUhLytwq9xX": 1000,
     "8HhbrFsV5XX4bitohKmDtCgozT56aNdv4us5sTKwpdxi": 2000,
+    "8HiLnd7Kiw9qB4A7GMpKXNy9kx8TMHMT93zCTR1Q3Lrp": 17400,
     "8Hnqij9kMrYPWkXqtMdyycCCmpYXSkgbtXgBeimPUreQ": 3200,
     "8HpFStFHZKkcDby1Ve6L1tDQZy7cAY8PFRfujKyyHWz3": 2500,
     "8HqZkazJZX5rKL9c8qfa2NueKr6zESMgYZm48UE7b33J": 20035,
@@ -223168,12 +227893,12 @@
     "8J9EXEtH21Qn9urdzy1hjbL6YgdNFbSCiPqS8vTW9rua": 5500,
     "8J9dNKzRFM18Ywo1SQMzMzXhNgDLNDPqxsP8YEinQU11": 8000,
     "8JBQS6raJMkFjXtJ65pEjggcB5bZC18Vuyd88HmZqk8t": 12000,
-    "8JHvEv3j4wq4DSRFVeyZHcsquByYMX1tNYVUmSEXEkjn": 20427,
+    "8JHvEv3j4wq4DSRFVeyZHcsquByYMX1tNYVUmSEXEkjn": 22690,
     "8JJ1EdAtz7RR4EvCePWAd2RnVsq4KTQucUHvLJNCk65u": 6000,
     "8JMVjWZMnwwNQf1yVknyY7S13R56Fcid66z8za8FcDoH": 500,
     "8JPgEF9sETu5GkarQAM43xZ11rUxXVbc2XNzemCA2cLF": 5000,
     "8JQKpf5AuTpasKsEm2PFymihZiF2NUB54kcXE2K8piKk": 500,
-    "8JRBNEiUYPXqLqrdfYoyShC28zSUG9FYnFm2jeApjjmB": 10000,
+    "8JRBNEiUYPXqLqrdfYoyShC28zSUG9FYnFm2jeApjjmB": 179184,
     "8JTKqsS5URfXXcKTYYirbUTD9xWrbV5w3tDUPzWhAdYc": 8000,
     "8JX8UgLnsEt42bT7VwSKLWSc5rx9HQbA8CVGn64zVXvj": 4000,
     "8JaE89idf7kLjuFA96hF96xEsFWMXKwoxdwZxZb1TU3k": 1000,
@@ -223182,8 +227907,7 @@
     "8Jk3CsrBfoJmB2ohVtSoWUicVXzoUnSU9SnM468uf2nw": 82500,
     "8Jo4KAoGf3VgHh6sBJKiM8iEZXRN3FCWnkWtVNm5EsYy": 500,
     "8JrYRpAnZdeagfwd3LaJBHX9vTQUu2oBUSCHv6pJBuzE": 5000,
-    "8JrewFsiGEQEa9JgxRwCJyPgiwfjJCkLPptSg5Y5xB45": 227950,
-    "8JsZrsazQ5nbpxAEKq8T3bpG2KmMjrw9ZcYJtU5Gh5Sc": 24500,
+    "8JrewFsiGEQEa9JgxRwCJyPgiwfjJCkLPptSg5Y5xB45": 184650,
     "8JvLse8WYQj7AHzQGRWhrvrGAQ8QAjSCUMipg6Vp9eUc": 6000,
     "8JyLxhEC7Wwi5Y5PuzPhp2eYAzgMKEU2tskmogQAwteq": 5000,
     "8K1EtFpXXWp4vCvzZjovZNUBJwZuajuBwttQD2Uzm3an": 2900,
@@ -223192,7 +227916,7 @@
     "8K52WDw2tdiA1pHwhPucwnb99wsD5kVx1HMkKQjp5vWd": 1100,
     "8K58pgxdCNppqUHjgerGGZo6wpiEddQVoYnwefgUfaeQ": 5524660,
     "8K6ENQfKhz1xLJ8N6gooaj3CXdVQDbb8i5AzzvgaTmzD": 3000,
-    "8K9begJ9tZnhUSRCV97mG5W84cpzznR6GJswC6KES3u4": 5800,
+    "8K9begJ9tZnhUSRCV97mG5W84cpzznR6GJswC6KES3u4": 7400,
     "8KDQjQJjrZ9v9giTyMJHBfwwnBDgmRn1M3YPTNSZce8W": 3500,
     "8KFkhgSxA5wQ37Yqzu6yrtGGWbLTXe7HS6V2xcDAzfj3": 1004,
     "8KJhimRLGZ8K1wqZNRZvMveWGHaFNxuKERLpy6ByJkP6": 1000,
@@ -223203,8 +227927,8 @@
     "8KUdbhijKVDsSPHCURmzoMjTcEk852Fx2Vh2wX2Pvov5": 16900,
     "8KbSssDxqqmqMSwtwhW6JR6bYvi5p3B4RVLUV8MFypJf": 9100,
     "8KbToFB63zyY7Z511L6E3R3JVyEmtSXUN2AnspgKYiEp": 1350,
-    "8Kbysn5n8BkLrqeATDL4czHTAzM7653ixYgq32aEL3UJ": 325658,
-    "8KgjLohVzzMQc4tRhXPX6x7KGRGJHLBcPHVA61sJwKxd": 5000,
+    "8Kbysn5n8BkLrqeATDL4czHTAzM7653ixYgq32aEL3UJ": 319978,
+    "8KgjLohVzzMQc4tRhXPX6x7KGRGJHLBcPHVA61sJwKxd": 5001,
     "8Ki2Vmu25R9uYuV7eJcKKkjtxcgF3nQun5Ff2PtVksuZ": 500,
     "8Kjpy5XQ21rgJDQ7jhNZRLph57NxRNSzDnmckMPgxvjT": 1000,
     "8Ko9fJB9zjWSpVzVUAQhiLLHYuT5jyQigrhDvvGz5rKq": 1200,
@@ -223222,18 +227946,18 @@
     "8LLTZXVspjRtfTNeuieg8Hm9nJuMoJ5kQa2pU6AMn18X": 6000,
     "8LPHK6qyu6MTAc7QRTRibnHskeKpimdgLgmGTRiM5oFH": 10814,
     "8LR9cf7Fgmgj1G2bHG56BnVH2YTqpfFf77dSSwtSMhQx": 1011,
-    "8LSVd2EaZZ51YTbYewU96BUMGWMb7g3seWCFfysJxkEw": 1057000,
+    "8LSVd2EaZZ51YTbYewU96BUMGWMb7g3seWCFfysJxkEw": 1125500,
     "8LTv7uZf73NF2oR8e8mxBw5XSGykWCaRBPsLcrEN5RTG": 500,
     "8LWJnTTjPkLmZv1iLKbjMpUNRjqVXZNhJShVVaHAywwG": 500,
     "8LYJZ1EvWRNCBzjcR3EnjtFfPMZA7vckzXFsJmbroGFL": 10000,
-    "8LYWqGAVVMqqAjdDMz18q95z9PcBGcqMwP2YxkjEGGW4": 47600,
+    "8LYWqGAVVMqqAjdDMz18q95z9PcBGcqMwP2YxkjEGGW4": 64900,
     "8LYhJBV4xUEKfvagfaFSrhXQGT9eNapNEHsB6bAPZu1n": 5000,
     "8La9Skhu7ny4nGBvesbAtvAxoYiFe3k6QHqMSDKy352d": 49000,
     "8Lb1e9kSJE9RJjVgzV7CcLVf6JLyQNPBut6YytkCiqsB": 77000,
     "8LfHg1PNNVTYZG47yF1TustoY5zyRt8V6PHkPvmdVdam": 1002,
     "8LgNRKdVLSisg1i5enHYh8KiHc1Qi5LraLSZRxt2pExb": 5000,
     "8LheVVhAKaG6qoJipMsqoERe536ZTWCaFFW1avUN1rCd": 68368,
-    "8LkTuSpnTGb2y9nwduS9Xt1MSorT6BUasKtNAVss7myD": 8840,
+    "8LkTuSpnTGb2y9nwduS9Xt1MSorT6BUasKtNAVss7myD": 48840,
     "8LmKm1tW1UYfacgYSGNxJcCA3gcUPC5xhQqkuWPciGWw": 1000,
     "8LrVr7aNSRhSSDRh9wGg5yS1VgetyKDpMGoe4RfoqN58": 1300,
     "8LvMvCKirseojcy6uKvgSc4SVZ4piwTkJ5z2G9VxaUgj": 35000,
@@ -223253,7 +227977,7 @@
     "8MaDCbygfGHQhpdgnv6EJrZyhFP1K7yPHXgWbi6fARnD": 2000,
     "8MatsdiVH62S32Dcu4BHBePbBK9qCZwFBu1PALYeQQHo": 100,
     "8MbwG6UFGYAjrSi7zHFyGzZFCqptfWV6UeA1rwBWc75r": 1016,
-    "8MdApw4Si91tVwsXvLQr31TmLBRj2yrt29apa9SuFTZL": 91000,
+    "8MdApw4Si91tVwsXvLQr31TmLBRj2yrt29apa9SuFTZL": 81000,
     "8MfZztnr69W5vSEaipi14KqWo9yxWwc2xpBiyvsKRyVt": 100,
     "8MgoFUYRZiPSBKCYCqxtu6tcDsMGwvtWYcDyxT8c2GuL": 1000,
     "8MoH8tmYA8Lniy33WWbMk7yLJk1AaaUXaUtSSRmSHpAR": 1000,
@@ -223276,6 +228000,7 @@
     "8NLFdeh639v2Aqgdw5GqiLEdH6WKyLrP6YTPsBgJyv5N": 100,
     "8NTxNcGsSxuu13HEM6GPc2N4MpYCvBBVucobMX2cUz74": 2180,
     "8NU9auTB1jfgyu6U9vDPcCUjkDNCeKt4abUsYseQPRSA": 200,
+    "8NVkNYCJkPSn1C4Kf1LyLnBPTsu1r5erehhhPVmtqQNK": 45276,
     "8NWfM8ZdcNxU4PnucWnveYEk8QNqA7EpTnu9B2we4G6V": 6000,
     "8NoVDccU3mH1fhKJ9ihkJMSgPW8ihiJdNPQhwUQVBqY9": 30000,
     "8NoqbCLAHpEhiCUKtDvLhNdu3PHkYpzyFMvoawkTHPq3": 200,
@@ -223303,16 +228028,15 @@
     "8PuQNShcYHEDiKZK8yNawapk9UuLoAvanKQU8KUVD7aw": 20000,
     "8PwoiJ1wmuc5F5g76CiyCVX7dVuXUBCBx41sdq5Libdz": 5000,
     "8PyCufk786dRiyiJ9fp1pFARAXZJGnKZHukKP8Rt1JrH": 20000,
-    "8Q33gvbZcUBUHQWJSemQn33dyM7YnNnXNuSUAjgtCxZk": 24600,
     "8Q4syxcoADR3yuTFengo2ApuJfqEsKro6ukFyR3vccFL": 6000,
-    "8Q6MTGz95t1iABWpKwr1dZzGC4PVqgXA9sAzvmp35ZBF": 932,
+    "8Q6MTGz95t1iABWpKwr1dZzGC4PVqgXA9sAzvmp35ZBF": 107732,
     "8QAVYLGyrf6sJNTGSsKswqtab2Cz4Liqq3JxRx37ytWu": 500,
-    "8QC1X32w85bxDKi2QHhU56VDR7uB8ARMnM8Zu3ubBcWr": 661306,
+    "8QC1X32w85bxDKi2QHhU56VDR7uB8ARMnM8Zu3ubBcWr": 746229,
     "8QC1X32w85bxDKi2QHhU56WDR7uB8ARMnM8Zu3ubBcWr": 50000,
     "8QCdcoDXm8U9D1eDtgJKk8g5xYiuMvk1hC6g8jjUvMQc": 100000,
     "8QDimZQviM4dXZfGnyLFqhtoQFypxMSjrUHKYY52viPy": 5800,
     "8QE7gm1MURS5M7eY3qP2fbesvzB41278bd9es4tEgXq3": 5000,
-    "8QEQR3BjF2s7DJ4i62Zveo1VTVdqUNjjuQruUpUe3wMi": 248893,
+    "8QEQR3BjF2s7DJ4i62Zveo1VTVdqUNjjuQruUpUe3wMi": 264195,
     "8QEQR3BjF2s7DJ4i62zvei1VTVdqUNjjuQruUpUe3wMi": 10000,
     "8QEdCx7d8FRKTg5Xwn5dP17XSzfCKGtkRNepoum3rDVZ": 15500,
     "8QEoi9Gavh7QPAdkoeBqfem3Eyo5H6Bi1TiDoQFBsCUZ": 8100,
@@ -223334,7 +228058,7 @@
     "8Qjajt6rBmYCCqSy9insHf95v5At6JQqjRG2pAuKQbCi": 190000,
     "8QoS23VdQCWjKNUvj1VSa5ML7bRzWms3okdufxDKjeJv": 100,
     "8QpUkojFkhnUGAKinVhfsWLBLwUiiwSwNNDgeYm41vdo": 4500,
-    "8Qq7L9WKJp9TaDfSG14YCTZK1w4aiE75rYp2zFKpTi5h": 1568,
+    "8Qq7L9WKJp9TaDfSG14YCTZK1w4aiE75rYp2zFKpTi5h": 1268,
     "8QvBJSi9fBvaXt2F7Goovv5Dci3r9PeG8Yuz3NJ36z2n": 100,
     "8QwBkMKeXWowGeRDQwBjqE65o3nwewZH7LFHYnBDyCab": 200,
     "8Qz6hn2dZyZDQC8NsXLiuWziuEp7KYQaf9F2NjZ3s7Np": 2084,
@@ -223368,14 +228092,13 @@
     "8SAKLcYdbhw7PzAMcrfegxmUzd8hBSEbNbTVDnfniRty": 10100,
     "8SBrVnfK8ZAB9hnbWQxAhhbovRqBptV9pA4Dh2bYvmot": 1059,
     "8SGhSzutnNX5HvZVU8z2DtNYfGLCN6cHEdJQgriVTD2a": 15000,
-    "8STUspcjaiRrZpuAKdy4jm6x1G4A3F2bNj8RD88Zd5S4": 18759,
+    "8STUspcjaiRrZpuAKdy4jm6x1G4A3F2bNj8RD88Zd5S4": 88659,
     "8SVXiZgVAwep87pwBz6HsY6KJwhqd1kAD5SgjZQXxD8V": 4000,
     "8SYtYyJTPBebMge4p9qbsdFey2dMVu2H5VwtM4s5URFD": 5000,
     "8Sb4KPcwiPJxHqSXkzURgB5w1gsQdLAz75gcAQVoPZTA": 614,
     "8SbXFDs5ExUZWUEy4qBvDNZSvpzLH4CMfEAZZC4n4ktQ": 21200,
     "8ScuZvdYebcY4Wr9LAihJ8X8jqicETaTsJWCyGHgC1DB": 5000,
     "8SegL86hYcHAoPpDtZ84165Z7Nm4shC2f1YkvGzgSuTD": 77048,
-    "8Sn3dfQku1BRxVhPaBDvjsc2rbrQypjxbj3dsbV1SYjN": 10580,
     "8T2t5zmfPtBuA1PZfAQPhKQqeth3DpTVfQ6Aey2fBHGG": 11200,
     "8T3G4iWV6KTGyDchSKD7sj4Gv3TMCB7MGu9V8LPochnX": 96000,
     "8T4FxPhkGgEETMwnVtNFoHmj2SpaCZer3PkRNq6Ayh76": 26300,
@@ -223395,7 +228118,7 @@
     "8TLMmbNv5yYHU2KfLY5EEYnBosCQUqgy71UYhXyCntsb": 3033,
     "8TW6ZtNyt1p4YKMfTeczXpWpRu15WGUTNbucDLw14MzU": 1000,
     "8TXxz6C8e9L1q5sGMm3m2k6XVQ3PKMLG2eUZGgqpBqNw": 5000,
-    "8TZAABmmfQmA61FhaRyWZtUQFg9zqZbKqZ2tz8oAgLPm": 18500,
+    "8TZAABmmfQmA61FhaRyWZtUQFg9zqZbKqZ2tz8oAgLPm": 10000,
     "8TcBF2bnj5LGfis7DWjXPVK9SowZvnpdmDaBFZfaFtM7": 212,
     "8TgTeixp3tDePnfFyjgEq9ydWi4vyNyhALTj8xf5qNCL": 30600,
     "8Thqu66qKQYHSfgZvSPuPurnXWvPUedJ1kDBNK2SibUy": 2500,
@@ -223403,10 +228126,13 @@
     "8U1dz7u7zXxPEzTYTewAgtVorSErHcJo8uyGfMmVsfvt": 2000,
     "8U2ear12qAEM9kWgMDVhRDkd4qa2CcJLNrbyaCfCJE3C": 1000,
     "8U41kDJ9fSAZs6AsCaX2PVyWx5wwTiiNYWpdDAzNBoQc": 162000,
+    "8U7aLAo2Fgj3oCVEebBWBp6s6vNvdLmTEGskFiHrbBxE": 3800,
     "8U9TgXfmPooqsWSQPgaZ8uU9UzkR9drmWWX6Ebtnc8px": 149440,
     "8UBc5mSfiS7w2ygEvQKiQ16233BX2e4XsbgJBwDLXqbn": 5000,
     "8UEMYuuEZJKVkycrrfaJ2ry1v9Pdo1WLy4bB4NfHyA3S": 10000,
+    "8UFWehAUxpV8GWBocvQL3uBM2eFfusikY9FkPbe6FkYz": 16800,
     "8UMqMbUKeekTiHi7m59ZyBFnJq4wxNByr3ZgfTMfQcSi": 23600,
+    "8UQ8jaUSSLRBzLpZXAqmbETtMWmWi5UK2iHwWqdWWjyS": 10000,
     "8UQMC2QMMXeAGV69CmGcCPomEqjVRxCHG1vP2RfTSyTg": 14500,
     "8Uga9ZmftJHq6hZP5MWohyHBqGTbBgWk6atSoAvyc9Qq": 324,
     "8UjjJ5YDW9JTrr3vZdEEgVgS6Vsf4Wa1zzkjjsc3vvnP": 1100,
@@ -223427,7 +228153,7 @@
     "8VaiW4TgD6TbstgEkkDp1w26JNYJNNQN9ySec5FeC3VT": 10000,
     "8VbSvniKhqXF1x5N4nmm5cpxxJHEnNTmH4fvAkqZKCqy": 35000,
     "8VcyTGbEMLMur3e3p3vpVgt9qKimWdP6EUtQxrUqLTXD": 2102,
-    "8Vg6T9uVY9kKcz46bTUpHKhTW5YqAFpka1EEwbJhHAEr": 52000,
+    "8Vg6T9uVY9kKcz46bTUpHKhTW5YqAFpka1EEwbJhHAEr": 94272,
     "8ViuF6KithmEY17RjK99RydwoN8CNLG1GfsS8NxAqn9X": 22920,
     "8Vo4LLyNhfyHwaKyX1DxbTcSNBGon3BTVt9Qo51vmLqa": 10420,
     "8VpZBHNvtgpWM9uhQfbshPsVsUCBDcg3Zku4zf5i4zXe": 25000,
@@ -223438,7 +228164,7 @@
     "8VzXDCKr9Lynk6hoJJHy75EEPBUdr89qS6x8rt1hge2": 2000,
     "8W1GpEbLF5QJL9rzcLRR2GaHNhiFTbkWmP6orUiihQVY": 10000,
     "8W1XVX8GhYxkPJPFRd63ZjA1XMU1nki9uDaJ7V7Fbgmx": 17727,
-    "8W7Y7KPXEpufbcXExgqQdHTArNh13nK71HmH9ajcBEeB": 256038,
+    "8W7Y7KPXEpufbcXExgqQdHTArNh13nK71HmH9ajcBEeB": 268538,
     "8WG2Lu5PhSMjAxy8f5tbnamC5xmNNtvvctxdU8urcNdk": 10000,
     "8WGEysD8mr8WbLfSEq5Pgwcayc6qBT6fwcxHgnYQ7HS3": 13100,
     "8WHf3x9cN7JyurPdRZE9qbbGYNjW6SPqTCRXGMnn3y31": 6000,
@@ -223448,6 +228174,7 @@
     "8WaJ9hXZAdBRuV9YRq3kjGcZZhPX4Axca4SBvq6gYVtr": 300,
     "8WfZLiBwPLySZvZwuR3doSwKq2VqERJTWrgWt4Suua68": 3000,
     "8Whdz3VZ8eyBnaSky8h1e63mrUd4QFhychtALNSyNaKB": 5000,
+    "8WjMyAzjN68HFXNSuVqTmDtvQfowQ5qUDGdpFePbxSy6": 5000,
     "8WmHTWaKUEjwfxfoiwVqGvdtwJGGrGixZDNw6VdGwVmr": 5000,
     "8Wo8dGKp2Dmgrk7BGeFNVydX9FHQZ7icCLauosK1vJpP": 5000,
     "8WrRNdJ3BYpiB7RcxsmC2ZXArMd3HLXsrKH51GJqboM1": 500,
@@ -223458,7 +228185,7 @@
     "8X9pNvg441xEBLc5Crmz8uFz3GzTFBKeDofFffe4AW8r": 21020,
     "8XD9E2FyfQEomz9aoJ5XRXyfmus3aovMor3Ngan2C3Zr": 2100,
     "8XFYVKE21UeccXE8wKysrXW7f8AYRdPM4PKXG1SF6h6u": 280,
-    "8XFsm5tNFLXkq6zKRCUrztvtECvKCxds97xAFBjNeZK7": 9300,
+    "8XM4ampZ1uGGWQb2L5rn1dmSoLFoXBaHHPwAsGmt1wyg": 119345,
     "8XNeQFP8etjMUgK9BDRwU9UYqbMybheVgoPQhNgVjg4R": 10000,
     "8XNfZPqewtALVv9jv3CLFaV2Unt9CNwnMHSAsVcJjqu8": 700,
     "8XVSTMVWoRmRoLkELEMqeSXjviRWTaTqttnr7evcgrrF": 261433,
@@ -223467,7 +228194,8 @@
     "8XZUFmmugshJFwe2VWSc66bG7dctC5pqndnGfnfebERE": 16776,
     "8XajRYKyxgprSbdPTYJGdSpAPwmPKSvcMrgJWXZyEc5Q": 12460,
     "8XbXrWDNBZ3B1ogLvzjhMLY7LoYdrt3FvYQjN3dNMPjg": 5000,
-    "8XgKeji6Lcw9AzAzVBWPBqN3pRv4ex9uzhG3dvFh9Hgh": 224297,
+    "8XgKeji6Lcw9AzAzVBWPBqN3pRv4ex9uzhG3dvFh9Hgh": 155597,
+    "8XhQpsFaag6i1nvZVH63sY8vDWtZfwGE4en9p6WCUhbX": 308312,
     "8XjA1aMYVCvhdKa1ezCSxBpT83EP6YdZGEz9GJd6rVZr": 16800,
     "8XjpbDGV9Whz2gXEpkvMui6Xw6uSUPcLB44c9HmuRMhh": 3174,
     "8XpvfKsdp1T5BkBvdQzvHjX4eyHNWjAcxAo83LDfHuvY": 119000,
@@ -223478,16 +228206,16 @@
     "8Y7J1EKcAo2FiDFmyVbiXGeYDRj7Ep4WDcDe3C4i7vBt": 45000,
     "8Y8CpvJC1Kgt1GyqKHXvAQL7ftzesKrRrzQjvn2TxFNv": 1000,
     "8Y9eLD5Sqca2XKg6N8X9pFzGBSfPQrbhxWxHnTTHZr7N": 3174,
-    "8YJQTV2yRnLxqbpHe7soPP1WsUiu77tNES54VwBCJG6D": 12452,
+    "8YJQTV2yRnLxqbpHe7soPP1WsUiu77tNES54VwBCJG6D": 51112,
     "8YJhL597WxPsNnc6uji6jeqL5f8vr6wDJZ52mq56CdNX": 2000,
     "8YKs6NWhos47Ziroz4xMzxPihsa2ygR1e8Qb9DT74qJT": 2000,
     "8YLocVqQy9Jpp88y4fXWvZTLoFcEHZRbuMtekyxwAbkt": 10000,
+    "8YR7s46aQ5cEsKpqqQhrgHyGpPacPCWcY9Tvk3VE7omT": 19000,
     "8YWGLrR44UndstJSJkTkyowsv9TFzMBupCJXrDabCBoK": 30000,
     "8YWaJk3Nkgfzog9QdvrdX2g5ztkRHTWW7b34jetVxFL5": 61500,
     "8YZgDGQjnJGXtkCJurwJzbr2mKeKyX96gmMwoujyj7TH": 4100,
-    "8YaC4aTNRgwstsPxRrxWMDy6m6Ksy4nT9xwVuyb8mdmx": 8240,
     "8YfGrmDqu96gHdV5e8fDWdnBwT3qbzpVNseWbTX8EBM1": 10000,
-    "8YfS6PKV9DA4kYTUnds5aHmfLfLx37omcBJCQehE3WR6": 49400,
+    "8YfS6PKV9DA4kYTUnds5aHmfLfLx37omcBJCQehE3WR6": 50400,
     "8Ym9gMmpHpKSFoVpz6fbGkViR952yQ8N7VapyabaLg6R": 5000,
     "8YuxtGYrqKugNFJ6UdH2N3FxfhEKk5h4XFuvd1ZKRfxV": 1000,
     "8YveifZ3yTEC9WpgeLXUa1CpfXXVaiqZEnQ6Ds3v2DKm": 2000,
@@ -223497,7 +228225,6 @@
     "8ZTAwxDfgkN51NdQyhhKTNNpA3MbWdk83szVprW1fQNT": 800,
     "8ZTjzx88k5KaJHW91KjxDKhRzjhqZWGpA7HqZEYDfXWt": 3000,
     "8ZUp3mYL4b8BLd4sJjWm9rUbKqEz1TarXifDffwQW5kK": 5000,
-    "8Ze5DTLoE2GY7UsLB2YvpMFGHrLRc1qDVuDTb2hQhgya": 1900,
     "8ZgBK6qQjDPmywFFE8Lrq9ezuTe1AgdpTnZw3dexQwyw": 3900,
     "8ZgXUi3H2nYEHSSVUwrBjBKM2Gjov2kALCekeqgiG8of": 6100,
     "8ZiA3Qdz1T6MBmusN73giKGyqp82DPMCR5LMnDGLWrea": 20400,
@@ -223515,7 +228242,7 @@
     "8a5oLaQFP6pSAf5RQhNyG5v5EiRzYkhycH1jU3qt3kNp": 12000,
     "8aAZSpJAWG9MDt4BHbYtoKGpasmQvuqkkuYE5hoT3x8Z": 100,
     "8aE63egVXbRvRQPLStUaKSeWN3LnsjwU82mvfqYrqXeG": 5000,
-    "8aHd8hAuQYvT75XPZNadqzVD1eocd7qp2JLm35m75aFC": 13500,
+    "8aHd8hAuQYvT75XPZNadqzVD1eocd7qp2JLm35m75aFC": 19000,
     "8aJPAjqKJ7eXCiMUzrtxwhWDZatEViq1qvGD2NP9cYTo": 35400,
     "8aKAtQuXXrzsa8TGnPLnqsvnSETupQrDj49yrwnb5NiX": 968,
     "8aQa82DW2CCkf5TLrf28TmT9YHohSJ33MXqpfAJTdbhJ": 200,
@@ -223526,13 +228253,15 @@
     "8adydgVfRUT5K1s8sxe2t1Wyr3HDZZ4wM1JRnmSXFF4p": 832,
     "8aePZAkRmktwNA4pgGe256aVUwuGwqRUyFb9HHZr3uv5": 500,
     "8afzMrpvFfjpPHSJc3tx33hNSTVnf3jJ7SNYWZ6kRgPy": 5000,
-    "8akKFRNTjpZLZXCJ4JTBMBhXtk5tmZdWsXsz9Tbg4Dt9": 34600,
+    "8akKFRNTjpZLZXCJ4JTBMBhXtk5tmZdWsXsz9Tbg4Dt9": 31600,
     "8amRCDsuXHLhKqfa3YzwSeP4QqfmcZA4tRANkZ1T2G6p": 5000,
     "8anLMa5rrDC2hRVYFdUtcB1VB2Y9BvAXdTkkeas1UAQ1": 16200,
     "8anNA8xAvECeHaxxPw2yf52F9iFRbDjWht1fAGzxvJ6C": 10000,
-    "8apTjmJFHHrnv1uNcUE5iY2FvrZmz98qL85YVcXNVyWR": 49800,
+    "8apTjmJFHHrnv1uNcUE5iY2FvrZmz98qL85YVcXNVyWR": 56300,
     "8apqDcqEwZNN46zMH9a71XSRW7ShQqHH9vWqQHTJED8D": 900,
     "8augmpMoonHbT2XCsLFR8kzgZifoTMgUwEUvsZ2HuNUN": 5023,
+    "8aurDSceBZKxrGEcEHzznz9kMB4wjcpMzVcUaJ12oGWk": 30000,
+    "8avF9t6frkzLXHPx3S6a7Lk3ZHTqs87Npv7afaJdQhL1": 9000,
     "8avcAeqTvVQj6CSqDKEnzJgz4AzyJuopCyDgoyNRJhXE": 2118,
     "8awWAT974w8Dd9VPjrNYnELQYc3qN6kxkTZrYhyqmgPb": 300,
     "8b5skjmd3M3Co9o8CGSrqz6paGkJUxxMJaYfjrURV3zy": 60000,
@@ -223550,7 +228279,7 @@
     "8bi8V1BK3Joq3nNtzTsS9QsZ9D39hJhNPDmXGMQs6Ty4": 10000,
     "8bi8V1BK3Joq3nNtzTxS9QsZ9D39hJhNPDmXGMQs6Ty4": 249226,
     "8bi8V1BK3joq3nNzTx59QsZ9D39hjhNPDmXGMQs6Ty4": 66500,
-    "8biDJk8WtCb9QjmGFkdtoRfA7p6KLsutBtdfnEBGvSw8": 258400,
+    "8biDJk8WtCb9QjmGFkdtoRfA7p6KLsutBtdfnEBGvSw8": 2840,
     "8bmNqpVoeC5ggRKtFZN4Yb2EX7voceRcZYoU4EdNTbnJ": 35000,
     "8bmxYEXhXBZ7WvZC9iTY11N6onQUQSX2Cyxj7MTGWSQC": 1000,
     "8bnfR2utuSnq7vgBCsN1VQTr2cnkBVqx5dAWiCGEJeF": 10000,
@@ -223562,6 +228291,7 @@
     "8c3EuFDarmQiVhgG8GNMkqauQrWngq5HEJ1j5ZBABhj": 111,
     "8cByMndaCW6JiZnap8gk72XXgDegyFdPTWY38hv7agMp": 2500,
     "8cDLDhuHuNxcKhKJ1qvYhJCJTjp48L4vYDhhhFoWwfEJ": 2000,
+    "8cGmQDFr1Q13UWiHpJ8WUg7DCk6WF84etZSpRwGeU3ve": 80000,
     "8cJAtW8vVSivbUwgTmLZe2WnxhuXAnJ1iKaAdkNjGury": 1000,
     "8cLiGo93d7qB2wc28a8MAL14GMcekVZ3RrKoV32YqxFD": 1000,
     "8cQJSwz1euoJniuTMd9A2abYpjUfecntayyCKfUL6QsP": 5000,
@@ -223574,11 +228304,13 @@
     "8cWpfCmaeFpEW5GNYm9teVFDxmbQpbHeyiS4StUXnVTb": 1000,
     "8cX5MbofaRHkoKxmUQymR5Eb9zD6m8G2GyoVekKm4d23": 4764,
     "8cX92XYbFMTZNxxR5craD6JSBcEhYkMXEdd53oFWLeeK": 5000,
+    "8cZZyEptsAJdu4ooMmUrEN2se31wTe4P1kNKwCLqPP7h": 10780,
     "8caGAyLWpy3Yh86cyFm9xn4VAf7QAe3ZsM5svfA16xbv": 200,
     "8cbGHtFpyRWeTMQP6JqG98rnQj2LVwLSw9FSt5VCgLxZ": 2000,
     "8cdbYEEZm4847tBUTtyRUVXQuqoBg81hjuKwYL9uieNU": 1000,
     "8ceZADQoLfNnFgToqugZecFaHRzpsKiCwJxyUPhgACxQ": 900,
-    "8cfuSrZC9YvKKp5SD4sA125ceDNrK66fGyL9nccvU36o": 152063,
+    "8cfuSrZC9YvKKp5SD4sA125ceDNrK66fGiL9nccvU36o": 48000,
+    "8cfuSrZC9YvKKp5SD4sA125ceDNrK66fGyL9nccvU36o": 37563,
     "8cg1NGshZ8hU8eTB7dqaice7aa87kyb8im7FwyHJfb2b": 3000,
     "8chQ7hdaqDfC77gTyMDtm1RQgsXQsq9oVwZMScLiyuvh": 100,
     "8ckMd6JUdw7qpR7TKPpyxmgcQ2MQWb9x4bMy7bJz1g4W": 92000,
@@ -223586,34 +228318,36 @@
     "8cvZUUyFCgpQ6f2YsYnzDfuvxDk725swDsBBd5pHeyMd": 1000,
     "8cyDayGAAyXF8Pn7dWaT1SrFW32LksKNnRm7umh2EY8Q": 7000,
     "8cyWnzUc4rhXpuHxkyzPB89iLtqtFLQbJDbGWnW6VUEz": 30000,
-    "8d2sWLJXUrF6uwWJyCDdWzug4Gzn3SpZfc3jVUjrEdaZ": 136080,
+    "8d2sWLJXUrF6uwWJyCDdWzug4Gzn3SpZfc3jVUjrEdaZ": 185380,
     "8d8ChRRgck8hJ66DGcbFin5D9PyKf4FrGYQoutpMm3hD": 20000,
-    "8d8QKbzqXiNuNJkJfzCzAMiJd97kZQreJQSVEtKVa7Af": 1258650,
+    "8d8QKbzqXiNuNJkJfzCzAMiJd97kZQreJQSVEtKVa7Af": 1402460,
     "8dBHumn9ZFc6GTBMFuqidb5Pj59ZuDefGxSEvP9rSRdW": 11004,
-    "8dBbX4vY59LUvzwH7RU55eTUC2t58ToXS3xDZ8o6efjG": 9100,
+    "8dBbX4vY59LUvzwH7RU55eTUC2t58ToXS3xDZ8o6efjG": 14100,
     "8dBg4cUCtJoj9ZwmG8SxHkG6qhYdoqNkwrg8kRVFitsu": 4000,
     "8dFi2AmFuTVUxPn59VGGCAsM7YpGJsqNZYqvNLv28Zmo": 12400,
     "8dPPHCMgJPQZ46jSNxVBgMyEfjLJprzs9c93RrjFDSvd": 33700,
-    "8dPT6avE8RsyMN6Vbc8NFxaV6XxJbxHTivPE3aXUciyq": 17476,
+    "8dPT6avE8RsyMN6Vbc8NFxaV6XxJbxHTivPE3aXUciyq": 89476,
     "8dQT5nvwhSNh8AuzG3xcp1BcbY4MTSft4N2vvj2ZHVUg": 5000,
     "8dTZTGAtZ8XMJg8pTfsKg1ZahC51qrjZDHACqqVXm4kh": 80200,
     "8dXoJVt67dgYnCZeF7avB8PPjBGdK8UvgKUWwX3a1mom": 12200,
     "8dYxguJ1M6oiweheZmNg8MYiht4JBnzrX7G8mA9NaD2q": 15000,
+    "8dcHBYgHgH2gSUL6mKe7SMX2RZHGAZvkEM91GQ5z3PQY": 99436,
     "8dci3oSYL9an2nxQ1SsdJjXGjx6nAFFHrgxh3DmsGteb": 29000,
     "8dewrKfPcKk66Kc1bGNBp5tug2TwDqwkFvbxfu2rC1uo": 5600,
     "8df1nvUsArvitxBYthYfqvakrGxMrAr73tBvScjcusuM": 1000,
     "8dpXdciJBaQvYDADvi14V2d9ifUhWErpiGnukC68YMUg": 390798,
-    "8dspDJcZebcW9KUDk7hmg16HFVcNKKGsDgFtjJNNeC9U": 29001,
-    "8dudcJVVhc5sd4vtyoLfTLPRGvfmoj96eFH1CoQnnWQg": 102500,
+    "8dspDJcZebcW9KUDk7hmg16HFVcNKKGsDgFtjJNNeC9U": 23918,
+    "8dudcJVVhc5sd4vtyoLfTLPRGvfmoj96eFH1CoQnnWQg": 161500,
     "8dxocur7V651YZv44fef4fkQTNWnnx4a8NEajZrxviSB": 100,
     "8dyVW3M5md3zwJV2H4vv84ZoyrBWLaCYb9QssFtZVr49": 2500,
     "8dzediDEgXTcYqUjsYGQSEzmWX4xPuoTsEszwT915FYN": 11320,
     "8e4TbjhTtkrDk1Tqxqp3DMLNeDZ2JdN9vnn4CMtcHUE": 4200,
     "8e7GJGKakHkmtWEa16giAwzVTgxyLGgghUffcGxhTxKP": 1360,
     "8eFdxeg5oKG6DAW7R1qgFRekzpCeVLTJ8eKGmV9q8Dx1": 5000,
-    "8eFwQMrpo2t7nwRb9GP7b2dLcH4bM3nm8FrWRh8vALsG": 255160,
+    "8eFwQMrpo2t7nwRb9GP7b2dLcH4bM3nm8FrWRh8vALsG": 225160,
     "8eGjudG7vw4uPrfpwqAGbszyKsbZ3bDKsTRfYwwXcGzK": 10000,
-    "8eNUYkakEwQGbAxSgEJUc4teEBKa2bUJ4jnCMGrEFAU8": 433025,
+    "8eKmTFvpDjsr1u3Zozk2chYCnVGdKdP7SBLZJZhr5CRL": 5000,
+    "8eNUYkakEwQGbAxSgEJUc4teEBKa2bUJ4jnCMGrEFAU8": 839305,
     "8eZagvB4vjACr4xPG4g9aXn7bpqW6zSdDxCjeRetrHZg": 100,
     "8eZhcgwxwF1spbaegdfv5v2QmvP7CuhHr3Sg9WGx49RA": 20000,
     "8ef8YJm421ZvWckVgzCWR1qp24TGszT3iGjnQ4PwZ31m": 1011,
@@ -223650,6 +228384,7 @@
     "8gofUid2cA6F9UR4YNqZ1ybdTqpA7oR3Meeqq8TdAzoS": 2500,
     "8gtksCPdTzmMaTWckJF6V6A2vNZACspktKRBosGaL6Nm": 5000,
     "8gtrWTAP6NruNFkJV3S3Pkn7qg6shckoSNxH9F67cNr5": 6000,
+    "8guVuSfp3cwb5m7K7ryVT1Q5TTJAjUSDLeDrATUgdks5": 4900,
     "8gxQRJDxsqauM6BWF5YyjVX4C9cnyLKXGsErajiW2EAm": 8989,
     "8gyu4eBsFTvq1AR9k2qCnWgwLQjZ6cBgyvxJiUY16MZt": 10000,
     "8h1ArkxePdwLRrdPRCmZ6hQdSxXEmHfHDJx1Wzut8swG": 500,
@@ -223675,7 +228410,7 @@
     "8iGubjTbzcMeGdVqYb1zYHxoZSPrLqwoK7VvCxtsxstW": 50300,
     "8iLjrzJWaH11Cv79FH2qBPuJPb2zemHewgG9Uq9VW6My": 4200,
     "8iM9hrcFQUJKQmEPmAdTsbrKYhTn5Qd32CbjktPA546W": 5000,
-    "8iamTBMu7ejyRQhftZiwvPV9BsnihRTXHon1KNQcqxNm": 177500,
+    "8iamTBMu7ejyRQhftZiwvPV9BsnihRTXHon1KNQcqxNm": 201500,
     "8ibvge5y5UL6tVt5Jg4ytidybYAj3UYzz9Lo9QXHapZu": 409593,
     "8ifB2SixDLvvMBEHrtnv3aYHMZ9f5Y3Z92oLtfBqzec6": 10000,
     "8ifx2WDXMf7zkWSnjqGFAcf34ivCo8ur7LtJj77S2xG8": 20000,
@@ -223687,10 +228422,11 @@
     "8isPeNZi5YCG2NcrSsipYfJb1DGyBDUM39Q4jA9vp2NE": 2000,
     "8iwnuosgqQ8hQZht4yGUJW7P6t14i2jXXBqozKRvyNUR": 1016,
     "8j1R9icYS8TYV7sJJo7EpcVyUQZnknHrTizk1EydP8vZ": 894,
+    "8j1vKd9WC38dq7gMq2UukpD2uGGLaYxwQKzgtNscuMY": 500,
     "8j4xWfag36LWvu52i9YnAfq71sSUBH8HZGqjcYBGguMW": 125594,
     "8j5h84H3Cq6AfGKVQizcf7RzxtJbGnCPiTYPqwNq7FvP": 9200,
     "8jFPv1BoMqzqG1mCj9NxQnQd4YqTBqgUgBRFEGcnSyJY": 1000,
-    "8jGGdm7DC9c6xrHGWkGJu3YHHCoDSQyMjsD6doFjzgCC": 88800,
+    "8jGGdm7DC9c6xrHGWkGJu3YHHCoDSQyMjsD6doFjzgCC": 205800,
     "8jGVSSBQSrgi6SCzvwM5tbnZDPVUpD2GabXLXbcoNBAd": 100,
     "8jMXxMn4bGYZkv3fj5Nt7UC1EvgDLtyaG5w8kyWkroA": 12300,
     "8jR96Cmunr3MSpbYoyXGroE9pachKdQ3WEj1mP4iswso": 1000,
@@ -223721,17 +228457,17 @@
     "8kqyyRpkfH14xzarq9ESBF8SEgf2Z6oq6981KmXX4ppJ": 100,
     "8krwTnCGAhNRByvSHLBGBqjXCEfhDi684i4uVt4kVtby": 5000,
     "8kw9FtpZ89iRKN9r5seoaYU3sbDWeJ4VX7dvArk2B24S": 10000,
-    "8kwthe4Zq9BoEAF5j3GJLDXJH2Cjw7WtX7VT73ae2cJt": 43500,
+    "8kwthe4Zq9BoEAF5j3GJLDXJH2Cjw7WtX7VT73ae2cJt": 34544,
     "8kzGySqekfp7u7tVdte6QMZ8zWrNPVGBdmvCGvPtXSp": 5000,
     "8kzGySqekfp7u7tVdte6QMZ8zWrNpVGBdmvCGvPtXSp": 111900,
     "8mBH1nZPQ11V9oKvScGam9jtW7XAZptXwamSWMLP4r3v": 30000,
     "8mC2NAdxppnUZvEYZuscSUk8bW7rh7ZBNrXrUbRyUsTb": 10000,
     "8mDBPyVbRTHF4d9us4xTCaX2qmoBZoEmH49izcjZgHFP": 5800,
     "8mGpF8ZYbcykKNVYotEWcznk1rdvuJhHTQhmyFvPHKBA": 40100,
-    "8mJ8bR4wv4oeMiZ66TA7Qq7X2sCZwDvSMLKrcbhAczAB": 17029,
+    "8mJ8bR4wv4oeMiZ66TA7Qq7X2sCZwDvSMLKrcbhAczAB": 27029,
     "8mNNbcPUVwzW1dXFjFg7PfBub3hPPSnErXkxpLMSdMxn": 6000,
     "8mVnBPybgZWjvvrLUGhveNNjWfnYKaZqrVRBVCz7zbPg": 150000,
-    "8mX4HJAQLs774w3gNv82aDMUEiWVJ5Ej8KJgmSZ6EPym": 53300,
+    "8mX4HJAQLs774w3gNv82aDMUEiWVJ5Ej8KJgmSZ6EPym": 68000,
     "8mb3wZdrNmwChm6orSyAhef2wtsyWwSXzQG6Loci7nVp": 9000,
     "8mcbWHQLapXM7RfH9ox9KMi8cXseqA5DL7Kko7wskDZq": 1800,
     "8mdUfvAE2i95XSdfQyPfLa9GP5qr2HcRcjTqiuiGCRJZ": 102,
@@ -223739,11 +228475,12 @@
     "8mjgM9TBZz91vBD9ZtLnoZegjFMGQRKHSjtmi99gF71G": 76500,
     "8mkGuLZE6c7Yrz9Tnma4fjjEqXg2ymMGTKkGHxWcEr9Z": 3000,
     "8mtVbCEmXnq4RQyNWE5dsanY1cmkfkThPbC5ZQnJRv4Y": 5000,
-    "8mvHva98LhDkMdkcDKgU9kg7oPyhDu9dsfg4pvNuBCk5": 800400,
+    "8mvHva98LhDkMdkcDKgU9kg7oPyhDu9dsfg4pvNuBCk5": 769000,
     "8my84VNiVSK2rEds2CtXvRm3vF5Bz1o2cHPMCvKDmxsZ": 488134,
     "8n43CatqQo6w3bCFyd12DHqWQhSpt87pkau3JtxhseRb": 5600,
     "8n49gnKJW2QBuNAdSeJ8yVrPxr2kkcqAPgCD483xLsLV": 1000,
     "8n9HxMY21RWkymVWSkWPaeduc5yNqYycq1F8SZHEpEGE": 31770,
+    "8nBDXpAVPBH8cfxTUa4yxgnVHb9bFCXabpk52nrpPnb9": 5000,
     "8nJ9f2mu7QPfYPPnu88ksB46U8kdB2nWYMDCMavbKnjf": 26800,
     "8nLYCRZtTSbpgHHtg8hMH8wLVwRUV4J6fErNrVGecxjJ": 56600,
     "8nPiYqqRFELqXxQQwEUmrdJJMwAZAzrEXkJXiBPSrsGQ": 43000,
@@ -223769,14 +228506,13 @@
     "8o7yfgdTH2jahNBdGANmC4F22Ehj4msHct3ivQuf1j1e": 1051,
     "8o9RyndKD784o6NEWw8jPDZ9DzL66uHiaPgda2ocJe1e": 1200,
     "8oAXamd4zKyreJoZjrXV52CYdg1XVvqh6LTxEJFkjtww": 6200,
-    "8oBpm2fPE7rB4GDDzN36kuQj1xw9dLf4h2TMtP4Em8hU": 10000,
+    "8oBpm2fPE7rB4GDDzN36kuQj1xw9dLf4h2TMtP4Em8hU": 45000,
     "8oJckNir9AYN2yReSt8JJcwQyYrZ8bhmSq9VFgisrZx5": 1000,
-    "8oM3EHxtfEWVhkNVTFbc9tZgjFibG5DzHW52ji3XaZHd": 34700,
+    "8oM3EHxtfEWVhkNVTFbc9tZgjFibG5DzHW52ji3XaZHd": 38700,
     "8oQGDXD8aFms75dE2WCm4aUt7VD3Nx6D7nezHaxGS3QG": 5000,
     "8oRMeP5cPWsePbyrEfatQ1J7XMSFDkDfhmgNY9ikS9rm": 5000,
     "8oU2mit2vceSzy3pBu6XTKzQrnrQzBoNEJ5NXfkpsjPX": 20000,
-    "8oUmkU8iZSXWVtfXPapwU5pHaMpoTyLmHM8h4XpBM9yq": 23200,
-    "8oVPf1ofYhAEgfeZAVVgdnLgZFr5tZJGfuYahjVpxtk7": 466700,
+    "8oVPf1ofYhAEgfeZAVVgdnLgZFr5tZJGfuYahjVpxtk7": 455920,
     "8oa7BS8rsTzBg3xz1zosLqYzeY9qWj7XwkBuR6uriwVn": 393589,
     "8oaqEgfgZT1WC5Vp59WXzcbsyHSELWcS71JATYdB6zcB": 45000,
     "8oceAkJnspNdTgXpnJEdy1qcKiseLsFDeT8TTNBgPY4v": 400,
@@ -223785,7 +228521,7 @@
     "8oik3ZQXW53rgWbzTzqyKBnDyahaLBKxs7DTocJMv1X6": 5000,
     "8onMYczhaRxPxf8EA7RBXdXR8uhAuQXnjQmTPsb5UKD2": 40000,
     "8orbBUqggZ93fwbQoNKfKfig8QChE52DuCNtQvQrr7J3": 15000,
-    "8osQSVStXp4SJfEsygRxHhkDVi5XokqS7yZMxQb1hdGh": 108496,
+    "8osQSVStXp4SJfEsygRxHhkDVi5XokqS7yZMxQb1hdGh": 97996,
     "8otofxHrBR15TTDewAuxKYx1oxGDaLtko9Gc46yT1oHY": 1100,
     "8oufW5MCvtMK1agpG4EiycNTWM1FKbRR79hSshjsiyGk": 10000,
     "8owfFQS52aX7wGXAwGczx8UyaXYmg75msxduZT2cUQPh": 5000,
@@ -223799,14 +228535,12 @@
     "8pFwBZSdaKcVi8H1NvadwQfaX9KZiECAo63SJqgKmbyW": 4500,
     "8pGLxLT85gcg36ZGCxe4UjYaGK7BmhPm1P8TMthGsYVr": 378190,
     "8pHonvd41vr1UatA3z1JjNawB1soVPg1kFLD2KpN6qqy": 11000,
-    "8pL6CZ6jcnYejG5pkoeUj3ocFCJczesN9YKunfyN3d6t": 77090,
+    "8pL6CZ6jcnYejG5pkoeUj3ocFCJczesN9YKunfyN3d6t": 25090,
     "8pMNRXnTXe5qZjQVi94tfTb9nV1fqjJy79A8XEKEMgc5": 1011,
     "8pNy1o5fAUJX5ercM5HYfhS3HdYFFhGoziRWAr4sAd7s": 30630,
     "8pRjVCAFKVaSWY1okUSK9iU9x2mVKv3vkMUy2zEdFeDg": 2000,
     "8pY2qpzc9Q1dQZQLU33PhecSCzzigiReJ58zo6nXC2Pj": 100,
     "8pYpBZjvMUvLXv7yxw9PN1uHGvHap7NzP7pBVPCRFhtj": 2000,
-    "8pbotuCTcZPji56sxreWyNAUCBs9M4xx9gosM75d42Td": 30000,
-    "8pcVqmAcWPuRfLjbbckfNQ7MsjSRhDPB66rfwm3WRFHN": 23200,
     "8pdHzL1DJaMpP96jJbBQfJ29dPjzzpBdjPm37izMFVYM": 50000,
     "8peWMMn8SQBUqYT7vBJn88FaiXwZfsizQz3PVJM4aCPk": 5000,
     "8pmHyXLkSz6qHkByHNbFfovaYx38Uhz79inK9Lw6Bkat": 100,
@@ -223832,23 +228566,23 @@
     "8qhTnJ7QmLoJ1M94KJHGFjbQ2UQFNkkB7AWme4Xg7Vj1": 10000,
     "8qhXiHypVa8n3xgETd5cPXjVJub3RRdp9S1TWMx34CxR": 1068,
     "8qhebZuhkhz6qtE2Dq4gWfv8dmXCJQFb21dpYYqJTzF4": 12000,
-    "8qiwvLZYYTQFtsguSfXF9uRebhjv76UUjTipCDZMx2YL": 4272,
     "8qp449jyim9YitHRA5Qx7J3MFufpdzKCZfZnuxdznYrN": 21180,
     "8qrJxSeur5qJQ5ca63Yy7rGHmXJcCjQBpT28YCdrEGBD": 10000,
-    "8qsegsh6TLCB67BgZu6v33s4Kou3csmGRmBGUE5GM3Nf": 5000,
+    "8qsegsh6TLCB67BgZu6v33s4Kou3csmGRmBGUE5GM3Nf": 15680,
     "8qwokq9H89q1Gheq9qiQEzvBZtWDJKCWqZ3SuBECZB6A": 50000,
     "8qz6eR5PaCqebJCCTJfZGbVwS9WawjKGd9bmaYay4rU5": 600,
     "8r26LTzC5A9bewgVKR26NFqipaZxRQbJ923eCgsGqdTh": 715178,
     "8r4NvVjLsB6szKdbQMEAw9f5Fzv3Kco7uffZyxk6dsvE": 5000,
     "8r8Fb6vsedSsY3MiMy4eh2TdacqvzFZQ8aTvxAw2ceWd": 18200,
     "8r9Cz3nwaExspJeDC6dvFHAZPYn1UnxLKffQNaYrtZbY": 10114,
-    "8rBY1B6LTdj2PDU3EyLQEVpLb1wMqdCrFa7QkHUazGbG": 5000,
-    "8rCWGieP6BKmnDpuYg8DqyzjEwiweoV7YYks47opxKvy": 15500,
+    "8rBY1B6LTdj2PDU3EyLQEVpLb1wMqdCrFa7QkHUazGbG": 5001,
+    "8rCWGieP6BKmnDpuYg8DqyzjEwiweoV7YYks47opxKvy": 12501,
+    "8rJhumpZ1wPfep4gKfp98ZGJ2d5CFSCfD7QZFPvP9Scv": 25000,
     "8rMFv8C9RHiExe62Qz2j7Tw7krvM3EihCC4eXhBJh7ry": 700,
     "8rTkPHrxWJgxuUjCWtbDkgzHFdJcADfKdCPQ3WeRjhUs": 15000,
     "8rdVKABABwT8mDCqKCvJa6Gyuf5Y9MUwjFxjRaSsmrbq": 1000,
     "8reR2L6qRr4HmkDUJEdW2SzmE8M5cYvF4o5nU2bwCuzp": 5000,
-    "8rhqWQEbaFE1wnidZAFHzLazDaiPwmiwU27n5hJpUtnG": 2000,
+    "8rhqWQEbaFE1wnidZAFHzLazDaiPwmiwU27n5hJpUtnG": 78000,
     "8rnUZDabzzbMEYLyNSzkjeQ5ad5y347eVX7BayYJf1ir": 46500,
     "8rr598ZfdcCRMqVRcYUHadYAgQKEyTjXxtfJnFyJVYiV": 33300,
     "8rr598ZfdcCrMqVRcYUHadYAgQKEyTjXxtfJnFyJVYiV": 1754,
@@ -223865,8 +228599,8 @@
     "8sd2ZL6FS7sydg3dW5DS8DcC4uJdZkf8GZ9NLuVALh1o": 100,
     "8sf5in91eyhBzMwQVSfw2cNves7tJN5Q9ShPe7dH3RzN": 140000,
     "8shEHHESxakdefv6WyF9N661pHJNFSj5etWLMEtBHdcE": 3600,
-    "8sxrGm3zigfrMDX5qsMDnk15owhwKhNFTjThXvmk1xup": 262000,
-    "8sy2gTsLWN4CVkAGSi9nVAiKZAQVE5ZCRZ1sRazpZ588": 19468,
+    "8sxrGm3zigfrMDX5qsMDnk15owhwKhNFTjThXvmk1xup": 216000,
+    "8sy2gTsLWN4CVkAGSi9nVAiKZAQVE5ZCRZ1sRazpZ588": 30228,
     "8t8THRmDRGyXNGCtfGBbeYoFM3Fq85aTgyGkGoeNpPNJ": 1000,
     "8t99cieZ6uxVKjkyE5QATNs4tW3q4HuBfhwG6RcFBzy8": 4900,
     "8tC5gxS4HpGPnrFjK2v2UXCpRkDBguF6i854qWB6ytMa": 2000,
@@ -223876,15 +228610,17 @@
     "8tPg7oxrLqpvQEwSRm2JDE7EUpSBxS9vm954QdejpNn9": 2106161,
     "8tQtd4K8VBKvLnXqj5ETbsomrRN1Zs5MLsdyVWS7Bzat": 10000,
     "8tWAq64kSZNJwowVXfqhWLFuCTtUMQpTEJA4uxnvQA1s": 62200,
-    "8tWcVA53q6kR9uXHP4EdMLugwGif3nwtReCtuNbvZry": 254331,
+    "8tWcVA53q6kR9uXHP4EdMLugwGif3nwtReCtuNbvZry": 326671,
     "8tY1sWbd6Mnp3CntazhkBZFrUAuJUfEdGYcd5uSKCu3N": 20000,
     "8tZJFsWR8yWqgHSCJig62dJBCf3FVoL3PxQtjAMV7cCF": 4500,
     "8tbM7LN3btpkw5QmCSHsULjHdoDKPL3WyBxEF99GicqC": 400,
+    "8tbow8YsRRk1JrZZirpqTscp5GS2BW5hUm6YHXFFNvSh": 2000,
     "8tgBdBYM3yHuzY9YbbZDA6Ap8e11AiUdTgPcRm6HimGB": 1000,
     "8tjn37BH4vVUQg9Kvy2vCa6Kjy3Fjmcz1YmbnYzEBKBe": 3000,
     "8tjtgA2KzsyNsf95ZGEGKBC7FC5JP33C1SyHCEpU48Ym": 188500,
     "8tkAUXzoGadrT9WZomMtMeGhaNPyg1XsMWuygwMPCA2L": 2000,
     "8tsjjfkrfWxfCnn7EFuCVASNmEtoAuSZuVHEevTotGMH": 10000,
+    "8ttqCJQKvTE7UaKmAazNtBPXaAbqo387tB1R8E43Tsni": 10000,
     "8tx1N5eyNF4B2P3roqUggci4BELeJbcAsaGQExQ5vubP": 3000,
     "8txegvAMmQupLMDdxMrF4ZmMKrs5dQTQWhtp4W94T3rW": 1600,
     "8u3MQmsxR8nnpSwjkKgTz5zJjj2dXkiNYzSA3qew6hxi": 100,
@@ -223893,7 +228629,7 @@
     "8uH7JUoyWESb6xDGe75wJ6S3L68rm7qbBCsAWC4moDXw": 102000,
     "8uJaZGLBkqKyaDgVKwZBkZbtcsnfNkKNeyBTocMbKBzq": 1000,
     "8uJfYTyjgBaaqpa5GmjCtQdeTSsWDCLQ69YASKeGDxq9": 5055,
-    "8uJpzTEDjR7AUKYSBaYyqMBgJZmJZah5PbfNyS93Ad3Q": 9000,
+    "8uJpzTEDjR7AUKYSBaYyqMBgJZmJZah5PbfNyS93Ad3Q": 6000,
     "8uPf7Rj4zEvq2csrkYKMiooGZHuE9kkdy7HBHrjXmvdE": 5035,
     "8uRQT3L3cxa8X6W21z5Mv3AFESJ8mdSVNPQCVgW1yPUZ": 10000,
     "8uSkmXpJh6g1UxGQtNiq2CnXMKHQUR4HcC4LrEPQqN1q": 101600,
@@ -223913,12 +228649,12 @@
     "8uuyNpCL5iZTcV9QJVtPEnk96VGXTxAxbzMAo4bSeZtY": 1000,
     "8uvvcZHJURseaZECUJrvr4HXFcwZx7g1rA7A4ukcnPAh": 800,
     "8uxGLpYsBuKpevEuedP7HQkM5NGywpFBoBtZzVhL3Pet": 2000,
-    "8v2ECShqTn9bQP6w4QvNSVZWFFF9fZQM5imwH9govdhS": 15000,
+    "8v2ECShqTn9bQP6w4QvNSVZWFFF9fZQM5imwH9govdhS": 11000,
     "8v2gXz5esKKTJYZANRVFA5ugUxaSqCtqmGSwDJceTkJa": 4900,
     "8v5T11Y5cMRkfzkPNQb84oN48mXnTVuU5AKrt4x66uqp": 9100,
     "8vFHD45dJcwqGsH1ZvqYmAYPqGmeuhE8SvhVH9M3B9Ye": 10000,
     "8vH9jZ7fShntatnCHHXCiNkBzV5uXg7MogxWpPFg9AVq": 380492,
-    "8vRXz62P5wPp9cJ5495bagEiZMvvvzG5RP7crfX6evmy": 107400,
+    "8vRXz62P5wPp9cJ5495bagEiZMvvvzG5RP7crfX6evmy": 67400,
     "8vRjuSdV5HX8KERrDXsvs7x2oRQLmHFZck6kDYCcVHsT": 100,
     "8vS1qMTmWT9Hs3W1YyN91HqowSu9NDEA8vnENwX6ssKA": 100,
     "8vSBtv7tuKCASYkA4UjRvrMLKAdMx2Vhg9tXVzttXQuU": 2120,
@@ -223933,8 +228669,9 @@
     "8vwuv7J2dJeKC95pkNaz34uB1LfwBSartPYpP1msM1VB": 8000,
     "8w7Y4GjhWuSYawjLsXUgz8N8jgGyqpNEccYZExERjtG8": 3000,
     "8w7jczMQiTVpS8DQBeiHEmeYqGdLaX4jyVtYjRT13b1u": 1800,
-    "8w9v6z5tkHVtTpJpiCLopSP6VALgo4m278P1gWfmVsfe": 126800,
+    "8w9v6z5tkHVtTpJpiCLopSP6VALgo4m278P1gWfmVsfe": 114800,
     "8wFzydtUqWeoTJdB533mV31tc1bA14EZD49zWgBBCAVV": 5064,
+    "8wLZa4grHiJn7FsKk9V86Hogkcwf7ViYaT2f9LZy8tLF": 1000,
     "8wR6LHu1ivXN66P4iAwnSRFY7kxYKH2byoYJfgZaG9T7": 700,
     "8wTQGRoW1qc25TYLkkoPpEWGhSRBNFic8rDytxHu7G6x": 1500,
     "8wTQGRoW1qc2STYLkkoPpEWGhSRBNfic8rDytxHu7G6x": 30156,
@@ -223942,6 +228679,7 @@
     "8wZF8RXUy9R3LCKXxHNVPPcbPcxa5pYHBJDxxHQ4oT2i": 100000,
     "8wbJsChYkd4muzfBTCDBcZF4b2CY2nS3ErjSccFhYDif": 10000,
     "8wd4sq1Tr68HDQcSUtqSgRQdAhpTJFaSmk2N2vGk5via": 10000,
+    "8werVfPiTRtA1FdvXWD7QMgherYU6w6XfbSZnEMGwzED": 10000,
     "8wg8C3cxMhrGSKvC2EiQbqoKwpaTeb2TJMuxMeVR5UEC": 33184,
     "8wgbQZEagK2HN7kQdLauqqDQ2CfCVRNcmFKLPMLo25nR": 75000,
     "8whR7wCnjTTWnFEfABsrPhEoGWQZ3S9aWdkuxSuj4i2T": 4000,
@@ -223961,6 +228699,7 @@
     "8x7aKD2Sjygt2jGUY1sWorAYbBLa9gorh1vCdkcxbmxn": 5000,
     "8x8NmErbNnqRmYRBKgMw6ACnEGdbFrNUNbnAdPbz9VUR": 1306670,
     "8xCnSLAZzivUVPbm2WtxjqHQeNzwmFoHkycEFgrnsB4i": 25100,
+    "8xFDKV68eLGYUt4NSfczH2TG5eKwguLPcRgKHvVCPoon": 50000,
     "8xHaKj5MLJJpg9SY2VaVamUUa4x42hvdqSMhQbR8QHZx": 5000,
     "8xKHqwFywkE5g27mgVzVLFavaWMnZxbNG2Fcjqz7paYs": 10000,
     "8xL8NMcTaLcLsA6MoBPp2vaKGXthcZhNfbujYtvyF5hx": 618000,
@@ -223982,7 +228721,7 @@
     "8xtUFNTfVWLVS1HUWPT49gVuGHQvxLaV4pC4Y7TiGWkP": 2314,
     "8xvJTKHPM2JL95CGiDMpeei4VuxHsYtNUa638ADSYXMx": 9700,
     "8xxBsD4CxDrXzQBM5noA6Zz3c37QF8nt1DYfxk2qQhii": 10000,
-    "8xyUYQYtsAGBjD3WXe1jcj47k46q9p97FxBtKjr6Ypom": 102000,
+    "8xyUYQYtsAGBjD3WXe1jcj47k46q9p97FxBtKjr6Ypom": 100500,
     "8y1V2kY2h4No12USYkf3ph14cZAmnaBx4CPFzqwJhRba": 2000,
     "8y2P1EiiWZvzcaLdL2sWAnmNJyQd6SWd4VQFGcATKmeM": 100,
     "8y3CGN3tgxfLeucNDGyLDi5kjCutZHf41DsEftqVU2My": 28500,
@@ -223991,27 +228730,25 @@
     "8yD6ex1a7GNyJ5fWphwSYCe8bE8WThmxgwPL2in8oNxR": 15000,
     "8yDwVC4vS82Bzoa5p26EnTxY6hvwSv1kLXcxmeUMJTbe": 60000,
     "8yLhoWvq7RftqpYtNXooAi7d3aKntvpCdhdFi5KnmZRE": 36000,
-    "8yND88Pi456uBwsi2cSchYoQUKdkLVw74ME5TmP6GpeU": 14152,
+    "8yND88Pi456uBwsi2cSchYoQUKdkLVw74ME5TmP6GpeU": 113952,
     "8yRSHAnK53rdWegirqbd7eets4Ts5oayn49MfHEQuWMX": 11044,
-    "8yXA5Pkc65zKMs1y3aZi35yYZVQ1UziPZxTr5qMDXwEY": 3391,
+    "8yXA5Pkc65zKMs1y3aZi35yYZVQ1UziPZxTr5qMDXwEY": 2391,
     "8yY1Az4WUb6dkYfJcWwVbVAagGD7uFN56Gy4jkh2DUHg": 240000,
     "8yZmHTshyKy54agEGM8TWuXFF9QAK7yFnjazxWPhLrc7": 100,
     "8yaSJDkLZkxCdDMJExobGP9qMLyG9E9AWPyrpPSpfEzi": 97510,
     "8yffYL3BQCVtJ3D8JbnEqChzkxHrRhPFEjovbZGGSPtV": 11000,
-    "8ygMRKYsGt81VmTVFHvdNSGQ9fvhwS4Bsky9tBH3zhgq": 9280,
+    "8ygMRKYsGt81VmTVFHvdNSGQ9fvhwS4Bsky9tBH3zhgq": 85490,
     "8yj5bK4jWfKuVZZMHBDmm1TWJXPbgYnyw2mzMbWpYED7": 50000,
     "8yjACawFMrBrqZ6HB5eMxfBD9oGayD11mrMpEA1wA83v": 195656,
     "8ykAPsfaeM19qRTTWrXKMphtEeXvdvF47FA9XfACYcHV": 40000,
     "8ykFGUMPkpRvGWrJx1t8tWPw2rasUX5Co13Uy9ernN3a": 5000,
     "8ypc2CJHwhCuPVnaM5b1RWok2jwqUBc1M6Rou2MKtQyC": 19500,
     "8yquTK6Kzt2hKwgADkP3MRva4rR5U7tUgaCP9xHrfmM2": 18184,
-    "8yreXtpiFuNRjdp2zbxm9Z1ANEZy9KjZLt6BhmnDjV7w": 55953,
+    "8yreXtpiFuNRjdp2zbxm9Z1ANEZy9KjZLt6BhmnDjV7w": 15053,
     "8ysx7yQe47ffx379Evv3R6Qys86ekmVxwYTiVTqWq73e": 41006,
-    "8z6ApifAU5FdhpKffjaQPL9oaH1Y3Mz47v4Ux6ihMCoG": 312000,
     "8z72FCGyrEBSk5EDcRumQTVd2r8Jp3HAz57UtraRCKH8": 5000,
     "8zHHttVgAqhpatvTMpoowxSaYVgWHqyDaJY1mqYqjD43": 120,
     "8zJ8s5RxP7MSTGoS81ZE25HAbMvRijfg5S1KX9pUc6vc": 100,
-    "8zJvnBT7RH2bXjTKid41UGmvx1nxKJAaCch5UX6eSu5d": 494500,
     "8zJvnBT7RH2bXjTkid41UGmvx1nxKJAaCch5UX6eSu5d": 36000,
     "8zJvnBT7RH2bxjTKid41UGmvx1nxKJAaCch5UX6eSu5d": 10000,
     "8zLJh9vhzbCxPfMYPRM76Twfp9RzZgJnZNF5iYhkUxjW": 100,
@@ -224024,7 +228761,7 @@
     "8zckQGuLWA6CpxVshsY5jyTfjfhbbufF1xqD1euPPRXG": 500,
     "8zepNa71X3vQhPk149VhRVMaaANxBQ1G2NkdrUKnvq54": 1200,
     "8zov1MPxaoUGAkmEid7nQ91ivHcMAoSXw6JjfSqpTNYp": 202,
-    "8zqbLobhEb6YD2QnseszVirLtjhW6zRT7s4ZMbUCLsoE": 54430,
+    "8zqbLobhEb6YD2QnseszVirLtjhW6zRT7s4ZMbUCLsoE": 41430,
     "8ztnwVvF48k3JLrp4Go1LChoymt2JD9mdEYwQijbiREC": 1000,
     "911CwkeXq2BWgcodjhgmYzjkTdUszqcUMbU69xQeAwfj": 100000,
     "911QTCbUxUBqZDZwD2z4Fud1yueNCcfyeNPpdG2nqTFo": 83000,
@@ -224058,7 +228795,7 @@
     "9275mo5YDYSRQTnSrhsFJ37ZRqwPVcrThb6WwY3qZs7F": 6000,
     "9299jm9e4xGdBEgNc3smKGms5M79dY4TErunAU3NGqbh": 10000,
     "92AaQwXXTmqaRG5nBbVoto8H4diw2JcdxaJHAoT7hkf4": 2000,
-    "92CUzcveAud1nGbMRpQrPXpEfLbUdtTN87KgAoV8cC3v": 570094,
+    "92CUzcveAud1nGbMRpQrPXpEfLbUdtTN87KgAoV8cC3v": 568094,
     "92E2dQWomVB5ZJbhyfhjZXXshEdakbiDyv98wXW78K1B": 20372,
     "92GFsHJ5KbousA1w2zyM1UxsQSaFamfFKuXJrR7SS6Zy": 4100,
     "92LbGDzqDyPvCmubhB7ith2HyFa9gXRQEtY75uvEGQB": 2000,
@@ -224068,7 +228805,7 @@
     "92cwrLyrf1y5kkqhhe5hiUkZRYnAGcYQ3Z7CTKncCY3m": 10295,
     "92hhDJjvVK4mv5bXBK8vFkFNAkA1j8C2tsc41MmmKJs": 2064,
     "92howtkWsTidDthEVDr4NTozJhosqSQtFEgPVjx2ZcCr": 10500,
-    "92o2j7cRTxsyf4yVwcaTMNQzZHaA3zozYqaxJnHCKZwS": 13000,
+    "92o2j7cRTxsyf4yVwcaTMNQzZHaA3zozYqaxJnHCKZwS": 19000,
     "934AZ1bZrdtfBx8jJLMC9Z1aKK7hCW84w5RA7oHmUw7h": 3932,
     "935DZyTjZwCyyWoYzLi761SQDZgp3rEPWtGyzLc1zZcu": 15000,
     "937QB2iejxJiJynXvkw3rMFGx3kKCy3yAdTtzanJuqoG": 5000,
@@ -224076,12 +228813,12 @@
     "9392P6yNqz3JCYZob4a4VdhabMogaRUvZLK3GMUQixko": 2068,
     "93AwayRHAaXKAiCJfJ5PjRnT5wjMQJXtT4mmCfNzdmUo": 400,
     "93CbCsnJkbqdVMRwt7bUtATzRpcWiaJdx4E8eXSQYnND": 500,
-    "93K9nmoE6mSDuPZrwyBs473TeLjs6pAGQggZwhavag8X": 51900,
     "93LHChdLJFaAKZxSzYtyVoJVypbqi8oz2sdwVvg5VATj": 20000,
     "93M7PCV65kayd5qp4Ch7nswGaFquhpn4YpBwhn6GBeAR": 2000,
     "93R1J4HhsxTZH1xffS3xAhYk7jwoeVsBtqfuffGfWdiN": 25700,
     "93UTGzjxfqZA9UmJhBNCMT6chUwrVrqmsQ6mffwVZBh5": 100,
     "93WycF2Di6rVMLbENYFUNHoRmbUgQtDYWDPMF9iJjphm": 1000,
+    "93aY8ZxtBBs1e43WBpFRBtEYAkKyQnfKWPZapo2xcQU6": 7900,
     "93bHBnEyLSfbVUf3n8betoWbMCr11cCsY3LdunPjBfrj": 1042,
     "93c3yZWdzmLZFPiJXqumRgWini4BaSLtoqdvRgT7RYL7": 10000,
     "93cdBF1WsEW9rnpK6q1dY6T1BVukzb1LqLaZc8MqNn8x": 19500,
@@ -224091,8 +228828,10 @@
     "93kuP3vcs9CP5H9Gj2o5Yrb7hWowJRWx4q5KiLJ4zKhC": 300,
     "93mTDU8rF9cgiG8VaoYzXv6bfv7D9LkUqPsm6B8qL3vR": 2000,
     "93vrDMTfA3ob9sdbtPbk2WnAFR6PTLHDPfstgjDZoEku": 10000,
+    "947pJabKpRKqjFRD4GXFMqb12JnoB2xJfydxBn63Uub": 1000,
     "94AbMY6YfDMsuFU21YFtSU9VwRjN7i6BynXDResMkAtX": 20000,
     "94DQ6Sst2tEtTBmcdFkYfcnRi8jsq9VCLcrsSys7teXu": 35486,
+    "94HHBeCphHDQ3H5dyN4cCSNE1RiSK2noPy4bBnJzNB2k": 30000,
     "94MkEGofYDTeTD1kvLapZ6BXUtwRV5yqvifhGLHkLJ38": 100,
     "94QB7Znm4XpyCZwTbvfs9gLUM1NUuQjSKGaWLW9HS9xD": 68354,
     "94Qcp3CxKdMtoJdz2Ao5utm8FLmeCqT7koVHpFdhy7Rz": 4030,
@@ -224114,20 +228853,21 @@
     "94yW8tNmW5UqcxXf4ABR3TqMeffDCygqV1V9YKcmzxvv": 4000,
     "952xGDy58V4g3r9hApZFEf6wrBJGhEyQ3RH5syu5Uq3a": 17300,
     "953tWKUNnUJddK95WDLngVpagZPKQ13qGz3gCXvxEGjm": 2500,
+    "958Am2BEzPSWhMUoPUo7orGW9z9E2THPiSNTyqFnffpX": 63500,
     "95CEnrG7gSKWVBeKieW2gNBfKsvXEwoix3dBACDHHeDH": 7500,
     "95E2euRvj7DMC8XZre5JY961TBgDChiPmLwFeNTP6Lcw": 400,
-    "95H4DjRGAZTXdzYXiJGqXi6y252ahFkvnPGJ44w97gdT": 7200,
-    "95J1KkiDhohkwkbiXYGE2PorDczcjKivRcekz86WHgpf": 56500,
+    "95H4DjRGAZTXdzYXiJGqXi6y252ahFkvnPGJ44w97gdT": 7000,
     "95LidjHREiksVqJuqJaCU1XZtRLbGZMLABtt6aw4gWC8": 3168962,
     "95QJGBgCvWFZnHepZSsXxS5M1XQtCRBgGBoUSrgeSNnU": 16023,
     "95S3Bph6V1Lyekkm3QomsKwR4BYqmrpaESzq9iGSjSDv": 1000,
+    "95UVmSWJide1F7EWpXWDdwLsGmkX5jtrH86Xex8p1enP": 200000,
     "95g719dHCN9HZ79EpuHob46Q3ZnXG69Hw1BfnF2Nq5x4": 1964,
     "95kYe1Mp7Wtoq86S1pL2ZvRt5M1Ky6Dh94RrUYXpmfzz": 200,
     "95rP9u1QxY49n91k9gFiibg7a1WRtC3WAjpWjmfWvEbv": 9900,
     "95s8YBsJQWfvGzWmTWDUB8waHXnjELj65KsKHNbF3b7T": 1100,
     "95xTqpQzEXE7TpSzr8U89KFGbMAUjreodWfKj1WHiPL3": 2000,
     "963CvbYr3VuBrs2UVRhw6rG6zu4AbCcAXeZMYdcj4Ad6": 15000,
-    "968PNwEHfecnuqJ4ASGbgen77JssK8D47djkJHNQbsxo": 259500,
+    "968PNwEHfecnuqJ4ASGbgen77JssK8D47djkJHNQbsxo": 276500,
     "96Bmywdp2KKbTz8dEjtBMtnh3QPdRCr2EE1ezD9Dgzxy": 25345,
     "96Kw7upi26qYcfSUKYdJnUhiXXoXuvaE7grkBDQwP2d3": 4000,
     "96NM2fpvnjAx4BK7CBVNZDD3z3Yxw7WJMGV4dejuRkp7": 200000,
@@ -224135,6 +228875,7 @@
     "96PFMobFjGmiHB13kvWqoVfne5EKE9TVRervKMTbH6dZ": 64500,
     "96WXc3QcVz9ddEcssGwKbRdz3kc1PbBH3LssxtJiEzHX": 60000,
     "96WuJpCaWaDzrwv6N5DTzjmS1E4F5twUW8f6REyUm2eX": 145000,
+    "96Zb2GXZAU6hmcNfmn1MQAUDrSgrjU3rXVPZArwuHoHa": 46800,
     "96awqGiqLfRmYRyMav1etX2ah2wQRp5HunMQsvdXNSYV": 30000,
     "96e6MPNfCncXTrkG5CtQXhYVQkhCSZAFyquSFy4D1yPJ": 59266,
     "96iMmQWCLv9AgWmZgudu8UYJtzq8H9BFre7ZCcdZarEL": 76000,
@@ -224146,6 +228887,7 @@
     "96vtQfjDPauD82gBBjbvTLKz8uTna4ThEhC5E6KTvVp7": 20320,
     "973qyTZAWKzebm7rDhgqzjfrSnY7uteWBo5vb8bRE3uw": 16100,
     "9751zEoNv59FoRiL49n3R5BoFQkLtzGX2ALNFbx9dJQ4": 73400,
+    "9752xGBJwzNrXSXckT8wB2NMQMAK5DJTVE9Z4QeLNphx": 5000,
     "975YkDgBwAwg599n1d5EeMpUt38hc7D8cGH8C9zQDACr": 1059,
     "976ZeQVnS3uMMhsCRoJdXpBTw9vBNcRdKeLUYE5d5v1E": 20000,
     "979G2t7J9GYvpHPe5oRhq4dmqQonJ4rbEf3i6HNtwyi4": 1000,
@@ -224153,10 +228895,12 @@
     "97Avfg9egatS8qP7hw4wBVu4kvcjyK5JWtwdfQoCdPTx": 7500,
     "97DH6EeR2EA5emNai83vtCfw8pwC24mbJVaHeYkpLqZf": 8500,
     "97GMkErX5mPQafqDmcfYx4iWb9Z7M3QEZPt3Reiut6R2": 80057,
+    "97LaUWiRdNwy6S6CWpih8dXgcF5xER6Dptb6aybyp5b3": 106600,
     "97P3zLNWKjvGuDESBGzXVDTgPrZ2GbTs9WHkHPXcYva9": 4000,
     "97TUw39wzzR6Q8mzoZAc4pCGpgkNXWjQ9njF2YomTEmN": 4500,
     "97ZmV2Z3zPvgd76NmfUdUZPSd2FK2kmxanivpZybDH3L": 36310,
     "97aEvEEerJ9Pz53b9AY9xJWft2efHBupi31ioFPFxBLj": 10000,
+    "97aKU6BEEeFueEzQiKAp3KDxYDymRUu1aRorkfT7wdwu": 5000,
     "97dfni2m2SuAMaPdjfe5xDQt3noN5pmTzgJT8xgqxcpE": 18000,
     "97jg5FjqXZkAKZLaSoKgwFskdYg2snTzQPp4Nd1WXhSC": 292198,
     "97nAKqWXesNs3MU53q2KjZhdRzKQkqU4BdCqMagq9H6Z": 15375,
@@ -224177,7 +228921,7 @@
     "98Z2cQNdbMkPU5vHfZYWuPLuP76hA8P7N9s63UuYanNn": 500,
     "98chWProp15fq94LRfT1uJzqAC99DJe1kutwPDbr5QPK": 617,
     "98cxXX7ELCpJ8x9z6HHEsBSQqYbDJqtobQHzUP3x7iQt": 25000,
-    "98dr7cm6pufUvgj2HmVAYKdyqrTH1ghQ5DoVnb88K4r5": 2329481,
+    "98dr7cm6pufUvgj2HmVAYKdyqrTH1ghQ5DoVnb88K4r5": 4329481,
     "98e1iYYsjEcbivDLf7qhj9DbggAuTWVn6tQgbtevNjxH": 10000,
     "98gwfg6ztiQvkAZXQ9J73ZFs7oNQqvTiPcumb8ruQadu": 10200,
     "98pVQi14reaqgiku7eu7pj9XLap72C6RKLSKrWQsmkYk": 10000,
@@ -224191,13 +228935,12 @@
     "995b9GTKbtFBaCR8E7Ja8t6qafvRk8r5y2zbEq7J7QE4": 600,
     "996M3N1eUA5Z5Tcgp2nb5WS6CvbBb8e1mqD3z6ZGKmwz": 10000,
     "998XdBi5sFT6L2ReqJiCg3aAiM5JrBsSjz4eANNFG613": 25000,
-    "99A2uE2R916nfo4HZAQLyCL9AhjwvUfSFG7q2NynKHfU": 105720,
     "99AE24nu4C4a6tFE4tuJD2VCiSBkMjiQGjQWEqvAsL1z": 3000,
     "99ETeiU2m9FuTd1W57FBbSXwU7RbrGTq888fnqgkvgNN": 100,
     "99F3rQM5hPyj8DJAwr9N8wikoUKZy8oMyW2LgFFkjQJv": 2100,
     "99NhpJdtrxySyGoGDN3QNkLnJtrTJavk4Ui31CvaqFBN": 4500,
     "99bDSXCDBf1KA4TwNUE7Mqvnb7AmvR2YfUKVeoBxaT3W": 25000,
-    "99ekawZcnp7APxsFepXufhQscLwBGSJguDSZKHecGqYw": 96200,
+    "99ekawZcnp7APxsFepXufhQscLwBGSJguDSZKHecGqYw": 113500,
     "99jJFHRWN15gsJb4m4Fju14VgHDKtwoKYnp9Y4Chg4xs": 100,
     "99m3EuVgcuA9tcsSwS2QFYHCnkFiAjnb6SqrHiiHMxvK": 7000,
     "99rbXCn58Lm63KHvY8d48t24uX3U392uQSbtK3J4X3F": 1000,
@@ -224214,7 +228957,7 @@
     "9AMy2WPqMuWeM23VyGztTeaVFbXjhq7xeQojrzYAmNpm": 100,
     "9ASDMznNcJSvVetikCWS1yefgU2dJSgNrmWn9UcYDueV": 10000,
     "9ATM4RLbtxH7PKZqsMG81FbDPqgD3zLsnvcGivaqXSBe": 1500,
-    "9AXNrVdip2dVZyQuoHGJWQYa2dmydPu8rV3NT1aehrnZ": 1000,
+    "9AXNrVdip2dVZyQuoHGJWQYa2dmydPu8rV3NT1aehrnZ": 6000,
     "9AXc5dFKi5Ny7u6vKVY9izorjRV2tNPF6MxQszfKDmKh": 501652,
     "9AnoFFfpAdqf5FK3Bx7kf4pLccR3xoAC5M3iFVypm2E5": 1500,
     "9Aq9cxDAxYD73oeSbu3HxNzdK6dBx8uyX2v4C5vsXoLC": 324864,
@@ -224225,19 +228968,20 @@
     "9B4a5jrJmZzrkCCksbPsx3AMxzvdZssdwyP7TDDJ8VQZ": 56300,
     "9B6R3vUjfWegmofzEpkY1zAxvv5ux1z7Lp7ej5UbYv2C": 10000,
     "9BAXbU6MVBLCT7x6xnSmpsY4hDmn28YrMaSoAx3n6u7u": 17200,
-    "9BDGeiuipvAxFKcRHZAmAfXmPHDtRxVmVtMf7S3DY7nk": 1702,
+    "9BDGeiuipvAxFKcRHZAmAfXmPHDtRxVmVtMf7S3DY7nk": 1703,
     "9BJW4cwMr8xALVqcyh7YkR7tT6DQp7XoMcvtoDx5UUjU": 13200,
     "9BLz9ASf4riCt8PDnJREmN7JUTer9MUGyXkHEmFeWrKK": 74500,
     "9BMvQqexKn8oJGY7Hz2uMyZv8XWhM9QMdkceVKGmPfD2": 20800,
     "9BSAeFJ8Mm7km1equVZPgdPqTNU7siAE2rMfHfYGHEh7": 90500,
     "9BSU9r4pBpkdC1Mq8CXCcudqfzkKotcqjuaeUTXYXtQA": 500,
-    "9BSbTC2dmvzdJKMocN86zEUN3gq4c96oDxV4TqGrLRgB": 2342039,
+    "9BSbTC2dmvzdJKMocN86zEUN3gq4c96oDxV4TqGrLRgB": 2542239,
     "9BSbTC2dmvzdJKMocN86zEUN3qq4c96oDxV4TqGrLRqB": 3000,
     "9BZ3azePauEjZgqFTdjpBdigYUgvBNxH21JgC4DCpTX5": 2700,
     "9BauGidtdPxrZHxW7S2W6G2ZKvSsz3UpCepwmUakdR9r": 1000,
     "9BbXLYNT7Bdze9FdBnebicjTJrW41sxBWoiHuFJqbHjD": 10100,
     "9Bc4w4UWUrKpVeMFyM14UYpexQMBs1hGR2gN4GWjfUen": 5000,
     "9BfZjEb2BKyMwArWdtX8PG1CnRLTPLNFyvxBBpZkkr1P": 8000,
+    "9BhFUXYKuTTL2aDQ7Zm8TurXrsNgZbHdX6E2HCAgFu6A": 3000,
     "9Bhejisb2xB4RhZQ3E6emQFYrvV7mQK5LooSSg7Nb1MF": 4400,
     "9BzZJZk6xiJuH5Vxw62wXKDCuRH9ZhS4Dsd5h5ahByze": 10000,
     "9C1NDPDDgNdzzXLfYdSWFcMkFoWwMG9pQNDEdRvAeaWU": 2000,
@@ -224248,7 +228992,7 @@
     "9CSRnZna1iKMW1PXCYQ8nD8yyh7c1RTdr1rSs6g4uCk9": 1516,
     "9CTCNbj7ZFSUKCffUdC1fij9359qRQPg3dfQACpcQL3G": 200,
     "9CaaGbGenviGQkJNFjF6tJqGAfZszeUVSLuVAi8F6Y93": 2137,
-    "9Cbf1a5S6qSU3LD1BVYDU7uYmA65tHWUE3NmembymSih": 12400,
+    "9Cbf1a5S6qSU3LD1BVYDU7uYmA65tHWUE3NmembymSih": 15400,
     "9CecnPQhHVX8ZcvGFXDBb6N3zvHT7w8Y8KjVkr1Xm9Ti": 5710,
     "9ChE4idUszkzFAzhen7WFZ4BS29jm3thwnY3sZYNxbni": 57264,
     "9CsVgAuT68gEC6nHtBdjoWQNMzwrdtu8S3rhD3BaB1Jq": 2500,
@@ -224259,15 +229003,17 @@
     "9DBJVG798PgBJHC1pNvxpT9djrMKez7XmhPxAPk1HoEX": 6169,
     "9DD7Xtpf4Zd1zUfbmyHt74Aj6oi1Lf34dHLt6LYvBpoS": 3100,
     "9DJto8DnUiefGKETCE6FPREGfftpw6CL6pdPM5zSdn2m": 2520,
-    "9DKibXQkAh816nCeppw3Nht79YvYDkm2ZDV2XdyAHmAu": 50000,
+    "9DKibXQkAh816nCeppw3Nht79YvYDkm2ZDV2XdyAHmAu": 100000,
     "9DP7Jv83GM8pVnCm25PwQbKhbFZtxFX77yGtH3uffYjD": 100,
     "9DYcLm76woKRV6uYtrY8wMpsva3afyCXdTiKvtCkvcb5": 8100,
+    "9Dbbzvgs9rBPahcjTD7rQ8DifqRAZEkwiWqGtvk3BevR": 70000,
     "9DfaUMcshxdQjdki45wagZo4jKfLDtn9Sicvs1fhHUYJ": 1023,
     "9Dn3fqRCwfB5sY7VuwZLUU5ijRcFm2PjPQ9UvPqzPgku": 75854,
     "9DnZXXJFp8cKPYKXs7ktCirNLrsZPaw5fH8KcxB9Ppzd": 500,
     "9DnZXXJFp8cKPYKXs7ktCirNLrsZPaw5fH8KcxB9Pzd": 3000,
-    "9DtcBatbM5jPaLZphyjzP7h93Q9yY8cTTzcWz2zPTBgj": 18200,
+    "9DtcBatbM5jPaLZphyjzP7h93Q9yY8cTTzcWz2zPTBgj": 23300,
     "9DyyA54SR2bhZPLJ6jERapoYZcduacuRTzU9Stb7ejMZ": 10000,
+    "9E3cgvoKebjtgr32zJrgkVeqKeo2G3RvxxSTZrxHjW4X": 4500,
     "9EKwjzTotq8w7wbrpGNZnyiCZLhRGCgvMeSfMkv3SwMY": 6400,
     "9ET1VYyFcr2UPic9cYQULDjS2GaqPfW8LoV4Gb6ZeXkj": 100,
     "9EW41gfqBrLvW2hwkr2PvbiDrzkSW4vbdFrnX9szJyr4": 10100,
@@ -224285,7 +229031,7 @@
     "9FJB4GQKWMAGbUBRZtAyRd8FFDT7y7sVUU4JGiJJr9yC": 36800,
     "9FQKn4DsNTUJd7FrwTmqqap4mUCQRR8imhv5NRoqkucf": 10000,
     "9FSR2i3Nu8MYukyrbB8MSkW413EfjCqbejEpiYLd4HKp": 11060,
-    "9Fd6WEXo1vtqJ8YcBdvWfkiTyjyDnFq8B5jNUiB8fqsg": 45200,
+    "9Fd6WEXo1vtqJ8YcBdvWfkiTyjyDnFq8B5jNUiB8fqsg": 110900,
     "9FeqL2uZaQFx19EBnBHk9fWRjABT6A9hWc6CV5P41PTg": 2500,
     "9Ff7un5szUBbqTN4wM9hShwSXeTMdP6znKxRsjpUcpuG": 2100,
     "9FfSWGog2Ay3hGXDvfgsQj5vqbzqXT1GYbYTxxJkbC1y": 6000,
@@ -224294,14 +229040,16 @@
     "9FrXPSNXzYoNpBvBioWtF1rNYEPHDm4UuA3XoHoj9po": 5000,
     "9G4LrB63yQPTdpFzjxoady76mDtkzR19hcmVpSRRwzsM": 12413,
     "9G4wfw2XH1hV2gMi2fRLDGA2AHuff5cVhhx8uGty8EXk": 20000,
-    "9G89JwL6ErPgEiQQqmBqgBaz9uYEABzAjdPZuBDsVSgT": 200,
+    "9G89JwL6ErPgEiQQqmBqgBaz9uYEABzAjdPZuBDsVSgT": 1200,
     "9GC2XeWmfwRghP2u3WuJEprnEC1TB4mJuhRAZzwtkp9U": 500,
     "9GCN6JEa67MZHJKxjwK1EitJEH8utT3pCUhpCFNVcrWs": 23500,
     "9GCthmZvKGvZXYN8EUXvh73ENiSZyw67YDiHsYr6rE6g": 51051,
-    "9GFgJDtZFiJEJzcxtN5EJkBRb4C1tdXifd9tYCSNEYq9": 39000,
+    "9GFgJDtZFiJEJzcxtN5EJkBRb4C1tdXifd9tYCSNEYq9": 58716,
+    "9GNoPxJfWrxSpBAXE1eGHbyGcCaL6Rbum9iBa2Yx58LR": 5390,
     "9GQ1x83TapBj2YqipEWYb8fWEXk8Bcx6LGDESfHHMPxK": 3000,
     "9GRrj73cpV3PXb7cea5fPHLDAwcxpN2urSpNHzYacdjG": 65000,
     "9GRthz28tZMprkRimsgWLPmTtAzrexAUQB7FSZGfxf62": 36296,
+    "9GTQAXCrTUqJ9W8r2nv72hjeMerSoRVyJCdo5AWzXbSX": 10000,
     "9GTvkzqthXMANezVu7gcMedErvSHMRrYfYH4bNtFPojH": 1023,
     "9GV9vzg9ePhHT6RuYmsj53t6HeHvAnaDnHCX3MDxn8De": 20000,
     "9GcznYtLs6noHG3qH4HLUKW5tvk25neENqn5PwihpADf": 200,
@@ -224320,9 +229068,9 @@
     "9HE8LhWdtwGXDjjQAfW49gE3x5fnW2HR3y4USQ44WhUi": 10110,
     "9HJVqgCoRNHh1DEoJ4knR9CiXpkRAmS2trA4qTEPgiNt": 10000,
     "9HLfwo9zJFs38GGpDfBbsUziXym18i2NpQFRwKQ7WtcM": 152500,
-    "9HPkJTFVXCN3CtBuLayM4aSdbUstEkXwiaff3gfpfxNo": 239840,
+    "9HPkJTFVXCN3CtBuLayM4aSdbUstEkXwiaff3gfpfxNo": 464940,
     "9HTKsNC9MM8JyXNFu3Bbr8AxUaGTZXrApgKEAu7og5nF": 1004,
-    "9HXbbQiwoX848EEqzp2KFpLL1cZNJrJgayzvBcte8qHP": 441000,
+    "9HXbbQiwoX848EEqzp2KFpLL1cZNJrJgayzvBcte8qHP": 313500,
     "9HYmrJWwDAaWDiPjDExyNYD5PPdrYz34thUdf7SDMDxw": 27900,
     "9Ha3PFV3PK5bpcTMJPiaUkdQwEhce2VGceiJ1jJC1uqo": 1000,
     "9HadnQJiRMBr777GyVWCcsSaj7UTrgXExa8eQe3brSGR": 29200,
@@ -224350,25 +229098,24 @@
     "9Jme1SqAD4pWWcMwBfWiWFfBWj1meaBY1RKgersjNH5q": 100,
     "9JqGU5HKNbA3XDyeWXYJvJJxUZAmgJGRNQaJxwRid287": 13111,
     "9JstCoinNWf2vLdqbKqAxznXtUmFmLq8vitjxyn64rwG": 1360,
-    "9JtSBFHWrLPCiPRFcMCpDRDgcHYRZvoRS4B3aaReDahV": 512320,
+    "9JtSBFHWrLPCiPRFcMCpDRDgcHYRZvoRS4B3aaReDahV": 536820,
     "9KDfsZRybfTB6bM4PBNZnTmjGEVQFYdrhKywcR8mUiDu": 2000,
     "9KDkm9DK6Tuq1fD1fs75wUsx31Ls7E1XQ3oV5hm4FM8h": 72532,
-    "9KLC3BNPLnXpfzsJrCumujWbdshjbcfzDFBtnJH7cmMw": 100,
-    "9KMHfoyvsCG4Ak25J3GPsHrQhzPREhNpAebeNSxo24Fx": 5000,
-    "9KNtVxFxXhrp7NEh1vWwPusV3hfSNrAUxxyXftCtJRgi": 88084,
+    "9KMHfoyvsCG4Ak25J3GPsHrQhzPREhNpAebeNSxo24Fx": 3000,
+    "9KNtVxFxXhrp7NEh1vWwPusV3hfSNrAUxxyXftCtJRgi": 276184,
     "9KQmXhXrwx2pnzedWCgLyMGgQNbMf4ShsHpQRsh44cox": 1011,
     "9KUiy2Rttu6EWyowbz5iMJLJbBQEbLTneEHw92R7oCp7": 200,
-    "9Kah4AHpJWaf6SyfHgFMCFrUDCUdjBs94TfirogBU1Cp": 3900,
+    "9Kah4AHpJWaf6SyfHgFMCFrUDCUdjBs94TfirogBU1Cp": 4400,
     "9KcNxdaqzmoYKpKUoVs55Kr5aRnpzenAbQ1Kq8k1mW65": 103400,
     "9KeXAgbSvS9kGoTYoX5K6zX8Th9xHwa35xe61m5mCD7t": 400,
-    "9KhRqPqbndG5zwZLBVg93ZX1vq8HKzL4Wv2uE91miSfj": 1000,
+    "9KhRqPqbndG5zwZLBVg93ZX1vq8HKzL4Wv2uE91miSfj": 900,
     "9KhbUFFbw7srkQDLHJ8LWQygL3S1j1pDPvRRMpWVsMoo": 5210,
     "9Kjpr9VGoMLe3NYUkthPkEoZfxo3pGcs1g9i1H8SPNeL": 213815,
     "9Kkx4EvVni7pe1nju3prK8r8PXoS1ABiXQzLTCCAB7e8": 10000,
     "9KqBjMEUcMFWH2Le5vbHDe6ZUHDvmTPhqP6KEv5VdZbM": 1032,
     "9Ktithwj61k3XrvmYXU3hEwaPgDcvYmbPEHcnAu5cpRp": 5000,
     "9KwF48BnhuK44m6d5Ki7EM6gFLYNShcPCb8pH4cH1Mqh": 100,
-    "9KwZ1PPcVLinqEEwua7DQ7spsBjJmxziNPctJVyeuhSi": 20566,
+    "9KwZ1PPcVLinqEEwua7DQ7spsBjJmxziNPctJVyeuhSi": 30566,
     "9KxDNZePeWnQXQWnccthBsL55AXUXjDU8UqFhgbFqfcq": 3000,
     "9KzwcFyNHQMvQB81Z4mHPiPMHjhtgJQG8MTYJHYKqYLT": 1059,
     "9L4fn3SePH3PnEmDpuAJ34upf1S2XRDrUvLrR2u8Gi1c": 5000,
@@ -224376,33 +229123,36 @@
     "9L8CwwDPF9TaEj53WePNYfankQu9kkStuRbAQxGkxFw8": 11042,
     "9LFUebVk7EAJGuSgFBWgJvgmabSeYQ9p9GaYP2jXRkct": 11500,
     "9LHZPHxZzPg3R2Wvdj3S7MosdS8AUUCsARFxJf1jLqwW": 28021,
-    "9LKCY6YQyes7vmvPD5tfRT9wpSna4hxHpbvF2NdZ6RZQ": 18400,
-    "9LPPBDkEAKzY1d96kNVX2V2dBZuqLZPQqgLYj2cS8fej": 8988,
+    "9LKCY6YQyes7vmvPD5tfRT9wpSna4hxHpbvF2NdZ6RZQ": 56975,
+    "9LPPBDkEAKzY1d96kNVX2V2dBZuqLZPQqgLYj2cS8fej": 8017,
     "9LRnLFXWKXzgS3BADytvb1WKmyzvcSMjpiSZPKJRj9Wk": 75000,
     "9LSCA474UgMKb2YkEq3GXkNDFFHRCcBxj1vs6ZKL3iby": 10500,
     "9LVXe4SWp27CQ3suEf824WUFzuiX1qgH3JvMpJAv5489": 1059,
-    "9LWU7FVdFtVs3KRrFnxvphPs4SqddLShLSmWZzoJWfX6": 14168,
+    "9LWU7FVdFtVs3KRrFnxvphPs4SqddLShLSmWZzoJWfX6": 12769,
     "9LXLyG6e1k3LBf81d2GfWTbfQ4oW7ZndL7UFnyc4YH7H": 5000,
     "9LdakZchwR4281nYwYPN2mgANkwrA4ZSGdneGTxH8vWS": 3000,
     "9LfNqkcQsB6mbSovA7TcEz7yvwauXnGn7FRWauqvi5nw": 15000,
     "9LoxcY7XmCrGzFeAgofDvW731nVERwUrxqZ7kKUALBPo": 10000,
     "9Lt9LMZgeyFWs7UbAEhThtLUa7iMxxHp7XYTMUUicNAn": 2000,
     "9M2ssbFiZCxm39hw57ddgoRo14HKyyYzeRtdvTL26528": 1998,
-    "9M4kDha88Z9pQhYUMMdQp2CavFZZB2HYYJszcDfrpzjh": 1000,
+    "9M4kDha88Z9pQhYUMMdQp2CavFZZB2HYYJszcDfrpzjh": 21000,
     "9M6WgAZ6mYw4qKqzzUCLvRXCxjhL3mzRNWBXFV1Umtur": 25100,
     "9M7Sd8bkQCHxgdZmpTtCfjta8QRz1MNCcnuNNaig5npK": 220,
     "9M7YGFMUyf37V5xRHCAJX7EFhLerrkadt2BgMzRVX5ML": 700,
+    "9MABwL8gS4v4J9Hf3p8pRHpXEetTaNvuHYYLVcuKjhjs": 2000,
+    "9MBxhwPNfD8uS9DoYprMAUSHR2ZLwFkGPnE6ta3g6A6m": 19200,
     "9MCf1hQT3imTta9vHjn7PdCH2v31fKhp4ZyQiSTBKwhX": 14000,
     "9MKjxHmvPd5nk3HQM34BeYoQ35PJpGWALdXy5rfRSs3j": 100,
-    "9MQPDu9JZgGf7UckaXgk1ExKSieHhwrStiu1EEDDoCe8": 115100,
+    "9MQPDu9JZgGf7UckaXgk1ExKSieHhwrStiu1EEDDoCe8": 96100,
     "9MRRV21nbigC8wh4js5Jz2V2vbg2EUhyCJRksqifaxoD": 93000,
-    "9MSQrK3nvVvvWouh17MSgHxVqxLMHHJbQnPt3mXQh8UH": 79332,
     "9MTRbmcg3mAVkY3huDzjkM8JGpypi6ZsvnCEiFBv1rAc": 10000,
     "9MUNUuE4uZ91JK2gZD4yMCz4MtqfTHBtPpJRWaGMwcuF": 2500,
-    "9MVMUzymbJE7UzF32prZsmHjBQN3Ed3CGiUFTiKmRxHv": 13583,
+    "9MVMUzymbJE7UzF32prZsmHjBQN3Ed3CGiUFTiKmRxHv": 21262,
+    "9MZkZe9UZH9G5ZKKQHfrY5vEnqzMJStSgQwc2AHtEWqi": 5000,
     "9MbiNEug4eeZAsbquRQ46mMDEF1UHrNnfUkup4FkYuCA": 5000,
     "9MfJ3rFgu7XiPoEmVyzka6hvZt9zf97SgVUvWGzhqu8J": 20500,
     "9MjCa515xY74aH5HYauSGuFmi1E3U8hfas5DAe2EEpiD": 10320,
+    "9MjVS5qyGwMxPdyKnJj93q85irXQrJYfFd9xPCa7yyx": 5000,
     "9MkLWNuKaGygSgBie4ic9rUzHiDRLaEUKsn1LokjAUoS": 5000,
     "9MksXEscR48kidMUXaRTFe5Dxwz7NEB93c28UiEvU5AT": 20000,
     "9MmQNqa9gbxwsUMTzsjx7gYhpRM2s7qQgSgM47WuGTW5": 375626,
@@ -224443,11 +229193,14 @@
     "9PT23ZCUC71EsEYqbp5MWPJVtKTvKBFmayfbFvcryNAC": 4800,
     "9PUFJcMyqcfhmHd3dy7hJHJfzn4SKCEQyC6XqcEyYuNf": 7000,
     "9PYCJhgd1HKhbL5MtHbbAvVimKgoc8UcTYvMjHFr7MRP": 20240,
+    "9PZFiKKWk6hvyKFr5RGDCspghbNJYLLWMsPAk4ac76NH": 3000,
     "9PnHXTdPBNsUgDkGHdisdTNAtN1LduL4WDMYHnniv53k": 100,
     "9Ps9mxwfNgin4NLAychxPeeMze8cUGEbUExx9xw9Cev7": 6400,
     "9PsfVw8rnc1aC2uyioCQavVTgpFCMAetqQEFQJ5k5DuN": 11000,
-    "9PzLUA3KWt2YUMnwTnWk4rWm53UzYjAWGePV97npyVC8": 2500,
+    "9PzLUA3KWt2YUMnwTnWk4rWm53UzYjAWGePV97npyVC8": 52500,
     "9Q1LmasxHD92sMm1Bf92G7Z3qMGfoNATfjmU5BHVRPC7": 100,
+    "9Q3PN9tEzHgoPH6UHAAtshRFQLmhR1AmHvRzvA1Scsz1": 2000,
+    "9Q3PN9tEzHgoPH6UHAtshRFQLmhR1AmHvRzvA1Scsz1u": 14200,
     "9QEpz3MbU13kLghY4toQVG2A1wtbhxhuGxiZa9ZKnMn8": 15105,
     "9QGk7VSH47GbghRTTnTKTuJkMxFmbSYW5ZM9MQGnFNZ8": 36434,
     "9QJqmoCuHNzM7y72aCYhDrDbbatnd5Q3kvf4xhG4LmFh": 6000,
@@ -224464,6 +229217,7 @@
     "9Qu6BgZ9ttour2UdkX7UaQBCjf53wn28v2GaYUkcZdZn": 10000,
     "9R2rj3GfSU53Nic5QvLZ77wU7ypHxUeUUktgPKFnfR8E": 5000,
     "9R36XpVQRTzbPiuXCjrq7Pk6a3YH212LrRswgnhmRegA": 14000,
+    "9R38kAhkUteJiPCnEdPEDWBCgQQSGTNz4ABPet97wHJA": 5000,
     "9R6erDJzhc9CDP5hfHnwLqixxWJWvtTY8AxoCDqfLhaV": 1501,
     "9R9bSj2Z8GWkVZn9GdJwPLhkWPqwfdFixcdsBPN1e1Nv": 521,
     "9RAEbfgLPsmE3xvzxQoh9LULZCZ2htTxAY9EZjhnp2ML": 12500,
@@ -224490,6 +229244,7 @@
     "9Ry3MbdU54crKKsVoiXco9Kv97C5MfRnDTQJKd8JaPXu": 110,
     "9RzYBmadqaiNUQL4PbrWrujsu9yXxR4S3sA7fdnVsmsQ": 10110,
     "9S3jq9vKWHXvroKFeK7b7AFgZmt4SAkg7cmVb1ibveaG": 15630,
+    "9S5A5iSwTv4CMumLuDoAw1admYM26MsQX4UdBNcePtV7": 161000,
     "9S5t4aDxxyfnP8hKfT9ZJVaCpRun9pSmJny1MVVNjZc4": 5500,
     "9S9hVVTXAgZ75QMCXfqf5rGvwJcPjkeX1e2gcMRLC6Xp": 8210,
     "9SHrX7x3cZnHRsCwm2P2JeSUrCbHMBfA5rE6YGBwo3Bs": 48800,
@@ -224514,7 +229269,6 @@
     "9TEpCWRZ8cfBvKm8yhRAvpw7rYJLmFhHrKXfrzjNHZLz": 38000,
     "9TNpFPAZrugR89MFpgggzvyUACxWK4iyGFqx4HESiCyj": 2700,
     "9TPVzWWpRbwtZ6Z4Y63ymxS7Zxm1aX5RGtM5KBQMnXP3": 185195,
-    "9TSVfee5bjEETJb8eZotpXudp1dAtTSiDhHj12DGC33K": 3500,
     "9TTWQYzHb5oPFFCW67tJGpgZ9UtnhtKvfv8qczEeG2jb": 2100,
     "9TUKoxgfgXmECKetQizwDDeHEajTBrFtP1KUETjWCLrQ": 1559,
     "9TinL8Ujwo13948G8NcUd7kwoHaqbnG5wVDfvuQSwe5p": 10000,
@@ -224541,7 +229295,7 @@
     "9UUdPfSPoUAGpvBprSvrPSr9cgaLGkF225xkVvBySJD1": 2000,
     "9UZcMNTadvP6vzczUCXinjCBozUYg2Q28vSJwM7NGji": 3626,
     "9UZcVJR8eL2vARwac2unjCvtRdKjgVqWqqsg75mSPeRb": 5000,
-    "9UcLqGpthuamDXQyS3Vj7wCBPPWxPfTYzcVe9hiCT5DG": 38200,
+    "9UcLqGpthuamDXQyS3Vj7wCBPPWxPfTYzcVe9hiCT5DG": 57700,
     "9Ui9zKDzsFGea4aDxrQKRLoyGqoFbxypLWywN2q5nHkz": 5000,
     "9UjtakbtpXhbGxr5ConeKwNCsEJTdatFqqeodeCxMhSQ": 2000,
     "9UootGKvgUQ4FpQWrhkDazG4sZWqoUcbts9YroxB6Q5k": 10000,
@@ -224559,18 +229313,20 @@
     "9VPfyYy3bK2bJSU6PY7qrsP7QeFDM2etRKrtRHHqXBU": 89000,
     "9VQuhDd9nB1uJBkLbzaeZMkn4wGgam6JKGqbvUYNJEpE": 96500,
     "9VUUQxRNFshgfXsBPZ8R7GTAE9PRp6uyd6f5j9CVpTys": 5000,
-    "9VW3zaEWeVGXsiF97QfhNNk5ByTKAiJ8seuY8Hv9mZVZ": 860232,
+    "9VW3zaEWeVGXsiF97QfhNNk5ByTKAiJ8seuY8Hv9mZVZ": 932856,
     "9VehLJT3uTttXa4Rp93gSiHdq8XeURUuKErUuGy1jELS": 9000,
+    "9Vmcs6KpsivLPdS1jiojSC8F1CVKxpVHpDcwsZrSajx": 2000,
     "9Vmcs6KpsivLPdS1jiojSC8F1CVKxpVHpDcwsZrSajxd": 112231,
     "9VmtdcXWmWfXmhrJUtLhmdSaZ7ommi9EcEDs3iUHeiKa": 61000,
     "9VxBd1S1VQMhL2FXXEEfmYpD3wHvktsiPVDshohztDwh": 7000,
     "9Vy25hwHTd1hrRJbrFLZD9g1HwAkN4F4K8nonaKvcWpr": 10000,
     "9VzzeZ31qsKAyrajadLJZ3ScLPtJacyUyXGRgnPKsemn": 73000,
     "9W3GFcn5Y7LXE6PS2tScmPictKefQ9TZ1tGrHjqyuqZR": 5000,
+    "9W7Bim3aKNBjejRsiEHTPxPENot9NgWVeFr2JjzrB5Hu": 11500,
     "9W9FK2bvpgcouoFajPLVnw1V64WZRtr1CDQepyha7M6j": 1016,
     "9WFhNkDCb3AikSxHfV1Pa2Sx44xuZdGsaDNLVF4brrDj": 88544,
     "9WGT6nLQC5kT62v9UUsGP86gsMerL92v6orgn2oZFmfP": 1000,
-    "9WGbG4AZem8UPvG3bbDycERqYA8y2FHeLSpgcy81P4xy": 125100,
+    "9WGbG4AZem8UPvG3bbDycERqYA8y2FHeLSpgcy81P4xy": 165500,
     "9WHDhDFgnQ39zTi7peK1AUMt2ZBySPhE3rEXRWGLkEen": 61406,
     "9WHsBBqEsxDbRXZkZrfA89uJYKA92Esvgwr64UTvSdwV": 2000,
     "9WJZhqiuSs4M8t5ZFXDXwHLHpDhypyfWeaRjxS5cvsx7": 100000,
@@ -224582,19 +229338,19 @@
     "9WaHMhJ8uhWrViCn44wskit4A3qN6yDDvQgie9rQzRmd": 10000,
     "9Wg2mEpt5iqDE9FEaJqyud5WKsCm9RwaaTddHFEDgNf2": 71500,
     "9WpxsucnKrweYgEaTLJnY4va7SKFMmBg2Uayjd9Sk5hj": 1000,
-    "9Wq1Crbew9aZ1cuauhk7LuKt5b1hXEVtSENJUdEMSmLM": 35000,
+    "9Wq1Crbew9aZ1cuauhk7LuKt5b1hXEVtSENJUdEMSmLM": 50000,
     "9Ws1QuVeyT8uhtSkDK6MZ6dJJutYqpCPnQJHgrhgt5jL": 700,
     "9WspAeiKoSArJ2YWQxiAReb4smLq11BacHz2agPwUr6U": 100,
     "9Wvz4iXUYokoAbRaZR9j3EJMsvieMcAb1gnvaVaEpyTX": 1421200,
-    "9WyvZfPEgmNHGreQbCiuQaXQLtJ66D8u5v5DH2mDeshM": 99800,
+    "9WyvZfPEgmNHGreQbCiuQaXQLtJ66D8u5v5DH2mDeshM": 109800,
     "9WzFJa2PXQfjTsUyAVtXSc4ZNQdNUHbUYEiiKSReUUU8": 79110,
     "9X2bJe3UUUDuY1vj28pLkVRkv1nUukMwD9RxA67J1TGX": 44100,
     "9X3Xpp91kXkQZXELWeTHxJwne7xqXx74o6EAPhJXKCMq": 64211,
     "9X3yRqLneEVty1CSK5QnRkfS88fFPK31SJ85PxRZQAwA": 2000,
     "9X5BGJ5YDc78jnkxQtrhEupXnEJyLTn99EurX99Cu8cu": 45000,
     "9X8DoNTCzkGccQaYAoTJce1qCTeu24qw2fcFKq5Jep2u": 1000,
-    "9XDk7e3EJg8okoiEGaQ3mMJodeFw6EE5cz24Qa6jHWBo": 7600,
-    "9XEkUizoaP9eC8WoUEGKLom4XA5GLgyWD4hsjNDSCBw2": 107900,
+    "9XDk7e3EJg8okoiEGaQ3mMJodeFw6EE5cz24Qa6jHWBo": 9600,
+    "9XEkUizoaP9eC8WoUEGKLom4XA5GLgyWD4hsjNDSCBw2": 107000,
     "9XGSQfv5pF1PFavAuyhgQxK4mjqS3996q9op5CX4cikL": 10000,
     "9XGohkBqcr76N3RK9KKTmVkGiqQ4HVNFNYMaAiqmW5uL": 500,
     "9XHsBX5WmUnbHhmVbAHhLGDF4Se5tE3pQTG85t1Gh2ix": 200000,
@@ -224607,7 +229363,7 @@
     "9XUinh4SNRhrgVHUDvUJJEx1ab4dNjrL4f5E7US1ueqH": 2000,
     "9XWW1x9sBn9Bh4uwJa75KSaaA55JUnDC83doHd5g6C5Z": 35000,
     "9XaEMkUKzUYyz7Cv34QrRSbRdNGcJQDdq2tYNhRQpnTT": 100,
-    "9Xd58nGWTPG8snkViM1Mhrit1N6nrJhkMCHJAhFLKDag": 21000,
+    "9Xd58nGWTPG8snkViM1Mhrit1N6nrJhkMCHJAhFLKDag": 41000,
     "9Xk9DcVSypdnTPsfySvnRR7yfabRtK4LnkbAJj31oLbA": 1000,
     "9Xmm4CQ4yf1hUgcsHcFtG2FoHcYh3nxspeALNJH6SAyR": 50255,
     "9XrakWh27tiTWHzVTE4Zp9G2aruSwR7nsbUfgAncNHLV": 239244,
@@ -224618,11 +229374,11 @@
     "9Y5SzL5WQUP8Hk8y7J3W5B15QRgFmtQNycxqJPMxJ64s": 23000,
     "9Y6tyYBBsbAaEHtbKtTJWxErs8XbtHh6vqtk9zYAXCye": 5500,
     "9Y75z2YGF7f3KazqVMekJhu1Bp63Au9jgYPCbjfxYcib": 1004,
-    "9Y8Hy6neWVrB74prnEgzoCJzTS1dGipKYK5dFiP87QGR": 249717,
+    "9Y8Hy6neWVrB74prnEgzoCJzTS1dGipKYK5dFiP87QGR": 219717,
     "9YBB57naJieJYFMYNQHgUpTpgANra697UfqPhrVYArVT": 1300,
     "9YMqYvx59oZz1EgXfer3pqk4fKbCPtcuQ1sTLUKcBp9C": 40000,
     "9YQ3JPoFTfDv8ULdBskVFpSfhmLsCovLsGk6DevE21g": 2733,
-    "9YRuj4oLtD4MkBs9CNeLSSxA4N8kvid2mUEAnnjiCLxr": 3000,
+    "9YRuj4oLtD4MkBs9CNeLSSxA4N8kvid2mUEAnnjiCLxr": 24500,
     "9YS9JuA7jMwUELsMX7xqqQdecvidSwsQZg4qyLjkxR5L": 20000,
     "9YTKG438mPbhU5McmQF1y5Qc6T9cLTx4xKXEqSfHGYcy": 1000,
     "9YTxdmxQFKKyC6zjmbu1pkARMQoELUAHFqBweCGmBSjR": 10245,
@@ -224631,7 +229387,7 @@
     "9YazLQGKt3YeMz6Ye18aptc4mEVH6uz8995euMr4vy9N": 18000,
     "9YcBxkVt8VRTjxHW8ANLuaQ29MLqCcq1tXjiV8abVArD": 14000,
     "9Yfk8L35HAeYeV5FkhNhfk71yACqWYnXnzFjr4q8nwUF": 380,
-    "9Yi8B3q1GjeYr6XqpBET6xz1B2pGF5PBGK1pAfByQ14w": 723268,
+    "9Yi8B3q1GjeYr6XqpBET6xz1B2pGF5PBGK1pAfByQ14w": 705168,
     "9YieinggvTR3LSNnCTy7ZStL6vQ36Cq2emk5x7LtQCxd": 257184,
     "9Yiz5oyWFZxkCd3jiMJYrxRmXdQZpKhTcipBdrtv7BGz": 65000,
     "9YjQq9REi4fFvfadXZ7pBSvFqsJVMQKqW4xXAEK7DaJ6": 500,
@@ -224652,15 +229408,17 @@
     "9ZBEgC7idKnZtvyrzosd7Y9VX4szvKbpWbN53jnJGd3U": 20100,
     "9ZGURUorZgQs3i4ZMAF9kYKLVRGL7tcmCv56WAXATPZo": 2084,
     "9ZHYB9UF1N9dSA1yCCoKT9F5Ebus3nCME5hEywxkyVdB": 100,
-    "9ZMEeHjM6f7thkEPwsRQ13crGv5DP8P3kEjC5pG39Lx1": 888888,
+    "9ZK3C59SsjU9H1FXJDvmuT66vf81JbR2iAsRkUq4JkJj": 2023,
+    "9ZMEeHjM6f7thkEPwsRQ13crGv5DP8P3kEjC5pG39Lx1": 1888888,
     "9ZQqG6k44try16cmn7sZJeVZ9vsrmSgcR2axveHEN4Yx": 5000,
     "9ZR7p3611cYopsnGWjzecb13d5Y4w6RgCZbNzsCiiuM8": 700,
     "9ZRwVjL4YHgdsDbEJvRKB4WF9xgi9MWjf4m76MSnohoF": 2000,
     "9ZWA4A7gxbsmt1koXqg8S4Xo7tpXLgnUDgi5Y8G54Gts": 8000,
     "9ZnjbfnMLuPsC7bxq9REbEecFQd6rPFMtb18TxGJTdGo": 45320,
     "9ZnzbjksZnLrnnp4riGbNVZJoY2Qvxpks5bp3JFaHNH7": 63363,
+    "9ZrJqhEkF4LsnLeGYQroZ9qNbkES5FRp9QbR5AfVGU45": 41390,
     "9ZyZDPEm6sbmpCqpuTRFcCfAfwwrSYU3aym4WXPv7Axp": 200,
-    "9a4UkqtHriGo7ejYMyz7TvLW6p2SCxxmMqU7cKn8CeeH": 15000,
+    "9a4UkqtHriGo7ejYMyz7TvLW6p2SCxxmMqU7cKn8CeeH": 125180,
     "9a6tqEZgKfrt8UFqFBa7r2kcctTtzYjQVGM6JjwZFq5P": 1000,
     "9aCPcz76cBp3SHZ6SHmaKETDfW2s2gZZAgC4HrsUjw3v": 5000,
     "9aDs3m2XuqKmqvLwz84Uv4Gt4BsgNddLSn2L5Q1m66zt": 4000,
@@ -224669,7 +229427,8 @@
     "9aKQ1kevqGxkwwjmzxXotwPEnafyQkjDuLNDnQj7Dpu7": 113400,
     "9aMafKGnpX2tvsV8R2AHhw9PWkfjy7SXykD7qRfYFEZF": 160100,
     "9aRdMesiks767hJuwnqm7HhJejjoFE9yvcBycrj32djT": 1000,
-    "9aZbEwVrH8tQ3fUGMEcptBSanuP2kzra3r91iw5Swdsv": 9700,
+    "9aZbEwVrH8tQ3fUGMEcptBSanuP2kzra3r91iw5Swdsv": 12700,
+    "9aeMBF7c5ucSBocYM9be1CJ5X4uVEXna9wpoMkCoJcFM": 3000,
     "9aeMBF7c5ucSBocYM9be1CJ5x4vVEXna9wpoMkCoJcFM": 6100,
     "9afrJjs7JSBqyZGApNffdqfsqXLSK7qKpUPX1J1mZrLS": 25000,
     "9awNBzcCWfqf1Z6CNjtLJ461AybYMoLJmhaMcTLbVysn": 7077,
@@ -224688,8 +229447,7 @@
     "9bpNKHqRYfgfE3xwgWoGenLgGnGEyaxznh2be9gxRBHF": 39900,
     "9bqArzvRNZYqCDa6uh18rCmcgZ7fK8sYTTkzCQPYXtBJ": 3000,
     "9bqJR7j83v6jR7V7RrLK7yQrvutJvPApmcy22toaxjc6": 100000,
-    "9btA5oESjbsNsUosdQMgThSNPDLo7Ydx8wHdjc5DzCZU": 5000,
-    "9byzMw37zf7EgtAiFRZSPXwiwBVEyK29dAzdtCsqAEaR": 59000,
+    "9btA5oESjbsNsUosdQMgThSNPDLo7Ydx8wHdjc5DzCZU": 5002,
     "9c8F9ZuiJSQNsgTZt69wT2DARWmQKXw49YTPyfoer8kB": 10000,
     "9cCkuZFmKBpoADnki5rzsdeVbFcExFkkGVfMhdw7WYmt": 22036,
     "9cHLB18zBZEUfikNa7QVtX8nMVpzLX8ec3UGUmS3sknc": 1100,
@@ -224746,10 +229504,9 @@
     "9exdEq3FGHczXe4AoRWAqJZGARctFcGeHwsHA5o5zB9": 2084,
     "9eztCTMCfC9hC77z9f2g3EHhkYvGm9rsEbjXMuWah969": 1000,
     "9f65Kn3jLprU4VRwNn7ZDe32o86PZM3NbV1P5QRCHYZK": 7000,
-    "9f8EdauUKx9uQErKuJiHeiAu7KSALHGtVmiNFyerVzco": 47000,
     "9fGp9HsnQGSBeaWghx6ia1VyWVLrETRr2HTnCrrxc1o": 5000,
     "9fH8AYKcUfKhNE45bFcRL2bm7RasaVeWTLyRw2xMMfPU": 3700,
-    "9fTAVC4Aa52DvwU8SA7JTRVL8u2nn4BS3g96Vpj6b6eL": 31500,
+    "9fTAVC4Aa52DvwU8SA7JTRVL8u2nn4BS3g96Vpj6b6eL": 36100,
     "9fVMV3xENFR1kBWYyv9beq39AU1PYxWaRB5dBXGE5pXN": 2164,
     "9fVrr1R36GkAyhnjMkaRNUP6iYjkXPGikf3rckKpUrp9": 188145,
     "9fcccPR2NAUD9XnNUA2vr3tzEHmTQADKyazGeFS3GPLT": 4500,
@@ -224768,10 +229525,12 @@
     "9gb92cAhDGXN98mbVfBx2esAouPE5V9rVHcWRsNpefVQ": 23500,
     "9gg1csifw1H4anVXXcEF8EyNw1xpNDsjiijrjYLn3vNS": 48000,
     "9gh4m6SQtTrMzcLUvzqMQBeJweGjDme4VP1Um56XQeX3": 24000,
-    "9gpH78CR3XehZhnSuNR7ubSDSoUw4uYtMnvQVFC5pKKr": 57500,
+    "9gpH78CR3XehZhnSuNR7ubSDSoUw4uYtMnvQVFC5pKKr": 118300,
     "9gt41AaMq9hJcqJHeVTUHGFq9YXJPnUub9Cr39gRHMcc": 180412,
+    "9gzZ3Q65djHjQppFvLrp9cNp96u6wv5gDYMJZUWKHLAZ": 5000,
     "9h18SjEaf1EyjTaJ7VpTJPXTKdUPmezvnBiFPGC8GnXb": 2700,
     "9h2ceiPitLa5n2DXWkMYe2NDUhBmpWkjcr9ZppLPA4Tv": 20000,
+    "9hFPXTPwh4sdmENFD1whWLqBNsbVoCG6EzbmNLudDod5": 1000,
     "9hGgjpF1Kob3U6JqcbRZ2cwDNDETxWhcUT3YPsgGD8t8": 5000,
     "9hH8RFsy579kzL7sdBoqfLpGAEFPEAmdPAsXmztXVqs1": 1000,
     "9hRaaZ2r11qG7k3bcdjD91Tmo6Ave949GhgT4dkuTEDc": 10100,
@@ -224779,24 +229538,24 @@
     "9hTRSmx16wit6PQXwk3je4xrzx9bFvSALVykqAS1DdN": 5000,
     "9hUG5MPLDeie58LraGzCF91ojCEeFaBfJpAk92tet8Vq": 100,
     "9hXEMPS3w3bkYqbwMswgHVJuXC5AJsgzBE52GefAa7eb": 3000,
-    "9ha7AvGE94vhH7RninN2xnx2FFStVxMyaZfGXoiKEQNk": 101000,
+    "9ha7AvGE94vhH7RninN2xnx2FFStVxMyaZfGXoiKEQNk": 22000,
     "9hcwMLqfPSc8f5VFwACjUBQK8CwhEsC1qAELo4XVTbga": 30000,
-    "9hnPNR5hjRNNpyNEJ9RB8fMuSWd57rZ79s7Pnkp4b9LJ": 17190,
-    "9hoYysqcyLoLcETmvR2NkGKRVqtc7c5WXyA44zfjHvZu": 18764,
+    "9hoYysqcyLoLcETmvR2NkGKRVqtc7c5WXyA44zfjHvZu": 157888,
     "9hoZKEMQ3iQn6y4fK2kXez1NLjLyB6E6s1zGwdqfnQDS": 1100,
     "9ht8Ft2yNZyzuFFyk12WJejZjL9V2vUDmscnn3TpU38w": 180,
     "9hwWV28vE84DdQKDmTsfznGfexgmSgEAzcdEF12icfYe": 5000,
     "9hyTB5fr4L7g26B9NsD1qHz2rBx6ivrBmogBUEhdY2n": 20000,
-    "9hyVqgZRYbam84cWvcAwbzdvykUVP3A86Yh7WBLUtR5s": 1500,
+    "9hyVqgZRYbam84cWvcAwbzdvykUVP3A86Yh7WBLUtR5s": 21500,
     "9hzHiin1gSbCSCmRSddoB7D5zzBr6rraeyHAHgyMXZc3": 14600,
     "9i23V6znHLhq1cGZSzD2dg8eeiyJdijwhLLNAzabsSHx": 1500,
     "9i26nsmSM2x3eaPsCVU8qrchBGFGj7CkPHVfdKBvqTxi": 1600,
     "9i3uYZx7Mbo1xXu1aFaEwqfSu1hQdG6tTJ57SWnk9Pn4": 34000,
     "9i4NH4TmqoBeiHhaoks6ztcRe1LUVghztFf3nR2L3wvr": 17000,
     "9i7KVM962G6Huiu8SiXfqQNAxhbwf8F52XTP6Mg7xNZS": 1800,
-    "9iAM77VVBCoRpFc8VBid7hoW4M7K8c17xrFv44ZezrzU": 428650,
+    "9iAM77VVBCoRpFc8VBid7hoW4M7K8c17xrFv44ZezrzU": 530650,
     "9iAs9StH8CVJakBUtUK5Ltd6gDCEvrzyQtXNH8Xe9uMo": 139000,
     "9iDnM2tRd4HGz4iZJG3X41dsRZRaHwGrYrcxjUkHQgEh": 1032,
+    "9iM2crFV7rZ6hpZXcLAJ4g6qCj6EvjKLJR4NgsYCi9BH": 400,
     "9iMFar5pgm4CChUXqwZcuRAp2cMiXTgMgGt7LV21hwzB": 10000,
     "9iNn5QdkLZDjS5pA9URkjDaWxhpCWVmvEPTU6X5xLvKr": 50320,
     "9iP5pHpDSyWACD6W3BVsrektH7exTe6BwERqjQWBksgv": 5210,
@@ -224836,12 +229595,12 @@
     "9jor1DASRrUUqPVBnNQJMJdH6JrRbYKLmUc6SREiu3oM": 1114,
     "9jquJF1RjjAMioVxUG9eu9Uug9W1UKaYvZNgD7MHbDcT": 40500,
     "9jsLDQCjYQjDR4aYyccTUrJuQezEzoVgE7nkDhkDfHh": 10000,
-    "9jscipWubAjV8emV1iSu6SnEpCCpUchMTXTofzT6omp1": 361655,
+    "9jscipWubAjV8emV1iSu6SnEpCCpUchMTXTofzT6omp1": 311655,
     "9jv8pwdjzREhcwT8uH3bNJKp4FLcjQh1M3JcrLA7YWQg": 72100,
     "9jvJ6s5FhgiQt4J6cgSW2V4TS1MbPbaVRGm48QhJmP9h": 99723,
     "9jxx9GayNDmJJA4KUTt8sVMiDWc838UDbn7zdwMnnMaD": 42500,
     "9kGyzL4XdpdHteNRKq3maVDrkQGqgzbw3oyFGQR3JSpG": 828,
-    "9kHutxX2jZiNKrjGLyr4JfGeTWh8HTY7BuajgwN6hWeT": 78800,
+    "9kHutxX2jZiNKrjGLyr4JfGeTWh8HTY7BuajgwN6hWeT": 98800,
     "9kRmt5DcTdZaidLajpoq6yt1if4Vk2zZwPZkoWpmW2G1": 10000,
     "9kT1nRNCRrFyXA4yTrDFGaSysCQMuztsYswsK68Rw2nZ": 68900,
     "9kTLpAiBDK2urzuveoUvJcHjMd8T6dSSWhEm9kGbcE5u": 12000,
@@ -224850,7 +229609,7 @@
     "9kZGGKpcJjDbGkqoxAvEuYdgEiR37Dq25TwKd9s1Z5YF": 15000,
     "9kcSSthE4FBrzicVXRNz3VcBzKtQ4czoEnVmisMbJRGG": 15000,
     "9kgfyMnMtB3ev4b6AABMZa8BizWwzcMC9U2H7CZtcwb": 30000,
-    "9kht2x1xCgosNkLZW5giV9QFUSznYYteLY2c59BkMKd": 10000,
+    "9kht2x1xCgosNkLZW5giV9QFUSznYYteLY2c59BkMKd": 11000,
     "9kjcMs42Y6Xc9ej2JG34Fz8BXnjridsd3gQY1pmK2WoL": 50000,
     "9kmJs5rHkPKYZjXwhDQVdnscbp5SsGm5PDqxZBqKQZrX": 100,
     "9kr8WVMCKMMP19LiXSVW61VMDaqkeB22EUquEEj8SUtD": 38000,
@@ -224869,7 +229628,7 @@
     "9mRDkCoMGArD84CGJR6J2s4SXdci7XXQyijq4KyUuV2q": 25000,
     "9mRJ3RUQU9AveH3ECFzVJDwqguvzzhwtv63a2mwR3yhy": 5000,
     "9mVLdzrUMRDP9t88pL59Ki28mQevP93g6YUjaeREs39v": 5000,
-    "9mYWAo79nJ4ZZ6rwRK3xTtHex4MgCSRTo3b7Y1SPR9mh": 60088,
+    "9mYWAo79nJ4ZZ6rwRK3xTtHex4MgCSRTo3b7Y1SPR9mh": 95554,
     "9mYmJdcx37TvfMrCffa7JJvaThs4bosqizrBbusLj2jV": 5500,
     "9metvuCbuPVqQG1TXeZPxveGAQaaRBYCEb6owUfRAmit": 100,
     "9mfbZPVw1R8s1qciqk8gkvetj2rQzwhTiX7HSstjLS45": 24500,
@@ -224882,10 +229641,9 @@
     "9myUDYwPMdVgL5nB9Jck64sWwvTHfbuT4N9TiALn61gP": 16000,
     "9n4joCTij1epRxdixH4qhrcmSQ6X1KsYhNgz43G7VgFq": 30000,
     "9n5nyWWeFwR74AysiahmXxzcMSJbVUCkrFmHn6tiFf4Y": 1100,
-    "9n8VkJMPJzypLWMVjjsDZZ3cQCNcpnm8boD1xjqw5SCg": 20000,
     "9nAYWm5pDtYEZVvUbEZXKQvy6DA5L5FWy9vMRTpbWgBW": 5500,
     "9nCGvqEQ8y74fgFzABRhHWbZW1eqWd6u5R8ZuPqQwYge": 3000,
-    "9nFfE14xmvS8xMwjDzeJnqWFSi3xZdfYTcS2c4wtr9xh": 7600,
+    "9nFfE14xmvS8xMwjDzeJnqWFSi3xZdfYTcS2c4wtr9xh": 45600,
     "9nFoCwLD4hcrYaSbXBRwtejZcXgKDNGjPdujy2YfHfhZ": 450001,
     "9nNYuXqb2jCQs7cLEQNix7xyQan9nBCXRVVXcZEKLkLd": 1054,
     "9nNouKGGY9rg5BY3WdnHWepKKKfYyV7DfWvWPvjQsmuj": 5000,
@@ -224904,7 +229662,7 @@
     "9oCJbYNM3pTm8XHNZwbDAQV22sieCCv49PQ75onuPXnz": 8400,
     "9oDRNXbXcaCVfM3PwY6DD5skxZSiXMP4K37cTMj7eeTz": 11900,
     "9oFV7KuRQsVHBnGG4HspGxWwNY7Tf6jU7SyS6PGDrZDc": 1000,
-    "9oKB35LgNQ9PBGPMgxq63kDVYrr3jb8D9NnyiEKQtRxQ": 132604,
+    "9oKB35LgNQ9PBGPMgxq63kDVYrr3jb8D9NnyiEKQtRxQ": 234304,
     "9oKHprpVLoU9LXo9t1iyymtnhyicKMF4xSCb5kxdGfNW": 500,
     "9oKiFwbbtaoythhLzc5UtGPvaDY3t6CVb84D8WvHSUsc": 5000,
     "9oQFm7CvhauPeHgA1PKzn4DsmQCKvaYFQg5zTfaKF9De": 145468,
@@ -224914,7 +229672,8 @@
     "9oUsn72vAvMDsNcjMNRsmfDsKDdMc8mx49Diqeq8V1YY": 100,
     "9oXj7t1nykeJYA8xd27LQ6QBBzTcrTUxNVD6sV7R8kyA": 12500,
     "9oZvwYdsDp91nF65GevpFcBC3WfVFWD8SH7aMpHkcCPr": 140,
-    "9ogEkcT9dYY6dc2BZ763bzWfUcQ9qe1DNQCM2xcjJ93L": 157500,
+    "9ofqGZBRZ6We4kjg66LMVnUwyxchpyTe3P41yT75iYbr": 28500,
+    "9ogEkcT9dYY6dc2BZ763bzWfUcQ9qe1DNQCM2xcjJ93L": 152500,
     "9ogdmCui9TAWY64ReY6iDqa2CWDMwQXdLD1uHsnrvedV": 115388,
     "9ohpaR19MVdUb9iVpPHVRZ7Gg1tDfQN6tbMepG2aawW6": 100,
     "9oi3edJSHTP9mWagxRterTjVGUv1pAYwaKngZcEcZr9N": 2000,
@@ -224925,10 +229684,11 @@
     "9otMSBKifSA2pW1UJ2TGChfZTNsi8SFxEiTEefrVd1F2": 50000,
     "9ovp1LXqZq4tA7ajU2N6GiLuzxW1A8LCBdN8fiWp5GZc": 506400,
     "9oyYZ7dNvGEGSQWszW71ZMEdHBLDMFTw6rYvxPYAFDHw": 100000,
+    "9oyjaFR42rF6tSuMV1xtCgURs8AX3KwWi1RkUWpNQvZB": 1000,
     "9p1cZRSuS9xpcHAfaCZNjdPgt8JCcRG1FtgQvZEZe6nX": 10000,
     "9p2qiUkvTAwoMk8freZFs2jvxgvTBw2xch8wkBdKwZAC": 40000,
     "9p5nHsES6xujFR7pw2yGy4PLKKHgWsMvsDHaHF64Uj25": 92370,
-    "9p9F763CevsgR32cpvC1H9sQn5qsEaG8NcU8oKvxR6Mc": 5000,
+    "9p9F763CevsgR32cpvC1H9sQn5qsEaG8NcU8oKvxR6Mc": 25800,
     "9pB5xEFS74yRAY4WnWgz9seMd8vcyQSGFdSACtWPfmSB": 1660,
     "9pBtdhWm92jjVC5aPaigk4DjujqZ3BsSRmyujjFVhDyT": 15000,
     "9pH9gpHeC8EY4Zw6VbUa74HWnYQUpasd2nPkZTvxBvLe": 51230,
@@ -224938,13 +229698,12 @@
     "9pYLpAdARPombF69kvwp6e9JBPZzhCV8kws3r9BfiAUA": 88440,
     "9pbEYQT1UkX8iyxnX4CFzjJGhGi6RsL8Ys4HxGnHjPry": 10000,
     "9pcwYNSbz1gJEhs4qW2QtAUBUQg7VPtd3nRoW6dyJZWX": 12940,
-    "9pjUhCVtbAEcsu1dTaoqDu7uwAThdLij7LMbFishyufo": 66700,
     "9pmborYfjsdCAZq2KWftqJLWs2BAFSd716vD75doQrwo": 9745,
     "9pnbzfCBRGoGw2ia1Y5ePV4U3Dde8jgdvbt8aXiP5grn": 1011,
     "9pqV3PfgSEeJw6CBDcPMuBNp2YkL3awa7bvqm2DZmh4L": 4500,
     "9prKTP74m7DHjUVtLR5aTMzJSzYzoZucQTYY5EWz33gu": 57200,
     "9pro8LpNM3f52LvWAQsxdR4A4kPzVm4YFNmUhxm2FdpZ": 1500,
-    "9ptXr6FkRvWCeJg5pSHVa9XPoFoJySpyg3Ba66bPX9Td": 40000,
+    "9ptXr6FkRvWCeJg5pSHVa9XPoFoJySpyg3Ba66bPX9Td": 37500,
     "9pvXtqvETCX3wHaRDmDcaWP5bGVMT8Tyt69jMV7F2NBQ": 15000,
     "9pwkN7L8KjYZLp4Rg1vdsCKDxqGQfK2h7GX6ZzvfV3gE": 6000,
     "9pyGQDBgXddLGriNKAGS2VyRav9P6stddgHe5WB2gPw9": 1000,
@@ -224966,6 +229725,7 @@
     "9qd3QB9N9KH5cujoNyFYh93FXBpCddq8UPFQ3nt3Frik": 300,
     "9qf8TCzcLhPXdibFWWQxKLk1fuHgTG3hoJSBMLcV4Dnx": 408454,
     "9qfQz63An1k8iMNqjvDpmkY4RRdhr5K5zfsXuAoReACR": 13000,
+    "9qhQBDTsmBCW7x7cbz3DjD7dfWVWiQuCVeeQMM59kmV5": 24000,
     "9qi2TgS2JM2vUQ5v89KQ9Y89bceAYouQRxHK2jGb1mEj": 102500,
     "9qiQA9k4ncx6Yqd5Aqr6BHNuGWMdQCudrX3ucWstwyKG": 640,
     "9qotsUYsDbNtyT1MNy8Ju3aa5ENS2DkUaZLPtHMJPaNq": 20100,
@@ -224975,7 +229735,7 @@
     "9r4fCGCPJ5HdxcLNxnMB9VvqB8UFsyniZXRN6353zjC6": 1000,
     "9r4i9ZsqnQLVZSdGsH8eEckf3DiLuuiJkfbv574FusKb": 13997,
     "9r5KBA4zPGxV4LZoCYhwuTPEFR1Wdj89UptHobSJ5LS": 18000,
-    "9r5KBA4zPGxV4LZoCYhwuTPEFR1Wdj89UptHobSJ5LSQ": 369620,
+    "9r5KBA4zPGxV4LZoCYhwuTPEFR1Wdj89UptHobSJ5LSQ": 420800,
     "9r8M5gt631QSyg3cbMoQrMytD76DopvGY2kL1ZCr68uQ": 5600,
     "9rEhE8RArBavhLgmqwSb7tiYZF2U6B8M7WJBpdpAjxap": 5000,
     "9rF5UsLE9ABypA6r5V75BDBsFohh74eAKW9GYaKVcucx": 5000,
@@ -224988,23 +229748,25 @@
     "9rdJPqVc7w3TcHgU8QnhoXTnnoJDNFKu58GxcDwwis4Z": 25000,
     "9rgAAS9M3k8jTHgHfv76GRJgu1HUgiMVm5mpqxzmhjN": 6000,
     "9rh9xhjj28qQc3Km15ZVkUbYQM92fpbupo1Tr1DBBVny": 2500,
-    "9roVZb3Ap9itcB3APzrTbhTtk19iHd8u6Mp8vksizntt": 15700,
+    "9roVZb3Ap9itcB3APzrTbhTtk19iHd8u6Mp8vksizntt": 63200,
     "9rpeajyMJnKncdXMwig7REGdZ4GyPuJXqxzAq3yYxKsc": 15765,
     "9rsUrhQZ3YScPBw7ZTr8nVKRR6gwEA6rxRYcgzANnZPV": 55306,
     "9rsVxZFCyHgeSTsN6Ms5m6o195e7W4shPXEDCXN1Qf1o": 17000,
     "9rssFRVHbx9mezXqBU7Dan3F7xDudYkDDq4Y6oH7Dr2R": 7500,
-    "9rwLydPfAVBZ76G5YDR2eTkeqeCNXW8NbPmrN17koPqL": 106000,
+    "9rvzpdVnrk1b4oLkJRfVb4ZsTTKUAvcJtqWBHia6Wesj": 5000,
+    "9rwLydPfAVBZ76G5YDR2eTkeqeCNXW8NbPmrN17koPqL": 110500,
     "9rwToTggbuuEEwdxaqA6biodxbjNdosrHNtV4vznWYMt": 154475,
-    "9rxhBbYdBVayGMcr388yuNqAbCYhvhNNtXmonmFDGzh9": 700,
+    "9rx8NKEP1XxaE9SWwTyspoT2nGxzsbfcunB5CcjBDe8J": 10600,
+    "9rxhBbYdBVayGMcr388yuNqAbCYhvhNNtXmonmFDGzh9": 5700,
     "9rznMkZbCpGwmZrRB2rabg9goRAS6yES2SxBKv979xHN": 3096,
     "9s1mtkKwvA7pAG5vus6HscSBoZDsUQxEnaKAUvR2ZeTk": 1011,
-    "9s7pjVcThmk95qufGzCWmKJSibX1XwzKLb7yQ8wg2v9t": 244183,
+    "9s7pjVcThmk95qufGzCWmKJSibX1XwzKLb7yQ8wg2v9t": 224959,
     "9sBVAURXRZbcjCxF1KrbJeUqpWsRwtYMcHPrmSgMwMKa": 200,
     "9sF8J5QdUrjK5FsompF669KU1JbcH7qLQts4Yf3q2X8y": 1000,
     "9sHyBZ61AAFrry4hkCQvEKDEF6QwVhEzMsx7XWfrN4zF": 2084,
     "9sJ8NZJW1N2g1ZK4nnTRwczDA3ubHbnKb71nQ6TnC7JT": 2751,
     "9sLiVTgusTRLULyi4T1KDD8gQDYDJZadjm3BL78UCLjt": 7000,
-    "9sMBoBz7pur3enMk1AsRtjeLBoDYRSS9HkNL8nnEeyTF": 33100,
+    "9sMBoBz7pur3enMk1AsRtjeLBoDYRSS9HkNL8nnEeyTF": 127300,
     "9sRDjHJQzi4oPHzggSEt9kjFy7Kgv4FeonNhHvrWfo6n": 800,
     "9sRy9tETkbRHHnoTLz1BzszyHRi4zuhwtupNXtjwzqvk": 150000,
     "9sT3crqYnpTLLZ8Le7z7equTw3gTMCqBSfTaiPRdxtm2": 24500,
@@ -225016,18 +229778,18 @@
     "9siQw3SEw9caxixJrm7ZkKQ8dKrRLDWo1LWii8DsHSLK": 16252,
     "9sidJ5qw6U54tYcMW8ADVMAx3cXX3ai6Dno9gVo2EvBE": 1000,
     "9sjvRrrg3Mqey4V1CyNJzQbX8SaUr3D4Npstm1828Bc4": 10040,
-    "9t2eDp976H3e4X2LSM8P9GQBMAPmRYd1aPGL4uRrVDM2": 5000,
+    "9syTWRebfMaiZ9FRt2CEcgVRbnfd49F8RkEFinYppnqs": 1500,
     "9t2fKqQxREnACjJP4ppb4Zj7gwy3ZGeWNd343ikKUhrF": 27000,
     "9t44RBb9tbtfKK8Dw6okXqm66wCcniFaPTBnfdcocJFe": 102,
     "9t5CpaHFWr2kYHtrfqTVv3SoyJbQVHf798rdUFsiWRBE": 200,
     "9t7uacLpD5YfYJS75QqsGsxa4cNqRX8Nb5qLP1jA3AgH": 3000,
     "9tAmy9VQPdnFgEth1ZCBzbjwpkgrjNmE9dLW5sTSsLS8": 1000,
-    "9tB1n1c5LLDuFgn6sJkaEe1n7ekr1VvyBKpwvQFPtf9x": 36000,
+    "9tB1n1c5LLDuFgn6sJkaEe1n7ekr1VvyBKpwvQFPtf9x": 42000,
     "9tFM23LE7PysKgpwL7viedXLbpHWbDuf5AMsy8a64hTo": 10000,
     "9tJtiXA8VPbJgDThVYUtrqZHpoGXuUHaxUgEVfUW5KcK": 1000,
     "9tMYpJg8vX3deKmx1b3oag1iYeUisM3Up749Sydv24Qx": 5000,
-    "9tQysX6arTeKrouCVj6XygsnD5ymqXimXHC22ndqHHon": 8600,
-    "9tVZwPcMLiS5GHZCPrSt73Zg121wVs3Y1EcABNH6SK1o": 359400,
+    "9tQysX6arTeKrouCVj6XygsnD5ymqXimXHC22ndqHHon": 70600,
+    "9tVZwPcMLiS5GHZCPrSt73Zg121wVs3Y1EcABNH6SK1o": 411300,
     "9tiQbKDMjY6eTqM8k4aHLymFW1KyHkjHF44KtmexjULk": 25400,
     "9tjUC8yGxMN96zvJvXjrXjdiwUtxHZhuTHexoH2WWNZQ": 19900,
     "9tpFMcBoaWx8TyBYhFJdQ1GQPiMXuHRpV13vnYz6xcQ1": 10000,
@@ -225053,7 +229815,7 @@
     "9uKfqquyU4YNKHVMZNMm6EZfs24DsqNZ3YcsRZdvuuLf": 175,
     "9uKopp9ig3bvnXgCuwYT8JGCuX161HjJZagVBfVpbyZN": 17000,
     "9uRDDZWWH5cA9aofVZpWbjLbjeX5Wcqt4bxHRuwXYSCb": 16000,
-    "9uRKrPmAmUPn8771ZoeEd1qWyPMjvgj6gMQBQStDHN5s": 68000,
+    "9uRKrPmAmUPn8771ZoeEd1qWyPMjvgj6gMQBQStDHN5s": 69100,
     "9uViqW1w8BQukGkQMwBKmfHEsCMiNd8BLFMDqqj9kmgo": 5000,
     "9uaH4wtTATeWfA8o7tCsZc8x6z7pb9DPGrk5qgQToC7Z": 10000,
     "9ufFMQMnnqvyuFwQFY7C4CcXBLzaw6gj5StV5qUPQZC6": 7000,
@@ -225066,13 +229828,12 @@
     "9v13TDcn6AUJTEq6qRucg2WB8rEg1xi9AFcScwCosSgx": 50000,
     "9v3WxNqTJJpA1B3cdwhiEUGnDCV2zp3vfXHiYmoUg8e": 2000,
     "9v4Bs8KVi6JAutwvSc2539vmr2JyC2KciP8uTV1qaHLk": 831000,
-    "9v6MT6zvTK7cbUJzMefxWLFHq7fPRBcvaaBiVGyUvacM": 7260,
     "9v8v6V7uPX8ZJm24aRHaRxjo6kS5V5oV8tPtUBCC3DoF": 1900,
     "9vANw125CHu9ZPJejnXDaHJso4qJ6hTmfSB9wMwWVXcU": 6800,
     "9vBhCtDkkvPtrFfTC3FhzFowBzz5SgbuGsLZR2iibHpr": 5000,
     "9vFWGfKGTWJBMmEw76Frw3NDicFF1wNbJ5qytAryeiEQ": 117275,
-    "9vJZo7FtYKhcj7LTD4jP5PEoc6yQdc5AMKZk5ts8oy3B": 105050,
-    "9vK8u3WdCkDnSQRukrNDAGMz77GGaXxoode4m8bDAhbN": 5000,
+    "9vJZo7FtYKhcj7LTD4jP5PEoc6yQdc5AMKZk5ts8oy3B": 96050,
+    "9vK8u3WdCkDnSQRukrNDAGMz77GGaXxoode4m8bDAhbN": 5001,
     "9vMDsbDLap4QFErt4FWDpM7ZgSaz5RhV5zyffpatSExr": 100,
     "9vUCM2KkrsseunED7bWQGJztmNtHWwj81TM468kwzxoL": 700,
     "9vWA2zBLkz79wV8Tqavn5MKU4eW6ZXxW8LE4mtWEbyBQ": 9000,
@@ -225082,7 +229843,6 @@
     "9vdMG3Bfgwd4QYxUuteu6ZAw14aDRorV24KbTXyeCph8": 5000,
     "9vhGAVo6rNTNPZmAbWsAdMzy9xs1b8WcRRaSdzyB3Q1H": 100,
     "9vm2x3MpKokAoQsz53n9drenzGcgdrywxkgfGLFyKt5W": 8900,
-    "9vr3KgimhoS7VA5AZtJakbq3BTDFZYHsYWDSUynAwbQs": 1000,
     "9vrWsd31jpgGj4PAJzsr1htKtdC94KPyGgLXzCHxQfnM": 44357,
     "9vtLga9rHWjy1Jb9PFYC1urWf9d6dyp9Mk6neVm13YNG": 303472,
     "9vtsAhJFJb951zvydikyvXEG5sPsoQ6KnetkAnQbz3MQ": 9800,
@@ -225101,8 +229861,9 @@
     "9x75veQDtBoQqTnHcPbzgtyYx7a1V4ojxA78rd256KNd": 2800,
     "9x7w4dxZnZtZiuxMu4jt7zbP8nL6oV71K8PGx7ZzbdBY": 150000,
     "9x7zyJw2QeLMiqCcyu3FHXSoYPyY8Uihkk2Lb5MtTfLD": 10000,
+    "9x9Gq79F8nhUobEvKqtDRoRe1YKqY8WnaPNyyr7RiJpA": 1500,
     "9xFf1vF5ZYMwoiU499nSQFxo6NRAE5cLvwNvqeecqjah": 37200,
-    "9xKMPFbjEhHrgLK2Lzsxw2jvMiFvbiJ6dy1f1swTbw4R": 100300,
+    "9xKMPFbjEhHrgLK2Lzsxw2jvMiFvbiJ6dy1f1swTbw4R": 137036,
     "9xMBoy83JM6TKoV1wHJMyVjDVsV3F62iqBDSVTnNNkze": 100,
     "9xMdQFZ1BejoXH3Dn3Af7jrZ8vbNACPmTSCWVjhc5gn8": 330900,
     "9xUt2xk6M7rq4uedcTwMu89eTquVaN9drnztPcTFXHzs": 30000,
@@ -225116,6 +229877,8 @@
     "9y2NSErV1pGgnSnWgYZZXTmTnjwftGMjpzRE38NdNu4H": 584,
     "9y5fJyeQpkXgpRDfGrH6wwWr9bhi5ZwvTy7SapENeuTC": 5000,
     "9y7cNofvxz8DSH7pjYveYK2f7PqfD4qPZ1aibdALqYuJ": 100,
+    "9y8q99NZXGcBpmzJDQnVkVuoxFmRrLidYQB6ifEp4Zjn": 5000,
+    "9y9RSuxTxPzFHmj6wJNdvB3fboWPEzvhxWgo3j6AhSrw": 5000,
     "9yLKaRhs1G7MBaM4WHdcHdh6dStZAGWfNKwuGgfEUjXg": 3000,
     "9yLbrykHHEshBeciDrLEfQWabEeK1i7srrmhAfGfeoyv": 16000,
     "9yMPgRwBZsb8khPt5Gjmaeea5Civmh2Zch3w2dAsLiYv": 5000,
@@ -225127,9 +229890,11 @@
     "9yZSj3KQ5Ynqn96Qyr8ag5NNTFEbt6kfBp6QiDSsQugc": 1000,
     "9ycH5om5F56L89TE9osXq6piX6xfoiGoNDuSTUVfiN4y": 31260,
     "9ycxCu4C8Smdzsm7ABaDRDG9oQGxun1Y9fxrHLTrzgDx": 12000,
+    "9ydzUh8YZ9vwESLoN4r4Gfx4Edk8FGhecKRYbfVhquGc": 1000,
     "9yeqiGqdyAGcWqtXERTC7tADJACiqpN2hj5Z4niNFRhc": 200,
     "9ygHmDJUfznGWwtD4ymEniSLpVCj8SfXS9CAssgfgwnc": 100,
-    "9ytJN3EPwARRytAWfjE8EnNJs6DuZtoNj1gaugtEdrHc": 14000,
+    "9ytJN3EPwARRytAWfjE8EnNJs6DuZtoNj1gaugtEdrHc": 6700,
+    "9ytJN3EPwARRytAWfjE8EnNJs6DuZtoNj1gaugtEdrHt": 10200,
     "9yxTiGy3Ft8rusn1HfaoGhMhpBdTYHcyubPZt93yk4QK": 2500,
     "9z22ut2FfmP6wnXGnwCpwULqqU1fCG1nuScWVTuhd8xA": 19000,
     "9z5GugSUG6xvXkjBrDAvtTtSdvY8qGhBhcjV8HXT8jn": 4000,
@@ -225151,7 +229916,7 @@
     "9zavqYi3hRMjcHKeBBbD4MPo8Wti643fR71tLWwPsZjh": 247277,
     "9zpJHvACXNeSV1ssCE11CcNbp63RZtML8RZqb71jqSdm": 32000,
     "9ztTD1Xz8Xvs6BfDTsvqkuDWMJ37gsu6s2McfLDf4B7r": 5400,
-    "A14paYNyPD7UZAPUW5UkX3cbpawcFKsfNumBUGNW5EdS": 25000,
+    "A14paYNyPD7UZAPUW5UkX3cbpawcFKsfNumBUGNW5EdS": 25100,
     "A1BM3vfmtGUgCyD5Hs2dfSeGzzzU7V8c7ehZzXnba4Ln": 3000,
     "A1DT3ug1kzs3frPRWYruZLdj3N5MZGLduMgZbzPrfgaq": 4250,
     "A1HSqd8zDfZ1qms2BLXqLQ5T3UMvaBtR3hHsWQ5ASFv": 1159,
@@ -225161,20 +229926,21 @@
     "A1PecURYs3LCGRhe9hWHUWJ9HLrXdcHLgMZqckkX4wg": 10000,
     "A1RHHaAWNBDcKo7nbrpu4VpPGNfHix36qcVjoZDjjZv9": 10420,
     "A1SbSPQq9TsBFC5DwG9THScBh1y7DniZwhj287o3oZyk": 2000,
-    "A1SghnXWAveKvGQtyA3LPWMZ9N8MrsuubvQXHEQzY71c": 6500,
-    "A1cjU6pjWK6Z7TTRstS61WWv5VhECu8AJ9djZMwz3N6j": 42000,
+    "A1SghnXWAveKvGQtyA3LPWMZ9N8MrsuubvQXHEQzY71c": 23550,
+    "A1cjU6pjWK6Z7TTRstS61WWv5VhECu8AJ9djZMwz3N6j": 36500,
     "A1fAHFV44ek7j1ZQZJptMCG2WSUVFhYJ3RqKDfJAt8z3": 44000,
     "A1qT2jZFRpH51ZLnt8vm66Bb4aSFLkz9wbGK7GyuYiqG": 29224,
     "A1qZQMNgxUbRcEAyNEwNUfekoBUNwH4LJiyLhwrHz1ot": 800,
     "A1wo4T77a5xUMkkzUmFLeEGfKZCMPh2F6N9tPPFNdNQh": 32000,
-    "A26WDyNgJn5GFFr1vzTiTDbFwts7784pPE9fuyZbJQyr": 29400,
+    "A26WDyNgJn5GFFr1vzTiTDbFwts7784pPE9fuyZbJQyr": 17900,
+    "A2D71VigpGVJfmvmSH9H3mra1tFqJ76FtCoMPr8sfHLL": 32900,
     "A2DqBTYiXrN1BYzqVgXtcbBMGu9VTNpiNKjXnzpZapyG": 110,
     "A2JT8rjAJtGuTQFVSSxRR5qEGTpyMrFyVZBpVHkMoMcM": 500,
     "A2M88L8fs8kJ7swftHVsvpEnJmQTWx9BmmE4LjQKxtsd": 18500,
     "A2Q68BnNJiKAupXSJcBhSsi1nwFM9PsBiUFd4VUY4JoV": 10000,
     "A2RVMbAPZVtVosGBXEivSwV5XDfA1sweN7PVEPCWMM6L": 9000,
     "A2VySGPXUXxAyfHtvAvypej2zxQ6Vr6zBWSFdPXup37U": 500,
-    "A2c9jg7PVALixNodL6LMXSq3jWBugBwDqrANbuyTchAj": 20200,
+    "A2c9jg7PVALixNodL6LMXSq3jWBugBwDqrANbuyTchAj": 200,
     "A2eCYq2r4m66mPde1urU3sE29rxQaZ3DWAKpJrhKsrny": 75500,
     "A2hbC8A7jrCTCznKhnofXTKwoBdrEqiwpZoXX2jsB6N8": 14000,
     "A2wujcMCMpYw6pr6g1Q4dwQLzxbpoxosqdYjFEV1QfCd": 8100,
@@ -225183,6 +229949,7 @@
     "A34Ayxgam8PRihSYquhkv9LRdUbxyqeqGnSGZkfJrFNr": 5600,
     "A3F9MhStFzapHjEaS4Y3MdPgYCebE27s8zPVhUZ4UBA1": 20000,
     "A3Fj5cGRb1qTVL1A4N42soak9Xu1Ah2DwD9bAnx34GVV": 432010,
+    "A3Ky4o4qzBfgmghj67ZxCKYYeUbBMwkBLXGhfna4BPgm": 5000,
     "A3LXqTFqoDb99rAhWui7z5QbYLdp7bayXSRdgC4RFNsz": 10000,
     "A3LmDkbkaE1n1pCymrL9Vn2RsNYuVjSuprJ7tV1Zukc3": 5000,
     "A3NRRMWoXbY9iniLZTYWaR2dAz5omkTJ85QsDu4NRrr4": 130,
@@ -225216,14 +229983,15 @@
     "A4hR9hrCfBTP5gJJak1FQd2BdUqsCrdjMy8hf8N2kkxe": 37168,
     "A4nGqp6ZpQchByfmtzPWf58h6s1KfHLeNJxkSQC44JGK": 348765,
     "A4sZoMq4XneWKshfSaw2a5CX82K3DGRpdTkJfxfarm27": 55000,
+    "A4t8BTrt6yBSUTQnnPfAqqvZtThUDbD7xFhf44cyBnah": 5000,
     "A4zPvrNxLjkrA7FfTaFgytLWrVSLyepAdx3mbYmF2Nfs": 1600,
     "A52dpB52mGzdCrygtrWmDrXPCK9cqrf7k3vRrToWGUrE": 200,
     "A5DdXxCKPw3QKWVdDVs7CZkNugNUW1sHu5zDJFWxCU2h": 400,
-    "A5FkBauwvkaUUQjDK9drSU3Zc8HhTPDhDobm1Lzefo6s": 752606,
+    "A5FkBauwvkaUUQjDK9drSU3Zc8HhTPDhDobm1Lzefo6s": 946014,
     "A5KGrhUZYq1F4cfAqXFuvAVFndvS5Qb1f2pmi73EbMqH": 10000,
     "A5M1vEW19KgzYZrE3KsKRcz2pAwiyKuDszbzUuVNiqVN": 689050,
     "A5UkoNELUkgitZBK778VnoDgemjFQDqTgbLmqx1jTDVM": 5100,
-    "A5UxYKR3MvMX8BroNm9s5HemHuyWaJurJeXfUS6PdHqd": 123362,
+    "A5UxYKR3MvMX8BroNm9s5HemHuyWaJurJeXfUS6PdHqd": 132926,
     "A5atioS7dk5omaJT25cqizGFFjkxBCLjcnTfqnKFMu1V": 6000,
     "A5bVYJdAw65NBQU9FQSQi76Xj9fmiHPWRZtYGLYkCuB8": 109787,
     "A5d9xRH1mbmgHjWHmq1XXnn4mCkDvB5tYknwZ4yj1Mek": 100,
@@ -225232,23 +230000,26 @@
     "A5kJ5ZG9HLqJXXxEWj8AMhhdZKRwqwHRpULxn6EML2gT": 6500,
     "A5vnZ8pnDV4SB4F3F2r8CqZ6R4oV8TkKk2bR7oB3Gw8f": 1000,
     "A5wVBYPH3dCZYubHcEYUFRsJWF8rosiz6yzZhudCmbNV": 900000,
-    "A5zBA4vsY6wrtMNVmJLXxuCQK5K6oHgVMXpxfKxmVgdX": 18500,
+    "A5zBA4vsY6wrtMNVmJLXxuCQK5K6oHgVMXpxfKxmVgdX": 78500,
     "A611pB5mbYwjG9qUdaLzmuoynfS4WftkEawYwGaUcCUF": 3126,
     "A66qMQNqS8m3sVmffw7NcYV4w3cQW6hJ9zzL5oHEdvsD": 31250,
     "A6844EbLWgEgLH1FV32JNij6CarBXz556n1FmjJQqiYu": 184421,
     "A68wR3LXe5qpxUmFyvsGCixXf9JaGWgVz3FEsKfQjwUS": 5000,
-    "A69EHZuFtYcSPRzUi6Q5viW97XgB67bWE7aEkMrgGEvF": 133270,
-    "A6FNzG5Tkr7h8pfGa6a8ifA2etyXhAWZnh7kKBANk79e": 388200,
+    "A69EHZuFtYcSPRzUi6Q5viW97XgB67bWE7aEkMrgGEvF": 123270,
+    "A6FNzG5Tkr7h8pfGa6a8ifA2etyXhAWZnh7kKBANk79e": 283200,
     "A6FtQLsJkvnhmZ1ciNvfSAvSDxWAT1CsPQEXwYbifVN6": 100,
     "A6JhQGZXDCmJc5AqF3Sc7GRz7hFZeUQ1ZVA34aF7zaen": 3000,
     "A6L4anN9nedZ6MqjrSeBRBa7E6s3FmEx2cNrs1rtwVdH": 73500,
     "A6LyZhngZYB5q49RcVQnfhCSHbbj4cmCUFZtiQSt7XVN": 58550,
-    "A6QQLjKFNvBbdmktqdiM4rzNbmSRGqUGy6Hsr3YEXtbZ": 82008,
+    "A6QQLjKFNvBbdmktqdiM4rzNbmSRGqUGy6Hsr3YEXtbZ": 142304,
+    "A6QTnELBPRHvoVRkhY4LRG6Zyxp7dUqq7zfor6XQrBe5": 4000,
     "A6RZFkEMJopTh3k8E1NCCrmQauqWtCH9Kp64Mx1PFUS2": 493043,
     "A6W6TWarf8nkdTRzEvDjuL6VbiCqdDd3aoDzDaD31oSV": 5000,
     "A6Z5X8TRqdeLhsc1pvKn4dfBKmf5RnJpYU54J1wYkZCp": 2000,
+    "A6ZjxTAhAbJWuizYyoRurym1ZqMYKUJsVoZsHoaEX81e": 1000,
     "A6eoNCq16EdHrC2HnAewvpiTfUXd2dGfEFfjuwHiTSUM": 20000,
     "A6iCUQEcA9k7U72ZezBgPLxDKcoWXQNeJQf7d4SgtFv2": 9150,
+    "A6nDVstMAFF12GpiRBsKesqmpa6U2ivsUoWBRDi77t6c": 180000,
     "A6nKLJFScAgdAQNZ3cR47HH2S9WsxPkKgCrh4TaBpvjr": 911956,
     "A6o88pwgb24Ri3N6UEGALLGhVAm7vrK8fJYHxmw91JSC": 113,
     "A6pRtekC832bCTSpoHrovsCq7qpvs6u1vD7zcP8HqDdE": 17700,
@@ -225275,7 +230046,7 @@
     "A7sggpQHp5RKqEboUmundEhz2SnDKUAqC1JWFQhSMTvv": 10000,
     "A7vqUYBmgsTW3VoKbuUmcXNqW3yWB6zfsgNnDFoD7o3J": 6042,
     "A7wqQcGnTvCWCVDBsvqGbvo7jFL6JutB8cBu8K21G8tX": 2000,
-    "A7x7RpXjuMap62G2P4SwCVG8JF3KBhbFLT2opYo2mtN7": 300551,
+    "A7x7RpXjuMap62G2P4SwCVG8JF3KBhbFLT2opYo2mtN7": 43551,
     "A7zs4uAanJwkFeuasLGUXBcngiciLKSGG6dvDm1Mupx": 2000,
     "A7zs4uAanJwkFeuasLGUXBcngiciLKSGG6dvDm1MupxJ": 1944,
     "A85hoWPyAAdiDoF17kYE9AkWoMaLoKAqg8VYUn4QRBPE": 14900,
@@ -225284,7 +230055,7 @@
     "A8FJ7zu32K4Qp549NFVyGJREWaGxZnayj88HNwLEfHLH": 10000,
     "A8FXNtSrUBubrJfJL2MUzA9dtNippD2GWAtTaZ8aj5yj": 73540,
     "A8FkpDw1r65hq5E7mtgsbs3MpRL28T6Jpej8LW5ksnmm": 5000,
-    "A8MtjxeTaZPdemvTyCUMXwfot2W9c66f4MC8qi6NsW7R": 10000,
+    "A8MtjxeTaZPdemvTyCUMXwfot2W9c66f4MC8qi6NsW7R": 20000,
     "A8SDAu9VXQPCatoJD7haQxkWGkLq8mEiWerAVa6mSYX3": 5000,
     "A8T4gY1X8mUGP8ctHAXH99acrtSxrJcL97HaiUJGgGbn": 5000,
     "A8aFM8e4wbvpx4Mpo9ic3ddgpDdiEK5KTMnHDBbitrnz": 1500,
@@ -225302,7 +230073,7 @@
     "A8tTtMfnAnET3tRVKCycxzj8vjgxGjhTZRRtCut8BDAG": 1900,
     "A8x9hSQzkGLS2mFNCPf3QyDpmxqXxfaRQKvSFF93CdKB": 5000,
     "A93NcKCunNQ6jFFMDYQXpUfLUaYUYaLiJ5ErWdA3Uhmo": 1560,
-    "A95RphZoQ8R1JfXzHgjKY5fjgrnsJQC6JEb8C1opMFtG": 53593,
+    "A95RphZoQ8R1JfXzHgjKY5fjgrnsJQC6JEb8C1opMFtG": 63493,
     "A96UrXku1EgEkKM6taL6YRTVmumYidR3nm3GuRe1g3H6": 5000,
     "A98u2PPSyuNNwThKsTj3qzBD7HXtL85NspAUJ4492yuV": 314,
     "A9CqdGEi7N46xoWiwHcx4QqFpFW2bfagxASCMFWx4Tjb": 11200,
@@ -225335,29 +230106,29 @@
     "AAaE26csaA8jYWqM7sQVWEhL499bNME56FtXwZqn4aev": 7500,
     "AAafds3Udeorvs5FWopSLyCwQHUeNYUZ1A6v72dWbZzj": 1000,
     "AAb2BK1rJGYBiLabAHzo4fDkXCbhCSP1j89UYj1ow19s": 25000,
-    "AAb81ArrFggFM1cTEdjWJViRwSevQUjB5Y4i8iAYEAf3": 5400,
+    "AAb81ArrFggFM1cTEdjWJViRwSevQUjB5Y4i8iAYEAf3": 1400,
     "AAdwyxJvREYXkazzqdnVD5muNLqnPr6WhQ35m7mRNeV2": 3000,
-    "AAeiSgeS7K7s6iNCCKXqPFDYf7NostDFGNTMCBGSUct3": 4100,
+    "AAeiSgeS7K7s6iNCCKXqPFDYf7NostDFGNTMCBGSUct3": 2100,
     "AAhXrRS5eBM7taUmMhnvL7GBXYhFp4Nha5w4d8oDq3GX": 4000,
     "AAiMRzFNmKth6JDSYKPaegU6uaSXdp5s5w38MmLoP4BR": 20600,
     "AAjYMvkCRtbiCRFAvMstDo9DjXmcQm1EsySkt4BVBhYM": 2000,
-    "AAjefWa5GCNyQFYcD29uZonf3PeeHGqTCsX6JNt9Swyf": 82100,
-    "AAjzgFr1Yi2LiWT9qSWguSHRqdU5PsqyEoEN9ozSL8c7": 113388,
+    "AAjefWa5GCNyQFYcD29uZonf3PeeHGqTCsX6JNt9Swyf": 75240,
     "AAmgPXNnCETxZijfLSWnbruKQpRnxsfkVxry7V87FM5x": 414,
     "AAoDxtr9jRxpvdaeywHSFaqnhjuVH6wDWKyZQwUKPGt3": 5000,
+    "AAqgCFYzLWJcVBhuqAgNgEZYXwW1zDCJ5yWXokWhdHFg": 4500,
     "AAsUk9wVp3Uism8G5Q5mkFaKfiofmK1L6zQX6VQdZSq": 5149,
     "AAxUnWt1BWVtQ97UCkSXbm2UfWxhf5z6DPQe1awF92Gu": 22898,
     "AB1SQgg4ZtVomwA4rJJev4cMgs1vz1kFTNNTe4TvAuSu": 15600,
     "AB6YbbWKhpDxQVVHGhSKy7L4ua2uV57pJLqQ8ggad3Ko": 20900,
     "AB7gVXw4XcGyntBJtEt6nmMm7uQfUKtzc2rqvvXDY5iN": 1000,
-    "ABCz55X72uAiZJwb5CVnNfjFWijNCPKCj2f4RTwANNKi": 9000,
+    "ABCz55X72uAiZJwb5CVnNfjFWijNCPKCj2f4RTwANNKi": 88620,
     "ABFAM8ZhsTeRb1wsFx8YJZpvGVCFcmqewtLq5dL3S7pd": 49500,
     "ABGfXe4W2ZXt4opqF86gwKHM75wqkiJcu9fnZuQMWTb4": 100,
     "ABQVS2xP4f2LciDBKFHszisScWzL3gRw1cq9rM9v1nYc": 600,
     "ABSJ6yeq8sZTFyMiKCiLsm2hM17SAa8VYq5fgJijeyq": 20000,
     "ABU9K6a5t9oRd7BtqhzVfVhQwNZixUkX3rrT4oLUNt1T": 5000,
     "ABUN8VmhLzo3NHQNduzNMPbhJQeexTk9vbeTeVwt7Hr": 100,
-    "ABVwvUaMwbdMqW3rj59Ss9bUE9Wpa2BEjgHXSuh2CaSm": 2200,
+    "ABVwvUaMwbdMqW3rj59Ss9bUE9Wpa2BEjgHXSuh2CaSm": 17200,
     "ABWn1smSGi83pPfyUC7NJ123VW5ShxwmbGsN8bTRoLt": 230750,
     "ABYThSgFBagy8MHJfSsVqZ45RykB674zg54uGhr569BE": 33500,
     "ABZKohKZm2kirx1L9miJmYQCXEvMV8XAQVui3ekfAFcG": 30000,
@@ -225365,12 +230136,13 @@
     "ABgDLARHLGyHrmuqBq398GtYdz6GspvkheRYHED4FaN6": 6000,
     "ABh9zzrERRRwPkDr8nNjUXp1ocmKu5erezaJmXbxdyCu": 9500,
     "ABij8NkroCpLN38qs1mNvkiZq9q3zbyUxgckMsj6NNVS": 120000,
+    "ABiqUbt39BzrtiFaVqfUWJjJGPCY8aNTizr8XmQ7fvMi": 87000,
     "ABjACE3mJc42Sb1DHJdMoBDRBAb3RzGftdoXRNeEsAT5": 1000,
     "ABkYvJRA8cbEYCkJQwPAEtu1axuK5tbNync2VMFtMhA": 38000,
     "ABoK1DHRBRQqePLvQw6E1BRYBihJCMWdxUGM2B3bVvjk": 10000,
-    "ABoTKPqf6p5aWnvmyTMMVZegdCWjCayxtcgV5DEBivjm": 200228,
-    "ABr4N9j1Y2ZoBvRhDENRgwduLQiiBmDNRtBxm1M8ud6v": 76532,
-    "ABrw1tMaUzV4E2prSK2qvis2Sxu16cHk9WLtQ9qaU7BZ": 208260,
+    "ABoTKPqf6p5aWnvmyTMMVZegdCWjCayxtcgV5DEBivjm": 238967,
+    "ABr4N9j1Y2ZoBvRhDENRgwduLQiiBmDNRtBxm1M8ud6v": 71142,
+    "ABrw1tMaUzV4E2prSK2qvis2Sxu16cHk9WLtQ9qaU7BZ": 318040,
     "ABtKgQs33eJpgYNsqEAmdh1GZjeaDBPrZc1r14neeib3": 8500,
     "ABtfRkKRMUUjjdEzaDjjrL7o31TF6sbELZURpf2sVF65": 13300,
     "ABvVSSMbXdjteQGHm6S5bVpb5A6c5MMNsEK28fX3L7CN": 700,
@@ -225382,6 +230154,7 @@
     "ACJsC494uXbDLGMu6yCbJUctDcTictdfDsLQen2R3tu5": 20000,
     "ACVTHR2NH6Z9TAAzRq1ZzowGSzQU64KXzP7X44PKjbcZ": 200,
     "ACYijipqo8mUqqDjD8mivoACwqukDd5rXCjRkCGLx8gN": 14400,
+    "ACZcAvu6ztzcmhkZctsUNksWkQBunV41VYjSJEpdiiuM": 3000,
     "ACegK3hGc7hu5fBhesb7UCvXNsyGB8TjeZoupydkAV9i": 10320,
     "ACgzgAEDSuEFdmFaLKizx2NdErAb5gLm8ZGmmZC9XKSB": 62200,
     "AChFghPBNS8uTnvcCPEgnm6y8PreAUK5oKZkqFogbh3Z": 100,
@@ -225408,6 +230181,7 @@
     "ADozDAep569qtfdPvEi2a4BdKfvxmXAkmWABFhTceeW9": 11500,
     "ADpXTMmLVxY5A5zKtqYTvH8bjLdzKwSeY8hY58hWitdC": 100,
     "ADu1yU2NHeXqHysmb6DRJuD6CGnjnVMvHHxvcGty8hsf": 6900,
+    "AE48d9Qp1NK7JN9psLEdY2oNWvhiAGujoTncodFdMU2P": 10000,
     "AE4ED2DMCcvyB1iJ7BG7vXxuQTpc8Z49vMEfpBwdNkqD": 1288,
     "AE9ESAi2E1564VEwHqhpDnEtFtZF7oL4yj9hHeGRxWEu": 40000,
     "AEESaiJsZV4KScRbuenkra4dSAALSXchwHDCSBSuxHKd": 1000,
@@ -225426,18 +230200,20 @@
     "AEjHQduivjavhraXuJ1Gg3bHyQqQxf2wRMX6KmCPT8Xx": 100,
     "AEk14RVTS4wCc2xp7WNv913Ld1R7riNXDd7QWkRcZaWj": 10000,
     "AEoDT9dLskBWvjuG82EwUnCKvPVMbTFyzeayWfn75yQT": 3000,
-    "AEurFhLoXis7nVE3hXKvLyNfSNsfXFJ3GZufZbCnJYeF": 9600,
+    "AEurFhLoXis7nVE3hXKvLyNfSNsfXFJ3GZufZbCnJYeF": 600,
     "AEvpBv74aBXsztmPJL7oaYJZmJGxSjymEZV3879FoUWN": 1000,
     "AExuSRuprc8no6iLwKnwzuCXJpyqrhLwB9p4KRoqeJMR": 101,
     "AF2VjizeajVfj28N1uCK28bfpdqBMN6FctbWK5d5NSrS": 5000,
     "AF3XoApHX3UwxKe9v1GxD9dB8EdNRwbqhcSXyWVwTbJy": 100,
+    "AF3eukS62TdaMqHtp94qSXnSKSJB1R5VHxQPh5DjS8Qt": 15000,
     "AF3o2NuK8j1C7bhNzjv4X8zF6s6QxbcqFAkqMdX36Msm": 1000,
     "AF53aJ82rk9EJYLSDk5YajnJqmBYJfdzE5xZddC1iGKR": 10413,
     "AF63WWxXAFtcxVagpgo29oG7upgTu58zTsqtJVZ9nNa9": 900,
     "AF6rL2jj71DJet5y1rS5yVXtaHX9g6zXZdK93duyZPpY": 10000,
+    "AF6zyFKk8dgDkysV2SG2SMKNKyQkZ1sETinCxbjcDM2T": 51300,
     "AF7o4ursK9PCn99BCaodNMCBq61zJNjwhs4rgYusQG9A": 1000,
     "AF86bKswUMPKRj9X2FojEk98ChWShRnDxGf7vs5VKSaR": 100,
-    "AF9HbQj3F6i4QJHrfo7CYsNpeDZtREAzYZKztvX5gzjH": 5000,
+    "AF9HbQj3F6i4QJHrfo7CYsNpeDZtREAzYZKztvX5gzjH": 5001,
     "AFB8i2P4RztMngcqPuNgn7G8e1fHnZaA23mmK6qeSFAZ": 46035,
     "AFBHcXFPjRndeZpvau7UCXQgBsNyUw4k3sdXG47Ark4K": 300,
     "AFEFGep6C1VTj2gX5BFR76pKWgDVUNtGakHb82k2BePn": 10000,
@@ -225450,7 +230226,7 @@
     "AFWq9hzpKAyuxi5G6eskNv4tYhAh7r6NAQmrhtZrbXnk": 1300,
     "AFXcA2JFmK6Bfnv3mauSmEEbHAM1LrcxEe5gJ8bzjqkg": 100,
     "AFbHmukiz5YxwLMCAeF8dAaYsuN6UJeWKbNrc2Q8Mr6W": 5000,
-    "AFen8JtKxzcYyPu1ExPm7hcg2TDc5idnjEGyyxguu4sE": 68500,
+    "AFen8JtKxzcYyPu1ExPm7hcg2TDc5idnjEGyyxguu4sE": 48500,
     "AFgLcWNwL13QJenC7arb9haFcok6KQQzPb1R1UWTURTC": 900,
     "AFgehNKJhkuMjKQGaW1wqUrB9hDAn5XRhVLydmDsxYJG": 4000,
     "AFhAh6bKwsnLoprHJqaVjr5976UYXzSuj2QuW6eZZzbF": 1300,
@@ -225470,7 +230246,6 @@
     "AGLAimhm8hSsHmJQrLGSsRZAmwp6FQre4pT3tNmwyLHh": 1000,
     "AGLNm9nMgmjfPBRJqDDsCq8nzGZRXNptEU3AzYuPGxGV": 1000,
     "AGMjNU3T1uahNJ6cgxcsHUaoCzXfUNNngRhRYMYuSUMp": 100,
-    "AGQF7iv4mLjqBXQ4F8j8ddMa9he9qgHUA4e2iEgbtmWU": 1000,
     "AGRuRwQGv2PSmjL1v13QnCRdomkFjeCsypx5oGu4xtSn": 132709,
     "AGZXCoheMEb2Q9ujKswyk3S6myyknPcDY42c7otD6eV4": 9900,
     "AGb3HPpJrbm43sNjE6x4i26AJprAAiNQ9xKrZ4ok5s2U": 198,
@@ -225479,7 +230254,6 @@
     "AGktiAn1NyR9TJNDWRuLmFRes9oHPtFocMfeE9jExCxv": 1300,
     "AGpY1UKPTnTyQLhWnvnb23atspCgsfJTpFzqGijNfT6F": 15000,
     "AGwtZoJGzWUbCYQRMYJssDw5dCnkjVMW5RY3fafhHb1y": 2300,
-    "AGwzkvgMb1A5AMWpg3Ej6sgNFU494UiqTUS5HYyPVLvK": 30000,
     "AH1C3ZffSgiRBbitmR9pGweFVmxd9VxwyYoGH5CqnSZc": 90314,
     "AH1xjagt28txg8k62xshCdgmkN3nwkz3rNVZwgm2zp2U": 2000,
     "AH5tReHMWmKmWyriS22GfjJJmjgE26EFtto9vy4Ufbkt": 294,
@@ -225504,9 +230278,9 @@
     "AJNoiYLjA7fQJEwduxmVkkqhrN1RWifkD4vs9Y8ufgYL": 600000,
     "AJTNmg58n3VekBx5RwHmcyZjydbe3CowzU7f7PRqKChG": 500,
     "AJUsvu9DYkvgcTqZMHe2fHr5iLedwZxX2hzeMbSueHKj": 13300,
-    "AJV8DnJ77VLcPPTQEMWHyrUjthgBaSSKdzv3wLzeuRis": 10050,
+    "AJV8DnJ77VLcPPTQEMWHyrUjthgBaSSKdzv3wLzeuRis": 9050,
     "AJVYxoCnvnqxwmzKBpMzLprGRgv92x5WSakeL7QfBbCN": 22600,
-    "AJX8zZM3eUvjWArE6v5uTW2kUQioneQvsF1mfCZPWp2d": 39685,
+    "AJX8zZM3eUvjWArE6v5uTW2kUQioneQvsF1mfCZPWp2d": 11985,
     "AJbnDWsRGQ4S6TnQJCpmSpGjXpRcMRnBPEztoUHYatwY": 20000,
     "AJd7rVN9aRgAEXbaUFDVyVstVCh3EAbVHCMBzdYbEUi7": 10420,
     "AJfG8ftoU4BF8nE9Jm3H4PdkPnkNx1dWYvcUH1n513tA": 11032,
@@ -225522,14 +230296,13 @@
     "AK8yQWhy28pQY91zfaQrdu2PU5gYHfNbrXE1Z5i8PRoJ": 59410,
     "AKH4ZbARb4GQkGcJi95MfyyZPSy94ntYGVBfT7zk4ySM": 2000,
     "AKHzpvDMkERLafs8pkimrx2bGG54A4DTg4ANfy8HTB4a": 6100,
-    "AKKfjXXbvRYTA9LA3U4rXyTSoZh1Xajpxon2cXNsxqGp": 100749,
+    "AKKfjXXbvRYTA9LA3U4rXyTSoZh1Xajpxon2cXNsxqGp": 78909,
     "AKLC99YMYVdR7Ma8yy6pHw9KfeoF3gjs2cygt63tDtPV": 9900,
     "AKLprjpsqJCaryrDbH9G3PPJAWMkRLYrhj5ZDDZaBjAU": 5000,
     "AKNe7uYFL53uTgZWnXQLN8LTRvjCo5Wk3xHzGtcBrnbD": 31900,
     "AKNtPC2dtkgSAGE2zkdMDn4huaFAw5v9Lo1YGeyqLeT": 10500,
     "AKNtPC2dtkgSAGE2zkdMDn4huaFAw5v9Lo1YGeyqLeTz": 11500,
-    "AKSX11FwpaFHgGE6uYUh22qnVqzPeYzWPAf371d4itLB": 70500,
-    "AKXdhtt9wthNAAhUrCb5EUq5ZC5rChqAkipLASJbvWCG": 400,
+    "AKXdhtt9wthNAAhUrCb5EUq5ZC5rChqAkipLASJbvWCG": 8000,
     "AKYpMLSXJC6X6VH37MBFhxzqv7S15gjP35hb5sUMctbK": 15300,
     "AKoziv1XbbH86odAypymQwmXPQ21yncPZ7mgTh2MnCb6": 100,
     "AKpTvPsR28Sj1XWVBiCFhAqAoU3Vh3E37FvQWsQtgzUh": 10000,
@@ -225537,7 +230310,7 @@
     "AKs4uRG3zkUmnv6ZXshT6i99rQ79Hu9WxLf5JXS7BRBg": 42658,
     "AKsJ3Wsi6pTsPYdyqqHAcTfm73vLmQkk4dEEFUwJMuc": 5100,
     "AKsJ3Wsi6pTsPYdyqqHAxTfm73vLmQkkh4dEEFUwJMuc": 5000,
-    "AL22Zs34FUdex8JWuDR4AWn3c2KJvAX5ZmZe8PzUD2ib": 32500,
+    "AL22Zs34FUdex8JWuDR4AWn3c2KJvAX5ZmZe8PzUD2ib": 10700,
     "AL4Sfazx1MBWNLf6rF1vLqhpF4P3C5wKuEhwxUeWKYe7": 1000,
     "AL6y7NM5wVh2FUhSTnpU8uGW62YW6uxGxuhfBDX1tahK": 87100,
     "ALBELck8VcntzVnZetRFfUF6yFYMkaspmJuYz8PUYKJu": 10000,
@@ -225570,17 +230343,20 @@
     "AMeK41gejvSC6cM1RBe1ZGA7fm7FSCx1UnYPdNHsTv5H": 10000,
     "AMjxFMaTP4rNZNRF3QmY3WChr93VKhQaKc1t5MayurYk": 100,
     "AMnAAp76LB8pN3eq7Z7eYxQQJMAm88dejPzFaLxVScJo": 71000,
-    "AMnXBhYJ3qNoEbi2FjEDGaA8xFf1Tqn455Cx9BQpByvo": 100,
+    "AMnXBhYJ3qNoEbi2FjEDGaA8xFf1Tqn455Cx9BQpByvo": 10100,
     "AMohcdynV4qJytATTnnCaYa46DdoAYaiWL6bZcHjVgid": 269700,
-    "AMvQNbQNv6GM5grp7DUYyxWVbP6R984B8jYtGD8q67EQ": 69706,
+    "AMvQNbQNv6GM5grp7DUYyxWVbP6R984B8jYtGD8q67EQ": 99546,
     "AMwREMeW5tmpdLMNG4aNJs3SPj9aSbnFrAgPM4uEhW6": 14000,
     "AMxnxFAXvmyiE4MBUWwRRi4YHLpFnvo3cC3FUU2uj6tD": 305,
     "AN593Fhku4Zfshb28VeVAbfi9xwMF79KkHbiMuArAf6": 1962985,
+    "AN6Zub93hnNYhPjyjMVhjGdwGg3MsiecLSxxTx2hJSH": 15000,
     "ANF3aGPb9Jw3Ju83SU2Sc6Nctc57pS6zTCzSkQMM4fm9": 200,
     "ANKFtZ3BP8SCYFFgpfotRtTr9EW93HvRwyM416wXsdqm": 20000,
     "ANMi85qVa4AdnY6oN6hN3QK3MxAmtQ6KfCBtGFZjcfrt": 1042,
     "ANReLW9JTJzJ3Zi191L4a6efMVLtkmiEP1y382yTr4EX": 45000,
+    "ANS6sdypZY8Dp17oJ36VycQ9odAKoU4KhN5Dtiyddc9A": 3000,
     "ANSdSPzNMKWfe7iTUP9BbMVtgnaEqx143PCSGgHKfZNq": 5000,
+    "ANTrg2SEse8cQvpe5CvPq357rsU6emCR4CXv1Py9tetf": 13100,
     "ANXdk79KoEQQdB36u2gkNYsbfqpGSnxUdsrTY2Qa1MWh": 2800,
     "ANYA4Vcjh9EBm1ZfK1NoruZXy8n9qLmXCYZtGq5jtqs1": 350499,
     "ANZeDWAoDvKDwie1cBBB746wj7NCcBhxN9Ng2j8mBYH7": 20159,
@@ -225601,7 +230377,7 @@
     "AP8tGnbm6gZPnuPumWHNmq4f7o1h5JibaAra1FU69Ydq": 1042,
     "APH99ohb1xQkCoH18KC1w6DcjNu7SFeMP1PvNsmQM56o": 2000,
     "APMMZPKwzauzi2o2N7aiWPZvAeWt3TQqxSb7yWtgyfyY": 18650,
-    "APN7QsYzfZuEvph1FcyUJdzuMLpQejcyid8BhqquNa1G": 18800,
+    "APN7QsYzfZuEvph1FcyUJdzuMLpQejcyid8BhqquNa1G": 3800,
     "APP7MYA9KJDD6MgMMviS45P5iJNLrBeRus64Z4nfM6o7": 2800,
     "APVRSiSW8KFaSjuUA9e5wv2T6nK37PfENr82SShmhi5K": 1000000,
     "APZqDSt4BnCsyg3DuNfQv9R9bSAqeb6d9TiGaiHYRZ3U": 1000,
@@ -225626,9 +230402,9 @@
     "AQoq2cRaZA2M76691cdVEtuZ8spj4aeAFVbWrf3pZ1pG": 2000,
     "AQpiCyShJi2gy5WPSorydhQresTjjcrNrKPpXMEKkvQc": 1068,
     "AQqU7PCPF3WgwyUn1ZZsz6Q9TUPdkJzaF7JSSPJ2vkjb": 10000,
-    "AQsryQbCYX5kPXbSKqi5sHoWUfJ66LCCfP6y8b7rvsvP": 18500,
+    "AQsryQbCYX5kPXbSKqi5sHoWUfJ66LCCfP6y8b7rvsvP": 23500,
     "ARDWvVt1tjNdmf2hT3rKkNJXGXrMvdVQCDpEpbMhftLV": 5000,
-    "ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY": 480638,
+    "ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY": 429238,
     "ARGdLBPP1BjqjU1qTjuu9TJH6Mb3XSCZHdVC4RjNHpNV": 12500,
     "ARJGKbcSKzBNNvk8towh5dYyqUTh9LuGbqfWqZAtx9mw": 4000,
     "ARLYoDTPKkuxX7BPzZPjmShe8UhQf4HK69CPHJZXum2E": 104295,
@@ -225645,6 +230421,7 @@
     "ARfcjcd8WVDLC9jyQv2TUnJiy22eNViUthuo6wSr5RUC": 500,
     "ARhkGBghraDz449WmCKpyBnTSgLHHSuCm652xJAW9kt3": 5000,
     "ARicFFTLVwMA3jq9VD5r8ftHpwBy3pNRfLynG4aNBo2y": 20110,
+    "ARr4TPV5iEzWt8axrGoPRjoRhWKn7dfN9CtnRNSSFMdV": 5290,
     "ARuhDUoonMu2fQcHD8fVoJJ1gHuGESi4gw5feGuDaoVc": 11128,
     "ARxE1dWEZ3cQpDw7zbYER3AjsoAnk6n11JLumKriKeRU": 100,
     "AS4cUXqfEWsrA1jYrRSY2B9tv8mjnvETdkgFwrBtDZG8": 5000,
@@ -225654,7 +230431,7 @@
     "ASEdaoc2c1aGwf6oSNuquS5gMUs2TgK8KWKEnjbzLst": 10188,
     "ASGfNxPs5YdbaYVnzGCjd5jC9ELS8fWc556sGQoMwVEf": 7000,
     "ASGmbu67MwgPu129AByhdaWu2izfu3D859sEhHrh472F": 37500,
-    "ASJ9h3QzFbnSjTaJsJ2oLaGMVDppNgpKiWwnv2UoAjLM": 472280,
+    "ASJ9h3QzFbnSjTaJsJ2oLaGMVDppNgpKiWwnv2UoAjLM": 448480,
     "ASN7p4b6b8VfkRapb3FVYBNLy5TWD9Y7RQRP4aLF9VVt": 6000,
     "ASRG1PXHRd3zmCYXRtNYvPMRvLJcVthhR4sECv4UiKaF": 5000,
     "ASSjmaJBAqfxhQE2b7viNwXjjpY88zkzmDYCg4Eg14De": 614,
@@ -225679,7 +230456,7 @@
     "ATSFzgjrBjdKr3UjoBFSeHKUXN9jVDNjiTGTPZbziyop": 7898,
     "ATStxDc7he1RBLxYyASf4Y2AZ9GWC7eXEeBkWgv3fwE2": 3204,
     "ATU5o2YNi5xa5gSnc7aZ8C9vvNFEkRHgD2sedPkKDoQ6": 2000,
-    "ATUpp96Vy3zcf79f8eFXj43sZDhu1SK7LsRXus7ah6PQ": 108100,
+    "ATUpp96Vy3zcf79f8eFXj43sZDhu1SK7LsRXus7ah6PQ": 106100,
     "ATYsHxFHfL9KMLamLyeYYngPeUZQveRxfg9FMFqkPNgX": 600,
     "ATaKGc5g7D3HwWw3DpoEX8yDDAAS9awqTZ71ARnPYg7m": 5000,
     "ATby1X7x3qdwkNjWNmyHKG2MMVhfVo87MAHmUr9YTtJ3": 21949,
@@ -225688,10 +230465,11 @@
     "ATkjQPa4sn4LBF69jqEPzFtRdHYJs6MJQjvP8JdN7MtN": 100,
     "AToFMpwPZKzpVWKuqbKobxbLJDQfCGTQbpbgVmYrAyXi": 180,
     "ATwnburFe9vtyKkMSYLAvuzPTFEyig52ibWLZgmh5Mau": 50000,
-    "AU3bybnzGR5dqt2NBaDSX4vF3pT9BaP9JjjUc6ujKs2p": 76000,
+    "AU3bybnzGR5dqt2NBaDSX4vF3pT9BaP9JjjUc6ujKs2p": 179500,
     "AU5iiqunN7RwDG6jf1SoSFgwzL5rpFPD969zGfYMmyxY": 20000,
+    "AU6Yzf7To8T6YMan8rJMGCGjUg8mPRYnhPsWFZFnH2aD": 5000,
     "AU6a5VFSTYzPdAeDJksuN1HsCoCcxsAWqxVqbevnVkzv": 3000,
-    "AU8g2B38kz8N3QUFWgfDEVJNrpWhEK6oGwqTJrYCiiRF": 5000,
+    "AU8g2B38kz8N3QUFWgfDEVJNrpWhEK6oGwqTJrYCiiRF": 110000,
     "AUAyR2mqyT2Pt8To4vaY2UxYM4FtGSrsTzk3pHvbUyTN": 300000,
     "AUJCW35Fv6qPaw4gPacCZdJSkwADPFbrhK3Dfj2k1PYU": 5000,
     "AUJQaNqRybDMWMznNLHnFWpM2xhvKL43Tna3fddponFG": 10000,
@@ -225701,13 +230479,14 @@
     "AULzLMEX17Boz2KyM1TJG1TdaLhVgT8Pd7ifKGDgdRi7": 80500,
     "AURS2jjuQxdrTjG4M2KNaYkdUfixRc9kt4NuVahduGpB": 2136,
     "AUSKsZ2GqS83zbbtewEvGc46Wb9j7Kq7YbvMA7AWGa8L": 1176975,
-    "AUV6E2FJMykogUbN9fshs5DVaRxfbcjVpGNZwtcFTnJf": 424500,
+    "AUUZzcCZKcfwRawMrgckMzumWFkNgGjN4drdNEAU2ed3": 5000,
+    "AUV6E2FJMykogUbN9fshs5DVaRxfbcjVpGNZwtcFTnJf": 634600,
     "AUaQrpmZrNb98R9nnzvifpjVkkSJe6pDLyVJGAbWRA6w": 9250,
     "AUdEtEY4XiGGeYXEvDPKeLhd9eatcmB6xcES5cJxVxJo": 11000,
     "AUeiyiVAwNEq3Zd2LoEjQd1F3fspjZr5cCbn364iK3sP": 5000,
     "AUhD9jBk5GSkwnEcSide8bGRcmGQ8anM23zs4SxhkjKW": 100,
     "AUmhknkTh6zHZDxcP7EpZeMZhXhR7Z3wvoiqc3fqRfmE": 500,
-    "AUo9HXmK1ZSwsRXqhTEe7gMVUS319M9qW17jjZDjvPpq": 16000,
+    "AUo9HXmK1ZSwsRXqhTEe7gMVUS319M9qW17jjZDjvPpq": 21000,
     "AUp3BeBRTN13Ex7gHBg24UCit8EdD1YXCDCndgXN5QP8": 143100,
     "AUppAdmNPZSzkfP2ZRB1RCeXmF2g4c44b8o6JQQkQhuq": 629046,
     "AUt8M6eGUyfMaMdfPnRBDkUvtJxL7U2CgvezfPjyY611": 5000,
@@ -225719,18 +230498,20 @@
     "AVJ56vscXmPyX6dBvycqDhNT9iKG4DXv1U9sUhMRm7ZG": 3126,
     "AVMESeDW163LrhZKR7BAwvzPreTXtGoGJAo1d4NHzDMT": 50679,
     "AVQMLH4Qc3k3xXLXxw3ieRM3kY4H4ANrZg7HqerdAQbD": 6000,
-    "AVRAUxw9zecHiAMKLfyWctL9V9pzqdkbZVB3TBsb4eZF": 5700,
+    "AVRAUxw9zecHiAMKLfyWctL9V9pzqdkbZVB3TBsb4eZF": 2100,
     "AVRsQdi1B8hYMUNT5nU751r2H3r7np3sWLbNdPJebkdu": 8900,
     "AVS8x2RBy3ixoSSHYnZPzEGrLXCauMebCYfDbjSM1twt": 6000,
     "AVbPyKNQQDS4nktn8XKdkVsA9Z4FAu27nmwCdmLD7DNo": 200,
     "AVgyMR9Ak9mV9RUk2nPjHjQ3rAXhoJKpsQ8vE5YMufSZ": 5000,
     "AVmX2aWomq6TzjAseMzHfeZVwxFbHaZ5m749ZaHkisE3": 5000,
     "AVwxVZm2zZqSM7yt9BDSEeweokqQnSt7DCf2JBFYF5dM": 1000,
+    "AVyBB5jWjNYdtoXeDTqYjZsjyVd84JEYoWR7TpFePFBB": 31000,
     "AVz6qQrTUJgbbuUxzCLZJ1hPuQqMPhvoUVvAS7tbFzpJ": 2164,
     "AW14F8q26jGcT4My9RCTXGqKva7rFgzb1QJeAjdBdVcE": 20600,
     "AW28btoufSqGJbJQK7ArPY1EMeZAf3EFSzDG1d3P1WDN": 25600,
     "AWEtM5GDMYj9owUB778amuw3RKeNjnes1h4mF18XiuEP": 200,
     "AWJQnTcfyi8HwjvKTgTbiMCBk3xB2repfXCWnWbssWqb": 5000,
+    "AWLS8Ux6eM4YcnTkQkKRc287tXkBtJuphtw2sXqYMvAF": 27500,
     "AWLabBjfSkL7KcVRnj3Q4uiNBrAmzJnznujGoBdhDAG6": 800,
     "AWR2W7A3YtAb2TGuX4aZJssmxqWs82zCEiwzJdYAJ6Lc": 20640,
     "AWTLhS8UHV1vStVAgdCc1A65KHAsbvJEb32G1Jf5tYLQ": 5000,
@@ -225743,28 +230524,31 @@
     "AWyt3kQQUqCHQKfrtckVC35wHXEAURP9EJyuyNoJCGtm": 5295,
     "AX926EKcS2UExvYrHC1tZeKHyyc2BVas5o64X2XNCu2t": 500,
     "AXEeHCaNBHpagZD6bgZaHmWa8WAJsqWiDLjAa7B27h4o": 23600,
-    "AXGqRrg2w7eBqzi4hU63U9op8fFgYJ4z7o1oC3TiTcnT": 20497,
+    "AXGqRrg2w7eBqzi4hU63U9op8fFgYJ4z7o1oC3TiTcnT": 220497,
     "AXJTGA26eCx6yRJmS8PgCpqUVHY6eWpydFSycg2feaaB": 6000,
     "AXMi4kbzKM44Eo48PgZiC7te8xHdwVKmmM1gM5dYfCFp": 5000,
     "AXVvAavG5EvMBvaVVUjwu5LsgQ2E86jXXKsYHsKpsYLH": 27000,
     "AXc7t8x4RL2AKsdHHVEKYbP4gbLx9qsG18TdNtTpoSB": 1000,
+    "AXct7kmfWHJvBcVWSS2Tp5BDb9FwzJ6eh3qtCCMRQCWo": 9500,
     "AXeWTLKigEwDERyA8DEr2uWhc8Ueua9jgiNgpJXSeM51": 32000,
-    "AXgo55FngRuYzf1P88ebyZr15n16sLUV8oMtj1Sps7NQ": 5000,
+    "AXgo55FngRuYzf1P88ebyZr15n16sLUV8oMtj1Sps7NQ": 15200,
     "AXmPt7Z1CXKAXjTbrtco5dcZasXdoZBAwP5rum2SBBHq": 5701,
     "AXnU3qBEbaaLDJKg7nND7FiCsmET8ySpRAxkFFkqs1MQ": 62900,
     "AXtYsQzZXo8PjfLoF3rMqsmUGiVMmFEWcLY8cbLZMcjA": 5000,
     "AXxnCuAKzU2Gs5XHaG19iykbiKcbajBu146nJMXiQ95V": 100,
     "AXxrKmmd84WHc4XcBEQ8h8WbEyzJm9bRADumDqdkTZ4V": 521,
-    "AXzgNvXLThzsawVe3yowm1gFcEeqTkMkX7XHsukUUb1q": 268500,
+    "AXzgNvXLThzsawVe3yowm1gFcEeqTkMkX7XHsukUUb1q": 307500,
     "AY7mPtADX5S9j1wPcm4B2oABjDJzMeJpxysJTudScqpi": 19500,
     "AYBZocUWTw1DUCZ6vRnKPFb4TEqmXUBrsZGQ2DGrSFc8": 10000,
-    "AYFyvadjhncpAFavnnK8oFy1mmT1SxCMNhBD9HxzEvX9": 96000,
+    "AYFyvadjhncpAFavnnK8oFy1mmT1SxCMNhBD9HxzEvX9": 17200,
     "AYGcHDKJPyEbvddh8yiYdBBoQVz5eznZaCzGM71QWgtg": 100,
+    "AYQWo2uqmAy7KwjBcvPRfHGtn2t3ZL1Gvhio52BAqSje": 7760,
+    "AYVy6kxxsQfsYmHBD9V3cocKqWLjqSD1bbCWbrjn23Mf": 3000,
     "AYfLtx1nNNdcmmo9MSVynV3DaF4Ei6yuEX7Z9WeD5Lbj": 22000,
     "AYg2dnBTEu2GHbRND1hAfdBtaNAnfWbNT5mQG113kn4i": 10000,
     "AYgbgRiimjG8HDGkfRXtjtBzCkW9ym5xTfQKizHkD2Zg": 13334,
     "AYmmtpiQeVtvcd8X96KvZgSrDK9ZCVZkkeWpt1qrsmFy": 900,
-    "AYrgA1S2KftxndbXKHBSwBzSJqzpRQnodeZELA8cXXNC": 565506,
+    "AYrgA1S2KftxndbXKHBSwBzSJqzpRQnodeZELA8cXXNC": 531074,
     "AYu7ueAXFt1wNrcaw42MuZoy7ZuEeVZ4hxPsLKLCVwvh": 700,
     "AYxH1wLy8sd2iqC8vvVGMBi128ggWgJ4Atzp5EdDQwwq": 4600,
     "AYz1syzKEDGCkg5b5dYtYaaHRofbQTdfZip9TMJVqrSH": 2300,
@@ -225778,9 +230562,10 @@
     "AZTf6vv4LRdJzE4MGzGedK8rFZcHus2QBJjC89hKr9FP": 5000,
     "AZUhMbZbdpQuf9JXsMUQ3LcJ495utFnrzTG6ptuLQtqc": 300,
     "AZXYqrgQHN9bm9u2sbMiymh3uENqKoVRAdt1LZdkGLoz": 1700,
-    "AZYc6dAw9sD48ahf1dLhyVRA1PjMVBv6vvgMsXVjRHfL": 26827,
+    "AZYc6dAw9sD48ahf1dLhyVRA1PjMVBv6vvgMsXVjRHfL": 53527,
     "AZegy69t2pUzRRb6xBWpgQ6EEAPEaSD2L4siuttrT8Gv": 5400,
-    "AZqrz36CeNCUJ6hxApo6rRQUaodZkNErd6WGqZDLsWRp": 384233,
+    "AZmQLzu61MxJ97v3VzRscj6re4LM4mq61SsHvjaxsR5K": 38636,
+    "AZqrz36CeNCUJ6hxApo6rRQUaodZkNErd6WGqZDLsWRp": 402233,
     "AZvGwHKUYdceVzbiF1SneXYPeb4Z9zsENpUvq2yvapbP": 52100,
     "Aa1QCUxZs9pkcCv2vbukRVQtCQkt1rfXksCqNaaPfL8u": 21800,
     "Aa3pBY2sNwaEoGr2VWuB8m7hWiuDsVAGGhZUswbKK2h7": 14714,
@@ -225795,33 +230580,30 @@
     "AaVFPUkm4ZHFmsJQCDS5VXDB3eucqQMeYpXM4bg2DK8o": 500,
     "AaVj5WHQ2mT7sdEgaqbarSYQKAqiZ5pzNaLBKVyG55j2": 1000,
     "Aaa4kEGxNTnQ2zuU5dy4sQxZt6fqWfdqoofLVkqB5myy": 20482,
-    "AabBieFXV3nzEtoV3HrkJu6V3FHoKGznxY5NZGe2Pac8": 20175,
-    "AaeiT4WCKQxyq2svBWVd2vymfCCvTS6adEB1EAVceTY7": 16600,
+    "AabBieFXV3nzEtoV3HrkJu6V3FHoKGznxY5NZGe2Pac8": 39131,
+    "AaeiT4WCKQxyq2svBWVd2vymfCCvTS6adEB1EAVceTY7": 11600,
     "AagHiu3Ggbo4X4tduea6qFWHqRdrei1wbsg6nZT79VA9": 1100,
     "AainyMJRerbatNL7S1dZdT8rMR9e3fLD1GrANpS2ZHTk": 10000,
     "AapWhbMfBxbmACoKm75XuSoRKaoqoFpxPBTjVMA9CQoZ": 20000,
-    "AaqeApprDHeST78kFXUGZ2ybhp6oQv4R76DdsEfKfjX3": 5000,
     "Aas9fXU2rQDJDsWWMn9jtWC1UUUT2wgy8HJu7bzh9BZy": 17670,
     "AauCDNSLdcK6SAuDob4SSc2dzBpz9A8B6WjKSE7ipgwo": 5000,
-    "AayKtD82GbaXF61aHSPuY2PqqCsW8pCvY451ryAs15u3": 78000,
+    "AayKtD82GbaXF61aHSPuY2PqqCsW8pCvY451ryAs15u3": 128000,
     "Ab1MsqBxaT1cNU4id5Jp4yvwR8wF4SVpqhM34QEPLTsm": 30000,
     "Ab1MsqBxaT1oNU4id5Jp4yvwR8wF4SVpqhM34QEPLTsM": 1854136,
-    "Ab9d56GQbsqx46oPyVsRogfFKBZQLjyLv1iYL4JVmyaz": 720000,
+    "Ab9d56GQbsqx46oPyVsRogfFKBZQLjyLv1iYL4JVmyaz": 740000,
     "AbAnwuLRTVwmiz5ft92zXCiAMh7vFL9Uqqwm8ZWagJUC": 63000,
     "AbDAWewC3zRRkjoic4veeoxV52sspPnQUX9rJ4cWdpjy": 100000,
-    "AbDDL5VSbL6UVua9V5NeJd2qvJwMDecK48fTCVpEdAiJ": 200000,
+    "AbDDL5VSbL6UVua9V5NeJd2qvJwMDecK48fTCVpEdAiJ": 250000,
     "AbGjfheMQoynCLKW84ri285r9vN7hxcAgAvze4sNWsNE": 80000,
     "AbM1Nr873N3uRgrnimLSwK54Tm7qPtSufPNwQBkZGgTX": 146560,
     "AbMANqfbN1nXdWgp1U5dNr73JYytSPovRNxsfxjjE3hC": 50000,
     "AbMDDXQjsDp7Fh7BLS8skjciZnfTTG2w9LZ32S4bwcJm": 32000,
     "AbPbKUfzF5WrR98Y2LpcQdGWuPKn2jdUvZaBb3k1c5h9": 3500,
-    "AbTSUy4KqA9GxtwC5QvZPgzz5ZKAsLSEDgQTKU6tqUGe": 19735,
     "AbUTDiLa3gYkWNggdrAzkgFfqL6SMmnJDhJFzR6xvWbF": 5210,
     "AbYVkMCmJ4p94bMXEScWWkH8EZzY4XxGF86wyTNi4Nt5": 100,
     "AbbFysACzc1T6QB88cwEVTgkCrhT31RbAUbC17QEj47n": 3000,
     "Abcw5ufXSve6PAbbosCa25pixbJkKCQFvBpKoe16B87T": 1000,
     "AbgHbupg7V3DA3rmoNU84hisJZ9ZN3YtivnkqRYj15MK": 167254,
-    "AbisbhUwgsXGZNR2eAhp3yAJLoSpjdGDEAP7Lfw5hC1y": 100,
     "AboVTvb6fpLujuhu39vGw4b2JFqEnvStsSveg7KifPjX": 521,
     "Abpsfhg5jHaYKHmWiVaqfVZeizLPkEEW84Y314YkYvs5": 1159,
     "AbqsFr13RKu4aSmHP2JUtF2rgq18t1T7aimM7i2njcNm": 2300,
@@ -225840,6 +230622,7 @@
     "AcXdT1mjFKGCfisbB6cZDgkcDUdFwYCdE67w19n3P8LN": 400,
     "AcYJCkNBozpeD4DMpbEjynrbNwqHMWYDLLHkuYvdgcWK": 10000,
     "AcftTB6gEAGJtLoQh63u1GdL51CJqn68yup9VDmDQbUC": 3500,
+    "AchnzQsPsjhCK4zVpoh1BcF26BQbLC2ryLbAUDtRYX6v": 30000,
     "AckAjCKcEzXmZGW884nT68tHFeuSXLzY19zGgHeXVhSW": 44500,
     "Acm2Gx6mb8LfXbSa3mNZf6W9BzcpZv5WiUuB9bDynU56": 11800,
     "AczB6Gn51vP1x3XtjQPZYpkPvpxRBitEBPeA7VexPQsA": 10000,
@@ -225883,7 +230666,7 @@
     "Aed2CZvdVDdNRy5YuFzcMKBXVs21wvRPCTWvGp86Xf6C": 4000,
     "AedGQ4Gv2yrDD7HVZSmiCxt6wDc9xER7gGCEZMD9gqfP": 8300,
     "AeejF5Byz4XChEmG1ipv6bixhnS4UyzUxanZL5Jd4H6f": 27509,
-    "AekYz5BWKGL7kLmVgXHVQqWMmwiyX1yeXaS5Mzk2DsDE": 183104,
+    "AekYz5BWKGL7kLmVgXHVQqWMmwiyX1yeXaS5Mzk2DsDE": 118168,
     "AeksxhShmmvX54FDEwsc6zxNtCoQmqeRcRZhiBhx57ku": 40000,
     "AeqJLaCuuZcMSVGCdyCPhzKYAkGjr6GCrffWosw2fT6o": 11042,
     "AeqNozi6KU9NSShUaYyegM9D2CnjKjcCFoooTaTunA54": 41956,
@@ -225893,6 +230676,8 @@
     "Af7sK5HrZ4gBGq2ezBFpykYjwPTrXhdWDVTaoRzXBpWE": 1000,
     "Af8rLcdg2txVrKybmL77Ehumgvyi61Z56ZjtCvkEWcdG": 1000,
     "AfDuvY3Y7MsBoe1RTxJ9ANGKbMiLSL2BmnYV21iw1q4W": 6000,
+    "AfH3DWqVkfKVqznyFmbw67aMNx1RU9TUaFridtbyxBuW": 255000,
+    "AfJ3WEAqnfhBZHfA1B1NnoczPxnP6sviSJfVnjwDMH12": 315036,
     "AfLWFpaQDRheZ1j9YDjGbmk8BNhrcnLf5H2FP3DEmqMZ": 1000,
     "AfP7fRQjrxES2NK5xawMprTJv1VUjriiUb3Lt7PrJL1Q": 67000,
     "AfQ6j4f14cLBLbEPztWEf9sgwfRGo5xkTYDy4nBJRrtt": 2500,
@@ -225920,8 +230705,8 @@
     "AgNUof3AgtqLBCGQr9DmtLoRJNtuDE5tHeSk3yqKdq98": 15000,
     "AgT6Cy78H44P6R9yC5niS9b3hpf3SFbb3hSjUqeC2dwK": 100,
     "AgUQTdTp8sTHvoBg9UXpbnnoTwxF5F4HXJvYMp221CZG": 2022,
-    "AgYGztkcb6tSdTj9g8C4RdHCc9X23sgMM5ZKunYHhTjm": 1740536,
-    "AgZLTNiY5dPxmxd5BuRTxYped1zbxmZvnz8CZTg1pSNh": 200,
+    "AgYGztkcb6tSdTj9g8C4RdHCc9X23sgMM5ZKunYHhTjm": 1040536,
+    "AgZLTNiY5dPxmxd5BuRTxYped1zbxmZvnz8CZTg1pSNh": 100200,
     "AgbkipqX3KgoQtDXidhodDuswzw9EekGWvfxBwnQ5Uwm": 8070,
     "AghNNvWwnx6vXPSKmEWUH7whX44bz7CD2MihToDhWfV3": 125000,
     "Agm9TiCtv4TYFwAuWiaqAaL3EzV8XxobfShEGFJJpyd9": 3000,
@@ -225932,7 +230717,6 @@
     "AgomFHdXBNV4P6uGpYy5acjHBtukCYShzDb1XQD1NM5f": 4000,
     "AgpfWXFosa21QtXcMHDcifTFejBHyoPomydktc68rrw5": 4000,
     "Agre8YrB6HiQPxjRUoSTvcP6Vo6N6vBWLdZTNk9ajprK": 8353,
-    "AgshpivMjyGxey6887EhWVzPNJfFfkRV3xPcFDU9jwp7": 34500,
     "AgwXSyStyDUuJScdrAAejhZXzHYZYME9UerVUHZyVnXa": 600,
     "AgzGdtE7LSQYK62p81m4hptegz3HDchYDwJukiLafV55": 3900,
     "Ah6i47xhGrXNMzWc9yDcFgsx8uz7uJ82Ep2Qj6WVYbDZ": 15900,
@@ -225953,30 +230737,31 @@
     "AiDKHpg8qg2QKGr5icw5KTaR5Xnn9rf1xx2DhXykvJji": 3000,
     "AiEUFAozZUb4i7PzHmkfdevQi3N9EXbWUMhozNaaZ6xi": 3300,
     "AiMBnUVVwN3g58uGK4aNS8uRUbkCK7xqeLsqcaGP5nYa": 3000,
+    "AiP3CJDfe2qt4ZGMt2eUXAB8MtTf4cQVJBD4GebZ5YDh": 10000,
     "AiPASa9jgYitj79GA8qRSh4iTTUhmLVRnuivSPutxiF8": 48500,
     "AiQerJmBWqpboi7ryCa7V19YghvEWVgFHFKpD9gBgpsh": 18000,
     "AicsqL7mTp7D3wzhSprFFHsS3BcmrGBXCowhJxoaqQAb": 1319,
     "Aiczac1jwx6a6tGuauxazEP8wzdKcu34nYtkw7w67WUa": 400,
     "AieCp37oTNwQHj1AZMvKZ6kUWXbdXtewcUhkk3RrrZkZ": 1000,
     "AijM1x9qiiJknMXfUSD7F16dKuNoMxhog2cfzCEdhXR9": 12070,
-    "AikV9XNdC84CtYtTh7iBnnsuyUoA4a6wRB3fzJSFvW2D": 12300,
+    "AikV9XNdC84CtYtTh7iBnnsuyUoA4a6wRB3fzJSFvW2D": 78800,
     "Ait4UYUUcoPHeMCXvMhjb1Yt4hjLrM3jrUNn9sQfbEAf": 6000,
     "AitM6sKBhnQPVTqAK63qpCqYa76rReAz5sArH69fCpBS": 3000,
     "AiuvNjT8iPdd2WrUrV7EeAM8nyUVhwyDKWYrpiSFfkdy": 2000,
     "AivMQ3RNS4NxLFLJZssDhFZs56VBtvHwkVWQUMPahewS": 4000,
     "Aj2vyWj46mT7u6MDcHGXXbDFzzqsRUedFVFnXYTYxc4g": 44400,
-    "AjANjY6xTBY82gmik3oDoNc4WTWPj3eCVT7FgM8WfEpR": 33400,
+    "AjANjY6xTBY82gmik3oDoNc4WTWPj3eCVT7FgM8WfEpR": 33900,
     "AjBKDveQj5EJZHTRZvvjygT2NiELAoVCEZ2v8kK1aZbq": 5000,
     "AjFyQDMFsirQQfVNu6MbgQhE4fjnrcqsSuYNpwmwcMGw": 15000,
     "AjMWv77PJSw3BaFdJWxf1AzrzjAfssiUeCT144yv4kRQ": 13000,
     "AjVws8V2uYcBT57241yW2yQ16vfZF2J4H8Egwa3ZacW7": 42900,
-    "AjWbiAHbyn3EGFbtFV6RcR8vjNWdZ3cu7JTi24NakDN": 114032,
+    "AjWbiAHbyn3EGFbtFV6RcR8vjNWdZ3cu7JTi24NakDN": 159032,
     "AjYZbhjbmq6o57H5vWia1xVwvvP6pWbrY8D5Xvvso8T9": 27000,
     "AjZJvRL7cJApW5zAuukc4WKRnSzJuZURLgVwD18gQWhc": 71925,
     "AjZQoFVKriaRdd9FMSdTCKgqX3bAkVwWv54KDbhJM95i": 3200,
     "AjaU5BHBHH6SDcf3gaLsSmhQrJ6Rsd1nUn6atLna7o8n": 4800,
     "AjanDECf9hoNiQdxUMzfqAHnyBVRg1FRJVwXpM6sxbWS": 5000,
-    "AjdYywPyBYk8FCWp6hh1ebVCTPSSVj8Bmo4bZDs6VUjB": 178100,
+    "AjdYywPyBYk8FCWp6hh1ebVCTPSSVj8Bmo4bZDs6VUjB": 345100,
     "AjerYmfHZ4umWhFnV4MC8MLqzpv2pihya4yeQ75vJXBF": 100,
     "AjjyViD1Kt9wkccmpHLS5XCcshYEeoE8K3Rc8J2Dtquc": 501,
     "AjkZVYBQHEahPCevHLNb1uRGRNzS1fJZnidDxSZ8NJk5": 2000,
@@ -225985,7 +230770,7 @@
     "AjmKCTxaYmuCw9u8awsiGD9uS3gwBhNMSPxPQnmtdqoh": 3000,
     "AjoZsLByHavvLkVaweGuqj5xih3ozQkYfXU2AMHPvYvp": 145800,
     "Ajrcvw6Ly2G1ZLCqt65sEqVHySiNwdDbroQgrd6ABHKs": 17000,
-    "AjxUJkDrjAVczQM5kawD3WKcLV4AWbRKYBSCSscUKWwo": 125500,
+    "AjxUJkDrjAVczQM5kawD3WKcLV4AWbRKYBSCSscUKWwo": 126500,
     "Ak1AaUeLMKkps7FwtegwbsrwYuxDbX7cHCi45pfkCH9j": 6500,
     "Ak4gZamLXmWBmHDjk8i8QrfK7GY4HgZ1bdh8xdQQPAke": 4000,
     "Ak7ZWDf9ZJcMtZ45dkpNTTtE8Txurk9EoGm6RuHCvGhV": 100,
@@ -226016,6 +230801,7 @@
     "AmKjRnxixcGvh9SLAZ839VcXH1PBGz3YSowsE85uEbu6": 1000,
     "AmMNj4Dk6zH62YDYhtQbqoottCmsT8VM5HvofR3xL3Ee": 1000,
     "AmR3gbgs67hgK4iutCdg3TDty4hwETi76wwiyjA9xYt7": 11000,
+    "AmUk7DVhBiwHS6ppLGVw88cKZEzkkVUYaJ3f7fPjycb4": 900,
     "AmWSsX3nrCFqML84p71kHKXtXiCeZgmMQh48Z1tjzce8": 20000,
     "AmYzyBV8QAteFNNS4dxSrWYCKob2hEs3oJyWnQt8ULJz": 2000,
     "AmbADrdL8ATj8asmS1wSFhUrKRbdsVRYrSaD9CrB1Bz3": 5000,
@@ -226028,7 +230814,7 @@
     "AmmqSx8ubLHjAze3ZAscAeGBWQGv8pXwreM6qwZF1gum": 101,
     "AmoF8YG24kxC7b3PLm24BAvtiT4nZprJiYp5a4fbQLDf": 10000,
     "AmpMETRNmsPZpzZveDuyA2DeySJCfdfKHjGU4de4KSgD": 405,
-    "AmsytBrnDn1r57ojpHx37EwTswWQyPjGETVGNUo79vXt": 1000,
+    "AmsytBrnDn1r57ojpHx37EwTswWQyPjGETVGNUo79vXt": 51000,
     "Amw2BL2f4R8k2NBnvDRC6vy4bNWCkjwVqgrG8BdMqAbK": 4150,
     "AmyeaFychi8qHWxqb8sVJkvk9xBaM8s6N6fvGSBCNo2S": 600,
     "Amytc1sJ3iB8KvfoJR2WWbfhAw83cBauSnScNJRFjXVh": 16000,
@@ -226054,7 +230840,7 @@
     "Ao5u3qaJubUZNDkQaX23BFLVJ6qJ7wAugQCs9wqJbh7V": 60000,
     "Ao6d6ediq3SBkzj8PtVAnnj9zsxFYMczmuUgAr4btehG": 2000,
     "AoBJUMvnGoNqa3HvKa4ExZqASaZDvfE8Gt6D8pf814BB": 61116,
-    "AoBSqgnpVtRtGQsmyrfwjoodhX3Mfk6owf2VM9xJF5PB": 106800,
+    "AoBSqgnpVtRtGQsmyrfwjoodhX3Mfk6owf2VM9xJF5PB": 136800,
     "AoKaySKf4LuSY9qNks1e24EakqogE24Sy34bxZcWiUgz": 100,
     "AoRAjRSJsBPWGvT644LziEDEiXLYBncv3GmmRANDb8T": 7007,
     "AoSMjqPNRDxosteeVh5qHFAxeURBV66Kep3W4pXNKphV": 5000,
@@ -226083,7 +230869,7 @@
     "ApRX6cx9CYhNexbnWHerXmrFNLFgk2WttJxVvdXTk6Ks": 10230,
     "ApTbLZX7KDVVVXKT1ahNN59XzYE28JQHKY5TYbE7ccDB": 16590,
     "ApVDehDRu6QHi6NoVpSNCt8PkZRmDTATCxduneX7fwfH": 2000,
-    "ApZVGw7yPmbEGcMbiB8LTN6RUgQnKh6VHfHZpvhEE2s4": 71500,
+    "ApZVGw7yPmbEGcMbiB8LTN6RUgQnKh6VHfHZpvhEE2s4": 75500,
     "ApZVGw7yPmbEGcMbiBBLTN6RUgQnKh6VHfHZpvhEE2s4": 4400,
     "ApZbVkz964bjQwFY8oq2GxmFfaPvfdPqhZHmtuc4zq6Z": 15000,
     "Apmy1BRAGWzH6aCe4xQY8AFm75tCgyLbJbHeUFLNKV1p": 12000,
@@ -226102,8 +230888,9 @@
     "AqL7VBAAZ4h1MmXpxiavTxFvyGH9xGaSxHnCyFnb8CgE": 66100,
     "AqLX3RvFTBmWrLuWdY41JWzrJJT2teHQkFNnYDdUuJtp": 1600,
     "AqLX3RvfTBmWrLuWdY41JWzrJJT2teHQkFNnYDdUvJtp": 100,
-    "AqLqXvp229sSYNbBBk7RDukaWvtS9x7GnAWMaMWZFm5d": 109926,
+    "AqLqXvp229sSYNbBBk7RDukaWvtS9x7GnAWMaMWZFm5d": 121926,
     "AqLqbMYUTktyxdBXVK4G1SUvipsypZA64gt3bBb8rKE1": 5100,
+    "AqR3C9RU6ezrKBGMbVs2reZDHF8SteVnKduo2n1YeXD9": 8700,
     "AqSCHXAz2obUaTJ5vk5jAvgRaxxq5SZceVZFbHdXyrDQ": 700,
     "AqUbYp7aPShZuJfBAPnd47qsABjoxWW45un7pGYX1Bmi": 100,
     "AqXBsi2w5Fdiex33z57ELpL6AbKzrwQFCc12xVG1GgDz": 3000,
@@ -226111,7 +230898,7 @@
     "AqbECEy2cmWJUjRAPWkRT67HY2WUdtAMdyjDi3EvoAz5": 17604,
     "AqgUE1TsTCCowZSHpYc7vXvcRM73cfK1WxUN55xiXHY2": 100,
     "AqmTEMxd6FqXRjVH1c8zd15NMmEeNkLNFSoKYe5Yqbwy": 100,
-    "AqxUoSgnEUZ99Go9KVApMpMemCMV3weyoWMzsjdz1VnX": 44900,
+    "AqxUoSgnEUZ99Go9KVApMpMemCMV3weyoWMzsjdz1VnX": 61460,
     "Ar1WifYStMH3AK1QCg1eXB4LMs3o8wwUyRqUaamEkBkM": 500,
     "Ar21doDj8PREA6NahrhG2emzUTfruTpUUdBpAuUp9mBS": 2000,
     "Ar637tWJJNPvHT5mA5oq7CWFbVKgRzP56YorrkMrw6Nu": 89100,
@@ -226119,12 +230906,12 @@
     "ArBYxdZ6u44yTCWKrNteet4t2jCwRdLVrVf2duJ72S9N": 3900,
     "ArEUpoKjQAkbeWho36SxtQCgQUH8zmMJV9SQW3SfywxK": 20640,
     "ArL9rdZFtRUbyPsHUivWTxsANimYq7pySV91WCbLZfES": 2000,
-    "ArL9rdZFtRUbyPsHUivWTxsANimYq7pySV91WCbLZfEs": 168150,
+    "ArL9rdZFtRUbyPsHUivWTxsANimYq7pySV91WCbLZfEs": 289650,
     "ArNMevBgv1rNLpcDZD1C93vCUACFKMMKKN3i46qgEKnL": 8695,
     "ArNTKdGaTfKHFQQ7HW1HzzMbBnTA5TePaqW4NTM51pAk": 48350,
     "ArNswNXG8FHiRBDVzF6QBKWrgZoA879HZiwotQnkKHhT": 3604,
     "ArPjsLndxatcyG9joLf1XVi23KjXeiAJGeyMBnD3Fzrp": 170901,
-    "ArQybznyFvgFDPWzxUTwLKQkrdbDQ3i56fyFY1cCyoEJ": 232985,
+    "ArQybznyFvgFDPWzxUTwLKQkrdbDQ3i56fyFY1cCyoEJ": 215285,
     "ArYbuDB7qMZtU9N4Cour1VoFHAnZHto98UE1NJ6LYsez": 58700,
     "ArYdXoiKhbmeBQd91ZJcrVviKWvikejtVknGKFtfbtMH": 5000,
     "ArcbQ4aWURfbGb9BGmpTYooECXfeJCdfKwjWnWCPsxoW": 41000,
@@ -226144,21 +230931,24 @@
     "As16iCTxZbDztH1GYujMmGhcisgd9vMDxb7BQawVHpRm": 35100,
     "As7bPz6KPdHAXy9nxfGbNQSCK5ARq2Fs5byChpuksjbn": 45044,
     "As8Jt2wnj2z7C52kfbuVfWYTtWHWsm9F4Y1b6HUapXEC": 1016,
+    "As9xf6oXHWkwR7joqQ4abfKsodFACHnxwyeesHyQtjdD": 16950,
     "AsJ6EFNAek3iRuyD7gEYK55fcdme993ZfpRsZzqHpHFX": 800,
     "AsJNDU7ATg6CY6c8nxsKKVqNSo6gqsPdrKXuUZr27nsp": 37366,
     "AsKyCtGVTUDkAWefcgRpbedmHuvQwYEixrLUXYiS5J9a": 1011,
-    "AsNm3mDZFNTqFpwBEH2RPAZ8vgfxEFD2XawgwuoerhDZ": 537900,
+    "AsNm3mDZFNTqFpwBEH2RPAZ8vgfxEFD2XawgwuoerhDZ": 416900,
     "AsTAGXieGN43t9KEqyfy1TRC5mxB4nVGHhSuEquDKW9w": 14000,
     "AsXeVWq5Jmrd5FrYYy58tYkcdFT8ttyeME75XzCRjMXz": 67840,
     "AsYf81fLJEq7F7CMXr4HZSGW4yfiGaRkG3ZUvPJKJPsH": 17700,
-    "AsYnZK3NHnuk8Xo1XTaDvCNj1A6Un4H6u2yc9X7m4gAJ": 52000,
+    "AsYnZK3NHnuk8Xo1XTaDvCNj1A6Un4H6u2yc9X7m4gAJ": 37000,
+    "AsapzmRAJfduM3c13cRYWbdKWCyPCZrMpW86VzE7BwfA": 1100,
     "AsbJAkUZQEGfdTeg4JYLRqRzrStsqe9PQf7UKMVvjBPy": 4000,
     "AsdtV2Qoc2Tasfqc3QYymgn6E7KjxjubPm3r9MWqxcPY": 500,
-    "AsfpECKbQS7TeY37RQqYx6imSQiuvDvwhxhYAGr9Pyc": 5000,
+    "AsfpECKbQS7TeY37RQqYx6imSQiuvDvwhxhYAGr9Pyc": 8500,
     "Asi8pxxYudbguMDGauhQyd4Gn2pGoc5d4JsYeaVq7zHC": 12320,
     "AsuQjtKoR8c6adSHqG4nKEUJcy3gF4bMByyuUDJNdUVf": 500,
     "AswFyfNkRJs2fio55tb3sw57HJdwcs1TAbytoWU47LZF": 100,
     "Asyut2gJCtYCZEJr3YLSXusEoc5ufcVCf134mcGafr7F": 1000,
+    "AszEePx7Fe5ETssLyfuYzvasMuTVmbLaSap8azSgtaXN": 10000,
     "AszzDMkV7kxKTYb7vGmShRp3n6o9Jw5TwzRCzF8H5cSd": 52000,
     "At2tHEHniTcfx5B735S1DesKhnCRcfbAnxGoz6Mtv74": 3600,
     "AtC4JdHyGgDrfzD5xSLCi1M46WFzuxnAMrUcXSkaJYg2": 10000,
@@ -226177,7 +230967,7 @@
     "Au2fGzSDuFDm2mH4S5RjidJ22H1G9c51PTJNqbMA3yuQ": 5000,
     "Au46vUHR6rVH5rS3xEmjoAJQ6gEpRbGHSnyUwW2oBoxh": 100000,
     "Au6ghxbPUspPKPzfKduzFszFAHi6xDZcXZuuUVzi2uhT": 168000,
-    "Au7GfEcPdzywAPA1qfmmzzRSGQjJf2pekLZzZ3Dw4hw9": 763899,
+    "Au7GfEcPdzywAPA1qfmmzzRSGQjJf2pekLZzZ3Dw4hw9": 1018309,
     "Au8ur8fjenj9aXUcqAtDYzs3VtDUh93e5owAmWDKJiC5": 3200,
     "AuCS1DL1udvJWhyuuWvcavP4Zt1FCpMhzfWgMAww1GoP": 665060,
     "AuDRXPf7tjAuby228TUiYXszgxT2jwgksnGW4CpRp241": 10000,
@@ -226188,7 +230978,7 @@
     "AuVtRqMYsph9ZjTpEv7bB5a5ct79nHMstoBGCrh4C7MM": 500,
     "AuXL4uxRUwsQ51S2ksMsECXgmYVAhNDwKFXAdw9najKM": 1000,
     "AubaDRaHNxH6HrBG8fHaKyuUScRJVHjYFCxg6cs3rAa6": 10000,
-    "AubkoyFzycuSLedHxJFohevjiYDqf1k9YAFcwTA5n2L2": 824900,
+    "AubkoyFzycuSLedHxJFohevjiYDqf1k9YAFcwTA5n2L2": 788978,
     "Aug8K2Er6Y2s1ThNMPxCQxrwu5PENzS2BynZLnXmdys5": 8200,
     "AugtyJo8LYMbKUptL9SB9kVuuYjgNooZpWc3KTV8x35q": 10000,
     "AuiMr9bCZdh4STaNqimyb6SbpTEmnLRL7JjcjbsTR1fj": 10000,
@@ -226201,56 +230991,62 @@
     "Av3QzgKQDimmK3mX5gxCajzHubLCcrmKB29F19pDfXTw": 18000,
     "AvCMAtPUQNLZ44obK8iEUkpqYhk39VkDoAtd4BuvCMMq": 1400,
     "AvEGoveN4sLuaJJkyg73HPcQeiTV1DNXh3RfZmrTjcee": 5000,
+    "AvHyBpBuhg9V2S5wx6yvpggmqqBi2kTpuPHzKaMQ7jFU": 20000,
     "AvJRqePmziRNxmbyMNGSaoUkaM381pcw5iqiEmAtFTxd": 5000,
     "AvV393pGq3wyBXDyG7C11v2eikVANwjPuX2EqUSEe2dZ": 1000,
     "AvYqCCyzSzYC2avLniTNtjzDt3TM4LQhCazs2pkeyDPQ": 13900,
-    "AvavyW2SXJzYQP1hGFRP5MjHQ8wMhRjMNJSwWf6ZKNix": 5000,
+    "AvavyW2SXJzYQP1hGFRP5MjHQ8wMhRjMNJSwWf6ZKNix": 1000,
     "Avbk3Z8j1ZD4qksuE6vALm3dtN85Ubua3XQsbtzsxaaN": 4000,
     "Avg9wJmnwf6gmJuiZJCzmhc4WJLbDx4qfC7nzoLLpUNs": 951,
+    "AvjSMcqzJLtPrY6xQUqYTpWxzwf9m7Wre4wMtrnpwSF8": 1000,
     "AvmXryquRwmQ7Beqy1KVuQPBJLJZLxVetND4ATW5KVru": 10000,
+    "Avr1mCvteXerZt92vLipPa5gUDdLDsvr9mbABVEtCCLx": 5000,
     "Avs5ZtkBc9uHEEqoriT5HkyFNFsbQXsj4feXHwX7CzK5": 1000,
     "AvtZH65A55GD1by1mu1B5f4Rta7MHgzcePyZvAtQkPHC": 100,
     "AvxfMi6ePK51pdGsHLd69BM5ZMq6MCVM1jycuc69qBYV": 5000,
     "Aw2oqcqXQnVvMjj5Wg4e7sXYHBPQ1EPip5bqrGtm118": 6192,
-    "Aw48k5VvkhSUFPbqjtsTXzWxWwQBtzQe43u8DtpJ6ajw": 17500,
+    "Aw48k5VvkhSUFPbqjtsTXzWxWwQBtzQe43u8DtpJ6ajw": 11000,
     "Aw5Tuw1z492jpFczfDrt4RxCSxsouNTjMPzJkLp6eNSo": 50000,
     "Aw7e95fe75dTARWc242VkCzMApy5ZM63e9Mmc1xWfe6b": 3000,
     "Aw7e95fe75dTARWc242VkCzMApy5zm63e9Mnc1xWfe6b": 5000,
     "Aw9na2jdgLRpHfhvu3KQB5V2ipTx2EJxpBsfBufpUHM9": 3104,
     "AwA6WdnZ1f4xQDLmy9qU71vceJbFSsPJA5FhNANofVxE": 1000,
     "AwA8UyqgQZz3cK4qXD9Upm5PewgmxaMYfQ4rEhUsK3AE": 9400,
-    "AwAXgRQQVRaXNCUjyaZ7S2YwHVsgg9gkfiYmeDZXng4Z": 95354,
+    "AwAXgRQQVRaXNCUjyaZ7S2YwHVsgg9gkfiYmeDZXng4Z": 35354,
+    "AwDpex5L94hYyFUGSFTKaQaY86PxrUrDCJVqUmW2xcJm": 15000,
     "AwEkhtgCb5jxUxtw6AfpzoH9DtzvT54yfoEWQCptGX4X": 83800,
     "AwEwVQiABieqtuqfQqT5xX8qoj81qtapTgjo5icsiQK6": 10300,
     "AwG2dYhjGmRMDSvxES43fG8yKiXQuyeC5GttWpXv8sAC": 800,
     "AwH1o3qHa32cMq2BX8QP54PjX4kjMRwWXrcPRBiWPmSP": 5000,
     "AwHb4FHQuQYeQAoVjQmpJVhxbqeaX1DGS4eduD6mDgAv": 1000,
+    "AwTKwCDM7Vw49UkHoDeLPetpBqW9CxGDxuuYemYAbBTA": 2056,
     "AwUfoyAD1Pnxq22g9wzczCeL4MRpTw2M4g2ZFcr9YhSH": 3000,
     "AwWprchCrxdq5UdeEpsMhXimxgj95rLKGJrvBSBnLrxA": 10000,
     "AweiEVet681j2xTpCTQK9yY3MLqy1Lr1JY9DvAs8cyDo": 19000,
     "AwggNYFj3NHPan73X34PuG5WcqF6tdeKjA17XQ4NxpYL": 900,
     "AwhFw8dyq8BHBVSNCwcL5PcYZmrcVT3h3JVtzdEv1pCz": 100,
     "Awj63HKbxL5sZfsUizupRUi41w16dW7WMDNTdS9eEoLp": 7400,
-    "AwmVGyjTRTUAHPACy4yBjP1KoHiJFNmaUBxiV279RD4": 354069,
+    "AwmVGyjTRTUAHPACy4yBjP1KoHiJFNmaUBxiV279RD4": 400569,
     "AwsRtHDcWTs4JKHLGYaS6ZNKEx4URNf7g14UzwfBcrd1": 1055,
     "AwtxFjRy79t2gnpfvXKnpXamDBjG4YWn2qZqbCP6ossv": 300,
-    "Ax3aQPBt8fy6tmz5GHCyVMrRscporXjmEeos5H1aNUHh": 181878,
+    "Ax3aQPBt8fy6tmz5GHCyVMrRscporXjmEeos5H1aNUHh": 208878,
     "Ax5gn3DiUCvyQVbDbvq7uvifch3mHY31UUnhVAvY7kYi": 932,
     "Ax91TCkHjgvf81nWthx8UVGPUBe4AhNx2WfpnfqaQ51A": 10000,
     "AxAmMB1YzjiXE4chcPNguFBstDtAKpoTSYijQ96YfN3B": 5000,
     "AxAvuEAK6NFhXDYt9n9zeeWJZcyEgTmjFQtUQWtuKvHa": 74500,
-    "AxHdvL528RQpdmotb7eENx2h97ZUPxUDKT9KfZdAXXXW": 171100,
+    "AxBBzQigiBHDRkyLeqweqimHYoK4LWTL4xV2G1SH8kvR": 2000,
+    "AxHdvL528RQpdmotb7eENx2h97ZUPxUDKT9KfZdAXXXW": 269100,
     "AxTvKn6LwicCHPckCjH6iuv9ue6ie5rjyJuLjc8uRjdy": 5500,
     "AxZ6ZNVJWBjf4Xa8P2kRewgRNfSnxsmNJoYN1B54t1dR": 2500,
     "AxcYu1consA6gkP3ZQ4XTZdNFyMDvgqktNyVkYR23fMh": 39000,
     "AxebHFYrAqy3pkNiVCXiU6VD5kKb3dETGfR1hCdx4vbf": 5000,
-    "AxfF9kmk3cniFijC6NQATcy9cPyq97TS6isSUJSuZmZZ": 76100,
-    "AxiQgMT5fKwSD8CB1i2fepj4R5ubBAaEj1VSQiEiy48e": 605215,
+    "AxfF9kmk3cniFijC6NQATcy9cPyq97TS6isSUJSuZmZZ": 98094,
+    "AxiQgMT5fKwSD8CB1i2fepj4R5ubBAaEj1VSQiEiy48e": 712015,
     "AxnTCWrnU8WZc9ADp35p1M5JXFMjfnM1bz1qL7gQPoka": 1059,
     "AxoZbhkQsn2uee4gLXuSSFUcLZt3f8ZES9xREe7YDVV1": 30000,
     "AxqxMRY4tByFax59RwAfLuRHRWbDqiLiVDMF8XGKZgSg": 10600,
     "Axt6sfBvJ5c5XTmo8wkBu22RnztauZrUYNWXp6XENkSc": 1159,
-    "Axut5S1XKhRejaxpMVm25MPb9vBbk8pkoi4qaXk87HdF": 43897,
+    "Axut5S1XKhRejaxpMVm25MPb9vBbk8pkoi4qaXk87HdF": 77897,
     "AxvTzfhFGFNqLSN9469YdC7DLhtsYS7eXU2xSACiYFuu": 100,
     "AxzQLjRg92qUSoxVKpuhS2k1LfJHk5rKGCAaos16Jpny": 10000,
     "Ay2w5YSbcwx2CzoTZeoWh8TdyeVcuk5Njw7L3NA1ecU2": 100,
@@ -226262,7 +231058,7 @@
     "AyMGwNUvNDC8XMLYcEDMgUcefbzwUoiJZx4rjVBKiuJu": 780,
     "AyNP1GMhojFY92fmepiN5mqXLyhV5Nv5nbf7WCtMRr9j": 10500,
     "AyPaXomA3TipmPfCNpzwLVrjCSRT6AR8PEVEpAc1Sdbt": 41800,
-    "AyPk3KyPxr5xwoi9jA2uyQNz1n1U1faxmjTzK9ZsNDP9": 20000,
+    "AyPk3KyPxr5xwoi9jA2uyQNz1n1U1faxmjTzK9ZsNDP9": 120000,
     "AyhdhVs2WsB3qJGvjCXKfJCJzWwM1zSDUfjuugNb7xdS": 25000,
     "Ayk7SKxpfia5QmCGN58W8kN9SqbxV54rjDk7o85i5ayt": 5000,
     "Ayo3qkqRLKfCH6MBHeWbzt2gxXidSGBREKA9MZcVvAnv": 20000,
@@ -226271,17 +231067,19 @@
     "AzEcuPJxjFvoxHubRkKRPLZ4PTpKJVP2FAyujvSL7bgH": 10000,
     "AzFkkzwxSjzdwau6rN6aZxMDot12fddf7V3akwwuUpTN": 15000,
     "AzHkyZDvM1EgFucBh9pVtETPVq7WPHWSfymePMLXQ9vt": 15000,
-    "AzKLX3UuKSTJf9TXjhAKXq5NDjUzTwNeozRkkHzAmNp": 5000,
+    "AzKLX3UuKSTJf9TXjhAKXq5NDjUzTwNeozRkkHzAmNp": 21900,
     "AzL9tFkAEogrrGrRXmsfRSbPyck1nEjp1Rd8oF6Mkh2H": 25000,
-    "AzLrnzhKXziYLvz593jyjemNXb5aChqNSvbK1kkV45CD": 140058,
-    "AzWQpiKrb21foppVmAQRRWcS7vbmu2kmubmnwaJPLoZj": 29400,
+    "AzLrnzhKXziYLvz593jyjemNXb5aChqNSvbK1kkV45CD": 164058,
+    "AzLupu9PrbZhHAUa3Qph2ySs1C9ebJRYBLusiift6KUx": 5000,
+    "AzWQpiKrb21foppVmAQRRWcS7vbmu2kmubmnwaJPLoZj": 18800,
     "AzcArUuGSQ1vuvUpmNAqukhEsdsCvYg4im438yQhXAB6": 75000,
     "AzgCci4HAttTy3PpaHUvT6ihZmuWvn9L6DtjjEoq9ihL": 10000,
-    "AzhgFTL2TYqFnmM87Erbkym4CyhQE8yjSy847eNeLHg7": 7000,
+    "AzhVtQJSRLu6rr1KSVXqsJiiz9FwraSkv2Z8g3md7j4y": 34000,
+    "AzhgFTL2TYqFnmM87Erbkym4CyhQE8yjSy847eNeLHg7": 80000,
     "AziM9D1PSBH8qkJTaoeoYoUEjcyaVxXQuNefxoYEqNxt": 1000,
     "AzinArU7q4Y1F9um8jKP6dPDSYrJRtTvH9DJYoWsUWcm": 21000,
     "AzkZJBrydAJRn9RE4iSaKBjcSUkSQo5XRXWY1j2hZ74b": 1000,
-    "AznvoGo8ejwc7jLfNZgPSqLWyUayyxeKt1mZ98thPkeL": 10000,
+    "AznvoGo8ejwc7jLfNZgPSqLWyUayyxeKt1mZ98thPkeL": 22000,
     "AzoB4y4EkLXdt9a9WMrVbGqdfhdBqgzhnReaJ7Lwd4RY": 1032,
     "Azu47GieZwcpDoMGzhsVpiwXx6y4zrqWLewNM9TQwebM": 1100,
     "Azzb6wJKGswCJkidthtu2EnM1BBZEot9dJ77Pd7q2DTh": 22088,
@@ -226292,9 +231090,10 @@
     "B1QntQbGQTYuNx1U6Tzhf5TvbRWJtaRccYfdxhZ37Tj7": 21035,
     "B1T4Cuy2qDbsUnbSnb3N7oyDmA23rwNYw9qWXbFbnjx1": 20500,
     "B1Xc7TwpfRvER8DQCGEsQQXUfWfkh2zApR3Xx4D2sQUq": 60000,
-    "B1b87P8jza54NXxieBLs3E9hzNgqPxzDsA49o6gcykRX": 90756,
+    "B1b87P8jza54NXxieBLs3E9hzNgqPxzDsA49o6gcykRX": 150756,
     "B1cmPyqGEWixBiRuZ2Gh4kAjWtcjozooFWZW2qbr9YoG": 12000,
     "B1hzwA9q1c1pSLFqP3Gn5JTJ37bxkBf7R5a79qRdyihx": 100,
+    "B1kTN3B7GCPVpKMmHfjzeqGVNX6sahxNYCb9X1aHPquG": 8500,
     "B1o7m73qw6mVvGRScz2g9LLafTbnD9EP7xyQp1L2oVHs": 600,
     "B1rCXKiKX8VC88AG946Eo1ofgUAHX4YhZRGrpZYM3rWH": 4000,
     "B1tL5JtqDiZqYy3izeXTuFXv5UBvfbDt4KffxfQYU7zX": 5996,
@@ -226305,11 +231104,12 @@
     "B2DwcjVEvdCZNAHCEqq8MsjX25DaxhxiE2KjdxCffkJT": 204,
     "B2Fo8BD9YmPge7Lhu7mYGNnjA1VkJD6mGzsMdeKTGCey": 400,
     "B2G2Wg4GnbYk5PQr2wPZnPtkH7PiPiAz4ReKUqwyimqf": 1964,
+    "B2LpJkS11GbaiHKgRd5QsgT5uCeYh1NAycCYQ44EpptZ": 5600,
     "B2NK1BreEvasyh4AfzrszRCnf8jb5PmNCtPHye8bRfrs": 19900,
     "B2QyyfbQgN78aP2kfLuf4dSyTna42KimPAbDkrjAedCo": 100,
     "B2RdToWkYruodN9aCFp6reR7AX2qPZM2SeK9h42q9vyx": 9900,
     "B2Y4oMUNMoBJvzPGcmoKv4wgQXWQwLH8hiNLzdYfPWKM": 2000,
-    "B2aaeDKgJ8MqSV1U7ipEToRCZQbsq8pnrZmxAiogMysm": 3400,
+    "B2aaeDKgJ8MqSV1U7ipEToRCZQbsq8pnrZmxAiogMysm": 49900,
     "B2dZwc94EX3nefr2EqJMaZPvFvT3BCzYKAf1gTFT8jwy": 500,
     "B2hx5Ui4gXac6WLA6sQA6oBPEEhL6zutmrtXYzuKpWvZ": 10000,
     "B2jXmkpvSAMVbG9udLu1nrDG4abBRbMaAqAv9o8tPEmH": 2200,
@@ -226333,9 +231133,9 @@
     "B3Vh7WHWL5hTjidYhq4TG6upxkuWX9HV42DLVedMLSdz": 650,
     "B3ae93eCEaMZipAQqiCzAmB4jbLZv6n39GQmVUR77Nyd": 2000,
     "B3bVwipYJpV2N1JHoaV36RJA4CGHkZ1TmeWagk2JC3Pa": 10000,
-    "B3gS3NG2cQnCz6g549QCc7gWjcWeWC9pKMkr8LSg9dK4": 3000,
+    "B3gS3NG2cQnCz6g549QCc7gWjcWeWC9pKMkr8LSg9dK4": 32000,
     "B3gnJVRY9rFtAkpk3soHbAFXgCNuEdCDDp4prcWufyUg": 10000,
-    "B3jMtwYfwifACqWMV5LcqRR5h7BmciKW4QxFk1VMysD3": 5900,
+    "B3jMtwYfwifACqWMV5LcqRR5h7BmciKW4QxFk1VMysD3": 6000,
     "B3jznDZcurszETm13Yj8QrhUaYBBWGre7KKsvDgLe2L8": 100,
     "B3mRJ8hweKtwo8ruzvkiJ59iAcsbmkaCQzfuYHTWc3so": 28500,
     "B3uBR7Bg6ctL3PuqENYcQTpJTKej3t88NAP8wm8CG4aK": 5000,
@@ -226346,7 +231146,7 @@
     "B44r6FLLUCi56N3ui6vUSShV6Y9gnZ19seUY4nkAFu4w": 5000,
     "B471AhDKwwMpXxizjqUNJ6XBqEE23QMwY9TvU2RP1CrU": 17900,
     "B488WmdcADLnDczj29BX9seaJpChkYJbkQU88zfRBES5": 237160,
-    "B4BVb9tdUJVvchVRG3vtKJyYYo7CzmQhhYHz2VRYwzaC": 267577,
+    "B4BVb9tdUJVvchVRG3vtKJyYYo7CzmQhhYHz2VRYwzaC": 288937,
     "B4CmaZb3FvWG4FkW8ZtcxMesRPGwafHKMki86B3MWXJ2": 3000,
     "B4CqmzQoVsNbAwBYRwoEan6grV1EoiWVp1afnBXCCEjM": 31100,
     "B4GaQXGi93wUJBYHyFf7DJVh562Q2NSgnu3FzKXw6eGr": 105000,
@@ -226364,10 +231164,12 @@
     "B4ph5WmTggDT9kv3M7kSZ1fxohsynG99QY5xb8Nd4skK": 5000,
     "B4suueHhQyrNXtENjMXJAjtWNwDshiXmuGzBMKXnxwkc": 2800,
     "B4wZwsmLZtLfrHY7Z8WUDJn1M3S8pgcrmkEy4tF14JgX": 10000,
+    "B52nvFy8JALBFb1ZY3uPNuCcd9XuqyTjikt91zDC1L5h": 15000,
     "B53Xsc8er8dbvXb54x4Ei51h9qGU2C16ynJY2Jmmxsqd": 4000,
     "B59LWF8midra4vGG3gUv2P53tes2gJPqDEbTf3ApJJAQ": 1211,
     "B59TTncJWzAuxBJwwFSbb2EpRifXdHRgDBwSBQSXxEyi": 280000,
     "B5LBDZ3zb2ixx4tay1RFiyJ6kq4wDKuAySoc2Q6mFc88": 100,
+    "B5LitY3VehuoC7JLjADyapmuWGnSYDANn3btTo9aNnmu": 99500,
     "B5NxPn8WB2JPwGyJrte1wJD7N1Ebx2o3bzdCah5iFL8P": 1500,
     "B5QtuvQiYZJsgn8uCQv8FvzvSRRo9FM5xokmH2qkyo4Y": 15000,
     "B5S3n17hVrp2XR9GSBHDw6co59P2UwBwD68Gw1J76fod": 18900,
@@ -226385,18 +231187,20 @@
     "B5u15XjTNXGSAS7nZFLrhy3oWKFSpAMXqqSFEkQxCSwX": 6325,
     "B5u1ppJT2PF6ccebZMAHr8Bwafp1c2C1s5KThhMnz3UU": 5000,
     "B5ygTJbBUyw8zmekAU2fmvD5fLcevEXnk2ZZbMYgSQrE": 16500,
+    "B68qPxACHsSwsT8gzxTw4NGMv3rDGXYvaB9DSnkszuPn": 150000,
     "B6ABy7QGSB8qmk8D3ZRPdDSN5GCtsi9mC8BCiE11m1X7": 10000,
+    "B6AFXLeRpFidtgV1WXvk9sVfu18j1gw1tgdfeW8hujER": 5000,
     "B6FX2eB11EUhitDWEb4ZCMQFuG9BvnRzdYQX82So3Vbc": 5000,
     "B6KWjfh9ZNVeViSipncM3KiZ1myW7dECPAdU6rPeWJKH": 5000,
     "B6Kk6ebHZrhojgk17Hze1fet2bpmd8a2c2y7Ykx7Sxra": 100,
     "B6QsMaXqQF7UeoH2QaDecNmL8pwg2tXbRW1Bktb2Z6Lm": 9931,
     "B6U5AaFjZpnkxLqgc8T35KDEwJmyF5AhovvSBUwpyFHU": 5255,
     "B6Vw5a3K4LoGUNsXf81KCbPJ5DgJMkAQZupjzeTF73bp": 1756502,
-    "B6an6jhf9cGsfavibDwo4i8QoPJBrWd3uQsnn5DzX6mc": 77312,
+    "B6an6jhf9cGsfavibDwo4i8QoPJBrWd3uQsnn5DzX6mc": 83312,
+    "B6eWqbUNMJkffCeFZwvceUQTGJjRKbt2BYHK5VRSmdkj": 9500,
     "B6hS65FfEX1XXbRHMxevVNesc3u4cY6mzDW2LqAVf9Rx": 4651,
     "B6hWJBV8XEscNMtQEURFniGJe8QV8whswq46a7yKBtf": 5055,
-    "B6jFTRyEZW5SqfJRZ5Jb4KK2W63zeYHhGrUv9DJayp6S": 8158,
-    "B6kNTVSzXP6LVMPAV4Grvuf9TmqL11CVHrj7NKSToTXF": 9000,
+    "B6jFTRyEZW5SqfJRZ5Jb4KK2W63zeYHhGrUv9DJayp6S": 150620,
     "B6kdP2guSYgUeZ7bnN4zHwi2R45diVQo7tMMvZcDuMNK": 10000,
     "B6kjzj1fhz3QtDL9CNMMXj7dNn3bfyLx1oni94XbwoDX": 700,
     "B6nidWDn2vvN6ZnWWNgDo4uhfH6NYEsJbDN7cNRHDNjM": 18020,
@@ -226421,6 +231225,7 @@
     "B7gHdNqasQr2YFSrkLxCXKWXGqN8X7L8HMDMwQnbGYzy": 67900,
     "B7jNtYKEFgH28qSJnAQ6VgVDLsC14m8ijfcgz5E3FXGH": 1200,
     "B7jVPAfd9rzW4Ndm4JY78kVtESqfuS9P8Ha8GzcXkzro": 1200,
+    "B7kJFkQncHPsNTXZGGeijmv5kSek53hu3bv2DRMddW2Q": 155010,
     "B7o4uRFe6aGy29xELucRgVmKGvKeYRwFo7oLkpenZJCu": 10100,
     "B7oyVgkcss9TKmxWkkg2Rs36TM1QAc51L2Dgvn6D4eoA": 10110,
     "B7pgRrr2vYET6s9wNHBZ9oTeGZfavkNd2yr9n3EqUt9X": 400,
@@ -226442,26 +231247,29 @@
     "B8Ga5EVCBsYP3xbQ8FyuY5PNbPxyujpLToRnhikRXigL": 1500,
     "B8PhgQsZFXRjTXuHwRcopYVR2YuPfFDEFWskxQ2pX47P": 21800,
     "B8RhL5yfEHxGxwC8eRjNSWRK7iookxUk43J9vKYUKq9V": 314,
+    "B8TqX8NCMMAdKLh3AVRemeztPqBofJ8LpRigrs8PcQUE": 5390,
     "B8X3V9Y1ErA1tzZURL1cwgq1NiRE2BeV5w5S7ge12PvS": 2663852,
     "B8XJQj9ZLFdfkuu5CKygxPgicbyAYUq91RN3cinmTX9M": 2446,
     "B8Z8rJSYvtwrDs4niGCDLNotLCQ3LMTgJwb5D5Les8tu": 81863,
     "B8ZUiVHzKZVw3jWiJfWA9A4EoLXFZryDrRekiXtV1vws": 7200,
-    "B8aCwMjAPBS7y9hRW4yPKGWNkqmjLfgW3dNqwriyUgL3": 1135000,
+    "B8aCwMjAPBS7y9hRW4yPKGWNkqmjLfgW3dNqwriyUgL3": 1000000,
     "B8eoR263Uq7xUtrbWX6nAMy6BEKf4FNWZ7jLCRMxQP4D": 5000,
+    "B8jNkAZbpX71Csk4XAJUFnBUNQUpMT6WkBeP7JNYsKr5": 57000,
     "B8vdzuueFvTtwNVAFBfPaiYZtKzHeyLhAwcYDS3VxaCP": 300,
     "B8xYMyMEm3YXzwHYLRv74JFwTDf8BAnckmxq4xoLP86b": 5000,
     "B8yzcfinYkoPFrNqEhimPooMwfk9o74NMZc4vVedbDf2": 5500,
-    "B8zCKgvJhj5RUyT4KRqb2SZhpg8naWqUVCpNBQyrkSUP": 59000,
+    "B8zCKgvJhj5RUyT4KRqb2SZhpg8naWqUVCpNBQyrkSUP": 84000,
     "B95HnTEnGLbix5qG2mSTXF6u4dwdRR5iS4Yy6i7xVtUW": 700,
     "B96QvsoqtrbVdbT5h11BiXN5UPUeXDAseNpnLK5MPuH5": 10000,
     "B9Ch4fFQxq7jmpYTh4bgyW4N4nPuL3KHwLNU6hLeGB8i": 480200,
-    "B9G7vsr1TTvmpm7a7mJAoXozoGzoFRpKCHPMf3e6f5km": 30300,
+    "B9G7vsr1TTvmpm7a7mJAoXozoGzoFRpKCHPMf3e6f5km": 61500,
     "B9HsNw7mr7WL6SALs1uPw7Qn2NbXMqEDtF5qd9xnNtUN": 10000,
     "B9RcY7ZmGvQbsrSUMsb7TPVSSozJRUWbgTKS9q8bkray": 700,
     "B9b6oXGiKsHbkRGupQi7keV4jeAqzGNnv4jpMLed5WQm": 248948,
     "B9jMp86o15C4WJcJq3zPgoXFMsZ7nqeJE3QmXLEbqmuw": 100,
     "B9prMjmnpt4k9BCGGEydYUDayCQvVhUG8oYpysYDvLPe": 5000,
     "B9wKtKWL6LukooYYkfUH3dzxoZgE5TZ4RKhDVSpBVLn2": 2000,
+    "B9yq96ij5BPH5UfWdJrmFND3HdzL7pekNhES28JBf2tS": 8400,
     "BA7aFMqR2DktnyNSN5b6xcKiEGzZEiAYHxkEAmeAWPNq": 100,
     "BAB3pSPFdHaxiXBoPFUvysEUa9RB6jkYKLeYJLffFx2H": 62255,
     "BABRB6md7dnWrXa4dKt3q36JcGU4EfbSnbey8w8iYiwz": 10000,
@@ -226487,17 +231295,16 @@
     "BBKE6yKiqxD5aggqf4u5BzW6vhdnSVnLUGwnWAoTiAZs": 3100,
     "BBMRcj99uTSg3FDJeiB5wNEYbLVSXnp3JS4bcMjuYaqR": 5900,
     "BBMRcj99vTSg3FDJeiB5wNEYbLVSXnp3js4bcMJuYaqr": 100,
-    "BBN9hYDwn6W6ubH3UMMJutW4q3yuEd2r9TY5j9gh6pWB": 15400,
+    "BBN9hYDwn6W6ubH3UMMJutW4q3yuEd2r9TY5j9gh6pWB": 74840,
     "BBNB5X1kyLU7G2rbmKrn6uKvuJsbd8U7HSkiftPeYZxz": 63000,
     "BBNHHDS8vaEfLUnyA636TgCJGY18QCVWsyaQy1HvtuwK": 3096,
-    "BBVAk6gwtYbPY6ShECtgMcZExmN4Y6TzWj6mTxJZ9GTe": 6700,
+    "BBVAk6gwtYbPY6ShECtgMcZExmN4Y6TzWj6mTxJZ9GTe": 47000,
     "BBWtU3i2gxGR7e7f1QbaSf3faK9C2KGg1x3f3uD4f882": 14148,
     "BBXtt9aYAk6cjHjiLEL12EqQgSQM3UD2sLse5DtFuiHS": 3126,
     "BBaeLszCJnkDa3mLw579EvRUopmR5d3bi8DhrWu62KS4": 100,
     "BBgVRUYrii1e1y7L75agiFKhrDXCcvmhHcKCehijg43": 2500,
     "BBj5t53j33VditxXnaSH2kF3eDcPYrTKdi6cq8Vtk4TX": 13200,
     "BBs1NJ6bxxznHrL5wVi7w4Dp65rEdVCZZC9oxW96LoTg": 5000,
-    "BBu7Bqfqjh8qjWQFiZutXWiAxtQxCryfTBzggfbNkebm": 1000,
     "BBuTjJcBwbyCK6AP3MNqwVr7wSuT4EPM6nXDnPbF65hr": 1600,
     "BBvHEJGxLnzUwsiFpoaCH4ypy4xSxBA5A4ByV2opmxZV": 2000,
     "BBytRf2UH72wUFvqFFzUCgUP9LAdXyj8A4L7iSMbJz8T": 700,
@@ -226516,7 +231323,7 @@
     "BCccKAoJ9jnFjbpoC6dGqdD3NgtLQNVw7uCtEZDt8FK3": 4500,
     "BCd3D1LzqWTtJqWLfqPuvXsKjtDgvwJGeFuAjEMGcYNY": 4300,
     "BCdN37x9chDyESidYSB7k2iMHHEevtFbhGZUL2Cw2BGZ": 23000,
-    "BCi4bTyjBRNVk5YK4cZhKt2te7VF5NFKyoDZEF6uVSYL": 81200,
+    "BCi4bTyjBRNVk5YK4cZhKt2te7VF5NFKyoDZEF6uVSYL": 72000,
     "BCnd895BnYZZmrVR22y5qUfbZ2FXEZDTrcer4JRNAFsd": 38760,
     "BCrDxPCeiRxL83e7PK6r3849Jy8vsSadqmzwfXUqk3U7": 3400,
     "BCtGbUW9LPc9TXaTcVau2b5fqv5UPJ1FLSbH8TFN9mM7": 10000,
@@ -226543,12 +231350,13 @@
     "BE6i6DobeTkq4a3Sikms19KTaVZW3rLKJv9kCsew8KD3": 314,
     "BE8S3n8n1Xz9G7GEZ7UuasrxEA6zTjgjb54ViRXUprsQ": 2100,
     "BE8huNjtTb9T4t8CK6i2TDJWEN1q6BYo1ekgLFyJYse7": 10000,
-    "BE8iK8usqja9ZZstKfhLqtiFHm5syU2VPcv3b4G3RCFt": 46400,
+    "BE8iK8usqja9ZZstKfhLqtiFHm5syU2VPcv3b4G3RCFt": 50400,
     "BEB2cHBoPJ1Ud2C9gCANC2GYyun4AfWedhk8w1FdQY6w": 500,
     "BED3E2r1zqaPoB7i4UwKYCrdvBKHueMhhp2MVqG9MxQV": 9000,
     "BEJFaMeScAXYzbVeFxjDcEf9g9xm1fugUuiXfUZgVgSi": 15000,
     "BEPqYeYJHrKWD1ZoRbtyrw6LvBEL1LMPjERRQkt8UchT": 5000,
     "BEQyzTbZrXCb9N79EHj2KrSYG2VU7tdw4cYfEoNs3GA9": 50000,
+    "BESAg9oUTZBacdrh11YjCYqTXrGo7BVb9rYkaCj2JaQ8": 20000,
     "BEZtS4XFQRqxDL8BvrqSfNrGrfRWRmSU6cFphvsVE6Kv": 10000,
     "BEbXZqdCT4VK75RT7rNSPrUs657rwkyVNTkSr3K5Q7Be": 1100,
     "BEbxu4mRhL6j4484yA7JF3R5VRD4wU9McS9Yb1rM6Lho": 5200,
@@ -226564,7 +231372,7 @@
     "BFAPY3i5kedPkvz1FuJayu5TiyGYptJoS5Ki4EYnJWHv": 100,
     "BFEZoxzkR11cq6XVtte8CgHAntR2qqY9SzpGad4h7u4g": 5000,
     "BFH4SUPqLtwEHekhdBxZvKivLuXrU79BnJuFcWoRc72H": 50000,
-    "BFKoJu7obQnkH6NMfqyJAK7F5M1CGUP4XFVf9YUivY5e": 1000,
+    "BFKoJu7obQnkH6NMfqyJAK7F5M1CGUP4XFVf9YUivY5e": 1300,
     "BFLDy32wrHsPcqdaBcAnqyF18jNGMqWhGvFBBwmmYv7g": 13000,
     "BFWn6qxGbhk4CbQucXjudmjPoXhg4YQxaGd8EDSQhPcG": 17000,
     "BFdbxT7htWo2vd3fXqVYfZgaJPP53nwGNWCn3QYBnxtM": 1352,
@@ -226585,11 +231393,13 @@
     "BGVXF8Yr3kCGKLoQUi8Lp4R6vAt7aGKcU5KsT6ywb3jG": 100,
     "BGVb9KHhKgRkZgUEZ8bbBwC7giFSfa7QzY3auSgvEDnJ": 36000,
     "BGVjMqH5Ly9CuaaUfvdnU6YEvDEVXsxugcLjAPQWPwrP": 9000,
+    "BGZZhAgs5cV88SJyb7vqozSbcaiWMakaVjGUTtsfG9YH": 5000,
     "BGpcfAHva2fyfZfVXY9czpA1hoezB3MdHqmw39zUoVkt": 10000,
     "BGq5egGs69hwyjbjhdtBZKT8RkcC5Zvyt5QRqvaB9DsN": 100,
     "BGxUsB4t433wfH3aTWLK3dZSGuF2VHKuink7ASsw9epu": 30500,
     "BH5pSYefRizvZU41TjZr7QWyPaXsNGKHy1Cm7PPJTSSU": 7000,
     "BH6ep3QThWHe6DRewc6KC4R6WVFqzr9uTnMQSL5o2RKt": 10000,
+    "BH7oLSgZmVdmdLorDSJS3gwy35wLQSP8rkSG8Bm7dzBX": 18500,
     "BH8RA1REztfi5MZdhScLynHdgK68yga7fDdj3uEbLptC": 12000,
     "BHMYPvpXVnGZ26dE1mAkGqfr2TaXyZ54WTxNy9rkTgEf": 10000,
     "BHPyLv8w6PufCLnTpKRuyMjpafiY4PxWazm7hQuZtqaL": 614,
@@ -226605,15 +231415,18 @@
     "BHmLG4vJoDjPqaD23DnU3sJcPsTMjVADoPdYUMTdbxi8": 700,
     "BHmnrTbzMNiCr3HRGX1igwKyNMSuLW7s5s9PvxhRdbNW": 15000,
     "BHuKPE8W4n2ac82PCzTFVyy9YsVcHn4wYh1FQC9LfoE6": 5000,
+    "BHwyFu7ER7Y4GEpKrvMmh4TiRBGZy6kHHy8Kzbd9YhQT": 5000,
     "BJ1bfGvFB3VcgkDQony3FFAt5vL8CL9mquaeF7g7boKM": 1500,
     "BJ9zTEWQdyziBA8Cxvki4KMx1JhFTp2zdR65JZnEegz": 100,
     "BJAmDttA8SFvFDpxboA41vRukZG8ETaF3jiVMCPQrUX6": 11000,
     "BJAvkWhhfEUXw91r2DnkCwdMSoDJcPUiNU4hirAf2gpo": 6400,
-    "BJBVsxfNwB3nAf5BnmGZz8tKCUzvPS8uTfJr37JAa1CA": 100,
+    "BJBVsxfNwB3nAf5BnmGZz8tKCUzvPS8uTfJr37JAa1CA": 3100,
     "BJChd9ujLVSvLbqubiAJu47oMwSVZAJfNxziDDSDzxHq": 5100,
+    "BJF3B1CEbdNoSvDRiVsKXquwfv4XpqcSfbAB9dES27T": 1000,
     "BJFmChAY9HDAYQaRw9PykW6svzc6JesfvAt5o5T8zkqB": 10510,
+    "BJGtBkJSMKDUJxN5NNKqAJfqgDmWTGVsaexD54Ewtvm": 64680,
     "BJHD4gZLJKdyfj9m1aAM4fGZxvJFy9tSYwiVN7xHA7NB": 100,
-    "BJHZwMN2AMdQKwXpaDXPijw5XZ46Y2gWoe3QxC2yvr4G": 5505,
+    "BJHZwMN2AMdQKwXpaDXPijw5XZ46Y2gWoe3QxC2yvr4G": 7768,
     "BJRrY8AYCEKiV9yZBdJqgTaavrZ48f27ovebjz52uqZS": 8600,
     "BJVveQy4vegmtQTHhXCDFjL8i2qBZpkjueW7sG3mzq7K": 10000,
     "BJZ9uKKFm7g4du4aw2BUXaRKjowcq2jX3tHvGhHddfJK": 20000,
@@ -226641,7 +231454,7 @@
     "BKovu3nFvKbduA4jcmrCmcKZJELZibBDMvxsQ9qLWJxX": 8000,
     "BKpBescSmsJZCBpJeQGDKAyGVhmF1c7V9q2rw8mXSHML": 2500,
     "BKq9Yh5hCwC2wVK6ST37CDbGMd5mUvtUkgfPPoSHfcoE": 200,
-    "BKqhhzMjLg6HookZYiyv7dTVT69dGf4mz1RxfDHcePjH": 55400,
+    "BKqhhzMjLg6HookZYiyv7dTVT69dGf4mz1RxfDHcePjH": 61400,
     "BKrWY23JfoFNXnUNVwGuJuCZtvLt6gf93fqygzhvFA8a": 3200,
     "BKuhsafTtmAymHms8EjP7euqvK9Ny7Fet8CPKMXrR69f": 30000,
     "BKvCcJC2Cc4idb81tXtEfurkQozoxRhTWnQ41Ko2JRUE": 687571,
@@ -226650,6 +231463,7 @@
     "BL21oXxrB6CYqSfmdLZQUsaJpTU4zqUXyajXLneTHFHU": 400,
     "BL3kPKZqb4nmUgPC8Q7PBSRtY5DA3FQSs3eGS1KdLhsU": 37600,
     "BL61wY1WtWXJSdUWbXqt56fiAXPzQtnrr3F5GWFvMXVV": 63218,
+    "BL9F9vouy8H15BT318qxwpRgCbZ9W5Jk2ASmyH956xds": 1000,
     "BLD6jxJxaTWvacoDcR38bJMRhBN7p7ACvr3aSgrCByth": 8000,
     "BLEuaTVL68WaLfzHXK88dAJ9sAeS5jJxDFmW8oCHCrPP": 339165,
     "BLHnghx37h9d6vByoF3uRcQ6HWHrMjoy5qQtivRnG43r": 2064,
@@ -226657,14 +231471,14 @@
     "BLM73fAjMaTuvhVDFkyQ2zoFEBxTDvrBBBrPUPfzSHLV": 6000,
     "BLW2xYRqBrPu9qzYdh5mdehTcvySqoqD68Xh4P1goFoH": 222800,
     "BLdHHimV7F6c2RgaVz73btmDwdzoiMXvR4oWV7EMwRP5": 2000,
-    "BLevd6kYPmmyQqQxFREFaix97aYdZqcdtB8BS7Atfzdk": 393903,
+    "BLevd6kYPmmyQqQxFREFaix97aYdZqcdtB8BS7Atfzdk": 393953,
     "BLfJ4hjYWzm1yeoz3ENQUBnm5iT2zmoZgUTMZUSjEDmy": 3000,
     "BLfxXm12yTFFD88eZu7HEmHytQasf9nT4otx1TJ7C9gk": 590000,
     "BLfzXyVtnsrr5SWycKZfgUZBJFEEbBivpHL11vMWGdEn": 362294,
     "BLgSmvVoi1s4BU5J8q9ksqSfFiZ7y2g2JY5syFESybw3": 300,
     "BLgZHLRM6v67qK31N1D57wPgHGuErwfPvUj6VKot3PDq": 2314,
     "BLhYQySLUn1xGppJm2EAN4zLrjV2EUQ4ccLbWPdCQuZG": 5000,
-    "BLnWJNYWq4H5ZrfcsPd3TbzCfQd2TJ1Mrhy5dgRBVuf6": 5000,
+    "BLnWJNYWq4H5ZrfcsPd3TbzCfQd2TJ1Mrhy5dgRBVuf6": 14500,
     "BLrgfte5Tw7VThDHiQYzUzo9pNYgu6qJ8xxEjcYgWKza": 2847,
     "BLw5Hv2wNUHSyeYzwx7udSzwTiBPEkArHizKTxT65KmE": 100,
     "BLwNTCCDTfsqrayTEwQpjV6rTcEvt7zx5WkRrvJcG7RR": 100,
@@ -226673,6 +231487,7 @@
     "BM42Ar5HR12VHfx5HU7txeQpqU9mVu9jyJxKw48H2LaN": 5000,
     "BMCociirp69CJ23PbuczmQmq1YpHESr1JcQVgchBLEGV": 600,
     "BMGSk4Qe1v6986MCLP3nHpi1hMrU81NfxVeAe7d2V2NL": 16500,
+    "BMMtthKUor6ybyjj3PBkbRsMkCv7rU7sCmyAECK6FxSc": 5000,
     "BMRTZG2SrTu7Ts9uvJ8vzAwXXQeTzBoxwQMgSWn4zRRH": 17609,
     "BMRTuBDrEZbFY4M23Azk9N5fCprqrhReAqVVW87D5SCn": 100,
     "BMS2mBkXgwmF6kyGrB47kAskxzEvWA9D3vtC5VSFh91e": 53000,
@@ -226702,12 +231517,11 @@
     "BNXNU1abVr1gBqqt3u4vogpTcH2ZT6gJERwHEEQoKGDC": 121195,
     "BNbkKti6ptNR2JYHMgUqQhjZcVAJrPRZ7FrMoibjq9ce": 3100,
     "BNd4zPJheK88D1epWKVWzQXGhzRfYZGKTsxwKZsneMGx": 31000,
-    "BNd4zPJheK88D1epWKVWzQXGhzRfYZGkTsxwKZsneMGx": 92000,
+    "BNd4zPJheK88D1epWKVWzQXGhzRfYZGkTsxwKZsneMGx": 121000,
     "BNdy3kj2DZmwu4qBQzopkFxFWQMMdnw9YonKvWwCR14U": 100,
     "BNfNAoqRYNbk31GRn6uLUJbadWmkBYL5C62wzBtAQ7kZ": 102,
     "BNicQxBigYtFLwNSQPwGPMLtMHisVZdq8k6mWH6nkt7X": 3600,
     "BNqggRGP3PvgPPS37mTfJjE1byoWJj3thcpjseM9DxV4": 2200,
-    "BNsGUqzY5kzTd2Zv9CioXkne1PNppqAtikiNHGYfNy4d": 9034,
     "BNsugED6SqkZbzSG3QjjKkemANAs9r2enDxzxPd6VXGb": 20000,
     "BP6fM9A2oJSgUhscjEg4EUFr3vzphnUUyiMhb2MSY6Z7": 100,
     "BP9qRKCxKbe29BA1E5KyDtnzE3bUeKcUjfs2RZysjSmi": 1000,
@@ -226720,13 +231534,15 @@
     "BPQoUaPpzXx8MHp8RHAyCHHkyE1TcuH5JTphVbLDJPLp": 94500,
     "BPR7QMUMFArcNrANZEsyuE4ZS7M1oC43dKrSw9FtxEmz": 51050,
     "BPRDecLbVHWmHZMzwhWejRDW324QrjYYpu5EJsF7GHFb": 82600,
+    "BPWboLySfCbhAq3E2gw4kEjATVLBbNx2a4GsykH1qKrh": 15000,
     "BPXPiyykGguT1UxvbmjVXDredrPZy1d4PNQ5XV71ooSi": 300,
     "BPaZUGQ312Ra1QX1vnnLtgLq43GXcAVe7dWEoxi9VpUs": 43900,
+    "BPc8nKSTfqhe5BZdn3NczAeh6p3DM7h8qxM8G97Ha8sW": 5000,
     "BPhhADjY4xWRkDdHCpHY7E2QdG4Uibq5LBDyFYPzm7P1": 3000,
     "BPn6Muv7escvCvYx1FWQhuNJN5GzZuNSdVJwGh2VAiEg": 2022,
     "BPp2zZv1gyKNdPRuwtNcMJtdK6wksMz7xEBufHXNLNgM": 609,
     "BPpC6mYnz3nGsXSjug1qB13VLWK5DnkbxjnQNp4pQEbT": 10200,
-    "BPxoidBRPKcFZuXq99c56Kf5aJ6Z9o6L4cbWWvL1vzZJ": 2068,
+    "BPxoidBRPKcFZuXq99c56Kf5aJ6Z9o6L4cbWWvL1vzZJ": 1068,
     "BPzVosnF4ah2Drsh7HJNMzhPL4ZcGSXe1qP9RWnPxxPA": 100,
     "BQ3JZ9XmJNqwfNPVbVasWh6V8B2euVuWpewQLtGViKRG": 2000,
     "BQ4CW9S5tSSXPLiZFYWMeohsXWzgy4GvjHWGTLXxRPcm": 20100,
@@ -226739,7 +231555,7 @@
     "BQRf1pYvRHijQDvYjBjQsq4PBn5FYRaD8q66naVeF6Ne": 11000,
     "BQSndHWWoH8mJ3FQHzUuJpYDFxt9VPbcg9UBi26URetp": 24400,
     "BQTJfxP7AkijFnCcKKevmfyKtUg2kpkX7Fj8SUjjJcQZ": 1000,
-    "BQVjdM2Hqm7ed6h22ZU8MnHERiJdh5Z6UPCniLZ3ud53": 128500,
+    "BQVjdM2Hqm7ed6h22ZU8MnHERiJdh5Z6UPCniLZ3ud53": 100000,
     "BQWkF9YDK8L1sktChijorru1RFnT3JmfceMJCKkm6q8S": 800,
     "BQXoMVwMQ9HmJZG3FexFvASqMAb9WFQ49gvJK634zmX": 131700,
     "BQgyLvdk4wiVM1DnShCWniEmPiF9SBX8pX3RSdWoqkBq": 1042,
@@ -226757,7 +231573,7 @@
     "BR27k7bQsi4GLbvWnKjasJDoCkQALNPZkEuVajxBXhjf": 6004,
     "BR9tSiPXFG4RPp1YvaC2e4mxPkESBpGpEdEzHFWHJ97E": 20000,
     "BRC2qPREZi6HWWJHG8MkcvQ2BsSJ7oxgCavrGx1wmtYg": 9100,
-    "BREfRrQYFacfbD56Hq5rJWKiqy2TFbiduDa4FFCzWzLQ": 4000,
+    "BREfRrQYFacfbD56Hq5rJWKiqy2TFbiduDa4FFCzWzLQ": 74000,
     "BRFcASVqV9b1985JUDsFk4o5ZRKG3ybTT2et7z3RsBSA": 31500,
     "BRKpKwLy3PnMmrNSp8KTZ4uRiKEuN3VJ2h8s1fora6vA": 14000,
     "BRPJfzDn9F1czWmngMxTzfiHs1ha1pFSBwFeaJHW5eXg": 100,
@@ -226773,18 +231589,19 @@
     "BRpudiBDF8ErPx4LFbcPRkAgfVJioU5W5aV4jh8TGR2v": 2000,
     "BRvcZQNGUUKHksnxHNTUfGTHyA5jS53bDN9pLhA1Ay3M": 9000,
     "BRyikJb3ptT6GmA4fAKWigjUkNxN8urmqeEVsXjjGfue": 23000,
-    "BS1vuNCbn3v6xdVmfKau85YHvFpPwHL4gmZ42URrofhM": 59700,
+    "BS1vuNCbn3v6xdVmfKau85YHvFpPwHL4gmZ42URrofhM": 37700,
     "BS4wQmVchfXgpNRDsweXS14vRW1eKe1sMMrHH2DER1ZP": 9500,
     "BS9h8XLrY14omVeQb4t8TfybQwa5qf9DP1beQJQZtefT": 240000,
     "BSDA8427SZwjNgu5BseFUHBXMEkRUCvMWVzXm6dCGeGw": 5035,
+    "BSKNUGcxoiurBdQVPN2if1pScwP5NK61mvRAkLqAY9R5": 2025,
     "BSM427hK577vsYvzQnixjA2msA73jkG9ovgSwSHUX3Zx": 2000,
     "BSVNW8e7tWkhLhUCyL4PhD8ZkAQknUMr4u4y6FKBcUTF": 2084,
     "BSWwjroYACmYWJr5WZYvcHNWKo1auZQRyqtseQN7GXdk": 15500,
     "BSbqYGq8PD92kY9ct8YscuieJYcpYFrTwzSJT5XaJN1s": 200,
-    "BSek3VacuWYtSt2nykrcWWWK6Di9rNVahZucuw2dhaZz": 238619,
+    "BSek3VacuWYtSt2nykrcWWWK6Di9rNVahZucuw2dhaZz": 238719,
     "BSeqTgaq197vJ9Lc1ut2qQe7bT7SQtDoGfzykKAW5ztb": 2000,
     "BShiSZoWiXmBdDdCRpCBJznxf2N7DFHyvMLiBnJ21WVy": 9868,
-    "BSk27pSD8K8QBfTC5cdh9SqMomVfNK2QhgaAmp8tKMDk": 40000,
+    "BSk27pSD8K8QBfTC5cdh9SqMomVfNK2QhgaAmp8tKMDk": 30000,
     "BSpenSgeNXQbwg8tiJmCXU9jsW8v6s2RwRh1QqNMCZA7": 187660,
     "BSrB5mKXMxLeUZN56YXkNoPxu3GFeSDitdATuxaoWpQC": 12800,
     "BStC3fpKdBK4yuMEifWzYpGy6QVSB9ZbTyZjW5hWAwk8": 2000,
@@ -226804,24 +231621,26 @@
     "BTY1J2jzM4t2Kb8HxDtHREhCFvGthRLkF9z1SHiQnbmT": 6000,
     "BTc2xXWXuTtGzF4mqLRjJj1qdQDH1Mbfme5AVkoRu5Pn": 5000,
     "BThakT8PbBfHwf22CFEPz8ZMdRmZCeP5AyJ44UEgG8Cw": 5000,
-    "BThjouDkkc87M2sheihwHacbcviHB8weB6tnspqX8gRe": 41600,
+    "BThjouDkkc87M2sheihwHacbcviHB8weB6tnspqX8gRe": 62100,
     "BTj1M9kaqtp5sD2TJ2rYPw3evqV6zT3fxZWBC5u9CDuk": 28300,
     "BTmWRSH8TVhV16SM9Cy3ZZZgx7CrtmU8xLu4MRD6UvR6": 240,
     "BTroDVJnUom52UKjkwVxK4C8NWmVKNVqjVngNt2VSbsw": 11900,
-    "BTtakcAZXS3gyS42dEDd4DDsAdF9it5c4gwFmuxjCPVS": 177540,
+    "BTtakcAZXS3gyS42dEDd4DDsAdF9it5c4gwFmuxjCPVS": 17340,
     "BTuuy7acUHUpoVjnRHdLzFD6JTGRq9ssFoGXjuzrzocY": 480,
     "BTx8iDrF9Wn6agJ3eYLMXScNJ3A4TnyzvhPwRVMrGgZK": 20000,
     "BTzPqAGL9GDxyKcwCgiPZsMtfkgLto7D3prQLHZXdSnr": 1100,
     "BU4j1EjJxMV52nXDAuaZfL9zKcbC72MsiN5W9AA9S8Xa": 10000,
     "BU56cGfCmuh2fgFSDFrjuJpNF5xrEVi6WGLmLnF3jLPQ": 900,
     "BU6nqXzZiALsbifq6ed6mmi4dcfJswWULEaAMea49Hn9": 10100,
+    "BUB3BbhTEycHx8xbV8e8c7SG9msLi3t2iK8ecp5NnPaR": 50000,
     "BUC5sGbRgo7vnK3fRG9qNuGBLxzQ2gkN1F7zp7VT26LY": 44000,
+    "BUCzFPyUH7uJwAXYWgyE8YjaFc4ZYfcib4QrbnhHWCmv": 100,
     "BUDwx1cx3KARWUEzhrHkjyFpAzkeiUebUQnQH4PW1dQw": 8369,
     "BUGuanYvVjPSsdU4oHhDbjGj5EmYsxbs9BCDKGsP4D9C": 53400,
     "BUJiM6dnzjzHrG2now1cTYsakwvB4E5svGyD3247M4TC": 10002,
     "BUKGCEWTi2Pn9GWKsgsg7Z5CYjVQVX2BfNwtvwU5SzqW": 10000,
     "BULXqoc5uG4iCtTMvZmE2hSZ2SimR2wY4LRqZZSMwSVb": 8000,
-    "BUMRP6RQAqqyzYQY5LFFwV1XXXJtGjhfVorXR7y68uEw": 36380,
+    "BUMRP6RQAqqyzYQY5LFFwV1XXXJtGjhfVorXR7y68uEw": 29380,
     "BURNTNd7VXGHTKgLsgq3Vd7NVJaXEBUMkquQ2iWwrhSK": 6000,
     "BUWgT5CyDX8i9MKGfWeTc7CSysy96BxFTJuZ7uTBgSb": 165768,
     "BUbCfBuq4A1E73KkvQMp8xpaomuKiRSLrdMTuXbCAZmi": 1600,
@@ -226831,6 +231650,8 @@
     "BUjCpLt14GRbrsUtizdf497RCYkRzCLUKEh4eYT5jxsD": 36391,
     "BUnibhX8JAiEzXjPRZGYJXz2gJ41aFF1Hu9Z3pvUd3RS": 10500,
     "BUoWkC6o9Yk6rSeVjPpdLBkoycAJVLqrxF7vHkhc3Cvx": 51400,
+    "BUuGrwfgM4iHMfWLP2yPYDRkbfsnJu7bLr6YPucWfFuF": 42500,
+    "BV2NNoRbBcy3ii4D6WBBMuSogjAsaRs9HaXJKKdV3KBK": 5000,
     "BVAYzT77AJiCSkCziQoZrubUUYKaAeQSYnHaAd5FTJ6C": 8782,
     "BVBYmncD6F3goCxUd5YWMUCoXE6oG1cinAwUjBWR9QZ1": 238000,
     "BVEJyVWYGyjwc3NVvTGJaJ6c4erLTexMCKzQ4V6E8XPk": 13204,
@@ -226844,7 +231665,7 @@
     "BVUioUvKqiEbqij2WbwNZefh4J1YYXY2PZdgaK6KkTB2": 10000,
     "BVUycHf7N4pknAALaswnfXmtBzMDoKKqnF5ezKX5Vfq": 500,
     "BVXW661YneaHKsdV3nLMZasVGXHnvYVBimZjGvbejYTg": 15451,
-    "BVZGMroGXeD8YKhNFsro3ZFKiTWQyxVnRyAdLYjudTnq": 5700,
+    "BVZGMroGXeD8YKhNFsro3ZFKiTWQyxVnRyAdLYjudTnq": 20700,
     "BVawWhAWESTFEzacivZKcrBZqA5DvJtLwccWCBcpDhE2": 364500,
     "BVdpzcBdkL5G6FyjQnb77jTdJKAbzZYxFVWCu2jsjcim": 1011,
     "BVfDNEugk7K84ZGuhZfewqgQXmFBY1YPucDkUAtbFSbm": 11500,
@@ -226852,20 +231673,20 @@
     "BVsafK5tNTfzaBjfkz3vdEgoP1CULrQG9uXPyoCidy5t": 1000,
     "BVw8epcWbwWdfmTfRwQm5sbSyQPUqae5f6ooVibfsbWC": 9000,
     "BVxPaxcJvJgJVLKBqKt3RwtNaMqsvggVPN8sjSmFvZYH": 100,
-    "BVxtP8DuvJLZorRZfV4U186Kyq4DXjgnYPKRhd7oFAaM": 50500,
-    "BVyh2kRcDsM3vmqcd84baFEf8VEDPfAf5yK9wKwGcUVQ": 20000,
+    "BVxtP8DuvJLZorRZfV4U186Kyq4DXjgnYPKRhd7oFAaM": 52000,
+    "BVyh2kRcDsM3vmqcd84baFEf8VEDPfAf5yK9wKwGcUVQ": 30000,
     "BW2XDtY9QEMZ5DTW5oz72v6kPNFjTW5pU47oQ1ZjLppU": 100,
     "BW2hvodCWEvGRa7YMAG2EtrWR3EDdpqzh4JvHDDLDzoz": 163813,
     "BW7j87GtwyAkownqjmvacSsgTGKZMHyUE1BXYVYzRhvg": 3000,
     "BW953rq7HHTuaUAELp7Q4MK395m8S6eqJCHBoy88Df7W": 314,
-    "BWCskQfbRNErLB6ou1T2XcNvWzFbwFKz7z3efGfEDyAF": 6200,
+    "BWCskQfbRNErLB6ou1T2XcNvWzFbwFKz7z3efGfEDyAF": 7600,
     "BWEHLXkmFANPPAHLZJrWm5c9gcTHFA3XmDBqyqu2Tb9J": 44710,
     "BWFX4fQaM3XgCoeRvXYmgjHjB7erKAzgYA1bBFHbdUzg": 314,
     "BWGG4RBy2RTzGmcwwcEojDQTNYLQdjVWtGGsNBu3VtWe": 2000,
     "BWLb3ZaYSWBQKL58qj64oUgnmMJ8feVZ7cVZkzqGG4pn": 3000,
     "BWLbTmjRMoe79Daq5XBCNkixxuEiaHspJpBbA1uF4Zr8": 10000,
     "BWLh761s1eRvASMrUyDjnLpjyqgZPyvT1uJzNUuichPU": 100,
-    "BWNkJKD2nKnYnBEHLDDUz5zkvniTER3JJJx1K6DrZGYX": 3000,
+    "BWNkJKD2nKnYnBEHLDDUz5zkvniTER3JJJx1K6DrZGYX": 3100,
     "BWR1dzZ5pV8KHCYXV1qGUN69sAkqVVR4QApbgN5RaanQ": 17500,
     "BWSNBoAVVppgenYAGbr2piChkeSyLnm5yHkdKhT8dTby": 1000,
     "BWTGTU5dEMeZkK2mjrYLttERRjLABMjfcbqKyFoZMcGZ": 9900,
@@ -226875,7 +231696,6 @@
     "BWcAmjN7uQbFXbrn5Y9pb1fL9Cd88fyur2KxpfKnDpNT": 4800,
     "BWeFq8TrxYMdorphSjmTGwgdf5kmqfxBB9ccyNStGgBs": 28124,
     "BWeacakP3pGWB9acxRnznT56JQ9LccHmdkriUg4Rk79J": 1042,
-    "BWfSYhN72BmvshcKMic7Z4ZA1Ws1eMMD1QFD8HmGhyZc": 100000,
     "BWhAarTJ4LYzjVFFFPy26zupSoPUH45YivKXSdVdPjZu": 35191,
     "BWkpeFaZXswuJTMLYMBLPo7FyWbwdgAjGr2PBM5VnoWm": 78450,
     "BWmoFFsBgvYZhj27B6YR6KsrdSfYiuvGbUSZxViS4mMb": 8800,
@@ -226889,12 +231709,12 @@
     "BX2NU82wG4D1desr2XAQEWmEhdwkKYNRsxtB7WQo5X3x": 63010,
     "BXDkNX4tu2r3r1SV7AyXXnPjjS7sSUfXGzUvht8y56GW": 1051,
     "BXGPpaGfBsAgmQy3YmVFPYf7KioHeut1x5yrcCYTy2ZX": 2000,
+    "BXHDYp5MLsjej1Wx6YDsP4q8YmWTpcg7Gbif8hcVrJcE": 10000,
     "BXP3RngjgAFU95vWimjJWTyixbJskYj77KTWJ5oh3VRN": 5000,
     "BXPWAV2Fxt2jVotJHHWAyfEPuixsdpfSY5hu7yxjhBo": 100,
     "BXPhNdhRZVwaHWiDkFfBkvSw35QgQ6VA3kGZo5U4vhWe": 46000,
     "BXPw7nhtqcoqo79WChVVXcCsqBcZyuY1yhTY4hSWY47k": 316207,
     "BXRS1AnaV5FtSh6sPpm9WtT5tUa4PdqF4DqBz8yfciKW": 14000,
-    "BXWMqx5wQaFVASTgjrbS8wPBWogvLDCjbxKhpajTs25J": 55521,
     "BXXPeHqyUuQF2LwENhqX3fGJuaYmbmyG3LmgrKNNpKv4": 40000,
     "BXcoiiBeptjjgth6bXNYZSZse54Nni7ZfGCQWNKNkDsc": 1800,
     "BXdHewgZbcHguYvSqQ9SJcNznRG7D1hVdqNuibhbJSQp": 5000,
@@ -226915,13 +231735,15 @@
     "BYLwK5wPgrRNMTxRAoAYUwZw3erVBfcM3d6YMwzCtvuh": 4000,
     "BYMuzMN188kUBW7eWuZY72PSEk7Bfwi8EUZvtwarJSQ4": 4500,
     "BYU9CSrjpTrx5aZYKUgcqVbkk1DKAQrWcFY3g4tua97p": 30000,
-    "BYV9maqtoMnUKbhuUa7NRqDHimd2ffQRAzq77NsxJ2jf": 106849,
-    "BYf8xfVpqXCoDh5utiCVuaWvJ5G58tY5vskv3iEfQoee": 6059,
+    "BYV9maqtoMnUKbhuUa7NRqDHimd2ffQRAzq77NsxJ2jf": 152849,
+    "BYYmd5x5jSgua8wveNBpycs3a5kgjYG4Z5aFJLgjYLuY": 5000,
     "BYg8CpCFLHNDsPRVMdawDvDsN7VU2qBdXgmUQ3sTpQWz": 500,
     "BYmuE9NtmG3TAvYsCJdfVMm3xU3TRKqZ8ALBAf8kF9Ft": 6032,
+    "BYoCMm23EdgCahj5GRQaXPGDvth9M5cihUCQibbyTV63": 23000,
     "BYqCZytzLUeqx8hFc9aEkUtgYtKwb4N9GydXXoyJD3wU": 5000,
     "BYquXuFAiQ78LeViUjHLjwXreaGLZtUYZQekSLvgdYUx": 15000,
     "BYrpfTJ2zQuqs9NjHQJidqWFuakj2Tg1QQzGDpHmZ6pT": 5000,
+    "BYtZyNAnGkiYAY8Vq2dty2eN5R8iqvnwn9T8VHGVPEox": 6000,
     "BYvrjvbbT2YtavUArBgiy9Wi9vTCQJG3avo2xYq8c5KU": 2500,
     "BYxECKopSFLwM7wVZv9VJZSV1662udtZdobSLX7cNRpy": 2200,
     "BYxdhFzmhHqPf8YoX5bi3m9ytyz6BPqzsPwKZKFVwQ1p": 7500,
@@ -226929,6 +231751,7 @@
     "BZ4kMXMLRQKsAxcGuF9SnfZexPGFBpQ98PNro2YfVYnC": 32352,
     "BZ8mNyZBMqKMz6guN2wNoew5FGg9JWHvDrUqA9ehwZb1": 3000,
     "BZ8mNyZBMqKMz6guN2wNopw5FGg9JWHvDrUqA9phwZb1": 5800,
+    "BZ9sa9rHEP8a95ANKHAD52X9XkLdHtm67ruX8J2Un8pt": 390,
     "BZGq2tAcTPLv2YcQSwvZPY3JYXAPe2UnPJSLaXVjtg4n": 1600,
     "BZKacDNNjpsVNMuY4XuMnaXjPKRKNnxUKZU4rfTNyVxY": 525,
     "BZMEwdPN5FWNQsJFYFoDkSUcRbWu3UFqkcDUF6ZrBmqH": 400700,
@@ -226941,16 +231764,17 @@
     "BZruFHAwA9KcmfePsF2MRm1pG6WPqfL2CmTS6XAyiUvh": 5000,
     "BZyYZV6GLaP5oPwWKhdcgjb149ug1L4cUtRCpBfDytPu": 800,
     "BZzrKqMabuE2dqzupvM2uzDNy3WaVhNB4DGVy3eELiDH": 10000,
-    "BZzrP5ev8LvjKthrpauWwKH7ZheQkbzqkcbaDzyci2xB": 716440,
+    "BZzrP5ev8LvjKthrpauWwKH7ZheQkbzqkcbaDzyci2xB": 746440,
     "Ba7dtRW3YyDqG6fbJYhwrM7zaP6aHUY4rTawhPfoovPQ": 12000,
     "Ba9NEcGSossva3VQvzi2b7PSoFJ1oaT7zPTzykmpo3eN": 16500,
+    "BaG5uUUUhu9FNW2xAVKoHnTejB72Zs29rfMGmxu95VUe": 330000,
     "BaJM5qn6D9GaLhQcPachYwH49wc8rDoRq8Dxux92xDdS": 500,
     "BaN5bUQ3qqTspyv4utH5wKLAvADfRxBsf3zr4UAw5FUn": 7000,
     "BaSK6Z67tRS3vwcAyXHggMwR1b1JM2n9u3QgZaqas9zd": 10000,
     "BaSztwYLsyPFqwXPSkGvquLKMHrsJmjPRkvtux9te9Kn": 2000,
     "BaTVtK4uCBeR1Sxb5yicxKFhRdFCj8BgaEtibUej6eu8": 1500,
     "BaZPT3dMfT2XKn1W2vyS8VPhMV5g8ef2ApRnoTajj84P": 7000,
-    "BaZPT3dMfT2Xkn1W2vyS8VPhMV5g8ef2ApRnoTajj84P": 8000,
+    "BaZPT3dMfT2Xkn1W2vyS8VPhMV5g8ef2ApRnoTajj84P": 18000,
     "BacPfzbKZELB8nuozjD9N4AuxxKVs5oaAtmjLAjyMJGg": 2000,
     "BakNoSsybEypQEJmuXUBLjuVXCD5JDNnMfXCH4QcyHXH": 1042,
     "Bakp2TCLiwPMG9wD34HvJsXGz8KPQk3mrD4hjniJS8t4": 5000,
@@ -226989,19 +231813,21 @@
     "BcN3BemWxbPn1zZDY4eUYTCfccQURrrZEnTXMrHxpPBg": 86456,
     "BcUpwKnmsQdKwi4uv7athfuJ4tW1GunnHhnUF3MwJevT": 22300,
     "BcVgzN7bjMeCrv7wDBmz54UdbLZZAMT5bU5iGCP9zEHy": 14500,
-    "BcWcd7KAakTjx8MHGfejmD2CxNLP2eMEvLeeAXYBtfZ4": 208500,
-    "BcYKH9TgWsKhVhqej6gYHA3Dp3u3bHpamFEMhgx86a9K": 508416,
+    "BcWcd7KAakTjx8MHGfejmD2CxNLP2eMEvLeeAXYBtfZ4": 257500,
+    "BcYKH9TgWsKhVhqej6gYHA3Dp3u3bHpamFEMhgx86a9K": 424332,
     "Bcb6kzzhsFt8pgd5e4cEcbUzV5VeVmJ5iEnbwS9Cjngf": 3500,
     "BcctYHmmGFJ8uc9ALBd26FnKF2aoAG8t4bkUTUFrzoSV": 500,
     "Bce3FMTrV9nfn1r4poKSfhkD7yjAH92BFjU9jqq6h9wa": 850000,
     "Bcf8eTxKhyAh4XnawWwYdsbBRLofRbeG3zrYUZE17CyE": 13353,
     "Bcje5oERWMXuPGeik6K6Qvv4C6LcuV2Ktqg6TT76aTPC": 10000,
+    "Bck1GzoHK8TY4Pcf4gnRgD8Z2QFwpjMggqe8Q7d3Pc8B": 5000,
     "BckQ87g9dYWFYLKbnPEzAX4WJPEC9D615m4jjzFVYkeQ": 11000,
     "BcmTCZQzuX116fcSKxREBViK5vYdUe9f6GdjKPmM24nQ": 2000,
     "Bcng9juq8uswpCXrv3JRBD2ihw9oaxEBvyQRmpzWvdyC": 4000,
     "BcpAh8Q8pEotFBgaiZiXhoRnu7YJ6goQHYbKTVCLeu8H": 150794,
     "BcpQCvhLTFa5AnFoEYPNq4nsUU5KKz5JNJsDgejVAXUe": 2000,
     "BctGHrAMCvQtd5avQhkdjkY4Uao3SLr496nb4RJtkPXL": 5000,
+    "Bcu2tNswK1DgECJtfgmwXcY6SMDVzvKS51gsFBqMc5SE": 3000,
     "BcuKdZuyXucnGQzuKpjwZdmTj3FBFWuunu8seuXg4HuJ": 34000,
     "BcujS14aZomoL5kBb9dbPgq9q3Cuzgaq3sCJZ5LDbfZE": 27400,
     "BcvqyUrvoDDSnwLeSCUGbCAzsc6PzSh3DFPGKSargEWT": 5000,
@@ -227012,7 +231838,7 @@
     "Bd6QiQQqxfjiYurRxPrcdyNvuL2HV8kzEqgFuQBMeH3k": 7413,
     "Bd8JDLAqsXoJGHXC7sox136ExvJJeJCcrNuFD3mg2CH7": 7400,
     "Bd9TqrsuZrRxrpAXEqcVnNWRNU9rxkjSEmvA8VgvFQ7c": 30000,
-    "BdFpwK7CdMqDiZShNcJEUmE7cPXQmTPCyb49wkLBX4dW": 331724,
+    "BdFpwK7CdMqDiZShNcJEUmE7cPXQmTPCyb49wkLBX4dW": 431724,
     "BdHz97kjZpdygcubsrUBGvF3uBscSBygBPF1VuDjXD4k": 10000,
     "BdJG4nMopQZh21Q3iso9USb6VchWQgwGgYai9BnpTPjY": 1500,
     "BdKHwH3M9RSvfJ7SsKhYpzKkYAWa6Q2cx8Li6jWb9qBi": 500,
@@ -227020,15 +231846,15 @@
     "BdSZD6Q2FZWtj7nkhg3pwXWz5rCLXt51Dfeo7toFLqXC": 5000,
     "BdUc5QE5HxjKX9XrVsrzYX5mKex1Rf47h6Cjjm6e8vW1": 20000,
     "BdYJee66kkAAX3xKFtjLS3HedC5Atej7rvyngFx4ae9t": 20000,
-    "BdaDaRkm3j9Y3oQdXY6unYVmptxXFtUEtJ4o2agUsZHC": 5068,
+    "BdaDaRkm3j9Y3oQdXY6unYVmptxXFtUEtJ4o2agUsZHC": 26528,
     "BdaT283VKcqCoqtJ4cSYns2RvWq7756bPF8q141MfBAH": 22000,
     "BdcuZ53QRndErBjLJbVWdncURUiGcwoGVStmpQM3Z6gm": 40000,
     "BdgmqxkucsCLDJN4pjAzRBnchCaMD1hEmHDPWiL4rbCS": 10000,
     "BdmxdoYVuH8H8duVFQ1Rjv8kwyGZwpsy3mRuRDBRJwq3": 148627,
     "Bdy8yWLqZuAKh3fp6ECBpZ8vnzpiWTHHsrHD9HfGAW6D": 100,
     "BdzKtq6uEiMgSzNqKV9wySfsWBYF5Jhgdr4mbtV9ifPP": 17500,
-    "BdzqGB3aQjpgfUofLj1pxnUjVLt2nG1zkRU1un5La6Sg": 1984,
-    "Be5rigSzYsuSDFV2yVGjdXW9FEiJHDDYJkVtpskNbEc9": 47700,
+    "BdzqGB3aQjpgfUofLj1pxnUjVLt2nG1zkRU1un5La6Sg": 1985,
+    "Be5rigSzYsuSDFV2yVGjdXW9FEiJHDDYJkVtpskNbEc9": 40000,
     "Be6Qxepep5kJmfsSrnQT2nQzUR8VCNJi7C7L9MXEBgFB": 79588,
     "Be7zBH6BmE4BuAZEt3raWWnzrF2BZTTcaUrHrfcc9REv": 900,
     "Be88AZzqZsTmnHTfvaCX7AB5dUqRTxiPEz7aDxXxqUF8": 20640,
@@ -227036,12 +231862,11 @@
     "BeAwT32cyEiJiTUsZZrKFVgrsMXYipZSydyX6uNH1A9v": 3500,
     "BeCYTpWdr9BEEv5pQkNLrRnBHQ3wW3Km75npWuY3eqWR": 100,
     "BeCjSk1gHSgFGXo1pSXBSdME9PasTwsFUktyDLPPhrxU": 600,
-    "BeMkRfcm5kFApTknzFec4yhzLrQLdY8MikqHbnBXQnL": 8500,
     "BeRRJiopM2zKZ7zcVCHrRAmvthNtsxxa7khinkbUEquk": 1000,
     "BeTvouitze6daypiHH7KmViWNuSgwULFk7VE7dmodTmB": 10000,
     "BefBaXrchJxAZYG9DGPtwHpWi7XBw6TVUmUYYQQg5ur4": 30000,
     "BehJ1SiPrMX2aLdp2CPwz4Ezdb58x5RtMLC9YTisGahA": 14500,
-    "Bej41RoYifWfqjxXfZVnKXu2S1XcBHw6uMJErs3c9UpV": 239120,
+    "Bej41RoYifWfqjxXfZVnKXu2S1XcBHw6uMJErs3c9UpV": 680120,
     "Bem3j26erckyxQ76G1RvkbeQ7wpxvZe2r8BwBMG1rBxE": 16209,
     "BeozFoqfMzfamXniA9ZhqJCVLgJpejzQypv7HeKk4v6y": 2500,
     "BesWcYf9bar76XPqjP2uFc8chzm7VDVZWHa6faK7QR25": 4900,
@@ -227058,14 +231883,15 @@
     "BfTZcYPfTNZf1HbcCc9QfBeTpWvNjSKeFePWfffwPhcj": 14900,
     "BfXPtaM3x9wWx92cjYYXHX28aXqUdTFfQsYHeKD1Eah": 5000,
     "BfZwEN5KG2ohmR9cuMbKCSssde1afKQVU4z5siPCsVwE": 102698,
-    "BfaQVLFQ26eHC95iCRMzJX4rGcvVopx8E8JWAeBNaQJW": 5000,
+    "BfaQVLFQ26eHC95iCRMzJX4rGcvVopx8E8JWAeBNaQJW": 3000,
     "BffRq5Hb2Aoa8wcfafTsy4ABmrtjrZLXPad7zjqkHQma": 10100,
+    "Bfg9i8gQJnRBjjB3sLaZq9XnhhY3vN5jqZVoAnreLG6n": 5100,
     "Bfm4Ebfr8YXmSrVbVVpevCgFQKhLdefXjidRmGotfSh3": 11200,
     "Bfp4jkLhXnRVYyrpax1herJBWfYDPaAa9XLMkuuo9U6h": 5000,
     "BfsD2aoHJzWWSd3Aj7ihvqn7tDb8geQjjrm1nCqfeC19": 11590,
     "BfuMLmFP2dVHqG6DqaMdXA2taQVkvBEpQEsZ3xGauqkE": 1151,
-    "BfumSqTt9dKFruYmWohocnS7Qv7iKucYwuNURxD65cjr": 15400,
-    "BfweMRGgqogwbBuDzmMNafG9Bv3NNHziLTxVXHKDzu1D": 70500,
+    "BfumSqTt9dKFruYmWohocnS7Qv7iKucYwuNURxD65cjr": 57900,
+    "BfweMRGgqogwbBuDzmMNafG9Bv3NNHziLTxVXHKDzu1D": 90500,
     "Bg3EEA2nHkGhFw9TLjAhLbNg3c8jJQA2ZUYdjdCRnQHi": 200,
     "Bg7FR8N2Shfjd19HSS2CdqRTsxBcBBFP4dTMfpNNR4Mb": 10000,
     "Bg8H8fUHyrzKhyL9ovKAvZQebw9YcYbEGJdSZzeJX4za": 5000,
@@ -227074,7 +231900,7 @@
     "BgEMUvkESKDjqEcdCwh8mNz2R2iX8RS6mwSGfJuJE646": 5210,
     "BgKNKt7wJxTfzRrpvX32ASRywKrj5F2tkBXoj4JRR4yW": 5000,
     "BgTARtVvEk3ELwj3w2XeGp4kaGq4NNqVeGV4YizN31Qk": 30000,
-    "Bge7PmLudYjdGwuZ1MAcYvirNKQAiduwRMKyxh9uXuN5": 85588,
+    "Bge7PmLudYjdGwuZ1MAcYvirNKQAiduwRMKyxh9uXuN5": 51488,
     "BgqKj3kMEQt2eAUgkXRuDExaDCfhuM5YGWqF1dF9Eqdh": 800,
     "BgrdP7HbRFr7Y1YzseRVPQ45oL1atEZ7uiSSj7yqXvxa": 2900,
     "BgyPqc1AS6s4vRsrTp66bkV5kJJz8EqqzrWZ4PpXY162": 12300,
@@ -227083,7 +231909,7 @@
     "Bh8bcmUrxLaSpVde6PzRX2CMQDU5aqjztDoo4piCTGxu": 6000,
     "BhFRA519Jk51kP4NBqufN5BKWiCrty4R4JNR71nnqzmt": 55000,
     "BhKhTLQD2Q9CrLSLacFEwDGzWZ515AFX9eDA87BwErym": 5000,
-    "BhL3AcaH865vtEBGpW3p5k9RWbpz6g3RKsRwK6FmNw7s": 45940,
+    "BhL3AcaH865vtEBGpW3p5k9RWbpz6g3RKsRwK6FmNw7s": 248440,
     "BhLAjPqKWcdRnse7CRQeDzF3CDJDzoV3M3mtzqf5UhiD": 3941,
     "BhMh2JFgbkuwc3WcmUCRBxouss56snkJ8voPuCYa5PQD": 15000,
     "BhNebpqnAdYn2ykTzXwc6dQxEyZMzM1CSCJrXbuo1Hd2": 100,
@@ -227106,7 +231932,7 @@
     "Bi5RTKL38r4kKSSRgb1v4jCJHRvmbcWYAZ9nUzRdLFoW": 67862,
     "Bi6XLh8SotGXrYe8o2Wg5xacoifQP1Y7Pt9FxCqTbXxv": 5000,
     "Bi72yEkKs6r1bfbk2r9FR57ZVgUDsbKaP6Ztui1hFLq2": 5000,
-    "Bi7YrXPuwxMJFJy4RVFZkq4jdRzX7aJZU7dHYizv2o5z": 77703,
+    "Bi7YrXPuwxMJFJy4RVFZkq4jdRzX7aJZU7dHYizv2o5z": 70423,
     "Bi7dtFRGMFdjSTj7PRSAbEtM7itgbrKqfZXydRyMVYmp": 10000,
     "Bi7fpP5K29bTRng5HRs3Ye8htJeFQBQghpCEZUJWQJJE": 5000,
     "BiAfaV6C3D8BrVA1H98VDaT6GP285EEUPxnURJzb67qB": 2500,
@@ -227122,12 +231948,14 @@
     "BiX78a3aEaLaVPo93rh4yifQ5VRfiWitjfmh8fkX93rg": 1042,
     "BiXuVPs71WKLMAcGNKNhLQdytfcmoyqqFwZ5bXnkPPei": 7500,
     "BiZDVxQP2s85XphL3hikyvDTVP6vr2Zpjd9MZ4bZCmz4": 10000,
+    "BigSWwwm4PnMYYXXE6kfGypei2a5KoGWPBShnmWHrPFk": 36601,
     "BinoFsnHHpuP7nfrAZbTZes8srUREHseGTUXSPgAaKiY": 5000,
     "Bio97DNzD5tojJaSTXj6Rv8Efmjf6HH4dRLTa5VzcR6E": 285355,
+    "BiogKFd32dv9ajeXX3r7uHmuhUKEnUsPxqp1rdyNVw3A": 61000,
     "Biz1k9VD7zgcp3Hg1YUvMUhhKnoMY8eMbbeB4TphM33b": 100,
     "BizadpiGRTxeHi59dWw6mdnw3PVeg51pEVdvCJfWUM8": 15000,
     "Bj5tPRE9UYVofhpW18Gg2XAUykzq6eKv6dwhdR2bbFcT": 15765,
-    "BjABJ6tKGNRj9tzWxNFtY4bjXDqj5tvC7zo1jiBPjfd5": 63900,
+    "BjABJ6tKGNRj9tzWxNFtY4bjXDqj5tvC7zo1jiBPjfd5": 59900,
     "BjCRdM58YpVV9T62tgXrWGLDzcim24BQuactAZBUPzxo": 32000,
     "BjDDRdu8juCjwNZWqfc9YVUNpuS6vYZRj7ZfG28hJ7sj": 12000,
     "BjDhEQcg4YwiD4u8VpHPAbHgEiHhdVoBnNyoMaxPtSdw": 69700,
@@ -227153,6 +231981,7 @@
     "BkY2vtdD1BPhXQeR34Y2VeRmReU5ti1WvJXBTnHdc67A": 26900,
     "Bkc87u9TGUH3AHoV3mQbCYRdVUScB7fvvGuHifEN2gaH": 22000,
     "Bkf99wxeiZ4onMhAGTWQ1gnsowRhp7EYicaeNrK95UzS": 208,
+    "Bkk96NPGeA82ugc2kxyoSVCMe2BEsv6pVbzUoVCWciFm": 4400,
     "BkoBavzBFJncoATHDSH93ZWgeLxvu9DZtdMLa7WLAWGL": 5000,
     "BkpMhUjYm8wUd61Xkw1a142cVbKy3b8LvyQGaBSxPsTU": 33000,
     "BkqCMAqZY9YR7gMg1hsM6V2apf48t9suYYfBeEiUWyBR": 10000,
@@ -227167,6 +231996,7 @@
     "BmH18tCEQHyBxX4gxL4maZFut2uNLTc1SbRP7QHEhop": 2102,
     "BmQfGgrCpvNGoXSUvDwEcVBbfUpCHLso86HZYZhdVdkj": 56480,
     "BmUgNNwwNH566K2kSPSEtREwXSEsHVQ42o5A4epWrWZp": 40000,
+    "BmUrdjJGys2tSftciXoQyxRN625gBNq9EEK721iRCBnc": 20000,
     "BmXRPwGyu3MjHcV1Ar8fCSSmSdt3x9NtR1dcxNyrVdeT": 488492,
     "BmY6WSctD2d71tUzjQVGxTxjVDmL6iLR1N7YHhgUifoa": 2400,
     "BmYieTqJw4jskSHj9TwvrbZpp9ybeCj7EGHYdbpTD43B": 4000,
@@ -227174,7 +232004,7 @@
     "BmfodeLRdmHH1iauRr9NV24Erg7fX7vKgVLwhhmP2xhs": 15000,
     "BmgR8Ebt2Zw1dsyz1WZ3bjd76tKRbFwxWrpsu94Ghe54": 4000,
     "Bmkx6YdJBaA2wvQnT5sjcMFrD3xs4ZHfaL8bBQW4WPyK": 3000,
-    "BmoaRUdhjw4U6dFLkLsX9YEVqCCrUThDAT14KNRiQqdH": 17242,
+    "BmoaRUdhjw4U6dFLkLsX9YEVqCCrUThDAT14KNRiQqdH": 2156,
     "BmoxYaVpfHwvYFMKAjRPQ6oDVBXo7uVcPq63DYjdtg9k": 10600,
     "BmqccoJeBYDJ3QXJux8nWnFaopktiEaiSbNsMiV9FF6c": 1001,
     "Bmymjp9bQ5qhEESjAFn3YHTNkcMmS6SwDBoeEmFmmFBV": 500,
@@ -227191,6 +232021,7 @@
     "BnU8pM3CHxz5H5ohCB6TmQ2Rhsp5itmB2WGYS5QU7HnY": 1000,
     "BnYdfipeJmRKvcmTYEJ1BqoJ6VnD4BErr2ADWEF3u2Mj": 20000,
     "BnaWPKcTahGKWcUrT5XEfiDtUmwKdfNYkghdCxr92m71": 20000,
+    "BnbBaKXwtFW1zPhSeffJd4UGUX1Ygap7xsrgeZ7JQHDs": 6000,
     "BndHUTAT2qN9jndttheKPvLXdz78pM8MEHiHMijJiesW": 87000,
     "Bneh4Qbo7h2e9CkHujU1rAC6Ywc8c5QfTsf32uor5B7G": 102000,
     "BngBhUQHLz78rXimWHBrc25j7KvBa359r3UNeUz2AEvb": 4500,
@@ -227200,10 +232031,9 @@
     "BnnGYX5xVcVqm4p1i2aPz7YE5rav6v7TrHb6bqsRajdQ": 7000,
     "BnossCjFGKGfoDR3uLgVzVFZg9YZRXtwv7XzHpdMbpvF": 46000,
     "BnsoQSTv7jde9FSjjfVHmC8o5XPsA9UWfrRhLr8pKBFi": 10000,
-    "Bnv79qpn8WvCQs7uQoW3wUWYLX7c6PhkPYuKvhYLxxwg": 470760,
+    "Bnv79qpn8WvCQs7uQoW3wUWYLX7c6PhkPYuKvhYLxxwg": 524160,
     "Bnw7L7zvn3yNe1CdCgbjGGjgnhGPf1P7LAYncJCRbQz": 35000,
     "BnyzdbtAw8sKSHsenP6KptadJERyoAXTRpLqYiqadBqM": 12000,
-    "Bo1r8JyjjZSNqXYg5BLyd8cMQ7Bp8vajs9jZnr2HctgU": 32000,
     "Bo5fxbVx2JsebFkMubSnhzZ48xLtszeeg4LHfhseujTK": 15000,
     "Bo9sfCYbS1mEi9QFFVAAMaegZL3A2GyrXwrAWasobcrC": 1059,
     "BoEqi5b1H1RXqZidB3vi7SxhGfci4hRAdniwZjXysnSr": 2022,
@@ -227212,7 +232042,7 @@
     "BoRKZcLemXUbvkzVJgBpy1wSB9oCZgtvK2AKqNJ8dzK1": 11000,
     "BoTKe5NWjeNVubqbpVwQDFs1oHiSJ4rV9HW8wiMpHvoZ": 5600,
     "BoTs8jtpTnfkBop6RL7Z7PDcEyhPUpKhdEBg73hfn89p": 53428,
-    "BoUmpvS3ZYUf2m6uc3wJNJfBEFJKXV83ZRFgVxrBhmFA": 100,
+    "BoUmpvS3ZYUf2m6uc3wJNJfBEFJKXV83ZRFgVxrBhmFA": 5100,
     "BoVMmdR2dM9HBmPf3CQAfjpQU58fiAwwgkX7u8UGb12h": 45000,
     "BoVmYKogiZhB6GfUEjGnkwHTq4vSM1bfCUL4CtnPvURV": 1000,
     "BoXdXHFMvGZFHgpwU7HjF1qyhB4HAVgYvYgrZ9ixsFZ8": 15100,
@@ -227225,7 +232055,8 @@
     "Bowb8igrFyi4BqZp4X2tG7ZcdHskueC6FDa2LUfhy8SJ": 2000,
     "BoxE2iUJJrGt5NPQCuqhXuF6jFUPSB7n6ghLcr11ppPD": 5000,
     "Bp632shGvhSB5fQrcAZtnkAdFShgh6s9mAC2Fj12XFs2": 4200,
-    "Bp792dVu73uup7j1a3KhZi74iPMPVCgJ2HScJUUrZJJm": 476500,
+    "Bp792dVu73uup7j1a3KhZi74iPMPVCgJ2HScJUUrZJJm": 466500,
+    "BpAETDCyvshbEvrGj41nRLzaioYZXsJjuEco6iww7dvb": 52000,
     "BpC6etMCyJKXoJiQJ2M8QkAkfucfLZwn1zVfmM76HBtK": 5000,
     "BpKXEV2pTzLN9G1A6EmbABPGDzBjwMg3BzSYpd1u1kSc": 15000,
     "BpXKECMejjC6d4wtwNNdPawNiGW3T6iw72G3M2cFMaEg": 5055,
@@ -227240,12 +232071,14 @@
     "Bpys8qFRCDkVWsyhHj9oeKDisxnYJmGqmdU7X7Y9s2bG": 44222,
     "Bq2Y9Cg4Pw4u46dbs2YsvmeFoBvbf8eeAX4ZfHPY4KTg": 1000,
     "Bq3x4skQwefdz1is2AMM6gbeutMU73fUJc5MXyiMf5yv": 10000,
+    "Bq9HPMQi6xDfCf7SGvqccC6Bcq51tEtdPBmNfVSxG72x": 27500,
     "BqBJXKVw1ZvZ3Z8R8pMMBd28DCkqXMbmEq48URBjxYZM": 5000,
     "BqExRfpqfeTzfAWAabdNfA1nwVqdMfggxSoe1Qfk2nAc": 7100,
-    "BqGW5RbFBNuJ1wFdTCTPYsF99nRFkC7dubaw9Q2Xhdnq": 1700,
+    "BqGW5RbFBNuJ1wFdTCTPYsF99nRFkC7dubaw9Q2Xhdnq": 7500,
     "BqKVXx8ZoQhaw9yCAdCyHfgg1AbchwAAwZmqs76nbBru": 2200,
     "BqPs4vT42mDVegptfZos4L8vb34sxrQRyqXvx8HBbaVv": 2900,
     "BqSaCCU2c1PJPsRA1yS79K9MeWU33BVtyvFpVrZr1Uav": 2000,
+    "BqSvNWXcqY1EkbpLfXNbWy1bbQDT4AGHp2BSV2xJvLTD": 5000,
     "BqUBbQA4pxtXb73xLxAtL8LQq1wCGyUuXL4k7833N7jd": 900,
     "BqWhBbUzJF3T3dwghnjQzpf5eu3t2uynDCoSJXjX1X8k": 10000,
     "BqYVbQEJF9UACP7p2qFXiidB3JG74haRfFvu5NE5d9Va": 2042,
@@ -227259,22 +232092,21 @@
     "Br674zUb9bMCEuJdWqVLB3uR9QPrKXQF5SUPwV2ELW3M": 1233,
     "BrKuotLP8boz85Af2L1PQLE1HqdK5MAYQxWrjGpxJT3M": 10000,
     "BrLmZeeV7eNGjQ5VY3N4p4w3tcWi8JRtJLSj7Xyx9uX8": 400,
-    "BrMdvr8m1uq6UzUiYUaTz85921NsseqUBUqEjN5GLGjm": 800,
     "BrRDi7HrbiV1Mh8TZ1Jidsg6VTLjXByKWkikjQ87NwL3": 30160,
     "BrSu8VyRwjD9KW8Pe59ogBJtdTAgKimTtr4AiiXscEwd": 58511,
     "BrTCZrYkGVUgiitQykNWiDM2JuU5ehqNajjvqZ2thkQm": 100,
     "BrXPZkmrYXRiipgJej29RC5SZPHiemqdMs7RXuawtyWf": 43120,
     "BrehTRBxsbGvNbDaGoa3NZ88HBWgeeHJ7A4iQx4ESaqB": 10000,
     "BrekAfVTjTihaCu3sJ2BK8AAggHfJkwvCgD7tnAVJXfB": 1011,
-    "BrgsSYK3xUzDyztGBHmxq69gfNxBfe2UKpxG21oZUBr5": 27408,
+    "BrgsSYK3xUzDyztGBHmxq69gfNxBfe2UKpxG21oZUBr5": 29020,
     "BrhQZNn1tUmpkNeb4LQaZXGSogDDXz1SK8Pf9kTA98Qa": 6028,
     "Brj7dM7UzDjnohtbW5Gy6UNRt9J3aJwYLMqx5uZgH6VC": 649930,
-    "Brk4h4LRZXKYdy4eGn5NBcmU41sPTyVBesrCnQGL1vgd": 126200,
+    "Brk4h4LRZXKYdy4eGn5NBcmU41sPTyVBesrCnQGL1vgd": 111200,
     "BrkGicEgNuMALXK9LZvi1Zhpzb9HvPzwVGRaovTWu4Af": 15320,
     "Brr8WUUQAJTJnwXjjyxfUPpcBYdRTEKpMggR1EcyTYoJ": 47000,
-    "BrrXbcUnohP93B2FFFwgM5oDtwQUFqY9GFWjr65uchdY": 884203,
+    "BrrXbcUnohP93B2FFFwgM5oDtwQUFqY9GFWjr65uchdY": 884303,
     "Brs13uyGLLJfWw7nhxzJRvTowVEXGuUSyFyNn2nvh8hX": 12000,
-    "BrvuutTFrQoNeaeibUXFKY77Bznk4c9YTBsebFPiDW47": 5000,
+    "BrvuutTFrQoNeaeibUXFKY77Bznk4c9YTBsebFPiDW47": 5001,
     "Brw9AetNkteB7vCq3YJ8rbNZFHPXy1cPi9NgimAx7R5Q": 5000,
     "BrxUshJL1tc1jdLBxY8fz4LhLEf4aMkYt7H2Zt95bzCs": 5500,
     "BrxwuEocrGG45jC3EYBwHSnMmKs54fniBRCngyT9TdDX": 2500,
@@ -227283,6 +232115,7 @@
     "Bs5atiYsjwxjuYZXmcj66hxaBbrd1inuPwAcxYmNYJS": 100,
     "Bs73mXbbUZtjdbQkPrEnC68PPMnwuJ3hqbsz9rTdnx5U": 5000,
     "Bs87n9ueMVSP3Heg9UPsk4479AJfoc48LabKzDYkLPr2": 2000,
+    "BsDgjFraw1d4p8tTaTxM9sbuj4Hd2txk8G5skzgW7sun": 1000,
     "BsKMCrPVBivWoSgeZFHNicrQf6zc4Xb15iRDgQcPjcnt": 2000,
     "BsPDQ1mpPTx3PBziAmasNsC7SfySYagKhFazswF2PnDF": 23600,
     "BsYntqnCMMwAKRTZ3DUxs5fC7HAuFfxSUr2otG7CLbu3": 6000,
@@ -227291,7 +232124,7 @@
     "BscD9dSXqJ1jwEG9n2Gojmj1ux57NsFgbrFoKaF9qHrx": 100000,
     "Bsck1uUM6mLsTLmdjzVQPa39e846ckA4fxEuFkkh5daP": 516,
     "Bsd6XUQUxPFkLGc1R3GuDYLcPgEV1coDKW6Z1iBYtyoJ": 250000,
-    "BsfC7hWY962YiFcHz5SZ5WZBcpx6G8u4GFCHMMfay8Fz": 528076,
+    "BsfC7hWY962YiFcHz5SZ5WZBcpx6G8u4GFCHMMfay8Fz": 793045,
     "BspBdogf7fYZmNB2PHjwuz9tgwN88T3rxtPDhjqBkEqm": 2000,
     "BstrbFHBDYjLGh8YZjuKYFiqeVhSb82rYyS9tShV1YYa": 12000,
     "Bsu9EzYi2ry1AvoYpcQYXuXLWzgnTPTxqgGHmaA9fGi1": 400,
@@ -227306,7 +232139,6 @@
     "Bt8M6iwpwxumuhHYXNWVisuJs1dNLsJdJEuqggnPbKba": 1500,
     "Bt9FeUqbWaGgUyeGxeWovfVgraeDEbVa2ZuqMUwqMjgY": 7000,
     "BtDDQ6BDTDvdu995kCZSu2ZWsJ3WXHaNToMZtcF7sLjx": 2500,
-    "BtDUXe2aqjDD8yqZw84QEST31PVmuwWveMytG4nySLDy": 1000,
     "BtEz6wEjbVCG7Ccj1t1Jp6WUjXKGgM81UVtPdZCCCFEL": 3095,
     "BtJeQFrADuyMghGCF5MBuZUe621bFKPMejwrR7sAFe3a": 2000,
     "BtQapurTP9GbTvvVvf5NHPjcRTGDHCHohshyP9ss7scH": 83657,
@@ -227320,6 +232152,7 @@
     "BtmPAMwRZVFbGctLSwmuRt8k9pwEJ57hcpg1FtfszCGE": 505,
     "BtogVfHJ4Hr6Af9feZThceVMMV26PNEn7Ra6dyZ5MpFy": 1042,
     "Btqge7SCJ6EandLrNzo7q6RZgcyTduDY7AKxmnJ7RJ3b": 12500,
+    "BtszpLz57nqFV8d5nNRivubBdxJKxsHHrNV6Vdzi1meh": 2000,
     "BtvfdB2MKJFKSbJYebpFsypoFKKjtVXP5BLrCWGeBxk8": 100,
     "BtwbMGLjKCyQL5F3XiYx6veWWqJpncifQpeb1vZb8AP3": 1002,
     "Bu2WCXHA4PWzFZg3Z6iUQ2ohdUbZdYQ1DUazxyPqeMZc": 17300,
@@ -227327,7 +232160,7 @@
     "Bu5qnxFriDRf3F2EzVS2VCCD1rgqB5c6bxvT8cF4jjYb": 10100,
     "Bu6joiyRYaUyjSfRSPg2zrQZmekJxLRrWtSvQt9bSUbZ": 4000,
     "Bu7Nvn1VargkpdAmLWyk9FJTbFUc7TYu7Gay3b7c1izg": 110900,
-    "BuDFKUiUA1Qau7m6mjViLYwKG7jktNTDTdR1djsKFtiR": 41700,
+    "BuDFKUiUA1Qau7m6mjViLYwKG7jktNTDTdR1djsKFtiR": 46700,
     "BuDFUiUA1Qau7m6mjViLYwKG7jktNTDTdR1djsKFtiR": 20000,
     "BuKzKKqiDMdU2YRaZwkPuWZYvmJYUaTmA4BnpkwK4MkE": 100,
     "BuSq2VjdCq3jT8BVjCQ15Xzy5SR1wQPMoiQQ9brSernV": 13955,
@@ -227350,11 +232183,12 @@
     "BvMoxAJPZJSnFDupmg8n4ZZKvxiuziRkpZH8iYTUpCJN": 1532,
     "BvSxenvcvfh22yk81e9ifCfAe8L7VbABGJszirxvtitP": 1251,
     "BvYkkQUmLity2HzDsuP7zkrwrDwSzV7To5ZeVFbmSBRC": 100,
-    "BvZaqp848JnDVjipr2QhV87opXYugdr4Mrc7pSbzFUfj": 9900,
+    "BvZaqp848JnDVjipr2QhV87opXYugdr4Mrc7pSbzFUfj": 20000,
     "BvcFCLULtfUkPsQXAWmy9er6i1N3CjQhUvpHpTthtSKH": 13200,
     "BvcSpyc8CRSR1SGzEYmkK8KdMLDRkTSCxM5qJkT7pVun": 20000,
     "Bvcavrv1t2mSFTKUkxB8nYUTrq8fmX988uGU58E79QCf": 3100,
     "BvfMRPSo4FvRQiNGzm4ZpzPU5bdpmkab2KhBXZMu31wR": 2000,
+    "Bvim3ZA5fLG3X2WFLfyVnszZh1PkfuxFLx7RRTAPsS8q": 20000,
     "BvmBhNxrFNB4FPietGVHAh2jciauXQYM3KbKEvhHetwP": 4100,
     "BvvnMCrT1ZaCwj4eqbTDDALG24GZYHGrTD55RUUAoowW": 100,
     "BvyMf5AWTyVFjvKC9k2ChdjL9Mo5MX6nBfyFHeGnjnqc": 20000,
@@ -227380,6 +232214,7 @@
     "Bwzqcfw4WmQuXB4Pf2WkwJWefqm4ZhAWPWv7BnJLcNaB": 10000,
     "Bx3GsYAnBMpEnevSK53nKEL3uxakKrCAZ2RFmTLT3ATH": 608,
     "Bx8HX64VWxxYoQEwWzaX3H1bTJ5FTVup2BVqEEaBoZ9c": 5000,
+    "BxBFMEW9TvaTZNM7BtTKyCfogocD2V7Bz9qajrMsGDFn": 5000,
     "BxBvLaaG6CGfJHfDHdvoArYXHHDqJxYeFfiKWwFCTya1": 8000,
     "BxCg58LqXABxV2JeWfL8knLr74VGNsEri5W15FPB6yhz": 4000,
     "BxD6Ma4kqKDxmGSWCHcfx2dwigw2a6dpmgJMfBrg66Lj": 70000,
@@ -227389,14 +232224,15 @@
     "BxTJcQwtwktUPeVqZv8gnVZcRWcz7UpEpAx8w1EmZiDV": 32500,
     "BxVnCcAajGg61uu1AxfKUUBGkVrBR12pqcN8qmAQhSUK": 8949,
     "BxYNRhNZSDbferZ9y1jiwDPjWMEYHx5rH64A5Vb94RSh": 100,
+    "BxYeYqqouUoLMbN2eX8fuJMhk6pbA8CQYGKrw7MrNPhu": 5000,
     "BxgBPY1ka2K3GazkFi3k97Fh93VrJs8tYQpUK981JLWT": 10000,
     "BxjYMb6W8stoFH9oqzwnh3FbbH7dqF9h56xp1Tg4YFHf": 3000,
     "BxogMxCKoeVgrgS3zRWXUcgMRuzUyErZ4eAd5AzEdQtA": 4000,
     "BxooekbfayZyspNAbw6cD9NNrfkbjGaKCSkZA1E7XKAZ": 1121,
-    "BxtePSfAdipMi1mH4w3MZpysRxDUkEUG6Yb6kkGyBudZ": 104000,
+    "BxtePSfAdipMi1mH4w3MZpysRxDUkEUG6Yb6kkGyBudZ": 97000,
     "BxuxSE9uBT86LpERbyhULYqeNKDKWznjQJVieGuTz1GR": 11800,
     "BxxanwoQks591DsZph69ozmHgbcMF5tFMyq6VLVK4T7d": 25000,
-    "BxytAN8MWW4tF6p3SEzDwdNeujha2JLoVWgZYw66gwLS": 5000,
+    "BxytAN8MWW4tF6p3SEzDwdNeujha2JLoVWgZYw66gwLS": 5001,
     "Bxz5MwCwMXD1JJxpmm8GAEgmvEr2RX1mznScoVAj2a72": 10000,
     "BxzBnvgr7MwGCpBhFdHN8U9JtfN3fSUhDaQWuw9DMYyR": 5000,
     "By8PwDKc7fCxHvPA4X6mGEsR71o23SPUnpyTUzP77NXy": 10000,
@@ -227409,7 +232245,7 @@
     "BybvxkGaVaWkGJpHpdP4EY9UpxMUQnkPyKnGRW68Xgor": 36000,
     "BydcoYfkSq3YahNwN5Wb7bygYh2FMjqX7P3Pf4Tuy2T8": 52100,
     "ByfvLRUTkFtx5TQhYY98Kn5shDqiS5Hcvm6w2TWMmNhR": 21882,
-    "ByfxVwZPWb6eAmcoxm4m6JioCoRzoRHYtKz6ntK5mDha": 32400,
+    "ByfxVwZPWb6eAmcoxm4m6JioCoRzoRHYtKz6ntK5mDha": 7036,
     "ByoVpwjeXJAWKGnnpaKxHBa4inadfGVXYVpG9RcxoUkX": 15000,
     "ByqgCDiF614UcY291Q1nGDYaYVfLzZwAAhnBbUy7T9B2": 10000,
     "Byv5v6uzU6cCnLHAzcqxsqQSWXfEq7X4KvG7n9SxYj4n": 1000,
@@ -227427,22 +232263,23 @@
     "BziyptvS9nSxkn1WqqCmr5hcL4oV4YXErVLa7oehRDUy": 40000,
     "BzjLdu4HYXGHf2Lxggxp4qng1gtD9PzAunL2FoEUrH7p": 1000,
     "Bzo397Pq3bRmxhKCMZLW7kDLN9gkAqmrux5JAZCUXYMD": 100,
-    "BzoRjAExZ6beiMa6DeW8k2JaFEeuaiDZJEfoNk1sddaw": 249000,
     "BzoRjAGxZ6beiMa6DeW8k2JaFEeuaiDZJEfoNk1sddaw": 1500,
     "BzoXkn71ZwQodYoxKN3jqyJ7mFEBm1CJbjVaHdgXtRxa": 17055,
     "BzrctWc3Uv9kkzM1SvS7AZm63Prb3No7MPUs24GCWQg9": 1000,
     "BzsC7fLtYyFEnHtrzP2U1RgCUKH8NJ1RYCV25o9c37k4": 7000,
     "BzsjSMsURREE5ggrVXcoxe1pA3C51Fku7QLveBwpbajq": 1023,
     "Bzt9ADyz5GR5qbx8Z9s9skDNwymQt8gXeNbj7pinaHcU": 188500,
-    "BzvTSovMPj9oBHvHCW4joiqgHZ8dd81j1gD5qDYdyojC": 52500,
+    "BzvTSovMPj9oBHvHCW4joiqgHZ8dd81j1gD5qDYdyojC": 56500,
     "C118fqs277Sqya8p94b29NvPrWkffCq1a9zKQ5hgUURy": 20000,
     "C11z6ZJ4opRFE2inbxgCQkYtfpSGpunFo5ntpz4oyyMy": 5000,
     "C13Z8JFJLYEwHKKfh2Fgu8yfR84jgSy7xA48chN6gwKD": 500,
     "C17TGp76Ks8B6pbnAWPXnJAN8BWvAtow9Kv8i9RAs6y9": 56875,
     "C1A2mCyuYgRMA5sJ1dAvhcsP4CT4ebyxZLLNrd4EVqyt": 2000,
     "C1AfEUhLPmibbSVwZb7R6GiLnqL8fwdDs9LJW7XrAueT": 6400,
-    "C1BTo5EyMpQn2tQox6a5cEq4Jpn8MkhpQNfDSS58gJn2": 3800,
+    "C1BTo5EyMpQn2tQox6a5cEq4Jpn8MkhpQNfDSS58gJn2": 800,
     "C1FsbH72MFrt2hCoN5NxrsFGEnDeEjQuJqK3KFzcmqFy": 5000,
+    "C1J3rrcXQuyjZ4xA8NdiiSxcee894Va7MY7XtNBxieQ7": 5000,
+    "C1Jh3NgWZ5maXn5kk8r8xS3ncPwhizt8qSQ8syKMUEdJ": 11000,
     "C1NH3eMo31n8QWwPq2cWmFnDdoruMW2WYdtb9RGDtdg1": 8021,
     "C1QhS3CaYYoz5YYQEi7DKLYe1tYdPbz3qYoKGE3pJnSv": 3000,
     "C1Y6F9ydcpZV2aVRrRchTvhDn9qKCmNwK3QyPABUgb4F": 31770,
@@ -227453,10 +232290,14 @@
     "C1m7y4YBfX78DhwEnDJernDZzhHtayEmrEnLynycLwKB": 3500,
     "C1oUkueqrvsc8AQVL9fdtmLTYGfURESNL4yK5P4rozft": 1000,
     "C1qdbsF8JjJTWrphxTneH4vkmznavwun26zQMjs1dNUq": 500,
+    "C1waSmmfr9D2Mrvqfc9WyJaM2rkLkBc8cGQyKWGnD8nX": 34500,
     "C1yWB6xRcfWURLSkCVWJKhuiP4fb3k5hTADws3g3sDSn": 1500,
     "C1zg7SwAedtb3c8VsdgrEncD4w14BFWLWqoSJPKwfnPC": 11100,
     "C1zvYSMNyEDvZTYLkdLNxSqfBCn2j8DVW56Pd2dwhcew": 60000,
+    "C23gGyejVj99tetcjVRsoJvhdyjSjdgSwjbtEt9qSejQ": 12000,
+    "C267pK1vNteQperqC8TpWki1as5eHhz6C2hYTFGiFASD": 20000,
     "C26onvK135Gg5grzfZhy7jHhKX2R1sz7tEENt3QCNBry": 1032,
+    "C27pNvj7B4NM9wjhd2t3xbBaX1H9cdNgjftcpDzKcjo8": 5390,
     "C294pVf6nUJ7eVQ9qVcW6mctqX2VGuJcWmUiKvLAsdYZ": 180590,
     "C2CpyPK76uXJxcCZPnfPWcKvR3BRZkYnDungYW9Xx9Fs": 47000,
     "C2DSExxmR5w6LkRQA3mTcTv6VDWUudgT8ciphbPcKQrW": 10110,
@@ -227471,6 +232312,7 @@
     "C2q9b47XXgTvHLxNZNbXEni4vwoecScZLvfJPxSxhoXu": 5000,
     "C2sbsw5wwWRPgoSRveZimUTCXFgwxW22qDi1eq57PxbZ": 700,
     "C2tHLckPdu9jvWgbVrfDqCCswjnquVoLH6vEHBJzb6UY": 59040,
+    "C34xzCVnXh6d9Wktx11AFXVudEoALh9CZgHV4XLpsjxr": 100,
     "C36BUajosCjmU8mLegQDreCy3Dmc9t2tGoAJX9McGB1A": 19018,
     "C3ArCoYJWgtERR3a4ZMA9oNpwcdLEFeRmAZFVyfUxiAb": 23500,
     "C3ArCoYJWgtERR3a4ZMA9vNpwcdLEFeRmAZFVyfUxiAb": 35900,
@@ -227489,6 +232331,7 @@
     "C3ke9QVQR9D2RCJMGS8LQLPnakhLme7D5ypUjiEZjhXg": 7600,
     "C3mcEXNyCEYFGCQg4JU16bzdVrTLemeLZERGdXYGWkTB": 5000,
     "C3rp5E1en83fxFDjmXrPx2qtywzNAGbbJ64xyshAGAM3": 2000,
+    "C3vRRMudfQEW8btt3tJPngmgx29yCdAoCh2CB4XU8cPG": 10000,
     "C3vc2nLKmaGtWrbaFQmAuhj1Mmd8Sgr4EY9XZ2tZUVA8": 5000,
     "C3zkpC9p9VUwbus1LYcf6hoN1s48FPJ5zg53JTiNReDe": 3000,
     "C3zyawjkUMkhmDLfTAC6pjqbpFzNJDRz3XhFHiV3tv79": 48510,
@@ -227496,14 +232339,14 @@
     "C427VB5V6iCGVmhWX7kLUw2vhvo9tkZ4KRtL2PiH1Y3a": 202,
     "C43E9wT2rCmaQZeewJSn1rHWyfH59so3q98cHz3DFbvP": 60000,
     "C44kD2uLhiVJC2bFBw9qm8g5993AEJ84gBdbs8Te62iN": 1000,
-    "C45u56huKqT9uau3WyCJLKrL2xN7ZM1fLLgncTFvySPQ": 3450,
+    "C45u56huKqT9uau3WyCJLKrL2xN7ZM1fLLgncTFvySPQ": 950,
     "C4Esu1bvh72DDTiS4G86KVf2uEwiZr5o57s4buhCo3AR": 2000,
     "C4EyNFrAnqgs2m15MGLsBKZ1A9m5dbnojSfTMtWU6tDV": 15210,
     "C4Nzdd1btp1GQoCX3muCXuC4jRYYHGzdAqBXKGHMeadV": 1068,
     "C4Qww7rQbrgr83biSFBRbTG4QZk739k5m2kRC6tPpp2": 100,
     "C4UAKZW8yteocrV3LCbtJBLGjc5XG8Twrk2Ynv9t1gDr": 5500,
     "C4WEvcTHYK1UKjDvGN7PvnNKL6drkm2PNxGSXiKgmfGE": 17900,
-    "C4WNpWpNqxkhiGveCUSKp82pBGNxg9pVDcuvR5YoZkCk": 5000,
+    "C4WNpWpNqxkhiGveCUSKp82pBGNxg9pVDcuvR5YoZkCk": 17000,
     "C4ZiEkrjsdKmBwp2gf4LBXGAbzK3TFrd9rnh2qAcWLZ6": 39000,
     "C4cS68HCoQJf8BJEfbkbFrwQQWPJAk4394ABkdHr6bwW": 5000,
     "C4jPctb7vrjNMbKN9mNXWPis5yR3XWExn522TwYpdD2P": 100,
@@ -227513,6 +232356,7 @@
     "C4w65LdUi46oAgaCnqhsYVR6zcPRUaV2rdtZd8RXKQsS": 1500,
     "C4xkFwYjT1ZAmJ6aCfTSDXR6vqokHzrwMZS3PtxYxyCq": 1000,
     "C4xxBH3sDG4KKiE97Ug2Hs8GSr6HEgRjhYsgGDsK4eEd": 1240,
+    "C58axBgtm33FoospTMQeFqvsf7TyZokGqA6Ex9p71bGs": 68500,
     "C58oxzrPFU1S7UEY6dWcbbQYqoV1NRFPYMsMsRLrcy5M": 1400,
     "C598sBrPrf9xfwxAjorQUurEDFU28ecBo8QexQQhvt2W": 151,
     "C5Ce2fjgMAVhLsrLUpz1xLERHxqk4iWSmapXeUhHcFwB": 10070,
@@ -227524,7 +232368,7 @@
     "C5PXZ8dgjt7DhkHxUySW86LnwnHP9oGw4LTCssEHKbtJ": 13900,
     "C5PXZ8dgjt7DhkHxUySW86LnwnHP9oGw4LTCssEHbyJ": 10000,
     "C5RrxA1S4utyShsPCSEgCAZBnuqKgreq13ZwgojMmW2R": 15000,
-    "C5SstwkSzaL6YunmCH4tg9iujKGnhXvSv9ZMeaTryHzK": 3500,
+    "C5SstwkSzaL6YunmCH4tg9iujKGnhXvSv9ZMeaTryHzK": 9500,
     "C5V9DWHdExUdBLJd6wUuP6f7A9bpkEAHXwLzZ4t1ehnA": 9000,
     "C5VEn8w99rf3BkNaLPPjGU8GHNv9oVTF13AKBgoGpCfu": 38600,
     "C5Z2mVtA2xpqcT1JrmopMG4Ye7yjUFkwtWnHa9HDeRj7": 101,
@@ -227549,35 +232393,36 @@
     "C6SRV2CfLFpdkDsLRWfLLRz8Da94BehAbCMiusNkDLdD": 5000,
     "C6TgVdkXnZMYAivYFxmGCHtA5X82xwe11Cui8RNTnVKU": 7000,
     "C6VvBeMuvd9w6a61Ef3iDUNdUjATuaQVDeNdahuD79ML": 1000,
-    "C6XBwTU5hrZqgdu2Racrp8ge9mvYtXrTxRsta9EG5gGb": 22800,
+    "C6XBwTU5hrZqgdu2Racrp8ge9mvYtXrTxRsta9EG5gGb": 21700,
     "C6XUX4GRTCrXw4FjaFc2hvj2eCSmXLyCZtU6PCQRPNRW": 14204,
     "C6bUm1B8ejpXShBmFKBDKHyVhn1w6CADXdN2JRtMEP4j": 10000,
     "C6bynY6qgPbzwCNQTN9spyGTiMb3b4uL1ijjc32vpqBD": 3000,
     "C6ceLivpXJ2E7WEz4ETGo8VeMes1BA2u9KEXn4wQMLm5": 294,
-    "C6kvKjTCbB9iYgqEvqBudVs1naWarjvvh3TKQjJFXfGj": 92300,
     "C6mnDEBUP5b4PAcPkYtoprxSZhnCCt5HiuSWL8K9gfpD": 5000,
     "C6pTNnAx2kniQXjeAHxMumzCdqvkaRvrJWMgkky9Gn5": 16500,
     "C6zSrHWsT6DpeZ3Rx3hH9pS8chcbGb9GPUS55581oCWZ": 9100,
     "C721YhyzLC8BbNNy1UzAqRSoJnbiJdS9S6XM6giibc7E": 3039,
     "C73hyRFe2hDeeny6uPvQniiGrhN38tN8uburDCt7u153": 2700,
     "C78vMiJLLwTXNBFSVS6nyS77dhtmaf8YYsPgYtvTUkNi": 141500,
-    "C7AjLHrZDtJVw1LGhNC49FYi7yScDu6jLoxKx9KLvCzx": 5100,
+    "C7AjLHrZDtJVw1LGhNC49FYi7yScDu6jLoxKx9KLvCzx": 45700,
     "C7F27ULtAfEcAgu1oEDkP56NSaoY4gAuHyzWFKM26Zzo": 5000,
     "C7G4jowGkjG1pVV5oJdsVQCvq4S4bF9dPwdc8zTZZaoN": 18596,
     "C7L9yLk7rRHHQ1HeMtrCJNn7qRQnyEY1GJqxwjp4bHnF": 7300,
-    "C7M6Fc54VwmiikSFK4q7jDRPm1iR6cbsJgmGd5WQcNmD": 5400,
+    "C7M6Fc54VwmiikSFK4q7jDRPm1iR6cbsJgmGd5WQcNmD": 4400,
     "C7M6S5zJeTLK9a3jS1DR2zCkS98FzkcFjWBtWKYr7oAf": 700,
     "C7UgPvwq9nt4G1MScW9ThaySJyVgHyj9BEGpYdKzFQpv": 5000,
     "C7VH3wUoPtPeuzhJPmnD4gZ6PPgXHMrzQjARSsxJZ6kn": 100,
     "C7b1JprxFtAZdiR3Sknd7y2jBLCUVDFgcNutRcZUZxQ9": 3000,
     "C7bM3Yej4Q4RyCrgauN5nSpZxCVBWpFN3uJmk1epGj6z": 51000,
     "C7cZh2nU5dtYwQoZn4pSW3TpJzts4PKa68mstGkiCaTV": 3000,
-    "C7f5UFwc6amGsy8PPRbwt3NiW21yBdDzhA8uadedGTGf": 900,
+    "C7f5UFwc6amGsy8PPRbwt3NiW21yBdDzhA8uadedGTGf": 32900,
     "C7gK4CHYuiLZQ9CmEyV6erSe9AP6gYmGJdm8rRw3HeZG": 5000,
-    "C7jU1QNCWnfmbXuqyHNxYV9DossWKicEg8KpQAgKw95E": 68800,
+    "C7jU1QNCWnfmbXuqyHNxYV9DossWKicEg8KpQAgKw95E": 71800,
     "C7pw7KKnXZCPuFDUvqXLgSyJZW7jjTzeTg3V68cAkGp6": 5000,
+    "C7vvgEwPit2K1cZ7RonoFTZzCNUt818uzB2cV7pYN8C6": 10000,
     "C7xEPQ5bpKA4QMpkfT3RG1jR5UR9psyp77syDMFepEst": 1623,
     "C7zik6n7wrJNPpPCchqCGqyn59JRvF9hzjnssPD5dKkb": 9300,
+    "C85Ut4DtAMjtWjZuBvP2dtcRAnRmj8Ava6jtwDuEowqe": 9500,
     "C8BPoC89zEGGihHddS2wvSE3jL7xrkxProTbNfq1Bnon": 5200,
     "C8Dsnywpqs36WWchJ6pNFHPhfMuVVG5fbgCJSjXCtKVi": 29000,
     "C8Ee7iZYdCpic3gYHdHYuHnhWxvME1t4hC15HH9bfk3": 10590,
@@ -227591,21 +232436,21 @@
     "C8PhqmkPBKpvf2jQkkAwzgK524YFtfitpPhHpTSyd5Mn": 2000,
     "C8RBqaELVxpau2qiiU2dcU5kZQTsCBM96zwwpZLdy1aF": 100,
     "C8bafRSgqitNYLAv7hYrPuLewhhkaS9feZVbj2HaTfDj": 24200,
-    "C8fYm45QCxrmS3d5F8NHjBHanwhaEcj3AAGg16ConqYW": 32848,
+    "C8fYm45QCxrmS3d5F8NHjBHanwhaEcj3AAGg16ConqYW": 74208,
     "C8g6Rsk7CahcLHHRjiUFQS6JvpTHeB1Kkek4wf8vUdYu": 100,
     "C8msMQEHWugfizwKwjLkvJYpH1x6Mdro13T749QVqk9n": 10000,
     "C8syR8vEBcf8iXBSS4JSJ3yJxbByXTrpea7Fqmx8MHPX": 125100,
     "C8vyqKPXUidFZ6FB4zdPe3oAsLeURDMig2r5RXVJsGFN": 2000,
     "C92zZKdakmh1DsPGmQ5PT3axQXHF99W8jTDE4xq8h4PE": 1000,
     "C93DK1pqwm9qqkrHf9J3u7pBUbhBnYj5Ga5gaeUJRdrY": 30500,
-    "C96SGvasuS1vKSz1fhpTjL8B7UK8e9AVrFmNE8PoBSQt": 30068,
+    "C96SGvasuS1vKSz1fhpTjL8B7UK8e9AVrFmNE8PoBSQt": 14068,
     "C97w34dt9BCtvq5cjxaYGt7s8qzRRzi4K9g4K8MSn6BD": 17228,
     "C982HBqAZSXkeqhjhJYquwacNxXmY9zPfZhHjht6nNDW": 3000,
     "C98NeMfXZ94JTDeHjnX8zzcUCqE6VctfVEZdrTjhFzha": 189400,
     "C99DD1LrN6XVd1cVmSgS6YtYpte4TUW1yprK8hBbY1Cs": 50000,
     "C9GRQc3L1VKVjbqpaTCw12WNeQjxdMyYWHLXQ9JwHz56": 15500,
     "C9HSnhG5DzCfdnxApcZDdREC1z1zL6dBKiT6XWkCy4o7": 1700,
-    "C9KfQUgqHU8VgpihFZznksvUtz7awLB6BcKR8Ep77M3S": 67000,
+    "C9KfQUgqHU8VgpihFZznksvUtz7awLB6BcKR8Ep77M3S": 47000,
     "C9TN3E6Z4txQRjFjbeZypYXDW6NRcBe2Q4bZz5XRadgR": 207100,
     "C9X1DxTLgPbZpCTLawzQZ5Shd32hVasdTihDwPBz1wTi": 100,
     "C9XDxXWCV2tDBDU7mpPZnvSwiybz43gor5fTyPtmGKor": 5000,
@@ -227627,26 +232472,26 @@
     "CATGbWWMcbvwnwKUgssUaoBmB5cdysuNBCLnK5SNEMUk": 1400,
     "CAZ9PFJ35JN3CvF26bWnujEbdJHBPZy1aVQR8p1aTCG": 100000,
     "CAcHZ3vsxyUnEeQg8YVq2gWeXjLFeFAt2BNPwgD5BNtH": 1000,
-    "CAcjRGFtV4t758BCYAQrdM31LevqHdmCNPLu4Nr4iubz": 73600,
+    "CAcjRGFtV4t758BCYAQrdM31LevqHdmCNPLu4Nr4iubz": 129100,
     "CAdbnXGu2yaQ34SLTSUimgCS3BQsD2vxZvJBcUSDPm83": 5000,
     "CAewV5YyRqZnPbQZ36tPDC2Mg5bWCKk1DsFzDhqyJMYo": 5000,
     "CAge5ag9u1GKSYjbdw32z8XJbBDkG6QnoqJoJSDSCoE1": 4900,
     "CAj3wQ9r13dtBjXStWBdiw77o3qshMkMixpyqnhU4LSN": 1032,
     "CAxgZLrLLfoji8dN4ZYgbYGBMEhssp88psATsJUsyJ5R": 587651,
-    "CAyaxSjhTXcCYhCwJWmDwCXnRZdrbwTRJx1BdJ6URYXc": 2000,
     "CB6Wn749dgXXwPkskqwmZsDZNnH2p4Dsu9LBRuHiRQPV": 100000,
     "CB91ukDgTJrB3XEUfY2QVnZzxPkh547W276D13nPj3pN": 100,
     "CBBSZHjbVoeeRa3PqHng3tctEjQxNXzdqdXtgvGPJDWY": 100,
     "CBBT7GRFdL5eCNDuhzEa1D1WJrqKM4SnGyzFrTrWdtap": 800,
-    "CBDn7vVG6hHk25HXQmqSsBUqnJBiU8P8kLTDzgyS8EQR": 13772,
+    "CBDn7vVG6hHk25HXQmqSsBUqnJBiU8P8kLTDzgyS8EQR": 8772,
     "CBHGeTJdtnJCkiADwKtZQdyS7Zgbgj2ft6U6qvgnyFXh": 15000,
     "CBLkVpz1skztSdxJcP1H2h4SrTZYYhDqSb3L142wvt87": 10000,
     "CBMMwQJ3jesTMvgTeqnR88QS9dJzy4ySEuuoitJuRibj": 20640,
-    "CBXbx3AJP3wAxiuqmwTTAZeSmsH8wtHd3M6nC3iV7ks8": 42832,
+    "CBUDD2TDbGa4Qj98XJkMy7hCjcwFMSFmb3F5RzSBUnMz": 13000,
+    "CBXbx3AJP3wAxiuqmwTTAZeSmsH8wtHd3M6nC3iV7ks8": 2332,
     "CBYb1b2MGSXN1FRoMFYf4Bz2WT7qt35pmmBGTAPCQ8B2": 135000,
     "CBYgvKF9fvGWjPAs8PvHaTk5nbj89YRrxmpfWkDdH82T": 104000,
     "CBZW6qBorDt6kUwkYfv4GZkfWPK2GYBTi8L29NnKhtsL": 49600,
-    "CBZr2EgTNnovcRx2qoUgrCzHbtdSQoADaw1qQ448jFsr": 277341,
+    "CBZr2EgTNnovcRx2qoUgrCzHbtdSQoADaw1qQ448jFsr": 491531,
     "CBZr2EgTNnovcRx2qoUgrCzHbtdSQoADaw1qQ448jfSr": 100,
     "CBgJyhNgD1t9xCxXugCB8i8wR4gA8oiicr7FnzXULKt3": 10000,
     "CBiNoJnQuJzXnz6uMk2BwDCB6gfyniMrLoxJoZxsS29E": 8000,
@@ -227659,7 +232504,7 @@
     "CBqzzJeLTCVX9XtFrHchi5MvF8hibGdwGk8ZdagW6Fz7": 5800,
     "CBumBxyBFcB5YexcSR1tMxmovohTXF87uTn3LqoLvEV4": 5000,
     "CBxVa41ZGsQKaj1eXDQy5TbN2qoMbQAY38UkXPyvQQZh": 26900,
-    "CBz93xT71XMb121dXxvBptGQ5frKwpNdkXUZYSF6t6G1": 42000,
+    "CBz93xT71XMb121dXxvBptGQ5frKwpNdkXUZYSF6t6G1": 52000,
     "CC756aXe9j7jtpBzVA6XFRhbLPtse7ZD23WRfLcQNkN": 1700,
     "CC78cV9ktaP9MQ5hAdXD5NRvhCR8nStHBofgAW2mSpao": 8000,
     "CC7Dx7d5Vh4hyZXimZhUTSn8A4e7pRexMzMnuBaUvcRR": 3700,
@@ -227683,7 +232528,6 @@
     "CCpEeAeSUbgaCsWCXMcYjAzQiSSWr6izCwKTxwS5y55M": 18000,
     "CCpbMBtHGaw85cLHiB65PJedNhJERCCqCjm3RwXM9xuo": 33500,
     "CCpsA7yp4RhAMQh3vB8m2PoSa3iDgPPLJAzk3FzPPnC5": 4500,
-    "CCtGYyKoYnnjuENzojRSv5VTinDxyWFnqvD6TkV2jgzM": 67300,
     "CCzvfUuaqvWeQjwBCrpYUXm7cauXFmtffpWYfKCCb1uS": 7900,
     "CD3iDnymGxcpX7XkKnxunXfff5s27BMWxvWqCk31S9c5": 10110,
     "CD6XmpgDHfSzoRCPdbsZ9p27Jmn13MznE77RScqLwBgP": 40000,
@@ -227701,7 +232545,7 @@
     "CDZmD4zZ9kw1o3MdsYHPqzcQfijVdHWS3CbB9XkAsgdb": 1000,
     "CDbmVXg7Tue2EmWDGJm5vizQk5uwXkjF9EDwbR9jAPnw": 5000,
     "CDgvc6eJKFjLJm4mVJAaug9HsJ82DrPxDd5WVMxnkguN": 3500,
-    "CDhYW1NCoeUufaygvbUesfz4im7jgud2TxKTfxn8gTuM": 10700,
+    "CDhYW1NCoeUufaygvbUesfz4im7jgud2TxKTfxn8gTuM": 29800,
     "CDj83468p4qj7YsKfxHTEwSmxVVuso3XntVvMD6Y2ocB": 1000,
     "CDkMeyT9jcyTwrdUgFMbeg2Qzr1gJAjFo7WtepJMMzvN": 23606,
     "CDqZUiXEdCCLMPpVGNbW487H6N9XNVd89mrSVAyjNoNn": 100,
@@ -227710,7 +232554,7 @@
     "CDy41dmCkwr7SAin8tp36JKCG95VTgwWeG6X6bsMTHDv": 6259,
     "CE14tPMRCDrFBrHqqZaRiofszg3KXpPnAfQFmFTxtFDx": 4359,
     "CE3mPVVe9o45DdRtWXhdigozz18cavg2feQWtu4fEEJq": 3000,
-    "CE3mPVVe9o45DdRtWXhdigozz18eavg2feQWtu4fEEJq": 444162,
+    "CE3mPVVe9o45DdRtWXhdigozz18eavg2feQWtu4fEEJq": 509396,
     "CE3pU2cZJgebWxguTVBSpeN6wecef55fbecMkY8BSwAa": 7400,
     "CE46Z3yfoDYhS4fdzxnuqRQrkfYM3mxhpJRmwiswgm3k": 3096,
     "CE6UhPGjHURjgke6Jb8niQZFGUygFP4vmuZRU75jzoH6": 1789,
@@ -227718,21 +232562,25 @@
     "CED3zxSZMd1nxf34yYvtCs39vC4B66kmFFx4wTad1h8L": 15000,
     "CEJDGxQczMdG75bG3KrbP1QmcGhJpFQuxvzsjxQfVAkT": 52550,
     "CEQ3LbPYSqaKQ9hbGDgEBvTN7EEV6eBqAKp4wtpZ8Wrf": 5000,
+    "CEYSeBSKdD6rdURNC7D57CFUb6wjKxUTd7kiyQawy46N": 5000,
     "CEZ4qyrFnW29R3FssvYPZS5hVJKtWNxmg6uHoA5bMift": 5000,
     "CEfEihtvuJW1iqDWb7xnJm9FPsP1mQQxPPtpM5ENoAPL": 49900,
     "CEgev5A6XsAirXTC99z8Dwn47b6tDzorTSSHKrLvBfUn": 7000,
     "CEkYyNE5PayMeQEyxYdEz8bVUm4P7SdKUbvY5H6KwKr5": 38103,
     "CEndBrwAx99uoRGk2hm9uMH1rsKjG4NGPFgjFRYNeQF6": 100,
+    "CEpM7AJLNZqoMQ3Rvk4T2ogw16znf1QZLny64zrEAXq8": 5000,
     "CErEw9N7pBpRBocpYKnfuY6RrRwvpNg5PKF58fNX6Rws": 5000,
+    "CEtJyf634QMBzuNDsJXRyfHMXrw3U8P1yuYwmTWe2sW6": 8000,
     "CEx7ECouubvggLqtFngZJtEt1zhDSGeHh7HhjVDNvvgW": 10000,
     "CExQ1Fu1VMj2MuMPUrZSR6WQtMw5fs6XXsLFsuzoKqTB": 5000,
     "CEy9Fj4xH8A6QtAgk4TqCyK9XpiWynsYiQR2gxrPbS9M": 2450,
     "CEzShX7Xp2E63PoWdHRHFrNMwEHDPYAhZPWdi6ZSJU2B": 220000,
     "CEzUDGDzHRKaCZZB5tofLi9Hj4D4phkQSgGpXFd47gAL": 400,
     "CF5ccioYpvTLhXBmcdk7qjDiC6minueh36o4fkqRcKqc": 10000,
+    "CF8ZHnPWHahhj4FEe3yjPAqj1vfGG7GNAd6iFxXXb8F1": 14100,
     "CFCz7BSHrBa4mLH9bK9ab4m7zQ4LcgFrtXkNGt3jKr6K": 2300,
     "CFEYh7iN4kRjf3BUzbtjPXhqVUpxjbx8fnUDR9bxT7rQ": 1000,
-    "CFGTCnWxHDH3qWge12piGUJME14diVu6Sy6G6KWQv31E": 83377,
+    "CFGTCnWxHDH3qWge12piGUJME14diVu6Sy6G6KWQv31E": 113377,
     "CFGTCnWxHDH3qWge12piGUJME14diVu6Sy6G6kWQv31E": 1051,
     "CFNJc5pggcEC7pgsU6ojaJJX76HH7bXXA5c3RKE2SdHj": 251,
     "CFNPsqyDorf2Tk1pC8EgEGboS8mWqTuo6DqGembkCfQB": 25000,
@@ -227741,12 +232589,13 @@
     "CFRmDVfH3kRXdESjToyYQsyWvLMdTQeV6MP2BZofY8pM": 204,
     "CFSzSWBnyf9AWUm8nLFzKdFQDuAXoqqhnQtB527Pvk32": 10000,
     "CFWD8wWyiWvyJJM6j7TZod15qUDPSNMUz5KXTHh4ahWu": 43000,
-    "CFWxXLwTGGJjhPSLxQbGMRDBjqauooSeYf1PwJzWH5nr": 122890,
+    "CFWxXLwTGGJjhPSLxQbGMRDBjqauooSeYf1PwJzWH5nr": 54390,
     "CFavP4JhsxZHmntZ8pHBprNW1a812xDTid1nRKTuPBb7": 1100,
     "CFebqjVg48xuzQpjFVb7S93vqj1qLk28GVjMybRFccE4": 5000,
     "CFg2SicpsajBxi5137xLtTa8mopb8QUca2onr8HCXKLr": 521,
     "CFhA7MSwStN7aQv9QYxRiKL8g7uaaeEcWhAjhXM41YDH": 100,
     "CFmCrycL19cbLB5e6FvvCqL6owst6j4Jj3M5AGnHucfP": 22500,
+    "CFmHSHp74b3pWLkNgz3sUiEbC5ms3hQdt9EQjpSdnF54": 30390,
     "CFrxYtj1TGPMQiPzqWBw1nAcWNCd5uSsyL5b5PbkTwFT": 21000,
     "CFttFm7ujspHGsgAV1Nzav79mCNDMFn9f3rDYwyHwP8x": 125000,
     "CFycuearey67r3MZrQLMnTRAQs27iiKEn6xxE5Ucv3mh": 5000,
@@ -227774,12 +232623,13 @@
     "CHF61Wjd6Rh2HB8AiYVVjjCDPKoWRz3bcnjQ863iC48E": 6400,
     "CHFrVAzEFzayPvgjLVA3CD9ypa3ekBCMkjKijHF7YW4P": 89700,
     "CHL8pGTcqbPtwmkLjD3usvgYFpxf5gvsf9XPfuc6JzE4": 9000,
-    "CHNHztghAimbeuN6FQj26Tk5DgNv3xWCzEVFhw6k2Bog": 210000,
+    "CHNHztghAimbeuN6FQj26Tk5DgNv3xWCzEVFhw6k2Bog": 209900,
     "CHVi3NHbAHdvqdNfA47VYGUrvcyC6emNP5zQsJbRGgkm": 1241,
+    "CHXr6hj1z1fh6o6gnFzo1fiBBRdfSBAaME9FR9Um4UYc": 31500,
     "CHaFBtTRD38V3D4qdqhEoXNmDu5qn63T9R1cDJAvG6Vh": 50000,
     "CHb1miSukixxzko3yesfJRpUyoXYutNgUe9LMMYXoYF6": 400,
     "CHfsqNsAj1kST4Kt7a9tRaauzRdDQWL3wHYCbANeDCZe": 31000,
-    "CHosFQox9qTSBkPyLSVupRiHUcXawwTodYEU6iqkcZs3": 546966,
+    "CHosFQox9qTSBkPyLSVupRiHUcXawwTodYEU6iqkcZs3": 389882,
     "CJ35hh3QERZ7nZ6ArnUZ33KAeaWUibQQDH2YCNxFjbVo": 12000,
     "CJBUpXB5V87FMJdQxSshzJFjKTGiZULWuRsRdu5jXfMy": 781000,
     "CJBqvRh3gMAyKA1h7SQPv9BB5LTnFqKjZq6owEqcB6pz": 5000,
@@ -227789,14 +232639,14 @@
     "CJMaxw3G8YV9ZfPXRXLJACWd4hqA8En3hEQmuGsaBNLz": 1000,
     "CJPjWmPPrGYb5gsybyssLeemeVjfipcE9m1NzQBsRLLi": 102100,
     "CJRuMwqT1uzQf3UbQLEfKmPmW9T2fvreigzSovUGMgC7": 5100,
-    "CJSiGU6ayhLmmryBCSdki8csB6XZDBFSskrPwdtBwpay": 200021,
+    "CJSiGU6ayhLmmryBCSdki8csB6XZDBFSskrPwdtBwpay": 220021,
+    "CJSssKWj4dTeLeQd67aWxHaRQfUY9UqyK1C4EtkXvhVn": 56000,
     "CJWjhteaYEZ1ug56D3mDSud6cKJSFyXNwpanrNjtzd2m": 10000,
     "CJaJe6zzcuYCRw6ePCmUt412wnTjdPkM8qKenh15a8ZC": 100,
     "CJb77TCkDc5RQBToewiVz8rF4dUf31mTkPZeqg3e4g4m": 16500,
     "CJgo96hS1tKVYwD14QyN9tbGJ8wLVGmAoxQ248MjT93B": 18500,
     "CJkWCBwUuRgFmvaPSJTTaX16nyNthDaV7AENDa5u76G4": 614,
     "CJmMKRSKNjueU83ZtL4s3RxCvG7oftZUr5uReGob8beJ": 5000,
-    "CK2YyML7abNjrC2o8h5YAc4dCYJCvVjvZS2BgAwtXwy1": 7000,
     "CK2de1kFdgKZkRbbDF3pEyVGuMDX4YuUW4P9ysPJnfg8": 1500,
     "CK55XXtNpZVLohCqaDakrb8X8bosphoBH6Nj9N9U6yZB": 3989896,
     "CK6t7u43BBMSGWHbMk65AMLW4jr1RJcGveHnuvg3swzx": 3000,
@@ -227808,9 +232658,10 @@
     "CKHSH72Bd2tjyUn5VrZQrowUb6kW6nMS75aPBCziXU5i": 2000,
     "CKMkDQ8QkSGifKowbEJvSQ34ufWB3LKC8VNE2cHz5tMU": 4798,
     "CKNUk9cFes5eDTVZNRs1yeZZP7GoCiHtubXeJnZU53ei": 16800,
+    "CKSvhSvtvRFrxmasLHJzd2jsDsbiry3JZfbXKaue6hyv": 200,
     "CKX2FzZMjTRrREHqK1orSWPwi1kas1uqcpfjJHgBK1fy": 6100,
     "CKY21ehg7VAhSWqpmnrkLuzJKFBhuj86gXasVz82kYc6": 1000,
-    "CKeQkkf7NixzuHWJRfR2GP1HfNjoxPftrfd8SkmeZrep": 42792,
+    "CKeQkkf7NixzuHWJRfR2GP1HfNjoxPftrfd8SkmeZrep": 103848,
     "CKf7FAyLquWt8RnoXoELfFxjeJdm8WAEUPEsuDPcjxkp": 1200,
     "CKfhvJY7mz3YW663LsMGqYTvLnDWUrWTVRaFf8pqgvs1": 82500,
     "CKhKT75SWw7HLTf7Bk43QBrH69hz5ZbfwtvqDxYDvPY9": 8300,
@@ -227820,6 +232671,7 @@
     "CKoQetq2GvL21Fx4MeorLvuFRjXXtN1nV53J8LsmFyMc": 39000,
     "CKpfB33jem9vZ5WiqdDagXMQK6XNJBDVME44HZ6urTzX": 1000,
     "CKqQmAKHcyEYTLYfTK31cEwfdGddS76QX4pTC5qxbLXH": 2500,
+    "CKs6JWEyw8TWqR2F93PSoh4WCPutmAt144eDeQa4z6vY": 600,
     "CKuV15SEukW2efCwoayNZn8VFUfySWSV5Dq46APXWTVW": 5000,
     "CKuV15SEukW2efCwoayNZn8YFUfySWSV5Dq46ApXWTVw": 1795521,
     "CKwrfssWdifPpJQHGZUbbvNPuaeUG5Rkv3Vx6D69fGKK": 500,
@@ -227860,7 +232712,7 @@
     "CMhQbzpMbzKMCtVxNG6N16h7xAHsiQQ7jHnBAaxoMVyC": 314,
     "CMhW3y8BwujWyozwu7CFcpUosBLihBvHFXUEgqwxMGy4": 100,
     "CMn8YgxXSxXNjWApvzY7RbCg5RzRsuf5V5uR6RhCDqb": 1900,
-    "CMuC1cyX8dmhreEQGuNd8M3jzB4esucEzfkVfjB15es5": 93000,
+    "CMuC1cyX8dmhreEQGuNd8M3jzB4esucEzfkVfjB15es5": 108000,
     "CN4e5uGDd7hB9Vsmx9QPps2H1GD9yZVe1S2VShv1AQeZ": 35000,
     "CNAft9adFhiYPTehrjEVtn9sP7FFSF7BWx6oGRuc9Gqm": 67000,
     "CNAmkHC1dH54nEn4is1ANm77ucdBJ6AZ3Bq8oqkj1nCN": 66600,
@@ -227877,20 +232729,20 @@
     "CNSDyz7fZa7XPXmoczZ9chh8RXphwHZYMPMshVvUZv5U": 10000,
     "CNZzBSuLdBE1Tgwa47APX43dAocJgbGjYA4HDiU9xpKo": 595092,
     "CNbqe4wtcK3w88Jq63MY3jdtRhsjyMeKd6EnEB3oMvXe": 5000,
-    "CNce7GPSuV3HAQiifuzG9beAS4zfWnS8bNQuSWLXZ3N6": 57700,
+    "CNce7GPSuV3HAQiifuzG9beAS4zfWnS8bNQuSWLXZ3N6": 49200,
     "CNo82DnXVutphE2hwyhazB7SsWeUhZT62noQpC3xA1Ua": 2500,
     "CNopdU5NLfzdDiPNvjfj2V6mGUUB8BsjeJnLAa2Dbj4r": 1204,
     "CNpe4y2Eu9JTiotS14qgoZon3JLCYJc1ahMZquspX9so": 10000,
-    "CNpgBKH6fxQuuuvBUVo1SbVsSPS7yBeRsKsPJqU6DRja": 4900,
+    "CNpgBKH6fxQuuuvBUVo1SbVsSPS7yBeRsKsPJqU6DRja": 7900,
     "CNs4rCi3DgbzikY2oJHMmKLfsBpqUQUfwXKnPHsHi4cu": 180,
     "CNsakg3ax1mMQSDd56SjHxFbrhUCbkWNScfYGzJPnEkH": 5055,
     "CNtn58M12iNUmkBmFFmK7ywPsBrD45mUEsH6AE3VMjwj": 500,
-    "CNu7Wf1YVNGR8TByZHUCBjPQHgjfKxb6oQvu8WnFUidS": 352776,
+    "CNu7Wf1YVNGR8TByZHUCBjPQHgjfKxb6oQvu8WnFUidS": 336856,
     "CNyQRX2XmEC9Ry5FRCRcasG9a1JNJ4cvU8xKcZkLJJP1": 748900,
     "CP3wb1FFRDNGN3wZgk718Rht4xtquNS7H9Yeahv3p5mt": 87230,
     "CP5RHqXtmC5r8VRMZj85EsUvh3Vp4nG7BJd5tPehtJjQ": 1051,
     "CPBdz8qX9PWEmwaMa3U2RJhBaTU5NuGdaZ6XU3ncLba7": 100,
-    "CPD1DJq4oQJE6Seow4HtNs5EQviXAoDyQyQKu67axzKU": 61200,
+    "CPD1DJq4oQJE6Seow4HtNs5EQviXAoDyQyQKu67axzKU": 49300,
     "CPFB1uEpKSCS4PCtNQ2bXacqP2rMHrdta2g3jsu8Rd4q": 20000,
     "CPFTSKRTDPW3LMzhw345p4xiE2p2VBq7HUey2gkXccpE": 100,
     "CPFusvzcFcdczEA1Ccenib2XqoBJH6Vs5KWPA42NFdc7": 5000,
@@ -227900,22 +232752,23 @@
     "CPNEhq3mie2G22xa7AUyrjNKY6DC3KKH3uTU7w5ZjfDL": 8500,
     "CPRJec6HzetGJq2Ni9BF8cHX5SkjSgcyQwfEy9KZHDMJ": 700,
     "CPTWuPq4PsVKasbyYS38EtnUdvrKMZYcKoMYkZH6sgPc": 1000,
-    "CPUCoZG3bk2mdjRn7MHFBNycApBoshW1vWfTXh6SFbmg": 254552,
-    "CPViYu7GfnARB54e9zH1sPugb1gJcAPwrAhGXj1cMf6W": 4600,
-    "CPX2fXu5XeGKUAsGQGAobW8J7AHh3h2oC4Z4WbvNS1rG": 44600,
+    "CPUCoZG3bk2mdjRn7MHFBNycApBoshW1vWfTXh6SFbmg": 283552,
+    "CPViYu7GfnARB54e9zH1sPugb1gJcAPwrAhGXj1cMf6W": 35100,
+    "CPX2fXu5XeGKUAsGQGAobW8J7AHh3h2oC4Z4WbvNS1rG": 38600,
+    "CPZz2Jj5vu2EzvCGxnAUGtJsviAV7UuvTHnQFzThJo8": 10730,
     "CPcC16n6JVNfxfzAK1612o595vcPKssbfvFTGGVtysWW": 38600,
     "CPe55wTeLHZq19pkZN3dhLoNXubffVRfL7nSSSoUMKrc": 160000,
     "CPkVpPPwQs8y2BFK2iDaPLwdFUDp8knYZVmQ1arqaKRr": 37100,
     "CPnfzNwhfh8ARsy2AhDjZ8GRsYrL3saxfamMk8K5RayY": 33700,
     "CPtD1af2BBTJQLwC64eRUGxNrztk4sxMVfYxM46X8w7k": 3100,
     "CPySyR4REAosUto2FZssarZu8kLQWLDxkuXTbTo1jd51": 100,
-    "CQ3wpww9KMT6SbndWG82d9YGaux3pG5c96D5EKUHUt3R": 139515,
+    "CQ3wpww9KMT6SbndWG82d9YGaux3pG5c96D5EKUHUt3R": 141845,
     "CQD4n38K9kPiADkMjnNgcnoaDCkfZdeEHQg512gKEoep": 101000,
     "CQFS1dBPF3YbAucpg3JGRKDCbecx2LTBLWMeX5RYTkNM": 1123919,
     "CQNVytTCvE36dGZACkMFi45W5JjR3uUm4YxJAuTrgCXe": 33416,
     "CQRPduqT1vxeqUT5nm7wtZTUeosM1nigkxdF3n8r42Bx": 5000,
     "CQYt6UcMLSFC7p7LP8CU9tTcjizdhpcy9dHEUZNtXS6s": 200,
-    "CQf62NwmaH2jGYNk3pptcAvMjPGN1jJTPCmX5efjueoz": 14800,
+    "CQf62NwmaH2jGYNk3pptcAvMjPGN1jJTPCmX5efjueoz": 17000,
     "CQqByC4vLmCok2xMs2YnZwMrJpCEgHCDr5nQUwCEXwZL": 24600,
     "CQsynYLNrE6YPfBj9TEex66Nggq6REJ1Co4z6GEZjTi": 500,
     "CQyJM7N1f2bofbSSWrRHuncHjV7PtjSwH3e1THLg4d9f": 4800,
@@ -227924,7 +232777,9 @@
     "CR2KmfiFHF39CaUqHCPT5uQjdotQceMoyVGqfa57t42X": 20000,
     "CR2vW7AuUUV2CdowRsWma3WirSihmEVqs4TjJd1pS4o8": 10100,
     "CR2vcNRp9ZrdneiFgPJUnU8USMKyPpYXXyn8Gn3NNss3": 1600,
+    "CR4P54LqV9twedQVN7YBTuBZMh7FRE1Br7KdJkfc7ZPe": 10000,
     "CR79fnjPchgw41hVushCeidWk8YEZ4eu5yC1FieFqa8p": 40000,
+    "CR8AvcbVqXZ2VsTxDkDvvVausosWHjCVhEhUrBb51wH3": 20000,
     "CR8cHk1ZhSGDEN4Mo8s1G1Eah8bKHW32i8n6hvbvu8bt": 642100,
     "CR9J2C7nEfHRhdMF8ZcTeH1mqJPYJs6Ekkfuhyhk8LtD": 2000,
     "CRA9R7kAX36oekXfVQ57pdLFHic26UBepMSrd4BjD9z3": 337800,
@@ -227942,8 +232797,8 @@
     "CRuVMzqQAbWk1Q8HrEuqUf73zsMkQPPKcCYGd44H9g67": 2000,
     "CS1cTq6UT43noEvQ95Ms362amAoL7WsnEss7rvYNm22V": 281700,
     "CS6G7kgb9r6Cf6V3K6qf6DuovfDobr6u2BQ3fEesTR2Z": 176800,
-    "CSB92eY826W3Kj8N8F3LzJxw8npEnToBpYJJ9bpQxmqn": 98700,
     "CSC7Wx5cyMSvbYS8cSuLVferAUzZmBNdy5Am99NE17UL": 1516,
+    "CSFYu9GsYmxFECymW1qaRyuu5J4Nt9Yn5iHfuJTDVN34": 19340,
     "CSH3JzaXMNhMf7FazYXVJQLg92jCmZGn2x6DK1wsrNRS": 1000,
     "CSHM2wAwayef6vGN7WizhEbF61bWMC97gJqcVrwfsCD1": 5000,
     "CSJ1RNodF5v3iSS3uc9EFXFyb5v7nPagT81h15p5fgsE": 502924,
@@ -227974,6 +232829,7 @@
     "CTFfXvAtCaTTP5LtB5EMBqfXbFAP4T5JobThX8g846bm": 1017,
     "CTHB1bpd3kHjUzx7pPu7vqMwaCXzFUe822fxY4qicHEr": 3300,
     "CTTJYpWvLMPwHjCptPHeignVH1k5nnFWLsBosDoeCYhn": 59452,
+    "CTVNGTiVtFygHrQNdtvyzZxCTLYMScsPwJAEmVUoSwca": 60000,
     "CTXJPDFS1aF1K7Rvd3W9HysaLyN1bv8EeFE2LGNozjFq": 2000,
     "CTduVr6gbNHX8NNcaPg82m8bLXXQob4ZL723iYNadEEZ": 200,
     "CTewKjXs5QRMQmGTNq1NNiYZ4cCsSjjxEkS1HkQzj3hE": 4600,
@@ -227981,16 +232837,17 @@
     "CThVVTkJ1omhtQhzshHbyaeKmDLXS4rRgjHXCSbxEM1y": 500,
     "CTjfeVenWGaoxi8RwZjs3LSBWUAZnzegRrUKnWDeTtH": 2000,
     "CTnvCX2zxnSyt7YJhEQ8dCHiZMc77H9y6kwcUn2rejGA": 4300,
+    "CTpDFUp5dNjpaS4FeqFGC1jEDHUdTPQ94iXJ7khfsZ2t": 1000,
     "CTpXA6bzMSsve38BYAfaWJzo8HFzXRQqWK5S5oKv5TXK": 4000,
     "CTr7QN5gDFe3d7CMNy1f77hk21Za8cy8AHvU9XkPCvcR": 8400,
     "CU22iANX8k1tfKb8jT4tcSZMZjh9AxX1pjiVXuiSPLmi": 2000,
     "CU27bAYGKKdxQ43y3C7XC8BvkogzME8m4jSchkPNrz9n": 5000,
     "CU2U4nfBaZrYLM1ccPySvKpZVZhxJt1PsAtcGUdMQKts": 200,
-    "CU2suXKDyLchE3DtBzREcHrZXT5Qbh3ZZJnTKdGzL7L1": 5000,
+    "CU2suXKDyLchE3DtBzREcHrZXT5Qbh3ZZJnTKdGzL7L1": 5001,
     "CU3nqYnLidDznTZ8tJnhi48pJ9ciRuTocMpogahMCG3X": 3000,
-    "CU6DR7dYoNRNVamXu79kDUV8vteUdn7kAhcuHmojGhnf": 37900,
+    "CU6DR7dYoNRNVamXu79kDUV8vteUdn7kAhcuHmojGhnf": 8200,
     "CUBGH6Ho6LYk8RCF7uJsRC8kjpgcoJT4StUYannAFoUZ": 5000,
-    "CUCUDzFi56VqhvBeS2bpqsYXAeQHAC5yEGwrWPaZ5BZf": 1070000,
+    "CUCUDzFi56VqhvBeS2bpqsYXAeQHAC5yEGwrWPaZ5BZf": 1150000,
     "CUDDXGeULRTUvjAkmTmrVfaU4jBUs4CRAhmtsbjooqX9": 600,
     "CUETuNJgA6Z9iweFgwkGqfDE1m6dHbG4k1QdtaENTX3z": 10000,
     "CUTssznaNGmuVVQzw4xiN2WeZthbFn6WrPnSAPachbkH": 5000,
@@ -227998,15 +232855,15 @@
     "CUVdZpCTKKeWobpDh4N5kgzRP7Aq4XMbk4rA4tZutX8i": 43000,
     "CUhkFVuPSDYHgUnzLtJvvy5nKsuM9G13UiNGMyqwgEE2": 9159,
     "CUiLEAn1frjR7jTi5GZbueF6r2uQ8SEKD8JKonEBQJFY": 5700,
-    "CUmUszucHQkHQmqgnkycRk7ZdAbDn3eoVAyt3mULxJ8r": 17200,
+    "CUmUszucHQkHQmqgnkycRk7ZdAbDn3eoVAyt3mULxJ8r": 8700,
     "CUpcdbVFW7XCDD5fxMnphfJr5kt6rueeKuLm92bCmvPo": 500,
-    "CUqE5uTGiAyaDZs4M3hbvXm1cNiQ6NTAKBr3TPoTBcre": 360,
+    "CUqE5uTGiAyaDZs4M3hbvXm1cNiQ6NTAKBr3TPoTBcre": 98860,
     "CUqjm1Hmwmer7XWWfG43HSLvAvc4R4d8QknJFpVwZPWA": 121138,
     "CUvLbKkr4FFuuxyBxzL6MQB8jwMUbd8paLFuV3QJrNPo": 1007,
-    "CUvPWbfmnjyfvMTYkc4g8z7w852SooueA5UgUUD2S5cX": 6000,
+    "CUvPWbfmnjyfvMTYkc4g8z7w852SooueA5UgUUD2S5cX": 150000,
     "CUz8TgGhcn53mpjEzztAd9XvNEudsaPZ28z51Q1tdLSn": 156000,
     "CV3nFWE8NuGY12RR2wR6nT1zQ51u3kYVjmVE7fFnf4Lh": 33539,
-    "CV4RTZFopZyJhfiPKhMeq4HAz2uuc6zkxqzgyhTQuAwr": 1000,
+    "CV4RTZFopZyJhfiPKhMeq4HAz2uuc6zkxqzgyhTQuAwr": 25660,
     "CV5DVKfmRAPTGszhDXahQavzVY1uAJnLVJjRFjXj972H": 10000,
     "CVBH5E9cDuJV3UFZL6AdZZ2Po1ypFJdQeSV28cX7xcGm": 50000,
     "CVBhBmqtCqGNEuzMUwXXGjLDyJ3tFmVBrYWZABFxCHZH": 34531,
@@ -228028,7 +232885,10 @@
     "CVjpuqHLpxBYhM5g62BoJ26H7i4SaSSARvXJXKAnP2Zi": 5000,
     "CVm5ikKrVjv25kZFWqwzLdzCcZCwG2CCaze4wLQN8Qp4": 5000,
     "CVmUszucHQkHQmqgnkycRk7ZdAbDn3eoVAyt3mULxJ8r": 1000,
+    "CVmbuHggpbbo8mmn3KGZYTEgeyfHxNVc6pTCgF2shofm": 688,
+    "CVoa3CcwaT6DLQwCT5ys6RVA4mXJBRWetu3WVK1sLRmX": 90000,
     "CVuALFLg2eRuBGVAZAuXL6GmeeDyvMA9tv3gsGN7gTFA": 10500,
+    "CW3Ac16oQxMC6cpumpBKU6cUjEG7EZjJyPRWZ5Ph6Bfc": 33500,
     "CW3psH19qx4WKFeoQoJqQ4oAC2bkX5ooCfjJG4Mf2FK": 96600,
     "CW6WCvohJC89zYjn91o7kr2sRNBoWDa8LgAcsesnEz5T": 473395,
     "CW7CALwveHowH8fexbLjZVixpVSyyB62veEtnQ3wkTMe": 1000,
@@ -228046,7 +232906,7 @@
     "CWeY5P7zgcDTKEopGUrN7UgjNtd1N8gZrjnueRA3JZJw": 500,
     "CWfEZozsq2R2VZ13BcDyCFxWGk7spxkeRcbwxTH1wnvZ": 200,
     "CWnZmV9XHJg7o4Gme9cMdNEdgYFPdeciv364BVuUeBuG": 10000,
-    "CWo859LBfsTBWDF8CvcyFuWyesBXCgViqMW1pRyoCesW": 506098,
+    "CWo859LBfsTBWDF8CvcyFuWyesBXCgViqMW1pRyoCesW": 732658,
     "CWq9Ezk86jTo65KbR8pWTiTffNjTg2qGfRaDRNQS9sM9": 900,
     "CWqGA1aAQBaCQXSHSPNT4yXfwZkbnLUQqyd9WdnErSJG": 17677,
     "CWsPYM46ws2Tvs2DTk6AptEfBrHggHdgcxYy5y5FQvGr": 700,
@@ -228059,41 +232919,43 @@
     "CXA5rd14AVAUVopNUuq9kGw8nkAuPC37XmHEdxDWC2e1": 10000,
     "CXGfqR5fHc8XSkxZupVzWXycVAGuJow9q4gGPDgLgSJu": 60000,
     "CXH6651BrRgdzySkH772h7LCp2VGjXAT1gkNGQm9f8kH": 5000,
-    "CXQ5p2BPsKV4SUte3FoSEgNh17ekcyR8sYD7xTN4YbEX": 39000,
+    "CXQ5p2BPsKV4SUte3FoSEgNh17ekcyR8sYD7xTN4YbEX": 13000,
     "CXZnwdcUFeNbD91ChCr3U6M7eyyhSDNMiPwi2nDBbwot": 23090,
     "CXaCozduXCmw8PeFDLydt6BcCb4f3k42iHKXfwXPNa7n": 11300,
     "CXde25LX4TcRr38TMRa9ai8HFsNrDcZjdMd6qbd3tE9t": 503,
     "CXf6QwjZ4c3rBwCtBF6Xxp6BKrRnohmBuzav4ymYLRUa": 500,
     "CXmQ7VFhmu3d14Jt7FbqrGmVUWLAc2XijtQMiVS1934r": 10000,
     "CXmZZsNcjW4az1d4FkhGJFnmZRY8JvLUqRjTgohwEF2n": 2600,
+    "CXqAKkJJLU4Fx6gtEhFLqF2oGujLuZqr5oFCcbBbSA1H": 10000,
     "CXrk9z9T9MkBHMiqAoA2UGvLHj2gev3D5operTMGRbX": 1000,
     "CXtjW1YSCpSNFt6gqdPEC29RTXNBrTxq27ehgmx1z25v": 105000,
     "CXtupiDPnwjJxCS665VfhwZ42k5fCh2KpLBmn8nAK8kK": 12000,
     "CY1B2MznNED1byRBhc43q5iHtmXSakZCgJggxQsnDZzw": 5340,
-    "CY5etidcugDDqy9bLCuWfWRdeowTnRzpz4wMrHPAiCwJ": 229799,
+    "CY5etidcugDDqy9bLCuWfWRdeowTnRzpz4wMrHPAiCwJ": 234799,
     "CY9r7NPqPqADkaTtmLi6NKu2fNfp2TKB9pfpJat5RaLP": 10100,
     "CYCsuk8Bc8PTcXUyteBnNNjnCX8NwHKshhgytKMwULMd": 10967,
     "CYJCUeY1QgGa1cyS48KK7m5N8qFctSGy8xefc2Eqbo7o": 9200,
     "CYJEMkskKi5CSY1BHTMic7s3w83cX7BDGmvQw7gizPDv": 700,
     "CYKREPv1KF3DPEQAGPX9UZuqSh7V83DFxqVTH1PoZ76X": 5000,
-    "CYKhxwGqrF7y4pWjLLs1nNHSkPjvTZUEf46bBfZGhwJF": 117680,
+    "CYKhxwGqrF7y4pWjLLs1nNHSkPjvTZUEf46bBfZGhwJF": 145680,
     "CYLrthPdo3Q3ssXLVgmBcraQShMVpJUNw4MQT2iH4acS": 31500,
     "CYV7D7ss9ALdt2rTfvWYV9bmBZpLqakuht9mPw4uJp2v": 4800,
     "CYV9Q47BQWzBQu9Qfrycy7sqdGdyMyjQFJ11weaB9r2x": 10000,
-    "CYV9Q47BQWzBqu9Qfrycy7sqdGdyMyjQFJ11weaB9r2x": 335000,
+    "CYV9Q47BQWzBqu9Qfrycy7sqdGdyMyjQFJ11weaB9r2x": 404000,
     "CYV9Q47BQWzBqu9Qfrycy7sqdGdyMyjQFJ1weaB9r2x": 5000,
     "CYVYGRiCdqtDYhVcb1kEhwNoQ5WJyjwHSEwT7qv2hnF": 1068,
-    "CYcHZ8kRG4i4uwgueiJktRm23XDV3sPiHqC41FJ3Y3jn": 34310,
     "CYfTJwZ1RYpQJgA3Z4LP5MWSSDHdTmEvxVvyCsfxiS3o": 147000,
+    "CYiMsE14zJekxsEnUzN4odku6skZ5vFpLbCV99mtguM4": 14000,
     "CYoZguNbdYvC9TaWUBb33bvWKypeavV1phVUTySjDTYw": 5000,
     "CYtHPTv33sjZ3TaaduSAE343Wv2YcKikHRA3YdFEXotR": 1184,
-    "CYuXAxvmVfmdB8oM7g9jQowCqRF6BDrhp2SJZH6wD6R5": 33200,
+    "CYuXAxvmVfmdB8oM7g9jQowCqRF6BDrhp2SJZH6wD6R5": 36300,
     "CYuvx2cgs9W5X8vXmAjfXTdB9PCr9Ks9Wix61ghrNnt6": 34600,
+    "CZBxGZotFDUbdLsYuorNVeigGzjjUw5NtfLQSiAsNWVE": 5000,
     "CZCAU6xxoFutb7fBLfbUbwDCP3RZhgTC94oM9Xkr35a8": 390,
     "CZJcG7gfe8nrxg6jjsYKWmy1AK4qWUJVuV7sogvQ87xM": 3000,
     "CZKbFMjHVETXh2CF8tMv7BaTo5ektzEext15NhFouBLp": 4954,
     "CZRFsqx1EopvbSXtcxxRKLSSVR6BLMaFP3tpaLdHM676": 36600,
-    "CZSdR5zgvgqPs7Za3PC2C5jSbt7BLpMjoG4a57BTvPvj": 119900,
+    "CZSdR5zgvgqPs7Za3PC2C5jSbt7BLpMjoG4a57BTvPvj": 136400,
     "CZTKvFKyxnacnREUQFerotpMkLayShuJXtrvQS9n9bbN": 25000,
     "CZTZH1vcwQEs1pRbHK9yiKS73ghZj3yMTm56FRNC3Vxa": 375986,
     "CZbexM5Z3BuHgC96YbXw3bcmkpJ8eLgxrki84LyBn75Z": 4700,
@@ -228109,8 +232971,9 @@
     "CaFRAWjrwM3U5KpQ3sa6Xntw73p6LsrzBnGTJQb8TLYA": 4700,
     "CaSpwD9x4nWrN1k4rne69M6djBgxwU41QPQqNCXre4zB": 1900,
     "CaUAcPHHPi29yB17cRxUA8emB9T9QWQiDG46983dBfmz": 500,
-    "CaWk7yV4Lxaf1LLX5x6irJVCqEypfcb525BvzM4Y1skb": 36000,
+    "CaWk7yV4Lxaf1LLX5x6irJVCqEypfcb525BvzM4Y1skb": 36001,
     "CatMNHBeQqwY6LLQ3qBHxgcgWxfwev9Zf4jaNpkLZHPV": 223000,
+    "CauWWYmqpVwKsGheK4XfobSuqTwcGNdiXasEZxyh7U37": 5390,
     "Cb7FAFFUwcmASNJfCScrJN9NdcH8ZjL25YUw7mu8YqxE": 5000,
     "Cb7h1cj719H1PTmDkM2WsCgu5b3NDcHqWVV51GuGDeVh": 10000,
     "Cb8Ax6hmLgcWL4NbbagC3tdoCbokh9oYHcTKim1HUGJ": 3400,
@@ -228127,10 +232990,10 @@
     "CbYQF2uz5dVCSSYMqyVDCb9BVcN7DM6H2MQEoudBS5xJ": 2008,
     "CbYmnFFAuW4JgERJxJ8n9hRkpgqqwdpAEFi5iXwvJWLm": 1000,
     "CbdqeZRr8m7CzmXxLfs814SmWhQ3UMnHrDfewkgPNyee": 15000,
-    "Cbgfg277LQv2rkqHhfHgTQG6tEn9LvGgsMGPv1YXo2dP": 36452,
+    "Cbgfg277LQv2rkqHhfHgTQG6tEn9LvGgsMGPv1YXo2dP": 60452,
     "Cbiq6SsmToJCDF5iNe1W7RyGib1qBcwie7NWG7LKP13A": 20767,
     "CbovFqEqAr9V9NZt3uQfCKHh15G7QA28iGf8Egj11hkS": 2000,
-    "CbpGXrMQe3HvvGcpEhHmQLNubv9UCDoxnf9KCDcZ3Ynx": 22500,
+    "CbpGXrMQe3HvvGcpEhHmQLNubv9UCDoxnf9KCDcZ3Ynx": 56000,
     "CbuoDinLTeQ8KvYGoJig1pt6Ve6QHyoSLLPhCFMS9Qds": 500,
     "Cbw77nT94XDzM5iKoGTN29SaHCfq1DQmCQXJraD2EeB3": 22000,
     "Cc771V4XzePZ1bG4z8ffrC5aoqNsjJQzb879YZSpE2GX": 5000,
@@ -228153,6 +233016,7 @@
     "CcphCzgD1JgWNE5sSGtqgJyd7V72JGe3gKh6y1Vs3DAi": 700,
     "CcuU8MsLAqTVZMYDHk8CZNKrh6vos3soNL6mGxboM83c": 500,
     "CcwG23UHVY8HKzQjaVfLyoWQBrG2x7YAboSuVxFTND8s": 100,
+    "Ccx7xHbZQEL7uPyCyfG16XQLkDwRey6pExXRPJnChrvR": 11000,
     "Cd1pBoMKrPAKXXFJwspAF7xQz1Zg77RJ9cvB8C3WZ8R1": 22649,
     "Cd44PqGkqGSacUNvsWvXnCawAiwdEeYq5CFkR1NRSZQF": 100,
     "Cd5gcsCKsjJnN3iCEPLvtDD2hsqBxCA6G5r1F7UMoCr6": 2200,
@@ -228163,9 +233027,10 @@
     "CdGY85RxE2c1q24E8b1YUF6xtzLfQWcDqF3FyKSTURHD": 5000,
     "CdKQzW8qTFzp6zndyLkmVUXiDybsfjg2UKP43HVYc3Q1": 80000,
     "CdLovzYHrSY46EqGMQiSD2375L2BZD6CeT14TDee6REe": 5000,
+    "CdPgGfkmFzTZH8v8d4JezXmRKcGh2DWgoTUxPTWkx9WG": 8000,
     "CdSTa6E5v2GQFHZHjw3JYxAemTN9AiPZY171nEiLxtK2": 10000,
     "CdTDZsBCov9Uv37G47iz2dM3efMZga14dyi3FD9iBxj2": 100000,
-    "Cdac4uFPNpX1XpamhrLYfrmnoE3vFZXr2MJnJuKrT2oJ": 17500,
+    "Cdac4uFPNpX1XpamhrLYfrmnoE3vFZXr2MJnJuKrT2oJ": 50400,
     "Cdf6JYYy3sUb9AhY3wMUjnkrGUBsZrxZiqq7Q5qBKn2W": 100,
     "CdgSUGUvWxTELzc9ckEbpbDL3q2bgmrLAzpV8TqnhbHm": 814,
     "CdjUhQbyqhVUPEZgLbeXqUUo5FfB52ZDXzWuYegR945i": 5000,
@@ -228191,7 +233056,7 @@
     "CeixiHCf7raqBxnwzKyppySQ3Y2RSSvspmhjut6nFJF8": 50000,
     "Cf3XRBbqFRf48PduJo2NpxbdeLUn9mtg1wH3kJ2o1U1q": 20000,
     "Cf9DVh48ZYV3tUKzU9Vr22TxCcijkAmQYAVo9QiQQWYk": 1059,
-    "CfBQEtqHPJqWXG4MrYwrfZdf1m45gaepBCTsk8NuedZW": 214000,
+    "CfBQEtqHPJqWXG4MrYwrfZdf1m45gaepBCTsk8NuedZW": 409000,
     "CfBQEtqHPjqWXG4MeYwfZdf1m45gaepBCTsk8NuedZW": 20000,
     "CfFCYYK5BbaKuh9sngyMnhc9ed6cBygHzuWfBSZ1odU6": 10000,
     "CfMLJqcUtDtLX6ALhfmRCseCfcDwHpsC1dvSD2EH8YzT": 5000,
@@ -228220,7 +233085,7 @@
     "CgXLidU2LgD9JCz9RhXoW1bS8ZNDZA95cUGEA2GgPMQt": 23500,
     "CgZEeZxXwQXndZTSwMXZJgtfurTE71W9iYFLKjvwinUd": 1000,
     "CgZMhooAz2j9CL1vYamvmp1pS4ELc59JCEwm3aDWxYPF": 10800,
-    "CggarET8ZhaH24dSVpMthM1hsWt6PrPmtXVXnAtztD5W": 865861,
+    "CggarET8ZhaH24dSVpMthM1hsWt6PrPmtXVXnAtztD5W": 916763,
     "CgiuzrZUXuXguWAmSUfCdcuNGXaqwhAhWUnDPkCwSUh5": 500,
     "CgmwyKy8AUUz3kmi1TE1jmNsAX5sYhA2HK4oUkoQVXtf": 10000,
     "CgpKox1R8mZ1QYFZ8RQwDqcbcisetraVRLi2sCijj31x": 187400,
@@ -228237,8 +233102,8 @@
     "ChReHs5fRneQ7v3y9CfULaoFJh7Xa3YBJAnTZPtWc3ri": 30000,
     "ChcNKKtsiYLuYoxK7q21nVqRD6VXtsnYWVKsXM7fE8wh": 1013,
     "Chkbm6qoqTDGUnKx2B6oH1MVjWvwNcfZFRaR5adTdAPN": 5300,
-    "ChnnB1VoWbk2j7dP5pgEMQsJWMSS39HaCViZL7zFGLGo": 59064,
-    "ChnwbixSzeF9Ze1WPEC6MyRNYJ7oqPnVoWzCgmbRXdVP": 59192,
+    "ChnnB1VoWbk2j7dP5pgEMQsJWMSS39HaCViZL7zFGLGo": 35064,
+    "ChnwbixSzeF9Ze1WPEC6MyRNYJ7oqPnVoWzCgmbRXdVP": 91550,
     "ChrzgDk2svXCR9ehCSo4uBs2mErb7udQW1iDVEs9jicL": 8100,
     "Chufdb2nBbtid1fbFejd6N8z3gfhW2Hrau16aYmm487C": 4900,
     "ChxD6Zo2PW5TDAGjb3zsJNcBtHjxWMGBLCXigGWMjfwX": 7300,
@@ -228251,14 +233116,15 @@
     "CiG9CWUQ4VmysnmPkDPZ9kDMFE9NMU2Zkh1kH5ZdNgDx": 6000,
     "CiG9CWUQ4VmysnmPkDPZ9kDMFE9NMU2zkh1kH5ZdNgDx": 70500,
     "CiJHxK7QDKEBGJ8ZrSjVrNLBG6jsWCEhp9vxNy5ykBZ": 300,
+    "CiJXzSmnsLzDm5s9zud2mpF9qE56GGVTXfqrkBgUycHZ": 1000,
     "CiLLzqfJ8aHy9zJJ8Qa1QWrJZYCnJ8MZbwe6xmjUFvzV": 59500,
     "CiRP96EvJMziH6bTpGJMWuiToq8FKHWGtreog4PRJRYo": 5000,
     "CiWcf7ge1pTKtt6vL4pmfUCuCWnrPcf8TRoKc1Z6c2XS": 31900,
     "CiYa5QYjhmVRTgYh8QxsHQeiQ8KsKPw3ahe9nRioLoeM": 100,
-    "CicwKNq6QPxXKb7naJd3FsyuoUZFpRXyBEMFrzVDLFme": 306690,
-    "Cir4dJ2LSDcX91Q5YBQcp5HUZ7UkvrycAWCQmbhtWPmx": 3500,
+    "CicwKNq6QPxXKb7naJd3FsyuoUZFpRXyBEMFrzVDLFme": 156690,
+    "Cir4dJ2LSDcX91Q5YBQcp5HUZ7UkvrycAWCQmbhtWPmx": 2600,
     "CitdnuQgZ45NFCagay7Wh12gwwHM8VLej1sWmfHWnQX": 10000,
-    "CitdnuQgZ45tNFCagay7Wh12gwwHM8VLej1sWmfHWnQX": 2505553,
+    "CitdnuQgZ45tNFCagay7Wh12gwwHM8VLej1sWmfHWnQX": 2541913,
     "Cj3MoCF1Mo6zkWXbGZw71BvdcnWWx7oWELGAS6uRZXbn": 10000,
     "Cj4JJbXZgDfzabZJS64T4EvcLxiRxCXir4xQzHTS4KC7": 31600,
     "Cj5Rt2c8sDQtXuWNywJCPQXa1jrmXVuK2rSX1v8Ug9mV": 48500,
@@ -228273,6 +233139,7 @@
     "CjKJrTRd8NzjX38vpptJt7fZQrbR77ixnsFiJ49P537e": 10000,
     "CjTZUCbwLwywhrTDwyTvVv2nprq86zvJ8eKGM1mNyBsW": 1000,
     "CjVu9Fy26S17uZgWtQ6F6AKPH7VGpYdbpuy638xZVJf8": 36656,
+    "CjaAaqsx4RtPvc6mK3oJ4fSSbnqDaYu7iiJPeAEpR4Cc": 10000,
     "CjazHq3deQNidRivNBeX9Ssc6NFsoLXTKKauh7oxCqyk": 100,
     "CjfJZg4q8gy2vi6o3u9wUWHMLrELBnCayZxwca93tQBk": 43000,
     "CjjEJzHDRvvUtXtmx6xWjrmwLs33B5xY8q95Z6cdKXAX": 45000,
@@ -228284,7 +233151,7 @@
     "Cjsupn35sxCdQkDHx8R23mm9rYbq2CqjLXoZiUN9jqQM": 25000,
     "CjujEjikz7CsxhwJ3omPG1Unh2QbK75wYnXx9BjtrBWW": 17819,
     "CjxcDCE494dAjVvPeLtjqaNzdQjbSjTE5xjGe6CbAEHP": 5000,
-    "Ck16rvr2nkWNnnEyaKNtGkEK24bszatqtJKh7Zk1QyvM": 47500,
+    "Ck16rvr2nkWNnnEyaKNtGkEK24bszatqtJKh7Zk1QyvM": 87400,
     "Ck1r34KFAoTNzVoDFiyoMUrzvt4FUydikmt7sE98knjo": 10000,
     "Ck2ByeGs1zf2TBuMaJSUi52HwJQiAG7AaG4pig7nDVsV": 176317,
     "Ck2k39pxac3ccJsT5xfNMkGcEBUWTu1BcjnTDYUCgYH3": 408326,
@@ -228297,18 +233164,18 @@
     "CkUHt4xipKBAQZuFWQehRLHGNxciHnH514uML4QmgYn": 29368,
     "CkUNQv33Ty8TnMaKD1fj7ieQskn7H7XdUFboAZafRWov": 100,
     "Ckf1oEHCCtSDW9K8o1VwViXf4R8S1TidPsaWheeDMi1k": 600,
-    "Cki1KHqCMCvGWqNA6FqMf1E61YQ5xAULcHtu4Xj5mvB3": 7780,
+    "Cki1KHqCMCvGWqNA6FqMf1E61YQ5xAULcHtu4Xj5mvB3": 6780,
     "CkiVBPdktqdi9CipNx8apFGHnQ1BJW16huSpH4tg2nTo": 5000,
     "CknueXtMF7jieW2UGqxDUy1WSH8nSPWdFn8TJUAvaR9K": 15000,
     "CkpqvxcsYJGvbANWpwZPzTKiJdyAjFHLuodN6LYvX7kj": 12400,
-    "CkuLBjyyNzjc8puH86kNDrekRjoCQ2cfaeJLty7CaouY": 10000,
+    "CkuLBjyyNzjc8puH86kNDrekRjoCQ2cfaeJLty7CaouY": 45000,
     "Ckuj3YkJyGwu28dGdr9xGWichom8Wqs54cCxptYKENUW": 300,
     "CkwbdGVEzyYUZ7wVrp92BXRnaQUpL34B1DQQxwys2Z4T": 10000,
     "Ckx1XQrZp3ufVdvfBYfudMteZEk2XXbquWLJb2qtUwBL": 7500,
     "Cm2t7yYLB18HzCp4KthdBhjPP1KeBzWET91oPH6S7aBH": 642,
     "Cm34SwsuS7U4LLPt3LPxpQMi8YXXAzt3xZQosMxeR7bV": 1000,
-    "Cm3febLGF7ig4FuRHm2YCtvZbX4fgDSBMirmzpqtJeJw": 20600,
-    "Cm4ZG2tRtKooTkv8gkEQhQgBxpjxQXWmrufqzH12cYaW": 400,
+    "Cm3febLGF7ig4FuRHm2YCtvZbX4fgDSBMirmzpqtJeJw": 28600,
+    "Cm4ZG2tRtKooTkv8gkEQhQgBxpjxQXWmrufqzH12cYaW": 200,
     "Cm4aKYN3RBpWH85rU77MGbrYKqg7cAjB19cGiWND9TDF": 521,
     "Cm5Mw3MHoh7iqVYxqLoRDAjwD6hM8kNMxZKWVLctYPAx": 10000,
     "Cm6Ps5YGwFV6A1weum8mSxWQVrpkeRP7EMwfGErF1Q7r": 213800,
@@ -228316,21 +233183,20 @@
     "Cm9rbNcJ5Mir4wdo1WhRY4UQc8FrbY8jeg85tLB9WuGL": 74004,
     "CmBeM4urbSXGyhXJeNyvUjKdJTCKrR2UgF5MDdmr2ZSt": 13000,
     "CmCM32knU4wV3ovjbFbmMm13qtKpbFe6HeSJgF74CVG": 11100,
-    "CmCM32knU4wV3ovjbFbmMm13qtKpbFe6HeSJgF74CVG5": 57716,
+    "CmCM32knU4wV3ovjbFbmMm13qtKpbFe6HeSJgF74CVG5": 206950,
     "CmKckQapM6UXNeMyZCma5fDxBvESTRZViKRFJisRANt1": 7000,
-    "CmM42cqMcmKYxiejKAyd28LRXsXgyaC3GbzW9Pp9TiLk": 20000,
     "CmMbBXFXaYjM1otpP2jEXAwLjdW7vWCw1fXH62HgcPEe": 1651,
     "CmNay6sT4cmTE3dGqg9RBcaAUdffAJM4beES2EPmtt8h": 102,
     "CmS2cM9whkyZGtgfeshfdjmQaHmnvpbQhMBYiyhCtUEV": 25000,
-    "CmTLrngaoihnjYX5jEKJgDPqQj4NCbmiFQYoam3rWCFy": 3200,
+    "CmTLrngaoihnjYX5jEKJgDPqQj4NCbmiFQYoam3rWCFy": 3203,
     "CmUQhV9q5hfCwbLYscyGThJgqFZCi85YPsEvathdjZq": 40000,
     "CmUQhV9q5hfCwbLYscyGThJgqFZCi85YPsEvathdjZqf": 60100,
     "CmVdaGHuccGeqUEZAGNPEeRnhWKvzYRzXxWNpZuXWZ4s": 18000,
     "CmVqJYfoNMXDWzzPPmkJJDBBSMvZMJJoUA8pXcr1KzTg": 300,
     "CmdcNFwfUNZBSmBsAgJwQxkwHMo86d3qK6RefqSrh6L5": 34968,
     "CmgEdmcTYWSL7rWJcJ1AFyagwLfon7JWFnzCLSDMnkMG": 12500,
-    "CmhdkrC3NU4vDbyu7Js4aMr8n7UqEEa8381BiS7fMAo2": 715278,
-    "CmiYgpvbPjAWjAf6wjAVDMcwjanRPEmgv5gEet6K8HiG": 187575,
+    "CmhdkrC3NU4vDbyu7Js4aMr8n7UqEEa8381BiS7fMAo2": 503478,
+    "CmiYgpvbPjAWjAf6wjAVDMcwjanRPEmgv5gEet6K8HiG": 154575,
     "CmjAZycdujkzTkcCnD7niYH49VCKbZ2jRyDNokk595Gt": 100,
     "CmjEYvSGEnQsfe2pDHK44GqNfWcA6c2rhGds1RAVHdTB": 16800,
     "CmqU3XBwq95pecWgJ3NwDzcHRLZKp4kRcLKpJMUTRJjp": 1000,
@@ -228349,13 +233215,14 @@
     "CnKgNkMTdytXFw5Us15GaeuaxdyyD72gAB1id3HSykFc": 8700,
     "CnNttAqjuYD8FLV63eJcq9t4gEHq5gBez2eCtsgBaBL": 1000,
     "CnXWHpnV1Rubh4gZUNiN5nAkm4oAW7PGvx9CCKGwjweh": 300,
-    "CnYQfttgQ7KoXP14ZQYjK8Cg54Gg37uFkmfwuRG71jFV": 5000,
+    "CnYQfttgQ7KoXP14ZQYjK8Cg54Gg37uFkmfwuRG71jFV": 3000,
     "Cng3ED7foUvWjP1hSNxqmS6A9K1PJYvnR7zuB1vBu4Fd": 10000,
     "CngiiHir6wbihPktrnd969W2kvmebmzF4Za7XiJiPwxq": 5000,
     "Cnh3G1Yk5UdtEhER3ZMK4RRByMBAJBGry5wgHdVE5dMG": 1000,
     "Cnj8wPHYwE37axL8xbicsimj6qTn4jmvWYTFcVaez8eS": 22500,
     "CnjMjrTyztm4inEm1WjHFpKYuddyN8N64KcRmbuxH3Em": 11900,
     "Cnk1i7co9uTDKFxW1uTSYQoMMZR6kcLX27HKeEuf2kED": 5295,
+    "CnkALJ4a6CERXtskus944Wb12S3BVkATpTougC9fh3y2": 6500,
     "CnkDq9QRJy4qJH8aRkwzYyMFwYjjtHC9P7Bp8SojmTRi": 200,
     "CnzApphJj3nrvQTfmmNriKmk9TW9KcCk7xqQeK4ZBzt4": 1200,
     "Co73hUTYe7L9AqLdUeYa2xbKDZEg1bRaxKiWVrbetTTL": 120290,
@@ -228375,6 +233242,7 @@
     "Coq4jCPoSJ8GGD97htEyWXBnnHEd1CQvCNMooLRcZRYc": 762440,
     "CorL7vcPdU7XuBJ9QYvVXzFXLkVRuZ4Wz7VonxBHNsSq": 290200,
     "CoxPNXdEP6AvEhwcHycstoEaUnbCgnpiHDxDUVm39568": 14095,
+    "CoxVGn4XECN6yDs72h7ztjxV7T3CTFFySR5R8qGgfgY2": 5101,
     "CoxapNys1564YPT8jVAmrqJ8rt7hM1urVaJs167xKZFV": 21000,
     "Cp1cqmYPbTLpqVqNbEPqoAsLcDe12xFUw2bAwdy3His5": 10110,
     "Cp5LZgeGbvtPRLiRfZ1oQqSgL9Gh6rP82BkgYxEQbQED": 44787,
@@ -228382,17 +233250,21 @@
     "Cp8Cu7bEvG7GGSTrfs91ggrTuxCZQLfHpgvoZ9dWvPzj": 700,
     "CpDrUyHRbPSXxxjCkc4Uo77qvFpXpQMTfeijNn2GAgsi": 20000,
     "CpKoDkb2LBibGcX5yhLKxV147x7g39Mo6zpZt5efsHkT": 11000,
+    "CpPzRc9XJkhVJkY2LBBZRjqHKu4Fw1LufoLgN2hjvhHC": 500,
     "CpQrrhiBe3LuajQ3a5sYjsE1a93gSThqLhhxTTFVS5D6": 8000,
+    "CpU54NqpMssswFeGoJXi7EXZmyMSHqPtJaE3HivVF5Pw": 5000,
     "CpZ3enrMx1dZhBnwi3KoxmJq1n6Uw6Ui6JkvQqa3VNob": 100,
     "Cpf6nAKGsv4TJqKYf3YW9KaSFCuc7bdAuhYAAxu8U7DT": 2000,
     "CpfU7zP5PRCYFtz2D2gXnQCFEhY2YjCA7aqXkEeE6HZH": 32700,
-    "CpmST2imKWcgnFsifkuSwcPsTqn7RzUc2x8eEBMUyDAh": 85800,
+    "CpmST2imKWcgnFsifkuSwcPsTqn7RzUc2x8eEBMUyDAh": 64600,
     "CpmdptKFHRegtb2zrMHgworoXQfS7eg7Wecoj4vVNAyJ": 100,
     "CprQgJL6E4sgjHizPWcnfYmkqkEd8AGfi8h9bjjFiWmd": 900,
+    "CprwGWQHzLX9DQAohrZN6WMcLEd7HssfaYFbBxoUTCMT": 20000,
     "CpyiAudvhkS4gHfvyCQCdoFSoCk8gTgurQndSP92jju4": 5000,
     "Cq4Gn8o5zEb8WGAsFP2hKKQtiJac3Vrv5L8PqxY6iTN4": 900,
     "Cq53iRL8rsMgy8Ceu8zDXvqWQfMiYi46gStKsMckSGqB": 158160,
-    "Cq8jefopHDFkLsokkK1BMs91fZkJRUiKGmdMEuEHJ6oC": 89000,
+    "Cq7YtwysUhzk49ZZux4H4EmbsAGujhvkeBpHhd5vfUP4": 5000,
+    "Cq8jefopHDFkLsokkK1BMs91fZkJRUiKGmdMEuEHJ6oC": 124000,
     "Cq8t1RhJ9jcKEE86QsA4spR4oPk6adBtLadQHr1Jj5TW": 26000,
     "CqDArEXSE8cnFcP89QEKXU3V5CFGLRDEjcSWmUc4NVBD": 100,
     "CqDPpVM5UGmjw55Q1Q5YMXfRBfuz7GEw3SQxzRzxNsiX": 14024,
@@ -228413,14 +233285,17 @@
     "CqsJp2Qx3BzMdCAExusaSNHtmVcKzGBAKMtoQgLovCZW": 3204,
     "Cqv2mRQaUSH31voNQvHqyJgNGhYN1D3EAV6VnAn8nmP6": 17200,
     "Cr31vANNP7hR6DxWrpW5MLpgAzZzUBigGTz4Krv4niUC": 40500,
+    "Cr9obr5pYbXi2N9iFzkrbWVQS8XhKtgZAex23yQPjDq": 100,
     "CrB2vAaxHgj4fVAueWa2BTYGco94ua9kyfJ6somrQrXc": 2064,
     "CrCCr3KmdzZR8jGtw8rrU2Ga65VSzcggmBqS7NRHMWYi": 900,
     "CrFzvj8DpMwY14dz3wM9SGtVHfwT2sdMdvf8WvyT45nx": 1000,
+    "CrMSyt6F86Sz7BvECdVpYeDVCrZxT4AMwqDWX8QNruxY": 108850,
     "CrQ8dinRHEXjUncTotwoXzAWME3GdhTBnaB998dGFu7P": 34600,
     "CrRJ8mqMcsfdbR7DVgibmmtAbQ59N98CFwME2zTj4ysC": 9900,
     "CrRwywyARrrjFtJijEFM3tkfKE7JBRii1GJXAXbrFVSR": 6000,
     "CrSG3CBU441h7F5rS1zv6myMY4UpMreGQqUtrMH4vM1A": 200,
     "CrST6aiWuKfM9WVwzrrDjHiVFYbxGgWgvDGKQaw9MhqW": 655800,
+    "CrX7dtDuvkQCdFqsVp5ibCeFDmRrA44AuiENPB4jk5wK": 5390,
     "CrXBAhmVL2DVtjxCeE3XBwjyb4zXPdnHHr8hzY4XHkha": 27000,
     "CrXvugnJ5nmcEu5V5xYBdZhJXjuoVR1xnZbTgio85HEk": 1042,
     "CrYT9WXZKhThJ6V6vcgoTiW3aEAw4KmFyuJw3kMG24LR": 5000,
@@ -228428,7 +233303,7 @@
     "Crp2AbG7nqCbk1q3Sf1TqrYUKgdiUani5jZd8pW9Lir2": 45200,
     "Cryv3TUjR2xgQ9Z9MfJ1sH6zTvFJLyUBeRkBVraKz9CW": 314,
     "Crz4kpHvFz5dxNvoZNZkQMBCyAMM6AfZYRUNtzi4rfu5": 30000,
-    "CsAYAFsCTvAz8pkmjei85zNCpUMtxgVapNB5ihozKTFc": 116000,
+    "CsAYAFsCTvAz8pkmjei85zNCpUMtxgVapNB5ihozKTFc": 109000,
     "CsBHK9DpgYAFCVqtFHcnGGDPncpfjaqoK5bVY9NSCSz": 505,
     "CsBy9uHX1G6ALeDmo9TQbQTFF9pGfzKsgfZqkbKRhdR": 5000,
     "CsD2doPLGncsVASSyEKydFRDTHZL9pwL7b8khMbGV673": 7000,
@@ -228449,7 +233324,7 @@
     "CtQgFAV8kvEigXEJe2kcMNd9qhutvshY97aY4p3zGTBT": 400000,
     "CtYeetqvVkhYhoqHRkzrQLGLKFEWzU7VFnyWGTacwpCe": 33000,
     "CtZg94eC6mphw9JY65gTdeyoonpYRU8KQ3fmPhJ38npf": 24872,
-    "Ctak1tfVbKgrmrS63LKXCcmuZWSdnQLmZwseqHLFLP6d": 19900,
+    "Ctak1tfVbKgrmrS63LKXCcmuZWSdnQLmZwseqHLFLP6d": 29900,
     "CtmFxvGaWR1Cfj1TUJBQJ39KUFyoNATBuKjuQG6xjKVy": 2400,
     "CtpypVEv2o1KLwTfRg1zby7GZJ32espYNmBMX8veGp2": 33720,
     "CttVWxzHr6S5VZivjFTAb3XarzZN2SBBfSevVLo5SXoX": 1000,
@@ -228457,7 +233332,8 @@
     "Ctywi9qqTaCd9ZmAYWXWTpLZccdQmC6Hc9bcZjyrr4RU": 43992,
     "Cu2QkF6JQZGGfdURqEg2SsKSWHvehMmw1rLqRraXbG7h": 9400,
     "Cu4LX8awpFB4iMxP281241aVi1DbMBTzA8rF7dnUVowS": 500,
-    "Cu4Ua4F2YNxmdDDtT7rYfy8QEmHgxsycahAfLZ5jPpBi": 587864,
+    "Cu4Ua4F2YNxmdDDtT7rYfy8QEmHgxsycahAfLZ5jPpBi": 552864,
+    "Cu6FUgX48SY23XZaBJsXsHKAfLcsAht2i1X4hoFtTJKh": 10000,
     "Cu9nwX5uSTiNcmLi4ibCurPSp9wHFh8hecvftHpDzVL": 5000,
     "CuE78eP7y66f65fYrPXEyQFrfekTQAUq9mpj6PqQCRzt": 1042,
     "CuEPHacNtAVGLeMYuDEmjrmXbDP7Qc4zsYBh47ACZiF6": 4000,
@@ -228486,7 +233362,6 @@
     "CvF891wNGbmMJEeeDSKhGUZnFh3FPAgVhFQyac38dWw2": 48951,
     "CvHzwEu8M9b6XUMwgBVbxtYnmCUQNR1QReLJVmaFdDQa": 10200,
     "CvMcP3xd4C4uwGBwrhXpkDRMZGdbDS1LwYvsufVoU5G4": 10000,
-    "CvPetjoFFGU2YqLW5cnok2KEQroUB3TjcXoFGVm2QbCm": 1100,
     "CvVc6ysxVwJk29EHQftnqXULE87ANc4ezXiryz6sZS6B": 1000,
     "CvYqbo28TpJZuBNgLaqpgmJEiSybxkoLCuHpsKAqZCHp": 2500,
     "CvawGBuneU875p4cqH7RCXEs3rNmrJB3aMfLaHKPTsT2": 4000,
@@ -228494,9 +233369,10 @@
     "CvtEjJcL2Vrd1dJRMZXsrpxUzQ8Ue2CgdvigGVadTbuK": 411852,
     "CvtUTdxNSRbR38yrQWQjwwAcWewU2qh5uuMKEu5wzc86": 200,
     "CvujvTj2bn4mzqUqoMyUm6z5s4pgjyBPRcFajvNbnb5T": 4000,
+    "CvuoknymvoUubAsJysMvZKDm1UMfH8Gsi8wXtzLy5yBD": 10000,
     "CvwyGgtSrxGEtaieXxARwizhB2xWspfDSwqQvCoxJaGs": 80000,
     "Cvx7gnfRr6Tdeyrt2HHh2sDCc2kQcirrmWCgT3gMk9Lj": 100,
-    "Cvy8SEgdF9qW6QHoAZcDtJRN8eCc2hFucGvMzes11vyF": 4900,
+    "Cvy8SEgdF9qW6QHoAZcDtJRN8eCc2hFucGvMzes11vyF": 10900,
     "CvzZshFxzaKnpfjBFMVA2T7wrFTTaHZsfwhAKN1aT1x1": 3000,
     "Cw4sLkKZwcaviqVcjk8aq9nvmT1MHajFHjpF62yJiS8H": 10040,
     "Cw6sc2PYKrt48MPXsUponwC3dGXpayAAcYnjKAxJAygg": 50000,
@@ -228514,8 +233390,9 @@
     "CwYuwTTYmfXABmwLNsgeR8JhX79e33E5oNm7ufTRZhGs": 72000,
     "Cwd2EQsQbHqpq2hUfTvHp5LqDRi24KYowP9cNYE5jaRm": 1900,
     "CwdwKRf9NuqcUNS8JJSbJdmfeAdCsnm8K1JGKMCTCM7c": 10500,
-    "CwhvA4wZP1rzfpaUKASA9kJbxtDVsSzcBBjrvUASitum": 7300,
+    "CwhvA4wZP1rzfpaUKASA9kJbxtDVsSzcBBjrvUASitum": 2300,
     "CwkxygvCBXksj85FMteWG9XEZa1XD2gmV521VFUu21Nb": 1040,
+    "CwrDTiDrry6cuEmzp5TMZTHULXpr5qfgH38CkNeSrJVH": 8000,
     "CwuxsgmUrNDKRosnDbS3cBQeTRzN6LCDRp9J1S3pQ2C9": 28500,
     "Cww7jiagzT37oUfyPkGAn6vqCor4mtbbXuHFYCaPsgrX": 5000,
     "CwyCob1QCj41FuzC2MPQoHbkaDN3Lu336opsA392XDHR": 10160,
@@ -228524,13 +233401,13 @@
     "CxEvrLmjAQc4LvRkUYnzRjh1BaepbEh6yNk8fsfyR1jH": 6500,
     "CxJQxcNPUDSdLAyqPJThpVTtBZDMR7kLTE7Ujwnm2hVM": 1000,
     "CxJVdUFgPcXxCTgAeTvVMZfraHe4yT1ptUvQKmH9s8Ab": 2500,
-    "CxK5p4xGWWgWZdu7VYf8frXwPopAf9saeGMa3iJWbPnp": 22328,
+    "CxK5p4xGWWgWZdu7VYf8frXwPopAf9saeGMa3iJWbPnp": 21260,
     "CxLutqtDKqGYGp5hUx4qtuP37rMvKzzcMwkVpneGAmEh": 1000,
     "CxMrPxVBVL2M7m3QoYFbrzFwJHqRuwVUPtka9RLkck35": 2400,
     "CxPgSCUFK5gwqYRbH221VRqHLWWa1zZHm8ws361fZjPq": 800,
     "CxSJwcaRg6hLuZqnm8RfvnZY5kgQq2XdXvWsRZn4mgV7": 1000,
     "CxTWSq9GiUD4U7w1BwzyZ2PsR8Uec9S7Q1fyd2zozeiE": 14000,
-    "CxZFNMtxWTvVqBXemmgKe5Z19jyDzhSE15nogvB4SBd7": 97219,
+    "CxZFNMtxWTvVqBXemmgKe5Z19jyDzhSE15nogvB4SBd7": 107999,
     "CxZmuSVjAsmueXHEmxew35oi6fqi6u62zJy2CGTU43NQ": 5400,
     "CxaZUTkohVoF9pvQ6WUw7GKPHpKt15K4gD168TmFwonU": 58896,
     "CxbBJz6rdunZmjnNN5GXMbRCvDrmvbEWRPYkVzZ7MqVs": 314,
@@ -228539,9 +233416,10 @@
     "CxeFv47h5tLnFVcD8orLNDX3YmBDJczZrFtJeu7VNpc4": 10000,
     "CxeFv47h5tLnFVcD8orLNDX3YmBDJczZrStJeu7VNpc4": 10000,
     "CxhJffmyFoQasxGsHF4PygH3egKqSRo7G86DhYJFSF6H": 15000,
+    "CxhnkAsSCLtEqYhwBwxk4QGPHpRY3ykxjnEgnguxfD2d": 1000,
     "Cxk4AXBd7WubhYoKzNsdzzFPJk76BXG9oNN775NbCKsz": 900,
     "CxnSYcariUGC1y3uxb2cxCXmmmgovFEU1Ype7yXPXQ1z": 26200,
-    "Cxpu6EHbxPts5B5R9hPjgQam44uSjXcmJSXDD4kHmfrY": 15000,
+    "Cxpu6EHbxPts5B5R9hPjgQam44uSjXcmJSXDD4kHmfrY": 110100,
     "CxrWkZ3LupXtdyVZae9XG229bJbH3XzsCQcrQvpwYcgQ": 149494,
     "CxwkyYTW7P8LXaVRjVLCKfyWzfpUDmi9CVHKwRpPHbNd": 133000,
     "CxzrY5FCnY1hLSz2oouBEsHkAvBCztvz47Puovs3oQuy": 1000,
@@ -228551,21 +233429,23 @@
     "Cy3PJHkX3dfXQFeCdhYv9E8m9QTNe3nH7aFxXd1ex5DJ": 12000,
     "Cy6vz2suoBKaKg1Zw9Vf5ZQeSf5iQ2uFnrPrZBrt2CzN": 204,
     "CyB6ttJeLgCvn7LC7f5EYPR4PfdDL643GijmVBJP1D5S": 4102,
-    "CyBUNGxotPaBMxhptjC2QdUxMc7WGdSzdjLpsSn1ns37": 22500,
+    "CyBUNGxotPaBMxhptjC2QdUxMc7WGdSzdjLpsSn1ns37": 42500,
     "CyCg7SxW2nUNLEhj3pjootdA22TvVmkaQmy2DbT6FQiv": 1011,
     "CyGjEJPBTvRoQJCmRsEXrrMvRfkkgaTSpNaS5QYqbSy4": 6000,
     "CyJLNpQ3QZtvgwLT6rPnPw3oa4RLKmYYitgGGAQSkYpL": 10000,
     "CyNXeEhzCtUB9CWCukRe9ekjk9HmNip3EW5wZYMSWxvN": 2022,
     "CySMknDqLUknMmvxon2VX8XQZYDcS6bT4V7Guzcvqapv": 22000,
     "CyW1A37gWZJ8pm3eMmNQdS48DUqB9pvgfCG6vXHRG9sy": 100,
+    "CyXjLot77Rs8wm13Dm4tm2TF2ro9rL235Kn2fdQAy1g": 6500,
+    "CyXjLot77Rs8wm13Dm4tm2TF2ro9rkL135Kn2fdQAy1g": 2900,
     "CyYNdyy8q554dUAMWMUq1M4DRgnT4jVv69HfhytnMx6i": 10590,
     "CyZ5tGYfBBLRLNYpdLPAkE1KAD5aFZeT3XahRZekBJLR": 2000,
     "Cycx5dKaD7RJBSEZCxhz6tr1cJu1nnzhunc5Dvf3QW1V": 5000,
     "Cye6LwvRdsy4PDWbeb5TZKEyfofEkhCn9xzV29CR8Nr2": 5200,
-    "CygcS8m95AfUhANMXuP9r7BaWkvgaXUd5AjUTNQZehga": 33000,
+    "CygcS8m95AfUhANMXuP9r7BaWkvgaXUd5AjUTNQZehga": 9000,
     "CyiRCZrmHyM57RyKZMtAABYMSxQrW2e1rkZD8ECBanQc": 1000,
     "CyjXKLuPUESqPCozTmbQpp4jbbkf9ex1D4GZusRpREqQ": 100,
-    "CykbmXQeVTgDVur9GMqUWNpeUvm6xAgevvBVPv2idcCz": 6700,
+    "CykbmXQeVTgDVur9GMqUWNpeUvm6xAgevvBVPv2idcCz": 1400,
     "Cym3zqj9NkrS2wiesAn1kE1jF2i2omon14aUB83dtj6i": 600,
     "Cysbv9UgYK2WejqACVdWaseDG1Zzh6LePftHoZegdhjY": 2000,
     "CyyaSi13TmE8rzGx78gp7xQmEe5DkJ2MGS4QPfx9uWFf": 951,
@@ -228574,7 +233454,7 @@
     "Cz7HvQtaaBcB8mdxJL21TbfG38vjeTVNcgsV4LvJAbjE": 100,
     "CzEELf76AmQepgPREy46JuSqX2LZ5iUPUf7Z3Ro1g2tV": 11700,
     "CzFtmT1RoH9vgLY7sM7XeRg8BSc6WC5DqmBpFhjHcajv": 100,
-    "CzGG5YjPxgTrDgNh9Mggg7aMzesPJNBopGFPFzCHUXxc": 5000,
+    "CzGG5YjPxgTrDgNh9Mggg7aMzesPJNBopGFPFzCHUXxc": 1000,
     "CzGxMGsMSKUixCbVQch2WNK8JhfaHAsu1NR3fTzbnr5p": 31200,
     "CzHmQ5cbdCpMTVNDUyyLJyHj13CAAMurefWtvTbtgTjs": 3200,
     "CzNYjMXwoqXwnki3zU5WHNSigcBJ1Evj6HBbFHFNF73n": 10000,
@@ -228589,9 +233469,10 @@
     "CzngggPud25wNvYnqoUgVjvNpWz2TF2UXMK5iyZn6ygs": 3001000,
     "CzqX7UHXeqo5RRbSeBFakqHCKcJj7D4mSAPYBqpyRipb": 50000,
     "CzqzLU6xyNkCCZPZ25GBC9qQNEqDKkNA8yCVjceWGs3o": 44000,
-    "CzruL6ZgozvFCXZPk1n4cFydxw2vdYc4egWb1XhG6WHA": 105020,
+    "CzruL6ZgozvFCXZPk1n4Fydxw2vdYc4egWb1XhG6WHA": 35000,
+    "CzruL6ZgozvFCXZPk1n4cFydxw2vdYc4egWb1XhG6WHA": 215598,
     "D11UgxekS1DUqn3mRz514jnEVs8CPNJ2fq1tNjybe9gr": 43800,
-    "D18crzvMGmHk6KLtCcvoCzX2CjwfBeegDjh3GFMDn1iW": 49900,
+    "D18crzvMGmHk6KLtCcvoCzX2CjwfBeegDjh3GFMDn1iW": 34400,
     "D19fxhBCtrjxViBDu8AoXBvVrPCb2WHFHg8cC8j5oA3a": 5500,
     "D1Ervdr4XXoi5EpwNbed5ut8g9odnmu7QR1sennDnYJ3": 3000,
     "D1J4LpN7RAfqy5u6qr26La5TwnSFcrFYLwE9JYuU66E1": 4000,
@@ -228600,11 +233481,11 @@
     "D1R52S2PzW1cXR47bVxuqNdk2aJrnJewcUD4XbdH1e6w": 2000,
     "D1YccTnzPbRfTzG9URNfy33uQWGKckKzxCAULF26P46D": 1000,
     "D1da2cs2eCKcEcEGUpQd9Bn9qKDatW17QPeLy5uCzjTa": 95000,
+    "D1hz7D6NWYqRdKrxwDNMuxq7sBmRjrEGpJ89F2iik6gc": 54468,
     "D1j4LpN7RAfqy5u6qr26La5TwnSFcrFYLwE9JYuU66E1": 2000,
     "D1jH5vAh5W9XSyWtRKy1wbAJBFBZQYJ1Jz2Cmjn9Syfa": 2100,
     "D1kmVswU4WzkwgPDZgJv6FzHTEHsxdfHEw9kjEuYMn4z": 20000,
-    "D1opuuCr83jkuSSNvmNfzdkXsyqv9RaZGPPFkzwmboQN": 11500,
-    "D1pfDGMzYiag2qiqtRjdp6WCrWxEfLUMCTuoH47dxHe9": 50000,
+    "D1pfDGMzYiag2qiqtRjdp6WCrWxEfLUMCTuoH47dxHe9": 55000,
     "D1uUguvJC7bBpCzyQoZ8JbWRRbsfcxQ45QyvJdGgPh7j": 101600,
     "D1y3u13eLUBoP5RmNzCCFX3SUdbrCG9GQtxUp8peVBxW": 900,
     "D1yCMcRztksRmBW1udunPewJXthVNYnLPnWCgSzUY9Ne": 108776,
@@ -228621,9 +233502,9 @@
     "D2XCdhkLbnhQLkwWQMMi1ESpE6k91FPtaQFPNz4v3jt3": 5000,
     "D2XtLBN1QkGZL4Q74PMginhctz3zeUJf48h3DLvXbJuv": 5255,
     "D2epbLh9LbfLWgN3RxGgj4t22A9hjsmNKMZry1uS8LGh": 10000,
-    "D2kW5wTwMXyxNjNERWGaZt8zKuBmVZ1NSCzJhU5fhkRj": 82889,
+    "D2kW5wTwMXyxNjNERWGaZt8zKuBmVZ1NSCzJhU5fhkRj": 147175,
     "D2mkpsczSgdudvgGqh8acRLp1Rbc5ad1chqnxVctdvFv": 6391,
-    "D2tUrsLHuU4GKkE3kbKR5VNr5HDKAfyKh5QXeaRJrevM": 58580,
+    "D2tUrsLHuU4GKkE3kbKR5VNr5HDKAfyKh5QXeaRJrevM": 791480,
     "D2uyqGBwoc1bMQ8KSKN1FZpcykuoMat94WW9x7N8Wfi1": 3000,
     "D2v99SogFNTMsEQTDXwCkggsucWp6ECvKQX4DwHCkNKA": 2000,
     "D38Z8znjqo6j7DNAJEq8T12BKBSEPF1pntuJZwqWVuH8": 2400,
@@ -228635,6 +233516,7 @@
     "D3JzmYuBV88Z4dSRUF1kJjWNZrHM71Te1MwycQXULfb3": 10000,
     "D3QxdGti6DRwN5KKDNnkeEhXMtNC7cNZKLYJu27Fh2uo": 11500,
     "D3ShzPP21ohaAUqSWaeVVd9qSSQrcwcqn8S2wN3PfV9M": 5255,
+    "D3XZvWnqpUqU5vYwSRah5TwAPvNLP15FR68jiDRQVQFb": 25851,
     "D3YuW9SyTchN9nXkG1VDuUn6hF468KHqgTzYkFbdmhXi": 14000,
     "D3ef3otiAzgunDmo64tYUuiUVM8DHhPKuXRAmd1bftLX": 4042,
     "D3efg547vTpeJJnCi6iwzSjQQ1TbEYTKGc6orSxuQ9G9": 79150,
@@ -228646,7 +233528,6 @@
     "D3rt9jJjETLNRja15xEdoWYys1VaRanuwbHWT6suVcba": 1000,
     "D3sRhVcsR1rjsGR6YnPe9MAhTaJMXnUjzVh3pGrLTAVi": 5100,
     "D3ta9X25Kc4J6fAK68pE9aVr5PictFSiWFkyZduWaxr4": 38000,
-    "D3wo1wGSnTe1g4cNkgUrNwLsnwbzAbKXexCu3Kpjicmx": 22428,
     "D3xL3eUtGksw67yzsRcQ7fJAuPaJMMXhU8fdPysAKTLp": 5000,
     "D49gVtJ2oRpzViGVZKRRShfbBTHFKPJasXbf9vMQSySU": 9000,
     "D49nVvqNg745QZ81kcGG4F7JheyUagyoZicsYyUBsshK": 5000,
@@ -228679,7 +233560,6 @@
     "D5mACmzjL65dwLJJCBgyTFk1G8DN87XKFaMYSHqu7GSe": 2500,
     "D5so4mRWCH4iC6Q7mx3nvkyu5FtJHdAgXGw9ovGx9wfr": 240,
     "D614z2ktRStVwY61d4NXEvNoqhypFwYCtRcV2VDh6Z9d": 1011,
-    "D64BEGPkmsrpM1M2FGittzFapaX1duB9W2Y6Jbt8ucCy": 58400,
     "D67k24o26EVsXb2RqfcJTAZqK65pHL2xod66fxFEQN3y": 5100,
     "D69wwoLukTvS3uWgLZDqqG8b9ZrfzjktYuntTRAZTHYn": 14100,
     "D6AAzNRqBQiiakMdRu9sibNPRskdenx8R8yDgPttjbsb": 37000,
@@ -228695,6 +233575,7 @@
     "D6g9ewkBYWqBMXrrgJJMBiqaNwm4QpXGdjXrQSheVxrq": 14500,
     "D6iUMaPpGvcYZyv8LPJL6G3GhFmE8HSJph77wpR2hjk7": 15000,
     "D6ifbXbztzrTTAT3VExAghjZUDemFzAHGP6sSMaYih5K": 314,
+    "D6imRGu97gLYYWWPPr69JQhGWUcEUqYrcUugJJU3eUv9": 44500,
     "D6jFZh514P2jQ7v3aA796wizFeXfSYjKxNxg8LttYJLo": 2000,
     "D6jy4QowM1K9KMt4JVppivNaDnjB82kdX1gyKPe5DKZk": 51400,
     "D6to9SEkQoSWPKdmCYpiJnEpc4ngQyBGKirZLTLhdwS2": 5000,
@@ -228737,34 +233618,38 @@
     "D9KAJvkRoEwWYQiX1FSjme4CFsDsMNQAgjsuZg9zt3J8": 3000,
     "D9LGwKuXiDmLz7uaBNoccxiapX4UrJN7VmR2Ndq8W9bq": 105100,
     "D9NY9LkP3PdZ6Zv6y1gAzCLjhhR94onhHcFdZLiK6xTL": 552026,
+    "D9QS6oBuCzgFZxx9UQiiqu2sJgjuahiHr64dqW7S4Y8L": 40900,
     "D9ZVFMYs8xJc79gNEspw4cRknesVtiDv2vVoc77hWMxW": 8000,
     "D9b5jzPxASH2eY3tKqUKAnjgohEXeRZujgGGE2afPNPt": 10000,
-    "D9bZtvvdPGrCw7mUF4XfzPnvbgjYv49bRiVTDhbh4AvN": 50000,
+    "D9bZtvvdPGrCw7mUF4XfzPnvbgjYv49bRiVTDhbh4AvN": 49400,
     "D9eVgrb2Y5JcHKUyu15em316zqkoaWJAVsoMmGzBC6U5": 15000,
-    "D9enqbW9vRs1HXTuenat5qYTDcwFQtS3mHi4S7rgmiFh": 9860,
-    "D9fjVBocBgEr2LkLnL7xKQ3etqRjHgpgVwEUUQcCk6XF": 9000,
+    "D9enqbW9vRs1HXTuenat5qYTDcwFQtS3mHi4S7rgmiFh": 12016,
+    "D9fjVBocBgEr2LkLnL7xKQ3etqRjHgpgVwEUUQcCk6XF": 11000,
     "D9hwGpzDSsQc6P9Q4aL9wbKqpj9EMm9H3V6Kybmtc4AJ": 3500,
+    "D9ktrwt99wWKsd3a13yXdiAh8gLvR5wfDxoeNpkwCQSW": 116000,
     "D9pqjRPZES37qKzNP1S8C4NkeDJ9HWgLPdFi37La43N": 5000,
     "D9qtVnnL7jPUcjA4MpDjjfzQaHnd51SRDCzLyoZDy4Wv": 69900,
     "D9rBdHfRYcaQcVRDgiGpgPmNXd8krBrUq2RUsbBiWY98": 10320,
     "D9wpUi8QLTf6JghrRmtsHmBt2WoLkKYq5YyQaA7oKogn": 300,
     "DA1mo5m8MLNbW9LFu9TnuYBY5dhbHzjXQQYqfGBGD9gm": 2000,
+    "DA2famk9zyVPXbhkoUKwCGtdw3MuFKMNdddk3Trtr5S8": 8000,
+    "DA2pS89MoLK6Yxa9dGW8URyfEZjcqMDwK5zLyuHDgYJz": 3300,
     "DA7qBrbNLRoVg5RKhPYBQVfzAL1wEu8kTngw6yit2Qsb": 3000,
     "DA8ia8NbmK7U8kMCPjAYpUnPYtSzpA49ouALaSkGXo2r": 1000,
-    "DA9ggA4Fk4BoYb93BQLcgewMRcK18tkLD7XzPW4nWcbV": 70600,
+    "DA9ggA4Fk4BoYb93BQLcgewMRcK18tkLD7XzPW4nWcbV": 43700,
     "DAAmcW4JTHB4yD9mkNK4qfdFguEWjtjTe149gvTXwng9": 265293,
     "DADfoTzDCz5ywHpVRewrUVahFzAr8X7ec9uu2PjuNJ7d": 17500,
-    "DAF6Rarm44ugQKgEBL4vEMtqDz9YsSWF4sim5XJRqFT4": 146554,
+    "DAF6Rarm44ugQKgEBL4vEMtqDz9YsSWF4sim5XJRqFT4": 155570,
     "DAHJnjHtH48b8ic7Kzi2R6xLVxgqJSVt1fWiMkhL8RYQ": 102400,
-    "DALANn4pBhyntXNRv3afJ6xhUcZC66X2D9NP8DYF1P9Y": 187398,
+    "DALANn4pBhyntXNRv3afJ6xhUcZC66X2D9NP8DYF1P9Y": 109398,
     "DANQbtpphEebzfG4SKScWFHmkGD4HH3Q9mL2DWUEaSHe": 2500,
     "DAXLE5wVTkB6CHyLfiAq5kAnbtX7jtozV1RQ8to4DMVH": 12500,
-    "DAZ9jBUpN2GRtMZoScaQBEeUN3k7q464xxRh2QZAsULA": 60400,
+    "DAZ9jBUpN2GRtMZoScaQBEeUN3k7q464xxRh2QZAsULA": 100400,
     "DAaU23dHzu3TDGZTh538f8qG6Mawm3UegrhesyAH78Di": 6000,
     "DAcpjm4oNL9AfgcY3kbcomW2TkAefqtPN7WSXxrb8Hbf": 1068,
     "DAng8KKN8LwKUWMp54RLZ3fHvtxHkLTkAkD6xMc884dW": 14100,
     "DAp75X7XWEZtUxbC2exR1LDvmYyE41wrSHqh4HFwStJX": 199255,
-    "DArBZdqLnaxNqy9mwsxJg5hASwXRR39UdyZHsaSq5yZu": 186600,
+    "DArBZdqLnaxNqy9mwsxJg5hASwXRR39UdyZHsaSq5yZu": 86200,
     "DArrMNHPsxDMyDEaxZfjgjkGJYYrCbxfn2QhaJy7mNSe": 6066,
     "DAxbLcfdRr6RvEtk7m8C7UndyiqfN7HK4CHhnJHTuELY": 4000,
     "DAybuqLD3E25CgSPG7jCwNVGvZgwZ4ZEUqbFPXkp4eR3": 200000,
@@ -228774,7 +233659,7 @@
     "DBGuoV4ZAYFUG7G6A6sW6cZBRUNnZzuyP71kzx3vXu8c": 2500,
     "DBJRHwrn1EWWxDcoPc4XeUqjRbyTzCFT9w6sUYb16Qmi": 267800,
     "DBJk2vGVnbxewg25DnPUYDyZViHHMxRKqr3um4FHk6sj": 9100,
-    "DBLmkjBDXPJ7prGabfuavCYbh3raXpRkPU9VtX9EeYPE": 537864,
+    "DBLmkjBDXPJ7prGabfuavCYbh3raXpRkPU9VtX9EeYPE": 977824,
     "DBRdiZeyJsR95ouMQyr8mbvN7StGeH5HwqWtu7scT6oa": 55000,
     "DBVwtkEZ4pTzWdo69o1fP5F7vKFggK7WSumWa5jKpEka": 50000,
     "DBk2U3rW3hGkNfTEWEfSYxmBcbL8R85JiDkrPQT8rCAP": 100,
@@ -228783,27 +233668,31 @@
     "DBt6iptLoPGvR2ve45GC6z9NDnjmWJ6EiGyDGLd8fucW": 100,
     "DBxbhSTujhjZSL3JAEF8amJVpDjXusWmYAJHDeFppF5j": 5000,
     "DCAaATibcg7eWGgTJCm9hRskyWPwcwHoyje9P4PP4LRU": 47000,
+    "DCBMEyhcgkfZsjBBZ1S3jqEGEbwwvZp52bJjfGdu6cq8": 5000,
     "DCCGwz3tWDGFspNGane8SEBBuibjxWmdMMjVb7R7Kobi": 948,
     "DCEszzSPAW9yBa4JZQ7YP7iWvddUS4AgM1cgAQp6QtqM": 52600,
+    "DCFz4R3n9aMYYGdSTBMop8zzsZDM9FedSNd58xfzjugv": 3100,
     "DCJqdCh7fB65h6dE8r2YZPAarcuTQqe1RoAjkn7DQ3bf": 31000,
     "DCJvabnXCBBY1ou6SZNkLyxWSgX5HR6hdXcfrpxGRVWF": 8500,
     "DCKhoCdxBNRK6SoQxtciXzY1vFhwpBZoic5fFHB1Wnhn": 5340,
     "DCNCttbcJCnGCLS9c6ZRscCoBHNGEKwLm8Z3H8k76aK2": 500,
     "DCNJ6BdeycQfyAvSP8oihZoDDiB9FQfz1rj9k8SXjVEc": 5000,
+    "DCQaEB5YwEYK6grpfoLF5AnSgHbJmqoNANAdjT6sMuNE": 5500,
     "DCQsvvxkrJEMkyYfnJEZZfBBW9dGrwfm3rkC6BDijf3G": 100,
     "DCSNpCp3xued1Jg21iWGtpabunpNCSgSB87fcuRZAUiJ": 2000,
     "DCWD8FfeK6y5TXmWrX6soquZNoKBxpEwEjS7s7Lby7Hf": 2000,
     "DCXi3hPojVoYsmfo1r1tesPoLCpiD5RCXAsmLLaTgpCy": 654,
     "DCYiKLZRp6EZz8Yt5wSYVnLsXrkyFY7d3gKyY5qSX8ve": 8000,
     "DCZLmPbHwBUVEaHSVYjkqgzxPv55TxeQcCWmWhXE5hm2": 50000,
+    "DCZvFtWhex4rxtsUCTg2yq9cLe147jjQm87jr8tpmaUo": 2000,
     "DCdv9SboYBGKafRMV6yH7ZrETemdfxNrVnmL7EYvCq9x": 1000,
     "DChkimXzHHon9uDbXhW9EawL8LavMJukrBoU3czSj7AT": 12000,
+    "DCiZuMNqBTzcnvbEdhG1DikjoGqhLwjSYNxqvMWCNfJV": 1000,
     "DCjMFA7zirobcB1YUbgjwTUUVktXnApJpZ612oWbKeQ4": 400,
     "DCpn5YcZRd1PQUjETZPUmotVEai6rfww9thBn8mSutt1": 5000,
     "DCsxXEJDFTeQTCkPFtSZokbCEz5okGMBt83zrpTpVrhS": 4000,
     "DCybqyxgNHNHkmYGJbQJff1Py9fwBq4oi68HohYpAxhY": 900,
     "DCymSMz6nCB4UjF7FvLKxxiavRNun1g28JJNex7d8Qk2": 5000,
-    "DD16YV3V7z1Dgwuoa2DN6oHKoTxNNvhW85UpUMsT97vk": 44939,
     "DD1vov57AioUaQeqaq4xpMzBt4bnuyWsJNn9yLR5NdRN": 5000,
     "DD1zoWfdyEGn2AQWvjojo7fG63jp5KKtbJfQm2LCxFi1": 6000,
     "DD2FiWxiEbU85ywbMCg45oM35EsKvSTY51GUnheVo9c6": 700,
@@ -228811,7 +233700,7 @@
     "DD6JxRUwYr2Brpg2GPwn1WbPVVuBUzfzzTCkEKtkLLEx": 30000,
     "DD72fJ6H9YpvfVs8at3kZ5u4SBHy3i2Wwj5Evexjvex3": 28127,
     "DDBJAcykT7DiDxnVrbJ9rGh9MmK4aKCsHcmDqYcYNV3R": 9000,
-    "DDEJHMthS9yGSEntbq6u5FzgLvBzqVf5rExVgT9SpRiE": 41418,
+    "DDEJHMthS9yGSEntbq6u5FzgLvBzqVf5rExVgT9SpRiE": 27918,
     "DDJYfuJpCfLW9avoQDwqWYgVAi9iVbFjPVKaEFt68kK": 2022,
     "DDRJMzh7kNgKCQjLpnrUAbzJ1JYBtof6MKiQGc5wyiEo": 66900,
     "DDRy81qJeA587FkWBdBMhPBHncxATL3Ej5PoAUiimbrN": 148404,
@@ -228840,7 +233729,7 @@
     "DEa8XfLrdhu3yQYNFWpbSqAsFsidxVphA8XGeYWegK91": 7102,
     "DEbHnZMcBaSxKMko1Td5x9da4BzjHhmhA2Db2LMvoR5n": 754,
     "DEcPg2CipZ5nNZgQmMEbhx1RN3fHFA5StSqPwmmdfsGc": 5000,
-    "DEdXxpCS8eBQesr8kF8QUU4X5ca9gqzVSM4TdPUtLopE": 11201,
+    "DEdXxpCS8eBQesr8kF8QUU4X5ca9gqzVSM4TdPUtLopE": 9901,
     "DEekXGVbgqjxp5WxDxJ13qiPx55TKZ52PK3XYe5dRdxE": 48000,
     "DEfiJtvyf5D8kXVYB8yrbyzZNcNNHJvqtE2jJt81E5R6": 700000,
     "DEfp8wREb7nwM8iMidtiuT7Vh6hFAbn5LXQEy4L7hFXD": 959,
@@ -228856,7 +233745,7 @@
     "DFB7uTEt2i8WkR2FWWLgrrUDYvQt3739xxLo1k4SGEP6": 80000,
     "DFF2RPNFwLMUHUooH2JGZRY3zjVmWfCXAKk7rzg7bUdV": 3100,
     "DFGJfKfpEmSGGsFBCyuvruEiA2jroM1KfDEdvsZ16c22": 1000,
-    "DFPCs2vNtQ22KGRnBbWorwaQkt2sV4QF5dbaNJQVEe4h": 3297700,
+    "DFPCs2vNtQ22KGRnBbWorwaQkt2sV4QF5dbaNJQVEe4h": 3303200,
     "DFQ3eHm9GCRsvhtkZMup8sd4WcuQ3wsEr79JpqtyAfzy": 108440,
     "DFQHfC77nfNDFM8KpsCed64u89uviDAeHUb1Xs87HrM3": 300,
     "DFSeJHpkSp8ZrUaFahbjfxeQbvwhvoTUQRxJq55mYR1Q": 5340,
@@ -228864,10 +233753,10 @@
     "DFTyz5GP4dnNY2BU4rPHKTRrjMDuKmZ9FmwyV9F15ZBX": 200,
     "DFUUoRUiwgH1VFy9SSmBqpEMuoNVJLzDJasNJqsiRMwd": 12500,
     "DFXnnwbu6RUuGhfVt4t4rkcJ33pHeBusrFQVNyqzGq8g": 100,
-    "DFZThTt6rCR8FnnRhxAbqNdp2arVrrMkhT9apRycjiAp": 465333,
+    "DFZThTt6rCR8FnnRhxAbqNdp2arVrrMkhT9apRycjiAp": 399733,
     "DFZyRwW8CQGsPeuDjKuis5cXhgw8MwufxRGJRGueMez3": 3000,
     "DFcaZ7o6Eu7osnATKmZZnduBxEPFtWUibEn5CA84SykG": 20640,
-    "DFe3m1bLsNxhdCR8KoFCGG2d3VTLgLfqe6cioXZ1HpZL": 158400,
+    "DFe3m1bLsNxhdCR8KoFCGG2d3VTLgLfqe6cioXZ1HpZL": 176400,
     "DFe3m1bLsNxhdCR8KoFCGG2d3VYgLfqe6cioXZ1HpZL": 54500,
     "DFeTU71v4cpknhiG53PYBn6fKuVHWJNJ3CnycufHsDLe": 5035,
     "DFfdrBdgLin8J8PXpzopBRBuLCge6bYuPLhdQBAd6aPY": 18836,
@@ -228876,7 +233765,7 @@
     "DFnQ5TBzH9UnG8T1W7uUkKF9wxJSFv4WJX5V75HsK4Gw": 200,
     "DFoCpwLGVQSqgQJYy3ou7CpNCiB2nkPRfDDVG9favhyh": 502,
     "DFogUnHomjGtvMRHTceLsBYv14LwiRYgwKQA9skaoJZd": 58100,
-    "DFuTedSKoF7CjpxHQThj7ery5qfZ1DveH7WJb5hbgJUd": 7500,
+    "DFuTedSKoF7CjpxHQThj7ery5qfZ1DveH7WJb5hbgJUd": 7600,
     "DG6jjoSJsSMKK34RPnGER8CjbPktMkFkEtPFnZCQup5u": 50000,
     "DG7qPrCecsU3sPEyGu9MADqcXBAtj5HiZHwJGCaWoKe7": 1360,
     "DGCwzeNsynG3X4tTLqLGFXhgeXd9Sz1imAiJPeU54omH": 5600,
@@ -228884,7 +233773,7 @@
     "DGLUP65xWE9wgpvWXhr4Gdb4PHkVuVGtdycFPPQZwBAN": 1000,
     "DGNu3XMJ88dEz8nCR2sS1iafgtKvEpJzzdH2bmTddij1": 30100,
     "DGP1rCJnwiWv3MEi9d6cxrnxtiMN5c3vU7rf8TDxHgyh": 23000,
-    "DGStWvbFoarKRQkrQsXWXGWDTWYXa26EtBvaGDToMKBv": 36600,
+    "DGStWvbFoarKRQkrQsXWXGWDTWYXa26EtBvaGDToMKBv": 62100,
     "DGVn3MBeGVVYTK3u6vAsF4JPkQMLjytQ4C2NRFbiZ7HZ": 40000,
     "DGVngzFwrosY21WjEbk6Bmh33ojRivH5WxqJmaCV9ys6": 326900,
     "DGWxDuxFg2ZsRUtge3nDDbghgo1wSUrVBgwYG287zgiT": 5000,
@@ -228907,11 +233796,13 @@
     "DGzUYRfppHnBXrucLmoBVGB9NRfUxwwLYAgYcuV6oJrs": 10400,
     "DH1BYPt2eiF3XBRY32a7j4f6bRRbYkEVLbNYYWqJnc1q": 2000,
     "DH4umUb9dk8hXJKaqn9H3CJCDfS5XWs9rXd7Xz2wgWau": 25000,
+    "DH5cm6ooLLo8KYsyTDeeDJLkg1MKKFUjw1psFndNnFab": 5500,
     "DH8jNRLLbor2ZkBzLSsCXSj7UMDsDB4yef44bjPVMg4": 19602,
     "DHAAb7WvLVH5BhwTFNw2cdVvmqNevdw2CvqaRz9v9KAa": 17200,
     "DHBkX63ZqaW67X66uzeiVonihpD1xVbLEQvziaYBJkgv": 4800,
-    "DHDEih61AttHtrhfvaASmcPQyrGo3uvFSeWCgVtkYAGC": 120000,
+    "DHDEih61AttHtrhfvaASmcPQyrGo3uvFSeWCgVtkYAGC": 220000,
     "DHFDhnG6GsY3amhmzvC4YPhJCgnyfQqP2EDC8UtWkWPG": 240000,
+    "DHG8iC1H36R8sd6yFveZo3hHsnSrJ2fPZ8vARJ2NW43H": 38000,
     "DHGQWRW3rDcbfY81qG1mhSe8v9MUTCXEQUChKgGYtdiV": 30700,
     "DHLwoxmeBy3fcu1mRjC3uqjokouuxyC2A37E5MJ18MHZ": 700,
     "DHT5PRxN3SqzfYz8Qxj51c6bmkgD3cY4oQvehYPfhHXD": 20000,
@@ -228919,11 +233810,13 @@
     "DHjSHLZhCiZmw2YaVtPenxnXDYaHJ63sNi8XxYAyHAQz": 190000,
     "DHkm6HRo4WBGiEZ67Nx2hxD6VQwQ29tL5HU7EsjjEXNh": 500,
     "DHn5QfFRN9HP6u6WYvtGycJuTMkz4iHooJJEo3XrR31Y": 200,
+    "DHqxi6Mt5N85q3wXnKBUkZKAinkaVFoLZkZNmvMPhpsR": 49600,
     "DHtKMHPHa2iQyZT8m3NDQV85WfAP1L6yuL9ZTL2gR182": 6000,
-    "DHzBGVeTV4qE7iv6eFLXmTNsS8Zxu69j9vhM3ma2DGXi": 15000,
-    "DHzG5RPjQuBrm6Qm59Cq2mwuVXSPAGhVgsui5TFXrafT": 499000,
+    "DHzBGVeTV4qE7iv6eFLXmTNsS8Zxu69j9vhM3ma2DGXi": 15101,
+    "DHzG5RPjQuBrm6Qm59Cq2mwuVXSPAGhVgsui5TFXrafT": 461500,
     "DHzhL2GCrNesCkMAwsQ6VmLbofqKr4noE8ZiMiBN3whF": 500,
     "DJ16K2arVqEaFEw8bDFjqTh2WioT9SvAdn9nT4jFB7tv": 5000,
+    "DJ8GtMrbaFg8Nwbi9xB31smCSPnV6E4DMibrE1o91tq": 89000,
     "DJ9pv9hXtenKVcFh6NXTEBwx3yRRBhrrwyPPZaGwdWyo": 242,
     "DJDxgPHyQJUsgV2Zgy4XYBjG7nM5EfPL9S4ChzYyWnLa": 5055,
     "DJEpT3i6WkLLyhUAwrvC3DrMKCVyVaEUUkpQxbVk8J38": 700,
@@ -228933,6 +233826,7 @@
     "DJKQQr9ejV2dVb3SMduUARor19pq9fcHvMCoa68WnA4H": 1000,
     "DJMAQjfKR5A6WWx6jDh6JLr5D43Rhwb1n8wNMguaBeb7": 36400,
     "DJMGKvpKfnVEYBCvZ6uQGitxZobvxkAQoCpxHYb7nmDp": 4272,
+    "DJR2pZEr1GQcyyprHKjSqBHhJDgBTmA1Qhh1VCKHdWxF": 5000,
     "DJTXEoVRKcmcuNBgWCDicYajJjHiQKXYyEEFjcEWbvF4": 2800,
     "DJUHWRNKw8n6Uk9VmG3nFw9wGWETX7v533448meZnUpc": 288000,
     "DJW2uoRRFA39XTDRFgUyUR4eFqQ3XR8U9R7mKRXgwcvJ": 5160,
@@ -228941,7 +233835,7 @@
     "DJbeAELiSug7Qy4NHNmVqsspR24cYvNkJR9XXsT6zgWV": 12375,
     "DJdXbYetEGNCGtTsfx2YbYcG6LPZWFsmqxkk8iNcHUPa": 4100,
     "DJdfYsxi8YHUY5ft9MTQpqtjVXfdGNJyWaN5YMTmRySB": 240,
-    "DJhdDv3wnaQggtLWfMBndn8AHzVw8iCo8TvHDiCe6abZ": 541681,
+    "DJhdDv3wnaQggtLWfMBndn8AHzVw8iCo8TvHDiCe6abZ": 548681,
     "DJiaucVk2hpftnCfxbE7hDpCHPNvPigQuDexzSTfJ1Cy": 200,
     "DJjXAWcUEyChafxfzCpwJepbbfQmz1pEYknXYebFsfpi": 8400,
     "DJjkMrWqMQuN4zpwQH6WKAughgCDQ4vA1EnWC7YUQTXZ": 2084,
@@ -228969,30 +233863,30 @@
     "DL5wNAKsJoPDwxN9RUj3bZdvBjPgUMAexbuipdo49EQ": 62600,
     "DL8mqmKvs2aKCgVBpN4gJg3gqN4yvmQUUsGvXcif56Xf": 6500,
     "DLGPc8MJ7UxLqvQbEzfpsvUyUAgZxFvBmCdmmyZ4a1ms": 49700,
-    "DLKscoqHqKHkYNZe2edb8FRrScu2LZXoM4taVvpVLYAh": 10680,
     "DLMJANmZdiupZekKiocAHbTdzM8VLnESu8x9fZ1a3nBU": 1000,
+    "DLNPnYuLVgp7C93mLTSchAeoc4Rhn7bs1wRgZw7Xbj8y": 2000,
     "DLNWUeggyxehLCWGGTb4RY7ZxRV8QgMT7EZBNmDxh6cS": 21400,
+    "DLPCPuzfiX66Zfwh2yUxuv8hGdsHXV1UFMVuC8pgyMWo": 6600,
     "DLRJqnqfGaVWkyb9tmfA3ZbyPxuJ1Ui4XuQSGxsFun5e": 19100,
+    "DLWSqG3yGUwdVuexVCzqs5YT2vdchgy2TBUSH7AqsKh3": 41300,
     "DLYMEdGT8QJSvQTvbUkXt59aGiHbctDSyATa2ac7uzf5": 114602,
     "DLfZtZTgn6miyPdSHa5aiC3GTpYzibtTBLsf3oyPzoSK": 2022,
     "DLgWe8c4dBvLxvQfyC9Zvfhz7HMvjsbVtAqCxv9fLi1a": 4400,
     "DLhZfzjUaS9m1yQrNDg3tdrkjhCK55M4EcLMvEqzcQgy": 8500,
     "DLiijtQLwUQqpfBQLh1LBgiQ4eWPghji3WxZubWtvGyR": 41000,
     "DLiikWsy5krZLFXFQEi97F8qMCcjaFWzKxdXHqMjTThX": 5000,
-    "DLiuQaM8r8YF3S97hFPY4gKosEnYpnUsSRSQKn2353NW": 81828,
+    "DLiuQaM8r8YF3S97hFPY4gKosEnYpnUsSRSQKn2353NW": 65028,
     "DLkcoSxyyw8hVoz38xJd5inC3ywspwbB8haDKhM3HwBs": 1000,
     "DLvGW8MadWPvuXX5seftxWxRAmcvMkxJVQpk3NZwqMHP": 1000,
-    "DLwCMQz2uA5iPfA5nXeJavMetxiFLibJcasbCqzZYsqm": 1700,
-    "DLwZUL5TANti8hivGt5QXjbKMZm9RLDCddCTPkHaJpEo": 22000,
+    "DLwCMQz2uA5iPfA5nXeJavMetxiFLibJcasbCqzZYsqm": 5700,
     "DLzUotXBvn258Q77PkVvM6TZj2Fu3Yovzta3UaEE7Esr": 847,
     "DMELPtx8UfeD7yKsn3JVBRqDaXHogbx1CDVVS7wApB5A": 23860,
     "DMGYQcSpavsaQGdn5mRMRzYYGrKA8cSZTPTp1PBVDXDF": 23220,
     "DMGz99HmXuhqCZg6p8RB8E9nACwuWRLT3DopB1RpX25a": 100900,
-    "DMJC2gcNUDcLwGrojPY426VNwnnWcRAk7gYn3ecBAgYG": 68481,
-    "DMU5kYgUhQXqg5AgbcU2ZnnEznSadghu9Z331Z4WkaEE": 15000,
+    "DMJC2gcNUDcLwGrojPY426VNwnnWcRAk7gYn3ecBAgYG": 73821,
+    "DMUyfRahs4pyfeztpbJMnx5fLJMd2ZfAxAH9VUCAivRB": 4000,
     "DMY9jTXpTrfS3wZV9KNw9mTNv3jzJhVGXff4QH7jh4ts": 5160,
     "DMdwbRtfNxts5NLetGyhfAnTUSyZkhxro1U8p2hfHPxW": 51262,
-    "DMe81YrJ7XTFz39C6MjTHBKzazaaw7BsU1L2cRQYcdtf": 7272,
     "DMgaJPy5RGEdrtmgV6nSZ5NEHqp3Bt3nYZNDxM6vXmQ8": 2000,
     "DMhE5w76w2t7FVKeNTke4pmCETjrqjH3rUi4X7QNzvKF": 890,
     "DMxmMpabhMp3LVyFAoaZZbVJRcgEDkARZoShRgykZTCD": 2000,
@@ -229000,8 +233894,10 @@
     "DN3nQYmCBnY8TtCxHRGwTprpLvwFJTvAVzNbHWEtXgp3": 3000,
     "DN3q9q9fUaUo8eRPGfHB3LYbSXNRmWPePzBNGrcQw5xm": 80000,
     "DNApKmVRF5h1k2cY2Av77UDzSEBDPvGk5Z7U5rgPGTyS": 809,
+    "DNBQaGK6AyymxaSEifgojkaBqcC48krjgbYBxwS4LU9g": 550,
     "DNELF3hdzx755R187BS2ePEHzt84KEJnnMvypQLd215Q": 5000,
     "DNEh5drqMkQNceteAVxnbgySmtSC3vJen4K5rdUwPeiS": 5000,
+    "DNFzgDxRocw48mf9gdU6EMa7TS8svmatK4Qua5Rs9aca": 122760,
     "DNHfETqWRekkBrgkJL4AvmsBvy7hKmZp2ay81PqFm4zt": 5000,
     "DNJh2LVeFjMcQ9HnZRPuTVkpi5aSbaWWbWfC8GEF64cA": 10230,
     "DNNFLWJcsm3h46yMiLXp4jDtehi8jazonRQFyyiTreAt": 35000,
@@ -229009,7 +233905,7 @@
     "DNPoi1puGd89tvrYg7uQ1QuTWLKAkfbdw5bXh3KdBkQj": 12100,
     "DNT99wXMAFB9ocAWsYV5eZVaTR16YsP9Na3863XLwoNk": 5000,
     "DNVLPazqezf8ATHfH2hKJdQVRy3Xeoxsu6C3kqxjU9nv": 10000,
-    "DNVXjUbPER1NVYQgtaEgCr3dgHQLFihsfUgTWaeLMVRY": 77194,
+    "DNVXjUbPER1NVYQgtaEgCr3dgHQLFihsfUgTWaeLMVRY": 47894,
     "DNVXjUbPER1NVYQgtaEgCrdgHQLFihsfUgTWaeLMVRY": 3000,
     "DNhX1UjLmb5qAtrzautxfPfxRhZZEP5g1mPsXkMvvTxi": 800000,
     "DNi6JubiDYVoJgRKy9iov4qfAxhyo7oW9XCdt25VPprV": 15500,
@@ -229027,8 +233923,9 @@
     "DPTxiujZYfSBCfmR8FGWEDeWj42CTacHCBQuKbMzoJDd": 20000,
     "DPWP9rXnkruPwJzLfCHPoq4b4JM2emzxCXXma3C9oTev": 500,
     "DPY63t3b6rkm7uCSoS6NKkb9kaNfVJJE4fSyRf9F4gGS": 723,
-    "DPaguFRWuF523a7BMq6rtc9eaT8T83QkEwRTApwCK7Nv": 426756,
+    "DPaguFRWuF523a7BMq6rtc9eaT8T83QkEwRTApwCK7Nv": 466316,
     "DPgypujTvise8zfwHWtN6GygG9wZDmeAxBWJnuH4Ee1H": 5500,
+    "DPh1BXgzxW14HEpETqLxGcGfmK6kyTnLBE6kvVefuECU": 5000,
     "DPiTWKjkXy8fgmjA14gsvv7HLXKW3RmV7NhmRFR9iU48": 1000,
     "DPiYdWVRfaSBQEqGnY7TEDoxJ3Uq33KN9Utiw3bmiGet": 3000,
     "DPkQLpQFMFUoABMwiPGSWJtTeq5mSBQvR5dBKvCtteYS": 58000,
@@ -229043,7 +233940,7 @@
     "DQDo6Hube7QX3BMAiTcSALTBGJ4N5GiaZQjtSaMmAPPH": 30000,
     "DQERsSKcjMr91RFws7TYiugCnCURjM5LuFN33kW5zHGC": 1300,
     "DQMzPpPK7PJRxYmDxS8CQZYDfJevsv4cPgES9hyNs2UB": 100,
-    "DQR2XbSSVP6TxmMfKR3gueHYVmYkZjs7Fy5wjmNShhTL": 17450,
+    "DQR2XbSSVP6TxmMfKR3gueHYVmYkZjs7Fy5wjmNShhTL": 13450,
     "DQUYD4C2B1oxg1hLmzqeYQZi51iefMFe31wXGbdNArpk": 17000,
     "DQUb1av7GSFbZTxpY9oPFu7tfhxStaefo3RRpC4SSp2C": 76584,
     "DQWWLMZJbYWLLGqbVehE2w94M9NKXCnxb3qFELmGEDyp": 1000,
@@ -229059,18 +233956,18 @@
     "DQq3ypuWHuifpDyFFwunPHr4EVb1gvDRweXPcXBVFHUt": 78000,
     "DQqgNnALPBn8ECz8NKHkmFhgSpBYEZqBN5m6EyTdSx2v": 744580,
     "DQtZAWg7QRQz4757yjs46Nns62mnrU9Jo5gvKRaimv5b": 100,
-    "DR1E2xwdq1A2Uc21xdaF6rahNjvBjD6yBqjoL1vMum9F": 510530,
+    "DR1E2xwdq1A2Uc21xdaF6rahNjvBjD6yBqjoL1vMum9F": 724230,
     "DRBjPoMNNvB4H9JH9toEVqR43MUGULAZvEstQZTxTQcR": 500,
     "DRC8eSKvb1HJwKzAj5kEoJtTSv6AqxkWxtQgSp5vYd7a": 17400,
-    "DRCWY7my6Saf5RwJXvqjsgLMcyN4itp7KW6LrTTGh6rB": 288186,
+    "DRCWY7my6Saf5RwJXvqjsgLMcyN4itp7KW6LrTTGh6rB": 315000,
     "DRDnvkiDmrt4ixSFcaM2TDTXHSF9FacbgaDGzuR94KKN": 100,
     "DRE2DhJ2oWxNhFM1w5wwN9tP9tx7k7g3711AotceEYcD": 6600,
     "DRJFquBjReKiQJ54Ubpt1yK7S3otxxmgqvm8stdimWbm": 200,
-    "DRKf8gsuDSXNhrfbS2PCAKL6eCm41v3EDQ3BhtjnMZTX": 25300,
+    "DRKf8gsuDSXNhrfbS2PCAKL6eCm41v3EDQ3BhtjnMZTX": 123300,
     "DRVBDxHuZanVRoZKsTgv487unDQfMJmaTYrVFe8pGeTZ": 7118,
     "DRWwbHbvrT77Tz4ExoHRFCofoGXFUuuMESsLwwsiPwX6": 1000,
     "DRhhFMU5Rjq3Yt1TVbsr3NNS9m29DG8thUAyWZBh11mx": 3100,
-    "DRoMwynmETi7THemxPsFJpfMsQH3wsNBtadqT4D1gFua": 97408,
+    "DRoMwynmETi7THemxPsFJpfMsQH3wsNBtadqT4D1gFua": 78908,
     "DRqSuSRZRf6tV1tTugLykw71iQUpTeve8HAaEQzwihCJ": 1011,
     "DRtJPhMDPUcQgpRCViqZ8rtXipijwFj7RVPPAu8sd92E": 1400,
     "DRuGhpCzuQu2UDRcWr34YuWNAMzVvL3YtxMVFFjRxWF7": 5000,
@@ -229078,6 +233975,7 @@
     "DRwus9pnaoxSuyfPdLWwcB8tFxxqaT69XJrBWZM7DRyC": 116999,
     "DRz5NbvgCMxLVGEmobpDcmeZE1y2QFwqBTihtD6jN58q": 640,
     "DS3TMtNSVJzYym2Ae31QQwgr3YecxyZu5pdLw2WHE7gL": 6000,
+    "DSAm1ien31Q68edmnuUhu9hBc2KqusQ1wb5otoKYs8rS": 3500,
     "DSGBR6LJW5c4rmJqREttAb74qLVmEAvVJSTV3MvmKmqF": 11000,
     "DSMs5iHxUAsX9ZMrMZvk6gSbq9DWJz4eHFXkAAmDqF1E": 2000,
     "DSPRspzHU4TJAK6Mi2pBYq3thZ8j5XGkymdh6ooovDRb": 10000,
@@ -229092,7 +233990,9 @@
     "DSwtgKaCfnJm1AS63NRXMgEkqbUqsMDmS5tCocmJLyLD": 1000,
     "DSynzYA3qeLmgnHmzCKCnHh8wbgtqaRwiyW4L4eHP854": 41000,
     "DT6L48tSf8ycSDL2mcMZcCSSt2BQYVAHTxf3emhtM6FD": 5000,
+    "DT7VkfGLfCyqusKZ6Ebq83TYmXgpYDq6tntBXtn6ogSX": 24400,
     "DT8dyEigbFpRcTyU8dfyt73xWBto6kyTk7FqA3P3iLeT": 3300,
+    "DTAou8BQggfUEW46C1tv5tGS6sfPRdrYA9oyJx7caDoL": 6000,
     "DTBY9Awtt2VxKe2ZNyzodsZf85bD7MQ6W6EXEcMqcRkw": 55800,
     "DTFf1DpuDRVaRdYM3UhbZh3UAprHQwhnL3VL9kdGYUfE": 5000,
     "DTGeES5TzVk7GY6Qg5SN2n8cFmBp966QgPKQ1A5sXSWk": 1430,
@@ -229113,7 +234013,7 @@
     "DU5uhw73NPWHBcjkNMjQ4RNMykyUHj2DAPPjna96RuVu": 5000,
     "DU64FnqHtGE3pf5qAD29gciJ3ieDRasF5gP8FC7JkVcZ": 20000,
     "DUFMjaX8hiL9YKEz5TyuzxVaLwMkE2QzQcyo8dwAPHPg": 100,
-    "DUFUfZ8cWvM1qg961XJS42M7TyvdbQG6Nmvm25focsBs": 149284,
+    "DUFUfZ8cWvM1qg961XJS42M7TyvdbQG6Nmvm25focsBs": 153914,
     "DUKhaRhUpUin9zLGryhtjBCM1iC7wXMneDPsE89W18es": 2000,
     "DUPgJfcASRS8ZuvY9cXfEEpYYPa4PK39vn6vNveiCbF3": 7164,
     "DUSroJScaUE64Z5poFFEAy252wkh7qkr5cjg1F9st79H": 5500,
@@ -229147,17 +234047,18 @@
     "DVZrmkJZUXjxsxrivCKP1Xgc1F9U2Msw9J7KfRkGayBW": 18800,
     "DVbzzqBwA2zw3s37wNccfsSKTb5qAVmrJ3SdttFVM1va": 100,
     "DVi1FPS9bASZxRvu59yvdubiVrdpg1KtF6HUxtiRwBR4": 84118,
-    "DViP9VTR9FPMkv5aF6yDa8ZLszrQxEQz81MBvfzXGq6q": 89385,
+    "DViP9VTR9FPMkv5aF6yDa8ZLszrQxEQz81MBvfzXGq6q": 139385,
     "DVisTP18Co7i4AF5fD1cbcrskc99w4egiJL3Kco6fm9V": 10000,
+    "DVnRGrUieJe722cCWNg4YKEoLZoGv5WpFXMyNqBn2yF3": 4000,
     "DVsxY8c21iTF8cyEsFnLAeZFxdFEYp1zcFp3QAuc9bjU": 20000,
     "DVvYW98NVTjyprnpyacWo1YLjjbKJ74E1SS4YwSEM97b": 3000,
-    "DVyPfPvV1cimVXDQL8LkCywduoJS7qcP9b8hskUjupt7": 15000,
+    "DVyPfPvV1cimVXDQL8LkCywduoJS7qcP9b8hskUjupt7": 46000,
     "DW2VmWJgxNLoiMXF6TWPvv3kvwL9wEQVUwTfoi6ywn8": 10000,
     "DW3TgTBGcvxVP5FbQUQn4zAj9cJRFaAYuJbAKPXsp6TP": 2000,
     "DW3hQgc4urehb5mUwBJEAC1reUjYBcs6Y8wpKeARgVVE": 100,
     "DW5kQ4nTTYeHHHxxhRNNSExrmRw1hqadNRrUEt2apz56": 102000,
     "DW6w68BbXeiQNeR371on6mTUWWPzN3vNCDvzU7brAS1D": 50000,
-    "DWEm7Cg8vdfBbARdT9X5XMFTHYD3U2hUbzeYe5Et1k3X": 53400,
+    "DWEm7Cg8vdfBbARdT9X5XMFTHYD3U2hUbzeYe5Et1k3X": 63400,
     "DWKcsbq3Ff1UHE1ijnqQ4twnPbM4x9FEVdXt2PXSHPTM": 5000,
     "DWKtmS3MDXHGH6ZoHEcCuBDQu91EEqRt2YFWfeHX396c": 1000,
     "DWbeopRtzZa7vZysTEer59xpPewADmEfUJvJJsvoobLW": 27000,
@@ -229170,17 +234071,18 @@
     "DWm8rE6QBpBs3AA4MuMdKJdJ6VRL8Kwe9FgedSV3TFS1": 5000,
     "DWn2bX44fqASbdH5sAF38X2yVzXbKVdg3wjEg4q6Ctix": 250,
     "DWrQgZmR3PV9bs59dXobUsAikXDKQBs8D4WEhx2a2ZA2": 60000,
-    "DX29HQoRp2JNPtcmuGeXsk6k6JXzAQnrWM4W4k79DRXB": 86818,
+    "DX29HQoRp2JNPtcmuGeXsk6k6JXzAQnrWM4W4k79DRXB": 207818,
     "DX62DSQHuZuFPnNcDRzoDTSwUtTxaFYKmofYagxmRZM2": 5000,
-    "DX7zXwimYNf7DmWs2yevKCWc3b5N1Jj7cMnwaNXDJs33": 36404,
+    "DX7zXwimYNf7DmWs2yevKCWc3b5N1Jj7cMnwaNXDJs33": 41304,
     "DXC6fkwcndoAQRMNhARcnZyuPwGzkSCvQuyVwwhJjE83": 101004,
     "DXDsX54ZEpjTF6drmf8pXH22u5PFxWRSsZ7NRNxxib6A": 54000,
     "DXLitck9TxYdLkCDPcPWFQswHEd68sc5J5azrL1R41eS": 1000,
+    "DXPtyJvh9GdGjxusgs11xxizZWrPipQfzDEuKxpCRgzv": 5000,
     "DXQ6RVpZati3WkDrWLCKRJmLYT95KoUATZqiWzC67rRU": 6000,
     "DXRXh9dzkHBaDi8bsbTvh7VLUcpMLtzd8LyKbKB2k6CZ": 19856,
     "DXUQgyc7dkBc8cfeU1YnY1K69FyfpuZrCxP7SY97kq79": 5115,
     "DXbJwiX5kPd6uPBsUTA3TjZRT18wF7v3Knc3ayJrUT5k": 5000,
-    "DXhxb4YLk58617jm4jCxyr6MHBVgTfbEpjMdJT6Nksse": 4500,
+    "DXhxb4YLk58617jm4jCxyr6MHBVgTfbEpjMdJT6Nksse": 9500,
     "DXjtFmN3PuS4jpFb5RcUR5XsYxihdThR1L8xSWEv1Exu": 2084,
     "DXkbD14aL9vrHvtVSMy4GKukauDp9WyDSoD1TeU9zNxY": 300,
     "DXnjrWS1iZy54MQL6xL5XXvLyhpxd9fNrx8itr34eFJ": 1332,
@@ -229198,21 +234100,21 @@
     "DYAkw9pNz1CXyeiCHq2DttNxSsvR5Su2Cf3KfFn2FqvU": 314,
     "DYCMXiq17STb2aLYbiQBe6QHyYsmt4bCeFb6XSSurVjT": 5000,
     "DYCbWjuTbypncuBWxnqQk3CpGZuq8nDQKfwSVw5tMEsF": 5800,
-    "DYECCMqtKw2ZsMosDUCTHpz7KcTgmczG7NnWJrzN82bb": 10000,
     "DYJFZQWLThpRdcnuZiNFVtT39EdurqRSLNJGRxgKcyWE": 10000,
     "DYQvg3inpFPTyPxYRyPnQgPjpZhmjVyiLbujDAqYHR3K": 500,
     "DYVZAkfswqrnbtRiSLEZDCUbKzJ1vPVx1MpuKpdQmDx6": 200,
     "DYZbgADF5TDtSVRoEVBFry3iTcRbBXEN9N2Xbf5hXDDP": 10500,
     "DYZt5dAeuiFJbg4p5NfccnUPkNhn424fsFhkAWB94yzr": 4300,
     "DYay5bWs768A86eEEHcjhmBgw61YQgPmptH6mpWZxTmi": 6500,
-    "DYbdYkEUsS2cQXjunUZhQ6bzRAwwJEZCtuosAVjBJESv": 50000,
+    "DYbdYkEUsS2cQXjunUZhQ6bzRAwwJEZCtuosAVjBJESv": 80000,
     "DYe6Y1sMHYcH1tYfSGmatWdJGA5v8Uwano9osy9JnoqQ": 7898,
     "DYguWf3Pa3GjYzCqPGMgtnRpeLYh3EG7jVYwbM9XyjHy": 2000,
     "DYvFR3fqbs6g1YRKtBstZxDKJ3N7C5hrQF9buDdznE4o": 14504,
     "DYyJsfuvHxSW75ZxkiidpWQWwW8nnSLbBi1ZowhExEEC": 500,
     "DYz9AKAV6mqcKjhWWYF94fcmLduM5iEat9E1M28crrZi": 100,
-    "DZCHM55ch5JFkXWKR4DfJBBpMAYG3qEAag9ZTxHDo7yi": 6100,
+    "DZCHM55ch5JFkXWKR4DfJBBpMAYG3qEAag9ZTxHDo7yi": 17100,
     "DZE2uwL1HgHpM7gjK4BP6k3YrP5MFchRcuwqUscwnEBK": 1011,
+    "DZJNH44ULjzgAiivVky6FTTxSZ11rbM1U4JuMdRE7fFn": 3500,
     "DZKWjT1igJgDtR8EWpdppoLUusbBD38XMYgcb5sDQU4C": 3400,
     "DZN7PPv4MNtcxLNxn8HqsECG6SfL5hgSrByzE5iG3Jph": 4900,
     "DZNrdiNVLJykqeCc6fN1pVzJQ2eeHQgiWybbCLtexqBh": 3000,
@@ -229220,6 +234122,7 @@
     "DZPKdfFkijxwockpsUXvR4m85XKDSx6bnix49cDj4mnN": 2000,
     "DZQ77pfge7k1MD1Aa2Z3ecG2WEss6DHMzj63sju5n66r": 9600,
     "DZRMmRENqbRbPyt37oRvySawi4kzd2S4suPKJvKRVLd8": 50000,
+    "DZSGoqzLvz9yP2wntM9LHXyTDeKhKd3icqwpn2E9w9RJ": 5000,
     "DZVRxoBXiJ3D9iLDkP2ckLyLU4k3Sq3gDKdwVeXkMQkK": 174200,
     "DZVtGJKNQEnK517qpg494czHBYKRbiCKMLNnEwHipzYn": 11354,
     "DZb9fjKFKnqF8rWwvy2GVs1NZTh5Sdr7i8naRDFCtfSG": 5255,
@@ -229232,13 +234135,13 @@
     "DZyeKARucnKFFDxVRJxjgDUdYp99ErSHWzc7rpnp6qiA": 21000,
     "Da1Ts3rhN9AsiFXuzV76vShZs4txwDKz8GRnShkrgh5h": 1000,
     "Da417FT5qEExMzmoLSdZb6AyVumVvUmv2FWJTBMS9Tm7": 1011,
-    "Da8jJ2oNZLWR1me8esxV7uzFjAbakLPgZji6Q2AaBDjZ": 5480,
+    "Da8jJ2oNZLWR1me8esxV7uzFjAbakLPgZji6Q2AaBDjZ": 12516,
     "DaBHPL1WXY9Y7NjaN8m3TnZqnKHfBkJ25Sa5FDhYavwR": 6000,
     "DaD3NGbxz3KSh8suqNsduKDLEaJVbCzfivyoHyAC2TLW": 11900,
     "DaGBU1BhwPRoeKP2FJ8dnJGLmgk2qnyDpnMw6sJbzs9S": 15000,
     "DaTcEDmdyccXcTCo9CBDR3uJ2BCz5CVJnsxox8sbSpn9": 900,
     "DaVZiWLLcNwSoBqwFXFmfcVBA1W4TPX6tj4YrkWAXQcX": 500,
-    "DadDfUkRubGrJXKE8RCkn7qEk875kQhMJrYxpW77okwN": 21500,
+    "DadDfUkRubGrJXKE8RCkn7qEk875kQhMJrYxpW77okwN": 19500,
     "DadNLRV4cmaBNWbgg1DmfAZ45i6PQhE2ssTq5CUnZxwz": 1000,
     "Dado9YUiFCSYE89yrL4UmWqgUiGpzPUc8SaJSFPyPAaB": 5210,
     "Daf3v4HfAZKpTbypU8bnhjMEPUcbZjgyXSSwKrHwdvn4": 1011,
@@ -229254,15 +234157,17 @@
     "Db7heyXqddZ1Wjhw7nLRrUEcqRNwg6LLCAZz3ermFjoC": 5000,
     "Db8PwXKg4ZPVGKJwaZxeh7eWca9b6qUG2p3UNymqdneM": 100,
     "Db8bMSQK9dW155VtJ2EKVjTPuUoNPFd66KZy7DVpYuqM": 30000,
+    "Db9pMGf5SZohzPnGKAPPrJhCHnjosd2oVfEJqbu5u4EH": 16000,
     "DbAXhpvHqPp4UtuE3JndmhzkJcH7ooz1uNqXvyNAaxrd": 4000,
     "DbBcmc77PBuAxzk9HNwQefMrChkPLFJ81BEzrSSTayqv": 2500,
     "DbCTFckLKxfYhesAnKb8FmBqa6T8B2KUNnfMPdiqLA7V": 2900,
-    "DbFwizZSUyKi3cU6CQfaVv3SWNVDETYbbSoQoMZP34fP": 27400,
+    "DbFwizZSUyKi3cU6CQfaVv3SWNVDETYbbSoQoMZP34fP": 17400,
     "DbGVdD28ECoSRqC2q4GikgaMTYhYTRZDteBbrNfYew1j": 60000,
     "DbJB3G3io8Q5sAjQUHSfnT2aPE2CEsjAT7zHrtLGegdA": 236405,
     "DbMDmG7yWF7F2bCrN5T9eXWUawWyvyEJpZzgub8vHnof": 700,
     "DbNBoSVsjApSc7pBwu1QnmJd2N22a99u6WBrKSWudFMf": 17600,
     "DbYesivjEr2FkDRvCpyDajLHzCwaDv6UftQEqyXvDnzZ": 5000,
+    "DbYqm8Vn2gzBzZNZZeevpTznojjzzWBJ7WroK9cCQTmN": 15000,
     "DbfgcAXTaot6xBYBh68FzwkzDFp4fHzwqj1SnTNLGWi1": 100,
     "DbnRetn7fR8SRoW6whwg6dEF2igT6Ho3aRm9VLL1E6hC": 5055,
     "Dbq8dvA2KS7289qV7Rjakiy5YboVyMYmvAZoLt5katc9": 500,
@@ -229277,7 +234182,7 @@
     "DcBJ9rfvrKFmDNwZq6FhbVMym4wWYQHNTb4SJEPXNQVq": 15100,
     "DcDZSjRSzg1kHdrY92pSSa6d1ncPxZMFVgJGCK8mFgpy": 6000,
     "DcDsGh3BZgUSUxqkLUxaqooyT2txkXpLFW8Ux4SEp3cd": 110000,
-    "DcHXoX5ESWE42yFx283FHNY31XfpCtShKi4JaJknwKNp": 354700,
+    "DcHXoX5ESWE42yFx283FHNY31XfpCtShKi4JaJknwKNp": 461500,
     "DcHXoX5ESWE42yFx283FHNY31XfpCtShKi4JaJnwKNp": 1000,
     "DcHnaK2oiz95FVF1FsrUq6kHKnK5RCXshx2wVH6zF8kL": 45800,
     "DcMKt4y3F3EPH8noSHqzSpJfRHrBvKLJcn4yNw6z1iUd": 1000,
@@ -229286,12 +234191,13 @@
     "DcRLZMMZGu1ePV2nFVhavTuFtmCRN3JQXKgjKRs7QipH": 1200,
     "DcUqjnGNLJM4tJ4e9dqZ3KdyyDnir6fKDcq7o1gNCjRT": 5000,
     "DcXXMLEJABhMub8vuPCwpwafjzfSn7TrxFmm3ATxhA1M": 8000,
+    "DcaLuLYvU2dBbQWSPjgqM68camGHcTNmuyypbPGyBziq": 143616,
     "DceUfixpx61s5mBLzEmUaWVm1ekc9g3syaCRZwZKvaVg": 2200,
     "Dcf3oZkSpKVEX6wUFVvqSei4uG9cnoaQVi1LNSsBzdHi": 800,
     "DciyuhenkanMXTtRbjjuJ8cEtn4Bn4tRBFXr9EErHhCD": 5000,
     "DckiEPwTEaJ3vRBdsK6442BSdFKY266LzbbsHUevx4aS": 12500,
     "DcpB9hu7K412heDvgcq5csAsjdAVo87dztxwcvUY6wD8": 5000,
-    "DctCqreRwo7xs3y6Cs6eh5EY6ASLXANsD2XfyKQdpTYw": 32000,
+    "DctCqreRwo7xs3y6Cs6eh5EY6ASLXANsD2XfyKQdpTYw": 29000,
     "DctGDgmfJPvYrkJnM7Yg4B63kYdAseUdrCgu6SY934Q1": 2321753,
     "DctPETn9XucCmbdY9FCLtLX91X3ZkZ7K8AizjJUbV2gR": 100,
     "DcuxEvNseBoQ1u71ymLoH8VSK92CqUqpzkWbSZ25thb5": 3900,
@@ -229300,8 +234206,7 @@
     "DcyhGkWAiMDQeGYL7yM9anY9jkRHCdY8tsHLLcNrKVa4": 5000,
     "Dd3cLKFihmr3Ghyq2pQiF8FbtbVsQAaBQbjt5WCx9279": 7500,
     "Dd6F5GYtDzojeMKgXLzfHdFbR2Co2rVDD4zKmKZAeBud": 6100,
-    "Dd9BE74t2x95A4x59HSj1M8pip3MwDpNuG5CYyrhoRsf": 79900,
-    "DdA83THi8rrtMCT8323qr1QkuCvMMhq26CCNjP7UQ29g": 50000,
+    "Dd9BE74t2x95A4x59HSj1M8pip3MwDpNuG5CYyrhoRsf": 8900,
     "DdBWMGasWKDJSxp1pnZR8hMP2oyH9bJJ6sgRLr7cQhR7": 2100,
     "DdDfd6DJRFDFJRJyhYPoAW7MZWpmGBkuxDAwxtygyFKL": 52600,
     "DdFHgqqfLntCSfGDq7JdDhzR2rAXmRkCD2Lg4uYtSGVx": 20000,
@@ -229322,12 +234227,13 @@
     "DdvoV1drb93DiKsz7x6vwiMBaFkiiUTorTPYwND3BmQ": 157850,
     "DdwPN7QhRJUoRYXKB5NqzgHhGNmXSjqviHn2WAbHQk2r": 2004,
     "DdyU6AsnJV6vLAYBE495DBg6BsfYX8n1VhuqVkiJRTEB": 200,
-    "De4BSfqAk7Hz9AMYaUxycKWwrYnm4hVPNfvZy4DSNDkS": 37500,
+    "De4BSfqAk7Hz9AMYaUxycKWwrYnm4hVPNfvZy4DSNDkS": 23500,
     "DeEcKCfYUmb7qL6wqZCJXuQYGcZNzHmP7tWF4FGt6NdV": 20000,
     "DeHUo3hZQwT69pSguy4JfhyZURSo2otU6n4WVd93r2P6": 10000,
     "DeSRj3YBtfECLGMWv1B1MoowknNRitZUPQW5SKBpquAu": 100280,
+    "DeVChmrZqDf8zNEjX7ZSyjtNhFGZWC3FZcQDTP5H2gst": 90001,
     "DeX9MzqdgPWhaFZbFxqQBrLgX4Vnc5c2orsFRMQyzsir": 10000,
-    "DeXLKa1WMxZFVs3fXzJxw72iEGEwAGCQ1CQkrEYAPjw7": 161000,
+    "DeXLKa1WMxZFVs3fXzJxw72iEGEwAGCQ1CQkrEYAPjw7": 108200,
     "DeZ1W5fYrJmCjf6cpSxGGkqNHmX4hCmmax7GRa5cpSQX": 27000,
     "Deb5evbD3oZ11AsZqn6JXovVfjvPbyBEfG5ajvsdsvzf": 125568,
     "DeeUup47S7B5rjfmw1oCXdgQKA4MKhYCVdRePkZsLZsi": 1800,
@@ -229355,13 +234261,13 @@
     "Dfr75V19sG91vnv8moyYxtqs7HCguFifh2yiuCNSiBdq": 1000,
     "DfxXxQhCo1r7FjbFEZZ2e1hV1eFcRorVxzvMHXmFRFvX": 27000,
     "DfyUSm4N54Ur6eUcYcyrqDU6sK8xHJiFJ77PupN6ngYw": 1000,
-    "Dg83Tp9Puzqg3K3NDSyKazNBhyci4sziyMFc5mhfa6RL": 177500,
+    "Dg83Tp9Puzqg3K3NDSyKazNBhyci4sziyMFc5mhfa6RL": 197500,
     "DgBFVzdspoKrT69Vm36kkkminqFdqxjRRegPgUhZhBMn": 5000,
     "DgBky37t4vPGYtCH82Pk1dvHs8FTKUD9rYYNiibGi9kv": 4000,
     "DgFxzbA7NC7MnBACvxFMF7qbzu6Vkb9jXw2viwDmBW8Z": 93941,
     "DgLGvUtQWzAKqgyLbWFG7qojisEbqQsrsm4aPAjMw2Cy": 20000,
     "DgMYveYRkQnHbwxSJJbnrvxf5x1A42qtvg35zJWqUxae": 184002,
-    "DgNUbFARA9aSriZUEVbz7a5uL9m3FG3DrAQg4fgA1yNy": 26000,
+    "DgNUbFARA9aSriZUEVbz7a5uL9m3FG3DrAQg4fgA1yNy": 15000,
     "DgTrVbaGgpM2t4Q3aQkY1iU7WRCpyGrZ3FXvYwqytnkZ": 36160,
     "DgZgfo6GE3f9MkvnarnGgUDQebLwyPjWXHDGGdYnPEPr": 2022,
     "Dga4eJPy4CJ9qRMhN2xEPeuFbwyQPFZNHyGbPQYYsWwo": 992,
@@ -229372,25 +234278,27 @@
     "DgdBZMTWd2ohuxkYyz2DDrUDoLypo3pscpSkUNn1U2XC": 35000,
     "DgdfEhXt9gRWGUSb9s2om5tGVasPWFr1j3FzAV7DGQvu": 45485,
     "DgeFnwQ6PKKAp9QyLcZJXrgJbYSs1wMyiJPR6UawAGBC": 48400,
-    "Dgnd5ygfanJA4STdVKakZVQSkTUSRdBABWV6d7H5eyMB": 1376073,
+    "Dgnd5ygfanJA4STdVKakZVQSkTUSRdBABWV6d7H5eyMB": 1379277,
     "Dgnyj2rpsLvWw7Za6gASwkAVmYjEU4aE9zFGLjfDDfCM": 100,
     "DgpCzeSLXTz1tqii2cThKd8dx7PcyFQv5HW4CZPQwZiG": 5000,
     "Dgxg3B6ABWCdrGkqLKzEBu79nnSeKh5sMwegBAVQk9EC": 8000,
     "DgyZj7u7y4y2waRQNaMR9Sp3gvVozH7PY3GQ9X3yDRFx": 314,
     "DgzjUB9a1AHkNQ5A4TV4dhycPjbnmr35T6UoudQsemyk": 500,
     "Dh3WZaqvy34KkDeb4emxTAW8bJX73qBVcEJcLhVXN2D2": 1000,
-    "Dh7yVAmtJccSAvsHRtgB4qZdar1aeEjvSqX4ogiXcfyV": 53852,
+    "Dh7yVAmtJccSAvsHRtgB4qZdar1aeEjvSqX4ogiXcfyV": 50852,
     "DhDwbzktiuCpFT6FaTFcUCCcCUAyN3LiTknZATDaNSCT": 3000,
     "DhFZPPrucvdNCjcp7m7R8VUFk8enGMYmUz8wUa9s43mD": 23300,
+    "DhPofUvcy5eHzaCZAUtkB8kgpJEt4KRj8LkdH4fQawkP": 94100,
     "DhQ87U76QAQUJ8AB5FT8yoeByVMtyMo15mEiW8UNcBtY": 10000,
     "DhRXp3yGCHwjAaHgmntrYXCYKFbQLV3MtX84rHudf73N": 1000,
+    "DhSsAMNLKupvn3HFmXiiPY4fBvz8roZwjqW1f1QT85Aj": 55000,
     "DhU8h6Mc9jhvJmzfaVdMR2pqZznb3VCdGZ6kpTxHKJAj": 100,
     "DhZVBSFkkev4UnEH6LHNtXhLYuZhFaM9JUgxp3v6sLhJ": 10680,
-    "DhZqAHAuAqMdEpRfc3ppjPSHpJYWK3CUPuGEcDwqWPur": 370000,
+    "DhZqAHAuAqMdEpRfc3ppjPSHpJYWK3CUPuGEcDwqWPur": 320000,
     "Dhgen6PKBGwSzK9mjC3pqRobGr3U7zjpeHL5p75CKBw2": 50000,
     "DhiSvp7465QvabVXK6QsKASLKhUjySBeYcunXgJ57WrY": 13000,
     "DhkhGbcjB7KpTrj7rnAjYvMiW8foLefj2HGDxapB9tAn": 5000,
-    "DhrZkC6FkZz4Du2MyqwBbfbmXE7CB3vvdPQdQvuoymiW": 32500,
+    "DhrZkC6FkZz4Du2MyqwBbfbmXE7CB3vvdPQdQvuoymiW": 3000,
     "DhuUcpywrnRBNU5bBBkpaR3A7pQzPpMntewEybYYDUFi": 2800,
     "Dhx6kpVrHyaGrshws6vQjAUi2b1eFhGqjBKax6TwTdfw": 42000,
     "DhxCs21mnehypy9Sxcd3QLo7NaZEzDZysoXyFkENQgtc": 5000,
@@ -229409,14 +234317,14 @@
     "Dice8D5NePwKZ1ShjUBbcGJDuyT3P49fxZMNcwr6Nr5M": 215,
     "DiceBgcPKJMuUaN1nj81Fjz95z6uUceDUoP71UoWEXGW": 1000000,
     "DidpWyb8AmKnapfzBtDmAjoztxnLt4eSVwXkrhEQqBQ6": 25000,
-    "DiiYZ887EZneMpUZTtefHpSkvtKCPZL5HxpCKGsQAGfT": 5000,
+    "DiiYZ887EZneMpUZTtefHpSkvtKCPZL5HxpCKGsQAGfT": 5500,
     "DioFGGofUHgRRpbhUmx6FajAHikgVgWL1BojTtfszQrK": 26795,
     "DioP6AsGq8HZ6jCWp8sMj8dLXGgyxk39Jy8JAmK8vYzE": 7900,
     "DiqWd6Becwe31gxzqfwexiZJj6EKdUP24QjaTnA467vw": 81280,
     "DirtLWDpXCQzELMtmWhK4KEAUBvaW2XoBCPSmxeLp2pc": 147388,
-    "DiwJEc8FzcVVdFywvn6ftwQdLCapni75ijPE5DJjMLEw": 318392,
+    "DiwJEc8FzcVVdFywvn6ftwQdLCapni75ijPE5DJjMLEw": 103292,
     "DixR9NHa6uJLJNgrzCixV1AG2S2avtKeMEq3eXH3qttg": 20000,
-    "Dj7wRkkEa1VYQukA4Rrxn6vxHxR6gfYdBVJRb1bfyrJa": 41500,
+    "Dj7wRkkEa1VYQukA4Rrxn6vxHxR6gfYdBVJRb1bfyrJa": 43000,
     "Dj96ho6psHfLE2afjFdspLCSQ5Sg3ryEPZMDrAp9cKgx": 723832,
     "DjGf6bfCDQnbHeqtCosnYTo8CUfibeV3bYG9APxazWxB": 249555,
     "DjHr1sgDswRzczTRvKEQccPCg2shyEjkDZiCfrsGE4y": 140100,
@@ -229425,7 +234333,7 @@
     "DjP41XtmS2t55GUnxi8CAq21aTziEaETQFV3jWDjGqxU": 500,
     "DjPV2WtBRPSmoFVSTFsv4mz7AQQLdiWYK9WEdJThorfU": 21000,
     "DjRgVqMPjeK8GU4W5FRVDKPcVd7amdwdSNSbE5tvoaV": 20000,
-    "DjYT6VxfRFut93gF7enLCf2kpDcm5tvTQbYmGsa1RxD2": 12800,
+    "DjYT6VxfRFut93gF7enLCf2kpDcm5tvTQbYmGsa1RxD2": 67200,
     "DjZA9DKYwXwycurz8Bvt64L6P7np5urMPD6v2uhyM82A": 800,
     "Dja2gzD5FkfypMDuWS1boFhs3UiwZDU5dgjqc5ucpAnL": 12504,
     "DjfJ2b6eKYj31PowdbRNpX7GjdBscWjbfXScWSNv1oNJ": 1800,
@@ -229434,7 +234342,7 @@
     "Djnckqz5xzN1DGCe9QSPRzFyLLePJteBnB83fTWxDad4": 41520,
     "DjrfyN7MuaPiUG9aHFh247G4tS8G9twrt9VVrGFCC63D": 200,
     "DjsCuY2GBd69ySQ43HJz6h494VwKgJH5rtNA1w8QgXtF": 5000,
-    "DjuUzgeTbycBXofk7dazxF5DwqN9eRsz7CJE3kY5EPLV": 159400,
+    "DjuUzgeTbycBXofk7dazxF5DwqN9eRsz7CJE3kY5EPLV": 184300,
     "DjuWACp9s84f1BrrNK1a6xVmBcHgQEeDNfwubdW5v7Xk": 10000,
     "Djumi9Wt2cYF81ydxP32Z2z8zxqPPhtWomf1bTDyNCdL": 8000,
     "Djxq8oxN7GTgNJEqHmK2ZZ7AXuKB4WR9THDpvdcDCLxN": 600,
@@ -229442,7 +234350,7 @@
     "Dk1s2bx9mFFQ3JCSF1rCU5ePSQTuHTJzWVPvjJNtJvQo": 50000,
     "Dk2VPBGGkeFkC6f3HUsbj5kXtXJAB9q3qYQFwgTEKyEK": 2500,
     "DkD35Nc3m26EnSfUMSCD8AW4pL6g2NdqDaCKtJUmWTbM": 5000,
-    "DkDaDaCYuTC3YxLDMMmyS3GkxXri7WHk7cPkXSS3hdC": 61752,
+    "DkDaDaCYuTC3YxLDMMmyS3GkxXri7WHk7cPkXSS3hdC": 80198,
     "DkHiPyupLyeirM54y7hdyGJofFaiBYiyvkRVzbHbKsfx": 5000,
     "DkKFmW4z5kFZvgRXwpjoDYoKKX6raM8TPK6Qz8VXU6N8": 5000,
     "DkR9D3UnaPJavwm2i133bPpWrBUBZ15rHEcJnXt9nbob": 9400,
@@ -229473,6 +234381,7 @@
     "DmTfPmEe7NfK8JPQSECte7LUHshhHeB3AQnEnUFPwk52": 78466,
     "DmXTL1eBUc2fviQVKbf4SpoTqSpAA7YSTocnmtYm25cS": 22766,
     "DmY6P2MoKttDPwAkNYNCQjzNr1gPZzLR6ULhX7tgmycm": 18592,
+    "DmZGGVu3zc8kxbct8LC8kzZjvRJyKhTPfkCadEJvnZD4": 4000,
     "DmqChW6ixdHt3jEmuFxJahdhngHDgLjp2dot6m8o3zJE": 10000,
     "DmqyENXbqDQThKbn4k8q2KCQ3FkBka18g96ckQmDs2qB": 1660,
     "Dmtyx3oqambiCTgu3VBAftfemBrv9jrGFDEp2f9iCfHF": 2000,
@@ -229482,11 +234391,12 @@
     "Dn1pV191Pu1UXkhnnt9qi8w2vFa1sk2AewsfNYd4abKy": 8553,
     "Dn5hnD3P9tomeYkdJkmMWshxEKDCjDoR6ZQfLYq73ysb": 91000,
     "Dn9VE8GmCK2evpTyK6aawJiHdCDEpJRYYvfKQA77o6dr": 2000,
-    "DnAkYbsLHhJ5m1PF8sWmMFQs5dXZWP2o2sCHCEiK3QTq": 7500,
+    "DnAkYbsLHhJ5m1PF8sWmMFQs5dXZWP2o2sCHCEiK3QTq": 9500,
     "DnBKkqzZjHExFUrnf2udrvvG27FQbQKYVPUXhcgjQHEB": 111530,
     "DnBzkx6XJYkuQk4192QWD1qEQ8sGdwBQgmtUHYedWbAQ": 500,
     "DnNNspN67kze599j7d1HjqnjwueC2RVv1xARH8HXAudp": 38000,
     "DnRspQcvcMP6dtrKk8Qke5HHvvA24dzTu989pDG7uZBM": 10000,
+    "DnSWj3AotdMAdmFgsTeH9nr1s491aGHFkZ6SZaV4YNPc": 3000,
     "DnVzNXYxRX3kn6su6uxWdWHeMSWfV5W7XQSdTCkNi3A7": 20000,
     "DnZEnAaPypiZuYwN3HjvmBKvUcBBHqFsvFn4E4afv6DK": 1000,
     "DnczdD32aNR5qyyDo1ovs3Q3Jv12Np772nK2XEyALB7U": 2800,
@@ -229495,10 +234405,10 @@
     "Dnq5EgYHEfFGESFGgoJhJxNnh8jbXtWRFv9D8qMy8QfN": 1052,
     "DnrjavCyEYGTkowJ1g4RGkE8smL4KPexFTAnTLcjKZw3": 1114,
     "Dnse9iGn8dHDQ4FdwBq7SJPnsWK2HAZiqG6pMR2ToEQF": 7400,
-    "Dnt76JrDpQNVeRMm2hfzbep9zpppYCCwdvJUrjQ1Lmuk": 388,
+    "Dnt76JrDpQNVeRMm2hfzbep9zpppYCCwdvJUrjQ1Lmuk": 12136,
     "Dnu5B88vTbpTCqiAGxQfcC8SrtFZvdn7i7B3cPpV7Lv1": 1500,
     "DnzYbLKnjQrRw3S8S2f86Jw38qQvVpCDCPsQwUCbE3dj": 8000,
-    "DnzpqAT2DMi8F2uHnbTsM8MeoKAgdAgbV1mmSvFi5hx9": 21500,
+    "DnzpqAT2DMi8F2uHnbTsM8MeoKAgdAgbV1mmSvFi5hx9": 4100,
     "Do7z6uVy1YY8zaTn4EfokCVScXTLE3GkwXQvPnDqAQgj": 25000,
     "Do8yaHWJWuTAm8wULoVxW2DkLH9X389navssubgZhP4a": 1500,
     "Do99s6wQR2JLfhirPdpAERSjNbmjjECzGxHNJMiNKT3p": 1023,
@@ -229509,7 +234419,7 @@
     "DoHDdpshyU9E46f3xTdKz2bvcDbvm4F6HfGGvMbc6sRR": 15000,
     "DoJ5eDAQJnUSQS9CLLJ7DVCyyJNmTrZWjoNJawLftGt6": 1000,
     "DoK83rck5ASkDvchpNSG3S6pitgCk6Bwod7D8oP9CBw7": 1000,
-    "DoKPMYsC3zvBEiaoeXZbkkf8jzUsaccMuBmhQz3VLzPE": 47544,
+    "DoKPMYsC3zvBEiaoeXZbkkf8jzUsaccMuBmhQz3VLzPE": 36044,
     "DoMSykZ9VraGhyFmWdM7oNuhk88C7UFC2iSaBNLbtQ9D": 27000,
     "DoMVzmt12QZmfWfdJS7UDrHmEFkMfos8eAiFf69Z9Yih": 100,
     "DoPGe2dfRVJ7XwCqD1EhirDnLgiykrWVU6NVpujAqXd4": 94500,
@@ -229525,8 +234435,9 @@
     "DociAyZ9q57FtCWMP1UTVN3AFVcRrVRVAUTid5n344mw": 2102,
     "Doeq72zQ6zBW2LED4hSpL8bd7YhwPwDHkS9RyW4nUW7": 175100,
     "Dogy36H7ivadWe8y5kh2MoQWLxncQXGBhqM3d41WzH7d": 200,
-    "DomAF8Qy5n42uMCgH6zMeke7YoeAJtQUaTHeedVydCBM": 77082,
+    "DomAF8Qy5n42uMCgH6zMeke7YoeAJtQUaTHeedVydCBM": 125082,
     "DouWSwzgbt4KHV8gaar78Z439xcRUfu2Bt4zLa5Rqz8J": 3204,
+    "Dp2389ZBrp13Ju5HCMk6RUGmyXS8RN9vir37a1SL49FG": 7700,
     "Dp4TfahNGQFnWwmcNxQ5Aec8ZvjPwAZg62ETjJHZva1B": 33000,
     "Dp67WPYrZULc5pbdoVtTKoZfWVEuDtR5gvTdDhu42N8z": 278033,
     "Dp8UygUm67P5iKFmkb8phMDwBGiLYXPtkV5rutX3Y6Ks": 15885,
@@ -229559,17 +234470,19 @@
     "DqPdehsv57eQ1Per6nXGh6dPzn4aA7DPAquVGzxHcokw": 9500,
     "DqQEHVgYBLt1RzXrdV1tmPPQhhbHhYr38kxywnuSA8Yi": 197,
     "DqTi2A8D3ywV19NWjzf7B9PduEMkHg4RruSWQZEdFgY9": 100,
-    "DqU3uUvVU9qEPb6VJuF3B6pVzTwCfn4i97yJEduyBcma": 76400,
+    "DqU3uUvVU9qEPb6VJuF3B6pVzTwCfn4i97yJEduyBcma": 29900,
     "DqVXKNcidTVoH5ZvUaEwitUQS7FHXMp3GADErPACdVDx": 7360,
     "DqiiDBFSxe1CAhU6yhWjPDpPQ1afgWtvzkscR1Pnwd58": 81100,
+    "DqkRQ5wGEjJYKqzwPrX9g13agqzXcnimaQ6Mykcfbh3p": 7000,
     "DqrCzkhEFvn3qHFeqyiPLzWwcFsHe96mLbVc6hn4UWCv": 6000,
     "DqtM2QEnQPiDiT73fC8GUPbQueqAyWLFDM6xY371TBHo": 7357,
-    "DqumMzm3eLUkP4QUZN3t6k8tqGjm6sB9gpiVDr6eVDpn": 46500,
+    "DqumMzm3eLUkP4QUZN3t6k8tqGjm6sB9gpiVDr6eVDpn": 29805,
     "DqwGA5VwBpdt6wM2yWgxUXzWmEKS7Zx98nEwZ5VNgfLa": 15000,
     "DqwvFAT8YAc1qvTbKpUdcPU2t99qfZ121LMQ6mbkk5A": 30000,
     "DqwvFAT8YAc1qvTbKpUdcPu2t99qfZ121LMQ6Vmbkk5A": 45800,
     "DqzG2y6g55yZwLcf4Ph3UHw72euqvWCdjLpAhzwnCo7N": 1000,
     "Dr4554BJZF3pKkTnDGM4cxfbjFfcpcYvNsym7PrBYUyt": 14000,
+    "Dr9qJmm6tu1vTNr6Zw6qUAontRWfzb5d9ZDSbv7Wjw2o": 14500,
     "DrEzDTSMsw6VnXMTvffuwbATj6LGmcCx1WK5CdHkfSU2": 5000,
     "DrMHNRekvvTyLAf5Wy8WyQbu8QYnYzUKfg5wP7bsHZ1s": 9300,
     "DrS3jhqWZG4yqAmGeyQuYBAuk5t78SBg76WrQ1NmEvwZ": 5000,
@@ -229582,7 +234495,7 @@
     "Dri4XsM31mMjaGcBSCGwDWc9knCU3JGcSNQwMzmK6xC4": 31100,
     "Drqr2fCnttxiq6uj7L9ioEENTKRqVcF9qKSTWSrKV9mJ": 35000,
     "Drr6BLG5tF7swjfdFC2DdZe1AgvxvJvdgdpTSsCTZZvg": 100,
-    "Drrh1aPwFwinQuNRYKdksPtpELb33yeWNtspLfV2sTQx": 2000,
+    "Drrh1aPwFwinQuNRYKdksPtpELb33yeWNtspLfV2sTQx": 8000,
     "DrvFXPDHzqL4EjQ6aEYThws19KafzuEzTgptEzLGQnv7": 2000,
     "DrxkdvFc6NMB4GZ8HgsWKyYBfM9E9ZjPUw5qhShPVHvh": 5000,
     "Ds6kFCvjfLVHqDG3u6WYHWD2Lp84w4gJgeZYRKb8k2et": 30100,
@@ -229590,17 +234503,18 @@
     "DsC5EswryQsissb2xErpS9Y8dhJP9S2yV4qk2JGtAVCZ": 82400,
     "DsCa5nfSfV9NwyzL6HVhLWy4X7vpeohSnLnBrhRfU1US": 210000,
     "DsETW95TREYRe6iFUw2AJLy7bSEsY1fEqFYJT58ERtDG": 480,
+    "DsFks5xq41wwWRzo6fYaVwamU6mTyhWJPJJTJJXhFth5": 3000,
     "DsGHxAWoWv1tm9Z2queP14Saeb5XvQPCyKXUQFr8fUxo": 5000,
     "DsN6HrdSVWAm39xGDLCBPxABZvzcMb4JmP6vHVjTgZT": 2000,
     "DsN6HrdSVWAm39xGDLCBPxABZvzcMb4uJmP6vHVjTgZT": 32180,
     "DsPR1ya1wc4p44Q616PAYFrUWAjMhqgg7gjba9iNo2b2": 4016,
     "DsSsxCTXRdiMHiNwYZGKo1EDzKkewZCfPqP63jXSdG8z": 1000,
-    "DsXh6hJquycky5FAt9eKJ7PXrufQXgzEUrYdfiCQXig3": 29000,
+    "DsXh6hJquycky5FAt9eKJ7PXrufQXgzEUrYdfiCQXig3": 50500,
     "DsXhf1sMXJzGqAoUTeR2zCKeDJk8R4v7zuwjQziJRYy5": 58000,
     "DsYGT7hU9JMPxFPPaxHcD2JibAtNg6WJzvTRg1o3Uu72": 3000,
     "Dsi3yLEeBvPibNnsUsXDSoCJHtJzmFKxUkesV8ghAAdx": 64222,
     "DstnzfAch9fLXHza15MCayYmeMgnjiMcW3pp4fy3BMBS": 200,
-    "Dsy4akcXfrXH7YZzhxzC2Ly9WYrAPM4nye1kjNayCbAE": 26000,
+    "Dsy4akcXfrXH7YZzhxzC2Ly9WYrAPM4nye1kjNayCbAE": 79100,
     "Dt1qRZf1KsFV47rPorPcweUhfK28hwN9tuCPbLruKDfF": 25000,
     "Dt3XSBRSqBAdyQB8djdzKtBAn6j6Ax9tGcYBxh4G7P5c": 1000,
     "Dt4joTSWRrbSNrfHJj2TMf2iQfe8Lx4YsL5iXiEr7k35": 72200,
@@ -229608,8 +234522,9 @@
     "Dt8EDZmERmC7rUqeKKkMUKt4mBgx8FybzfK6g6nDDpG3": 128051,
     "Dt8n6QAa1gh4WFd32sx2MCnZwfvnvfn582NxjCQhYMuS": 5500,
     "DtBQkuBFaPdJF2KzTPB9kSgBnooviNkWTPuzQJQdGDTs": 5000,
-    "DtK2U4CugaEwfw9P7oTcDfhwongV3EPDXrQraDhP1hAk": 186672,
-    "DtZpJtG3uhuVEgnxXEvYhLf93dCMrJqVkAg1YV5prUg8": 740,
+    "DtJ7kFNydkj6mVRnuv55GHWRpZrNUPEfqNiphRoB3wX9": 3952,
+    "DtK2U4CugaEwfw9P7oTcDfhwongV3EPDXrQraDhP1hAk": 189906,
+    "DtZpJtG3uhuVEgnxXEvYhLf93dCMrJqVkAg1YV5prUg8": 8140,
     "DtbSh8piTBGxg23N3g7M618CUEnay7h78mzp45FK4amb": 12500,
     "DtjY15EDrUJHiyCYbDjVgqgBe8aChxDrLvpzMgFoXvwg": 128548,
     "DtjcPeDbruvKZATvEAGbpFQN2CW2KTtbzwAuLaigCpQc": 2600,
@@ -229626,6 +234541,7 @@
     "DuNikGFEWCmyiDAsx2q8S7aNBLkwxt7S55mYL4fnJHUF": 4700,
     "DuQedWq1UAtE9CqWNb4awhiAemxZhWnMogserk5Q3VFe": 2008,
     "DuUgJhXV9KxhgpaKwJoJtt68rZjP8RXoBPthXYqBZRwB": 8000,
+    "DuZuCiGvg8adqAhPAWugC7ByURTqx4ZKWkmCNYHTCdbV": 17000,
     "DuafT51zkaJhVgHm14NY1Ym4RnkATcaqvJ2wQpnNpXB6": 614,
     "DubBEo8EC3DZazny91xzTTU9V6vWZ4XxM6Bb2EyY4Hsh": 100,
     "DubPQbLK4yXHAw7MY62bm7DMR2tzLTeW84zFnuEHrdCF": 300,
@@ -229634,14 +234550,15 @@
     "DuoTBYSwud18tMNPKtgWVbi13HDrLc4Bw5m4S34VJwpQ": 1000,
     "DupcEDGq6QfKXCZ1g2azcs1Jfo9GMFR2SanzJn5CP2E4": 16004,
     "DupqgQ4P8pFr4aseqz66GEnD5nrzUQj7wPCtujKWjXp5": 20000,
-    "Durds94cawSPDztDuEopGgHCGFjgeHTcbo7PEneMG1GF": 245376,
-    "DutK762Z7fr1g3aLWgyuUZiewoUUXJGjtBzP7cG8oZnc": 1000,
+    "Durds94cawSPDztDuEopGgHCGFjgeHTcbo7PEneMG1GF": 215376,
+    "DutK762Z7fr1g3aLWgyuUZiewoUUXJGjtBzP7cG8oZnc": 11000,
     "Dv94zXr4pGJnP3pFHAALq5xeWAyViHUgpMfpWwFkkgGF": 16500,
     "DvPtrmGXof5AvwKRFnE2uWX5zhL5bd4ZicTjwrPUT24M": 1000000,
     "DvS185yEFa6b7fjs7GzqFiVrsgE1fbgs98RQGg87yuCM": 5300,
     "DvSEJGWYoGFhkCRyo1JC1gU4cPznuryhBMkYrFiHQ22o": 10600,
-    "DvTqqw2qDK5HEj5ep5YWRKtXoedujudaNBzBQs4YrUcW": 19600,
+    "DvTqqw2qDK5HEj5ep5YWRKtXoedujudaNBzBQs4YrUcW": 23100,
     "DvbvcnHatYCuVxFk8HqADPeeYk47CiKNtC1WQDFtTtXC": 139168,
+    "Dvc8m77mBMdw11KCWo4hXrypZ39hzitFkzmmHoaJbbcu": 100,
     "DvcQPwtL3HmEy1HSP2sbprh7KsKUFERrdGXZHJhRgizC": 1000,
     "DvdFEgMoWcKrE54sut6WteHo5sjkELcHQk7o6UmcsHr8": 20000,
     "DviRGTVhodSxcE8nxpYZYq5vxUUxB6TEp5zLiytsmPNJ": 10000,
@@ -229661,6 +234578,7 @@
     "Dwig3FTih3XKi5J2HhjsMgksrGkTcrQAwNat8jncpUjP": 11462,
     "DwmvQDE8Vg5zkh4iWBFLfuBn6aEMuK1FQvz2eVryDXAR": 130901,
     "DwsjBZFftmgEdFMrdBcJ1XvMQsDCMiggeN5DScxozhPE": 4041,
+    "Dwwb4GUqgjqgMVoQhzf66BiVXQEBr4WQm1mWApwddG2j": 100,
     "Dx2Ch53QxEvA7yfo5VDUV6vL7grqQ3asuT6vGEcGiw4k": 300476,
     "Dx7fHsWva8DW449R3r7NJHqucqnkhoF9W9Q6GTCgM73G": 211685,
     "Dx9Txd2umkbAe9oYZs8SCnjaR46jR5x1uCdGqzXWTJp9": 5000,
@@ -229668,18 +234586,21 @@
     "DxB2jYSiofcwJy1oSQHDSUkHGJzD4rq22EAXxmq5s67z": 1200,
     "DxBouzguYQJvvrtS5P699VXXVKgr92oZDJTZxfsfrgjX": 78315,
     "DxFJLwaFdhG7nZw9zyed9CsMx2a183wV3aEzv7EtcNkB": 8400,
+    "DxHpwBKSZMoT3L5gsmDnZqawDu974Z1e6fpeCLZhT7yK": 2153,
     "DxLZjU6hnch2WLecuCrHe8nWGz92hH8GwkSQpLN2DzX4": 7357,
     "DxNKzMmhTdKkmfkCXEMYBaz5smqG9xCXJPW43izfBxKQ": 200,
     "DxR23sPucy3nPkEvZa9ckgSSzzcMnRw12HzENf87p19f": 10400,
-    "DxVJgMz7uZ8nkLM6aFZs6d7Keij4yzwvNq9v7gwiQUE7": 152060,
+    "DxVJgMz7uZ8nkLM6aFZs6d7Keij4yzwvNq9v7gwiQUE7": 126460,
     "DxX7jHYg3bTX4B3Fxb3CDCo9BaoedgARy4PuynaiF21P": 100903,
     "DxdbMXGW6kkkoTHjMyf7A6w5JtYEh5EpFvCSHdG3MaSw": 16800,
     "Dxdde2cC32KCtkC5WAxLrH4X5Dkwfix3YNAiLBiDLnx": 1700,
     "DxoVEWruY4TjZeZ85dio2fBNTDgqmPtgvFjzGnzdTu61": 10000,
     "DxwEgh85PLrU4XGxT2hgSpzgWbUkQL9dXDiKvAZF2QGn": 10000,
+    "Dxwfb765ediU1ZcEEwoA6kHxWWnLsvfjhA1R2akVJd8W": 4000,
+    "Dxx9NM2bGk6prcyDJN5TwSGtZzJ8iqV5GkdUZHL2qkoB": 100,
     "Dxyqo3oRc1ooCGaVeB3wpQX6uS7dxBfiKbiPeuh4DREZ": 88900,
     "Dxz9BURNziZTh8oyihpX3opwCvSSRguHexVyf16qZbgu": 1000,
-    "Dy4Ddb2AbAEMpVfssxkaio693idGgQcqkKVHMsmi2ieU": 32400,
+    "Dy4Ddb2AbAEMpVfssxkaio693idGgQcqkKVHMsmi2ieU": 40500,
     "Dy4xDrjgKZhPxNmWiUPCjdgB5RdyDFhwwJG6qEjFdPxF": 100,
     "Dy8pHaSwLgSeAEwxZsA4EhqK9KDYbkk8qjt7rw1rrsZD": 13000,
     "DyKk78Vn52ZjnyU64o1LkxcFPPZqZrLeZ9D3qChxWCYT": 10000,
@@ -229693,7 +234614,7 @@
     "DysP83QPSp3sNbVSSfRn7XyXa3QsfbE1tCjQTvGESAFe": 5000,
     "Dyw1tPSwi5SV9TtLwLhZ18gXCttWEpdautU5ZsnzrmsJ": 24000,
     "DywyKZGtX2iqW3tgCRfR9XcSLUJHujcu4sJNF2uuVEqd": 7000,
-    "Dyyc315MysMK56BBV8gEa2VH3gv4w6hadzQiU6iGzaNc": 5100,
+    "Dyyc315MysMK56BBV8gEa2VH3gv4w6hadzQiU6iGzaNc": 5102,
     "Dyyqj1xKdJ5g81TwksdAhoEQFerSW5uoEoa3LRw6gWbE": 1000,
     "Dyz5EaibeJrEx1sozeBcHwZ4biqbAkrJExwFnGp6Ja12": 10000,
     "Dz3fiQgQNGxkkp5viWuuoy1DZiSRtLmRym2wDSHBMhKp": 94000,
@@ -229711,7 +234632,7 @@
     "Dzmdxz1ZFKsvd3dKsmtQEQzy72VXCatJBvWrwaPU8kND": 60000,
     "DzmjiMTBH53EpySGxnqyEx7axx22nSxhFQcfBSFWkSqk": 4000,
     "DzmwPPpEkxvugXDy14EnkigsMWwBEfGdQmjiX8VFHnZo": 800,
-    "DzqiDqyh7mkHbFRctNSMQD522eFAAzUVJGxnPEAztEjw": 10100,
+    "DzqiDqyh7mkHbFRctNSMQD522eFAAzUVJGxnPEAztEjw": 13300,
     "Dzt1AkLi2sH63vtP4evrGjF9DCbGvBMn2Ekk43wp2Ka3": 3174,
     "DzuYkpJxACa6KvLrpskNuZ9gPHUQus59jD4gqDeexaSo": 45000,
     "DzycefTCnyk7SrFmcCHM7RNznhZ71GMjqUm4NMiemNKa": 4500,
@@ -229726,7 +234647,6 @@
     "E1PRb2Pm8bWeGRK6dW9T8R5ddrmXoZcPcfkoDdb4omzr": 9000,
     "E1PnBSZVx6uu5SG4epJSi9aTFWdcjf2kB9DjDWawuZbN": 1500,
     "E1QNPvEPedz3m4MCAdZXPTHXG9QQr4h1CKU1YVHkdV8Z": 8958,
-    "E1U5zS6NfJcXi4TWt6DAU1zBbDjWJahy8fqBLYoc7EV2": 1000,
     "E1Wk7aPbEdcgPBK8VUG4mbUpPgCLQFsCgnFCcWATuG4z": 60000,
     "E1erUwXRMwjN7ytCXCRzpjc7PP5dQUCU7nEngDHzCTNq": 1000,
     "E1esHsMoCkWpCGwihxa5jtdRmUrkH3p4xUsKXsL6pNHj": 5020,
@@ -229755,7 +234675,7 @@
     "E2Y6TGZh7PsUVtDNzUdg3CB1LVu2DH4HZ5BKmmSt4KAf": 20000,
     "E2cqEEuJx5vpW1PXaEoEas31St2Qf78uhtrkRh1fiWca": 2000,
     "E2jarPdpGY5hPDM7cwhWvyXU4nVc2KYRA9UDemSdxq4": 100,
-    "E2n5UihCd1eAG6KugfuzB8ZMELrSVPNm1935F7Pvw48s": 8000,
+    "E2n5UihCd1eAG6KugfuzB8ZMELrSVPNm1935F7Pvw48s": 18000,
     "E2pQh1FautLwZWpwqwzV5Mx7mg6xknGKaMMxPFBD7xiw": 3000,
     "E2pqirsdrYMq1UttpetT7wWPuoyyEmx1DfeTvbqyZjz7": 271206,
     "E2qB496JFzoJb7K1JHWH7u6oMi26xr5B2ugXVk4WLom5": 1000,
@@ -229782,11 +234702,12 @@
     "E3xrsFzU88ht8eYUrpiSKm3sreAFadmyvmfzzatpqjdA": 5000,
     "E42L2GSpfN5ktK4my3FBsVCKCPhkMroN86mj4jUPLJrv": 100,
     "E48EDUzB8UBNdzx1fpGZvrJCGu3AaJ4W74TAbQPZhDHE": 71100,
+    "E48s8iT34k8LkpFnDeibY7NUZkMK529SSR7LyGkmvXVU": 3000,
     "E4ErnZkgUhMatATjTV6YgxCasdYHW78kWQrmADE8bSMG": 31500,
     "E4N1QWApgJFDFxhseesRmExN1mbRRndqxfjTQLHTqpeP": 900,
     "E4WAW1e6emBJvVqZkrqZuProo6pBd8dkTZvp2L9zPDee": 11100,
     "E4WZTvgPSp1E5xucNcQmELgMyhBS7VFgAaPuvZQfLNM1": 1800,
-    "E4ZYJCsR2WMLs98GpCGUrRPPae81eN1UPBwdVfz8NWFD": 551360,
+    "E4ZYJCsR2WMLs98GpCGUrRPPae81eN1UPBwdVfz8NWFD": 566360,
     "E4dzxAqxNZVEwcCs77gbRYywRR42JwzLhZEvC5ZgforP": 7025,
     "E4jRMV9yeEQHCzB3vKLxQWLTGajCQmmmrcqQM8DG9Zc8": 5000,
     "E4k2cNtq6kMosqpeFV4cashscTYbSWNGrbVzuzBiETUP": 1500,
@@ -229798,7 +234719,9 @@
     "E4sDN1QEqyH1WKZk7R6G3nivN6faezK6skgHjqaX7tBj": 11900,
     "E4tu5kjpKtkSWiAmmW8k5HrVVVVJNew4qUK7TPc9eopt": 10000,
     "E4wy3vA64X4kAd7UUNSEFzvpFWoEvPTUv9QNiZqDEhfR": 73000,
+    "E4yBDf9eAra1cCgB2MqemXFQ5emNQkm7zbcJw885zEBy": 2156,
     "E512NG6JdDQsSSgfJsbtmBJC7Uxh3VhdBs1MHNCAtfjt": 50000,
+    "E56QazqeW4obYGCUW4T2SYCj6vSQD29qtYHzCNr6vCop": 22222,
     "E57AE53JjNsULspjWbqBJVazVthusg7EH9wo2VatLCma": 5000,
     "E5A619zkvGykFW2uDrnqTmBRZN7pk7Yp1rDNZVHEzroL": 7000,
     "E5FA6NQkD32kW3NKzect5uoJTDJSF9ZQw6RBS9sdYNXC": 11900,
@@ -229812,7 +234735,7 @@
     "E5QB3fWErkCtg7sVAdt2cmUkEDzE1g4C7Gm5zyoeTSWz": 15000,
     "E5Rn7Hn1nsjC2YD2ysfgy3bogG6xZR3VeJvFrdj5rcg": 900,
     "E5Rn7Hn1nsjC2YD2ysfgy3fbogG6xZR3VeJvFrdj5rcg": 500,
-    "E5TYpp8A3SsFY512r4YETFw7ZFJMLyiH59Qbcj2QKpRc": 30000,
+    "E5TYpp8A3SsFY512r4YETFw7ZFJMLyiH59Qbcj2QKpRc": 23000,
     "E5VFZ76Cmxb6pDvM3gcX3cX7xCAfLEf6Ykibm27m11EY": 10000,
     "E5VhBx6VeDxi4dm3xz62exXAYwXjCpTKfJppWtSGkcHm": 100,
     "E5aYNyiXxW6BYmK7FYWBvQmAkC59D3NhuAPdeBsMRmBy": 200,
@@ -229823,16 +234746,18 @@
     "E5sFKUX1TQBAj2VJULMkjkmK44kxTRV5R7VxjP3ch2hp": 900,
     "E5tXRRP3wZrSPeT7Dt2fo4dwTm1FCAZXZ9XiQHGtdu3c": 300,
     "E5ttEa2brW5M8qJ6tRhZxRrwqAhRv7Rn2DHfZLBE4J4x": 36200,
-    "E5uMyQBWmAwCZSBL9GS2cxUT6LhHBAuFe7xna8JhNW8D": 68436,
+    "E5uMyQBWmAwCZSBL9GS2cxUT6LhHBAuFe7xna8JhNW8D": 60382,
     "E5xLUBfy6KGUZr4iCS9CTmk4ziphvquVSjNxmQgWqMgs": 23302,
     "E5xWfcb7S7WaN7bskeT8Vanf1hmoKDwUnxey3PQVF3aD": 8000,
     "E5zoKoeQKP2jszb19iBoQhZWFcrzMkNNRaXVcEasVyGk": 31000,
+    "E62E6zTFixkR7LsqLtJP16DZdxJGVZALr4CXQmfYWHWj": 140156,
     "E64zTEFutKokzrA4hLnMCt8wJoN7VcSSUN433M5SYfmV": 2000,
     "E6EXAoeEkNtqi57FySLM3KCwvwPVgaPygqXVWyE1XJRu": 24941,
     "E6LznEVXHZY5s4b1yzSGtHVmSqvwkXvGmaHYNmbAp1Qf": 1000,
     "E6N32gMq8YmUBcK4jb8bxGcoBAVohX717EuEjt8DVQUz": 14500,
     "E6NNGcNswFTbGcY2RmjWS2114ikDdcj5xzSmKmPi66Qe": 40000,
     "E6ThcnjNbNMMJpjZJ8Z1uyszLp5BJUF2gXVW1rkudhuN": 5000,
+    "E6UqgEt9ZctydjzvsAbr3vhPBKw7VjmWyejMwm7PUpQf": 5000,
     "E6X6NUseiEJQu4GkV8WTdmsem48CStQe5Pz44mbFHJR6": 21000,
     "E6eeKnhvvAbmMTeYCpMb9qsmUyS9nwtw8mAD1fApfMsV": 3000,
     "E6grWvaGuV3EYSt6FoinFWEHSPWmkkkThqU6yGPkdMH4": 300,
@@ -229851,6 +234776,7 @@
     "E7CFcLCeGbfmocxniPsg8jk4JecVEpPqxcTajwY7jrs": 10000,
     "E7CJUQe65FzT4Tnfb79FzyaRM8cnUEusuibp2xHQcW1D": 64000,
     "E7PuV4hoBrGhW6KnkgcThSCp3batsn827eQHsHZbSou1": 314,
+    "E7Q8hDpykvQnHLKy7NbQpV2TsFbR7vNhCmFBCn559ew": 20000,
     "E7Q9Dk26xqUdqmucfivWfE3yYCBa2icZEE4Vcdx4c7E": 10000,
     "E7RP8W5hJ11D6uaW9rroFyWijf3GhU7yqZBmhUhvKFps": 27700,
     "E7Tp3xS5KhWUBMSGNdcwar18VyAYqzUQ4HN5M1t4Qr9n": 5000,
@@ -229862,7 +234788,7 @@
     "E7tncArpzsFstgdxwd8HiA9w2fFx7kLbc1baJ241dfPd": 3000,
     "E7v6DU2V9anKgA1V5j7GYx79CNMMiqTUjgg3nbCzavyp": 6900,
     "E7vMtK137RJNyQ9uZ18QEoS8bBypFR1x4hWdwjQDybsy": 35000,
-    "E7wPfouEFAVUNPCYsb7XHmNAsx97MM1Z31HxBR4bfMw7": 71200,
+    "E7wPfouEFAVUNPCYsb7XHmNAsx97MM1Z31HxBR4bfMw7": 29200,
     "E7xyvEJsikAptmUiDGvN1XgdjsxNv1FqSdhMq4K6zApj": 3000,
     "E7yz91wz6dLwNyETEmJ5sMvLrhtkfbXEmdNTNVk2dPi4": 106497,
     "E84GJcsADTe9nACzUa1gCFzBRxjFMKrXs5VxeqmcQzKz": 5000,
@@ -229882,12 +234808,12 @@
     "E8XCLtT2PyRRKnCmCdUSJohXWzbSYTDnGZyYd63U2aJk": 100,
     "E8XVFQhQK89VswXKQQ9x2Vwy2uPxbtd6xMsz9qJs5NKZ": 7118,
     "E8YNNy7e8hydTSKzmwJXzAR5V7PT9tGWXc1dtooJPAdS": 40000,
-    "E8apXLDGRfpdMogSzHRnKWvJA9JvQ5o3ZGn5v1s6dNpd": 1500,
+    "E8apXLDGRfpdMogSzHRnKWvJA9JvQ5o3ZGn5v1s6dNpd": 5500,
     "E8d58ZG6DvREsbFUeq5p61GUmtrM2tHZhxMNw43hcyLz": 1011,
-    "E8dh2iAzTMY2KatyFxcBer2kfzREZCguACS1PqdPUVhD": 240980,
+    "E8dh2iAzTMY2KatyFxcBer2kfzREZCguACS1PqdPUVhD": 22644,
     "E8f2uzN4fpgECNwTcr2vJr3ryGj4zYVxshcG9L2SpBZn": 8900,
     "E8jiJHpLuhqXE7zKWJmHnxY1jaUzZMjyY3gNdt1UcKMD": 100,
-    "E8ndvXfXiVMWCrWYFttHzpzHWCxB9qcoPhcTUKmvdjaz": 267300,
+    "E8ndvXfXiVMWCrWYFttHzpzHWCxB9qcoPhcTUKmvdjaz": 246800,
     "E8o4q7oJRwjoSz3gmrrqbDiajV52PtTBksJoZbGWR7FL": 31000,
     "E8ojqjk7q9zzFQZRwbewNvCeiLbQUcrR5HG2SYYsQaoY": 1000,
     "E8pWUNaoUwJ9j3pewNxdmFvZbSizQArhHKz7t3ZQHPPu": 19000,
@@ -229901,7 +234827,9 @@
     "E9CZZTtYRm5JsRWm4JsYcy23nTwPkhioWHwkti2FU3hd": 15084,
     "E9FZ3CqUvwarrrbq7FMGC52B2MMytYK8NvFACZh9qa6Y": 1200,
     "E9HL9aUsz6NmWmZRmYxFoJQm1hiTDFefL7SqEa65HgwT": 10000,
+    "E9JKMiPbD3BfkWqQ6NzgyqmNoJr8XiBNC9v3qnSPfMkr": 30000,
     "E9KSdj37eniWhgfVLKvXgKFKSWm21CHCmA8bTpSmrW5v": 88800,
+    "E9Lps3NvBhEZWgVBD5q7kwsaiTeAdd2nDMfGLLYNQvMz": 4900,
     "E9MhY4ojcheRhGWRmPzkMcskCsAj1xz9jyzHBE5B5Sbu": 1500,
     "E9MxqTNaZcxazLsSsXtm8EeTAmkRnRoRYZcVBrZchces": 3500,
     "E9NwGAiKP8TUzA9i5ELRDPdHULaL6yCGjmA2tTQn6JD7": 166700,
@@ -229909,10 +234837,11 @@
     "E9Ykf5GBcNDG21DWsEordkdddUaYSY4ZF4jMBUPD8unC": 23100,
     "E9fAZTRYcMhLVjYDYQzNSw6qUVnW9UykJjAY7kuzauVU": 100,
     "E9jQLV42wfNfcjh72WLwRGkCpxvLUkhLnw7U5JdsV2ys": 10000,
+    "E9pi7qzEQVhMYrRYcMRpPiMHeY3sH4Pitr5hUJbmBVDU": 3000,
     "E9v2HShWy6G6oxcXR643MXGjwMWChCjTNdcwhpwpDeoi": 10000,
     "E9viQLkn8AjK5kV8ZdrK5fNQ4nh7B61sBbjuhEqs5q7v": 11500,
     "E9wprH7RDurkkukreTK97upW9sVnT5MUoPUaBAce5dAQ": 69500,
-    "EA112CSkyRYEiSnuaAJAKacab51FYXJKRbDJZ5FQRfMw": 313283,
+    "EA112CSkyRYEiSnuaAJAKacab51FYXJKRbDJZ5FQRfMw": 312283,
     "EA3VgFDFaiNc1k442JoQNhijpy1zYTGoFdZNpLTFh91c": 17500,
     "EA3mrKaw33Hgxr9g2Yg2Xd6dXYJ2zyF3X2gqsEHRPiTe": 5055,
     "EA5YGNNPKvZ3GW7GNB9U4kEgY4o8gGMdDEDThTf2BFkJ": 100,
@@ -229930,7 +234859,7 @@
     "EAetV82Xa4oVuKZ6ygEpz4SLhU3uziCP9qsVmQFukfBM": 5000,
     "EAg4SXkh4KWBqxzYvqhKxHDtavovUSvrQKgjBXNgswVC": 100000,
     "EAh2mwV7dCzSy5PAQM7ixqXszuRAeYjoEPf5b55H1xRU": 16000,
-    "EAkpYAMEtL5Sc6sZPZWrPFMM4gRsy69rdMH4bh4yNDM": 180680,
+    "EAkpYAMEtL5Sc6sZPZWrPFMM4gRsy69rdMH4bh4yNDM": 402180,
     "EAm8xWsrtmYVB9tueQpfrz8NSsymFUamb9uJvG1azXXS": 31000,
     "EAokhDgutd2GgiSDotHfsMaMXRRhvwGSiD2bpg1255ET": 5000,
     "EAqPgdcyRC1SexgHgdBH8HxSV2gcksPgPk1Ji54aPGY": 25000,
@@ -229943,10 +234872,10 @@
     "EB49uscYbfhZgQvL3DVDXoHNqEPHpnBa42JtxbEy83fy": 42456,
     "EB4Z8r7nGtnzG4uvLLQF1PEXv5fpbyBGQkkrSoF7SUJT": 246904,
     "EB8KLDGwsKXPskHKYST3tqZQsvHnzPozLgihVqaxJG3f": 5000,
-    "EB8PRHGhm1yEXmz8FdqAVDcFq4YEErTzQ7iRH6Ztpduw": 13200,
+    "EB8PRHGhm1yEXmz8FdqAVDcFq4YEErTzQ7iRH6Ztpduw": 21850,
     "EB9yaAf9jxKueYBiXE8b9oNp4siswgigvSRiW6JE7D9T": 10000,
     "EBAwVdcFYr7nVQdyGHFFgyxEfUNE9By9aja4qzaqhAMD": 18200,
-    "EBDD6wwzLoKqjw2kkwbHm7i8zD81VRm4Ru7peqNKeu6G": 350556,
+    "EBDD6wwzLoKqjw2kkwbHm7i8zD81VRm4Ru7peqNKeu6G": 279100,
     "EBKsJcPEmTH1mxzLeporA49xGenboqNRMwoRMQtoKJgv": 64500,
     "EBTStygGwc63a9AJCV399WSKt3BneS8W29mh8cX5KGtd": 100,
     "EBVfRhiyNBD2zUtgnVDJAuSTUi6npSGRkbP9Aqa5MigY": 202400,
@@ -229963,7 +234892,7 @@
     "EC23377Rkpsakk9Uw7qhx7MQLaefenYaECEVP9NUYPuP": 500,
     "EC26CXHSfDuZX2pTPxUfYsvfiQpYqjnGfhMLVC8BzVL8": 1059,
     "EC2V2heZoyA7zfH7NqtNS19UL2aVU8EjSYHgqrw9JDUo": 10100,
-    "EC2setKW7fRHLGe2whY7rZR3Sh8H9hyjP8y8ogGvMhA1": 165,
+    "EC2setKW7fRHLGe2whY7rZR3Sh8H9hyjP8y8ogGvMhA1": 10154,
     "EC325kG3nSJJqVJ7rw76X43tr7T2L7w3k4LckvhkVQZu": 8000,
     "EC4DcuLMq2BUADAqJjnCRcERdWemoZi4M1t2cmBBAhmo": 100,
     "ECAD7EDT4ifpDgDkmhgANW4vFeAD89CpyUyJQqkj11HF": 5151,
@@ -229978,7 +234907,7 @@
     "ECsTCSaaE9iFzD5NJqj185GtBFm3HeRyKfTqcLoApKJe": 2000,
     "ECvhf3PyV3UwbbxWT6bAapKTWCEBD3dy4Ps3fcog5sKL": 130000,
     "ECwaBfwCL1rLhnZL4xFUDeW3sindy6rMkhW2cdPtGkZw": 20000,
-    "ECypLKTShd9dyE5yrk6E1SE3iPQtEtPSX8EYD2dD9JiX": 149734,
+    "ECypLKTShd9dyE5yrk6E1SE3iPQtEtPSX8EYD2dD9JiX": 164179,
     "ECzZfVhxQL1ipnaMz3GbJpK3d7GQbHX4aMMCRrPWeepD": 900,
     "ED1dNVtzhpEUrNWPmsG1QBGa1yfM14wX6uVoYknNZTFT": 2116120,
     "ED54TXa9ffcwLACm83FrPP5vibguE2DVe1o7quv4t1Jm": 9362,
@@ -230000,13 +234929,14 @@
     "EE3jmWsERQP2yhLcQGXk7WEcGvkSskWkevmf5f8Jcuw2": 5000,
     "EE7tHZd6aiuthomyWwAsZLCsFKMNLxnGkGmF72hfxvEr": 8600,
     "EE8HvMckkM1uhUr3fJns533MhQ7ADJn6sC8t6zeBuQ5u": 4100,
-    "EE9mwv1Qnu97v26aedGRJd4QxurKacxoXNB1fKdCBT9o": 119400,
+    "EE9mwv1Qnu97v26aedGRJd4QxurKacxoXNB1fKdCBT9o": 141400,
     "EE9rSDwUsjJurXLN4oU3GGKD2rz7rn1T52cWxPbuhQeb": 1000,
-    "EEDk5jo7JicJc62yitnxLw72uXJa8Hpmg4YoL3VoRHEx": 4800,
+    "EEDk5jo7JicJc62yitnxLw72uXJa8Hpmg4YoL3VoRHEx": 5878,
     "EEEjQhC2nDbSSMZsLXECqfMjoFiXLzYzRxJ4zcpD7mqw": 2000,
     "EEEjguavZzHw2qJLkDibp6dmRoR3NAcN2HzpF5iDJjA7": 500,
-    "EEJFtUtBzPruuj9pZwYUyXVe8ikDrDw7gGGdyQkSWomR": 74118,
+    "EEJFtUtBzPruuj9pZwYUyXVe8ikDrDw7gGGdyQkSWomR": 79218,
     "EELmVsCZAV5zVA52mFDUkWPJjQQF9VDk5WCLJz6YqRmB": 10000,
+    "EERF5wrfU2DohJQjvEswMoFhmWaKXjJD66rYrXASjTVi": 26500,
     "EERPMLBjNZgwPf4ouD8CPAGPsQE3gAMDjg69FJ3ynsbh": 35000,
     "EETaLAE5im7Wk48wJpsm7o7jiA8VTcMzkjuweGs1G2qu": 4000,
     "EEZvJ1LmP3BMR2RxtoHVLaSAgJFZWjmxamsq4MH6MpPe": 700,
@@ -230021,21 +234951,22 @@
     "EFQmKeF8w843HDZdmc7WsoxLEsPziQfUSytyvHZYsHKp": 100,
     "EFU6cRdeJSqAVu1WDTE5gQLbYRno3vh8j6PJFyLK3Vfb": 5055,
     "EFVa1xMyiLELG7SGE6Vh58sCxVC7Zfq6VdjUD36nENxF": 16000,
+    "EFZGAyTCKpM4Hg1HpDS7KK3nEV9Wv4HFsH4caEMoD9e": 8800,
     "EFZsvxes6fnfrPKuhKfcYwmch8QTcZjHuaGj3SxTgT1v": 86000,
     "EFaarpfYjTUmeJVviBBFJ6cuTbdXDJTgZrNL8B8zfbNM": 32000,
     "EFfigNHBLkdSDKSAZbkUXN8P5HH1Gtn6nN9v5PEcTKX6": 100,
-    "EFgaVvVmjKzFCUmdepLgoxyg5mumV6fZSzAxm638fAc": 500,
+    "EFgaVvVmjKzFCUmdepLgoxyg5mumV6fZSzAxm638fAc": 12000,
     "EFmEchvfmCKuKvY6BTULrJ2kQoCxpX45PUZmZary4Sjt": 10000,
-    "EFr7LAYXULNPQ1e9WU9bwtXjqpffV1WpKutqnaRkGMFh": 22100,
+    "EFr7LAYXULNPQ1e9WU9bwtXjqpffV1WpKutqnaRkGMFh": 78100,
     "EG4qXpH4p8kjCLXXECqdpchVC3YGZSF3uGTvyzKshRLr": 100,
     "EG568DBtujxjmf3rmhgDh2rvhvK6BhxSQzVGy1PVNrPG": 80000,
-    "EG9RFaXEKWU4iTw69ARa1AayJQq2iCTxN3sWiJKmgFQk": 353607,
+    "EG9RFaXEKWU4iTw69ARa1AayJQq2iCTxN3sWiJKmgFQk": 608607,
     "EG9n6TRLnUosfYKHEcS2mfun8hB7NK7gKTPGigcP5EXn": 22236,
     "EGDwkbVP3hJ9W37FMPEwWouHDxEbmV8BFDvQ738HbuSC": 401560,
     "EGJVVifhyHMooHLzYq4uKJ1QGuZneFKjvHCmNdKG3XvH": 11000,
     "EGPY5K57hz2dM1WavSybZB5CDB2rvAvJ88xoqmuopAst": 14000,
     "EGRi67oBw7eFoHZUkY6whPghQX4g7aduQryr1yxqi6gs": 44900,
-    "EGRjsF91QGmJZW9YQffrg1bDtNSfKHdmQmKrjyfcUZ1q": 18400,
+    "EGRjsF91QGmJZW9YQffrg1bDtNSfKHdmQmKrjyfcUZ1q": 21700,
     "EGTHEzpMNLszp4giFL4qp632UEZHdZPLgJCpbv7WeeLj": 10000,
     "EGV2fELezok1H7w8VP7m7LUS6ztxgpsFJcaj9Qp1cd11": 20000,
     "EGVbwBbx3kKa67i95xr2sPZD7r8QEi7R5XE46bYmM3vD": 54275,
@@ -230051,7 +234982,7 @@
     "EGsrfwjZ2wJWQoQZYcZ85huignx1JsqJuLyEjkEjFPZh": 400,
     "EGv3XLFVc2Sk62q86o38eDV2pJzbhw2TEKJ6sTe6WCeE": 38600,
     "EGy2c7DjZn2jnX2fqkQo5rEJRsdWefpdaagt7iZE6C1": 100,
-    "EGy2c7DjZn2jnX2fqkQoj5rEJRsdWefpdaagt7iZE6C1": 323192,
+    "EGy2c7DjZn2jnX2fqkQoj5rEJRsdWefpdaagt7iZE6C1": 319392,
     "EH1JsFM8GMTFeJzTixLhzAR2SCDeTtLSZ3yXeUfeYLdU": 1011,
     "EH3KLN9eScddL3hLYHXutWwU5Fnt5NCZTdyeEcDBeK39": 54920,
     "EH5DwhLw7hBTH6DibmzDENimQA5DEa1SqVo6k8puo5yi": 1500,
@@ -230059,7 +234990,7 @@
     "EHACfCKgbkNGFmRqs4pdUeM3AU1y1CSwPxXo8di3gJpb": 30000,
     "EHFpUNC8twUBAxtHxh523zMAKE1bgE9M8vGWrQfW6jAo": 1700,
     "EHG814arD42U4aYS593ZqrEgWpPDYvjghAFPBmRQyr3E": 600,
-    "EHHcnfHsk3RsdKJGZ3gpto13Z5FxtrJp3dpMtadvqAfK": 25277,
+    "EHHcnfHsk3RsdKJGZ3gpto13Z5FxtrJp3dpMtadvqAfK": 51377,
     "EHHqkyrZ1ktfoC2bYUrxWdheCbKapb1iA9ibtwEBhvWr": 10000,
     "EHN4kq54kk31eypvuEkaj7fhQrEFKafLavsdGSjTbyBs": 50000,
     "EHQd6H9xuZ8kDE7YKMdn2pDbJfCtqMAzpsmEnG3A4djo": 9931,
@@ -230067,7 +234998,6 @@
     "EHXRWiR7WHJewGqdgjNSDKDeJ82rpNvfaS5ixowcFjmV": 1000,
     "EHa9DQ9Pq9ChGDpGVF2M5RasJusA2iMvaySkVPScQxzz": 1000,
     "EHaRxfPzgQDBmMjxcKWNoECjpnnWcqb5Mtq2c3MDHkQ4": 1032,
-    "EHdAvozV69hdq44EJJhDbQyReUhz4m3DR997uPrM7Pzg": 10500,
     "EHdo5oKXKcXe6mmcESU9hPgwY6m1rXq5ffUSUnSsSDYo": 37200,
     "EHgA95LPR4neznmgaWmDEoLZeVKJt8oz9WTy6HwtXFFi": 2000,
     "EHgV4fdTDTvGRyxfKb3R5LLoFjAB5EWP18g2L3ttfTui": 41540,
@@ -230075,17 +235005,17 @@
     "EHkDDTYUxiFtKqu7PR71PooabZvn4g9QrpV9giCAXm6Y": 6601,
     "EHo4e8Y71bC4wAh5KcCtqjZtodWFt9H63dTSQNSjxSnm": 30000,
     "EHoR3Jjt4dHEdZNZ4FjPb47Y7SiftcWRqAr315MxPMia": 1100,
-    "EHv67gGNZQs7AFqjMzAX2r7j7jycVBjoUnMMKzBBMU5R": 55800,
+    "EHv67gGNZQs7AFqjMzAX2r7j7jycVBjoUnMMKzBBMU5R": 13800,
     "EHw4kbgpcHXJQgQ3bhDnjWWMJT4Xje6egALgNKceQyBR": 209531,
-    "EHyW4npAJHy9CTRH1g9sJqkJbsEtZcnRxdWLFoFb4naC": 30800,
+    "EHyW4npAJHy9CTRH1g9sJqkJbsEtZcnRxdWLFoFb4naC": 26800,
     "EJ86XHtXReySLFYCwWJf6T1U3wPkua8u5usKMqzC4iRf": 5000,
     "EJ97aMHcGrfNz1jvVgbZMg8iBTXP54ZGFchZR4zndSVr": 10000,
     "EJJD7ry3ux8UKw2bZqSGtCFLmzzkZma58DMapL3GEX5B": 5000,
     "EJMk9eXHzkdFrhtG96VSdcUJeuBjsWBa5JpZMvTsMoca": 1400,
     "EJSQEfeeVkKbYqBobCvfuAXSYA82vZbcuqJxzxsNrnSJ": 1525,
-    "EJSdNE6dZ88JvKmuqj6tcYTFHxuibXJAT4WqVt6fMmaj": 48500,
     "EJWJt8By9UjLFs8eswkbs6voYxqtFwpKJgMu2kTUwJZH": 1000,
     "EJmyk1uMw9BT2bSVAEvRMc7j2aATdPUFnjQSZ9NgHmFV": 22000,
+    "EJnPy5aEMB9sq4r7MvLni32za5HbAwNSxwvEkCGyY8ky": 36100,
     "EJommZga3e3VwvHopK1ENWXuavZyCCSL3wmp5JbwDNnn": 5000,
     "EJtF83TSX9yfxnbUi9RDJHtv2MsHqtEbuaEqYs29Tcu3": 8900,
     "EJyGUSY7YJwzAEZ2aA2hEcSRwCvkEZ5WaeKhGDANtcwd": 700,
@@ -230100,20 +235030,21 @@
     "EKVYt2PcDKjEx8VUedEpxCJV4KqNNaY4d7NC1y5icuRG": 30630,
     "EKXHKbUAQWBMdWsg6J8mnYgkuyKbThSTmVAoGGiuKnBA": 1500,
     "EKXWP1RaSswUb2iDAZS5UaR1Zdi2xHSaig2kEeTx59Rd": 315000,
-    "EKjaEuggVKKFy7qzky9u9whAnHA1nXwRCBNdwGnuZeZe": 11400,
+    "EKjaEuggVKKFy7qzky9u9whAnHA1nXwRCBNdwGnuZeZe": 17100,
     "EKs59eVswdnFvoAyXq49xY8CLxS3jqiTLC3j4EUgupef": 200,
     "EKtN9dCjMTMiqvGMcpsPxC1gVmje1V4myYij6nuNJmxm": 10000,
     "EKtN9dCjMTMiqvGMcpsPxC1gVmje1V4myYij6nuNJmxn": 18126,
     "EKwXSMVvfpCF2hZ5w13HxNWF98q3apxCY3k1zKRDo1yw": 66700,
-    "EKyz8U6x9QnY8wiWS4upCXPGWiYbmgoHwxEhCYVhmf4r": 804800,
+    "EKyz8U6x9QnY8wiWS4upCXPGWiYbmgoHwxEhCYVhmf4r": 854000,
     "EKzzQhiv4LsvfaVqmEbLNqpJmZEzc4meDEQgiHdEVkxM": 16000,
     "EL5ZvxUDx8g4NiBcmJ9bMAS6HjaBdNJinZpycGrFuiaH": 800,
     "EL63Ajy7P2dtsKxcCDmpbPxBvV4SArfNLfiWTjX6rZzz": 22000,
-    "EL9FBzbYAnLaV5jQ7qEsoTxdmZT2C6TgSYv6Uw9ijPxr": 5733,
+    "EL9FBzbYAnLaV5jQ7qEsoTxdmZT2C6TgSYv6Uw9ijPxr": 18733,
     "ELAXQTLPdF2irVZf2GdFAETswgnsyqDMq2gN6JYrkfMp": 200,
     "ELErx8x8q8SAQgghCprAJ2Y8HichmF26DWcocD61cJXP": 5000,
     "ELLuJFryzrCfVLyc6r6oB1TiVWvTJAt4BLosKcD9rgVG": 15000,
-    "ELQijo9FrDF4KvpqjoXxVwnCPhbSZ6rmcaNeqyh4kTVS": 400,
+    "ELQijo9FrDF4KvpqjoXxVwnCPhbSZ6rmcaNeqyh4kTVS": 12650,
+    "ELRFZerJBbYe1Z8uapH2nN311Dm39zHMojUrSN3b9cgV": 2035,
     "ELSMksUivq7AgS86L87Whng8nuDum5oEJaa6hHGj3zo3": 8800,
     "ELTrBuGvBrf5mqitH12LpKH1uZ8VXPAD4Pty6DBmk1pv": 15010,
     "ELTwZRQb6afDhwNaCM6RssqVY3nt2LJMZjcTwRaHCLvd": 62400,
@@ -230136,6 +235067,7 @@
     "EM8Ud7NxWexMnJAtQca4BmV8c5jE1FFLTrxvPGhnDUxw": 58700,
     "EM9YvuZhDhSEvrcrPp7BdkVScZ5ovGGtgMm5hfad87SY": 38500,
     "EMB66QQeDUNZS2ThH5x1UizWaA8SSYLYi5pjUu1Gph6u": 200,
+    "EMCM92P4f4tQvDVNQVRmGgYd784Vr4f75HzYEMuhb7jS": 5020,
     "EMD6CUPb4rtGhGpLZr9MoEtQakDh2HVykKC3Dy3ZxiJA": 60420,
     "EMFJTgwEHyYpdwUECavR2jBzpjnPJX2tsxkBhVzhwkwf": 100,
     "EMMGzNWuh14jvvFuWpqizwYcz1AbJPQQutvdyXvKEHV9": 12000,
@@ -230182,6 +235114,7 @@
     "EP5dK9pxqyPsJSmwDxn69VJtUXjPSstB7uSDUL2f7NcF": 3600,
     "EP6zosCQ3N4UAX8hbWNA6hXz8Dk7ku8WdiGLDpiciBG5": 26731,
     "EPFoeVEiwhNGYXYWjeoGe1iYKzc7te5ErvFGuZU5Z2Zr": 5325,
+    "EPKSGoawdPGHb9NoEt3dxRhqktFxFFiq52EHqrtBKp6B": 100,
     "EPMPkTdR5Msw34YVquMjyGW9pxRCXNgWnKcd51tQUpfg": 5000,
     "EPVKDZnuTkLZ9BSnru4dVppvk6246h8wHg8oMQwoyhtQ": 1625,
     "EPZdSdnhVJ1AVyRXSeZRxo4waGkjvBXrvLLH5oEQtMij": 6000,
@@ -230200,15 +235133,17 @@
     "EQ7q67H367LRf8XC79tNm93GC5cCKT4HRpy5iceKTKkM": 100000,
     "EQEaMDUMXTJyvctYbhGZBmxw3LsGaBE8cVkD2SD3XUY7": 20500,
     "EQEnkudA2K6DQN88mnhUdBR4qFaat56Z3DY7rWrSr77a": 10000,
+    "EQG5cuRSPRe4A3o5Km2xYXdxyDyzfa5PTp7LqcTuFEL9": 5000,
     "EQTZ9Lc3Er23ZQPpvTvvZpnUoCK7z7kMSfrxweuRQyzn": 5000,
     "EQU9VNfBozmjt8KgMsaESp7hqVoD5Wyn1UhMwFbPTkSh": 1000,
-    "EQV1W8AibTf1aER3oCeDb33mk4pyYTCbsgoqz2hb4Qbs": 59420,
+    "EQV1W8AibTf1aER3oCeDb33mk4pyYTCbsgoqz2hb4Qbs": 51677,
     "EQXTxJQ8gQrxhCkZY7r8wrXxva9hasCZtGnFPSCa9Uq2": 200,
     "EQXoPqcWdeWKFnzxVzWRhCtCWG4Wnt8DRhfwWyjQEfx2": 2022,
     "EQa1RjZ992qvidRoqEb5jU8uhMJ2Dh19MPnXAQ8UTob9": 5000,
     "EQcvSQDqoBi7rGCqZForVUGoLHVtD531E3naxi6xZ9v8": 69850,
     "EQdRrjsmkteDqDarP2jgN48fjg4kk8KSjFvqYzi6bDxP": 5000,
     "EQdroahk22pTCJJSPb5fxZqfJr2TAhRNN2DeEajXeP9X": 2064,
+    "EQeH3bx3PwsfawfZe14LCL8PGJ1jiPxFhD2DqKS7mQ5H": 442000,
     "EQfALomR5zDeFxCmP3a7Mv5wjWmfoFW3CdR5VyGN7V8T": 42579,
     "EQhEryGBUtKcBYijZaYUU4N2a6NCivgp6kBBv4BxiiNP": 153500,
     "EQj6viYcLUa8p8Cmi69nCkThTDRzDdSKMwFZWBnSkTHm": 90000,
@@ -230220,13 +235155,13 @@
     "ER3b962raiDPrHKmLrQWU5v5uMUJ5cnCECkVxJDgswmj": 100,
     "ER8Vkunx6ABhuFCkd1oF4gXJ2xJETixAa8Ttowq7FYxJ": 700,
     "ERGgS6kJZEZPSaPZdXR4SeFXEjcPmxmRiztPqQX5cEt6": 10000,
-    "ERKbYMS9pJCsc4xTgdWYa7QiFWkyXmnNjGM9CcWfdGGX": 599922,
+    "ERKbYMS9pJCsc4xTgdWYa7QiFWkyXmnNjGM9CcWfdGGX": 452922,
     "ERNK46pYeUmN8f5tWcuHJsiH5opAEK1uPatSWc8newj9": 5200,
     "ERS3NbfEW4WPMns8bbbwTy2NAAfJ7GF4c1t8ftwZB56A": 1000,
     "ERSeD9ihnmRFuWh5nceotZozsk4EPqxz5uk2jBCsLpNb": 1000,
     "ERUTkXS94r3sZrD4CRNTYt9mcN9wLkKbcZQbQKGMrrVE": 18200,
-    "ERXS7jjeq8rt84KXYeKqQ7taVLQX5cH9tuAADqWzu7sU": 203799,
-    "EReX4ArY1y9FFXaqB8rpZdzgykx59XAxWm1Du66uhC12": 15000,
+    "ERXS7jjeq8rt84KXYeKqQ7taVLQX5cH9tuAADqWzu7sU": 156299,
+    "EReX4ArY1y9FFXaqB8rpZdzgykx59XAxWm1Du66uhC12": 5000,
     "ERiHTNcZA6PGm3GzR8zBUwVzZDSxjbCgcKyZ93zKhAG4": 10570,
     "ERiMe5nt5LAT5jJJeFCoFW8nn4XJXo1uydGy4b5TH3v8": 12000,
     "ERkJKgCUSkMBuoUmDrtCTrLUd4HjCaqcJdrCCSF2i32h": 2000,
@@ -230254,6 +235189,7 @@
     "ESb4imJQD1g3WobzveWAQoBNr2dsZKPh8P1dGNqi1J1q": 138677,
     "ESbtYTALa2wxcoccBFp6KNVrcVN93ZSDdFhdzeA8ZWiq": 100,
     "ESdjXuLoe6eHN2vMb3j6sz6B3WBnPHiD4ibHx8rjnuYV": 11000,
+    "ESi772SxzoYNVbrMZjqPxMvrcypUHxbnRterEjKguxA4": 5340,
     "ESoH1jtEUAFdXedu7fxNot3a85pJCBjkq8eE8mLfAM4u": 12000,
     "ESpk2e2PDMZts6WcNbVyE3BD6EHqfDZwbFnxwVrjtRtT": 7500,
     "ESqaKn63auUXtM7ZBxKD6bCG5ACikN7jqgj5nUU6uEdj": 2390,
@@ -230263,20 +235199,22 @@
     "ET2L9LA7iSRSWLAC2G8EFt1hwYQ2ZgiNxJAaAFZHFSAV": 2500,
     "ET3coCxzo114iWVgTwfp8WbvSttoszCxUYcngjcE3SRk": 2000,
     "ET7tmCJ4EazN9tgdFXMQzYzypDFUdiqYq3x23tmY6KZ1": 6500,
+    "ET8X6msuN1evJZBjeoFyuLnnwp53hHxYvwYjo8jntQty": 8000,
     "ETBkLuxLheHXxEEQ4kKZxdj4MJdtED8gnTFeeaWQbTCt": 1000,
     "ETDe3q6eLQTPxg6ncHxXZgo2fjWVX7R2v2DgqABzGeDU": 1042,
     "ETEVht2K8aRes5bJ18nvHrnhienRq5Bqqoa4F1WH5JAM": 61000,
     "ETHKEZ6m4HmXEW5W8TKCPMmdsUHbdEK6XcRADZorUHb8": 100,
     "ETHvYeJN6pSYbkYUJcKz27ZqQKKaJa9dwMoWZK1ChZcR": 100,
     "ETNFS2AgWWQu4ibYaTLDkJhUoktvFHxkyvRn5GVE3Ush": 6100,
-    "ETNgmgxY1YBp4XRi3TimfFj3QoRe2xTh3UtLWCvou4v6": 3300,
+    "ETNgmgxY1YBp4XRi3TimfFj3QoRe2xTh3UtLWCvou4v6": 1300,
     "ETPns46mB78iExRriychgt3usto2i9frfDwA4pzQ7GBf": 9000,
     "ETQpkxuLR2JUbzkr2XRBf4fkir5BGtSAXiWstT9XdEdS": 3000,
     "ETRQZdCr5LLJmkpeBSkM5aQsMaHEnH22RU9wd6ZgXAX": 10000,
     "ETRQZdCr5LLJmkpeBSkM5aQsMaHEnH22RU9wd6ZgXAXZ": 181900,
     "ETRuihdfCXsRBRYmDYCmf7azEixcQjmbbXNNs6LGxidh": 10000,
+    "ETS62bf8GLWV45vXMpyXxcwVTHZLcZCxGATUPG5Et3ug": 5000,
     "ETS9dD5P41GjLEZVP7JcVtWhVWEDHhGG3DbqDwpjGc3X": 15675,
-    "ETUk9UqbFHn2MD5sRBh2u7bi5iJinjcx8PE47EuRS7Nv": 454,
+    "ETUk9UqbFHn2MD5sRBh2u7bi5iJinjcx8PE47EuRS7Nv": 7954,
     "ETVDAZFc1TefEKfUxMTDNF8Qm2QzdutDeVEtVmeMnF2q": 5000,
     "ETkGfW741PZHvMnDY7XSvdomZcWb2wdfnPk23YiACHsy": 125000,
     "ETmRDQXE9FAnRtz4HpwmcLX41CkwnfLZZmeBtHCGNpST": 1000,
@@ -230287,13 +235225,14 @@
     "EU1rmASdsMACt1T77tkoYd1sfnuhBTtuPuepeiqtCR1u": 22700,
     "EU2QH17GTEi4q6TY4zmT8s8yFHhVmEQSgYBVtaCLjXDQ": 30500,
     "EU6nktUa3bwB5rsQxWkYYHtVQynguD8vTKbLBdPGyYMX": 10160,
-    "EU8niXDoyzZ8Pe7DkYFxY71cyX9h5aojmkfjxgY1y216": 132900,
+    "EU8niXDoyzZ8Pe7DkYFxY71cyX9h5aojmkfjxgY1y216": 148400,
     "EUMshgUH7rc6w11hWeEpx5VfCkgWc8pYsi4zNghioTJg": 4000,
     "EUP8yeGipdcptMLvJg1sFEGhsEbC2GQDqL92qv8g4oBk": 1355000,
     "EUQHsWU6QjTsWsEHTwqLUrpeNNkCDHtMbaGCz2tsqwGT": 5195,
+    "EUZCXhHVftgKw6RC9T48WpxAr2yJ214uGdQ2yyTxj7NN": 24900,
     "EUd7LpyAY9yjCmB6poCLg6AznNLvxMaWweSqkXjKHyqJ": 102300,
     "EUhjxjTQ9kszNQAmvcmQHt7Kr3jctRiypN2KhwgtfkUi": 100,
-    "EUqHUfrzEnXZZQpLKUMPQwoY2TQPD8H8yUitFmgzaiEu": 7459,
+    "EUqHUfrzEnXZZQpLKUMPQwoY2TQPD8H8yUitFmgzaiEu": 8527,
     "EUqprSef8sGA5U7Q1qMp6QD3nfMoUGfJbJSrTVLBGvfm": 5000,
     "EUrRNVvz7GbbqSV3ijgp7bfbpPENa3EFmXKB8cNabqfk": 1016,
     "EUt3FqkmpUg8UdyrB2dGXtZoTo7GRXadEkHagL2q2AKb": 20690,
@@ -230309,7 +235248,7 @@
     "EVt6qoPekm6rmQiVAdcQp7zkidRVbDjoGiXSZuf4dV8u": 50975,
     "EVy8VmCKouim16EFNbXc9seYypBSFfYwZRLuHLvKN3tW": 30000,
     "EW52ryDEiNSqgoNK198sUd1Ni3Hwc3yvH1s9rSaDY3C": 1000,
-    "EW52ryDEiNSqgoNK198sUd1Ni3Hwc3yvH1s9rSaDY3Cy": 3935356,
+    "EW52ryDEiNSqgoNK198sUd1Ni3Hwc3yvH1s9rSaDY3Cy": 3985356,
     "EW52ryDEiNSqgoNK198sUd1Ni3Hwc3yvH1s9rSaDy3Cy": 100,
     "EW5Ry3yVhebWFZUBQqZNWGSNm4G85z3qHzdQjfCpKMCJ": 1000,
     "EW6q3cYgS1mMFjyXtdxor5yNUYY94Y3sk9Lfu1n9Y9C2": 59500,
@@ -230341,7 +235280,7 @@
     "EXTzYWX3cQ2XYqDiH4ek2GrhSGa8foMkMJfypgfQVaSP": 5000,
     "EXVFss5V1wcS8Xe6tvq5cx4KjZcSgxPKCiPDTApSZ6po": 900,
     "EXWDwXqqG7XrDybwmAeu9iuAgi9nvvZJsucSRaNDHnXx": 5000,
-    "EXWSm71W2pcdGSkrtqV4njoz5UwAk5XrbA3YBPAijGEK": 9500,
+    "EXWSm71W2pcdGSkrtqV4njoz5UwAk5XrbA3YBPAijGEK": 10000,
     "EXYkQHgya49vfRtuZnKevSmG2CjaMzf6FoTJg2hCPBag": 11200,
     "EXc47ZSbgRH4psES2wZPgRpPDUv3iumgRfLdmEstHkyK": 200,
     "EXdGuDDUJoVMus1T3N31vEk7RtKRTt3DfYtopbRKaX6i": 1000,
@@ -230355,7 +235294,7 @@
     "EXxVKvuRAy6sA2pmccram9rLTTDiqx3Djh4KC83CKBcS": 15800,
     "EXxYFjWKATX38Lt5n92CC5BmwRXWmPx1WyUJkFJMVTbF": 2000,
     "EY5HnccmuNPLFkfjj1Wr5byjD8QWwYB61W4i6iXMskRR": 27500,
-    "EY7L4QTeQbruTZvcnUstTrenJbjF8qcfHikJzfP5JRLJ": 326261,
+    "EY7L4QTeQbruTZvcnUstTrenJbjF8qcfHikJzfP5JRLJ": 320261,
     "EYAiDGqFYF1uv2y7hWJuXoEP3kc2yVLL777nmcC7hoCk": 5000,
     "EYAm82xZgtW7p9Maz5sqSVerTtxqbxouodJZrGcxg5y8": 14000,
     "EYBZe6A7EJixApCKjg37SNDqBKMtug1u8yw7YvqPcqow": 1314,
@@ -230372,7 +235311,7 @@
     "EYwitNy7myx4ohLrpghSwYTTTz4PVuQKToJrurMnLKgh": 21000,
     "EYxZFCMy4ovZiK1PZ8WmooHo5L8TgvQTZfzDeZWpzrG6": 3000,
     "EZ3K8waf7nF7eW1epvhpPfRhkYUoDT6T1sbThSoTf91Y": 4653,
-    "EZ3Zvv1kn8Hh2MTZx8bgFEPmKAC6BvRDQDBW7qJrLffq": 86900,
+    "EZ3Zvv1kn8Hh2MTZx8bgFEPmKAC6BvRDQDBW7qJrLffq": 86600,
     "EZ9aiQq3HH5vSoUxyy4tBGRnxHdEZiKEfwTsPXqmaCmr": 42700,
     "EZAVSFXTojgDbeNmBmZvn6PmHKuH4mEGbZ2wNP5VHxSf": 732,
     "EZB5LSBnAc2B2SAt66qawZCqRfxFNAkxYcCf6pxKTaMh": 68500,
@@ -230399,7 +235338,7 @@
     "Ea5FUEnSfU3eHD4nugnFdZoyw8Savc55Xj7ihSS9xqyW": 8000,
     "Ea6kA32P4ynNoLNkuFUXoNMzN9bueB7bmMnTxTUdx181": 63000,
     "Ea7JEJrx6PZtqy2WmPErLk8K3ECa9f9ht6d9R5C43Egf": 80000,
-    "EaGXPJYWeGoDVA6bV94BiP6ZNS84hQ6rux3LUXAgSbBM": 52500,
+    "EaGXPJYWeGoDVA6bV94BiP6ZNS84hQ6rux3LUXAgSbBM": 7500,
     "EaNfW8wU5WYwXdWTKTgNt92tzQeTNUf9su9AwZ6hQqns": 5000,
     "EaPekh7AToGB9vvewvfcBnSkbN3yAGNxJAKtrsEo8wjH": 100,
     "EaZDTwAc8JeeyYgJuNoMmwriCG6yWunZs3TPboLwY1vW": 5000,
@@ -230413,24 +235352,26 @@
     "EavTxjL2ud9hn3pvrMQmR5kqjQ9TjDx1uB2FTai231E": 516,
     "EavVqeyC3rkXnTzahzjc4mRfDJ3rgq7abSAFvVwxGUrM": 5300,
     "EawAjsvQnPWAdxshMjhPnpQTXN3GAmNPsyWJ7P23R4Ko": 1500,
+    "Eax8VF3YBvTgdk7v57jgv1aRNhqSZiqWr1wTDKTW1v82": 5000,
     "EaxjrQuZTydkCEMtm2qEFzzy4B1VRpvKxh4YquCA2fdy": 7000,
     "Eb2QHr3xC2qrnX5X34YhpXE3kn4SRbhEMXuGqwZcoJR9": 5000,
     "Eb2z87QeeC5hXPu4rx9RaeEjbvqGQ3YQBrwxsfX1cTA2": 14714,
     "Eb6En3fxFLNtWhcyyXzLTxRCFYmLGrFYpGxYSgeME48X": 5000,
     "Eb6XpVpknSxnV5oEau9wYVvEwwqbHFfEVHSMPtiFMnbJ": 5000,
-    "Eb983cWmnRBVhtGMEHjmgtFTL2rhx795c73ZVr2X2xYN": 109500,
+    "Eb7mxewd4BNj4UUWEmtxRTdzH9AHA1zCM38BdA86UVTA": 9000,
+    "Eb983cWmnRBVhtGMEHjmgtFTL2rhx795c73ZVr2X2xYN": 127500,
     "EbC4g3WCxb5sn15MBy5JwUvVjDDnZCaL3m65hveAwJVn": 1000,
     "EbEdKVmMgy3Cfxk9ANBaEgas3KgGPk8rMUe2YRfNuJZG": 2000,
     "EbGpTXrhZqXKQez3P8mpFXEeZfmHjs4mmnNWHzGKGDj9": 4347,
     "EbTq6xab7hqpQG1HFdu87ozd4VMepyGkRLYKHk3LYLqg": 552,
-    "EbUXRik3bgSJD5CVbxEQZZJpyTpzYANHjkWbitKWi7N3": 57300,
+    "EbUXRik3bgSJD5CVbxEQZZJpyTpzYANHjkWbitKWi7N3": 57900,
     "EbVp33EquMiYLz8dXymqFUXKiddq7WEiwV54yAFqSmjc": 169220,
     "EbWCV8zpic9caKx7gsuB9FnCz3m4mbswvhKm5g11bPin": 800,
     "EbizZU98mJCAq8MtgBLpyMWgC5BJTcWMkQXs1bk7rCZM": 11751,
     "EbjnKXxhRP2f9V5XgEx2uK3wsBuAovnPTPVcpuR1xxjp": 16826,
     "Ebkaw49eLYjMa4D2ixL59ksecSQG9Chu6TmKomFd2Bbn": 37000,
     "Ebq24sX8ULMTxn988nMpZiKRoTA8oEpCRAJZGksCj7p8": 500,
-    "Ebu4nQDdbvZjcWY4qSDtd2uSkz2ZmQPy7Z75hG9k5rnH": 400,
+    "EbtMznMrLAvFd3eDEnxiMyyjKB4q7KbbMtCQyeCJrGSB": 9100,
     "EbyEWEqTAsQTjE6kYZCK3o4UZRzPdFk6MBZZBh4ri442": 50000,
     "Ec23dW4mm1pbUZz7hEd6mHUWYKXpDnNGgqmkCwQGD5VD": 5000,
     "Ec2LoYENTTLAuiv3s1iWfbYKbWAjqNw63kRtX3ESW2oR": 32220,
@@ -230442,10 +235383,10 @@
     "EcP39HH8LixArMJgc2uRaVbVes7zkWPtN96PSzszxZNo": 10000,
     "EcQ6BibpbVd1a9YoHi6vW3zNGGbG1T1E5WsfP6mbGN3k": 31500,
     "EcS2Te36JKgZZQJ5vUsJvR3Yz3yyiL9UgJLrhxVApVsm": 18600,
-    "EcTrWQ3hAvNmEeN5bAb2zirDzG4rYBasAyarNvXZhsqC": 26400,
+    "EcUF1rzV2mKX4wYjtfDaFw8N5mxftcoUXpSstAbX6k8E": 5000,
     "EcV8vBMofTKyxBAFkNeKpQcNMhyha1sC1oFQuK4yrXVn": 2100,
     "EcXc6udbXggJr43akrW4Qe3CMuGkGwqgnnCyEfujmkS3": 23628,
-    "EcckSg8gdvXXXEJ4NYQXNEHvmmoZHGag5mtc3CGby9r9": 540399,
+    "EcckSg8gdvXXXEJ4NYQXNEHvmmoZHGag5mtc3CGby9r9": 752349,
     "EckLF17s2o6oPhW7zaMtxAkrCnDKAC4SFaDVdm8xRN7x": 11832,
     "Eco64FgY9KPkQcj47bb3wjMadreZaA2adcCLUgD4Tzuc": 7800,
     "EcuFQCFcpHXKireeTa31v8PhFnVbZuBsr6cShuHEepvy": 20000,
@@ -230465,7 +235406,7 @@
     "EdTdhJ6wRtZHGsFBxjYtZayqYLV4fuAfhDxtSfMKwVgG": 110000,
     "EdVh83WowMGKPkrRBHPYWa67qb2tv6KCKfwQDaVUmo2P": 100,
     "EdWeFuTW12RUgNmLNmgdfF48AreNRQjCmT6Efe2fYDTX": 1000,
-    "EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG": 332437,
+    "EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG": 466217,
     "EdX3wBSG5Xn2eCiJCzbENwFBDjbvaMURc5fQa6WEcvPF": 10000,
     "Edc4CbwCCm8r5FP1yyZyF6UDdjvvxxC6n9az32zC45to": 2000,
     "EdeRSR6uoHwPAHMzwWDaCRggSTBJ3zASJUsEd2opYvnJ": 7000,
@@ -230483,17 +235424,16 @@
     "Ee7hG9V5rDcA6tU3pdtbq6ZQi5tMJ1XyAPXoFEcw7La4": 45966,
     "Ee8Juq4VkzGUgLGC2tYsx8sPzYBah9MMBFJG4f4Am2V7": 1068,
     "EeA9tcozLCCbPvAtxNQ7pqhsXqrUrLz5bvroY82tPepU": 500,
-    "EeB9MTNhYd3pWCWxYrydHa3Rf3y3XNNfYtrP8WM8V9Sx": 10680,
     "EeCZ23KPMFMKUXHHHW4mAc2U3bGkwE2FLowgz7D9JmYk": 2022,
     "EeEEx6XMDBp55ZoAzFCDjNnSa7mkVodniuNudnYbw7NS": 161000,
     "EeF2gi2ZfUTb9kW4EjbnauXfRFSuERLp2KBocR5gYfxR": 2000,
     "EeGAHw96eyXhWdTCXTndPbTVnHoMZx41d89AbQG3bqqa": 35000,
-    "EeJ9tYsfAzBVPRYXeGhoP29uawBuzXCxKjiyatGRxzuR": 3000,
     "EeJQc2CdRDQForgoJg3MJbNSfCGzQDuL3ty4q1tAHGYW": 1032,
     "EeMDmzquZPJDpwUutgnQ8Fvtw1CDPy3jYnLfVTF1eRe8": 11000,
     "EeQ5UAmz7R8iJt4nkU7HRbG4puAt98VDThfQ6dFy9HPd": 143000,
     "EeRKQyY1P7UYtd5VoPUjLVR3Zjm9m7NVJv2nLm6LYNcT": 400,
     "EeUbNzxbsyjnFx26ADm2hcFMs93pmUsWY8YBAvmRAAjW": 25000,
+    "EeaYri68AWLbA6gtCmCbjJ6Tya2bfxSeqcRdv5ioaQSp": 4400,
     "EebPi8FH5RK4SpmdgTwjJgfCTAo7y1pdVk9Nyvgnz1rR": 100,
     "EefftoR1ofQpT7cXQQUfmjKP5TV1NkLBtKVkntYJbGKY": 10973,
     "EegfrQkziX1gh5aFfyEd1GYwGNFSQHkKkDTfdu78zXth": 10800,
@@ -230502,12 +235442,13 @@
     "EevM43Q8K9aByG78f7QjJNr6HLHzYAUrGU1RcZPXg9QK": 10962,
     "Eexa8a9KPaEUZLVF16QgThThWiAtKJ85uMGSc2zJ1f7x": 5255,
     "Ef1hzgCgs5B9bpHzzm6EjEYnQKE5iTpM2KDnj129zoCy": 5000,
+    "Ef3chhvv7DcneBsTmTRaNyddj3bA3Cw9sHAin6i4mdad": 10000,
     "Ef7bYNUWHyY9MGYRfN3KnDEJzy3RLbxufF1eWJGTTDTE": 4600,
     "EfBfQDQefFEGeikYy5Pssd1QXZYJyE7Mjhfi8WA3LKoY": 176500,
     "EfBt1rDgqoP1wYcqSHXjVHWgByGKrXsaiATorGBeKPv9": 5000,
     "EfE7h4VKxEys7SYDGkL624dPz9Pc9WhkpMbkWUx9ZThu": 11300,
     "EfJz7bnDr94PMvCVk1BTAyQAweh28ijEpUBEUs5ja31K": 100,
-    "EfKLr9XBTUGuHKh91J6NK9TSvPvH9jEVRqJt5YqSe3HS": 34900,
+    "EfKLr9XBTUGuHKh91J6NK9TSvPvH9jEVRqJt5YqSe3HS": 40900,
     "EfMqWDQq9DkptkRjP7xmHgM7KDscurP6P3xQZwAdA7Ju": 700,
     "EfNaYA2sFefePr967RgpBBMqhErAC8F3qLxGhiyHKara": 42470,
     "EfSLnqX6D5jZ3gUkF19ydwFEeZ4PU8cXAJAdY9wRgWAo": 4900,
@@ -230518,7 +235459,8 @@
     "EfhRMxxyNRhKK15s35ubzJ8YoFft8xPCbqsvHM6mukTh": 500,
     "EfiYhFMWA7DV9V3AdGbMM3Vcg6YybXoMVhTcL7g3T2ky": 6700,
     "Efk2ApbNMMQV9LaFGmKrJM3N98Kijeif5mT7aTHCJsmV": 5100,
-    "Efms4UASWRYTwhPGvjh8Ae3SbyKi4NPbw7JNJcyYRvGg": 15000,
+    "EfmfUp5uyEGHdnojuLZ4eG68owHQxdcHBgbrZ2FekLjJ": 36000,
+    "Efms4UASWRYTwhPGvjh8Ae3SbyKi4NPbw7JNJcyYRvGg": 4000,
     "EftajdoN4bhXMzD4PcWyX4n3b37tvTKYmuh4SG81USQa": 14900,
     "EfzACuE7D26sH2PDg4iaVKpxHfcXcNe5mHAghDiniWdo": 1800,
     "Eg2PJfqF6NytQVLwox8EsdwE1QXp8xP8V8GA621z25ez": 10000,
@@ -230536,6 +235478,7 @@
     "EgkyDNLLrob8Z3TNmv3eLYjrr2vjcq5n2MV1F3TdrV2h": 92600,
     "Egm4BEjrsyRiGQbyrY9g64t8jAA72LccFUUGaazwz8Ga": 128975,
     "EgqV6UyRri7gCpeLLzWJ9qfyNXdyoY7QA35uCdk2hBD1": 300,
+    "EgsXn2na6EeZ3ZrF9ABDVHrHvNJoM2qyPYAGKUb3eSnX": 5000,
     "EgutwwwzULH96cpoEPRyawmkomyRSqCd9ytsbWmJDpze": 100,
     "EgvAWsKgeLZanin1wWCn8jfGXzTnA4mZ6QC1dgM8oeig": 8000,
     "EgvHmDWGAXgAdTgyvQZmqvKMBwJGD3jUGZfFiayurqjj": 12000,
@@ -230543,17 +235486,18 @@
     "EgykbdQNSBM81q4UvMetjNpd9VApxVCfH66VU46xJ6bU": 18000,
     "EhEzKHYyAQAoi6qcp3btzszfgT84YmrNjNikrQZRaS8N": 200,
     "EhL49QHJ6gCcKh6iCgT8Eg8xZqHJeyf4JdnfA1SkvcfA": 3200,
-    "EhM5S7fk5zaP4uKMmtp2G4J1FSG66WZUgEkTsC3MuJ9t": 358192,
+    "EhM5S7fk5zaP4uKMmtp2G4J1FSG66WZUgEkTsC3MuJ9t": 343240,
     "EhQqEB7swDyBJvMqNHtn2HgXKvFP8unWetCRvkEDEXP4": 141741,
     "EhTcCb2xqADoGyyPnstTDh8oJJY8mzkhHyTZSL8CisjT": 7000,
     "EhUAmt6HRPfSPPPwnsm4ZkC4sFBqA4haLbLUD2myHSqo": 200,
+    "EhUcxYYsFj9gLhJiybnssBs5oABQ6XSkaaWHRKwk2nt8": 157335,
     "EhZ2XvDJug27xrxLc9yKroD3DKiVdhnaGedPAqbusMSb": 1314,
     "EhZWzgaNjQ1RpdAr6DvGLgTVrwB4vxxKCuvqD2iDFKa8": 5000,
     "EhZdP9w9fDKAe7uW8p6CSVDLCxdcNFuP7k7izai3UdgD": 11500,
     "EhaatNfup18UaVbFV4jBVdvD79VZYB53ipTwBHNcxGQz": 3816,
     "EhfurptPMTW28xh96Kz5zkq4virpyx7bBbbLcn1pSJZD": 15500,
-    "EhiDXMQbLQFShMJvBHDPEwf8nbGp9eJwkm1T7UYpMBHE": 10000,
-    "Ehjuq1YAhyAAaUVZ2LqWavTxfsEwoY8o1XKCEqixesn1": 131000,
+    "EhiDXMQbLQFShMJvBHDPEwf8nbGp9eJwkm1T7UYpMBHE": 23319,
+    "Ehjuq1YAhyAAaUVZ2LqWavTxfsEwoY8o1XKCEqixesn1": 141000,
     "EhojRkkjFWDkAzL1G4GvEQCp5Hw2qSfNqiGEtFf7Hw3i": 5490,
     "EhrkAXmvXF9SQiAypyYMu2LuFe8hMxNTyXYR8VbUipXr": 1100,
     "Ehs6Etc8hHSazeRyZPGyobrHDVi3VnsxVrUneRMYJfoV": 500,
@@ -230562,20 +235506,22 @@
     "Ehxde6dsY9K9znHsuQg2SctGVnSeEtgnKUKhkVw65w5L": 11661,
     "EhxeHZ9BKDoPd9WYqZdP1PyUxeWwaV6ti4yih862jiV3": 1032,
     "Ei4mcVXKToxizAdXRJWsssd3aC8HJRJ7iUbvdahgVZZf": 5000,
-    "Ei5QwpJLbJzdyBLG8aB6Bag4Ak8HSVeYXLs5tihives9": 108136,
+    "Ei5QwpJLbJzdyBLG8aB6Bag4Ak8HSVeYXLs5tihives9": 103136,
     "Ei5nQcVeqcuH4YzQuLNPhf6XY9QEriTfGNcgtqk6aGhX": 28023,
     "Ei7Y6iAusAtbaDiEqGBfd3t4iy9KRKqUVAJmqEBdrnPn": 5100,
     "Ei7dWn64YeNCDJtLHhEQij9VG32zx9edjaJuauTK2TXh": 145000,
     "EiA33nLTkqc1yhUXTrbVMNk4qe22JsKkkRKXLAq9J2BR": 10000,
-    "EiEe4KqGC84mHwdFYsqixa7Hu24SLKbXL9qfW4voF1Da": 42400,
+    "EiEe4KqGC84mHwdFYsqixa7Hu24SLKbXL9qfW4voF1Da": 54400,
     "EiFPjtzYfBXPb3TPgWMjDGhfKqeQGFfuH3d7fq9EDtjz": 16295,
     "EiLoSF6hKLrpM8u5SfKDPUab9U89ojodi1mtwDLVyrUc": 200,
     "EiM3kwou7DrhVMNAeVLtNihqkHemEqHNvBZVH8fC9SSC": 1500,
     "EiPZnzk6BDbvRB5CvA1ncM2vZH2FUaUgRLxhXhRuRSQx": 1000,
     "EiWnJ7vYMVrmLyYA1B1UqskRSdTiR55xAGjsqRD58URi": 29900,
     "EibwTEh697Zk6c46ttKmGCHn1uWYu7GitdzMr3sVDMdJ": 1000,
+    "EidUgncKtFxLpb8bmLowEJR5UWfFjGfZbC1HRKnJAycd": 2000,
     "EieXeWmwZ714CT6TcHW1RGSTi9CG1pqiDqmAH4u1H9HD": 2000,
     "EigDbzLKXx38S8wrFdGCZczH4dqDEoSkePBDS5QbSohJ": 15630,
+    "EikDgNu3nPdHmwhnbR8PBCChqo3Ny397MKGZJD4exCvL": 4900,
     "Eim653irR6dj1938TbYVSQWfkCykseGcWPdeDHcfWZe5": 14000,
     "EimMqVPqnKY5H1mTNybajdjuEnhp59vo5FpyMNLuLskv": 1900,
     "Ej3EhbRSpzXWnjdRUB75VBxw7tpVX9smDoBGyTjc74EE": 40000,
@@ -230592,7 +235538,8 @@
     "EjbUjcK21qQjaavcoPf9hpzuuA3si6ZaHxaJ2ecHRS2F": 2000,
     "EjhxjoCDRNUKWqP8CkHFzpk6rCgYUkLt559o1RarC4Sh": 10000,
     "EjnG9pQtec1AQFAcUs1ykqzP1ktGdzJXQjdwANgGuVN1": 16567,
-    "EjnXyoizxDFwPKzFRKhQWQUVCSKJ3wZAomeENhStVXtk": 8500,
+    "EjnXyoizxDFwPKzFRKhQWQUVCSKJ3wZAomeENhStVXtk": 1400,
+    "Ejo91MCpjMt7jV1SXbpU4nrEvr4EFU6miAtKXPEYpWLT": 48000,
     "Ejrsmg4Psvduv661G361D9wtVtd2oiQGZ1wiaR4MXWBy": 13755,
     "Ejrtncusx2KWRHC6mc5S7rq7e4xSK2FXgyf2fWqr3tDE": 2000,
     "EjzhMqtZUQAfZChWViMRjFsA3ZPRLDgPpH8DYpbFLU82": 12000,
@@ -230611,8 +235558,8 @@
     "EkWLsz775UoF7CJNawKj5n9ejTEwggUiYqktxkuK7Cs3": 45000,
     "EkafbnkYY6Xc4FurZRwL2X4yi6UjM37ews2VgCTpqxf": 5000,
     "EkafbnkYY6Xc4FurZRwL2X4yi6UjM37ews2VgCTpqxft": 10574,
-    "EkcLZy1axvah6tuPpW2Aq69mdsgeEDZw41MUDrpySgD9": 80600,
-    "EkcgJrwxgxJnZQa3TUPBDH9FBvieKs9e9W9xkXXmiMGg": 18500,
+    "EkcLZy1axvah6tuPpW2Aq69mdsgeEDZw41MUDrpySgD9": 75800,
+    "EkcgJrwxgxJnZQa3TUPBDH9FBvieKs9e9W9xkXXmiMGg": 10000,
     "EkdP8RKq1GA5Q8osH3RxWHke4oiiPT8k7wQDPAAHFM84": 15000,
     "EkftfGxr5msHdKNdMzSemZYQBz1L9mv9Cc6Jacxm2g3A": 10000,
     "Ekg5xtdQNj3j21R1WquTRxhTqYv5HgHxHvsMNEX8j9xM": 162500,
@@ -230622,9 +235569,9 @@
     "EkyMTfjsd1NiM6N8jrVpS5iLFW5rhTCCJZVMTuRmBrGX": 49700,
     "Em1Szzi8vRCif1bcXtkjwjZ5rsRLV2mxBbAohVqpnMh8": 700,
     "Em2r4QWN1qPErbUqrRYU6aVAm3M2vx4Caae8RdL3QieH": 3000,
-    "Em58An6NqsGtgm1wyixsuAuuqxAjE1kXqGHamajWCoee": 62702,
-    "Em9rZNcVpuHqaf4LhKP98WvhHx2VdHqS52D32j7fHr1y": 45000,
+    "Em9rZNcVpuHqaf4LhKP98WvhHx2VdHqS52D32j7fHr1y": 25000,
     "EmETFgcqCvV6cyHDRToSfwu1Q7A3vAtQjuQ8weNfboxg": 300,
+    "EmFWtHq66SmKZctujEq3TcNkGA5owUqWyGsAwRResoMt": 1000,
     "EmKJFAbfmj2SFxLidvus6SkW1SdHCej4FEnisqtqVhy2": 500,
     "EmKNW1Ujs8T5ixAvJA5BiWcmWj2ay9snuA8wrjH9Ba5S": 9900,
     "EmLC5MTVitALwK8vMn7FM95RUZPPCz4ncNUGvrJJ6xU8": 104000,
@@ -230650,15 +235597,18 @@
     "EnapvLEHxrvwCmvgjq84seifpredxi7PLLj9Rf98UVVt": 39254,
     "End7Hw1PYXTaE69WL5DwuP7ViceXx2nknL3rhE96TeD8": 86811,
     "EngMQfpp7F1sXYNQLY8tkJeZ1eBhpFGN21fZ5LjBCucC": 26968,
-    "EniaswqLCeWRJfz39VJRQwC6QDbAhkRHV9tn2fjhcrnc": 56728,
+    "EngwVviD3dG9KD61dPfE5hnR1Aus4WjfAxfPrjLdwbbj": 5000,
+    "EniaswqLCeWRJfz39VJRQwC6QDbAhkRHV9tn2fjhcrnc": 66828,
     "EnjHNBxnbjPpvFEM4bjJVNGWzYbqKF6DUoLsWWHa9QEk": 300,
     "EnkmcZtsDwCBB7SdTJtQRraJbcUi6oNA6X32yQK5HcVb": 199900,
     "EnrhSzNbRx4tUWT8AKi1jCPFSpJFQWH71PgZm8QZB1tW": 17551,
     "EnvutHQuVcDEEkYLXed2Yp4FC1ut8ehUDusoumjPG4F6": 15000,
     "Enw88XojiirGobgX8HaphzLMYcPEYVe9MjAyhjRcW1Et": 13300,
-    "EnxMnUUpNKaqVxUfqirCNQTJ3FM6Xo7AvzhAb8ExnTDH": 110000,
+    "EnxMnUUpNKaqVxUfqirCNQTJ3FM6Xo7AvzhAb8ExnTDH": 260000,
     "Eny4YPM9WhQ6fZgocV2s5KEyHJTxdJY4m4Px29ykPo2W": 68132,
+    "Eo3dz6rV3jMg6eSmYG8imwFbbo8afwzFu6WqG1LKGwit": 20000,
     "Eo5KQqSRLQNmNWkZHK1QR22mT8ojYpg776oqJJJs9men": 69000,
+    "Eo6qtwmoYrb8FisuMYBSkfMuACsDKyzop4ynboPzK6y2": 10680,
     "Eo8J4mHZiVqj5zDHJbnv9AyszqiaEAGfyrz51AkXCQs8": 4450,
     "Eo8VYYMqwmRmvhzYUeaSAhUT5GYipuBETayNBsqJ4WdF": 3000,
     "Eo91dhE9jki27x5emhvkK7t5ugsTvwCxCF9k2NcGrKqD": 13672,
@@ -230672,11 +235622,12 @@
     "EoNmW7LqwZXUaAntqbKL9U58Lk7kwKf8ErcUfQzMUnSc": 91500,
     "EoVxPx32VmQuDab4z4zrMaWwZHeBbF1Aq8w6SYvMq2SQ": 5000,
     "EoaBpbqJrfLYi1xnr42xMzr9upfMUFE6TUnQTzPxuoGT": 1000,
-    "Eoim4Kxss9F9cLYLGX4x91iQmCJ3Yyf8YNLYWbDMq8ku": 4300,
+    "Eoim4Kxss9F9cLYLGX4x91iQmCJ3Yyf8YNLYWbDMq8ku": 16400,
     "EokmcUvGRCZcirrc9JzM7q6n2Z7udZX6XdEYwQ91eji6": 6000,
     "EomkkXbMXywMF2JZGWmFSDiJ1sP63QZNev3YDdvuP6PU": 1000,
     "EopraaSNxyZ12Htqx9huxLbcG3mecXxDv29mKcbTp5rQ": 500,
     "EorN5QVdBB2munNnbWcPYHRLW5hNrGL3Eth5j756sqB7": 13000,
+    "EouMpwHdbWdreoEWFzBcZ6HjC2Gq3j3p1av66qYmrMDk": 3000,
     "EowjFD3ovJiUVFoY34KTjrYLZYXMTVX4rUABf2M369g8": 1110,
     "EoykGwGWNyBcyEkN3BHffEuGF7Essu7H8X1PvtEsuQym": 174212,
     "Ep35tM6rJ9PufYCXimJuNcVLbbe4UvDoj2s4nMTHzRdx": 5000,
@@ -230698,7 +235649,7 @@
     "EpaUoiex4So9ZdpqQGj85mGTxKr7tY98qXTd1oW95Bx4": 1000,
     "EpaWk2HC9XkzD89z2eo5rzofkn8gAEoh6nVogdW4eVJf": 17000,
     "EpebJEJ1WNv9eosfbXafxS6VwURo5DAtZFQBzjR1BKBk": 60016,
-    "Eph8hg9cPZhK4dYgapRB8NRRwmrGuWCVrHV17yao3gix": 26504,
+    "Eph8hg9cPZhK4dYgapRB8NRRwmrGuWCVrHV17yao3gix": 53204,
     "EpkxnmmhuRaAUzwQKraE29YH3uuBwUVeWsRC67T1JRgQ": 6000,
     "Epn8hCAkhGT82L4oTGvo9vmUz6NohXRpNnCWknKvCZuk": 2000,
     "Epw7DzEUfu4YGr3mAfXAYrDsYeqoU53fdZat3vmFZ8x7": 500,
@@ -230708,7 +235659,7 @@
     "Eq7KJE4hR9iuJYzSnVoyViKT1Pz3tt9TBxo6TzjwR4dv": 30000,
     "EqByZhLAqLoSXaZBxBuFW2NHrw2JPw32jVo5jrAHKJqT": 5000,
     "EqCXSV9syrif1gyKaV4WhxuaenPGGyctBq19prG5awHB": 38977,
-    "EqFjnWMJmzmTwibxbQkN12Rb944uZ9uKpUgKagisPody": 50000,
+    "EqFjnWMJmzmTwibxbQkN12Rb944uZ9uKpUgKagisPody": 50100,
     "EqGwZFcjBnwobu6VRk96aKrauFiDAXKPcasxpDT63Z9": 5340,
     "EqH3Q38XwABgWQmp1fHZ8bsN7Pf1dPK2y72Qx1duMeMF": 500,
     "EqQLFJZk4rTc31obJh3uCXiwe6m9BipSu56VBwW2vcaY": 15000,
@@ -230723,8 +235674,9 @@
     "Er47yMu6Xdsfp9qgTypoJCpmLD1HTKNVGiqaXsmbL1yM": 50000,
     "Er4D12AhFdZSN7jxZMmGdTYx5rkbZxNnGptNRJxvHxKz": 1011,
     "ErBLVqU5JSzujfwP8mqcGkjJWxfwoqEiq8rg7AmShHeQ": 6100,
+    "ErEEzQt85r22stCfibtjGDFSTiNVoKn5iFd7i6TyCWik": 5000,
     "ErKJKPdTQjvpRwacTp95eNu5w8ZDMeeay8uD5UbBwgGK": 10600,
-    "ErM1GsJvEg53Dz4axD3DzVzV4hsR2SXK2LpsM7AcXDZP": 5059,
+    "ErM1GsJvEg53Dz4axD3DzVzV4hsR2SXK2LpsM7AcXDZP": 13059,
     "ErP12gtNNU1JMUoj7an9o7Wuyy5p89b3P286PF8cFrpB": 724483,
     "ErU4hEcjQJ2wgLDkuuMzEdkA1Xy65Uee1vQhZ2ULRx9G": 1000,
     "ErUeRZjs7GT2vnb5xRceLW1SLzNdWbNwcXhY1YeBpK89": 500,
@@ -230733,28 +235685,29 @@
     "ErYySEghB3ccU4zN76zQDmfUJv4QGPxPzwXNHjQr7W2W": 3300,
     "EraXkmXCCMM7DvEzrqMXfrZQf47A1oo5kRQ3dxUG86tA": 5100,
     "Erg1exbKxxNkMst1sVK9uyq553N7kJCycRvNHdDiQP5M": 1000,
-    "Erozs52QqMVTPdJJh9rdTSzr53cwmHKb1VA7xLoBiLXE": 128000,
+    "Erozs52QqMVTPdJJh9rdTSzr53cwmHKb1VA7xLoBiLXE": 138000,
     "ErpYacSfXLUfAcWg5TVai22guRMYAndM5ZhUpyRvP5vL": 15218,
     "Ersp6ptnuBHGapQwY4pxFCwJnQYL4zXSrKakzZVbdEG1": 614,
     "Es36C4jkXZacBzrGrjSDtaHcX4gwAMPZ7fyoXSN4ERfx": 10000,
-    "Es39MBbiuq8Tx8BPsE33Sf4aexEotnLRYMBe4amLoqxw": 17600,
+    "Es39MBbiuq8Tx8BPsE33Sf4aexEotnLRYMBe4amLoqxw": 1100,
     "Es63LGouTA2aTEi63UZFqMFLmKgLQ1A82wNYSCifuaLA": 3800,
     "Es6wK5MyNCFjFKaMrugLMwGCXYy2Yu15ZSCc8JXpxD23": 10420,
     "Es75eNe5yWFmjHAYTzyT6dsj8jjaAhdL8fxKxBmCCU56": 10000,
     "EsBtvWVndDdBeRqnaH4itn5Q2ntmVEtDUNqWhTZghg4g": 44142,
     "EsJYJqWdR38ymtv54j5q25wvnMgVpWLYxyCMkT5hZjNK": 10000,
-    "EsQrqnqtWofxV7xCzgaB3fiE4hQR9Kj8fWERWGFVH45C": 330610,
+    "EsQrqnqtWofxV7xCzgaB3fiE4hQR9Kj8fWERWGFVH45C": 397446,
     "EsdebhV8Ke1jJkusT4Y59ZNay4i9HAccw7uFzsdLwwCC": 13412,
     "EseVtiNFKzCLHy1DCUtGwSqokA7sQA6vpoWRWrxZtwdo": 1500,
     "EsgkWBp8vZfKJiAy8ZsUAeSgMVskAHXK65Y51669TQdm": 10000,
     "Esh7U2XXHtbS4mNb4qXdDV5ocERqULgXxcNCsakF871M": 10000,
-    "Esj6okUF5i2uirLXNw9MK9TsFc1NCHkpFqqerxCYFHkx": 20100,
+    "Esj6okUF5i2uirLXNw9MK9TsFc1NCHkpFqqerxCYFHkx": 19900,
     "Esro8SKHteYgmfknmdbpfqzLEhrsBQGqjjUN2BQsVDdQ": 5000,
     "EsuhC6jYrGkw9oqSLLqjvLYEZNNrzD9V2Ldc3VwBjvTW": 4732,
     "EsxjppMmq4ax7QcUGohUisM2HhXEBf8DrUSgsrdd57N7": 1011,
     "EsyBTnycmjJSxKCyMESHwqWGjNHrXkwb5bieBQ1CGHiK": 10000,
+    "Et13MRzWNexGYvb7253PaH5ZX3WvgRQ8V6pp9y6GgP5V": 22000,
     "Et1aLzqafBtbhQqYSbsGD9jANnFL6uhp6jb7xRvvrqVm": 1484,
-    "Et2qGJotrnubC9G1hBS5H8JZQaJWaWzSzj1uADNQXvb9": 371729,
+    "Et2qGJotrnubC9G1hBS5H8JZQaJWaWzSzj1uADNQXvb9": 403872,
     "Et76x5QbjVjjjy2ZJiMWhwzxdfTLxg1VSAvWzG9BXK1z": 5000,
     "Et7XP7yvW9VZH1qVyXsqEoSAcT4AmSsyc81zovy8NfNB": 31530,
     "Et7dzeR4EVdLF53JwjNRCDh8NkxS127AXLkzGFcd1N4N": 22840,
@@ -230767,8 +235720,9 @@
     "EtLggXQw4e9pY8CxY82DJrQ1Q4MUJNLpGtVeL3NL4mDV": 314,
     "EtPZnBzePvuWgEvFmHgs8BfvgYdUZGo96iiKbhPaVuPP": 15000,
     "EtQ5AD9eR1sn2zwcdJbpXGngu2RPjUQUjtdzvWHpvGvK": 5000,
-    "EtThXTjaqTyzQqBzVXAbSn7AxYN3mwwNPnzHN8EwVtHH": 25800,
+    "EtThXTjaqTyzQqBzVXAbSn7AxYN3mwwNPnzHN8EwVtHH": 20000,
     "EtYetBHMT5Z6tnHcSPc5AhXVdieLG7ihMuFcHDA4WLL5": 10100,
+    "Eta7meR2SvSJCjH5hTcRrugutEuq6wMdsKaGQZRhGMTm": 20000,
     "EtaHo2z5g7rtM6K495NAcE9TA7DPya6vuytnFNRsReCG": 10000,
     "EtbzavaaEkSWto2EMqMQd8x9naPLrFDNQsmzxEwMuiHA": 5000,
     "Etcjd2BfSNQUwwjZhejkkCG9MYFTdbo9n7SoGdkMxZY8": 5000,
@@ -230777,9 +235731,10 @@
     "EthJM7rzrwDpzB5u8wwU28aAr3izYZnc8Anxr5JMiNNY": 5000,
     "EtqLsfqn7udRSKsys3Nbk8cZpgRRv4kBb4FCrpubv6GM": 1846,
     "Etr5p1TkGogmhTqKEi7oFuKCeNTx7i8EzENp81SPVXSK": 107006,
-    "Etto2TtsbQXKTbucSqqGdB99VZk63ZKvk2uAdZ6tVhm9": 36700,
+    "Etto2TtsbQXKTbucSqqGdB99VZk63ZKvk2uAdZ6tVhm9": 71600,
     "Eu2ocNzXuhu4HAtLz5xDnTLxrJHhHq47ohWV5ptMyreT": 15000,
     "Eu3cwXLMNLs1bSY6Yq9bX3eMiYgkoMwD6XEzn2BuT2Mh": 1000,
+    "Eu8ZCCZgVwFRRDMUdVUBNm1o4YV4YnzzdzTmQ8EYz6D4": 20000,
     "Eu9YENNUgKEyxWHeWhttTnEziD1DcYXiAByDP4qJigKy": 22800,
     "EuAu8sHaKquSbyS6ncSLkoTm6Cc6EGsrEYbLdr4aKcMJ": 13230,
     "EuDFdHHVvTmVa7dhkn1tFuCKL7h4HeA4gTuajV9Jby3V": 2400,
@@ -230788,11 +235743,13 @@
     "EuGDchuR3vxtfM7RM5EyLEkr1QSK1sKZDbD9bKYvfDy6": 5000,
     "EuGPFywAY5y3EvT5gh2oTzbixxGb3YLFmfTixe4Duyjz": 5000,
     "EuJT1eHctZvgW64sFqW883pJZjdfQus8qjGFcTCpJzzp": 900,
+    "EuMHGXqHc3AzP7kC9bVW7JC95WerNvw9gkk9U12RRmxW": 250,
     "EuWRkqDKk1byueUSWAfBsSPbgAJY4N9oiWn6DtwY2bvZ": 5000,
     "EuYXM5JjM4LBxvy8PjfxLWYn5R36SKwiUutHPh3Vzixx": 146,
     "EucF719oTqzx33kQCsv9s3Rv7ZbGwsYUiXcwn1M6TNn5": 43400,
     "EucedTmsBqQxpeFLLboX1biPX257zSvyyKCCEjLKuWif": 4448,
     "EugyWdiHuCg3dV4NVH6fvJdc5WGbzYHZfh4b8pi6mqVb": 5000,
+    "Eum8RU6B3pqvsmK8EzBvJhfPkzwqHiQKPZ2NjHoAWfBo": 40000,
     "Euo9MmeFeLopeQnSuLczdzS53CkxbHuSTxmJbrVctWFy": 5000,
     "EuqkthVfbX6XUcbGXDuBLSS7x1xtVq5Hskxf7JJkYKeT": 6000,
     "EuqrzfNJPwzPz7XLeRa439UKhE2N5i1tmCLhBUys2kyK": 2000,
@@ -230804,17 +235761,19 @@
     "EvHmkyotRJ2J7eN9dyMW584UqoB4EAHtqHqaC5bTkrmm": 1042,
     "EvJxAWi92PP2W9BstXcP2doEMJtkdPuWKTT3yWAnXdxX": 13300,
     "EvQgi7u8M5DRZVLBSTnnVmjwfxGWnSLCWGKxqai8tduv": 6900,
-    "EvS7h9L3PkLfy1wbpxGebvR2sSNZ1Ux6GuxTpmby1tGE": 5000,
+    "EvS7h9L3PkLfy1wbpxGebvR2sSNZ1Ux6GuxTpmby1tGE": 2000,
     "EvUTFFYvSh9KWyid7NLjmXTCooU1itdHdSNi9LbnmfqR": 5000,
     "EvbA3AKGQLEt71sj9rKbG5ChYqL5Fe8ocAnSRTvfc8fo": 18000,
+    "EvcwXzQgFC1U7h6ts5Za5Gp9KrWPNarzMKcygPz1nBiu": 500,
     "EvdG3GLCjpwbt6rsgHvu8cf9ddpWjyn7drtLMny11iwe": 5000,
-    "EvfyVuk47Q98fQciDAk6emraY3Mv275HYcsJW7JQCjLc": 129500,
+    "EvfyVuk47Q98fQciDAk6emraY3Mv275HYcsJW7JQCjLc": 244900,
     "Evi4zzpu7oCdRgCbLa2Bqqt67664dDUr2iMBYB6xueva": 5000,
     "EvicytwnZ59FnU3AXLBRhDVAE6zLeVMkSTixupm9BB2X": 304,
     "EvnjL5MMeLg6FhNTg2ddHv2HN7s7NckZkW5CjyDap3HT": 314,
     "EvsriVRho2NTykprxjP8Lzz5oXjkRtPde1tEN843vB9M": 300,
     "EvtSj8TcDxkgiLwGtEqnPBncinJkBWuPt63vsxDoPBaZ": 15000,
     "EvtgFkK74hmTX93ZzTzSM8nhcaXgLAXH6YFosqrsTeCF": 20000,
+    "Evy37oUPdizb2g1K2T6MhknLXNM8jWGBmrqEVVMUbYwo": 3000,
     "Ew2SM93ZwhSsC1mFhxmMkYvA4wGwCnKcpx6VQmm6dasg": 11800,
     "Ew3baKDA3moSh22fHMRemmXenzgca7Dd1HVag3fE3k3w": 11042,
     "Ew6DnLBJwEWb8dBSde4kreQCmKau8y427a1skdxF4fqP": 2500,
@@ -230828,19 +235787,20 @@
     "EwbTXUHZjQeDHw9MPNAHBrsbfS41C39V337p1P1zns2i": 1000,
     "EwfTchwMYRHmphm1FFnfMBtPqwmHvM4kzNhF9K6mf45i": 100,
     "EwfsAdjvwQYvfrYcFrRDZyfHdfwFniyeSW1crEckEKRh": 650664,
-    "Ewg4Pd26sh6cmSxJMXcYahCQfZgidCRp1UF7K1hedkge": 83000,
+    "Ewg4Pd26sh6cmSxJMXcYahCQfZgidCRp1UF7K1hedkge": 72500,
     "EwoSKs5tS3J1LvfhE7gxW5dMHyZNGw66bDQntp3abRNe": 1100,
+    "EwqooNZXMxRriLQjFwSZt5Ya4wLf6cLpPYbjSTvRYCVx": 10100,
     "EwsUN8GvbuBxzQrnPanKW8inckryopsdyB1YVZ3SsJUr": 314,
+    "Ewt2FDQVvbrEqb96VahRrKM94qgPg9SPtNj481fNthK4": 5000,
     "Ewug6kSdu9HLzMi9EKE8ED53JPJ3sZrYKGU6AjKsMD7P": 8000,
     "EwutTy2nVajPYPVWU2cVkiEEfL8W2iTG5WLJo7ftFPGh": 5149,
-    "EwvagYnDJvM7rUuVBahT9g71PW2cehekS6KM9uzF79sB": 55500,
+    "EwvagYnDJvM7rUuVBahT9g71PW2cehekS6KM9uzF79sB": 84500,
     "EwwhvfAHPQ4D6QyHgphirk3BueT6GEKA5TMAdkx6J1kf": 3300,
     "Ewygt9ekWbKT24JW3D63wAifrNyf4mCVtQXotpXReBbh": 500,
     "Ex3kDfhkJKMC77o3nBRm3L9KSZ3Lzs7VVsNktQtpcor4": 5000,
     "Ex4kHE9GjbSz8x6PqtrZDJAsdnqT6DJkeUTuPvyY6D2": 190000,
     "Ex6yugH9vLgRzv5pZKe1nmKCs1cssRP81NUZx1R3cZxb": 5000,
     "ExL32co99PKCyWLFdpYmWyEoL7XubpqxMccyDj4eiwL2": 4600,
-    "ExTiDKoJhgSgqGfqFcB2beUFtMGh21YkCzqB6W4mcYQr": 31561,
     "ExTqDSHgXEP5FyZEJSZEB1jySeAHtyHpbkLSFhgb9jvr": 6000,
     "ExVH1QAYUFWX43jQBYDVEZLUsZcU1Cf6xFAmhdxbhYaH": 2957,
     "ExW3xu63KEZQqHgv7Aa841GWKXPb3MrV3QQWwErrpELd": 5000,
@@ -230849,11 +235809,11 @@
     "Exe7rm8Rohdu5kf6uFZaZnYV3CukbDtq7d6JBfp8PQMo": 163948,
     "ExeZVWxdBd7KBeVugPeEzioaMycxX3c4GWp6Sk5yuy7g": 3800,
     "ExgRNp9UqtSY3DgreStX2wYKH1o1mWwFMywfHvD4Hf7N": 10000,
-    "ExkMsWE7ZUawoHycW2eRxDn2euadf4WqhZdYHrjLDL6Y": 25600,
+    "ExkMsWE7ZUawoHycW2eRxDn2euadf4WqhZdYHrjLDL6Y": 35800,
     "Exmz8rrui5FcZeoGuvucacfUDRUDbhWixuuBm9ELWvNA": 10510,
-    "ExpdqXwVmddkQKZ7XQs5n4owsazBJ4kMopYzyEWN1kb4": 1000,
+    "ExpdqXwVmddkQKZ7XQs5n4owsazBJ4kMopYzyEWN1kb4": 22560,
     "ExucoZTQS3mBtspWLqV4Ft644ghaSqohGvHD2Ja9LFnA": 10020,
-    "Exwd1jMwiMdW5WxqedkXUaYqMhyip7QUJMHmDevayBKs": 222000,
+    "Exwd1jMwiMdW5WxqedkXUaYqMhyip7QUJMHmDevayBKs": 244000,
     "Exye7UJqdt4cdZYtLcS8nSCi3uLydHcbheEjmfbqPfXR": 200,
     "Exyk5VTt7aS7kkSviUN2aKpd1UvECiGykogCGngwc5v7": 800,
     "EyAfVh6hz1pwF9TvungFf9qyUiZw7EHs85iJ62LbsDvh": 5000,
@@ -230864,7 +235824,7 @@
     "EyJXjgbhSSvoxWMoH873XyM2hwZPpUarUri41c8SHdHZ": 63000,
     "EyK628neRELgtk3BqEGMV21hNisvFUW7NrLyQo9Gvqwf": 100,
     "EyNjCJAdindkqemniAb9u9ajZYh3oCU6WZB8EdVGmL9c": 4000,
-    "EySmo58cR3x1wwwB99YGS9m6X7wSE6vxf4vWMxxV51gg": 496900,
+    "EySmo58cR3x1wwwB99YGS9m6X7wSE6vxf4vWMxxV51gg": 701020,
     "EyTigNJX7zrHPYrD8vaPhwSuwsqFexqdRH3DdDBMPYDv": 100,
     "EyVxbegBqA38DYQPiySr7vSAuSyZbjdzAJZxAzjk5VRT": 200,
     "EyZKvcdt13gKDtVesupEPGZ42UBaM7cKbDNaQV9Rb7ow": 1800,
@@ -230883,9 +235843,8 @@
     "Ez2akxTaKg2sm4Di7fw2BMQ138tAv5S4nss8HihqfH5n": 500,
     "Ez4yqyMmGWfKBtQzuaeiBuh3YiMzcndD5NCfM7iknoaK": 101,
     "Ez8fC2xbUj3oW7KM8e2JHVu59jqDqxAXJvCpWqYLh1qY": 10000,
-    "EzAqgQnKYEPM6UUUxzoyEbdvaXmcGLs9s8eRho2GX1V7": 1000,
     "EzEhQ1HWuFy1xPC4Gin98qK2aaewe1X8Gx9KqYFDeXq": 93740,
-    "EzFB1gaN4KUJgqQdK5LThfkQhCfvXvPw8nnAuYwwWK6o": 28000,
+    "EzFB1gaN4KUJgqQdK5LThfkQhCfvXvPw8nnAuYwwWK6o": 31800,
     "EzFd3AqzLBKN7bYFTp5PQabEx6515iyS1NKPieSxTg9N": 400,
     "EzG8TSyAGGNoY9pwCBZ4FeXDWU4ko2pSpK7cpaPkGw92": 5000,
     "EzNTja3g8oGwbwDQ2FYbzjAuuCaM2FdzvUrsWsoW2yku": 6000,
@@ -230893,7 +235852,7 @@
     "EzVFocqqYfGmbbuCT4Q6jTKpMHEDJWbpZWA466R6qCXs": 3000,
     "EzfKVXs8U2pSn5qbiAcS1PXbWUaG6KBkGyxh8BSjbyZG": 100,
     "EzfvoCVqtvLZZsSA448CvUjsCtZ84hLoQev7Gv9YRtjL": 72860,
-    "EzoHgnj5XAjJWN3WU7f1SfhSrNdfrp1wbu5wPpRGVbJw": 1544037,
+    "EzoHgnj5XAjJWN3WU7f1SfhSrNdfrp1wbu5wPpRGVbJw": 1696462,
     "EzrLqx5Kqp5BfgNbGhJeQwgi8r7F9sbixjnR8epfuzNp": 719397,
     "EzsUHRMWw5q9LACD3TXLKuecXA11MzYqCDQ8wbMnX4vn": 100,
     "EztLideBu4uYKmMocKFWjQxHoajDsKQMcp8881858gc5": 4200,
@@ -230919,23 +235878,26 @@
     "F1u518Yh2mXUnLHwnBphsSVQdP9zpB8oDEwTku4zJpDL": 100,
     "F1xvJZcW5f7DTENYbHL1CMaBCHagQSPrg7xkKsEqUw1w": 5000,
     "F21yyRMHfpo5hBte5StvzLPUws7eQhbdDPdLPH8Xesg": 10000,
+    "F29oqU2YzHXpYUxWmz6SeA2v58vH5MeobbMaaqi2vCnG": 1000,
     "F2AjkU4mQtTajMnctrVDWkhVKKSG4eEn4JjWTiG31t92": 73950,
     "F2FrWCUjRCT82qKaGrL159EsPskCFJXELVATsQXfztCt": 130000,
     "F2Jna9YSMLNFq7UXR3197gxiR3K5aNYZSaLc3cFBPQL2": 28200,
     "F2NoLxh6JYoq7874MPKxLkYdsq3H9FYGwJyq4UkVqn3z": 237072,
     "F2WHhUHjfb3CwK7VEHeAt3fMiVp6J2uHMCaoQFXYExQ1": 14052,
+    "F2mnh5h9Um5w5QyaFrfLeFbk6cE5XUW3KRvGsyu2AbW7": 7790,
     "F2pPTR7NSKK8msA6NCqwqmcrHNS1Jvw6hEA9raLZXnMn": 1100,
     "F2sF4TuX7iuP6TKzPkRyyvMMKAsaev3Ra3cQb6DxVAHM": 10000,
     "F2wJLnAicze3BrR8EkYERRWiB3b5cLQcE45wDv25D2Fs": 400,
     "F2yNgZfBjGWuK3dLqbQpVq7F8DvbjyCxDvsRsExzEEw3": 13000,
-    "F2ygdUXiZnHahttKxisn9VGJ3hqK9Aa6GbW3EcbJU8YL": 2500,
+    "F2ygdUXiZnHahttKxisn9VGJ3hqK9Aa6GbW3EcbJU8YL": 3500,
     "F394Nmyp3n6nkj3YvPAisyHmw3KpMWLkdbctqRC1idzq": 100,
-    "F3DHMTtDADKDQKd92CxHDSaSSWAKgcKE2Leo5gndCFuL": 29475,
+    "F3DHMTtDADKDQKd92CxHDSaSSWAKgcKE2Leo5gndCFuL": 23975,
     "F3HsMvMCjnNodTLLwDTtQfMwj4wPaV9RbnFDKjtTtoBv": 500,
     "F3MrLN9QeZiASwrF65WY5pzALg91583ioFvhrx2h8pPm": 7000,
     "F3NUGAZr32esvw64kdh3qLYDiFhiWFQiF1qyhWiCUQHD": 5000,
     "F3PJRv8Pt3vBfNEbP9osSkez4NhfQtk2CrYJA8sfqU1m": 9000,
     "F3QFwX5SFuBeRcHQVNiCwRvfbwMerTAWFM23Yqvyg9Tz": 100,
+    "F3RVHMmVf2pykxVMb1Ec3NJ7cRUmg5zY31o7V94CpedD": 100000,
     "F3RnXs5wGfNWFLig8rZn48smjxb8nxU5as4tPiuBV6FS": 4118,
     "F3S94kUymJpU4uxWg1LHBPG2gQybvoAYBxzpi1gVohvH": 3000,
     "F3TshAAunY68i7rHzGePjtfSW1RaSCMHTnqxnPwevJGR": 66782,
@@ -230943,10 +235905,10 @@
     "F3fL2VNByPzHNYaaac2iH2ACSWxMB6G12QgxqwmZeVEZ": 300,
     "F3gtuyn56FSddRKbUYa7n4fBokqsqhRbdDz6H2B9U7uX": 9800,
     "F3oK8Eg1hKdejN1rz6g89RS9ygEcvhNFkzRCrzepznUp": 5000,
-    "F3pB9qVE3buT4qAvoaCb18aNyia5YXx2ib9CR6BuoegD": 1500,
+    "F3pB9qVE3buT4qAvoaCb18aNyia5YXx2ib9CR6BuoegD": 3500,
     "F3pDsjeHKXEQK4uNMMoHbVxiTBmcwrktLsQfF22PfKpT": 100,
     "F3tCZipP4xtfABHBaTxMN9QXyzhg33WJcUoUBFAttWPn": 80000,
-    "F3vrMVA2CAGvaC8VzEYPRQJg6dviAThU98PJqFpti4pX": 3200,
+    "F3vrMVA2CAGvaC8VzEYPRQJg6dviAThU98PJqFpti4pX": 33200,
     "F3xCMrr4xKdLA4w5fvspJq2aSb3AWKieKTMWTbr5bnC4": 46000,
     "F3xDpB5TaiHvZ3pgBMV4YcYEzRcev18fUagZEf88s6HJ": 3000,
     "F3xUWYFqJAMmdL3M1dCQPAFaJf7Ar5bvXJCaE5xjQcqF": 2000,
@@ -230955,17 +235917,17 @@
     "F49Wb4y6zivGivVMUSy4fptJ3WXJux1V1zgSXqK4fQbH": 300,
     "F4FogwiyDgnwzgj4tendcbzGNdiVgaQ4SCZ5VVTaHz7i": 505,
     "F4LiAtZ81MeJosL27Wzr8KVEvkbRhUmR4KspqwU6LDHx": 10000,
-    "F4MmgkuWRcAELhvke9UP9xBukCJp22MXT11U44KpHBbt": 10500,
+    "F4MmgkuWRcAELhvke9UP9xBukCJp22MXT11U44KpHBbt": 1500,
     "F4P8RQ5AotL4uPbbXtHLBGgkj71tSpTqvCfNKoR92peT": 5000,
     "F4QgCqPCeRfZvf7mLdWhQ6fXJXTn7QeAWiUsgcvUTmxM": 11059,
     "F4SwP3hPsWoUp9LatKaMNRutjsXHRDJEF3Sft1Frme8h": 100,
     "F4UaQTkNwkokrrPPob6nUwEKgpCbVJRyQbrSvsPkv1b": 40000,
     "F4VVSyVdFwBy68YC9wez5g8xeEASisNqyUBwxtBp61EF": 7200,
-    "F4bWjLK3B8M1ZCbNpKNc1YdqCWyEPxysbUf63Cum2Qsz": 303000,
+    "F4bWjLK3B8M1ZCbNpKNc1YdqCWyEPxysbUf63Cum2Qsz": 293000,
     "F4eV3T3M2HoS1h9Kiep8PRAsSCVsF5VT8m64oNcTffTu": 314,
     "F4hDMJGgxvZaaqKKbCMBTebkei9M6CtL9mxvxLmWpmWR": 500,
-    "F4iE4MmUQJQ6ctsjpWNHREgDeEe1u7zvvVzmZh2eeYPs": 32040,
-    "F4ihxKVvX92xGxYz9AvvDjy53Zz9Sj2qjTiQT4SV237F": 554421,
+    "F4iE4MmUQJQ6ctsjpWNHREgDeEe1u7zvvVzmZh2eeYPs": 47219,
+    "F4ihxKVvX92xGxYz9AvvDjy53Zz9Sj2qjTiQT4SV237F": 576421,
     "F4jNrQKytenppKerhw98MpoTH2p7uRbmaT3Hy8yVNyby": 46400,
     "F4qJVUEJ8HzKvMFbBN2THaXbkyXiNVyHvmeggpappFgz": 434587,
     "F4rtY5PzyyknseJsfLGAvG6oyPFz22aJokqDGd8mR95G": 6000,
@@ -230973,7 +235935,6 @@
     "F54QYTZS7nf6j5832MkyR9jrbvhnde2z4Xd7z8AuxFYX": 5000,
     "F58745b7mCwi9kSH29hhYwf2n7zg8YDyCfhysZVUmabq": 7014,
     "F59WeQDmwMVu7nxRNXHasjFT7ifsuTKUHUSik87GrCTF": 8000,
-    "F5BSKLdoyRDTNrownbxwmTwFoyToTam9Q7VYQsQ53Aei": 3601,
     "F5CtzLSFcM43w7BxaUy73LW93GsmoSEbq6AtXH5DgaX5": 36900,
     "F5HMKrJJiziL7yyUkeFdE2yTjUCbi2Ti1ekRaG5a1nkE": 2022,
     "F5HuZPy6UKVD8iVVwAhpdwERDZz6yojh1x5tXjMHVmL9": 500,
@@ -230985,8 +235946,9 @@
     "F5cap3UX1yF1yQaA9rxCzYK9q7EMf3dwX4d6hWYp3Fh2": 2000000,
     "F5mFYHkGtjTyebmdLoG2ThVz8hiFGybcgLYWPTs7ZARS": 304,
     "F5p4VD3LF8gfb348NHKRGu2kx7paLh16NUctpHzzgVBA": 2500,
+    "F62VywzLJvc4PWFzXCXZiRin1c6PdTYpubiDpBidhp8n": 5000,
     "F64fJk1nK7jBNNX1a2g4p9DSpHurL7MG9tLg4HNEEJ5x": 10000,
-    "F65PzWNwkotSgU9qZW9hCXnYnzVNbsKQ8FYG9PSsQh8a": 20000,
+    "F65PzWNwkotSgU9qZW9hCXnYnzVNbsKQ8FYG9PSsQh8a": 200,
     "F65eQHkj3Sf4fuHUxzwWtUZG7AjimYbA1Vb4QExEYW5N": 2102,
     "F67BgeN5L7AYVYJQMzgsU6H86wff4z9xLfzasCyayfaZ": 8300,
     "F697SwUg9M1GFn8d7nBEAjvCJtAKPYnh8UoTLgeNAeUe": 11500,
@@ -231007,6 +235969,7 @@
     "F6w7R1Mmud6p4Nh2buuzFfuZGf4v3VEU9NVLTYNQR6Qf": 5500,
     "F6xE6KPQ86dVWzFSUUyLPrd7oRumaks65GsS33VZBJH4": 1000,
     "F6yzPNcRnEEU1v23CvgkvMzZonfiVvzSmRTxe2KiSmbz": 2000,
+    "F79yKM4tYx7gikxddLHPV51DiMXQDPxvohak2PPrRVmY": 100,
     "F7Fo1GRHqkupKA2844Ep2fXqfiorspuBQGFEtF5UZVz6": 25000,
     "F7Gz2JHyUxHcX5xc3HhmFJzqaF4a9n4BTkCYYTo2yzKd": 10000,
     "F7JJuiiJK6tAW427KtVj1Q7dQCDjJjHnnZdcsA19hihp": 4000,
@@ -231034,7 +235997,7 @@
     "F8SWohY58jkjMMzz721QcxsRwqz2YgTZXGC8QJvjcTy2": 1345,
     "F8X9zdbH1YzakzWnxGpdnQ1Q6ZLRjk8nxXRLZMvFDUWJ": 2064,
     "F8aPBEVkkfDN99ALoABng71AAjYh4v1E3rSfWTCmvYhA": 1000,
-    "F8aykxyCN38U8bCjGL59n4HAo3oG1zciCRDcyEMN7ebX": 47000,
+    "F8aykxyCN38U8bCjGL59n4HAo3oG1zciCRDcyEMN7ebX": 38000,
     "F8e86YN6Vttwe9FbGRGsGdq2NLjvj7AKp5SxZv5a3QVj": 2000,
     "F8enrCRSnFZvFtsz2eTH5H5YGByqRxo16MyeMcUywyLS": 125885,
     "F8mmwnCeVbaVsHgF21BAn7vCzLPXvPDpbwbK7oBUNfHi": 2000,
@@ -231054,7 +236017,7 @@
     "F9W6F5b11tQNTWFfeqgKtmDa686wFoEVSbNCRQ5w3yJ1": 30740,
     "F9YLvT2y23qrvkid14y7Lx9YXiiAkKR3bsxutF2jJoSH": 314,
     "F9Yzns9EA5cXjLqm4ZzGb4HTyWhsvsPZWWVKTjUQMVj5": 2200,
-    "F9ao9AvriaN8VnwSAxGVJnNDFjymGciruw3xytPZGuXz": 539124,
+    "F9ao9AvriaN8VnwSAxGVJnNDFjymGciruw3xytPZGuXz": 432324,
     "F9bhzsKRgzszHvYpcWpHRZWTzVCwze44AwrdEBzZMK2i": 21000,
     "F9epScuEkkDcyBfiZxvMekZy4WVeNwuvPju4FwVKb57i": 1034,
     "F9m6KBE9qeNqL6rjQrWxbk9y7GwTuAzwvx6CUnczkFYR": 2824,
@@ -231063,6 +236026,7 @@
     "F9qvZArvauPkFnJmm34TDCPQTh7A6854cK3UED8FZby7": 20000,
     "F9zgK5kHFPmSoX8WSBrFPn7eSZgsjd69R5Jhi19jmaRW": 17048,
     "FA3YgfprGqpwFhyVwUKnE7kTa2reaLGsVh2yh7TxX6kp": 614,
+    "FA3zWTZqiitTXuM6Vu9P5oQ8Mk1kyzcPJPqqrHos91iP": 5500,
     "FA4kuhK8DNJBTDTKmUiYJtjJR7L46CgJstgUKojBDmj3": 40000,
     "FA4mr1nzML8iDo7jJsCKKNih8cERUvsqmPdmX8cNwzru": 5000,
     "FAA3CFzbfbC9uuvZoTrKKHNmaPWwDEQJGYRPDrVRLhKC": 5800,
@@ -231079,11 +236043,11 @@
     "FAsoGCEji4pK5aQzBd1gStmEGDkNcPjJCL9Yx1J8ovtF": 5500,
     "FAzvvC2YUiMzij5fnZFz1GUYDbrNTPqiPJZUwpqXV49i": 20000,
     "FB1PdKLuesby98feC4JyjUKEfoLnihsm5ExATJbhb4rr": 5000,
-    "FBBs5RLmPHGP5SEuB3p3XkrpmYk7eCJCWx1Bvqhbdhjc": 4000,
+    "FBBs5RLmPHGP5SEuB3p3XkrpmYk7eCJCWx1Bvqhbdhjc": 13500,
     "FBFDphtBG8ZtX5jvxHXupL7V1Zni4qnoVevsFnQNzYCJ": 5000,
     "FBGRRmrs6aFGcoeybfpj4NExLRoAUchoadAB3ai2HYXm": 8000,
     "FBKzkehLuXYuGEL8LfUArHB8LGtj9AENaueY3B31BpJD": 500,
-    "FBNqngc3xvn3KMEQn8XMX6SzZ1qkskKSD55b1NPtWFkK": 8500,
+    "FBNqngc3xvn3KMEQn8XMX6SzZ1qkskKSD55b1NPtWFkK": 15800,
     "FBPe7dAUNfkusuakCZ1uWK7a8sN474LJx8EaLzEcs8AM": 5600,
     "FBRT3LmVzaMjLCggrnkKoFnEA9UWC72QQfukEWgzUTd": 25000,
     "FBRT3LmVzaMjLCggrnkKoFnEA9UWC72QQfukEWgzUTdB": 302294,
@@ -231092,6 +236056,7 @@
     "FBbd2HCLBpPJpE4hER7BLheSaJ5nLZNacupjanA1iACt": 4500,
     "FBfNYJpQfKLV8Ac4tzFBmckq516Sjfm6JCCjNDAjv3Jh": 25000,
     "FBiWbGHNsBYBzrktE1yvQrB2TqHVmsGsMeXaZdPRKXZj": 25000,
+    "FBjZ2GBqo7jSvdVZugErUzbi9cbP9Uqz2z1UdEpjpxuk": 10000,
     "FBpnxXkdK49weX83EcKiwfbyLur3udBYvBPfcz3Afy7z": 10000,
     "FBsgeiZmFh3B3ATXVPmKtYr8r9vHLZddfLJDNhAEWiRd": 1900,
     "FBuy9T39yA6fFzGb6yWcLoGYupjiAZhCQZg48tD5ayfe": 20000,
@@ -231103,12 +236068,12 @@
     "FC8c6Ks6iDpZjM2emxxEr8bV9Ahg23r9Vo6ujaHcFc71": 18720,
     "FCFunrcfVAJh72aek1yR6qgrNvZJzJ7tRnQLyFt4uf5T": 100,
     "FCGm2EDvTGxC5hRYAvR75QA4adZGAXkyQjN6eoReyBFG": 5000,
-    "FCHNtKXn9WA6tpMJbfrKuhH3mSCsGCYwdTmCTEvRwCYR": 144684,
+    "FCHNtKXn9WA6tpMJbfrKuhH3mSCsGCYwdTmCTEvRwCYR": 139684,
     "FCNHujqaJKV3zXScBCnPb27AkyWLKJyph5J1o7Q8Eq1Z": 4255,
     "FCQ7Z6jSVWbgZMjqVjx24eZmugTcWjYfqX5oVk6NnuG5": 12000,
     "FCeP7ebWVWTGivjodQKLc7Tsgyj24F47Lu9nbF9eRQkK": 213000,
     "FCqSHwyGMibAnM4Wn8afKWgeA7GMkdErQTy1pciWVRsa": 41000,
-    "FCqfvYYkqSPvnXqXCRduVhqQmsACQMHVobKJzPiaWTsZ": 8000,
+    "FCqfvYYkqSPvnXqXCRduVhqQmsACQMHVobKJzPiaWTsZ": 7480,
     "FCuNLnMbp6pfipabHrFhmnFUVf7JRy7xqaVjxMrazKFN": 200,
     "FCuk2VC1mpFfgCXiDQn22ZDD7k2WgnrMs6GWqnR6jsHz": 500,
     "FCuqzsNmfT69jr4x4mTSt9MWCzQ5CWoC9azLYqUuQL2i": 500,
@@ -231116,10 +236081,11 @@
     "FD1itKoYnBuFfjJYbCXtGr7A1Drs7yXWff7UjbJr6wsF": 3500,
     "FD3Forc1NZR4vjMocK4Gc6GyNVzQsBiLr4Wqwi6vPdkc": 710,
     "FD4mmstMeYaVVyFRk8DWiXME2CfbVyD7snEnBDioeCF2": 8928,
+    "FD9D4qV86xZf3tqbrAEPGRDoeGuRPJXq6x24kAsNKQLC": 115000,
     "FD9spXKQKLuis3meGeUTNASi1TnViNfeqRhXzyvywzcq": 1103,
     "FDBfJ9vBLQQ8RHpuTmPFd2LXgGYZVLEHJnFosa7aCT3h": 5000,
     "FDE8ixbY3YMp9s6D9UH53xeNGcNZZQVdWjVNoy8BGVZq": 5000,
-    "FDEZpi1nySEKfjPB6RrhUU594EU2rzhLFbxcq7km7xyS": 42400,
+    "FDEZpi1nySEKfjPB6RrhUU594EU2rzhLFbxcq7km7xyS": 20900,
     "FDHvhm5De9aqUVfbjfBY1wGFhqdbc9DC1hMXJqzSedbV": 10000,
     "FDJVQDEFboQ4JbbgWZGf3SdpPeLR4kRCB66RuFwe99og": 31500,
     "FDJVQDEFboQ4jbbgWZGf3SdpPeLR4kRCB66RuFwe99og": 16000,
@@ -231153,6 +236119,7 @@
     "FEeT947V2Qz9P1Fgy2tcKVKXQ87AcD2VB8EVBWSX6gcK": 51000,
     "FEgNy7i3Xueov1RUXChoUFE4xVyUEHZr6chvTqCws1PW": 100,
     "FEgTp4nT1zqfUxy72ZnNkDoWMfMPT744SAnytbrazfzR": 4000,
+    "FEqTPkFRepqcwTpsSnLT6rG1LiknDmJiMprjLycvvcSt": 36600,
     "FErWZStgCEashJa3xVvgmCHecJhdJwFisX1h7xprj7BM": 12000,
     "FEs7prXciUfKTJuMdNrD3WFkhZnaTz5d2YUqJRCHxPkn": 32102,
     "FF4wiST4Z1jnGtzQRkmirpJdpaSYcFz5mDxaNdU8NVT8": 9300,
@@ -231165,7 +236132,7 @@
     "FFVikQAfcLYW8fEC8oH4PHGT2tM3e4dNAyQyRQxBNHtN": 10000,
     "FFVoRBsSRFag6FabaHeCLWH9FhuLib7K5GQEh9H69xve": 1000,
     "FFhRKPooPzqdcLYNxZs3hU2SvMeqPo7gBUNBdQmuyNRF": 10000,
-    "FFhrpzYFF5TqA3nDXDQcV37PkiwWNZohnVunENLcZmKi": 200,
+    "FFhrpzYFF5TqA3nDXDQcV37PkiwWNZohnVunENLcZmKi": 55600,
     "FFjCJk1zFQTxN5wRGEoD7JQkf3wqwQpsqTSAzTLhL4sg": 3900,
     "FFjNDBETYsJ1UX1N9TghGHBBEQEtWFjn2gVdLaktgKZt": 41200,
     "FFpRu5mJrVkV8B4bQ1YujVLLvLvGrg1f6pgZgCke4LCu": 40100,
@@ -231179,10 +236146,10 @@
     "FGD9nDk9FTkD67xGHx4bfJWoX7XEtiBotKCmqoJLMMGw": 31200,
     "FGE5cyh7UzV6bQb8hBXgoezhBmeGLZjNYcMEB4gH5gEf": 859,
     "FGF1o5SzGuHxfa9p4pZ1QtGqcARKy2XNxq2Xxqo8vE1X": 30000,
-    "FGJiW51SeCcSV3apnjbLhDRnzyGjdUH95Lsucty86TAm": 5000,
+    "FGJiW51SeCcSV3apnjbLhDRnzyGjdUH95Lsucty86TAm": 2500,
     "FGKRKvo2rV9bYxvdJgTLfspUyWhU1HLF9cb7V9WyVzgD": 6000,
     "FGLPuamf3aNMvrNzpQbyzxep5MKJJ1UUfQQ1Du6QhodE": 2500,
-    "FGN4Lor6h87cGdcpfJgbHeYRupGV6CizW1rfttNJoqfA": 15700,
+    "FGN4Lor6h87cGdcpfJgbHeYRupGV6CizW1rfttNJoqfA": 15701,
     "FGNUqGmF9wmt7zfSxjes8UuUaHqbhvvJA8rWu1qGT7Xa": 13000,
     "FGQ2kCzwYNCKtxwR9xsiivYFGnRbpD1SXjkUBA7i8Gpq": 10000,
     "FGSTc5jqQAgWdHJZx9RBMcHKTWQLZxjYs1Eb3VRtbYtk": 3000,
@@ -231190,6 +236157,7 @@
     "FGbCeNsH3Mmc9ocHpna98FuFCz6HERE8kiPMPvnB48aJ": 200,
     "FGktppQ4ogWntvac5nEeki34AMDv9cD8d9HUU4phgHuM": 100,
     "FGm2eEV35wDbSbBpbZbYqjcZZZ8z6W8fMtZoi3gohxuW": 9400,
+    "FGo98XV7cSPc7SexGYtVegxTMM8FuPmXSmsQBqZJMkBk": 4000,
     "FGqVoXpSCbppb5C76brFDKn8hKSE7FrascCF43DY3Age": 8000,
     "FGraJ2uHakUcipYRu55skQuSkcgaoihAJh7pWPwWVTay": 2500,
     "FGv9neGhrLm4TpZrWbfVgXKWexQQ12YEVDK6oZdrF5rt": 195000,
@@ -231204,14 +236172,13 @@
     "FHGc6EWXqveAswVF9RuaU9bwnwDckFFrvzPAemwTSdTi": 21400,
     "FHPkzA9zbKRxK1N9vHWTc7dQLB7hQPb4coEBiD37HfQT": 3600,
     "FHVuga2J6robZmDbbEN4pWGQwWXPJEooyWjupEiVmupp": 5000,
-    "FHWJbKYArwudVRMMi5FtqocxQRb1PhazvYTwpk6kBzWE": 13700,
+    "FHWJbKYArwudVRMMi5FtqocxQRb1PhazvYTwpk6kBzWE": 7900,
     "FHWxd3Qr1vEH93LHErzi2NxNHydfQumpSyvGSeuBycvr": 4500,
     "FHYE5FgUEQ8hVS5mTWjSeG7romHnFza6TK2ce3mGfN8d": 2000,
-    "FHYHCF3Yxjptib8vbqwf1gujYQYQPdZEBQrDNYZ8Kt2C": 61600,
+    "FHYHCF3Yxjptib8vbqwf1gujYQYQPdZEBQrDNYZ8Kt2C": 51600,
     "FHZosADQmXSpTees6Nwx4Q58duyLtqxHbaX6BaWma4sf": 6997,
     "FHaYSMrWWJPaUUzQB7A1dpQkWd9bF4vpF73mcoyHCt5R": 10000,
-    "FHfwC2DJEe23GtCgoNFMd7g4BAAB5WitKAoS811fUXNW": 88000,
-    "FHnSRn4u12ywWdRY1JxiQB1P38hHgXYFjxEL45fdPCyM": 42300,
+    "FHfwC2DJEe23GtCgoNFMd7g4BAAB5WitKAoS811fUXNW": 58000,
     "FHw6GiBfxTjBegqnbvAGSPxrRP7Pw2QKCHfWanSVkGUU": 100,
     "FJ5VvFQkdobU9hVhoY9KGQUNADnNodf2kQtZN6ekjyXV": 16000,
     "FJ8qoSc86qqzJ6q2fKEdMk2MBk3RBSLZQq1hoSuuFP29": 100,
@@ -231228,7 +236195,7 @@
     "FJNQ7YeETnu8LRgmUDr5xXDZZMEExtKy9712aqNz8Nkv": 10000,
     "FJVATsVqXycR89X6yv6SLJPBHUec4rf2tsvwuc1YFrr1": 301042,
     "FJatz7YtN7792iRkzXUPJsfrBdi3QvVxz1sDQS3uP4wt": 24400,
-    "FJb6B5sn1r1ZGhzYWz7h5diTi5YyMiGiyzASmrsVzAnu": 122100,
+    "FJb6B5sn1r1ZGhzYWz7h5diTi5YyMiGiyzASmrsVzAnu": 71100,
     "FJcg8dP7pWE647AKDC8AoxriBac8UcBpRvjfWT5BK1pV": 10154,
     "FJf4fDzfZyyZ7rmzD4kGivkbj6PShVi3GigSa81tPZcq": 3314,
     "FJj6i8kWqXGwT6veHGsBSTrm5t99Qe3cdfKTyEJ4sevt": 5000,
@@ -231238,6 +236205,7 @@
     "FJmRog5SVYTHLMQJXy2hpLHWSpfku1bErb8KxyTtnX2H": 1000,
     "FJoFRsGJy2E1JQq75D9AGDwPZiHbvBvVEdU3qn84KhFa": 2500,
     "FJtzmCmYCiR5C9DSuTJSQr5gk78ku9YpxZ2eeqMnTuxE": 900,
+    "FJvBCh9HqUpbQxkkfCCsRXf5GMXTKFwhbofnDuC43khJ": 30000,
     "FJye4KDahLvoJS61XXzwXtu2Pen68t4hVi3dTXy1Vvx4": 1000,
     "FJzQeh8aKC5NprYkEYQyr4nzgNW4i1akJFnC14mXVZiH": 5200,
     "FJzteyKy159Ebj5wQLgPHwtxLVn3ok8dtXtS53nDVaDS": 57600,
@@ -231263,6 +236231,7 @@
     "FL35D6Wd1ygSBrAqYQy6LpD4mYYpwR2fYQgjREtn8EXy": 10000,
     "FL7wgR1TgyL1knDXhVjmR4yaUbuksd3deXE7UaH6QCui": 1059,
     "FLAw9SzCKSnpCdnMUSsHC4cMGxTLBXJzo3ayGcQmbQrU": 1000,
+    "FLFcRkVQu53sN6vxVirCJkpKaGtAXaesBu5GvyS1gnTd": 5000,
     "FLFscTUtzFtQNxBti7fjuzNFvWHQgFJaCPnC1XJptgFj": 20420,
     "FLJGHaUixD2ogfzXksHUCgdXMvbDskBtngFQYKqFshj3": 35000,
     "FLKp9ePcmFX9Gpr1Au5LVzWhxh9FeXxt8df18niCh9Ln": 9820,
@@ -231276,7 +236245,7 @@
     "FLtnRKqHjH8FQUY4pUgocNmkNRCrptoNwDnCjQFzqShn": 16150,
     "FLuXZSP7bUTBfwQXVA56hY7e9Q6dww7Sst8Jdw6UsimT": 102800,
     "FM28ufhM9BaCXYR6BDX8kFpCwuC3vthdSxioAPDnmpN3": 64100,
-    "FM3mWK365hzH9Ez5uhE4ogvGaB9U6g1odpJUEPbyLowe": 646672,
+    "FM3mWK365hzH9Ez5uhE4ogvGaB9U6g1odpJUEPbyLowe": 523952,
     "FM3mWK365hzH9Ez5uhE4ogvGaB9U6g1odpJUEbyLowe": 10000,
     "FMBnwT38W1exNrBK7uigHG4o7KJ9Y3Y6kEN5Vw1Amxaa": 19900,
     "FMCELx8pggiY396Z5TELFLmW15Ja7gwoRncDLvsYaXrh": 45050,
@@ -231286,7 +236255,6 @@
     "FMMVDKqCH6qvRPXgm7w7qMbgDzo4AC6va458rCBWLeaK": 10000,
     "FMRm5yJNc4GbonohmAkWqPRRbYJBpU19JzHUq16QAuML": 1011,
     "FMWii41CRi1br3bUQ93xWRFY7MhKwTPbRdGYy62AFVQp": 100,
-    "FMYWNpLvP4LTNdG7tV32wgmvKHuctQk48n2JScrNHsne": 12400,
     "FMayGZhk1RaqCQkKCZyfeae3ySWqKCzWrvjf1HVFNajc": 1000,
     "FMcaMykjFmQJVGcNmvvGYNEvZB5MwroR6nxQ8PCVaXFZ": 28000,
     "FMciMp6BFNHXskYRUsPKLcXiA9Ep8wYkiVzUwsJd85Mk": 100,
@@ -231298,6 +236266,7 @@
     "FNKpfGUAkPAY34bdJpiarDe8nsXGNeE2F1e577JRWSL9": 23300,
     "FNMjJudwaruEKB6ArgYNXnRH5KopgpTsiFUFXKm9DhGd": 24747,
     "FNNwiQr3dgyQkgpAFEGV9b5mnyFG328LHZBkoBC3RMA": 10000,
+    "FNUtZ5horWHK6iB2DbFkmVhhkci37hk3VApSUBsq2tjL": 54926,
     "FNVYuJ5Fz9uMwasDU3H91wUL6ewgXhFSS8VaU2izoTKN": 3000,
     "FNWmNrKztfR1vT46E4wkikbaG71GDsMp2WUtZLq3mzXc": 8000,
     "FNdacd4SMf5csiiTeYqssYFu4MQGpqt2Kzx7c2VUEkZQ": 300,
@@ -231321,6 +236290,7 @@
     "FPCyvpxvxEKC7i279c448oLP37rxUNXQbXusZLwvGVxG": 30000,
     "FPD4ByCid7TkyWF78qemKxWNgV2hXX2vYX41QCtAexsJ": 2100,
     "FPDJq3NgT5bBwFbYr61D6Gxys8ccNGVYA3pLGicMTJdi": 400,
+    "FPGMhMCkC1ZXUqY8f2Rh4TQFf6qUKsPwv6QY3wJdiwa8": 5050,
     "FPN7EJRyjERgHMUc48Hk8m2TW5wwFuvKafA4vdhgvZuw": 1000,
     "FPZc2EL1mvNTcRkFiAyFHQjymdeRRmDXbd44DWfN7dpJ": 100,
     "FPZpMyFogUYBmehv3CqUkvLJgRjwc1CkfCbfEqvyZQda": 20000,
@@ -231329,24 +236299,24 @@
     "FPikYqCuUGzdix9cpPzMuhwkPzY1mZrU1uDrhsBJRRbL": 8800,
     "FPp29ELE2qMJ5nBhRokQywgoDL6mJCWvVmgRcfHEXf9m": 1042,
     "FPrH3qap3f5gHGeXLhWdNCJysq9AMNSJhFfN3MiXAwuT": 10000,
-    "FPsC24gK4U246YqJwHWTrjdv9FY2nHGvrFd4gTXNGNwA": 5000,
     "FPsmReJP7fqqZpPLf1u5GJUoHeR7XBr1y5Zto8i1ib8u": 4000,
     "FPw5UA7N8b43hTB7AZ3poQxUEPP1ZaGyR18bdUx4DDHF": 1114,
-    "FPwdQhzoZFo7UnV4RJMEcrksZSjynpCaF6N4MKgwc9b1": 194187,
     "FPzVe8EprpExS1VGs4dtMGo5NqwVx5u6AKbbL8EqUUaB": 306364,
     "FQ4e6e3Z5iL8Lr4LEKCeBL5uC54iXWpcRAyXe3QmGuwA": 23500,
     "FQ5PpuXVgEGLoj2cTMz8zTAE8h4cjVq79e6WMXZNf8Zj": 100,
+    "FQFEf416ebeZQ2ct2DdmpoDEmnMjsRX8zNAKNeSLz38T": 105000,
     "FQHMHwJmrthw2mtps2nSA5HsJ2RN49fio8F1zzXMjx9r": 2000,
     "FQSuUPxJu24Da4r7TM5UvVGb3SZjuCy4ACi3g93n4H2u": 136704,
     "FQWJW9P4mv1Npr5CRkK5276Zot8ikKwpJjRbqycvn2pR": 33000,
     "FQXD5cXXmN3dQLJKNMUKt9jwPoSKdziW8PrGvtdp61o2": 5000,
     "FQbxfqvcBMUwfTH2UjRHdRX1M7vEXm1AeGuig141jsYT": 115000,
     "FQf2b7Uvho1WTGGY6AXxjgVCfdHLG5r9cgFFfKMHFeFb": 1000,
-    "FQiyBaRNCvt8Y6d5pwLatJEppTcimEJdakDb876amTFo": 147360,
     "FQjuZtB36WU46eeHBpbXbxauhc48Dk8tUgYTKCAGueL": 6000,
     "FQnvQEpwhDPeWMUp21RKoM9Lket5gBHpxco7kWuCM2wW": 51000,
     "FQxqYx6ZCExuGKgDtHCxtn1euScmbgtBAcgo6pqQ5nzJ": 30000,
     "FR4TwpUUhmEy7tR31g79mnWMyEeUhKWKxdMP6M97P16i": 2051,
+    "FRA8U4nc5ikK47NVg35wWu3mu4E9yZfaxVh5cYGeqhiu": 2000,
+    "FRA8U4nc5ikK47NVg3SwWu3mu4E9yZfaxVh5cYGeqhiu": 81500,
     "FRAtKucAW4rqY7rg1CA1nKhFQ6qKNzB3wjD8iNv158c2": 13048,
     "FRG6wFwPqLjNf6pyMz5YZpFxGjqxWdUHM1qxtp6ZiNm3": 2000,
     "FRGD4ifyJfgezEt4oZeGEh1dky3ht4cRwg11GiJ5yczP": 650000,
@@ -231361,7 +236331,7 @@
     "FRT4naQHAccTEh8Y21jAwae51zw21dcvMuuGx52LqPvS": 10320,
     "FRTMxvkhhrwX1ukgbaGzWagLp83p1e8nQLb727aYuoDT": 2014,
     "FRWCmMKGW6FwQD7MPcqohYt4sXJPcJqyf5FQ4kcrjWoi": 2000,
-    "FRfGzSKQFXVsGXKg9rx1DN44QKh2tpd7nKJFxwmVuGmw": 10500,
+    "FRfGzSKQFXVsGXKg9rx1DN44QKh2tpd7nKJFxwmVuGmw": 400,
     "FRju4WR452rYzD8RmWFPPYSw6iHgTAKHZA78ewDy3nf1": 100000,
     "FRkTkudRtKfVrxEmxdFBqTAzPUn6oN1H6ksiyTwXbJJG": 432360,
     "FRrxAAoTZBG9fuNCreMMfphH1bCUdyr9P83Ekcr72mEq": 1114,
@@ -231373,9 +236343,10 @@
     "FS3Jv6xiw4eduPHqBeoZDid8CQGJtuUoCDWVBuA5ZEJS": 30250,
     "FS53b5Xwt6vSbAAvyDSQ7pysxSK1DHsR1eWfKzPtfnPG": 6000,
     "FSAgky1gAV5Fssf5gz8Mes5VikQxuPM9ZXtEHyxRmVNk": 5295,
+    "FSFi4prhuvdLpvkdayQSdGkzSdkZsjFK37GJR3zh2Km9": 5000,
     "FSHEWtLz6ohgHfxwFrE5QendSrC57Ai2DmWK7C4gmvaF": 115000,
     "FSHEWtLz6ohgHfxwFrE5QeudSrC57Ai2DmwK7C4gmvaF": 10000,
-    "FSKarwkW1CGEfznyrfWxLgYu3NQsofejdZGJt4MxRta1": 20500,
+    "FSKarwkW1CGEfznyrfWxLgYu3NQsofejdZGJt4MxRta1": 432,
     "FSM3DZvKqMhehsv17nLgTotzd9qeiaWSMpL1LEVdtpqW": 1000,
     "FSQBkxhRZeKtGt4fvkQmgtmwic8DYe55ULFgLEuUvuKF": 15000,
     "FSRSMnrZLdBLPGovyj88Gd2NQMjY3eoYogvfMywQ9yiK": 1558,
@@ -231392,8 +236363,8 @@
     "FT9dV8U3rLXWATc2kSrUJh4NndkMQ1wJBaMzWrx3nm36": 7500,
     "FT9ggbgjPQzj5G5pC5FoKMfH4ggdbxBmNHt2qG94yk6b": 2000,
     "FTC9eBLQpKEuLqZgJWCCFwvNinJmfsdr5yfrX1RX1KvG": 5160,
-    "FTGkKTduWSDrAJ4mAhwUYZp66mxwrJVUh2wmtZz56VN7": 178640,
-    "FTL6vPGZo9vc2zywZkMA2DZV3ZBPNXAHCX9k555nBCbt": 1842999,
+    "FTGkKTduWSDrAJ4mAhwUYZp66mxwrJVUh2wmtZz56VN7": 113540,
+    "FTL6vPGZo9vc2zywZkMA2DZV3ZBPNXAHCX9k555nBCbt": 1828999,
     "FTT1MY5ZgHEWhCJB3ejpU4haBxTzL2z8S57d9E1FPbd5": 12500,
     "FTWpXKtR5Quw5WamVhVwFVYbso29U2vvTbPkmV8tCjCS": 5000,
     "FTa5pY3nTKPGQm3NG6n4L3vgUNp78EuFJZKbXmDLJFiU": 152500,
@@ -231407,6 +236378,7 @@
     "FUAmqzYpnEUm7SJzJuY1nbQWScQU8JnGFfcPE5i1Cw67": 7200,
     "FUP5qS9EGEVp7axqsi8tNBE9KiBQHUpPK4tTLAk2yGk7": 1064,
     "FUT4bqD5VjEum5FezPGUuF6HbCF4BPoLCVmAKusQft9o": 3000,
+    "FUTRgCBRuHaJhWo4yNi4g5Bn5LVsWqwjcoR2Nh5yvFMr": 14000,
     "FUXqDZePcZbC1vNJEfeyF7FHGoa3tVAuYTHuboHQJVXX": 1016,
     "FUYJNdDgRo4gMk2EuNqmhu9k2GgCxaEuZvCgHbrdyV56": 19800,
     "FUYd6et75ZhtnVeAWvetJHfgzJJGaK55qidWGFz5B4zX": 10104,
@@ -231417,10 +236389,9 @@
     "FUkYCe8Km3n7r1KddjYcR8eKpTWDnJsXYrKtGN5jT4mi": 900,
     "FUtWZLV9BSYW3fT8odV7kK61yWUFpfMDdmQEcQ8aGjiz": 52932,
     "FV3hnb4eLun2PGAj6Dyz6CLLe8ABnqbrTuR1pwnrhiPX": 3900,
-    "FV5XMNc8ne9ZfPBV4voLr5uZfdxo8crkyzfKLneRMC2J": 34572,
+    "FV5XMNc8ne9ZfPBV4voLr5uZfdxo8crkyzfKLneRMC2J": 36902,
     "FV9v5fWmqk6LdqaREjAToQYdqK1kpp9fp7PLTrk1SgXd": 54600,
     "FVCMxwg6rfWNu983Q5XH3xqmVvf8VxjpN5zWVQk766xm": 2500,
-    "FVDdVPiZN1Lu1ebXxKxTs8UVC6JqSpcty6vECs7QLdQF": 7100,
     "FVFForNETZwjtuHksCYXr7C5CR2s7HKV19f9HRsetA6w": 7200,
     "FVKjZq638hJo1TimeaKqQb72LMXwnd5FqjGjMbhT5RR7": 4000,
     "FVNB3Yj63Dc1hRP3xDTtbqLHHwss1iEmYs247kDv1M2z": 19000,
@@ -231436,13 +236407,15 @@
     "FVi3pdK6XRpfEWmx9VbfE7yzduMALHF9vYcD5RgiJGMh": 102268,
     "FViqHh2MJA6NHYXT1632gajm4FkZZbyWFpGG9LprExXG": 4236,
     "FVpNck3LJcddZEcgVVrXieMSmHy9JWg5K28MbDcJfgeF": 25000,
+    "FVsmzFamb8mzynr68wimsuqY18gmJ5QYc6szafyHAqVV": 4000,
+    "FVubZyPh4UoovbLPvYE4aNhc9rSqCn3TG9TAiSXYM9s9": 1000,
     "FVyckwewL2394ZUDLqf2BreeZHeLiLPd9ubMkxyoSnhf": 1000,
     "FW22fhaoPRRAK9jiRfNdfL6mbb61QAwADGPws9NguWyx": 800,
     "FW96AQjx5Kp9Wytct1ZmkU8mXZrphFa4vgQnfw3x6SfY": 4400,
     "FWAYbzQiLTNYXnGwX4CHkWrx24SZ7o7rk7pPuV1N4gAn": 25100,
     "FWAa2BrxeipMTW6ac5x9orcz9TssQc3fhd6UMWq7UsMQ": 201394,
     "FWBqMNyHawDPeavpKLTH9MXUu8vADdbkXwzVZNUhC8c9": 4041,
-    "FWCXHzgAymBHk6FNFVPrVVTpx9JivJmdWGjKVzYA3ZKT": 45000,
+    "FWCXHzgAymBHk6FNFVPrVVTpx9JivJmdWGjKVzYA3ZKT": 68400,
     "FWDbp1em43X9HjDtmBEycU3nXXorC1gNDjNYZGkRZZXa": 4900,
     "FWFN3dUUiRYbY3NA4TqUmh6pRY2rNY9G1fJw2zJtxAot": 100,
     "FWMbCg9DsseEsDPrSz24qyxtJs2FvPKRnLqgpVPLEtic": 19100,
@@ -231455,8 +236428,8 @@
     "FWnbcfmGhvNstcXvN4BGpqk9iLYpZ4JJHhxzfGGQuzF6": 521,
     "FWncpH4zF8LPjnYQ1x8YGX1DWykDxAXqPTX85ZwDTz6M": 141000,
     "FWpKAhPSJjFEKBjyt14QX2gLgL9D6x3iBkS4nDaR9GnP": 11700,
-    "FWqTkaqXyU9UEvVePBecjs3CYRqhkANi67rCgmDLUyoN": 778430,
-    "FX8S3FWr5ZAXoexQ93GBQ1f7MKuy72D7W7P5Frai8awb": 138900,
+    "FWqTkaqXyU9UEvVePBecjs3CYRqhkANi67rCgmDLUyoN": 788430,
+    "FX8S3FWr5ZAXoexQ93GBQ1f7MKuy72D7W7P5Frai8awb": 183100,
     "FX98HEXR5nRyermtYxNZnhwFk41wTH4reQAphdWHptz6": 1000,
     "FXFnJVBWEDUvJba3raj2cxY1bK9ccEe9eWSWYupjYFJ8": 3400,
     "FXMGL4CQyeiYHKW74rnFcYff4HY2AbRmhjDPG65cfoQ1": 1000,
@@ -231474,7 +236447,9 @@
     "FXuDWMuUsU39ZQ1bqHtGzKXfBhA8UFso9b6PCjjCb6xH": 100000,
     "FXxKUKxLTuLv2mMTKSargJetSEGK5w1TdQ1gqd1FM2Ew": 1400,
     "FY1G15fvU783GyCzL9ahvx67S2jBNpcURSKwn6m64ihT": 25000,
+    "FY1qRYsBtsk7B48TGpRHxHVMZk5GUqCGLsvUSCWe8Z8W": 21360,
     "FY25R2xc3uXkphuUCsLjk6tRg4JffgSgzL87uZQKQBML": 1000,
+    "FY79WjkrETdKfDAKfzDifkbKEPTM8pDqZBrFqpbcgg2i": 177700,
     "FY9ma5gS2HQCoowuHRgSSj7Zs7dRqVAJFoMPdQiKwFMc": 9500,
     "FYCmjETahwBhDWTUAsC7FHb5EFFw9Husk5xjcfgCmwL5": 10000,
     "FYDyoVSM6ZKznpo6EdpU4RzBQNLSD6tvQD18iyAbjXMf": 37300,
@@ -231485,7 +236460,7 @@
     "FYSTbzdSLTEDBvMp2Dawx6BfLayV3xUo6yziiY1kHW78": 10590,
     "FYWKET8Gctwg6z2Qqw2ASF2tftLbMt6ZuAhwy8sKQ2Zc": 4000,
     "FYbYa1tpe6oVMfTSWWtYwP2ZbXDseUsdMRtii9QAaUt": 2102,
-    "FYfGKLUsU9E72SE6DrsZtyUPubxYEXcc9EA8cCRJ5Mmg": 108150,
+    "FYfGKLUsU9E72SE6DrsZtyUPubxYEXcc9EA8cCRJ5Mmg": 176464,
     "FYizbXYmXLKnNYiy2S8pPBAUQXZK9JocHdRJwasjeVpP": 2032,
     "FYkh14remAPV66ZgfarJ2WqAPN7gq3RZTQZwcZrh2nn2": 2000,
     "FYqQz4L4ZqBqdswtcidPJPwVvwiGdfv6PbPGT4LEuDUB": 624500,
@@ -231498,8 +236473,9 @@
     "FZDRMsf75ZeQMjoJREUZgXospM29ERkdbxcNDKSZGPTr": 42668,
     "FZDXcj66UCs3F1WEDjni22TuEToTJvpCA48Aaon8jag3": 5000,
     "FZJYhBEM2orGn4a6sw7ezAYUNHbccDxXYcCXBXQyjEJw": 4500,
+    "FZSN7bBcALioorF8DVBXoPsxcMtjcw1g7NGeFbMb6gqm": 3000,
     "FZWYQpp5E1w34AZSnNz5a5Br5HVuMsaTZ56C4NZvuiZK": 3000,
-    "FZWqd7yeQvvx8zUPZ6Myz1L1CVVMsrx6h1MADKqtdeCy": 11500,
+    "FZWqd7yeQvvx8zUPZ6Myz1L1CVVMsrx6h1MADKqtdeCy": 11600,
     "FZYLmB9B8xKv8658Rc3jd9uGB4WVx5SvSBxUSNdXtCui": 700,
     "FZYQyxWD1eVu38WfhKv4yWP1YvKcqwRxFK7wzUReNjEs": 5210,
     "FZYYu1YmJn7k8asQMLeeS6PoQCBb7Vh8K6R6FSLgEUxb": 5000,
@@ -231511,8 +236487,10 @@
     "FZrDyszDKE9gHvmpjs15eXCGpxn9DCrfz6TP6nuzM82G": 46500,
     "FZs3DHJnBQr4CkLVkRPktqyxRWV89hQKGGyu66YibPyP": 1400,
     "FZtxWsVJKQNjfJYCQgDnS5RMP6hiPgogGzEPo5nfEPyG": 20000,
+    "FZuBPFdGcdnWH7D6PzqiSNainstn27Nvg3a8Pdmu2sE6": 1890,
     "FZuaKKPH3gaqA57bPonPybhwCrx8KRbFt2HSk3hTyPfW": 1000,
     "FZwSy2rjhtzvcFBHiXURheRMDfNL42nEC77J4y5b38PX": 4600,
+    "FZyh84ZubhcADyXyZucQWQerDrsyC5vuiVkKbFf9z9Gu": 314800,
     "FZzrLowu7hNhrMfWQCfbvJFVJZQtyjr6MK9kz4EeqThv": 93600,
     "Fa8vqDdtHjjUbNkWsyKK9eQ9BJVYYBUMKH9gBg1Nnxh5": 700,
     "Fa9RnHWgdMmZZfuNhJRMsk7pXTkN1QxZu1cxHRHzxS9o": 10420,
@@ -231527,7 +236505,7 @@
     "FaRhtU1CWCux4BKWwT47A7ZiTmfsdyDJ8XT2WggUU3T1": 11200,
     "FaX83koWFeQibtCFZM7FqTuP4zgTCy6KqbFAfVwSFzhA": 500,
     "FaXznqkLZKFn7rKmpvsvcmhRV26FaTwqmSfhZvqiEgS4": 1007,
-    "FaYbAm5gDVBUwibWmshYXnZWLorkLGzaRF9rrHAwwkjk": 7900,
+    "FaYbAm5gDVBUwibWmshYXnZWLorkLGzaRF9rrHAwwkjk": 8000,
     "Fabkknz129Bd8s5FnPWrNrFibtxx6gBboTgie5HboY3B": 10000,
     "Fadrw5jk4Jyot5RF89i7LsmaKkDWSriqonQdU79DYjZy": 202,
     "Fahyv6sLLu2MuW4GQ5jp2qfK1fuYULDBttxXYyHP6D21": 79000,
@@ -231546,7 +236524,7 @@
     "FbD3NtqVEexkAErwbpBzNkX2Uh6qYqPa7EKAPJnzYcRn": 50000,
     "FbVH5Ys9e28C8axfL514HnEgR2FELwKwAP14T8Eeeg6i": 30000,
     "FbZVbq3YzjGoehZdhGWwzt2pGLfTPJhefoZTPXrMh171": 8000,
-    "FbhDNCQpJszxhpM4VTX49K6iC3gZFh62r511UsPpwn3t": 43600,
+    "FbhDNCQpJszxhpM4VTX49K6iC3gZFh62r511UsPpwn3t": 47900,
     "FboF21PoHMUQhGv6QwJ53btKTFj6aAZHmvR8hM1G9AMj": 6400,
     "FbrHVrna3EiA9SFFWwi94THEf18dGDmUPuXd5aW4kXP7": 2000,
     "Fbrw6aRCaair66PnWFfdULJBuzAck4bu7ggo7AaLLyc4": 3100,
@@ -231560,6 +236538,7 @@
     "Fc47FC1Ez3Chtc3HQFqA3geS1isXcCsbtLH82QqgAdBj": 10000,
     "Fc4qvhgqXvXNGncJzFz6x1Njazhut6fkZnuCh86RQ9GB": 2727,
     "Fc6gfg7E5KP5cWs8FGe5vxtmv9QKejHUKyMJXBLnBRjz": 10000,
+    "Fc7iDDpJL2wAxMmRbY9hCf3j2jKdFbMMHCEnRJTd6BC2": 19000,
     "FcCraWZbhtd44vnJxp49bGsVYVibhQZ3JkUTye8BCUfA": 20000,
     "FcJPqvkzxuvxQTuNSBa9sosWEAmAYSrZBjU4tLA8ZA4F": 2000,
     "FcMobGyWs7Y2QQX8bNXDMCp1HS8xhzPLE1xGt2SshL64": 138000,
@@ -231578,15 +236557,17 @@
     "FdL4LSy9JvZJh6BRZE368vF7fEAFBPyPxfJGxVeibdyQ": 8310,
     "FdL4LSy9JvZJh6BRZe368vF7fEAFBPyPxfJGxVeibdyQ": 16000,
     "FdMjC31ZxUBnjD2uxZpebvyN72QFvZkVfezWLBx5obKV": 7500,
-    "FdUJtVUTcEDNG8PwbyFYGmce5q7cwFRzGx3RpiDzR3s4": 19700,
+    "FdUJtVUTcEDNG8PwbyFYGmce5q7cwFRzGx3RpiDzR3s4": 29700,
     "FdURfDpdvDckuysfVVaEmnJq2WooVz82Xg5Bu4CU17zK": 5000,
     "FdetkzM2Sd9rqPwqdtdh6M5Hkn5WHAiB9CKLLgi2asjW": 19100,
     "FdfiMAzbR8cuwrRUMK38fJJaQsNqs5ZzEENCSPMJX3m9": 500,
-    "FdhDvzpM4GB3Sjgq6cSL9k3uqjvUtMM4f3a91Zb7Gft": 100500,
+    "FdhDvzpM4GB3Sjgq6cSL9k3uqjvUtMM4f3a91Zb7Gft": 155500,
     "FdihzupkURKod6B6kPtq9mYSrEkdiYkKfPRXg28Luq5Y": 4000,
     "FdkN9R3YRBT2bxmMBeXikTnCKCxMFuXbe7FNMvfxYn8o": 3000,
     "FdnqpVPRqZbaHPNpzrcNUNkuVdGFLgpK4QRzUmuhNBf1": 5000,
     "FdtizjhbjvWMDCRxKGPtnpA7NzSTKshXfk7GtZ41jxUH": 5295,
+    "FduEqi4jXZpfBT1fhnWLz5QPEz7HUTGC74GttryAzncZ": 2000,
+    "Fe3XqXVwSDKLM9jzYPTN87y1zQdtDTR1NzQ5PEnDmLkp": 3500,
     "Fe7QHqoGgh57Bg3ZWDbTwu6kdPaKf8JWa6S5ntKQrbtR": 202,
     "Fe7xyCkR1EChXrEeUgs6Er8XXCFfwBSA2F5tyxtyWJkw": 419129,
     "FeCCCCNs2peC7Sh68ppCzFM1RANSMbhovBqofMdUXog2": 900,
@@ -231608,7 +236589,7 @@
     "FevoTfzxh7rrQ4vdf1HgcT6e44VaAWu3R7B2nWviABKA": 5000,
     "FfEAwwwS5jKcsbHpZjCjWybU7zHQwCGC921rrREr74WK": 300,
     "FfRV7voEThBvbnAuQrhKobFa2EGyBqfRSmXSEJenkXXg": 101,
-    "FfRgSdEhdbMLRN4DG31sjP8ai6uc4ob91Mnz1Ef6NMBX": 3000,
+    "FfRgSdEhdbMLRN4DG31sjP8ai6uc4ob91Mnz1Ef6NMBX": 10000,
     "FfUtsqWayHCKcTDTWC6PS4y3eTiDYyAEtkF8m6ePypSF": 20000,
     "FfaubEAjiZqXUX1xUj1v2CEUN9m22Kyh8St3cdpemKMA": 1000,
     "FfcvscJPdVxbuVRRRLqdfLdNnKwyRboy7JopoNYTqrZY": 8100,
@@ -231622,7 +236603,7 @@
     "Fg3DFtKFQYwRE1ZzAK9CUdQj2mKYVD2PhpjuVZYwefcz": 2022,
     "Fg5LnPTn6fdZdUcnGoAmuj8JzgLKw4eWouKhYAeduiFt": 5000,
     "Fg5XHDSVintieGkkmZv81zr9y2Nr2K73zVA8oToWQYtv": 8000,
-    "Fg5yABQN6wckwe8kECtSUGRGU3tqzEe423oWHajzR1dw": 2000,
+    "Fg5yABQN6wckwe8kECtSUGRGU3tqzEe423oWHajzR1dw": 22000,
     "Fg79F8hicMZGmEdFEkWME45iZ9Ktc9DSe3LR3ABdmw3q": 1000,
     "FgDmKCZdKv7DqP6rD1rjLYZzBKE98SPCWrZkDGa1hasY": 500,
     "FgPJYoN8egoL7rzYZmpKD4yy7cyGBBCuxDhGWkkbdGff": 500,
@@ -231664,7 +236645,7 @@
     "Fitn4WUtfVEf7LVhEQh4sRMkMu6juNKrrUHNT8n9qxKb": 4300,
     "FitwDeJ8krui32hiWwQ2k7JTYd7GVAP3JTYBSEE3LMU7": 260000,
     "Fiudgso7G3o3977sA4vC17gN2VKUqj28XBvRCfUmeGSm": 10200,
-    "Fivcv7eB118BKLD8vS8GVcZBoG9nAQH36upTGwZkAXTT": 145377,
+    "Fivcv7eB118BKLD8vS8GVcZBoG9nAQH36upTGwZkAXTT": 135377,
     "FiwFrPqSv14X2Ten3QtPfcEKMtYiUnLTK1ZMdRXJJDTe": 5600,
     "FixMsGDuEJZFkSEQL8XJ5EVGmRcbouZyQQiEaLUGhVsN": 1100,
     "FixbeDP9WSHfTHFozvo2WLYterLxcCs3Ab6oTthtBPss": 1000,
@@ -231676,7 +236657,7 @@
     "FjXj8M85NKhCgcnVCPBXvsTn1hjLXn1wXMR1PFPqsAuF": 39918,
     "FjYeQJrcuodPyqTy9qP6sTXSqgHYaNvz9cBCm3b6nUM6": 38996,
     "FjZENLd2jzeUtioMmFvkFEpf1VCZB9q4a6UcM7RvqyVh": 100,
-    "FjdtS5LUtYL6MJR6hryDudfWN3a8ojCbUuyGtS4VaqfT": 32779,
+    "FjdtS5LUtYL6MJR6hryDudfWN3a8ojCbUuyGtS4VaqfT": 38279,
     "FjdtS5LUttYL6MJR6hryDudfWN3a8ojCbUuyGtS4Vaqf": 7413,
     "FjdxwDFcoL2QiyrAEq7QKog4gjhb3GkPHDxwE4VYcmed": 51099,
     "FjeRRfe4yHNgBacu6WHnqbEiSP6VCGNq1gKdxDW86roE": 20080,
@@ -231688,34 +236669,35 @@
     "Fk2EbjHfi3KxQNSW53eSmHA2kyWmHugA7HnbXZVDdiYx": 100000,
     "Fk4aGNUqRn3jANQoKGg9V5pdGzTBWthZpAhumWiUhPW7": 19200,
     "Fk4y1AoTzM4UCy1UeUgzEwJqP9281x7HSntDKENeFqyY": 1000,
-    "FkFouS3aoDBijQLdDeM8vqQJFDH1CmRUoRBzHhCd6Cjp": 18800,
+    "FkFouS3aoDBijQLdDeM8vqQJFDH1CmRUoRBzHhCd6Cjp": 18801,
     "FkMkRx7XoL9nDmxvTR3VgqVdC9ifvGYzHNn3uE63kbkt": 1040,
     "FkNGnMf5WsLUjjhvXgv2n2hfcuDUv8wGdsxrt8z3AUAQ": 100,
     "FkRHXANQVGPKMRa7FQRBuTFDyf1R8i6Ho6BgN43Xhi5H": 24529,
     "FkSdNkXeFXUxbGB4wnESfaReGDUQwzJnR4aD6ez5LPf4": 41500,
     "FkXAUbGsMZ9K1FmGqW8it7gbgk3DJjeR4aasWJ4jMV27": 3000,
-    "FkXaXakK7G3nUscQaFJq1Lky2jxvghwnChUq2EdsE52L": 129700,
+    "FkXaXakK7G3nUscQaFJq1Lky2jxvghwnChUq2EdsE52L": 126200,
     "FkZY122ZDXA9m4mEpvXbk3yq3Dd59VgMMRUz3ZM3vkmP": 5000,
     "FkaF1QxW8d1NpP5Dxirig8N1YfPU6q7EYfFnu66KgCUG": 2022,
     "FkbD4CUVPi7sBAnZNfhEsT5rNZMsDuwzJKtYADN9F9qo": 15000,
-    "FkgrAaBVUhLQzqQSocdtBHrr6oRFXy2mrpeXMu9DGkrx": 140961,
+    "FkgrAaBVUhLQzqQSocdtBHrr6oRFXy2mrpeXMu9DGkrx": 127961,
     "Fkh983SHEaUHrNQC8EhZSzJJk6bhaXBpDAQLoxxdBw7t": 521,
     "FkhfJFpQgUVFah8EvNXisNGPV1H8JmytdbDyJS1j3gci": 300,
     "FkiUpuZCn2GfLYFJyVjersRb4jdp36bjDpFPRBeUGLBC": 50100,
     "FkitsYv1mdrVXcVKC7o1MTcqEoXP4EsbDxcQaECmc11N": 10000,
     "FkmukeaVVb2yqWJzz74eL39r1wryRe9d8vmMgH8LzJ2E": 25000,
-    "FkpcxYR4DeuVwTGKDdAsovTzucJDxQShmbjtdyf24M5k": 166000,
+    "FkpcxYR4DeuVwTGKDdAsovTzucJDxQShmbjtdyf24M5k": 316000,
     "FkqRYKbYu7zy2ZQaHqJvkTJ857JeQ6KB8Cz6MhED1825": 5000,
     "Fkvkd2ep3em84NpgAEqLhb7BMvQDKdioi3v6fg7jyJga": 5000,
     "Fkvxrdq645G1zMcQfbZZVKhiFL9xXif9KRU3bbg3j5Hr": 10700,
     "FkyYZ15dJC2GvShLqyWH38BV913CEp6WuhnRfvbRAWin": 100,
+    "Fm2xtBwgqKWc3Lt7mzh2EAy9vrGAF1VQMgJhbeP2fyFg": 29000,
     "Fm4CFcbsVRzmKig4fKAuRh67jKgkBVKCkKgKTAwgMYe7": 1200,
     "Fm86zJ6PtvAfErwRBmmSH4gXaZGSeTrYGif7pkfqPYXh": 500,
     "Fm8FHVPx1vuoVXaqmUZhJi8ncLbtR2fBQhAJtqv7K1Dn": 2600,
     "Fm9gob7rfwuh6DAyMQDBsTcST8FrGxmrMyE12UqvQpK8": 5000,
     "FmDZsw6nPTvXuu7BfVWdXRM591VNiGT4jRp4qeTzwJJP": 8300,
     "FmNou9MEouNaWNF6yVAJR9r6RmFeJt4XV6d6pWxAjWfj": 5000,
-    "FmTC9wQpWGjxxR36ZqGHEjp9G3RyzJLVgkELSJVCmeca": 10000,
+    "FmTC9wQpWGjxxR36ZqGHEjp9G3RyzJLVgkELSJVCmeca": 80000,
     "FmazqUCWWKLVGp2GcTQ89wJMStuSXXnpVk3Asgmp7YtS": 12042,
     "FmdFGnm2AhggcHpgDF5QSmr6ct8NqR658YiVGRqUaqrV": 1000,
     "FmdWTyXwotpp4VEnPLAp17sokA2LPfCjqQMFcpZucXhA": 6000,
@@ -231723,7 +236705,7 @@
     "FmdtKQnY6JmNUJtPpwNAaaMRVVwm6mDRbCKkRFqozSiT": 10000,
     "FmfmW6GWtAhiZs8AnZArZHxSvTun4BhZyXQFwEiF3Wha": 314,
     "Fmg8oSefWfrjqySe1f7xjeYQAoet8B1UE6vFyJ4vzVo7": 20500,
-    "FmhCfULzyFVUbMPWLrgkTqeBB6dmfbY1f9J5BAw7YYPC": 5000,
+    "FmhCfULzyFVUbMPWLrgkTqeBB6dmfbY1f9J5BAw7YYPC": 5002,
     "Fmn2SqVvqtct4da4HEjYtwas3RzJHfEwQiy6FCBXjECA": 15000,
     "FmojEeHJKNjEt2pyuyMYEopc8JKkhUNE3sfeQJFRKi4e": 5055,
     "FmpxAfB9PPGBPqssECPUEnJ4VhcmJC2Hqo3mXrYDhQaR": 5160,
@@ -231734,6 +236716,7 @@
     "FmwsiZohxq6Sj3e4wpERNrgNTB7hFr6hznNTyS6zxkgN": 20000,
     "FmyVhELvDYNhUkBsjWu6h7iaj5aMJ2F6H7rRrfiumMDs": 131000,
     "FmyVhEvDYNhUkBsjWu6h7iaj5aMJ2F6H7rRrfiumMDs": 30000,
+    "Fn1itJvz47Nu48eU4xofmGBGyTdiAMfa84y5Dd6Z6Br2": 7000,
     "Fn5UPG2ZHXCPmrDdLk434J19sgHAVtGVtkEVMyX9AJUX": 5600,
     "Fn5hQpfpQVLxG3z8FyVGfhYCbidfbXGpTndH8y2Xw3JY": 10000,
     "Fn6UsPuRBCauFv2JcXz8GqeEFgXJaU6qhp351iN1qV3u": 200,
@@ -231741,9 +236724,10 @@
     "Fn8Hpg4A4nYpcpY38brSAJpBMyhXUAGF255FZYGcb3Yq": 1123,
     "FnDV3cBF1v4nYxMj9WaGmdPLS19qYJRutaRFCmJDaxKj": 5000,
     "FnEfp6SvCfE1fevZ1TcGm7eNjQ7ZS1HZpfRcJuqvTbgo": 12000,
-    "FnHt8acoEwHtw9waUskEhE6FkbmH3LL9savNJXKudcVA": 85100,
+    "FnHt8acoEwHtw9waUskEhE6FkbmH3LL9savNJXKudcVA": 92500,
     "FnRAnuSLpRqETktdkyFvCihaW5YrXtN1rSMT62UeLm1i": 5000,
-    "FnRWxS51uTVHoSn2BZoNmvehPPdKxa83aaVA87RPLcwk": 23900,
+    "FnRWxS51uTVHoSn2BZoNmvehPPdKxa83aaVA87RPLcwK": 10000,
+    "FnRWxS51uTVHoSn2BZoNmvehPPdKxa83aaVA87RPLcwk": 31400,
     "FnRWxS51uTVHoSnzBZoNmvehPPdkxa83aaVA87RPLcwK": 800,
     "FnRWxS51uTVHsSnzBZoNmvehPPdKxa83aaVA87RPLcwK": 100,
     "FnUEEY4VXapiJKWFSh23hcuetD2Jpz9VqsHcJuamXhkD": 1000,
@@ -231755,12 +236739,13 @@
     "Fnb8Wb5URqiTFBNdWbSxUyM3BC5x4ms3pwDYMSiTp4kz": 585467,
     "FneW6MeTbNZdRF8THwKhYReubCcePMANQp8pp6v13w95": 7500,
     "FnexgjhrMUNioJV3Q2QFBYJ6TuHC6RrLMuBMVJCwLPqQ": 2000,
+    "FnhkMYk7j88io6J6t3zasxhco4HSq4ZcCY4LkHe19dF3": 10000,
     "Fnn9oajckUHymCDpNuX4BowAoPMd16vMAUhGGBc1sMq9": 13300,
     "Fnrt5wpgR49m2srrg7PqCdYbbXWCSwKt48UVGJARao9v": 60000,
     "FnsucTRd7neY9XCrevmvt8QqQkB79dz9DT3VSLoMuxSB": 5000,
     "FnuWeR445L6kiWvYhkjKwq1UF3zeYfWyQcG4uGTs8ZXa": 618,
     "FnyNGWV3668DzbnnaSekoBVBNw6N8teFbciw5hFqAaAX": 4000,
-    "Fo7TKg1vELReqNp7FDSGscEH1ExHM7bGFkeFrS8UG6Ui": 9500,
+    "Fo7TKg1vELReqNp7FDSGscEH1ExHM7bGFkeFrS8UG6Ui": 14000,
     "FoCUphx5bj5zoihX1np7mt32PhdHjCLAUK6c61WQGAN6": 3000,
     "FoCnGQuUYUvCVpChB6hH3Tys6S2Sb77FHJ9XEdD3VpMb": 214,
     "FoHyEofGkNknS9MowjpVUYbzgrztDAL9jTx114ubDxPp": 16023,
@@ -231773,15 +236758,15 @@
     "FoamSQRphEhz7tAAxxeLR9i1CAHdokcjArYWbVnPA6vn": 11000,
     "Foe8LveapHWhgpsSvSjomkeupym4pUTZVdmXYDB3p9Dh": 2000,
     "FoequcBU3KrCR9h7wzyxUBaB4CqPa1WXpSanjDAnrASn": 2000,
-    "FoffG4aX4mjhTX25NuRrG3AHfwwxvkRVP6WWtCp47cTv": 7000,
     "FonYTTyhk5VdZwSJcTTDEKBcEAbmGUESWnVHKku88SVy": 400,
     "FopjkX4tktf4w2NS9M8tE7Pwn3MNcqs7FjkdNSJUpoyJ": 20000,
     "Foqxh1Wd3ynY3noi4ZmgLQZJaNhybGqgxhkKb1r6zSa8": 10000,
     "ForWpNtuDM8csxBKeyrpECFLjyGdg7kr7yEcrk9jKw6p": 4000,
-    "FotWu3siGkAT1jK8LsXJLddMWPzzAU6YUksb3Kwa6PSY": 96900,
+    "FotWu3siGkAT1jK8LsXJLddMWPzzAU6YUksb3Kwa6PSY": 95700,
     "FouefpKSJ5dD4uQsZSi4vDYiH2B2HmdshCje7yF1F1qb": 203740,
     "FowQYL7ZDbGyUN9gpt2tY1UJNmi1fsLdR7yi8XaM6W1H": 12100,
-    "FoxBpmXu9JRVhQ9J2uftxB5bLPGWa69Qoar9XW1n2JuT": 5000,
+    "FoxBpmXu9JRVhQ9J2uftxB5bLPGWa69Qoar9XW1n2JuT": 10000,
+    "FoxSPuk371T6Qw9yF89QcoEAmL9KwR6CF25FEnkGDAMp": 2539,
     "FoyRZaCikZjsnFgSDxMvTtS4KWuKof9v9w2fF1UCEDuY": 525,
     "Fp2MsRmwSGBFLy2zNQcTPJDQhBt9JDxmyuNmtXYTRMsH": 1032,
     "FpAyaSpr5BsZTX9pFzWMoj7etgNcSfBTvqZ1mnHR5JKj": 6483,
@@ -231797,7 +236782,8 @@
     "FpaDpKBs2D3xW5wz4ML4GivbTyzbtwp8cfkwbPa21qKi": 4000,
     "FpeNbuppfxVNiGn9PbX12ctidRJGsja4FWZ4uorLAsQ7": 5160,
     "FphaFE7hmcyabqQhGwA6JS7th8N9Sf1vTKb7ZD6T82Cw": 6096,
-    "FphzTemQbsqwrm3B1cZXBbi9fp8AUcam2Zei7iBENfbi": 71348,
+    "FphzTemQbsqwrm3B1cZXBbi9fp8AUcam2Zei7iBENfbi": 97648,
+    "FpiPJEjtF2UdMwrKWKpiVGnHomBmQZTSD6Xm6Z8mbxoj": 5000,
     "FpiSooGLXwrPci5QcNU2YDeuUZYEqQ5dFf9xVJ8DvBWs": 23300,
     "Fpj6zH4rzaM4mbad9pCvshwqNDXUXL8r5B9ULcF9mY9": 200,
     "FpnAB5xCuMLd1BGQm2hL8U1MEAhaLovgstySGg5hL3Na": 10000,
@@ -231826,7 +236812,7 @@
     "FrPqvv7jzqfv83G7g95UVQkqZneVo4Lwmkb2dKpAXBeA": 15000,
     "FrQrdw6hkQcQ2FiaAj4KpWiP8GF2RDc3j57onmyuudoQ": 1000,
     "FrTU4bQesNLdzkEmzRGp8jrL5afcNCT9ksUo6zQ4YGeX": 2600,
-    "FrVqjNoxywyWTfNL64XnW4H4tWHwGHGwzPY8CDAjTgLT": 11000,
+    "FrVqjNoxywyWTfNL64XnW4H4tWHwGHGwzPY8CDAjTgLT": 85100,
     "FrWMQhMsrKuHcbSxS7FHp15BCZm1r6HGYuLLgTu7mNAK": 7500,
     "FrXrQpFckAGpZvmJCPa4iyvyifwxMk8gDrVQ148FMeLj": 45000,
     "FraYgWa1zY4SSaVnzG3Qr56MBbhZ3arKu49Ht1EnrsCG": 5000,
@@ -231839,7 +236825,7 @@
     "FrzFUw7RanviP5GUWUobUm2SydTFQ9L53Qth397LrtGH": 1051,
     "FrzGQw3S2XicnGqwGfPWgrRsyqzupzzU4hnV25hokFGM": 30000,
     "FrzRnqcZUrAa4QJmxLQ7AzjKeERaRtuBn8y8dbc82NAW": 6000,
-    "Fs15NDVQ6pRGh2mAy1oWxnU9t8myqr73zsqgwp3kZbxH": 196198,
+    "Fs15NDVQ6pRGh2mAy1oWxnU9t8myqr73zsqgwp3kZbxH": 209198,
     "Fs5g4yCzyUmQx2VPTmmLhcDo9vt4Cx45WJ6SrnCArBsE": 59100,
     "Fs75rGkFDQAZwcVBDV84qksQxw97963LYWbUN4ZhT31s": 12500,
     "Fs7mTb4ihTBtAP9eyB89TRkewdmLE6SvoLEQk2fzZhME": 10000,
@@ -231852,14 +236838,15 @@
     "FsJrYH3UBb6s5hkuqTMsBjRKgTyyNh7x9pS4Fu55zYVi": 500,
     "FsJteT3A3XL6KoNDw8Htkh12F8a6HTMYmLHZG6HEcSzs": 1032,
     "FsXGYcKX8FwLWE4CXPqnFBfX27PufcsfigJpETrseZW8": 10000,
-    "FsZQDhhahvKewb11Wg8QHdzJrD9anmNrTCeciH3idmdK": 310748,
+    "FsZQDhhahvKewb11Wg8QHdzJrD9anmNrTCeciH3idmdK": 329148,
     "Fsms74vw2V3CGjYoYgeW8YPMkR3yp4p4CfTasznKgx4G": 30000,
     "FsoGoA641xK29xxvNqAw8GuLnPFyt3kipJrT3Q4MXUdJ": 5000,
     "FsrQGCYTSVh5S5fLXkL6CMjRdddDr3w54vByXQ8Uc3he": 12500,
-    "FssAyKXNPV8kFbW6Hb7Vz631ydSLcWk1qfKJyRfVfX8M": 118900,
+    "FssAyKXNPV8kFbW6Hb7Vz631ydSLcWk1qfKJyRfVfX8M": 79400,
     "Fsyi7E64CZnHUSSXSUvAALQ37bqXhU3qUDk3Wxzps7Ca": 32100,
     "FszChaRLVo4bnFYLYA8wFtFExS23N5XdEmd3bmXXrBYp": 19000,
-    "Ft4JSxjhUqyXW3Brw5dFwX9RMSPGeSCwDu4XJp1Hyvwk": 1637804,
+    "Ft4JSxjhUqyXW3Brw5dFwX9RMSPGeSCwDu4XJp1Hyvwk": 5040100,
+    "Ft4JsxjhUqyXW3Brw5dFwX9RMSPGeSCwDu4XJp1Hyvwk": 10680,
     "Ft5G5bmWf72xDWvFAkcSY4mbLdf5QxwiUMvw35F7mq7S": 500,
     "FtBYMaqvsGjgagBkiyDFF1pgyKygj7vxVp1YMG3raRsA": 8500,
     "FtC9b7qTzjSwcCATDDqmk6vuSbYpKU3WwZtArW6c17xt": 20000,
@@ -231873,7 +236860,7 @@
     "FtWv21bfk6xyEF95sRVw57nBKEjq6zAoqVxxD7LoDVo6": 13000,
     "FtbmweJhbKbaz9997EL5kUwjNcVn8vEQShqVz4222EAR": 5000,
     "Ftbv7mL7oZBu2Q197coFJyzEqotdRPDwWAND9PhaQnFA": 10000,
-    "Ftf2FgTomZsVbTNBPi6hZcX66Hg45CjCXVQqFSokHriw": 5000,
+    "Ftf2FgTomZsVbTNBPi6hZcX66Hg45CjCXVQqFSokHriw": 5002,
     "FtmyACKmdngpTrVaDzfzh5Dr7pwnZaVYUVura92Xa3vJ": 42000,
     "Ftn36zJxhtLA3YhxfN2bZgJ4tWnY3qWD6SmLSzNawDP4": 5000,
     "FtrZyAKGN7ksE18L19iJTexwewT29fqXKorzGx6X5qJL": 400,
@@ -231884,7 +236871,7 @@
     "FuEjzY1JjteouQVPPLSYZGc9qGsYjZNi4H9znUngP8ZL": 13500,
     "FuKFy5eUdrDRMxk8bzPaA74g1FmrTrS6U5Y8u4DLq5Gx": 16900,
     "FuKLNEEQpnvxf3wCkvZdSH1dGo4jDv1WnJWXfdWYwnqs": 110,
-    "FuMT1omtrQoHJCauRDAobTxkDQg4FJ17mnf517aQqkT9": 57320,
+    "FuMT1omtrQoHJCauRDAobTxkDQg4FJ17mnf517aQqkT9": 68820,
     "FuPT7Zgk3r2FpqTb18RqFKxSSrvc3wqJchaEUnj2ZCHh": 100,
     "FuPXxC8p4tCcXtv2d2VkxgPBKCU6TbsiGYg8FgWJAduH": 111770,
     "FuQafKpHtsDurr44d2nA5d3GCkrpytmbL8zNheQD4fnM": 900,
@@ -231912,6 +236899,7 @@
     "FvBvRWRTCcTuv9rLKNepWHHvYLz8KfD7hr8xMPKwf1Tf": 500,
     "FvFPYAj8Gs4Fw53sU6toW5P9GQ8EkjGJqd1CEYU4zA6V": 8056,
     "FvGjuJxAbQdVS2w2PbzNwRoHULhPCwVquHsjtbQG2cQU": 100400,
+    "FvKFj9AkFRsNturbybLDpvx49qurFJxsVBU2BaYsyric": 2000,
     "FvLUQaUyJQCEZoxRrEVdWJxivnRqhQEmhQZ4uxounwVw": 35000,
     "FvPGWakkny8V7Ds8wMno3W14GXLHqqsgiJPg32p2ouEF": 15000,
     "FvTcitMeexxnRyhoSWUMcSFe3jSVN2b3TcGeSbyqt4Fc": 100,
@@ -231925,11 +236913,12 @@
     "FvpqLTFPWjF2oBwYLgQYRfqyWGiS5PXRUUbSUNEc5BKW": 10000,
     "FvqZticyVWQkGh8DF7pkjDsWGR3votdSCueF5Zu4mca5": 10000,
     "FvsTtPfeFQDWy3JezigaTizKG7gUNpudBGDZKiSeCJV3": 100,
-    "FvuCEPXTCUaCYVGJqwsE6NZF3piHdHiuv7j6uxMWMYHA": 147100,
+    "FvuCEPXTCUaCYVGJqwsE6NZF3piHdHiuv7j6uxMWMYHA": 265600,
     "FvxJ58w6oiSRVFHPZACt7xqXoQAmyrQu2JgtzVvK7jvX": 5000,
-    "FwPEzuF5KiXK9BgYt1y1tPZWQxW3WVetjYFXL6CtjJNm": 11100,
-    "FwPsJZax1zpFjwsyLHoFGFpu62uNrN4hsLvVZpZfHQhn": 2600,
+    "FwPEzuF5KiXK9BgYt1y1tPZWQxW3WVetjYFXL6CtjJNm": 9100,
+    "FwPsJZax1zpFjwsyLHoFGFpu62uNrN4hsLvVZpZfHQhn": 600,
     "FwQnwSzK3L5CSeaG2PyVmMnAuvvY3f59XpwiGY8ovDvm": 5000,
+    "FwT6wTAfGjQqYMCpD5JWkR7CowMhbhFHSYPuJG2CYjg9": 500,
     "FwWXStJVjcLSQSX4m1N4h3uXYw5EJHuz11c5ezbTvWgC": 1016,
     "FwaLEZoQXiy6dPjnT1b3Trq86E81NiF7eEyAxjF9wFSs": 59809,
     "FwgChxTzKUEqBFrCMivx4KPqN6nE89NQR1PtYybeTZb5": 40500,
@@ -231951,6 +236940,7 @@
     "FxPDRdGpFjiQ9WJKuqVzFFPASSVLqxEsSV3a9HztmSCn": 97271,
     "FxPDRdGpFjiQ9WJQuqVzFFPASSVLqxEsSV3a9HztmSCn": 1000,
     "FxPwNixidqAZM1Ph8XH2vaphDFMtg2ms51P1bW7n7Kic": 7000,
+    "FxTGjM69m4P2Lj8dugGSezdhBzSp3cq1CRqpT4QM1hGo": 15340,
     "FxUAU793iDSRRb3hAUdtkeKAEbgeBMMJCA5Aq2CnomuB": 2999,
     "FxcmdNXeVcWmaDnWYxCB5grTkQVhNtiEg7kXabkHCfEV": 500,
     "FxiYt3fgyk2yu6pZjXceCdev6mXiRyKBpQTD5vDpJ5Xc": 2000,
@@ -231970,9 +236960,9 @@
     "FySxTe1tQA6MVm5z3kBVmdBL1q1x8Mfhd8fKyuGCZ2eG": 540940,
     "FyVih59VfYRx9EzmNUpAV3ehjL2q3BPuhciTG8aA1wqu": 678334,
     "FyZK3RzTVH56paYqZNeCYWgwFRTsZYBWiGCtNJUWLb89": 52100,
-    "FyZTzAXNELhge2esX9gkBH2CwnummuvrNe68AQJreRwd": 109100,
-    "Fycj1jYAYUXy2Fx37rmewAbBRgmA4YwVxQpa49Nfwevt": 149900,
-    "FydVJnadLz2gpM8BgcYsfGzePVwMVHpadLmcryNA2aa4": 95732,
+    "FyZTzAXNELhge2esX9gkBH2CwnummuvrNe68AQJreRwd": 153600,
+    "Fycj1jYAYUXy2Fx37rmewAbBRgmA4YwVxQpa49Nfwevt": 160290,
+    "FydVJnadLz2gpM8BgcYsfGzePVwMVHpadLmcryNA2aa4": 87732,
     "FyefvnfgBmMom31VZ547vhPQdExbLmiDtNo19sYcd61J": 40400,
     "Fypvc3yyeXbXcAtUtr6jVVgnE4AkHiJSvGBACChFAw4j": 100,
     "FyqMUQVyiftBwubDsvVF8obkTxupPmoEyuUCWzi1xLog": 5000,
@@ -231983,7 +236973,8 @@
     "FzAA8E8xQbzhXhAMjaDXVkMDQpVVu9ECpbs22veSydU5": 900,
     "FzEjgPYPYGXJzzDGW8VCCuRmuAoJvVZsTkDPPeTx6i2q": 17600,
     "FzFZEDx3dcg6uqb8fhV271w5QGu3npcwLCAzWBLjBdo4": 3000,
-    "FzTDrG9pD6zshpiyxbQfF1YbKiMRFaezUZjxq9R1RVEj": 14000,
+    "FzTDrG9pD6zshpiyxbQfF1YbKiMRFaezUZjxq9R1RVEj": 19000,
+    "FzZieRUYHancmYPZY9JkwYAAnq983nsaToXLaVW5QFi5": 100,
     "FzbVFy8TL3n3fB5mu9iWUZeHL9jQoznS64MHy6N3Aqpy": 21000,
     "FzeD5CdPhUV3MusyXQCoebeLPb19kYrgJUUhqGCb9rsP": 9420,
     "Fzotu9kGCoGjPNskKMA26ssrLx41hwL9XEKy11oZaFzb": 1042,
@@ -232003,7 +236994,7 @@
     "G1LrLQZMHXKb6vb36TeweVDZEt7iqGY4DBNyy9QutPXG": 7628,
     "G1MJB4AbuXH73ZssBhaxEYiCfbx5vn5vC51HcGSeUa41": 25000,
     "G1RfUK2VH2GoCTgsNqgXhb6cDurJp18XLeLkeMaCSB9U": 2400,
-    "G1SYiv7yrqPxhEkHYXCpXbKbt3jaoTXnipWJbPsQpkZX": 250000,
+    "G1SYiv7yrqPxhEkHYXCpXbKbt3jaoTXnipWJbPsQpkZX": 300000,
     "G1U6nzZMLxPJcwmiSm2zbFjgaEGmkVfPpmojCtan6EZX": 139660,
     "G1UGwKpaJFR481KFkQQmyG22fErzi9c4gekfXEygvNao": 11000,
     "G1YqFKnrPFXPYzQk96LEVaGVSBUoZBknjyzaLLNnD1A4": 10000,
@@ -232018,13 +237009,14 @@
     "G26is3jurYCG4hiTxYFyknMj9ABU2UPNMVsRBZMoTwQF": 1000,
     "G2AQhEtSbXgHqhMJP3GBa6RWs8Unk1o8rC47SvQ7fG3x": 5000,
     "G2CBgZBPLe6FSFUgpx2Jf1Aqsgta6iib3vmDRA1yLiqU": 100,
-    "G2F4rTHRBwXy5pZ3h74E3bcwUwb3gp1qJGKHK8g4CAMy": 90000,
+    "G2F4rTHRBwXy5pZ3h74E3bcwUwb3gp1qJGKHK8g4CAMy": 145000,
     "G2JGnYv7a4jC2YPP51VyRGHZVFoT1HaA2M2MTZJ3HkGY": 42990,
     "G2JX55kqsxnSD7aBPDU34ttEaikcmhXSNbZnFBakD95H": 32600,
     "G2LzBJkQwvYFBGx5RpsnVnyrgpnY15tPKPPKquyGqBHw": 6220,
     "G2Nzd1e7NLUqFnxadQzCSf1PcSdxVFuRvDLkiw2GhC7M": 97000,
-    "G2P1nbh42fa4Yp3DpyPFaggPKWxHSqocU1BmWL1hKRAc": 5000,
+    "G2P1nbh42fa4Yp3DpyPFaggPKWxHSqocU1BmWL1hKRAc": 3000,
     "G2PJ5C957ngBAD6U9v8pjPXQVB5Ko4XLFAhcCPXbVzEj": 15000,
+    "G2RuSR9F3Wry9GwCtYh5tNoeecnRdJBDhJbWhogVvak1": 2000,
     "G2U5awrJxUWpf7Qhzn9HrL7RWjTTQuwrjsh9KAGyVcie": 23500,
     "G2XmQhHJPDUpdF71eL6kGAUoQE88mHKsHQzYXKvpK4E8": 69800,
     "G2Xy7qaLkE7fxkbZ1g3Ndbo2yc7kRMGYaYvBFXV7sDm5": 1002,
@@ -232052,8 +237044,9 @@
     "G3c6kRvyE3vs6YgXhjbyoBaP1LHw9t3WBWCRWN5whffU": 1000,
     "G3cKpodbUcYAtS1HYRdXQgNts95WsMizZJGV8ZrzF5cJ": 36700,
     "G3hJoPXPt5UKfsPp5HgntUn5gdTCMETW1vHfpvD6ZbVE": 3153,
-    "G3hYbi3Ln2ZKjtGxPBJwz3FRh3zzZJwCNeukyDjdqX58": 597450,
+    "G3hYbi3Ln2ZKjtGxPBJwz3FRh3zzZJwCNeukyDjdqX58": 743950,
     "G3iNsiSaCTASeETXjP79G8Nz3N7DCA1sRZYJzUCDruVf": 50000,
+    "G3jqfcGFv4rzLBrApW4ypqkVwFdHoLp26HgLEmjHripP": 48500,
     "G3kMV8ZGMUACEQ47a2rwkBDh22de1rLhZRmaAWKP27jt": 14700,
     "G3mVKMvDZpJxTPRtUE6TdoiZ89CUi9cmU2jYYoXRqFJc": 58000,
     "G3oXqbHRfqK4MQvdaA6eo8s3AyjT6sAPi1CA1RKb8MFo": 100,
@@ -232063,13 +237056,14 @@
     "G3uyhbsb9BsGJpJJevTUjPEY9mcyNPrwT5Y7ZJn3XrES": 410070,
     "G3w3XB3XY4Cex5j1pLWVDJKXnkEovDskBTyb2zHryS2C": 1011,
     "G45FZBd6RVPyjmwSwvyBbfauArBwyffuHzhPCQhFidpt": 500,
+    "G4GgHm5oPJ85fmNYZ83433KKymhE4JLE56kj75VEF3Sj": 100,
     "G4JcBsMDKQD2yyffiqTVT1xVCvUwA8uFRjcuWU33S9wM": 9600,
     "G4VtKpuU6g8CtSGzT4yDFGozA4pUtgeuH7ssyJMRXH5d": 62000,
     "G4YmbWjuTR8FAHwB7fdXsoX7peEMinDDzg6CHP4q33q7": 5000,
     "G4YyDL1wMQb6q75TLbthQQQ7CTckrune9WLrN4dbWEBc": 400,
     "G4ZpVnwySEmFkZ3yd7LfRHMxkCteZDbFrAmLeXAxfJR3": 15115,
     "G4dLiFMNuJxSWA21aDBdWFLkso89kWu3YJzFxh6BtnN9": 3000,
-    "G4hnYnrR7hYTfsUy8BTR2KUyCNf72CFkGUDACTcovSgb": 32900,
+    "G4hnYnrR7hYTfsUy8BTR2KUyCNf72CFkGUDACTcovSgb": 32800,
     "G4mvrDQP3BAWNWpEVjmuRa3sFUEWi64sj9G6tg7EztAi": 12000,
     "G4nXaVRhmSrk3uqqob8p8gvfm19RWNKAe81zHmT2Kse3": 500,
     "G4pQczVpaiQ1uJvXb9RMpE3gps3fZsVdzic6poG23BgG": 2000,
@@ -232077,25 +237071,27 @@
     "G4sscGwq2aCAhJvZj9bNA4jUNAhwuu6LRcAB6Vq7Uz1m": 5000,
     "G54PHfBwvzcGumzqUmHX6oSHbmxd7ZvfnJY3NjPHnKJh": 37000,
     "G54tUnVpfUyqRj11LTQBB9suxb41tEWd6f6s2S52pkch": 22000,
-    "G5G29RrVFnEHC6Q2HaoEFz7cQfHajYEJPL95oVyMV98S": 55879,
+    "G5G29RrVFnEHC6Q2HaoEFz7cQfHajYEJPL95oVyMV98S": 89509,
     "G5Q8JgTwLmPJijCME3gnp3FaLATfWqpDAfV51pLWeq95": 2214,
     "G5WhXrrZqGP8kDuhj22vPo5fPNzFqeQQLLhcTCBnD2oA": 97718,
     "G5YvSrcbkWA4Qi1vNh6AL73fDFkm8R2fMw5XmBoZQ3yK": 31200,
     "G5ZvhvHD8zifJdXoV86Az21UBQfbxNSXLQF2mxuB9taL": 900,
     "G5ek1n9VgMBUh7LH4g2hreBpAcUShCuKQkuLSQ6X4GQh": 10000,
-    "G5nFCCWq3S1GCGqXyqWSFXLWQ3b71cBcEypMr4nfaA9v": 57800,
+    "G5nFCCWq3S1GCGqXyqWSFXLWQ3b71cBcEypMr4nfaA9v": 61600,
     "G5nfQfWGcfFXvpGa3QSJhnXpQhoDGdmLRpGr1sxnvDuv": 6891,
     "G5nqyT22U9xpUZqjpoaAm9V9HCTaobHffndGRtfW7WUg": 1000,
-    "G5o25wU1YMzsaWEf5ARvQ81aPPgvTybgBam3UEjknsS7": 28500,
+    "G5o25wU1YMzsaWEf5ARvQ81aPPgvTybgBae3UEjknsS7": 500,
+    "G5o25wU1YMzsaWEf5ARvQ81aPPgvTybgBam3UEjknsS7": 40700,
     "G5r2mQrNjNgz7sZxWaacvuVrP9stK1yAnkUATkTUs2sz": 302,
     "G5rxfUWWq3ah4kXiNTbeLdhj9gAo46W7nsUWwL7JqQyi": 2100,
-    "G5sLhpSkxKkwieYz2E13qK1hWqyYLWCSi9xahvKLgKor": 63780,
+    "G5sLhpSkxKkwieYz2E13qK1hWqyYLWCSi9xahvKLgKor": 85780,
     "G5uJ32hLsdWRNsM3uVwCxC4L9Wh8YSjGspcSpCk5odQ7": 5000,
     "G5xbDS5wHrr9ZiV4LY9DmRYema5HqPk7mC4BVF2zgSMM": 2700,
     "G62vGQhrYi24ccWtRgHx7w6naJpfu9XBbPfNx5PCcPn5": 2142,
     "G66R2pVbJhYbCtsx8Vd5yDgZ5FBjSc9yc2atoaRP8pbq": 15000,
     "G66SJ42NhLNdfpSRg1uBaic7UB1F4YiGR5oZNPivjNR7": 2000,
     "G69SUbTo39YEJnFgHuMhUaTe6nhzcAQXX86xNPeqZgBE": 200,
+    "G6AxNfenj43y8qpqd9Z8dNF6iHhiARR25FPHG8BZ1dgH": 1000,
     "G6D4zYnQcb1UL67GXt8hYkD965fkgXjx8ManS6WHFGQV": 988,
     "G6DVAasZUtXcBJzbSfbDzvyQVRkdRcv9EThqLjzPmkzu": 42000,
     "G6EsAnatPFCYDxWEcRVfJuAgDhb9Y6Ma4CCbmxxMTq1d": 10000,
@@ -232109,16 +237105,17 @@
     "G73AbVDDDVh1We35Syxaa7Dm5Ky2vc7HrwScNt9JSTnr": 1400,
     "G75eiy1ttvxi8xxVCJvTe9KvzugMX9vebeMWYH4SAePn": 1059,
     "G76Hcc8riZd5aRKyRbQsQQm3ey8b39qgJqDwyYQksk3p": 5055,
-    "G76hGfC1MvHnEbfeQCP69ZUSx8nmLkC128ovpmuQw1F6": 292500,
+    "G76hGfC1MvHnEbfeQCP69ZUSx8nmLkC128ovpmuQw1F6": 466500,
     "G7ERCVx8P6dkDAMPJBc1ueF4eZzSe9D1Piw57QfRfSFg": 1200,
     "G7EcYduz9giAgUaS9cyhgKPxDJXPunL2GCtWLpY5QJYq": 1000,
     "G7TNLRi9ubd3ysXmtuzVUqYxDPSjAp1CLe4HbtGuW7iW": 130624,
     "G7TfpEGMiauai8HAdewpEPSam3rrzPxmRFQBTfk6T9fN": 29000,
-    "G7WC4rck22p16KywJvt1FnZGbfFFaM7aFNLoR9Wh4HqT": 168800,
+    "G7WC4rck22p16KywJvt1FnZGbfFFaM7aFNLoR9Wh4HqT": 157300,
     "G7WnoGBeKmJ6cYyT2Tqnv8evisHR1eahnRrt8WQFzPQi": 15000,
     "G7YaQh3NgqXQrXyPedxhee9JBCwjn58UhWkUJLZATeW6": 1300,
     "G7Zjs1Nuf6VsgMCtD78tBpZQGmLW9DkAYrtAEXCeGwYk": 10000,
     "G7aVtUGUJ1mToYgFZQuMfmhseVye1TuR1Ca7VaaZpgZj": 100,
+    "G7b3DSnnxpVbe68U7PMGSc1bPPisAvrqWYYE8CDFbhEi": 5000,
     "G7eMtys99EY1aqdLQm52RgZtWoWNfcdA3Q5BBZdQFuZt": 5000,
     "G7gV6SNk9Qa2pxuKHygvJKbVNk3H7w1XxkfeoZtn28pB": 50000,
     "G7jpZs89BUXfpAuWV6nPPYCxhRgzMf3tbmvJgbYq5PQU": 5000,
@@ -232130,13 +237127,13 @@
     "G7vCgZHXSnqKZutZSCi3cV8TJNYwq6YqfHkeo8KuK8L": 10320,
     "G82UAcQLoZa612JMktCCGCZxrweG5WYGVD6wVf8VKPni": 55000,
     "G88Q2ZC7ZY4H15iLse67hLXpqghLCRErUZgPb2xb9BS3": 1000,
-    "G89HXaPxFeNhXUp8z16hjMHCTwFFiT1v2TU4PJpSm4i6": 309552,
+    "G89HXaPxFeNhXUp8z16hjMHCTwFFiT1v2TU4PJpSm4i6": 325572,
     "G8CgnyZUQGh2RuceNT8aFN84nR6QVLcyj1Z7TYWzPD3B": 77569,
     "G8HpXeRXsLGNsYUXt7TPxTfquHgoxncbsd4npQCTXDEr": 9000,
     "G8JhMtxuZZ3BbjLea52WvWVghX8RN67TcsFGitpi8GpS": 23900,
     "G8WYrMijRKydkeHzdUTUsR4BC8aG9A6pYeBbGVLD4gdw": 5400,
     "G8X2g4NHEGokNijZZ6znF1cv1yC49qRWhCKt2wo4sAa5": 2000,
-    "G8bDVSEUqHkx7ePSw9ZiaDGrFPGCxhcYs4qKfWDuy976": 38000,
+    "G8bDVSEUqHkx7ePSw9ZiaDGrFPGCxhcYs4qKfWDuy976": 38100,
     "G8fcUCKiZzsPLfDaWAoxRQsxZjDumNKTnaPWtbZQ2fCo": 5000,
     "G8h8apzoswhpRv1daZyAikuSttAwXkUm8S558rZ5KQXN": 5000,
     "G8mCUbdLksveWrg62jTSjoZfkFLDxRw7VDr2aZmfdKnv": 100,
@@ -232150,42 +237147,47 @@
     "G9DWCsS5v1iCz9EyfHRepinTdUV734BvykkMwuNFDKfj": 7000,
     "G9G6UitCW5M7wCwYTsJLX8j2Qo4m6FKYFVmnQmBXq65": 10770,
     "G9GfvsUAPDbLky9XYvn7ca89ksTtHP48nM5vhcJT6S8z": 500,
-    "G9L3kPANHpi6L9C6edZ9QMKg3FJKudtjCCJSe8PVcpLQ": 116998,
+    "G9L3kPANHpi6L9C6edZ9QMKg3FJKudtjCCJSe8PVcpLQ": 121998,
     "G9Ld4xM2QHCUcf8UPzo54BPMHj6wqXYpzCQxEpgLgx9V": 8634,
     "G9WmGn1GHaV2mruCiubqnaxymUgvkvvzZrNNPkKr39HH": 75000,
     "G9bZVvqwpWX5QPFrK6X9kbeMSP1TVgDUtTWv4vAgRVMz": 900,
+    "G9cyZkx5sqMGLw1WrPdXHEGaWPQzZxrrfQb4pUSZwDS8": 5500,
     "G9ewuJvP79vwni4rrtRG5kHEH1UvtZw6CAgJESTBshuk": 8000,
     "G9iuwgU5eBcWng9L6t5JrqtKG3utaUEbG1mEoaLPoYkj": 20000,
-    "G9m2sz15f6Y7JKYEAVxP7XH59TaxbM1sXyHMoZk9iDFs": 5100,
+    "G9m2sz15f6Y7JKYEAVxP7XH59TaxbM1sXyHMoZk9iDFs": 73500,
     "G9qAdMwkcX1bWZMRUZ71gPdYHwE9QL29FGU87MRtdvXQ": 1000,
     "G9qTgPcYwyv9BoXu2kuQesSKxMXcmD2nvfNNbq3j81jP": 104567,
     "G9qtfSDqijqWje5hEtvujJ3x2dsafw3cbVw1gsrhJjcu": 100,
     "G9szzNsMWF4rmcWqv3cgNGcQi1jpTeeRf9afGLpmYKDo": 3000,
     "G9uwWnNfeR3XjAWftrKFjXdSeePAozciNnzH9Ht79Cv3": 4602,
-    "G9vtZTZrBS4sUXgUEhrCHPGkuw7YEdLVojPu8drpWvpe": 40000,
+    "G9vtZTZrBS4sUXgUEhrCHPGkuw7YEdLVojPu8drpWvpe": 2000,
     "G9zfcXCXTBsQyE1LSARsbPFiScT6iXwyaTxbZyDuV1Ym": 1000,
     "GA3R7av4JbG6LSXN5rnEUjgqTm9md2VN29PLcucKjf2g": 53948,
     "GA7JVtLPmx7hicM4QwcQWFdyGJgubcSpAMCwvHdRo5Vd": 100,
+    "GA88sEDBNhj6bHWMpWHrbvnhovswDKvdZ9uHgsUY7ty7": 56500,
     "GA8ddq46L3APVpNzKBRPoXcEpJu7MDExj82gbL6J2D2E": 17510,
+    "GAFp3qrkU1ojEqDAPNpWETzEbw7uAdgeEaxCeJcaELMv": 3000,
     "GAHqBSaTCjrCa32HsQwPBmZe8qcZTv8pf7TBuf4PdNXG": 1000,
     "GAHqTBgKsqjX6zZqoDkKEfqT9qdhAeNBh3QiSq4UtMGS": 50000,
     "GAHqbsaTCjrCa32HsQwPBmZe8qCZTv8pf7TBuf4PdNXG": 1000,
     "GAJCY6otv8HXKHMoMLJ79zepRpuRbyiHLVnfgRsaGpT6": 15000,
     "GAJZ1ma994kzqpcgMHEaFGrvqrBHxPT9ESWYBBL3MzoG": 181500,
     "GAJiyeEt3sCFzsdahDD3EBMB4xyJZJZXQVJv8C3KnKoj": 4100,
-    "GANsKU7iXigkxEz1GM1weoaoUZKnBahy7AbRZMyqphw6": 51600,
+    "GANsKU7iXigkxEz1GM1weoaoUZKnBahy7AbRZMyqphw6": 76300,
     "GAQRTyaFDJYNJHz3Nqr7RfmQ7gNuLHvz1n3eAw2vS3gG": 10000,
     "GAQte7bEQFpgWGWh8u66tNauoyfDVEjcqydGnfpNX66c": 436100,
     "GARNMsgq63u2YSNPZfUixZLbCxLYq5YMLNke17FrCMMx": 7300,
     "GAT11w8AY5kDcD868c6j6cpuH6iKUMPb6wMngFci9BLP": 1000,
     "GATgZRWpzD5zQDKtE5diHrkpBgAAZDeQZpdtoG9yWTFU": 23000,
     "GAWVpmmyrWrazZoADS9YiZgkEdaqWVcwFzyELfNmSv9u": 200,
+    "GAWWd1hzF8MktZWj49WxXFUFybSnJy4rocdExUU2N8hU": 20100,
     "GAWbrJ9nED47DwSDmT97HH4nezN1GjQpkP4VqYFbaH8b": 77100,
     "GAdwcgzUPzhdiUaPfUjjaTDgjzmbwNbR3FQqaoGyEEdh": 54800,
     "GAjvmw9oNAVNSHUJLfYphVFUyGWQftU7RSYmBVRec4zz": 4028,
-    "GAnk765uXsK6mCNw5dJDGPUfTSCaBQELefiTVyCiiLaP": 200,
+    "GAnk765uXsK6mCNw5dJDGPUfTSCaBQELefiTVyCiiLaP": 56200,
     "GAoDxKFz8c9Vjut68qDmGjDhqm4t55JuDthWQPxcBiip": 347,
     "GApFZQmA2JydSnCM98wnxaj5FaYz7JpusiprGwJEQ8Zm": 942,
+    "GAvVqosr3LnjdxmJxfGevryjDh9WUrpHuhjJ25C8KdBM": 44000,
     "GAwuHkdEKatyaUsp1EAERxAyv6PtydiuQZAHrFy5LuX8": 2000,
     "GB1MaMdNauqj8oG6eJy1pQ5dBSuKFcAibrhr6bvTKj15": 1004,
     "GB2zfZpTwm3BXmw3MYkhxNZKbTiZnwEoDs5g3YnwBHhr": 50000,
@@ -232209,11 +237211,12 @@
     "GBh331HCUksdjNarWehFmhKdtZHVgUCMynbn18T8tNwa": 3400,
     "GBhM4Tz7oGmKfDgN4CYHoTGBxmTaMhZQtQpyro7x4Lp3": 2000,
     "GBirauTujges1ZBYPeJrB75JDW4jAghGS4e4sKMK9i2s": 100,
-    "GBiub357W1dyXeYYf1sw34GfVtEhjybor9mE1VvAL5NH": 12000,
+    "GBiub357W1dyXeYYf1sw34GfVtEhjybor9mE1VvAL5NH": 32000,
     "GBm18AzLp8oaq5MAui115eT9UqQ9us3Lnz6yyNdmAVHf": 10223,
+    "GBnyAoLqEuKPM3SbwEEsSRLDEx2PD9tP3jnfPcTxcqvV": 133500,
     "GBpdfCuiDwb975CdHoZohSBDpCRdEiyfBVN4YP4Dg6GY": 167534,
-    "GBqvp3CLijUePmCpgNCwQAnJ2G4RCuZT3hpEQB6HXN8o": 70000,
-    "GBucpsAPPcZw7PnS1KyUWmVSGWg2uAr7FHnLbaoCYdpo": 5000,
+    "GBqvp3CLijUePmCpgNCwQAnJ2G4RCuZT3hpEQB6HXN8o": 20000,
+    "GBucpsAPPcZw7PnS1KyUWmVSGWg2uAr7FHnLbaoCYdpo": 5001,
     "GBuqNUYEqeGTFUuiXVYeNXRMqYqtHR66YJFQEAemh9o": 8000,
     "GBwErwfpv9dztzTvP7HePEXZKhpYPnDqKgmtt6SFVd9K": 125000,
     "GBxHrLrjgERJY3XaxUFowySBVkGTaEFjg6UG7tDHdues": 100700,
@@ -232223,7 +237226,7 @@
     "GC3Mt5RcmPja4A3u7Wit5UrM4YSjXeoiexJ47MNp5FYR": 5000,
     "GC6EsAvni2yx3Mjmvj3frzxh7M84s1DxKGduYXaRL7zV": 18918,
     "GC6FeUmabaiU56pEM8nZzHWVJgqxAScqkN4PNdRDmjSe": 100100,
-    "GCJg5i4TUp7fVdN5HPZPfNC8zMHhH1b7yTtu3TgnxE1K": 139181,
+    "GCJg5i4TUp7fVdN5HPZPfNC8zMHhH1b7yTtu3TgnxE1K": 184521,
     "GCL9grzEyveYAAxwxVJjGh8AoamCwW8drUE3XXx2x49k": 5900,
     "GCNA2U2hcBb9mFKTGinoYtfYqKubLzWZnPaHVgP3n8Sv": 18023,
     "GCXWe6BgHyENgd1nYzboAqVZFaDRrt9GzwuzSF88XYS": 34200,
@@ -232232,6 +237235,7 @@
     "GCgr1nsWBoN26qorjGrUxMnSHt7xAWHeZkEymMdJfmvu": 200,
     "GCi2BVBRjKNQB5KXLqeerEEotqzhVWXhFwT1tGihec7K": 5000,
     "GCmNcM4paDpXYsWFKVnJpw1xFHbqEkzvVP3kyGiDwbkG": 2093,
+    "GCt53sDQpFDUbfkkyEYpUv1aP21z3kv84TxPSxGD2BNP": 500,
     "GCtfijdPd1jWPRKhN1C7zVTfqY6wV51xDETxW76C6A9h": 5000,
     "GCxpHtMzT7ckMbjiTJ9Mw8UAboeVPiRNTSfCCFkj49zs": 14000,
     "GCxq9HF2qVfkuAaYcpn5nKMjRwTVF5NvgBHNN2wX4EPe": 4000,
@@ -232247,10 +237251,11 @@
     "GDfjUzzgLXWZRTzs8PHep1g4RTyxpZXpvCuxcaYUPSt5": 28000,
     "GDgJYpns1fgTp2DDydZt9ajcCQC79v3SJa5RUrZ6F9AD": 58700,
     "GDgJYpns1fgTp2DDydZt9ajcCQC79v3SJa5RUrz6F9AD": 19000,
-    "GDhdtyTScpirZ6MXLqRmRwNYWhQzcgQgwGGJtu56nd5b": 829697,
+    "GDhdtyTScpirZ6MXLqRmRwNYWhQzcgQgwGGJtu56nd5b": 882797,
     "GDhdtyTScpirZ6MXLqRmRwNYWhQzcgQgwGGJtu56ndb": 36000,
     "GDonxhFt7u5JmbmHhkpwf5zZqSaPY5wPtxZFudvMEcE7": 5000,
-    "GE6xWkh7ZGxhwB9STCmqDrwyRHnDP7s8V1wKxfMUzg8E": 43200,
+    "GDwmYJsXoMsHiF1HRZrhG69XgaAiznHCeCcHi4LQG5wU": 1000,
+    "GE6xWkh7ZGxhwB9STCmqDrwyRHnDP7s8V1wKxfMUzg8E": 45200,
     "GEDrhxBtDqygBctmGyRkhHnj2QQ4HGxURv1pnEJ113Te": 5000,
     "GEFrs4cPtftniEMuNSfC2qfYsdMQEeAyrRXBvsfL1cWv": 100,
     "GEMMT6bG7J7msuxCZ4KH7WJwCoE1uqPeqwvhcc4vMicj": 14000,
@@ -232277,25 +237282,29 @@
     "GFYD7yfgsqXHYAGGuNpfuJ66H9ZpEHv71GQ3xd7mV3PU": 37000,
     "GFdCxqPCoDYNi2A6iauVngpYZarZKnTfMsfQiAHissbE": 101,
     "GFidoHtozMdYqvrpcpja2ZcK1M2kWc6KfoQ3C2a8Qhk2": 990,
+    "GFopGATwBffMZj8KSvz4bMz3CYNfAiHuiVNTX47KM8J1": 100,
     "GFpwrDNPdXtxsAF9EWHnG2RMJuzSMfxUzQRGF1DkSAYW": 500,
     "GFu2CzCjfxqNNtxu5CXnJ4LSL9THmFzEHuNF3wJsYbpX": 18100,
     "GFzpSvSLfLf4kgPHMFGeFjE7KQAFanhM5eShKHZmiBvm": 1059,
     "GG1Yv4NbBRcJDdjgLEWkfn3JaH8Qx2sJE8CFCjm8qGyp": 39200,
-    "GG5Apbv2pX5aGYG4h4sgaYJS92xDXHaTtedsj23e576S": 21400,
+    "GG5Apbv2pX5aGYG4h4sgaYJS92xDXHaTtedsj23e576S": 13400,
     "GG7VRd5houiWfhTdqMoY4AtFub26ubt9BQpE3wSQRdtK": 15000,
     "GGDNz1yrvscoDYK599qSEy3nvZgBtku8wNihQTqpVJNC": 235000,
     "GGPUB4Ypy4qf1dWodYcAXVSSFHdfC9pQiErVNmWvuL5Y": 22500,
-    "GGUSkrw8csnV5uYXfL7Vdoy3qcM8fCD91v3NXHixWtKS": 302505,
+    "GGUSkrw8csnV5uYXfL7Vdoy3qcM8fCD91v3NXHixWtKS": 303573,
+    "GGVqGCDi7Hub7dX4FQR7qU1Ysb1r6knuwYyCTvMTHNDh": 3000,
     "GGXB9kLSSt24Q7iZz6DUjarWA8t7L5jgD3U6dFsLmJjL": 56000,
-    "GGZRY4UWNv4kvwarjPLpU9cZebdZJZRC9YGSDszYoDYx": 142768,
+    "GGZRY4UWNv4kvwarjPLpU9cZebdZJZRC9YGSDszYoDYx": 17568,
     "GGeE7pZuZjpyEypkVcrkhnLewbxZQNJmSTvWoZB4kGeQ": 5255,
     "GGpC9xgivzwjtN1DYG3PfKpwTRzbKYHyCWMvBg5JjWaf": 5000,
     "GGpy2mSxsUJ9Q7GsmRZzQ4p8tvG33nzLi56zTcu4to4t": 300,
+    "GGuFnFAmNUqmGTXoYwwzRzrqhvba2v45gdyzzoVRGaLj": 1000,
     "GGwwkhSG3rZCJnnDREnwApxKrdKUYyft1vyA9jLR6qWv": 900,
     "GGxyeuVnbHRnUEtCxjUWLJsJmJRExfNShtUG1HLQENZM": 8000,
     "GH7FLWZNG4Er3N9NnMQtwkPcfv8QWH6ZZXxXpNKdCkBP": 16945,
     "GHDDrL2f1Hp5NTPG6g3EC5tpCumSb9SNBbcpQrZNBKUp": 2000,
     "GHEGWXHvaJuySEC3MEHnWiM1wHuMvzvZuy84XtfuN8m1": 52100,
+    "GHFGpAg1wgREYYMb6PjytAwCU1DviAGdkr3jcupjvyQg": 85500,
     "GHHw9L6tg7fNWr15R3kWPppDgLP85DQ2SP4JGkAzbmsz": 10100,
     "GHQhPTVzW4Ukg7Ni4Y9WUi74fto9rx4qCAjCv3G9wUGG": 1000,
     "GHZT5hVAeT6REW4xhWuNKXmdGrXP8aRtcJMfEkKvG91K": 5000,
@@ -232304,7 +237313,7 @@
     "GHh1KzmMt6hiw7STfEohbgwmGLiupJRJAyvkvQDSrMnB": 79500,
     "GHrFX7geFdFHg8EhRdfENXVoja8N6CpUesq3mvfVJFFr": 149111,
     "GHsYnY2s61HFUf22Cs8nKe54KaPK9kV5GeyvrXdW5JnA": 100,
-    "GHuVsGNfZ88U6ShZZRi5JU5zcpi3DKxyGuLT7PwPDkjK": 464482,
+    "GHuVsGNfZ88U6ShZZRi5JU5zcpi3DKxyGuLT7PwPDkjK": 163053,
     "GHuVsGNfZ88U6ShZZRi5JU5zcpi3DKxyGuLT7PwPDkjk": 30000,
     "GHvJohePtdtd2ZZTqk7DfuuGKXAt5WUf94fBVpiSn6MH": 46400,
     "GHwx98MN1dr45XWJnR7RA27pntKHQBRBJQwgQp5weVCn": 3049,
@@ -232314,16 +237323,16 @@
     "GJAEnfd3h5ixKQGWMoMBLSFaK82yXWagXrHahBh42Fy8": 500,
     "GJFRVYzrbuA8fxdx7Fb2XetKFhzBGjHNFKWfjd9Cd6cn": 500,
     "GJGPxZDQ58kkmdx8Rwy2mmc3UhSxfuqg3H3eD58rL9dy": 21400,
-    "GJJfHxdufWMJdRz8G9resF4Xu4SfiE7zcGuDEtRBPFAK": 153693,
+    "GJJfHxdufWMJdRz8G9resF4Xu4SfiE7zcGuDEtRBPFAK": 163693,
     "GJNRVcv6TTFY9EmLtptcjqZijYe6RRXMV7teyGp5dWB2": 44800,
-    "GJPWxirQa9mK78XZMrCn1i7aA4gqZeGUhiGUL3qegvXT": 4000,
+    "GJPWxirQa9mK78XZMrCn1i7aA4gqZeGUhiGUL3qegvXT": 12100,
     "GJPYGhc4mQTJBP28YQhPqMXKYj9ARApDPvqoc7QbGRej": 105500,
     "GJQvyf3AQrYukiwQfSUkxgA89fhcUy35N7bxRL9mQvDR": 60400,
     "GJUfeK6k5zpTk7t7xKEJY3DmRiM7XEw6NwLCtmKFt4z1": 1300,
     "GJUoUh3fzXQ818CsKeiGAXqejnfP4SHRQqxaJ75zS6FJ": 2000,
     "GJVmiASqfbdNRk5zj3vv9yLwgxRHXvoq11ryg3Gq1ckp": 5255,
     "GJW8ejHm8jtqUo3o1zwvcnSvswn6pgFmEaST3gbf7DdH": 500,
-    "GJZiVP2Jn13DvQrfBAyWdBA8PGpuUermNb3ACjifBdxa": 1270000,
+    "GJZiVP2Jn13DvQrfBAyWdBA8PGpuUermNb3ACjifBdxa": 1420000,
     "GJcXxWTf5KzeaghEKjgaiKBWXxTV6RPbwiQysZTDeMxY": 10000,
     "GJe1gTLM7tKaSgXisCwcdXZcnzmhw59q6MKcbBLK5Pda": 10000,
     "GJh48fKmyvqU9r2XsMZWRgvr2TzwcYwrgtmvZadHuP4w": 23100,
@@ -232341,6 +237350,7 @@
     "GK5rXWNy9kNsQPxFxboFkZext5MAHhUXgr91Y257StU2": 2100,
     "GKDUpMArECw7nSJmz7PR5nxXm9XRfurcEYkWXGTPK91x": 51470,
     "GKJfDqn41d4VFvmaA9KjbacBsZaLA344yVZXN9NxcQoq": 1500,
+    "GKNWFcCr1zbqDyxZLTRrZKHzNK8ATbaRoq6rv6AV7ySh": 5000,
     "GKQrWxqMRp9JJtDy3VbUDnfBujyg5KbcDub4dEQxP1VC": 5100,
     "GKRULCMHVJpQvsmtRY3YSPXsdXWmY1p5NBaGNv7DShNt": 600,
     "GKWZB5NUvgFxnjTRLpW6VrMzEmina2v9McMz551nLynd": 10000,
@@ -232350,13 +237360,14 @@
     "GKaJhSXEsYWz3FT4Hy8dGMJ1tgJsPE6sFCi6iVTR7sMR": 100,
     "GKcD46FEgxoXx2v5MQ2JJYX54efXiFnPUKB9vNkH5dvE": 5000,
     "GKczM9gWiDH7w8M95Yu2mmuafzvCYjy1WzopPqVKdYHx": 4400,
-    "GKfXX98Cb6CB8Tk123ue7RHbhRpLwsYgvF8K346v32is": 11360,
+    "GKfXX98Cb6CB8Tk123ue7RHbhRpLwsYgvF8K346v32is": 89760,
     "GKgfc1s5QVVCp2pV5n6RVDVcy1sKc95RgqTbyMEqKFsT": 100,
     "GKjX4qBaGNy6ksqwrkRr3ENWzkVJTvyBCnDMFyZNiNKr": 120000,
     "GKmAtnbe21n5kCCYxie6ZkCQizryT82GMmEg5Xk2VxNP": 505,
     "GKrdKuhAquqPxk98rBaFZyTjjFNNTLuAnjWyMGTKX2R9": 950114,
     "GKsfNTcmckmMWZainjEmByiJoYzvTBrrPsANL2Nfu97i": 800,
     "GKshr8UcVtxJTc1UnD2PQbt7SED5NsywNwcmeReW5NUn": 5580,
+    "GKx9AvXrqxroBR9vShmUuxV3wvraDNA2SUuzFECWJapK": 10000,
     "GL5GWQmPiS6sy3cBMfzkwF3VjE4sbbNScXtoNuiRdxwN": 10000,
     "GL5iCr6naJqC2Lm1gh4L6QumovfHU7ykecYQWt1SJEU9": 2118,
     "GL65u8zDStTABw2xLhUXrUSpcaCzAmmtaVZdkAuqt869": 26000,
@@ -232369,7 +237380,8 @@
     "GLMzjVvMJiUKHB2KSyVvY99Bx6YJSdpd8jfjJZpRcEYS": 34626,
     "GLPBKJGjsoEtCcNwqPAGL2c21bgCscpPFANr4pEDRcQW": 900,
     "GLPwMcpfJjXihxXXun3qcX8rdJf6N8aibRPXtdq87Wq3": 12043,
-    "GLWsMQu9Bdvhw1DYASiiSWqtQsVEw3EB8JbfVTQDv8kv": 100,
+    "GLQr6GVPzkZTeS3PAaD6Dyz7L6WWnYvNHAe5PxTMYbVG": 119900,
+    "GLWsMQu9Bdvhw1DYASiiSWqtQsVEw3EB8JbfVTQDv8kv": 1000,
     "GLbAzT5Tc7EyEvh8zLCMKWesXKjdPenHADsmNEGy9ZfA": 15000,
     "GLcPQp9zs1zCRL6H2HRahZfdKuh3RVhBRFVN895Mbruz": 5000,
     "GLd2JAV9k2AdxxGEWsAbTTTJ1Vv1mBSUVBp7SgKSwYxa": 48500,
@@ -232377,6 +237389,7 @@
     "GLjKAR9GvovSW3PMaZZTgUn4g39cU6gmeb6eGoeUhvXz": 2000,
     "GLmjWryQNsjgkNUUdot79BvduF3C9ohD28bnPJyGdMx": 10000,
     "GLn9MHA2gv9v7W5tUUEMQKSzLHJmGAafHmoaayQAVr9o": 4000,
+    "GLrpzFxgA8jW3LW5P2UzKfojYEQoVGrpWnwnPRGUhEr": 26100,
     "GLsFecJF9uDhv4368GPxEfMgLh8FT5Bz5R5FTrn83WJm": 1000,
     "GLsJGRgGuo8YPGxWUwQFCWGezh31k57nA9KxECu3WKHB": 5500,
     "GLucp16Bnz7BaKAQ4rKH9PdfQraA5CF972hYbT2Ygmny": 41000,
@@ -232387,6 +237400,7 @@
     "GMALKH4YTWpJgWUg9BbBh829hGFgHkCuDg6tutbFMxMj": 10000,
     "GMBesscuyzwMHP2EwUWaEtigpfPBAgLDMe3qdru1TdEG": 320,
     "GMG9gyxLrskFSuAh2xMCp2pQ8X9bjFskyqq2zeWv6W2J": 5000,
+    "GMH9wt4FY4VYx9XatsdSf4XkbjxTgnQD5U8wxWGZRY9Y": 5000,
     "GMYWqrhaHGcGpqYkkqvrnE1c41ytVHPeBB14k9eD3boS": 41800,
     "GMZJ9beVf7Gs4Tyqk213z8usi2LZTQB1SKvE6ceMbpmK": 3000,
     "GMZckHvfawisoohRLfoJNu2AqGhDqZjCWbwxP9VBZ7GR": 5000,
@@ -232402,6 +237416,7 @@
     "GMx5EbeLX1jt6Q1K663mmWwEeZtBmtiQmtQDAwqvTbno": 50800,
     "GMy67fKJMUynNwBrPPnnh7nspYPdCzxRiSxweLBx8uce": 6000,
     "GMyz4Xv6DAZ3MhBYAK2wGzppfzbmGxqqLWJrTY3HCC9a": 10100,
+    "GN1yZRfFy1kX73rWYbPVT74yU7QFka4M4fM7naAA9YwB": 200,
     "GN4xLzWhEDFvDUZL3drobWWbodbm4w3cCXqSNAVp686y": 22000,
     "GNFWxd9dLogQgDo4Weevr7rz6eZwWUqPEvL2bFLEXHtg": 2300,
     "GNQ3d31qePpjr8K5Tj1HP8GsdUZNHzwUqiu72EyiizVC": 10000,
@@ -232426,14 +237441,15 @@
     "GPEGX6y6JGTTWqoAZKrvTfB7GXFphsD3wrsxQkqa2T4E": 1700,
     "GPEjGPsjqLBfR8RjeGAjjbdUHg1V7drCXpC1j6wGvRpN": 19110,
     "GPG5fh4xZTXxoeeMj3qYo51fx18uyKXR2UVDhT8YGKPJ": 10000,
-    "GPGtDPjgk26Ah8zJ5U2d125K9sREzQ4oGsUyZXxZbcfq": 157000,
+    "GPGtDPjgk26Ah8zJ5U2d125K9sREzQ4oGsUyZXxZbcfq": 207000,
     "GPKd9Pdssu63UcCfu3MGGPvDDPhrVdEiAesnHi4szwbE": 1000,
     "GPMQj5QjeCTqKALMroVBvpj9sVqVZ7Gey6nZPLpUvuA5": 26000,
     "GPRbJnouuS8CuVt7Dj2D6Y8LGT5VcNveGSPjPQJhNszj": 900,
     "GPVdK3rtp9wh6rxR7CtBbjEJTBqJaabkkMA5fzshLa66": 4128,
     "GPVoa6FFbhAd8xER2ULrWzx3Z7qkLcV6YFbsZx1q569F": 974,
     "GPVpLe9ccicQJTSRd91b4NVBj4TAJD3gta72Gp9G3zR8": 14000,
-    "GPXRHYCTD23zLQgWhuksWJoPm2ptEAuV9YBpfUxdiDMd": 2360400,
+    "GPXRHYCTD23zLQgWhuksWJoPm2ptEAuV9YBpfUxdiDMd": 2402400,
+    "GPaDui8PKdLhqNP2F7hYydMexT2W5NRj43cvcLpQfJQX": 10000,
     "GPcvacXJKVtctEvTwbdvduLtqkFxvicgQAYw5v9vBAW6": 22060,
     "GPduUSKLUeGe3QQt8sFegwsaw2CCEGJ9au6ZtrE8ioNY": 8600,
     "GPnEsUhKgKGxdc6ujropFnkKzeTZXa34WwyUusmh3qgP": 9000,
@@ -232445,7 +237461,7 @@
     "GQ6cW3sN9fWKDoXs6EsQ5BVFNdwNdD1fHuq3X82eDjEr": 10602,
     "GQ8ZBKxVwnVKpgeTUoPH9Tn6ZpVjnnWc67oq32zLEodB": 60000,
     "GQ9pUuQH7eRQWmFU3KheE5w1Rfh66BpUdBLMF4BYRjgp": 500,
-    "GQBiC1R2dPv8Eq9iv1mES2fuwuJ65E1Lhvp94oQd9yJw": 490000,
+    "GQBiC1R2dPv8Eq9iv1mES2fuwuJ65E1Lhvp94oQd9yJw": 349800,
     "GQBvt8Ft7zbCpscN2XhUkqP7TKct7PopjWm9uqNWSgUK": 5160,
     "GQC5DmC7yNQsYX6BRcuzRVvLvGwfdU6NDsgV8GFEd7FT": 10000,
     "GQHDrA51ZXSjVsha7ekRqWEbYzP9BSSKjonbcryxovPo": 204400,
@@ -232455,7 +237471,7 @@
     "GQUXF3QwsKt9xWMNWbYi64AoYF63VYVXFyRCJGY1NMZR": 2806,
     "GQUngu2wHS2mS6kk7wUc3JnawxCK1A7G2CNes4yZXEvi": 46190,
     "GQV8bzh3YHdiQgrERnPUEsGnFzDcrgu5GuKmFaWPCtSx": 100,
-    "GQWCKXRaB4F5ZrtYENeXNiFZS6s4QhFrsDstc9XzRKUb": 9967,
+    "GQWCKXRaB4F5ZrtYENeXNiFZS6s4QhFrsDstc9XzRKUb": 14167,
     "GQYe7C3UVp9zR1BAsJ7TkjbcYTGs85eEDbvvVU5yjgBy": 16525,
     "GQYwKZunfNYzcBYwxTjMNgtU6XTNxyA1Df5zGhftYhDz": 35000,
     "GQaD1zguA7rfefbPkaU8UkwzXZBL5r1jeCHuub5ZMw4J": 50000,
@@ -232463,19 +237479,21 @@
     "GQdYW6A5LmR4mUshW8yqLzFTPHPXDywdtUuR2DFM8khY": 26200,
     "GQjqRAtQY38Fo1b1Ahwzo76v5G8fuCAiQNnAmgj5tkty": 10000,
     "GQkEtm843KVcoQ3yUg9FSg3LwxuHEc8K2PfsdAZZH2gM": 1003,
-    "GQsuyG31eV4GKcf6JMS5dVzQcQZ1t8SfHtrp8ssgMqUp": 2000,
+    "GQsuyG31eV4GKcf6JMS5dVzQcQZ1t8SfHtrp8ssgMqUp": 7340,
     "GQtjXLvNYwjy9JK8qSE2gm3fzGjU5Ft4eXtRrtFz8uji": 600000,
     "GQuXXjvLfjhDFyDhft4ttimec3D75cjcvKoLk2Qm29PV": 2000,
-    "GQuYfDdxdYZ3TS5kaLT2hHpuwjmKJVshustakugR7N8U": 5000,
-    "GQwYiVGHjWMJGjFS9YFYBYLVoMiNm92oeGtc8V1xWiqM": 500,
+    "GQuYfDdxdYZ3TS5kaLT2hHpuwjmKJVshustakugR7N8U": 28960,
+    "GQwYiVGHjWMJGjFS9YFYBYLVoMiNm92oeGtc8V1xWiqM": 501,
     "GR4skd2D5hXZ9g7sJ3DVXD4aaYpkybKLn1wWNSzejmRv": 1011,
     "GR7QHKMHCwjhQzemKLn6L9zxP7HfVKz7wsYmaMAAaUks": 400,
-    "GRCghDdzJFjRHTPZNPcDQ4RtgzDeWzTJrWRjYi4fxBHU": 60000,
+    "GRBiyyZcWuDdtukX6vXxFjAjBatQc5uP2R8kJHWD6FMg": 15000,
+    "GRCghDdzJFjRHTPZNPcDQ4RtgzDeWzTJrWRjYi4fxBHU": 41500,
     "GRDNadJCPgDc8c5EL2HGQSGear9QX4aouRZXB9cLDTWP": 50582,
     "GRFVmHPeTHsoEzXjCrhZoLgT8Vsah74JJ6JF6fY68nwx": 47000,
     "GRH6xFT5eefMfyE66NJFWiopRMMYWaYJQ6A9W7JofkoL": 15000,
     "GRHdzGGnPDKZTnRrTnMzDSLSfHMnT5G6mAfgFfCwNsDX": 300,
     "GRMDChhZHaGdLbDp9aUmTNCozBrMCkvXEcLpjCysLAeC": 1000,
+    "GRPBdShS6ZPEyEFSCaDtxTfNYs2UYmFhhSPFPvHcvjZ1": 10000,
     "GRTJdp3KgQ1aW3CiHBGcujduyWDGsrV93Qb8xdGsajFv": 100,
     "GRZriHjEWQdQYf5LqH3Pmg7u3wePoMF7DPYq3vuiyjgU": 300,
     "GRaKW92C8jCot7nPs6gVakRZN71cghZUvYy1ZQJRAuYF": 15100,
@@ -232490,15 +237508,15 @@
     "GS2jfhJmbMsViCzaFAhJixBh1q9WkG5XC1CRpncfMdpL": 15340,
     "GS4sGp9ajvtuk9hCeHB5SRo6ySdDND5WjYPiw9zhax4i": 2000,
     "GS5Bq2AwgzxWCiEt3CQYNtntnUcdJiPqA7Yez7iLVwHC": 9300,
-    "GS8FWAeggUNZiThZr2EAaGqFEUvHatgLH5sk6SrHtwPq": 14500,
+    "GS8FWAeggUNZiThZr2EAaGqFEUvHatgLH5sk6SrHtwPq": 43000,
     "GS9n3wk2a1ocefPqcsALZ6n4iJ8DGAXho5v1v2ppZxgM": 500,
-    "GSAZqDG75vf5VHpGuUzpjVr4evLCn1ahr7z3J3af6MBt": 15000,
     "GSBGXhyvxdTWvJB7zaH3JHWctZrZcfgKTcogZn4nUNoY": 31200,
+    "GSHC3LZhbXGmiDVZJJBC3pKqWHe76y28heDGPykbFSQW": 2500,
     "GSNASDDM9XBWSBiorxkhTmbMhAuCTYvKew21sAkLRJfP": 2000000,
     "GSNUCZZTttTh8W4Cns1trZQDrWkG1DmL45NqKkN1b688": 2022,
     "GSPq4gKMUnUk5WCccxzor2DSNJCzptHDUVGoPb32XXhW": 4102,
     "GSRFboEjuN2EnXBGboCkoxtgkvNzhURhEmEH7Uw1Wks3": 6000,
-    "GSVD9gk6JKZ2htK8Edr7jzZr7UtqQdpWJPBPz2KReV1A": 2000,
+    "GSVD9gk6JKZ2htK8Edr7jzZr7UtqQdpWJPBPz2KReV1A": 1200,
     "GSWHi2VNjt3h528AGN2DesjZSJEvH55YX6ziNyMEgUb2": 20000,
     "GSWmyDWLXtMpEcAWjAQn43FwyebYRh7wQ825HNSdpojh": 2000,
     "GSYpQoFHnxRLKtR9hkr6itXaSwgEA97tmAHJrXbL1ka3": 8000,
@@ -232515,34 +237533,36 @@
     "GTUcVXpSPvASQMpiS21VwWJfSSgc2j19hA3FaVZGwS5z": 4500,
     "GTVSSVyhPvCN1HmReyx4KiC4VP84vksvXBuq9aAsUYse": 15000,
     "GTXCcP2H3ySH2SGjKYEVsABuTPRmUZv1vtMEZPWcwwCK": 112200,
-    "GTYmEG1so5Av7stJAdsf8hv76dwdW5tZexRLbtDFJmSd": 8000,
+    "GTYmEG1so5Av7stJAdsf8hv76dwdW5tZexRLbtDFJmSd": 14000,
+    "GTbX5KYh7Q5RoEGRA7qf17t3b7Mf2rUq133V1pqp6ZfY": 2700,
     "GTf97sKEEkXtQomLAnwANcaD6nsq2KY9TKVdDFQtUEd3": 5000,
     "GTmAKY8QcoAjQL9VKNXgDpW5p9ahh5Sgh4M13q4YMSRA": 47500,
     "GTqNrCVyqqh5FXBGRSfR5AiQJRknjf2CwHBPc8SfdPtq": 5000,
     "GTtsxfeba5jASStaJZ5qrDiJqgYLeTAaTaqdKVoRNaJ1": 500,
     "GTtsxfeba5jASStaJZ5qrDiJqgYLeTaTaqdKVoRNaJ1": 5000,
     "GTvZbZF28gKk6vSvVeDnXVDrqhVfrVxZcphnavfKAo4j": 10000,
-    "GTwzQaD8VXBFZ5KasJSB8qAg6pV6gY748t1DuQSA7PoZ": 42880,
+    "GTwzQaD8VXBFZ5KasJSB8qAg6pV6gY748t1DuQSA7PoZ": 41680,
     "GTz4A4LwjZE25GHu71xpmswrRMHRQsDm8o4BMwfyjAu9": 100,
+    "GTzaGqBhiDAgDyckXbhiacswopcS18gfqbni7Qd4ixAa": 10000,
     "GU1aEXwh6rxPDVE3pNuGTS42gQzaLn11QdVMbG2cV78z": 10000,
     "GU3aQ2htCNcRMypCJT6o69R9gVvUKEFgGn4v1zUizPNh": 11000,
     "GU4Q8sTeRwXvzruEGu2GyR9WLqae4TKN2fQPzf9iaVFx": 10070,
     "GU64xxRJbLUjCZia9avRzjsQYvxaob1hpBjMRzJiwaiz": 4500,
-    "GUAZwqHndFVvnxQ47VBekmzhR3HPJ14KVYwoB2DPtZ7k": 10800,
+    "GUAZwqHndFVvnxQ47VBekmzhR3HPJ14KVYwoB2DPtZ7k": 8800,
     "GUCq8PVuc3Ja3TvAhyMVVJLjhL8hdwx6qpW4zMMQfXPP": 1200,
     "GUECUSFGVYBEmNHVkX6q9BNaofj8ir5Q6xwhcqZiBpbJ": 5000,
     "GUH8PMPyNvsgEufLMihks9DUjxHBzwgMtX6jFE5ZZNdD": 78600,
     "GUK6Pzt133H4XXfhk66LPD6kME4doWN12MNtRcsfji6N": 30000,
-    "GUKAQ3Br7sWzrWsxJ8d7LqgCtnPwmPXgEt29V8HLE9mU": 34500,
+    "GUKAQ3Br7sWzrWsxJ8d7LqgCtnPwmPXgEt29V8HLE9mU": 59800,
     "GUNYLXijJSt9gBH8jcG9qJz81SsoDNDhPQRbJJ13zFXU": 2000,
-    "GUR6e8vjR3Jpu9TedKZvjAgfWsYApFxbA4BpS5DafX1d": 179745,
+    "GUR6e8vjR3Jpu9TedKZvjAgfWsYApFxbA4BpS5DafX1d": 189745,
     "GUSLKtiGQK8ARRaxhcKmxP49RVGnSQ57toyvJ6y2vJXJ": 300,
     "GUUy3RCy2YdjNqkrEGxJfqQsSaeitT18DzY9aDoPpvn3": 4000,
     "GUV2AATw8s9LQq8Y5irQiZ2MzYLfWtkFsigc6XLJGxQE": 5000,
     "GUWg5YCf1MLSKZPkVfCgiikMUNPYPeywUN1YZcEcHUUp": 5902,
     "GUYefL8M6sDnPP4KT8sQHDK7j56pu6hVSPAP7LmFgwND": 508,
     "GUYku99evGujpRwbnvDXBUNPc1LNyei54njdEsDs37Ae": 1900,
-    "GUaJQUwPSMPUva4by4Yto3ZZpu5tc9fxjgqkiXQxYE5y": 286100,
+    "GUaJQUwPSMPUva4by4Yto3ZZpu5tc9fxjgqkiXQxYE5y": 260100,
     "GUaNBLMGnP7MrRV9TMQsm3mcSDenbQoF2HFakaHPUWYA": 550,
     "GUdpeyyBSUc6dEcrNHwkJTHbFbxDkrZysXGo1bBRg9Sv": 11044,
     "GUhqQGqYDZVMfgpUyKCFGuf2Wpchw93t7FqBwxWskLi": 20000,
@@ -232550,17 +237570,20 @@
     "GUjtaHrpa3zqtFKFueCeyv3GiBB6sAsxiho6mLueKx8L": 3000,
     "GUpwrxqsYVBJru9orMteswESNoLAREzrK7xM75w42GD5": 2340148,
     "GUq38yBk8YJbmCt2FjrrG6uj8ScHCCL8GY1ytpu3EDeS": 57326,
+    "GUqp1SVD78NeRR7c9ptnpotrFHMZVLeoiZwq9iTx7ntz": 200,
     "GUsJ5qViWZBArJrbrYZDjNx77DE7CfoZ7WqvE4cwLTFh": 400,
     "GUsmxL8G9cnVoCsJNFaUmd1qSpWuaKkxsoioPotBfVL3": 1500,
+    "GUurzszGA5YoMi2XBXUbrW2zuGTdrNYmf3vGuMni4xMv": 5000,
     "GUxucgCxWYGsjrwvRQoUJTy1HLjrexiGDB22CrHAwE7m": 9384,
     "GV12kT7YivUhfsGF4jg6p4KGeJk5QeKfCLwdc2a8vku1": 7610,
     "GV4Jh1wFeSrz9BYt85YwhetyivcEPPjaU2S9zHUmk74f": 1032,
     "GV7qvPFBz4KxaUfCisJxUcdbLWx9L4TL6SiBanc7X9PS": 1068,
+    "GVAbEhS1RLP2kbgUppctdUBuok7aGKYHJTQgj43epaiu": 5000,
     "GVBLpsKP54x1xAmHNPvPwbSMMJnPARxuczLakNYtsCMn": 3000,
     "GVCmxkUW1rrAmYRkxtnyV2m9cLMCMMT41PM8vq5v6gEE": 5000,
     "GVJym4Lc6zb32HiLJ3hSUyocDjKqybS4yUr6WaESGB9m": 23300,
     "GVXEBf9T119qmQ8XM5S9fq8emhpHDNCPeWynFnuhL5kU": 7500,
-    "GVYVBnpqc139pRJrGZZWR3pwX7mZXRXEE4kqxHJiicuT": 53659,
+    "GVYVBnpqc139pRJrGZZWR3pwX7mZXRXEE4kqxHJiicuT": 38359,
     "GVc1ed4FobNgG9ekuNh6vwXQj5e38vb9Q4divNJ5ipDU": 119076,
     "GVgVvP4KtFG6ugUdHrLWHY3YY3GWqhVFPxMdoyrfsPHE": 7900,
     "GVuDWDBe6zE2fwNtpoE99vwAbipUhQEXux3eiFn8LATx": 5000,
@@ -232594,7 +237617,7 @@
     "GX7nuGzExY7cEJqgraC1KYGmLpVSoRscU6nD5gWVAwsx": 50000,
     "GXGupdnYsP6qzg1eJyGed9Yu4F7y6DqCUK5xEj8Q6job": 3000,
     "GXSwWSWc2FoYuNzq3A61oLS78KDHkj1vTiYoJ4GVvW9i": 8700,
-    "GXTkyTwogmj8hHVZRj98fPmxE2zVVyzNMTaM5TnCsdzo": 16900,
+    "GXTkyTwogmj8hHVZRj98fPmxE2zVVyzNMTaM5TnCsdzo": 13400,
     "GXTu89WGnwVcRMT6Uck6upUetm1TsYeJnuJa12edW9KZ": 1000,
     "GXUCEm7WgSDN6hycVGAFV9n8rd8uYKW6bAMMJtsiaHbu": 10000,
     "GXUSUWJGvRTJStPB1RFwgrQxUiW9qngbNQPRLTYoqt4w": 60100,
@@ -232625,10 +237648,13 @@
     "GYd8SfuEVkCCpd7Y7tcBa4o3nnvBxr3bdpRcdw3jC2L1": 8500,
     "GYdCA8x1AkuvxF2kNUyuFqbS3w5GbFQemQwfYv9eNciK": 100,
     "GYdsGvVJGrcQkVKUg9DhUUzaTTd3zkHNWhLtiYQ7qSqg": 2000,
+    "GYmJ2c1mmYikGqCbz3CgBDvkWUAhZrmnwB1SLAFiXV9b": 39000,
     "GYmzgB8yAUVwoQPdTHXqB6yFuAkCpf2pAq1kXCQ61yph": 100,
+    "GYxM2HLhLEPuNRtCUpd5MyDEXJnVFVRLq4atY3gZD3wP": 69800,
     "GYxiJqoT6RwX2ifbP5zenmqpkBjAMd43co6dTJXANLes": 900,
     "GZ4E8jJGcs9EPeSxfXw2MpBavqzb6cW4xh8T8s23DqT9": 100314,
     "GZ75ybwxZEKV1HddkNBqMqfVaXagxMkYraGMsnCUbE5x": 100,
+    "GZAECAmCNrg9yjKfYoChY6VMt7MCBsCJf7NzakaUFink": 2000,
     "GZC2wFdUvX7LHF59DSC7YRE1gdiW9aiqhTUPZcJJw7kX": 900,
     "GZFRBKdDQahbGRJX9MwjkoKW5jLJ3JyAdy9iLCovXyZC": 20180,
     "GZNQyxPwQ5hekXGgX9oLr1QGBzMhd7Tk1jZDfp3hvskd": 10000,
@@ -232640,7 +237666,7 @@
     "GZgCnwjcJkC3jNK1RhnMgFpwx8wnbuffdEPBaBP2LUhP": 3000,
     "GZjh62yYWVU5VRUtXdqR1xJYfaBJEnbUjFrnz19eLJou": 4000,
     "GZjj62yYwvu5vRUtXfqR1xJYfaBJEnbUjFmz19eLJoue": 5000,
-    "GZksuMHYeZv96q1unxwr3wKxYW6mLhhdR8asr47n4Csg": 189300,
+    "GZksuMHYeZv96q1unxwr3wKxYW6mLhhdR8asr47n4Csg": 222300,
     "GZpWrZxsJaerjzQU4k8aChk3Nmoq6HdPrh6WNcRteH71": 16800,
     "GZsjvsPkRouWUx8yBmfcS4y1QcKMnsPvVSpNRNTsKbny": 1051,
     "GZuGneN5ri11eAbzmuqqLDPZaambEGUtznE1ViUgczLK": 2800,
@@ -232662,8 +237688,7 @@
     "GaWmDAQKD4Hs2dDbZ1aFfB3rsCbdepzgENGpWAzjjFZt": 500,
     "GaXsvye9u4rA64q7uzMaEUuiNfbX8x4s7mqN8kX3zCYw": 896,
     "GacpqneRaQ1Mu5TQL8grY6SrX5d6YnJwuQHXyZtV2MDC": 5000,
-    "GajF1Gw7KzorCfCLjAGskWqnJCeXVr3CES9mWyfWFtHe": 5500,
-    "GanUX43YBuBZJdiMV8dekhpMEUrzkNUj5A3uyRgaZ61i": 28500,
+    "GanUX43YBuBZJdiMV8dekhpMEUrzkNUj5A3uyRgaZ61i": 25500,
     "GapuzKuhxMZiUQ7XSgA5ezGC1ESuKcH5Lk6WJjSFAcJM": 800,
     "GarU58dY1ePeDabUzaQya1RQfyBLEthTNFRE62Jo9CMp": 100,
     "GasRJmiNz3mQfneB1Bxmy5mzBvFYs9FY6jSLvURtYASb": 40000,
@@ -232671,12 +237696,13 @@
     "GauM5qWiX1uzqSdRRM51it95sMdadLnsNrRKSoMQU6xd": 3330,
     "GavREhsPzuFbbiDPgfignAV6dvnpAu5D2LdechwsRV6G": 19300,
     "GazDWgrUxSwiBowE73NoVhS5BayohwQhd65K8zrgoHB": 1000,
-    "GbEyaL7N5z823GwmgEqQN371xCeZRDgwMb4CCpXGy5mB": 71700,
+    "GbEyaL7N5z823GwmgEqQN371xCeZRDgwMb4CCpXGy5mB": 125700,
+    "GbUZ1VCnGaSX8o5HvkKjiXCcqk4BZcPsxnxJMH3ncd4J": 10000,
     "GbZSL1DZVXueqtS3kwcfcfNJhLfneqJZr59o5VMEDRFC": 5000,
-    "Gbajrb3k3wMUdUWUu33AecV2tfh7pPm4BmHGKrKxEzwN": 98200,
+    "Gbajrb3k3wMUdUWUu33AecV2tfh7pPm4BmHGKrKxEzwN": 328200,
     "GbiTgRnbDBTp9RHRPhPafGPbhxvo2WK4HyD4x3MHENhk": 4000,
-    "GbiTgRnbDBTp9RHRPhPafGPbhxvo2Wk4HyD4x3MHENhk": 428199,
-    "GboHP6GqDuLtHnHUtc27Wz1ftE1mBtroG6WmiZqe9WXE": 25500,
+    "GbiTgRnbDBTp9RHRPhPafGPbhxvo2Wk4HyD4x3MHENhk": 542620,
+    "GboHP6GqDuLtHnHUtc27Wz1ftE1mBtroG6WmiZqe9WXE": 52000,
     "GbxWud4GXQuwL5CoDFCfU8TJqDhuHH14zQJRocHQzpMh": 141200,
     "GbzfXw7kmj5z58wJZeQgKELjR3aWCNXUTiEBF5ebLMvC": 14100,
     "Gc44SiJbmWHbEecpyXTFMEmHzTn7MzNNGYs6FoCPQG4N": 10000,
@@ -232689,19 +237715,22 @@
     "GcbveL7TnWAXAqTnx4NBXKQPxxr37z7d99ApbvonmJbg": 5000,
     "GcerVVNzE3DwWmFB29Bv1Z7uHRFnXHVs1iXdwmsTUAaM": 8000,
     "Gchu3Qtt4zQadG2WtqTnPwT8zCMq38fsR2sWCBSzUEcj": 100,
+    "GciE3zL7sTZrUHEFQtpW2eetHBKnrjvA4XmSkiXrRSEy": 1000,
     "GcizVwvgzb4faAzt62NRXbSvKdC4c7KvwRXRQjbAKUbH": 148100,
     "Gcj71QkY7SJykikwqyt1uW8vGiDLHuYcUyXm6Jy6HDUq": 4500,
     "GcnhahP9TgqTTQn8g2fVEuqw1QqKJ9o7CLAZM3pMTvtj": 10000,
+    "Gcp27QEDWW4mF6PVG55SSDCTZfJHmDgzHFxUCsBFkjfg": 7777,
     "GcpSRBR6RvCLbbRNhfJtsp1PMZWpt9JHdEVEb1cV28zt": 23208,
     "GcqbL368ey9CyCu5JpNwGA6vByUBSx436893r9mApAL2": 500,
     "Gcx3CfaKDVx4DLi7UcLTzFra3J4Y1an1e2GvSoWDQEvA": 74390,
     "GcxHkdA2U1N5BkKucsBYVKEEbFSJqCZT8vhvokXbjcZn": 1000,
-    "Gd1iEcpFNYDS2P7pZzf4sdMyfJJvnDWBPPKichNrto9E": 30800,
+    "Gd1iEcpFNYDS2P7pZzf4sdMyfJJvnDWBPPKichNrto9E": 17300,
     "Gd3J3Lg9aKN54K2eyKb4Rd3RN2qmyjUFtMcR1sr7EX1Y": 4500,
     "Gd3M9AJUQ7ap27znZLmuW9eFbnAWxutQZXt6U8fz7kK6": 30000,
     "Gd6yzxV4PSCVRJYoLtPAtsA4NXfXH28pjqiccsPYByua": 100,
     "Gd84JNGvqHATcoUthNMfqkC4v7X7u9YpKN3xL476dmXJ": 102,
     "GdEr55GohSdWykomnND2UR88hqZKYhrfC5jNDgMVhJyJ": 2000,
+    "GdHJmmc84r64uftna9M21VbbbCcNAmm8ktPy6MRS8F8F": 98600,
     "GdHprvWUFpRwBhBWRZkZBFYm7sMFK8CgKVZowLYzZxu": 8100,
     "GdHprvWUFpRwBhBWRZkZBFYm7sMFK8CgKVZowLYzZxuY": 47900,
     "GdLzAqYJsSgUpyPppN5SvvAc2W6G5kZoSHmjCTtMAGVE": 117548,
@@ -232711,19 +237740,20 @@
     "GdgtA2j6BCMM221FRbkT5h4DeubvtEMnuBEXr28p6R38": 5000,
     "GdjdHfJp8m2kYjoxkdxDDvu7BAvKqvpEHAoXWoxcfpqo": 4000,
     "GdpQorC8b2ZYgBUUU1YJguju4fwT3V7XTQTkMNKrjt7z": 4296,
-    "Gdq4GZgLZ1SyVi5PMyn3o4BmcuYSASeU7URqD1e5wSQu": 45000,
+    "Gdq4GZgLZ1SyVi5PMyn3o4BmcuYSASeU7URqD1e5wSQu": 43000,
     "GdtUHygcf81CUUxXeAtMrrTsDhG8MhNF7V6V88Byg2Y8": 5000,
     "GdukCFmRNgcYsZzkKuRY1DN6WMZp2nab3kFqh4TR67aP": 5035,
     "Gdvs7Q451LFyzMmKH55boexiQwM1uKwKD2CqoknpbvXx": 36050,
     "GdwpsHNtCRm4djTyCyFQTShq3qj2DjpNbvM1dQzJmmZs": 8998,
-    "Gdzn8n5FWMfb99Pwr7q4Wnjhvt1uB9sPyybWDiciHm4i": 8000,
+    "Gdzn8n5FWMfb99Pwr7q4Wnjhvt1uB9sPyybWDiciHm4i": 331400,
+    "Ge9GEPS9ofaYk8Tb4wiByNia7YoxfGmAXxCcdmU6bP83": 7200,
     "Ge9oKjFjXs4KrF7zEEJKeb175oEkLQtq3MdDvU6NWKJh": 5100,
     "GeBoziuGnLFaoE9FHjAPY1QvRiLW5pL5EF8smzWiqhhG": 51597,
     "GeE5MHHDK2rzSUwzAKrbwLFzkSDTZCpfRNZ99MVFjcz3": 900,
+    "GeGCXdyH9o2Nn6RzVZ7Dcpp3dheCpcPKY7sPtSWK2Jd9": 30000,
     "GeJFaTQZbHQvhhQSFNtLpLPRZZhhbt8ThYqUCoSdyEZn": 5000,
     "GeKtAMpYxGo6dsssnV5z3ZYF7eSy4ZkC43a4z8HmPH5u": 9000,
     "GeP456LjA6r2c79Z13fxddSCs56QCaeMwNpr7fTQ1Eg2": 6000,
-    "GeP9Niy25Bfd7J6d41eZ6DcuaQTHaykzWy75thUs8FWW": 5000,
     "GeQp1gFpz8Q4bT5rzKSk3BJuy768RCZtGLAajwgztkwa": 900,
     "GeSLZ5Saa9JEMqLyUicryeRTXWTCheMyZTjotcREHE1m": 31200,
     "GeSmY17WF4AT1jL7xeqjN8XX4fqREJ8xepJYYEsaDCjM": 4800,
@@ -232734,7 +237764,7 @@
     "GehC9SA7ZfihkZ4jZQStruBGn3qBnJ4PxiPAgu43d4LL": 503,
     "GehowoRJ5X5jc1zBWUDjcxUtA6BgcuFmkG3yobbp9HZu": 1125,
     "GeiXzKLQDj6x2b7VQt7dZPWMQckaq6t5MSiKugJMm2df": 11900,
-    "GemGhvP6mrcqe5TT5njvzv6iVGvcPSsCCo3bbrXUKi1i": 301000,
+    "GemGhvP6mrcqe5TT5njvzv6iVGvcPSsCCo3bbrXUKi1i": 351000,
     "GeoJZPPQPVtt1WyfjSC1RYr8c46H1TaNTfgtQzERocFi": 1500,
     "GeoLLTYmKn1WZSwN13Q7mTpC1GBwVKVNkrrXdncMnXgB": 21000,
     "GetHP8b1tK5V45Ka3bPBi3iUkafvmif2ey29mZqjUVTz": 100,
@@ -232752,24 +237782,25 @@
     "GfPm4bVqergJKnjqxBQmF3kTjaXb7DwB2LjwFa916YP1": 10000,
     "GfXQWEgVN6ieXMYvNZhhtL2xqCJ78d14mNWLf97DXQYk": 351000,
     "GfXSNjAiRxNro5wcHLH4Q3iFWaBoatJ4o2g1U4iPhL3t": 18160,
-    "Gfa8iFRm6b4AkPxWQ8rQVStks7HueTaK4ygPnzWLmzE5": 20000,
+    "Gfa8iFRm6b4AkPxWQ8rQVStks7HueTaK4ygPnzWLmzE5": 26000,
     "GfaZtqAJiNPdWqkbJrZAeyZUKD1toE9BtgG31m7Acfy": 1000,
     "Gfb16AkFPgVrSB2nqovfK5ZJn8tU76P9usgQoYckNaxL": 4500,
     "GfdxhvEDSX3Feh3wTmgei35eEZjMj8ehMgGs7yJB3P2u": 45000,
     "GfgEj5hK8sY7Mqx5qYXhqJBWih6azT4niwHGXfjMq7CV": 13000,
+    "GfgeUvzRCrbnPYJCZgmnXujbiSt6NzRFBRMW6tYmRJX5": 2000,
     "GfhEvd3xC8QenE1RQL8sSgediJr8L6GLDEbwruqkYivf": 2820,
     "Gfje2hX3mJUf9nCgNevk8edfn6XQjKakNfGPKskpBr9u": 10000,
     "GfrdHH1CNdH6Nj9hoTjH2HDohZQM1KS5XFraEDozN2AH": 165179,
     "GfrdmLXKAcSLeE1AVvncjmUUmKJnbYBQViXWWkJZyZzX": 614,
     "Gfuqb37in722Wkwq4B1s3xaJEnA5YsPDgunBjF3s2SHq": 3900,
-    "Gfw6RXhVSWQZXGgUkcdgKYNb3fnVTvMAmCQdqhrWK4gf": 5000,
     "GfxukvqZPpNvN4wHT1VCGApPii1KR6KSguhQHiseA1gg": 17512,
     "GfzASiU8QVyMvuKTREYro6HSViqT1Tti9N7FJHAiByx9": 14000,
     "Gg28rtV9kRvpVJFSf8dEysN1VTUpLtKBMPHNLieWP7VH": 9000,
-    "Gg3SsecrHAEdSMBoD5JHXbPEnp3yNpUCbaYjPRRyUnd4": 10000,
+    "Gg3SsecrHAEdSMBoD5JHXbPEnp3yNpUCbaYjPRRyUnd4": 7400,
     "Gg5Nck9LDdrmfcKbonFYHoQAQfGzsowxc9ZkPPEMY7Lt": 10000,
     "Gg5QqQWBpG1bj3eX5WS8biq5aJfKCVzci33pzDX3WBCt": 2000,
     "Gg8wMwNiYxgouZsoXGTkf7o23Q9o9iNK531SFEyopaqc": 4000,
+    "GgBeK8zYzpMxkTcpxMYPAmtMxyXGpLTEnHDmxoy3BiGX": 15000,
     "GgE6qmhEyU4tJ7u5cbqHQPrVJipyGPg5vNmEjE5EbFCr": 32000,
     "GgGnt3GjsgLrT7oqKSMZYfGoq9c4C6sc3XkUoJahVFxt": 1011,
     "GgNgSHTsmR2ixAV1NKec4wMKiQgmak3R66H8n3Gftzgf": 30000,
@@ -232785,7 +237816,7 @@
     "GgubmkiULDcWEZXVDiXb2D9kAhb8E2yMkBq4nvcPEHqW": 5000,
     "Ggvm1xSDj5DyxPeFqpzor6GL7RJC9ia5EqQTdqueCnCn": 200,
     "Ggw2LoR8xPhuRTbKUe8bsrL4QzBUBdZ9e23GxYTDGqdG": 28000,
-    "Ggw2LoR8xPhuRTbKUe8bsrL4QzBUBdZ9e23GxYTDgqdG": 2064900,
+    "Ggw2LoR8xPhuRTbKUe8bsrL4QzBUBdZ9e23GxYTDgqdG": 2164900,
     "Ggw2LoR8xPhuRTbKUe8bsrL4QzBUBdz9e23GxYTDgqdG": 120000,
     "Ggx82SqScgvQXHjp6ZkVHaxpzxi6vfwhjCpFKXWkwg4j": 1000,
     "Gh49EvJHpySo99r3sVyrLLK9Fqaco7WALi1scBkCd5VW": 1000,
@@ -232803,13 +237834,14 @@
     "GhoLnugF7wCHHPDWt96Htf5H5JwxWUDQnr2E3BpsMczB": 500,
     "GhuefxuYLrbBrtn9Q5791aqetuPRAMYnUKKGtCPCbJbq": 2000,
     "Ghvgy2QsTRM3yuniXcWkiRyZMoNHcTLWjxktsbczxWXp": 20500,
+    "GhwS5N9eVotcHsqazcb6CSNXukHaSAJBXbpxvunvneqf": 12500,
     "GhxtZ5pmE5PCEt7rXng2t1tk279WqUWzBcvB9nSkhV6b": 13500,
     "GhyHupSAJvELMrHxmbGDfGu2jexXr28YfYHszVh4kayx": 20000,
     "Ghykf6UfAntbvshqJdfMyQUoxB8NeTsB75QyFzXmSo5v": 5300,
     "Ghz7Q3Z5hV1eHDfzsNX6DbaB5f8q1K7xTopKuDChUszR": 10000,
     "GhzaEFXnoQjJy2zJpLHLM3LpWXkJnfyAPucjKBHNjcPX": 10000,
     "Gi5cYgk9hybc7ApwtdYD21WaB7rKGkTKR3eskd4JsSCd": 25000,
-    "Gi5kVGJegbfQhcV4gSevyyh2LwFDnFMmZcGzPEYscvSC": 3700,
+    "Gi5kVGJegbfQhcV4gSevyyh2LwFDnFMmZcGzPEYscvSC": 2800,
     "Gi68Ug26ySAFjubcZdRSNF3U6koTTVzED7boShNMF2Zc": 630,
     "Gi7qLNRaxsKk2KykND3E2BQHRbpzJ9wAapnqEQSqNnVw": 2300,
     "GiArRYE4tGkoRk2Q1cnVhoXAppX81x42odPVx5mvj7rt": 120000,
@@ -232818,7 +237850,9 @@
     "GiDmeqxwpyPjhpiapfcRJjS8n88eNHCwXJ4hjVMwLBqk": 8900,
     "GiEWaTDBxSxBZ66xqebFeLeKE9cSX4Hyc7zgXVDJAHHx": 7163,
     "GiLfo8iHqcEQayNS3ibXvz6uQ2BkGdQ5n8p5PbSgaWNR": 18879,
+    "GiMoB5JRVqvRBdnjNtTWkC3SyiA45ComRYacuwFD4cRc": 2000,
     "GiQPiZcL6zrbtscxsiKvsgmxbcVjsGkz6B9WyR1T3M2Y": 15100,
+    "GiSn2wzCHVfRJM31zBkHF1geWPoBNuX7vUUQo8eoKWu1": 1500,
     "GiVXCtg72gKbpwPH34Gbk4yMpKGXq9AStxNnwUBLS15L": 1000,
     "Giacohm6YmSqocpmX7SgHaUmqcdqDoe6efu4Y2ErRPPm": 10350,
     "Gib4UBovXGv5FhyPtVy8Uq7u7A95oY4cmxqejmVFqUAi": 1000,
@@ -232826,7 +237860,7 @@
     "Gie2RWAxPZ9rKovvhUjiQRtkPEgXr4ZXMX1B6BAgfhDd": 5000,
     "GisfHW2x3MSMcggFXZ8297LMUeax2tLdFi1tqejarr1p": 5000,
     "GitZPAcwc4XeDj6uqStEmf65MGZErAZmYRbJZoQvsX2n": 8900,
-    "GiwPNbD4n6WX2bqAqHxy1ngD9WDWpWJ5tWdQjppSRGmi": 7141,
+    "GiwPNbD4n6WX2bqAqHxy1ngD9WDWpWJ5tWdQjppSRGmi": 51741,
     "GixKgLdd3Rpt58jFBLTBanmQF6qWhGryDvYyQkYs6zgP": 1500,
     "GixLDdb7rXeFe9s9cDSoMk21hPW1Vgzi9NdjpF1Mi5dk": 60000,
     "Gj535Ar8P17ZXC7Z1Vd41A5iXQwb14XoPTR9jXBQd6wu": 5000,
@@ -232837,7 +237871,8 @@
     "GjJ6EJHuiwVHSXVBpSnxMFsVeRfVvAgjSLtNXNe2joef": 6388,
     "GjLBYJszwqSgghJ4vuDfVmK31QUb3rbKHkn6Rp4ExGi3": 2000,
     "GjS5c3XkW2rv96FwmQ2AHW2FCX5B1EPCrAafj28uX17H": 1161,
-    "GjXdDsByC6SfidwgqPeF1WR8cF12VpcqQiXyg3RKafkk": 4768,
+    "GjTryq4RWi4Tr9EH8sEMvb1rdrnnKLbePUquszrpLEEf": 50000,
+    "GjXdDsByC6SfidwgqPeF1WR8cF12VpcqQiXyg3RKafkk": 4268,
     "GjaZDmBiT86wPAchwLwq6eMvGfgmkaeg1o2XMVffUUye": 7900,
     "GjcWTf32Yk8sZHYtK8aPiAFpdkVbb3LJB4S2PqJ9kv7T": 2000,
     "GjcmDYfzWusDT1Jw3B7MQkasXv52esBCnayoUyCNtYG3": 500,
@@ -232852,6 +237887,7 @@
     "GkHYfMeyLPPUdMgDzTqGemcHChgwBFNubQkfEVMYudf4": 7000,
     "GkJHmDSSmbXGozQEkkHrWM6pedCkcEGYJbVmT28iGUQv": 5000,
     "GkKYk4VQLqf6JZeh2SEoZufHEYRWkLssnB27w1XCccSY": 14500,
+    "GkLoLeDPSma3eDk44nfoHqj6N3m8sJYbDrkRW3EXeYgR": 100,
     "GkS7sPDvcnWeKmVfheKyRGG41S72hANT6FDpo9PuEUyr": 20000,
     "GkTCiZtVcCsXCJ8nnGsAhpBR4ZordM6Z6Hw4ut83aMgt": 1011,
     "GkTTmL5zt49xju4LNNt85xtRUwvAJJKkzvfP2fB7Teyj": 1000,
@@ -232865,7 +237901,7 @@
     "GkgQr3GA99KvozVQwt5rwgNtPgYuY7ZqTLJKkHswu56h": 9000,
     "GkiDDQx84Vmbo7VZUmpsXAZ7GFQEKW6j4gec7HFSQ5G3": 657200,
     "Gkjj3fbD3NykLxi3mYiqVuEXv2k4kcSdsrsjjwDZd7nq": 1212813,
-    "Gkk91BdgfQ9e6VFFCxhwU6VQqNMf29ULjAvAPkXJTumE": 5340,
+    "Gkk91BdgfQ9e6VFFCxhwU6VQqNMf29ULjAvAPkXJTumE": 7476,
     "GkqbBJfu5KgEJQwUSMd4vUvSrkHz98R95ogXeEVxxckP": 100,
     "GksEiR7zgzNENfby9NgqY8wnfCMiaaKKLVGC2aszEjwy": 1500,
     "GksmPgWrcLhK8ZAaxZQoEKYapuGGBXEVpmJSesk2mqSq": 7000,
@@ -232889,10 +237925,11 @@
     "Gmw1XP5PWt8VDMMRP3jmBgVxhQZmFUujrFxrcYoSvito": 5000,
     "Gn4xDgtNnduHRBXjBj3QMXD5aX3q49mvz5yRy9yDue5V": 10000,
     "Gn6vMKTwwi3jZwJicraXRW8ua5r7KjowF7sZcRTE3hZ6": 4000,
-    "Gn8aqkWm9FMaMummcu2e8B3ETy1DNd7gUSEEFGWNMmKk": 102558,
+    "Gn8aqkWm9FMaMummcu2e8B3ETy1DNd7gUSEEFGWNMmKk": 122558,
     "Gn956Gze2CJAs9QAHFzbM99TdFWmoXncsnrVVFSTUtaY": 30000,
     "GnC89hTs9CK5BVDbytatpBzsYMQyjEZ4dHQrWHEsGYPX": 100,
     "GnF5GShHNjfUiC1uZe1L42akaz4e7WzuwBmbdaFtSUjg": 12000,
+    "GnKc44pND15iLkQxWcxMaUH2ywBUeb7h36cY5kyUbaG9": 7200,
     "GnPNbZ2syE6JuHnBbPSDpiddBxqjvihaFKMDkSetrWP6": 5000,
     "GnPsHWVHLx5UK4PTkuFVAJ2DUocMimJrPiBsjJ8kHjS6": 4000,
     "GnR6Bc4d1FS1fEsza6AGzJPT4HEBUfXMdxWKhsBf5VjE": 34500,
@@ -232905,14 +237942,14 @@
     "GnrVsegwHq3UR4DS9TattdLS9BgiccCeYVpk4XZ99H35": 67400,
     "GnrnCA8VRg3beK15gfY45jkWckBxQz75hZrX9jmtzDQ2": 11000,
     "GnvwiAafpoVXJPR8aS8mHcex1ZhzHicUL1bvyRRqsaCU": 3600,
-    "GnwJejboPcxQUva1MsroQWqrujuJkq5RciHvF553miQL": 37500,
-    "GnwV5twekDuVCdL8xHNz4sYwggP22Hn1ArT5Wn2mD6Qx": 411550,
-    "Go5Q6nHGFmgFxgvxmS65MxedHmVNcVFiRXhrFUFcvZNx": 29800,
+    "GnwJejboPcxQUva1MsroQWqrujuJkq5RciHvF553miQL": 30200,
+    "GnwV5twekDuVCdL8xHNz4sYwggP22Hn1ArT5Wn2mD6Qx": 731550,
+    "Go5Q6nHGFmgFxgvxmS65MxedHmVNcVFiRXhrFUFcvZNx": 5300,
     "Go8Rg97ba16a9TFLhpiYYxGvbNk4fpvyQkmSHKFAqNKu": 30000,
     "GoA7GYbc16dYP1774YaShdp6XQNEhHwFT8y7JDV7E41q": 142884,
     "GoCf9ZVwwzcVrtGCcxrgcRQSojCFQHXeS1u2VkyLeSzv": 43241,
     "GoCpt4z4Wqdy8VuL5h2ycRWyUKULnuAegqS5DC2wJ1tP": 1800,
-    "GoDCPiVMVeSgaVGWHr4rzu8vuw5CY9JHbnwM7L5jAMv7": 4000,
+    "GoDCPiVMVeSgaVGWHr4rzu8vuw5CY9JHbnwM7L5jAMv7": 24000,
     "GoLHLKyBQCqHbs6yfSJ8zPGMi1MKaRgQ1nW1XuWac6Fv": 10000,
     "GoNqrBXmKNCunyZXA973bpsTEBN8NQk5q6nnvhu4yyES": 2200,
     "GoQTLkSFZ22ftEFS3CWpJiW41QyFCr3zvDyspgZHaqNb": 30000,
@@ -232930,7 +237967,7 @@
     "Gp8GKERpEmiEx2ho3dqhJMTDrapgug8mfdyAPgTtcfMV": 10000,
     "GpAC81sFKACV1tA4uyfM3RmqM5C2XJs8bQ83MJxtzReo": 41000,
     "GpBK3pK1jBDyks6L7raNhH6uYq3gtmpBV3gNQviQEvat": 8105,
-    "GpQgZLkK8UVHjdtT7rs7koRfLpYDoRDanLbeSbjPqfej": 10754,
+    "GpQgZLkK8UVHjdtT7rs7koRfLpYDoRDanLbeSbjPqfej": 38265,
     "GpR2nRdJmRDE2DFn8b2vzQTCHJPuxMTRcyPhoURkBmNn": 12000,
     "GpRGNdNGT2nBfoFA9PfZBWuopyusWSf7vNQPk4NhvCH7": 10000,
     "GpZ32GnTg29o3icR2kpEBB2sjNPFKXwU2QfGyZV5yDoY": 10000,
@@ -232964,11 +238001,11 @@
     "GqrmnwvDfUivmc4CLBvSPE2bYyX3LdcUEaaqMGmPAB2j": 2300,
     "GqtQHem938CHiKz7HhrBSn2KMYoHYGM8Gy9MvoHQZM2C": 2292,
     "GqxU9tmniTD8wUuKonD9CrXN6FPjvtKTf9Nc5mK2SiQM": 1023,
-    "GqxgCrZXiS2iP7GKxQM57DqSqZvuhHyPF6aUyJvEBCGV": 14600,
+    "GqxgCrZXiS2iP7GKxQM57DqSqZvuhHyPF6aUyJvEBCGV": 13600,
     "GqyJRXbw5gCYW7aBiEMGADJYYK1Xgwza5v2UBGVYLeGv": 1000,
     "GqzyX2LE91M7ihXwwfQtUBsus89KzwHMW8zCCDnyBsLc": 1032,
     "Gr6mJKkTkxgDiDA2DaXF45bTorWo1oRpLZvWVQTxYN9x": 10100,
-    "GrBBDg9G6zYEBXE6uuLvdvB6iERBhkLMqaEiS5vKqhir": 8000,
+    "GrBBDg9G6zYEBXE6uuLvdvB6iERBhkLMqaEiS5vKqhir": 28000,
     "GrFAzBvAcCGdznd2qVkA45TNCzyqpJp4mPZzN8xtdmUz": 973,
     "GrJ9GVave7hPxSTbqzd89nFsFGoPci7VYvQTM599mSXz": 5000,
     "GrJnJu2cGN2579FzqmPSde9QvuXTfJcyjUFTJdXgT4zu": 100000,
@@ -232978,7 +238015,7 @@
     "GrV3S2Apxba4C93WPkiCbZuGr4S8HwHpoppt5JQM36uR": 6500,
     "GrYNma3uLYQ37738ZvKfoMb3RbJs6zwGavzuy9CZrNBi": 7000,
     "Grc7rWxf7aqDeYGSBHEPFBASXFCZbL3GsFg27eL8WDhj": 2000,
-    "GrdAZKBotBvaxn3QJYcvnRzkyDTmVCiv6d9Q9gTcCgFx": 800,
+    "GrdAZKBotBvaxn3QJYcvnRzkyDTmVCiv6d9Q9gTcCgFx": 801,
     "GrfXP9zLp2Y41RfbXkqhsnF2TotPUADDt45gkG1PDjN7": 170000,
     "GrhSYDj6QY3xZ6R4MXeDhEvDg7tDnDEvZai6TTrKR7o4": 20252,
     "GroCduWZKMV1N5XCnYreSievYkaamCvbLWWPWBFq8pgp": 3000,
@@ -232992,7 +238029,8 @@
     "Gs4AcZwCia2kkvvv6AxZhjncVtDQAzEdYufAJSisAYM1": 10000,
     "GsCsQ3zzrbBoGSHhLWR5jyaS7qxhUNmhv9tDH4F4wXqv": 100,
     "GsFxD2TM4weeBFB5pVU4WY6tB7rhczt9KLs9deUmPekA": 380330,
-    "GsR49DLrhVXiCaieenv3hddMc4B6pdFpDm48aSagdhSZ": 109995,
+    "GsQcaYFWG9dPA2WUG7idQDVVVic6PKR3jEpdN9R7fXKR": 5000,
+    "GsR49DLrhVXiCaieenv3hddMc4B6pdFpDm48aSagdhSZ": 238390,
     "GsVhUZhxJAapMpe82iLnh2BLzSdY1rujDrq2uUeTZUB": 1000,
     "GsYPCgETsMz8C662qnT5EtN2TkBSVrZfUdadD3Yf8hdF": 1000,
     "GsZNTK3bLuX2CZLkP6wGRZPSxNdavxtjLpNxGV8QTnp8": 100,
@@ -233027,7 +238065,7 @@
     "Gu1cFcrkFdsABA6xZFnWyxKZbCDDA5rgiNhsLi7ZX6M7": 83000,
     "Gu4VMJf9YezyYDdTdfZKAJh5SNRMetgvF9VBLqvFvQwq": 2850,
     "Gu4ncE3jiFyK25UeRCxFCEW3n1y6G7YczZN8uSyLXhpU": 4000,
-    "Gu9V3hpTLxebiP2wCLEtJjHs8cSCwMRCswRLDERFjh3C": 83400,
+    "Gu9V3hpTLxebiP2wCLEtJjHs8cSCwMRCswRLDERFjh3C": 47700,
     "GuEJJjDCuw5xxuh1faot42zmrwdWUjbpXHVvkpyD1BjM": 4000,
     "GuFcimcwFZbXXofrdiP7JHGFBTsZyuo3u8q5CkgYyb7a": 13498,
     "GuLsDwF5Ff6ArhXbjB41UZsRvDMMNgBUJ3hsx7873BfY": 9200,
@@ -233063,6 +238101,7 @@
     "GvrWCcyCbasju8UhunnEJQV48vX5sv6VDoqbEKP6kogx": 100100,
     "GvroVWpcaZeWqa96BcMm4WHBeMJZAxhv1BX3Ag1LmqoD": 29259,
     "GvyLPUBjFWRkujQuwhyn5LANYBcrNZ1nnzziMVBEBa5b": 5000,
+    "GvzopQk4gupiVn8ejAmBnmPrxRRrcSfFnu2CdyqhdrGu": 3800,
     "Gw2x4qm8rFfXBhQgogjmpSRM2fLTfwfYKBtKWF45UDwz": 50000,
     "Gw3nbxejcAwbPJuhJD5g5bY4AK3TcrFc6KNjhoX92uUh": 11000,
     "Gw5MvbiCJHdHDyWMiLekpkQAAyehrwiVL3LXDe5Mrf8M": 5160,
@@ -233076,9 +238115,11 @@
     "GwUwqAs6TdYBN9KExvySWweg3iq1gk7buhRh96L52Gdw": 16500,
     "GwePVmaY18YzuYnqk4sL11mnXGLwfknu2Mi1TY7rGsrB": 63500,
     "GweTtL4RBdres1xnuZ3oFAS4kKSWt84fXuAaAjBDXe7R": 11000,
+    "GwhvskhBj6B6JYQLo3E9S97PFfL6gw3LgmYG1cTsjQkF": 10000,
     "Gwi1EovsLP61fGcz4T6dfDz8uzAjpMtrccqG6RoaWK17": 1004,
     "GwkjVYNW9ok8qQw8wDZQ8h597akQ7MrdQUT1k6mwUJ15": 2100,
     "GwxEzVk5UEU1o7TePSYsGVYD5BdLRFK9bmpTjSBF6Yjo": 1200,
+    "Gx2WA5RisRKk2KefvuvWQ45BuBDrf791LQJUFFr9VkYi": 5000,
     "GxA2GWWgWduAmAtGpR1FfB2C9b9Y9KKr6gJJQynmnsnp": 2022,
     "GxLhRDaHrFYTUxQ2TC8UdrMrBQctu5vWjkzKSEaUyFc7": 333932,
     "GxNg7eCqw4oSSE5xJaRTvAmXAtmWmuqR7CxHGz5EKLWN": 800,
@@ -233108,6 +238149,7 @@
     "GyRvAbN78rvP68tJEbcWftfmeyKsVmzf8ZV6eUdbBtww": 10200,
     "GyTqPahPma4RhPVTQs1PGxVPhv88s4ZnNsfLBuNpLE2c": 6024,
     "GyX8FNMCWvRtEJMmNyrax2wRMKVG1hDgKCKnvGgC2bqw": 400,
+    "GyXoEDqJy1WSWjgXkW64FSNvvtKBF4S6sXMdpigKBdxc": 30000,
     "GyY1N1gDeCPJxGGuK7GBq4DeYWeXAFJmhVDCdLum23gX": 200,
     "GyYep8DEbqETAZG6iRpSV9XL9J1FUU26KUjhyDTT3mqW": 5000,
     "Gyf1mhQKboqoRZhhiAUMDCy4sHw5r7YgA88gzPG21zi6": 65180,
@@ -233132,6 +238174,7 @@
     "GzcywkC9G1jTQqcshnKVrEKhbVE95QAVtWBPTL9EYRGR": 10000,
     "Gzcz4b3t4eDqscW6ym1LCo6C1N8L3fyF56B9s4cMM4zf": 10000,
     "GzgM8kEGpP9Js9fcXw9nyyVajS9ntymmUtqYs6XjzMpu": 2032,
+    "Gzgf3Bu81HV1svVfQZM3uVPDhocGVPqB3BYuDjmKg46v": 12816,
     "Gzig5ig7RJ48FMuZawYQBVv98BLDCUHe6dnXWhTWMd6c": 34500,
     "GzogTAuuuiNyspqNBKyLy2QJy9NZyT4sMS5rCs4Y1Uac": 2000,
     "GzreK7pVsq4i5hVu3JZb9vCFzBinEgBUVo4vMFWUANXK": 8000,
@@ -233152,19 +238195,18 @@
     "H1C7pTAMNLyCxbvADvv87MVfvPWL3rygpSDG7Ka6o5v9": 155800,
     "H1ERxHEXceM4yC8HhSJNUxLRTAiSW3gFpzPQ3GZ9kWRQ": 1000,
     "H1Efef7z8TMy3bGvoDp9cdXXtJiSGzKEqJ59LLY7cgqQ": 5000,
-    "H1FFFwt7sbHohxWggoYYZD5CmRpVYVuTbRztdRBH8Bgi": 2600,
     "H1NHZLpUAheLyJM1oomSZRSMK5eSbbKxMwh65e5LCB4": 29500,
     "H1RjQPhKE8NQsnuMPB5YP2osmENLdnNZzGY1xHLqJp6p": 5500,
     "H1SEBhpVxw46sxWVa6pJNimfffdEH4mT7XYGoSS77Shy": 4000,
     "H1SMVHX28o8eCagC3Ku2v8CbjXR1g7uzcjxFY6E8oGQL": 1011,
     "H1VmctEPFMD5iG6mbuaWRVdLYV28Q7Tnwr1cxVxmLPP9": 10000,
     "H1a9d2iAVEkcjnSfUP3ggcnWCTVXeDXPt11m8bpAyHsX": 25000,
+    "H1buU9bnXWRaJEXut8vWw77kY9zZqm3Frmrz1XHV82i4": 20500,
     "H1ggWJJhi6b2EurJpUfmLiugu8Jks9VwziA2UAbsPWfz": 3000,
     "H1gooQHLEgrikaF5DMH34e11H8dkNAY1oxjQAdBpbeMR": 14000,
     "H1hzNRScP7UWizf3FL58r56yo5uiE3e75vp78QLQKDCv": 6000,
     "H1jDptvBETsUpqkZdogvWxCpy69bhXW1R5AyNWZGWAhe": 14000,
-    "H1jUuyBVGJVdQ4u6XoF8oqq3ZJe8Xjy3gxaquM31kvPr": 33100,
-    "H1jdzs954Usm8WibEDrub7htdHMSoBHFNsSQECMd5cYf": 1000,
+    "H1jUuyBVGJVdQ4u6XoF8oqq3ZJe8Xjy3gxaquM31kvPr": 498,
     "H1kAAJfbkDPVNDjG5wAXq3iuTXVsLzsoUwgbzrosxfA8": 1609,
     "H1kSwGNxq8kdd2CYxhkQTCmc1GqgPEr9mGHnzLSSzsLb": 10200,
     "H1nDi5bJijqrowiqV9WYbsMCfR1m2PdQBpK3hnwzVnUF": 50000,
@@ -233178,27 +238220,27 @@
     "H2HsNmPmw5KVTithNgSwJuHgdrHsZiSHStgCWkyzfAC2": 11166,
     "H2L4dzVTadRYUVvr6DYLFLdWQxA7NW7T659pTW8Se7ZL": 17000,
     "H2MqwHasq4dMRnQpW9N6ny7xNNo2nvjcDVFqbhQiGB4d": 5000,
-    "H2Sxh2PLeb5ehQzKZcVM8hSkFGg9iyatCTXDQQ33kzDL": 20680,
     "H2ZG8GrEYpMQi84wURXyHoj3yGFqjcdnh45k6GJEQ4qr": 5000,
     "H2ew7UHmbZA5dKLK2wztZxK1tFcxqQhWc6cTz2TmFcg3": 100,
     "H2gDaNT4DmTwvBnR7JRJ2nzVt1GgrR6G3XutyX36aC4Y": 10000,
     "H2gq7m27FpwwtuowdLHZ6NqN1W2zcmBnYwpAda8jNgPQ": 500,
     "H2iwX4LYqWoxay1xfjcxW7AA1TQh4zseejhtBcAK3nNy": 500,
     "H2pgaSGNza5dsY39do9thaxzryzcXvspd4i9RXXuAy69": 4400,
-    "H2qFbEfr5e7xw2kVFHmDJBdQxknGoyGSsDQ8S82PUFNK": 171300,
+    "H2qFbEfr5e7xw2kVFHmDJBdQxknGoyGSsDQ8S82PUFNK": 349960,
     "H2qcPhaBC2Sfsp1m8i4p2dFMHUdWzA2SBqkEXpym1FLt": 1051,
     "H2tehgfhPwwi8nJMTbvQ3MSSgJiY1AQDGfVat7M5f6JB": 1004,
     "H2xVktjM76T5U5euRXAzztyPcPQUXKtXPeMgwMjRw4Kh": 27400,
     "H2yqUQJkGQBBiG32yHJLevFkBriHP9pTFtFf1AKZ1Me7": 200,
     "H35xYGsEGwrgGtiaMXRSAyrkYVug1QSdyu6S4yd5r4nU": 11190,
     "H37f2yr3Ukx7zvkfpLVeYqqR4h1zHuUHVwQtAaC5C6K4": 65000,
-    "H39ToZmE4jGdHxvTpL1sJmySB7tDKU1x7DQWpicoL2Pk": 190284,
+    "H39ToZmE4jGdHxvTpL1sJmySB7tDKU1x7DQWpicoL2Pk": 326134,
     "H39Z5WX4n4pzA2pibGDmJHMUWjCm4ohThP4WX926H9dB": 3000,
-    "H3AFNppLgy5S1eq1BQS6o1vHvR26xPBQ5VDZg39hw5Eg": 2305489,
+    "H3AFNppLgy5S1eq1BQS6o1vHvR26xPBQ5VDZg39hw5Eg": 2338133,
     "H3MwN513LBaFCFcps8pNkg3Dk9zbvL2RiLX6r5WoiEbC": 14531,
     "H3Q9c17xUQtGMbitEVMDaW5i9A2k3wNTJpf7RGay3fsa": 89900,
     "H3QUC5Ceyn4vjdY3QVnV9R46DZQfFp16GqQ5CvsdUUNk": 21680,
     "H3U8Np6NnJ7m9QooGZMry5yo71gi2MDXoiB9o9ExFDMR": 2400,
+    "H3c8iZpb51iKSzrxVy79NKbEH4T93vmQg3GMcrdHac4W": 21000,
     "H3g1FkfnfQ6GTxJtWXGxJ5n7R9vfQ3kwcmFDzW5YixtR": 5055,
     "H3is46BwXcTeN3eHCWSYwn2cV47tkgcJXtg3o53wwpas": 10000,
     "H3mmou6hpRzrAptVWek1y3ydZveMoZSSfwkK65XiWN37": 1900,
@@ -233211,6 +238253,7 @@
     "H45oiG51JTRwzYVEBt2YJWKRpwmwHbDtQ9ny4iyoKrb5": 8000,
     "H4DPDe7zyztJtc9gMdo1EixcZYBgVj8pYWEvkxfKoZu1": 1011,
     "H4FPZDBCsmgwgCJki4rifPCviCymdZMqTWYqSHRqg4GW": 13068,
+    "H4PEEYqFYQZWmQ5U19XYjTfvdzr1pCQAkbmBEkYJvoPD": 5100,
     "H4Thxn1QasuQPkPuCctuCTwYP1SRxh4iFJXTpKxMviY2": 41295,
     "H4W8sMUQHSB3ApvmfxkAU9Ckkp2bEQmat8T32gEYJ7kt": 11600,
     "H4WCVZ3mE9hmwKabq4btCwhMgsMv1L4x1kAWNXJDWPzm": 4600,
@@ -233218,6 +238261,7 @@
     "H4YP3jGdZfdDLEuffesSoSKhrgFXjo6okibAj7rLcbvr": 400,
     "H4Ysm3BN1BK4V27BrvFgTCcRfJXpuF2DFCDTaxGeR8uy": 1040,
     "H4ZgPkNFyfjg71XK82qdWkqkhxom6PFcV6G1PckrRzaq": 3500,
+    "H4c9bz8pEmDJefjJTigSWD1vFcF1MMJ3SXcHhdp3WmuG": 5000,
     "H4kXPPCJ28igPF9F5Ys1W3HXfa4d4jn5Mfr59FNTGchx": 51963,
     "H4qTfjAdsNLS5Ly7mrKbDayD8G34QUJFvww1P6rPYFxx": 15032,
     "H4qvSzxisB87oGnkKz2W7WEeNofksm7bjZJjHp9xrHoo": 15000,
@@ -233230,6 +238274,7 @@
     "H5Cu2pZ3GcL5uTW9mZKxH7M5Ew6WAgyLc3bP3Xc412LU": 200,
     "H5EFQohh3Uc7Gs2DTYRUyRF7VFkoVbmVggv6E6wqmdf7": 7000,
     "H5F4TtXKk99bK8FMXr98LgYZkqHJ1ZCmgF8qEwTn9nuE": 20592,
+    "H5FCazTknQ2ULQ19fb14FeJrfsPKbnJ8jqL8kYp4A4Ga": 9748,
     "H5FVuWZD6MzF4y4M2BbFrVKLhJeuBytNqnY6s3LWepdV": 10680,
     "H5SR8pSx4toKzqJCBW5qHvzchbkwMc9qaqMxdZ6DSzQu": 1000,
     "H5XTakbTtPUtd7JMfPNBr3gXbhWRxTnxibm4FvPqtqiU": 2000,
@@ -233238,7 +238283,7 @@
     "H69FW1hXsSGup1WiGhsDxY9kchT3vRrhpa46UnqanFj": 24300,
     "H69oBjBmnDZskg4stHSfQktUpHJo78FENkjLWEHHSXHp": 3100,
     "H6Dz2T4vdTo2bRum7XCTQEjUfezwPsQ8vPX97qDc5nPC": 1000,
-    "H6GzszJEg5bn7thE5rBmnaYha269ZMxhAszfe7YMCBTQ": 176492,
+    "H6GzszJEg5bn7thE5rBmnaYha269ZMxhAszfe7YMCBTQ": 192882,
     "H6S7qL2M1U8X7V1yW7m9UCykvVUUixsWYV4x9dptttw": 91406,
     "H6UKsgtXJbtAdzMdrvRw2VzJs12Dfdx8TT9C47qKPJmp": 1000,
     "H6dktRygmNC616QD9nBXhcTfWtLriteqdX33YXgDu8rN": 614,
@@ -233256,7 +238301,7 @@
     "H7LKYQYSrH18fp1Uh5RNaSwKzozHa6kqA3EQqYUvfKua": 50000,
     "H7QquadKFhhbUgSFqU4fwPK3hq2YnVS4sBgoREq3EZnA": 84040,
     "H7R8gXKX2Re84QnP6QLpeodikMPnJN1MXbXc5gL2NEXy": 780,
-    "H7VwNRuk9MvW9nScp2zMeDcArPsiSuxTk5NJcd8fzSur": 83286,
+    "H7VwNRuk9MvW9nScp2zMeDcArPsiSuxTk5NJcd8fzSur": 93286,
     "H7WXoZfp3a7t86WMLc7PQziXc3FK5JoVn4w8D8rkT7Kn": 40000,
     "H7WdT8j2bnNqpyyFNCMEDahpZfdscuv685XT5SRq1m18": 2800,
     "H7dY997FNLmhVs6QFPkHE4qLGSYjgq7PdQNH1e6tFT2o": 30500,
@@ -233274,15 +238319,17 @@
     "H8T5w4tw1YDdDf1BVNHJmCjLH8Y42oJWHPTbuNfHJiTr": 1500,
     "H8WWjTDPR6TyXJYrok8rJeXTSMbg3qi5YJJunpbdfKvM": 9000,
     "H8XcdQhtLKKLy3j44fkmSsQEimjwJFyVqP2MpnA8PoRa": 70200,
+    "H8YNwyvk7a25jLuZhUP2NfFE9hTTKUHDE7E1je2PK6Bz": 1000,
     "H8afbAJgQtRndLg7p58YRkfM4PkHwVrUTm7Z7itMycrH": 2000,
     "H8cpHuUud3v4MJgGybteFQ3XGcCthcyXnvEVRBBmLBc5": 110400,
     "H8cqffB52awfiRQ8DEGnDyPVbo6U6eqj5URQ5RsEcMME": 3900,
     "H8i7QsTWac3ZguNBYoVdPWwKJNeh4t3UGKSwH2QCPnGi": 9531,
     "H8ikr6tAhWNzkbS2BQnr7Ce5Q5bod49vkW7D9VD3b34X": 49000,
+    "H8m2tyTPdnjog2AhmQtkTJuTJvwX8VNg9XDYdCCsGLvs": 417580,
     "H8o1jHVb2PonQ5nQVrLpsHauaiW9G1F52zXrXPR645zs": 1522,
     "H8ry1vKH3CTk58vcUnax5rApNGj1T9iSV3wqeuyYjsVk": 16700,
-    "H8sk9M6Pgiu5F5PB2BUgLCVF43AXfrSJZWLcJciaxvu5": 5000,
-    "H8uD6EnDNeKEEnhah2jZto59Lhg3GZRGFUdWQudsftqS": 309289,
+    "H8sk9M6Pgiu5F5PB2BUgLCVF43AXfrSJZWLcJciaxvu5": 7500,
+    "H8uD6EnDNeKEEnhah2jZto59Lhg3GZRGFUdWQudsftqS": 936869,
     "H8vfqm8vo6y6XxsaTPfU2LRigrDs91iD8KY1VnWacrDW": 45000,
     "H92iybaSSg5CMezNATGLwcDGigMv4pwotA46NAhw1AM5": 7500,
     "H93rWvDkhWcYkTfHcZiqDrZCGoUxYeyCGNiNQDyP5eUk": 200,
@@ -233298,17 +238345,18 @@
     "H9cV1mBLncHbqZuFB6jPrA6tY6PTHzGmfGydHqgP7smM": 800,
     "H9d6c4aGDs3U8B5VdRaJ91ro96wzqYCxtsbLNMeZGCzG": 2200,
     "H9dfmPQRPLhuVUUawuu4xrTM1myhhGG16dAC3orqFbTV": 14500,
-    "H9hjJ1wmZDbHxXnCPdjxZNYVapb9BEEGhqjPQAp9cPhF": 15000,
-    "H9kDy68SMfwzVbh6p1wjkyHEw9Yx6XJ6ZdNGHz9ax4vh": 213400,
+    "H9hjJ1wmZDbHxXnCPdjxZNYVapb9BEEGhqjPQAp9cPhF": 23000,
+    "H9kDy68SMfwzVbh6p1wjkyHEw9Yx6XJ6ZdNGHz9ax4vh": 198400,
     "H9reLW2bjFytQuvGAVzNcoANaKhoCNsteLH9nJKxViY2": 28000,
     "H9x5cq69MXn9DFnB71gN9MBJAmYQan9AU7zo1ktx6ZBX": 10000,
-    "H9xq1jTPapaaLsdR37hbFVA16BLYB6JXKwhD1anmzDbA": 45000,
+    "H9xq1jTPapaaLsdR37hbFVA16BLYB6JXKwhD1anmzDbA": 101100,
     "HA2NAGVzv3GX2iwPgKqRYNCpZapbn28MTtL6yis2sii3": 9900,
     "HA2yZfTYfYx9fG6UVN7vbaeELJyFAitwHmWdNyRpT8fi": 100,
     "HA9nUdADnqbGdUiDB5xNX7v7fmmnEcuu9zRimzromeS9": 36800,
     "HADoGTxvqSgEtC2QfG62Y94sEYUXxQcJqnspyT3nQ87w": 1000,
     "HAEn8XrScu5wHgAewQxo31ua7hNnJHfDph95xXJnfsHs": 26677,
-    "HAGaAbav5m1mkgsDj5x9zNEQd9b5eANxeN7f3Hpu4emU": 33000,
+    "HAGaAbav5m1mkgsDj5x9zNEQd9b5eANxeN7f3Hpu4emU": 54500,
+    "HAHfEjf658u5aWfBvURbcm1HQvT5n6f5Gf6utPeXDHLM": 10000,
     "HAJGhdoLhm7oupBoznR81cNCpJ2rhSRZYx9Q5kPMJEXK": 612,
     "HARHAAsq9LovQGwtkp1FqJFDFYzQMiFZTtAqJchiv9LR": 1000,
     "HAWHf1ksMinaYVkgo8xiFmiXu4ofAJ5oefV7fHLqWa88": 200,
@@ -233317,10 +238365,11 @@
     "HAcyQgWz9yDqXcShMgrFtGxqGVwSJYDZALgFvdeFm2vp": 59400,
     "HAfw6iEYfzLiZmgbrN9AhadxVDxNmcYEt1wwiwNvjizj": 4000,
     "HAgnfEfpiquxDFA7LkiMzvWxcmkM4VTbTheCjc7iqCwY": 1000,
+    "HAkCFoDyA42zJMHwe567Z7brJg1s2yz8cd3ecrpvNMWR": 5000,
     "HAr9FnP1TEFJ5cRk9anPKf9d2cj47ShsBuC1DG1TXSFC": 26799,
-    "HAuJZu4jWyjKGbSrXnkZui4zEhVDdfrosQLZN38ecgi9": 9510,
+    "HAuJZu4jWyjKGbSrXnkZui4zEhVDdfrosQLZN38ecgi9": 12344,
     "HAunJc5NBGotSvHvQhNtyv2Et1PxKXu4xLLaFbXnCqeP": 5000,
-    "HAuvVBW2hzJD9XT1sz4JW3jqeHk7fHzS5iccSqsbNc7F": 52400,
+    "HAuvVBW2hzJD9XT1sz4JW3jqeHk7fHzS5iccSqsbNc7F": 48300,
     "HAvA5j7k4gevqhZa1uSeALF4A9xLeRK7hbm3FFS1s4RB": 138000,
     "HAviUC1XvDv22RQ5eXcfDcvocu3eZTAxkYsJfNoMNRGm": 1600,
     "HAw5nRPfejykXU6VMRokTY31j3Arn3FFPehpdiK7ehzf": 5000,
@@ -233344,24 +238393,24 @@
     "HBk16L5rGZQbzPiQRkAQFMmFN8qnEPBeFZGoPdyWcAC5": 3000,
     "HBkK8wwoV1KB8pAnaf3mFV8z3e5fuiWMqyNNeRLEXDe": 100,
     "HBnfBwbzHrwBno9oGMCjbaEivv1gDNVQLYGAkatPSr4x": 9800,
-    "HBr4YmDN6YUsCgLoPZnAMjx1NnmZmdXPfAMFQcJopaoc": 687751,
+    "HBr4YmDN6YUsCgLoPZnAMjx1NnmZmdXPfAMFQcJopaoc": 758251,
     "HBubnrzY9wUQYmSKZwzTb8fbyrwMdhGxU7zYEdF4b1kh": 1032,
     "HByT1oeJkDrh73iXbY5s8WPLpmG6ZZRu436SesTrryKW": 18000,
     "HC21CGvYR1yYUMi3W2fjNHs6HKdgRuTXMzEUYQvM58fv": 2000,
     "HC5V9ubxKciDU3f1Dpfov853kEpTEjf5p9FXxShDftpS": 2000,
     "HC87VVDNPo7d1YSdxPS9YEZezF1knbNMG6FjkoyWUahw": 10000,
     "HCBBFBfEymDhQaH8gTTeVREWqjUnT13fjZZaBEyuNNZr": 10000,
-    "HCDicXkmG99CoVKGqrzCkN7zeE5SUbJP4DEbj1xDc48F": 42200,
+    "HCDicXkmG99CoVKGqrzCkN7zeE5SUbJP4DEbj1xDc48F": 55200,
     "HCH2i9AYJ7EbGxaPsLzfMq9acQ7j759m4f8Ce7PH1er4": 2136,
     "HCLeYp5ncviRwZuuJpAsGeS3ey4HsubCSqL6v64YRco8": 3204,
     "HCTewQVBPNc15yiGYa4d3bDsQruvL6oZqYEMiWtpgJrQ": 5000,
     "HCTvjHBfut1zvXUfpB9tgM9N9Ltbj6EC7Lbvh8FWuHur": 500,
+    "HCVnXbzuunPuihPUm8wZ1nHGVQYVNiCjfQXHPyuehKie": 5000,
     "HCWeVfze4JnNtc5bjNdgncf3dGGWSqixzgroAnUcWgVb": 17000,
-    "HCYQuHgpqjtmdfj9W3gsjQK7zbYJAEZUGmSWuAVrZ1FP": 21594,
+    "HCYQuHgpqjtmdfj9W3gsjQK7zbYJAEZUGmSWuAVrZ1FP": 58394,
     "HCaSaRwWZ3pXfpd5gVkjTynZ4HtF5dqna8fSFnVUBRbo": 1000,
     "HCak5uAvT6F8pmAhQsiU2kkigdAPc2P5vtZsJfpJtnMV": 10100,
     "HCcWqyRXsWFQJxwYbZGMyk1Z86GforzTV7CoGgus75Hh": 27000,
-    "HCggEK16kVFQWDpaPCHQ56ZCh3rGoEKoCB8MaqXNLrKK": 1900,
     "HCheyWFNnBxGoh3wrorgEuDWrDggGN6jr82GsKNiE1YK": 36957,
     "HCqKtZqvipTZWJPfMv22fSFdd4Gwdz1bTLa4H92Dekfz": 50607,
     "HCwKWDBiys66dpXeLdaj3erHJyGHJXaXdKLTt6FWAyhU": 4700,
@@ -233381,9 +238430,12 @@
     "HDrGphxAqRdfpFT7RGuNrvQLuuCuQtKSnKPsa5kszcSK": 2000,
     "HDtcK9EcWnYQjPkXHvbRcRMAG8HbTQE1imwdA4EZmmNX": 200,
     "HDvCk11HDqdBmhiFQ9MRAC52h7KaKKeGicz6dhdkj3oA": 2000,
+    "HE2KXefV269RWQLN8939ZhUri2ibhizxxqxNuVWNVFFW": 37100,
+    "HE3BppqkUK6ghZFrWrFuN3powm3rvB6wJmhAXY6yrHcd": 11000,
     "HE4DW8vBkWnkCbesdd1hxZmqd8c7nY66MhMNBLQ8qRYs": 24700,
     "HE98huexx1jZBQZqt3UMPx29Wt65VbrkYTghahgcYfN7": 30000,
     "HESEuDQkbCciDhJ5SgusRD1E4uxnpfHw9WUnUwM48w34": 7000,
+    "HET64tkuxnUv27iw9ALECfiAhsoYsWtVCP8Jqs2ghFXi": 24000,
     "HETyje73ajrYzrAhzFE65UPa5bWjBnh9nMmR1Xvat9Em": 2700,
     "HEUZvcYCV2z8JANnFvSRJjbZUsvqYETZsgS8Fujyd3dF": 15000,
     "HEVKFmB7LWHiHSg4TcWjvTmbPtoFZ98ZBu9uEPYkXDko": 2000,
@@ -233393,17 +238445,19 @@
     "HEeU7MSjnYNEuCRVKDaUV4WxxC7YfAj1iQWQm4PrUjCp": 5000,
     "HEf1o9QjwKNabwJDjFSiNzkpQZgwDnrmhWKRcs7R3i1G": 15100,
     "HEg1Torh2Ziy5EF6UWDYokiPXChBatCxrcqb56yEnkHE": 10000,
-    "HEgauHyyYMCc76fwF7ZeqN5jRTmw1q6U2zqS77DnEyFf": 136170,
+    "HEgauHyyYMCc76fwF7ZeqN5jRTmw1q6U2zqS77DnEyFf": 134670,
     "HEhJ7ywxkedUaRmeeTARmqE6bzguWULJNM3MeM25qCTf": 3000,
     "HEjNcSrnxnJ7BJDwy2mNfB9UjNnGidzcGZuHnZc8Bf3F": 100,
     "HEk4YxiZ9JNVrfBggJoJozqvh87jjGU4SS5AyVx7XGpa": 109100,
-    "HEoq55HcVHTmrhFgJEjFXCgFwdqxQb6sJ8rat4FFUM4L": 20000,
+    "HEoq55HcVHTmrhFgJEjFXCgFwdqxQb6sJ8rat4FFUM4L": 7000,
     "HEp1nuLQQjASNX7GSs4UyuNDhLQNw7CJ9v44KCws1xGr": 10000,
     "HEpGC3qZrkBTvexCHEc7tL61k8QEAJRh3tBAEBGa2xFJ": 5000,
     "HEt1JesHSzPYikbMh2qgA8A2jTcM7aQcMfHb2bu2w4RW": 5000,
+    "HEwdsKaSfzUPhL85kdpZBFAVk5Ypvd1a2QHSwDHahtfY": 8500,
     "HEzbgTbtzTnqdV8k22djiDM7vhrGX8vPBAVVAzjfTix4": 5340,
     "HF7mxwnuLrHsZqMiHQVfdrAkaFEt1xEr68DT6VXuiti4": 5000,
     "HFKSvoNsAn83kJ8xs3pwWvqd4pjF7BcjpPca2gU7wU5p": 8100,
+    "HFQjJbCSgfFoJk74DXLvcmwf5kzcSEBAWMnkvnJXLx5N": 1500,
     "HFSuKTpoySfeNTnTvemygraHxcUmGTBU1XmBgtoQ8CnH": 28100,
     "HFTcaep8CbuemJpqRH6YdS5qEaaB2vfgRGNgrMvYkdos": 25000,
     "HFcm9JyuR5CfhESa7KNJRBhHL2rXqEumXSUjxstdYrAw": 675104,
@@ -233422,17 +238476,17 @@
     "HG4oDtaUnh8vrfF8LshwCV9XSioZ6pvDJoLT6tdqzWTS": 483500,
     "HG5dZQPZeq7KX1WRHDLiE78UptdGp58tXzvEQ37oSvAa": 5000,
     "HGAVoHYXphvQeLRctb8qDzPgHXwxrWU199qhRNZQ6gts": 9200,
-    "HGAjGZC28hAKhvNgehf6rij7cjHS6nQdi2nS4HxK4qLB": 20500,
-    "HGAvpWGxBbjWcaj2YuuJejkyXLqMDCR8criK6N1GQXBb": 117770,
+    "HGAjGZC28hAKhvNgehf6rij7cjHS6nQdi2nS4HxK4qLB": 25500,
+    "HGAvpWGxBbjWcaj2YuuJejkyXLqMDCR8criK6N1GQXBb": 217770,
     "HGCGDPBqE3zx5mB8pLnD29DmHn7rhHCYPme18gX5CEnn": 15100,
     "HGHrTGgE4JLksBHpaeri87EJDf3K3AP7XhyWLX1MtvST": 18885,
     "HGXbu4GatnCqyZTKHjVH2uuQMww3ZukimMQqb57g6KGH": 100,
     "HGXtteZ1uABk5CXz5QkHuLxXPjkTorGAR7sHnCV7YTfp": 18847,
     "HGZDvH48Wme5ohNKtsuST1U2BJYdnzRTf3ox1BX2Zexe": 103500,
     "HGZperfFXszy44fjDS3NaF6XwQmbL6FWHetTghRA4oLd": 1000,
-    "HGb7yZDjuAsBxtbgEpzwGZP8ZxLjM6sFPantPCMfbh1Y": 300,
+    "HGb7yZDjuAsBxtbgEpzwGZP8ZxLjM6sFPantPCMfbh1Y": 3300,
     "HGiRHvQ2qyurj1D77vyA8W5VBsnJsKXV6jCN4RiTzWKo": 5000,
-    "HGpCUaoAwVCzf4h4BdsAS28gsKF6szeSbikFo1dpmGu8": 5200,
+    "HGpCUaoAwVCzf4h4BdsAS28gsKF6szeSbikFo1dpmGu8": 13800,
     "HGqegMaVCHwjjMeepwQY36SzB2QbRKV9G4uWGm3qMTJJ": 114,
     "HGsGHJEwmHF57oHEs6omA9cDkMBHVkFKxg8YZtwRCqHj": 7200,
     "HGwvhHCS5SME954WiBF7iFchAfsXZjByh2Ln99eB7a1m": 1000,
@@ -233461,7 +238515,7 @@
     "HHu6NZnpSvWtkGNnksz7ud2UtMYh7xM8KhL8JcvLvNJK": 2044156,
     "HHuAX7VSVT7zfpQZer1yRzkJdFPHTQ41VWrj7eu3xvVc": 5400,
     "HHvTqnSKjMmjrYa9Cpc2sE3784yKxCYMUoCP8UtFLtS3": 9000,
-    "HJ1VPMDdNV98E7Z9ixYJeD3sqtk6CBDAG91Mc2sZ5c3z": 7500,
+    "HJ1VPMDdNV98E7Z9ixYJeD3sqtk6CBDAG91Mc2sZ5c3z": 32200,
     "HJCHmZfhn7Eef1epKHHoWiJXDoXtNfLizC4kuR4mgYWS": 2000,
     "HJLjWcFcJAqFntucGjfpZzAxApFG47qhX4xmhBBy2VGj": 10000,
     "HJLpeVj6H1GNCMAPrrhhaCCB4LtbRw4zsDJjHU9nU9n1": 512720,
@@ -233477,17 +238531,16 @@
     "HJbWc8Ct5DXrkDm7tTcTXLxYLac83dwFe1ou6NahCvvT": 22200,
     "HJdsi6F7DdRzZ9bx7XLgYY1LwNGKx6xvg6mcMYMUTjrs": 35948,
     "HJenqYHpZLpALFQd23ptAnD94xYKKk9ukzzZ3dbdHh1z": 100,
-    "HJf9QeQvJMWsHFYPhvAjESb5dRbAQYjjFJDimGXwKos9": 222645,
+    "HJf9QeQvJMWsHFYPhvAjESb5dRbAQYjjFJDimGXwKos9": 249995,
     "HJqLxEMJ9WgqpqyHHccmJ21TrYEHgWGhKBRwQFCY7sua": 600,
     "HJsEhSe6beBcNHH2xMAGx9LPyiYs2pK9Rm7VV9KQ1fNF": 182000,
     "HJx7bDA3gBjnrGVd7jyn5Zj6Sxn3ZVF6JL9K4SQpCh7m": 1159,
-    "HJxD7aoJaVHvJ7g1pSA97D3ESck2qJ5pMN1iU1zpuTDV": 126870,
+    "HJxD7aoJaVHvJ7g1pSA97D3ESck2qJ5pMN1iU1zpuTDV": 218610,
     "HJz6DLtFhVBW6XZsRs7pEeRGuLUEBq7F8obSRob7B32b": 13200,
     "HK2Mirn8JJML3F2kHfWF39uJEZ1qsLENoMGPGCumoFdu": 6954,
     "HK6eG3PyHGM27htvazvsWASA37Q4RSf4jaBesvjLty3V": 349377,
     "HKBcPXLouSTbugDTpRM77Hq9NifyuXJSzdtWvDQ8rBzy": 5000,
     "HKCvWxwYT6nDSiCqZXCMQESWyNP99CaUFYVtm4qZgnrd": 7200,
-    "HKEP6DGNk5cHL8HokoeJfQe4pyhYBC6XuL3TsoEN11Wh": 15000,
     "HKFKrDH1E2zRSvEQ1FmpyCZ2Ag8gNpBwNNJadKD3ManL": 10000,
     "HKKZSQpQSg27m6e48MMkeAEcsYJuDXtUpwQQAtmDeEmk": 6000,
     "HKLUVvT5eKfPT1MXMR1xC3dSFiE5JAofxXx63rqm81wm": 5160,
@@ -233504,8 +238557,9 @@
     "HL7jZ5fPFRKSzv419J2S38my3GTpczHPB7wjfjc11URD": 208890,
     "HLJ1VeBrguCKBPeJBVHNxfwg7pkYK7ypfXbA2brMHD8j": 10000,
     "HLLpjcj31kdvWK89yRsFtLPxx4KCt9E5fVpvqz8hy4ZF": 16000,
-    "HLRbWVfmarzYmSU2y7XMzZUKwhtFMybjiKBwyKQpoTsB": 55601,
+    "HLRbWVfmarzYmSU2y7XMzZUKwhtFMybjiKBwyKQpoTsB": 143145,
     "HLUagTjSKHQz2ehP8AQ3YKTBVNRo4i47R3RPRfTk4gX6": 614,
+    "HLXGpF1XTP7ty29zEoN8FEtrwRL5RY7wKJ6fDChBQR9k": 1500,
     "HLaCJzjm61ULcSHsVC5g6o7dW5eVFZWRHJebD5hKDyqQ": 96000,
     "HLcjCAbKbPh4kf1K3apTwmNmKcKEqSwXPF1MBJEFmSTA": 84008,
     "HLj7JQzr3BF1ebkwtj8jAavNecnFjrsQje51kXZZZi2u": 400,
@@ -233521,7 +238575,6 @@
     "HM8x3EaaT8vFYk8CJbpgEUig3biWktiuwNdYe91gFeVh": 2000,
     "HMEXSpVqty5CCBxSBhjyRCPZxrz6wGgrS5TGzBthptgy": 100,
     "HMFk5F5cUemtAz8QZJ8QMWzcu3ideZG3qN5ipKvouEds": 10000,
-    "HMHMxFUThXeWbYAfgxdqzpFsr9387ECVbUu3WaW9W5wK": 405056,
     "HMLkSYX4qrAzzhkwgziC6LqKLj4n38WbNAUJhdQLFiXT": 53360,
     "HMMN1RrQUb7jk5BMmDndGMAFWY8RCwPcrKpMwErofAVg": 15000,
     "HMRuZKwH2jTGG3zseRS6RWWKtbLVHxiuwdMUBFDdzdgT": 1000,
@@ -233539,7 +238592,7 @@
     "HMoxphGtyhs994xU9bTuaBKxBofWGHELqRrBJLcT1WPU": 119820,
     "HMqNzPHibs5Q5zovHHekrffFMf9Rdq2XZq94TmMERY8p": 20420,
     "HMsEDhua6AVE5A46Qwkwq3E1eVd578gL5dQ7BCqEt7KN": 2000,
-    "HMtVGDBZNEwNwz4TjtStqAXfJLGYQJySXpdEGenwmUZ8": 30000,
+    "HMtVGDBZNEwNwz4TjtStqAXfJLGYQJySXpdEGenwmUZ8": 70100,
     "HN27QGvxRPEwmKyivbiJuzUX31PYoqFPPFBJGt91mhwF": 17155,
     "HN8EsixDYrqB1Z6pypMZhhq8mKWdCApuudJqvjo5RPdh": 36336,
     "HN9P4epYP3MgcY6WMAjAWRxy6aX82nwuuwwU5uPMKT7D": 5000,
@@ -233548,7 +238601,7 @@
     "HNFrV5jLjkn27q4CLkGxUVhkfizMLa1i53wT5Quip1LS": 16000,
     "HNMWD6iU89QUD9XKSwUTBcD5s2MY5Uxi1onPkL7VyjgT": 10000,
     "HNTdUiEoBbLCnfyK4zdXneY4y9rpRQ4bjGRFCS4KPk6V": 10500,
-    "HNdGJUPtdJn3D62Yg9Y565ZWRpc2KpU27nWwdh28Eidy": 760124,
+    "HNdGJUPtdJn3D62Yg9Y565ZWRpc2KpU27nWwdh28Eidy": 773084,
     "HNfoQPi1Pxbg9cdu2wKukyjNSnuHg2MmhNF8mDzjeR1W": 100,
     "HNgLpmuenmwmActSbAZzSCfWdyKgD9SXQAZhVEB2TqWJ": 3600,
     "HNiR4LDBGv43FTrgzSyaNR3W6kyo6J8UtjRFF1Y2jvYG": 7500,
@@ -233589,11 +238642,11 @@
     "HQRcF6HGoz4vZHD6rQY7A7Qmc1oeAEueJXXPDbHMf82K": 100,
     "HQUUvqRMCwN1PYcGyvnG5FHqr6qu1c1GLtSaNY3BcL57": 1000,
     "HQUpBXQ3aYXVfosjuP1kdQzHG6ZAvtKxcMBf1YkwcaX4": 2500,
-    "HQYpuPggtTpy3WK9kSk2pSgSzmVr3wnyLG3ctGDkTBNR": 1614021,
+    "HQYpuPggtTpy3WK9kSk2pSgSzmVr3wnyLG3ctGDkTBNR": 1620021,
     "HQZ1RkHHEr1RvAaxCY55QvFpiSf2oqpPUCLqwL19LuN9": 665000,
     "HQkFv3zXfqpBBAjZmiKoP213jYAqwsh8mk44kroJdszq": 6023,
     "HQmU4iH4qkw3YZF1AEmo7mV4EMYzZfjqsL59ifSCUEhs": 55451,
-    "HQmp9tHWu6t68qFXi7chA62YCozJd1cqJrFdtg7T4z5Q": 7560,
+    "HQmp9tHWu6t68qFXi7chA62YCozJd1cqJrFdtg7T4z5Q": 10560,
     "HQp7twWANJqAi8Eo6YPcKxm5TnzLc6DUc4Eec1iAzDGr": 3000,
     "HQq6eeFngzcaRbCw6Lo8HRS2WrfJnh6gTnMEDSfbfavu": 1000,
     "HQrWv8kzRdwECAYTFyi9foZxhL7XVUjc9hvcHVjHUPt7": 4500,
@@ -233621,12 +238674,13 @@
     "HRzbfggsshJ58grXEFbdYx3bVVRJ2U7WYFfCt8xGoPCq": 1900000,
     "HS1ne9fUt73zUwv3aNZQ3vPuaqLXnmmhBwsBmmTVStAH": 500,
     "HS4S7GUsXUyv95rCPTnZCPBNYoAWs4JtJSVYETx3G9L9": 5000,
+    "HS99ijMwUqqxkQbjRRKgPQNdQHCjd5qauz5nDPsSMQhG": 10000,
     "HS9MARM63aRxQUUtb7thKgWaZzRkWvGt6DjGqMfAJn4i": 9350,
     "HSFE4k6bpVJhcHVFStkjuhuS9hRRH9r2s7jsLuLP8Pr": 3300,
     "HSJ4hbEFG57tmLD68V2KWcyCTqVa4vJr2NdXiiRJajvv": 179000,
     "HSKJcBuwxD7c7HCgFLpDzGLpMYA9ppg3nDTJRCnw3HcR": 33500,
     "HSNdKPiUYz7u9bchCaHqA4CHrLaPcp2SCc5aGNcAV3k3": 15100,
-    "HSNjEPd6ntsu7teNZL9AktbtmknXcvFgJhrWadVksZ4h": 4500,
+    "HSNjEPd6ntsu7teNZL9AktbtmknXcvFgJhrWadVksZ4h": 106720,
     "HSVuMiYgvDYvJqLJj2wk7ARRVSVHvUssDYFGd1goorn6": 34000,
     "HSZLuYJZaGmc4BNsWUxJ3Y4Gh25sKL3J4DC4sH77ey3X": 100,
     "HSZPCyya37pEMtYzgWzsjvuhQuNXHPP52oQP89eANEvy": 1580,
@@ -233641,7 +238695,7 @@
     "HSpD1aajbzgv1dRzB8xK98irENet5ctPmWkgrUREySy4": 5000,
     "HSqFHZvgoNozj8Szx9JnGVbCCf5Vtd8zPEU6DxLMvsd7": 100,
     "HSvpeE51Egeo7XV2xAiPxsdkadzGx8QYCLVGnvvWwLF7": 5340,
-    "HSwzgGXUhwE1FmdiDZQk3CCDTQZRxfKQ5vtrQNJt6A2g": 1501563,
+    "HSwzgGXUhwE1FmdiDZQk3CCDTQZRxfKQ5vtrQNJt6A2g": 1512243,
     "HSxezh6S57sczBgCqxnM2GSYKb4VrV9rrnj5moHHnHzE": 200540,
     "HSxnoHBZJWnbDJZ6cjxbeM9wUhGYJfJ92PDLXUPia6eT": 116323,
     "HT2D8xtjYTj7d47RbzwwD1NNADPAXXyyBPaqJ8R8NLvY": 5000,
@@ -233657,10 +238711,12 @@
     "HTf2u1xQYpW6cH6TQa9zckYrN6SuawSMHNEHJEpKHjeb": 15002,
     "HTfyjQKSaLremeVjaPZZgUANezK4NLEdzhqjzrLZdY7j": 900,
     "HTh35rgEPFPhfWPwU65ADy5dENNs2KpPH9dTuJdZjLLC": 21015,
+    "HTha9pFHUnFA5vZkkAkLJ9dTuTo6X1qavCccdVbCgZAQ": 5000,
     "HTq7jSYBiKJ3eejWFGbcHczdEziMosTV1x5B4Eix2z8Z": 17000,
-    "HU4L8MVhRNmda96Zf9Wn9v4hECDLuPAWkAnN7c8omzs5": 8500,
     "HU6VEqG6FYz9m1Cod6Luo3PuR4gFGSfMAdrX4Wwbb57j": 10000,
-    "HUA3PryPaqDgY7YQgLgvKh6rHt5t5y223BV9xTFaf2hT": 373314,
+    "HU6jMZizMfVmWz8xwH7YT14M5Ev7zEw9yitYwM4FxoK6": 8500,
+    "HU8WdFTnrMrh1N6C4fVdRAWBLC34XER8EsGSUYWmSJvg": 10000,
+    "HUA3PryPaqDgY7YQgLgvKh6rHt5t5y223BV9xTFaf2hT": 530000,
     "HUBUsrtZPmC4b9tgpqfMknGetKgjaZWdwdus9k32GcVi": 19900,
     "HUEpH3j8quTJciVRxdGno4ANzZvqM2z7L1FktendFJ1x": 400,
     "HUFDaAxDNZQqawh7mVivn1uHX3tCQZMaHVueqSmZnaXw": 7000,
@@ -233668,13 +238724,13 @@
     "HUKLmidrKQvG5xBh6264CKgqSe2y2cE2MvYHJcmHJxk8": 55500,
     "HUNxfihoGMVAUp4TRKaNBM23VtHfdeH5bQBMvJ7a8eM5": 400,
     "HURSxNvAe1Q4rWMQLCfuzAanZxM1rxT5s8ePbJAMMGeP": 32942,
-    "HUY2tGNp7GqwR3N4DtmVEXgEg9qWYUYJgvmJWjC66WpJ": 207040,
+    "HUY2tGNp7GqwR3N4DtmVEXgEg9qWYUYJgvmJWjC66WpJ": 218711,
     "HUaAdPr1Yjsyjwz84R5WcJ8j14Yc5DVewZ47ZfKuYj7R": 125900,
     "HUbSP8K6kU32mnf6Kwc27BYUfy8kbS32rAsqGJkDCHzW": 38506,
     "HUeCUKYgaxUnRefAxmzfhhZobTPmNringB7WamqaTv4N": 1500,
     "HUo8fUY22u25Rzr8YwtJ8vX4sKL3RVftybTw3uYtDkDH": 200000,
     "HUpDixipMxtZj3Qbt7mSdS5d3LbsTntr6SMawL7v1gqE": 1000,
-    "HUpHYqYxLWJx4ZR15DfHnmxoRNKyA1sWMUkL6jYaU1m5": 966,
+    "HUpHYqYxLWJx4ZR15DfHnmxoRNKyA1sWMUkL6jYaU1m5": 40966,
     "HUshAb5zvU4A9EbKriPc1p2Snqavq2pRso2u35mQtMTp": 100,
     "HUubAfz4e3QpCvpaTGRu9QzUgaf2L5aYg4oReWtnma6j": 10420,
     "HV3suFT3sgtCV8tECdykKtBxj47JM1849gGP1x5cejka": 10000,
@@ -233682,8 +238738,8 @@
     "HV71B2nw8uwyWbtoWGGCq3qQ7aYLZev6e9atWAr8J2N8": 29000,
     "HV7omGRs5VGnseUrhJy9fL5ckaXkkXceEFHgT3HpjG61": 300,
     "HV8f9e8zrP75bhHqfi99r1U47HR41Wc1P89d5cuCNtQY": 100,
-    "HV9ni65QGbLTVSDsPqy1M75BmjJaaejyZa2YqVFguWkw": 174872,
-    "HVGF13dj57aWUZ6t1RHKQAC5zngYRK91XSp9N9zvpcAf": 1000,
+    "HV9ni65QGbLTVSDsPqy1M75BmjJaaejyZa2YqVFguWkw": 379872,
+    "HVGF13dj57aWUZ6t1RHKQAC5zngYRK91XSp9N9zvpcAf": 11000,
     "HVRNXAqdMnFEgeEcDBqebraeCWmit27uKtfgF7uA69hZ": 1900,
     "HVUcA6fp4a1LHJQGffJxeyufa1AWPdeNr4j8gUqT25FF": 1000,
     "HVVADsTFuHGxysYFC2tNuAEUtf9Dv75o9dKihfwVzdPL": 1728,
@@ -233729,7 +238785,7 @@
     "HWxHSyrRk99u4XLtLNqd8xEFxbGtVwUQXaY4yeDibb3F": 1023,
     "HWzruWQ8TqsVa3HRL8jpEnpPMtkkkHsyfQQhAxpSFhKR": 13000,
     "HXDyBrW1wHWo4a8E3KZkmcYFYFHYRwNq2Pe3eaae3FAn": 100,
-    "HXEAgWW5vciMNtDcTe3E5k3gZcLXC9ChDrfJCzxbVESw": 1183656,
+    "HXEAgWW5vciMNtDcTe3E5k3gZcLXC9ChDrfJCzxbVESw": 1351156,
     "HXJnzPrdHTh4b34dCnJs7JpisJHyw7AXMzHnxZNBYNGJ": 1000,
     "HXKHAnLJbAsB9p4ivEmxdMSCzU6PLiKoYeu4KsJyjAb2": 110900,
     "HXNtPrytMR4L6pE7GbBVPjP8bWYVkuCdon15BCo2WK9L": 10314,
@@ -233755,17 +238811,16 @@
     "HYVrZiM7j637Qb4fZVv5ETwC8iGdZPh7ZSEMugHGjDQ": 28000,
     "HYYN3PG9MT8iZQw3B3kcjqo5wHa9xfciSFarNiFCFTfB": 9500,
     "HYcfT4SiSk5cvB6NXZhA2dMpEaSQ1fSLx9KxsXLAwDwL": 1500,
-    "HYh6UHjSTV9Qh66VmGyFRiXJzsff6Dx6taG47BH4Vbvz": 63992,
-    "HYhiKndrzrmq5D8cWBWeWY6nop9RNSDhUmaoThRnMPuD": 60796,
+    "HYh6UHjSTV9Qh66VmGyFRiXJzsff6Dx6taG47BH4Vbvz": 49092,
     "HYmt69X3zBhEMQSXy9KA1KSDe3Fn7uroUVP4eSPzhe4R": 1200,
-    "HYsoVVGfRy8rcXDMLVQPhhWtB8Tpja9REMGKsLVt9vmv": 4900,
     "HYu1JiD9CgvPd555mxFsPQ4KTGNPAAw19CQsNZERcWVt": 3000,
     "HYum9gBV4VsT6iQiEd38Prx8WFfLxMwrfpTcKNg1EriU": 1000,
     "HYzXgYK7Uc9h4DquAgodYaQePnMJyRtdrrRxcMQFRjDj": 1000,
     "HZ3VNL544avZBhUWkSV5ifGgQw1CCCVcPNFiUcLJQ687": 8294,
-    "HZ4M59Uko5XzYAsASRU4hjtTEdkWA2B4E351DxBBqvdY": 36360,
+    "HZ4M59Uko5XzYAsASRU4hjtTEdkWA2B4E351DxBBqvdY": 11000,
     "HZ56k7w2htniNKHHZGrcuTJGsobt6kENW67yh2yZ7YMa": 3000,
     "HZ6kV61je6mKFKe1epKcQusF4WwennS3rX18jSc3S4d7": 600,
+    "HZAFTCCsG4wXXQfmaKpAT48RhXm4kavVtESgg85ttMbk": 100,
     "HZBAcxgC5A4V2teNzqAekXUxrpQx8wABfXEwK7KDzwxR": 1042,
     "HZCHr2pZ6ornzuwePfjhSdUPV11fBn3h15dmhUDMuiMf": 1000,
     "HZEAQu7q1KhniGddbJXRSE5o4Ay4YWE69rTgWsAuGYor": 50000,
@@ -233783,19 +238838,20 @@
     "HZqcVVdfM9uwdtuzqPXWniDxzJ1KWBqGSA4nTqWPPh6L": 7500,
     "HZs2x5a2xUFrQYX9jXDe5rhkBtfDUArgafq1GbeCwsN2": 1100,
     "HZv6ygJHKPTxRkRUJwseStmhmESFsgYTdviK2HdgfsD7": 21612,
-    "HZwy6QLrYTnZd5qFAMNZnhfV4Yzb2Fg8qfqtVEUxuZY8": 350820,
+    "HZwy6QLrYTnZd5qFAMNZnhfV4Yzb2Fg8qfqtVEUxuZY8": 374159,
     "Ha2cBxoT1aHWegCuf66qs9AEUTp31coF6Hb8TeBzgBqS": 10000,
     "Ha4KLxUvFVmzNoHXeMFeGZmhWW2KgfDgCQ7gCEu7GUeZ": 2500,
     "HaA3nzTiyRq2Ap5iFv3Gve3eM3DtC3gEi1jUSTUYymST": 30000,
     "HaBBZ74wP1Wfscpv56cmfGSGxwfb3ys36ekcncAxzerd": 1300,
     "HaDJczLz13LkoKNo7jNiXktscQRu9oVLNKQALuRM7iNB": 17901,
-    "HaDjGm8yZm2J2mCQKgBaNEA3ApGvCug1R2ahJPMoGiXn": 135600,
+    "HaDjGm8yZm2J2mCQKgBaNEA3ApGvCug1R2ahJPMoGiXn": 145600,
     "HaLsgqyuTAGVUPVJNDK1RrPEn4hdxPGsAqu1cLMzdRFt": 100,
     "HaLxe56Lo5wuAxq47bFLuhyvY3bf33W8wVCKPjTN1TTg": 2000,
     "HaMXWPZewowtQTjkkDrqwRV9PM4AsZRKrBvZ3TYN33nm": 20500,
     "HaNGfAxeMMWFJsSCeBfXokQotH44CjRaNkGy8RnLczd6": 4000,
     "HaT8UPXh3i978qnVvXKSJmF8tcdSWXf6F5Zy7E6Vsbcb": 5000,
     "HaUPwCsePJqE8MeeqrfsZrbYzdsbRSMmAjCuWEzxR2ye": 1004,
+    "HaVsU5N7MRDRjVuR6GzKFWtKUZVt4kg41dWkjqPRTxqX": 5340,
     "HaWVBw9t3g8VadbZ2X5totd6UcAZGouQaJXvkP4Beoo4": 400,
     "Hagby8HaDHvKFkHaSkmasycj9HQ3mnfPDvEfc86E4wCP": 1000,
     "HahHkcUdH1PCuSVmDNeFzUM2Hh6HJ8MxMCmEMsPaQhmL": 11300,
@@ -233803,6 +238859,7 @@
     "Hajvy1ndnMrSYKU6NiekUrdKuKgqQyvgBkPgbxd8krL3": 3500,
     "HatQ8AMUudfoREJj84QTdAgqow24FJAm445W4sJbJ4z9": 9100,
     "HauzoQrVEJLjH38XoPZFVqNyWSk9zNha4p1DjJezQ4yR": 1571667,
+    "HavaYCGE9hznfby9SHyUEZdr3y82MdsB2NTMwEqgqdJb": 10000,
     "Haz9zPbvmri59duPzrcF9mtUdaWqGnqgMWi25Cq1i9ZJ": 23304,
     "HazMgN9Kq6gjb1jYxKKRi5Je1STvHwqFjcZ85BEauuHS": 1000,
     "Hb2bHCKeZR7sYf87FRUExGUdcFP4J7c6BN5egKYBeVdF": 500,
@@ -233821,7 +238878,7 @@
     "HbZRQevwTYSoWfPuNMuzHVa8LNei9ywp7FNigQkWJPns": 16160,
     "HbbonN5Cj99rZU4WtgMZaDcYp1ZhtVNAbtCsjzZ3YiLE": 6126,
     "Hbfq3iHbnwSytGt1NJNKiqwe2DJrvx5JQUJJUpED5vbY": 8000,
-    "HbhjPYe7oW9Tx6nyQDtT8An35o2BUSEp5gan8pv6ssBZ": 9250,
+    "HbhjPYe7oW9Tx6nyQDtT8An35o2BUSEp5gan8pv6ssBZ": 12050,
     "HbpCUeWm4r4ibnzVWPiyn4wca8gCAKpUSPvsnVPrcnKw": 10000,
     "Hbstnw9nSYPPt2Zabv5E4BFJiiuZ39ZVW828sWBZajx4": 5000,
     "Hc1FPGqeMDwbYDVctxtoRNNC3mK1NBvaBVbFWLT2LgQG": 15000,
@@ -233848,8 +238905,9 @@
     "Hd2bpCdmKhE51gsLCcHQoqnc3xzKonqRLcRh6MwoQ3Xx": 5500,
     "Hd2vaCmyMPprSNvTR3ee8n7VY9yTaFpD8V1Mcn9savuu": 57319,
     "Hd3xY9F8ArLmMcGeFxAZqp2ZStPNbkCFxuKadcoGHzjy": 1000,
-    "Hd4xJhyyCNfvi9ppCkSra8fBNNBzLHYrtpoR97VjxeNK": 242600,
-    "HdFRfh4VQNLzLzy2SYLry6EEEVUa5Q4xgwnM5b6xjpBN": 226813,
+    "Hd4xJhyyCNfvi9ppCkSra8fBNNBzLHYrtpoR97VjxeNK": 172300,
+    "HdBqw6nMi2QzjpjwVWHX1D7ygW1QLiW7uHcMPWHaFfB1": 300,
+    "HdFRfh4VQNLzLzy2SYLry6EEEVUa5Q4xgwnM5b6xjpBN": 146289,
     "HdHK7Boyw5w8CiYtcmna7uxPzYKvVsVQP3Ykak4poj2": 2000,
     "HdHULMMtEAybSzLi7rsLEoqfAxPLDC4GGAo1ahJyYGfJ": 50000,
     "HdMpSTptNckpe97i2TfkdFR85sK15LrmQGMhWWrXELhD": 1200,
@@ -233873,22 +238931,21 @@
     "HeQDmAf4xR2DnfdABepuhKzQvDWkUzRJXHv2n71RRTs8": 45000,
     "HeUiLhHdcoBpJYdbdhSKgrqAqNzchpYks9sMJjZ4HdFY": 29500,
     "HeWGjYHKrx8hCEEWpeoFGav6ht9VcJtTXLEP159Sutaw": 2000,
-    "HeWqxzQeYM6UooS4rR9M44BPt8svnhrXNdeU14MurHoQ": 186164,
+    "HeWqxzQeYM6UooS4rR9M44BPt8svnhrXNdeU14MurHoQ": 317000,
     "HeZXe5VSrRgF4nsdZd2SCbmzYrW9McVTbXGKA4dScHKw": 7700,
     "HebX6zbtdg25E1x82NgDqL41TrDvHvyDYkhMv6sjbxgW": 21900,
     "HefSeaNgn1NxhK6wAJzpnzYqSBrQAFfyFyty5a7217aB": 3045,
-    "HefgsGrNkeEuxpuvZnt2cGjG6dX96YK2UHAXq3FzXEz8": 31700,
     "HejN2NYQ9Fz6tRNLGRAnfMrToEZdQZkrwr7kANGHmyez": 10070,
     "HekUqaTPgjP3W4BLvHHgk94yHxUcNv5yWWeixBFSBnQc": 100100,
     "HexgSsEE3RUP63Gkn7CVCCwDoeUSeNedvMp5HUBTdhK8": 100,
     "Hf4J1Yp9vaus497nEPRuxcCkmJvEjvqLx3c9ajkubFW": 8700,
     "Hf53pEuXsNbAF1ZE46jMBikVX5hTkLzLeqCzWnEHeeGn": 1000,
     "Hf5qzSMEPnJDWuZyr7QsWWNXGkUk11hCBNXfBmwcdJHP": 5000,
-    "HfArmioP7CnXYGsKtDtKQsmoVgv1qn1eyjGv1cyLzCx8": 253821,
+    "HfArmioP7CnXYGsKtDtKQsmoVgv1qn1eyjGv1cyLzCx8": 434587,
     "HfAy1tCoW4apxPNGo1tuAzPx6xc56FS6iwNHbp2QRRt1": 1000,
     "HfCRQaNtTjzGA5cpfeVjxRz4NWbYPoDpRLNjfYBaNYFq": 2000,
     "HfHWpXJ3uUetSofvpJiWu969xxtyThY2aC9oE2AX4L39": 1884,
-    "HfHoRMGSCpSTSnttipx4VKtBZiqodkjGKhneHRrXkb9A": 112259,
+    "HfHoRMGSCpSTSnttipx4VKtBZiqodkjGKhneHRrXkb9A": 92259,
     "HfPERwnEgkydrDZCcqB4f6hZWrY4G93yfcm4nG8dbMj9": 1023,
     "HfPb2aoPCdGiWVYh2bSR1BBzvSHVGitoNdmTAXdsPFtE": 10070,
     "HfQkEG5BBWYzRQh9GriBZQTEUm8CUCC283uhVNyEWPjc": 10000,
@@ -233916,6 +238973,7 @@
     "Hgpc8JC5iSeqTNTVAizS4oQ3pEvBeWQJzKBFh7cw8rHF": 91100,
     "Hgq6wbAf1yyb2q13T4gWKViTcjDREdxPCNAd7cHpSpf6": 100,
     "Hgvq2q5CHhkTj3z1yBbws4Ydo6aUxyTN1xCMyFaMwrjr": 1500,
+    "Hgxs93FtoRAsCtrPB4XpZS7J8znRPhSerr5f1fs4ZkGD": 37000,
     "Hgy7p8RZikhfuPUM2e3DvxzhVnnDxve7Ty21YV2qFAZQ": 2002,
     "HgyN8BHQeMVefhNoxfeutRG9umtg3VTFgMDyszvp99WU": 5000,
     "Hh5Zj8LfE8od9AfecV4bVsxgQ19iaGfTKxcJa6zpfqpM": 5000,
@@ -233924,16 +238982,20 @@
     "Hh9di9Ri45L7x2cUwhSTgv6piAicRwvYRKiN5mwZGM79": 211696,
     "HhFuqkGwkypYMimXbuMzyYEHm32tejb8w8ToDgxUWEgC": 20000,
     "HhJ2edXQfXxvArPomxzr6cS5hgpnYW7xLDNGh9mgcs5z": 20314,
+    "HhMW9sqUZHJsES6Lf59VzsbvJmdqJHX3dWkSQDv3dAgm": 1000,
     "HhQhB56VJia2CLb8EPrL3a4L3Cp4gKMG6hjCEJeQJukT": 4000,
     "HhVJfevgoVaTZ15B6HUNSVaiT4SERDE9V63VybwubemB": 4200,
     "HhWrBQcHmJnocsw8T6RpXHxqKJ8Q7GnZkKsedN9wBxNk": 5000,
     "HhbFGc5tQPCgmfPF6JMo9Q28k2SY7Wha5Wzy89NKBGV2": 1000,
     "HhbTzpSMz2QgfJXJ92aonWMAzuZ6NCRfy54QXJTbwP8z": 1000,
     "HhbvPFeEXb9Qzx8JEjnoDwvTmehZidRW1FPGZ3tTBWXa": 8000,
+    "HhiEuGupUTfTFHUojtHeAVijAH5MwfVJbSHsB793RoHf": 12000,
+    "HhtM4XUZnbdmubHEU1fJK8BroaT3LmDj7P7XEPSTQvV2": 44500,
     "Hhy2HxqDjUgL7QFJjs4YUCTucbUWqsSSS28UfxexmtJG": 82602,
     "HhzwsFkXv3XnN2xUim6r8hvM9cR6zH3s9Lj9z9Rezsjn": 55180,
     "Hi6geHkDVUn1NTwfrp8UMgUVPrgTiiGmZL82dnRoN5My": 513227,
     "HiEczU6LB53yLoLVEbPqWmyQsq4yLhby1Bt7mpnwocES": 38000,
+    "HiExxHYCG7xz9yUjRVVQZ2qad4KAP59aKC8WyJx4XmHT": 32681,
     "HiKx5gkK5gferkYWPvFWHxMyPb1tZWzTt34qU4HSkDxm": 4500,
     "HiLMnuigWYhvBdjsgE2QhTAcGSBYbiS2VwbpJs6YxpcK": 5000,
     "HiME5dTCUGwHSMcrCqH2V1Rh574kXDzXkYwKwApZvwq5": 200,
@@ -233943,7 +239005,7 @@
     "HidZXg9DaVKkqXLqLCWchr9caja1vhXxymHXPQpcJWcH": 9500,
     "HieKxZuayuvtHmxXwPy5WdECuWb1HuZPmVBi6oAH4pY4": 4160,
     "HigciNJ521Z5spiMdDSNpQyWwMoW1DMQSVDKoC4WG4Bk": 5000,
-    "HirnLAWAcdFHnbJQFovP97JDaSPZJd7DmEr4tnDESYzw": 103532,
+    "HirnLAWAcdFHnbJQFovP97JDaSPZJd7DmEr4tnDESYzw": 93532,
     "HitfCXYAdkUqKtHDcVeNgZVg26xx7ydiExusHyupAsUd": 8000,
     "HivdR6S18hg4WJe7v8TqgQg64EE2b6YensnVSvaucTzY": 45000,
     "HiyqV4yGQGvzKEbcJcUAt7xJW2k9R716N4NyimYpBuxw": 185826,
@@ -233951,12 +239013,13 @@
     "HiytWK2DS4HcCQ6fiYhJoj3wpdFazap3mSeKjWtAViYY": 1000,
     "Hj1VZCr5szw8KwTmK9vENbvJnsWL1epFkuWVD2hXGP82": 20000,
     "Hj5HJ6M4hYYMdavU42gqyszbD3dqEzoGJ59HP4CfYUQj": 1360,
-    "HjCfTUgEXgAd3ERqpYyB6fpj2cThUxvnYxSooiQ9nG8L": 264613,
+    "HjCfTUgEXgAd3ERqpYyB6fpj2cThUxvnYxSooiQ9nG8L": 238046,
     "HjD33vKPxEZbrXp15ZDWPk6wZwSxsRMAduk3yPyCD1Rw": 23004,
     "HjNYMLGzFC5a8bG6tCth5Z8R3ppYwukNoeC5RsjCq7Cx": 10100,
     "HjSXpPd44EkZGJar6Wag7EcCnxhupbpXJ7NP84cFuSug": 400,
+    "HjSwQeKPqx3rLAiotVVWQsse7LDCQqefdwcSqeDdoKfp": 100,
     "HjWhfMKwLtSgGFD2Wypz29BrtrXBe236NNFhB2NWF34d": 21000,
-    "HjWkHYDod49Cc9q6DB9BtUbiY2XgJ2tmQfKgyYKo5TQQ": 1538276,
+    "HjWkHYDod49Cc9q6DB9BtUbiY2XgJ2tmQfKgyYKo5TQQ": 1453276,
     "HjY1JnQmFUc6HzXUtBWbdc8sSynNtCvVYS2Cjz49BLsZ": 15000,
     "HjaNAvXjGqF7PE31ZNpLtJLadBx6UrXnDQBeeBEwS6X": 2000,
     "Hjdx2mWPKXeMfy47Ereb7h2Uri8BeJSFmLWTQmURC1Qs": 69000,
@@ -233978,7 +239041,7 @@
     "HkhNBc96GBGyrvD7m3kfu6csBTCip7zZswfzo7xzU6J5": 3000,
     "Hkm38945zHbwHZoUBwuBsZjJpJj2bK3bPWFjx1u9nSH": 300,
     "HkmZuRRh5gpu8TaZhxt4guJ12166g9xG6sUigfwuUYXY": 52580,
-    "HkmuaNZrZNoE7ZivaaXRVEGzAyNmLeZHsAW6tMFHUFJM": 108587,
+    "HkmuaNZrZNoE7ZivaaXRVEGzAyNmLeZHsAW6tMFHUFJM": 110398,
     "HktZ3EHv598HXLiC36qDAqmkaoHgZU1VRuUxsiZJqubo": 224000,
     "HmCs8Bj4Z3AHPYzPuuvBxzKshCorzbtT9mfzr2hTKev1": 10000,
     "HmEBss78pBNktm7qKV3a5AsGNWFGQmFRXXGKL8sy6fX5": 2100,
@@ -234004,6 +239067,7 @@
     "Hn1oswQZtCtHgsY1AqoV9rY4UxM3eUkxSdJChsBL7LzQ": 304,
     "Hn7gZKBPZ4Pe7My7EGJNgGvngSTzMcizS5kG3EatHE4E": 90000,
     "HnAEg8Z16phDDHRkACDgQkGVE4FoeJu2yZ8dqnGJ1tFB": 78457,
+    "HnDZSDZr13qwFwv5c66afpusu1sp9BUUNcQpEBQLqgGq": 54200,
     "HnDjKNeWJkJv6hjyD16iowE8Gx3uAF1e1wJSCaLaw9N8": 100,
     "HnJotNx5Yhx8qT61BKZBPcBKzYeN4iTCG9xXMHpdi2Ug": 100,
     "HnLPtNj3oT6LNjvZ3MzqtptFUwRbyHohLjmVtRWgKty9": 10000,
@@ -234011,6 +239075,7 @@
     "HnMh4hZy5Rh13ftQ2CrDYYti443QctXTr6vRFo9X4Wcr": 12000,
     "HnNT7auqNJMHUkFRxh8QT86Szi7EmBzg9tPRn8occdAe": 10900,
     "HnP59VYCrFCsWpPMzCBAprJF6tMfogDEnT8wepeNYZqG": 9500,
+    "HnXfu3rvnTAFP5SrNAnFeTZxL7VJ25JeEzBmBHNqxZxa": 1500,
     "HncDGczKHwHpfWGtXXQJ1XMTp3UQqAoppDDXsZr1LxkA": 31000,
     "HniyUqec7GEs9FDvFfkoHTJLAoNeoLZWt6NVqhLDfadw": 16300,
     "HnnErhAEMLVNm7pW1QfaQ6yTqLJc6eod3fWyqR4QioEK": 10700,
@@ -234031,7 +239096,7 @@
     "HoU2xT9hfrUWSA1Eu2sSFcD21QgC7Gj99THjmsm4AmVo": 1000,
     "HoYpCaD1eH8Wg4WQa7Za2RvRhbNx95tWmGPBWon89gfj": 26600,
     "HoiDHF2hxcoTDZK8afn8ynMDjJKEkivFiy8DFaRNkgFL": 5000,
-    "HoskyDDEthDw1xj3Dk5HhkXEGvQLQx1RMECZ3N8wQeFL": 1349493,
+    "HoskyDDEthDw1xj3Dk5HhkXEGvQLQx1RMECZ3N8wQeFL": 1589493,
     "HouktCefHXSSSQAA3Q4QPBKKzvd2shfseE4VTecQjnkx": 2136,
     "Hoxpr7dVSYQxVKgb7JZ38h3rngvgQ5teNpuq4nC3siNQ": 12000,
     "Hoxpr7dVSYQxVKgb7Jz38h3rngvgQ5teNpuq4nC3siNQ": 10000,
@@ -234060,12 +239125,12 @@
     "HqH4E2v7A4y9SzViauRpH2xCzHTYpCT3tiJiapAnEW8D": 2000,
     "HqNAtWEygvU8qLUENL3uty9C2NNMxtjk8CWffMiL1BdL": 1200,
     "HqQKCYZ3Ndj8iFyfX4M639gbLhke7suTo2CxNseZByu8": 9531,
-    "HqSh8fzLC2f1PCk7vYJHbmZvaAi4ZzDkboiUVdqSEpD8": 119400,
+    "HqSh8fzLC2f1PCk7vYJHbmZvaAi4ZzDkboiUVdqSEpD8": 418400,
     "HqUqnPD9BEgTEfCzNx4f6tKt59oh8nwS5ejosUcZM37a": 100,
     "HqVtKP1pW5uoQXDMthmpn37KFtjCT34P6NHThraT5waC": 2562108,
     "HqWpfnhxxcCBAABDBaHPJLe24pVayK6K8tY3a7suz9e2": 7000,
     "HqYbqTpxfddKbXFaqWJp8gaFGyVZRpFjYgKyegbYNdVv": 1004,
-    "Hqbv22AJgBvzijmxddnbVZ9hvXxqNgNf9YBRC2gmqvN3": 889800,
+    "Hqbv22AJgBvzijmxddnbVZ9hvXxqNgNf9YBRC2gmqvN3": 1184650,
     "HqdQ8RJFyuq25TAAhna53pyU9gJ26RvQbFAHD7cwwbLw": 10720,
     "HqeDmCNUGQZX3QSo4s4VaH5WVvGjUpFLUcfPsnKxjbYy": 1107,
     "HqhP2d1A4gf5LyY6LCGPfqj1KehkX7b3mNznrjTy7WZ3": 1000,
@@ -234085,7 +239150,8 @@
     "HrSLnqhvnHNZim8fMhFGU8zqMnkJG2Y1HdoYE9tFeCBC": 10000,
     "HrTdGe3X73ZF8RNJBPNDcQmmYJaYE3jrpCybCB5SY8vH": 3436,
     "HrVWnX6URX32fR79DwPX4UzsTHpEVgRxF7YVPireycLf": 1023,
-    "HrcYSbnTNrn82H3DRDZTSPhzwr1SxCwwyaEASXox1PUg": 1596111,
+    "HrbGAEeuJd55j6WfCynSkans46Ye3k83mzLg783Qdnh6": 1500,
+    "HrcYSbnTNrn82H3DRDZTSPhzwr1SxCwwyaEASXox1PUg": 1541111,
     "Hrdfe93t8CAFzpmTuAr4bmqptujriU8CRMboxqvfibsc": 200,
     "HriXn23Q3Egv47JDfVUZFNfGJ2gaG9a571inaCgvFc8i": 11900,
     "HrsCu9aNXTUAPjGC5Bq569zbi1iejr8HsF3doR1aZFCG": 10000,
@@ -234097,13 +239163,14 @@
     "HsK4fA5ouvgzhXLS1pyjfQEUQ96RUxSC9dGivhVyCBT7": 14000,
     "HsQFLJyjcA3WfsZnBuHxBNg4TgJiwwmR6FY6YEBJUrJ8": 5210,
     "HsSNyrA9Vb5Jidi658Eqta35L6mqgrEk6hxTrN77Cf4m": 1500,
+    "HsVs1nkBhKFiXPT5T5e3cbovWnhuyMZP5CQvqAeBvTmq": 100,
     "HsWpQkwaC7EvpaDNupfmqdc17JbqDLLbv5Nz8mD9mYjR": 1000,
     "HscV8UJjbnNumX4rjEsaZSnYFtaoYqqg8fpLyRuwXmQv": 1100,
     "Hsik5VJxzxudiZ5a7HBVfGZpC4ehnnbbvcajMTvpPUbw": 26000,
     "HsoWiiKGgnxVg4wroHLPMjAmykMpNzDAkCRF2mx2xURP": 1262782,
     "HspyHQG4zVrdgFxaMWxrr4g4ZUb2xSWrL4sJeJpgYL8U": 17400,
     "Hsq6rhu4XTVBaEXkifQCriW7hMjy4RSYNWheAdmoixCf": 15000,
-    "HsxyYcsHzgFsFX9fS3n8bUtD8hJ2HcBMYYhdHHdVYf2r": 81250,
+    "HsxyYcsHzgFsFX9fS3n8bUtD8hJ2HcBMYYhdHHdVYf2r": 61250,
     "Hsy2ysVyqCXWxcpdDXYGT8tneNvPFAfZbemDdqnUeE6R": 2000,
     "Ht2SRztFiHStguV1dtkRfseQhaqkAfSBr8BRxhXzT1Gq": 6161,
     "Ht58FDwi1vX7C3ipC73F4XoQQpdFuHxfAEgzAAKEpWst": 55000,
@@ -234114,12 +239181,13 @@
     "HtHPkfsaknBzV1gpMKTqFuiaFpqs5acbJHarbTahbBsH": 7724,
     "HtHhqX4QiJCGZrSp44iH1mR5EQQrrqSD4CmTK82PZHoT": 47300,
     "HtLYRiipXHZHa4uovkCds1fsgPAJSddsCTWNu6U1qdP": 15000,
+    "HtM6jq25aNwFUwQ9uPiT61gd1p2u9EgoSqETUf65B3oT": 17000,
     "HtNJLp6SdpA8gSuk1DdfHmcsnhrYKRzf3xMyEoUoU9i6": 5000,
     "HtRm8GV3dVKjzF48baGe8nsrBkxySkfTxPGPPJ9Zgtd2": 7500,
     "HtaL7dZguFi2qoJvMbSKKnoamAfSgYqz8CpAWwufmzEy": 1000,
     "HtkT3VaUGaR12fRmEQmvtmNZRq3sqCWPgc4J7yPemgDu": 10000,
     "Htkxj53YCyyPkjSm89m5PHZzbUQHMGpFm1G3Z4RiFNRP": 60000,
-    "HtnSWb9x2uSAFydjUGuKjyV2ymeNdWArrmzKiX3uDQyb": 4800,
+    "HtnSWb9x2uSAFydjUGuKjyV2ymeNdWArrmzKiX3uDQyb": 6200,
     "HtoqYKjcdVnWRYsDzpBLv61mdtaexY8SYtH6UCN73BT3": 104800,
     "HtpVtqfo8APBHFMoHr4aunR8PxS1FNLL6Pf5STenYHL7": 5035,
     "HtqsKyvgyWkXTR4yeYb2UdSpsGGyb5t1JGBzEMX3pUUc": 36885,
@@ -234135,14 +239203,14 @@
     "HuT6gWXU7ui172MCgzPJoPqFjkVyuu7UTTDqDeP4qTBr": 1121,
     "Hubj3yMi8cGoEupQLsm9xUL5L1c1kBWUQDHXBbFUFzMo": 26000,
     "Huiyati1kXsk5Q2yVqG7tqKSXn7MoCKVAPTbqcR6oxN1": 1089200,
-    "HujMMwn4bEqemVa5wmHYRB2UJFvXHtTfYYCYgeRRgcrs": 614505,
+    "HujMMwn4bEqemVa5wmHYRB2UJFvXHtTfYYCYgeRRgcrs": 644505,
     "HujQLduu4nnHSXJz3TZjsvTx1LSeLpttt1vhEPGUgHub": 206400,
     "HumJ3Q59wZjxt8gyBwaquxd8Gr4jE5WVziUzY3LkX7zT": 2014,
     "HuqNwkm61yot5Sb6BGjaq4a5k5F6xW6LJ9bkqFWsg8nY": 1500,
-    "Hurj3tqyD8wgNPxT3Di8koZNBa2voBjtaDYG5dTdHvnv": 328400,
+    "Hurj3tqyD8wgNPxT3Di8koZNBa2voBjtaDYG5dTdHvnv": 331700,
     "HuwE9jDrFtcEQM6xUkmkwvBiKLTw4Cp2fKULfhF95L6b": 226600,
     "Hv16PCDkEBbcmwv1NVBQco9hGh35tccHBrpXynDfNAuC": 20000,
-    "HvBq5UvWvxr8vTy7Yne2GChC32B4ctpeU4G7mX7WZSs": 2000,
+    "HvBq5UvWvxr8vTy7Yne2GChC32B4ctpeU4G7mX7WZSs": 27100,
     "HvC9foTkJF1tPMcspAUTFGbmiGVDmRuGuSBXoNc3s6V": 10000,
     "HvL1YQYJbjYTg2UKaAASChM7oLs4TDYSaeh51h8mrnEr": 5000,
     "HvLihpxXeCAg1jJLdtTMDBkyt2nMKeXbu4vU2Dyaq6qq": 900,
@@ -234153,7 +239221,7 @@
     "Hve26rGyxC54NNtUjFWYfzAKx5W5B3oomQrMnasqPwX3": 3000,
     "HvhJyBqhf6dg9KDCEti3uAdHV8sZEv3Jfb8fr4csKaHX": 66000,
     "HvikheR7kAehvQA5N5wgzhKUNEdrXsA2dZ6kYX2FZC3j": 3000,
-    "HvpvnrVZ6FNF2ndsuRbgs4825yNVVymvxU3ijJkzDKS6": 67668,
+    "HvpvnrVZ6FNF2ndsuRbgs4825yNVVymvxU3ijJkzDKS6": 62668,
     "Hvs2PEEhozDtxW4eVXo6WLvuBuEMM9EmZ2EFvnk5SYX": 573,
     "Hw1v22xjQyWf6ejpqxsh4D9bpQ8a9PKakaVtYBTWBmdb": 500,
     "Hw4sEgpAzghHvtHVpfoiKMBPWToGqsvvgDk2DNEqtZpD": 200,
@@ -234162,6 +239230,7 @@
     "Hw8eoB9y41YLJ6uSRpmLneUNFJh64oMzdYgZhkiiCw9r": 4000,
     "HwAPMRJMdxoSeXt7tYSsE3vmS3F21oZrpp4H6x41yGrx": 29000,
     "HwJ5EnHCHNXXD3UQ7jLZyPxLhDUPaPTXXbvSJdhJMqD4": 21800,
+    "HwK6JYWGdqWVinKy8stXYp5qi3H86jtEtTCFhGwL6JsM": 100,
     "HwMebK2ccNg4Fiz476eHogJRW78RTroCjuLxXpYnkmfE": 5000,
     "HwSnPdh399qdPA3EiJybSku1JMNdeLkxzBwy9asPeHjb": 19000,
     "HwTHpsjh4qg2Qaa5TvY3xpoqZxm2qhTfTB3B8BtuwQqm": 18785,
@@ -234171,6 +239240,7 @@
     "Hwa3pkEgHDhLrSMKiRHM3ceUEc5SLRkQD4rGJbJzpoPa": 100,
     "Hwb6iNekUfT8Vz4eGjDHFSXQUjFK1yzox8PzDNoqWPHH": 100,
     "HwgCp7c87q1WkGMpw2jTz85MgJNjwMDyhZKtgeYMjU3s": 10000,
+    "HwgD9rzhfDYdyA1QmDQ6gBiCn6ZfTF9yGR88QbftEmTy": 1000,
     "HwgpjB7EctBok7qQ8QaZNyvRjpfJVQaUapBnTELt2zzW": 100,
     "HwgsuLdu4eWeketFt7PhMjiUQ2caVzSEjBWMTRkbxx17": 1360,
     "HwgtGpzyxJYceoPZwRRS6HdXe7Uz5TkCpkJ4c68mgfKN": 45000,
@@ -234186,6 +239256,7 @@
     "Hx5Zy9c3ryDjMARzPaZANNJX3Nw9sGmQhHdW1Jn3yUQt": 8752,
     "Hx7YqJR2z4Yh1knoyJ82z9xWPdho3NwzUrnJbbRcFtWu": 1000,
     "Hx7ewiVJQRPZ8SLgfomGRVbK3jzRwk3BXAtVVQpeiBWL": 100,
+    "Hx9GeYNyP8M5vxzHmG3SJ41RYsqWfYHGxcUUsb7mA2G9": 410040,
     "HxDuN3V2Av532QyZKadHVkixfaimLfJvuBqASQfBzPhs": 1600,
     "HxG1xFsDMdeoCNWek3kWFEUNMQzsPhJGSzghi1tiFXqM": 100,
     "HxN3fHbWwm4YCxSU8Z1ZKbphfvnuBB8W7jziWoBbPQgj": 23500,
@@ -234205,12 +239276,13 @@
     "Hy2TMoMwchdLax41pSnPwKLvnsQm8tK7sFGK69DxZVqL": 27100,
     "Hy7y79JvjmP8CGTLfXgTEZ5LKjYizxsuJw3uqWUELCUZ": 4000,
     "Hy8qqufSiA148uQmgArFgVYCs62WG7CBmscsLMRfAnnk": 1059,
-    "HyAPGPNckkMdzsYwurZzCgf1BgTmjuoBV7A4AnibbNF2": 292500,
+    "HyAPGPNckkMdzsYwurZzCgf1BgTmjuoBV7A4AnibbNF2": 306500,
     "HyHzGWmTYVDmyhGGnfgrpcqNMGKzWXhtGbMmuR1Fvaw3": 5500,
     "HyJByeAxcYiEq8zYaw1LN7ke51aheUguknBvWrJ5Vuek": 3500,
     "HyKEjA6aGxgEXo1xUkdsbNspToWx2XqZSpSQrutFWKJD": 10000,
     "HyNUs7AiR27Dab6V9WMnwbtruENDGnL5KATabz2PnQW1": 2000,
     "HyQwXtG9tmMJRrdE53sFDDLeQykVB67US2FM39EBpAai": 33600,
+    "HyY8UtMDXLw5hwWNJCXuF3bFQDSoxsUSXnY5EP9g3rSz": 3000,
     "HybFXCoiRrXLcVB89NB5N4svEAQJvvzZiCJeiESJwYKs": 41008,
     "HygYxgho52nSRmuHf3PR41iRNHNgmZJ5XnpejoU6mztd": 10000,
     "Hyi5ARmSBDeZ1wmArKGcaGnon58VNCnYvgwUrVNCG9y4": 8900,
@@ -234221,10 +239293,11 @@
     "Hz8JCm5a4vmqjK8Z8woeEfAAAmSWeFtbCcUTYsz15u6c": 100,
     "HzCjG8yT7voohihapF3NASKJQuvtSZb7KYbyXB7TfKY7": 47000,
     "HzFazUhJmXnwWHbQTTzmna5kpSwyDVsbB6ivzkUkw7Du": 13529,
-    "HzGpnSsyd29SVL1zc8xPR8QfBmevcRdYbFJzMDHvw8yo": 93292,
+    "HzGpnSsyd29SVL1zc8xPR8QfBmevcRdYbFJzMDHvw8yo": 43292,
     "HzKp3X4jkBFE28tbKMdHM6xfuA13TwmnRWczZhTjRtY": 8000,
     "HzQYr1dKd6ioFMTdK3Pk9AXmbfPneSQJMg9qt2MGJ1mv": 1500,
     "HzR8AarHtEcpUD9DqBMaAuESiWTaYnVKAhx7SJ4mRVuc": 1000,
+    "HzaMEb2QWnjegme6XRT4mqELZ6q1oEYtNV6NGqUFQvna": 200000,
     "Hzb3LNewyKwNrquBfAt1eqmr4XY5iVkDiZu2scvrNbX8": 100,
     "Hzeb7fFXez2WrMDCE3Tiu9MsSzENkkLRNDx7mPqQtKH": 14000,
     "HzemwUnfu2h1A9PMCj1BbQgUv7XosasajF7TqfAFCBmY": 11032,
@@ -234241,8 +239314,9 @@
     "J19wGR5XUcV9Gko4uEnw2UsanbjCJixurx4JxA1mZRhC": 2000,
     "J1BCFznS8MWiTc5Wpoi4tondtrWWpyMC4a6NdD84k7WY": 114,
     "J1BSTPmfFesY2Kv7RnDPpKDvLGbmYNi4yzcG31zhX1Xd": 11000,
+    "J1CzFQMTuzXCcnEC1W5tKQdNY5vAYac8LtBEfUFatNZQ": 4000,
     "J1DEp232HhQtqMUv5rgk6MYpGxoDyASR7u2pTmSPWHPh": 10000,
-    "J1Daeqc8tpgRNgH1ZNzzrbNHqPzfTFTVwGDPXD9pnXJA": 34600,
+    "J1Daeqc8tpgRNgH1ZNzzrbNHqPzfTFTVwGDPXD9pnXJA": 31600,
     "J1HPNHcopFpEJyc6Teazmoma2ajkp8a9FvGjTngHpsBf": 1000,
     "J1J6zVmdxRXaoiyqy6GqLf19tHgxZQ8fdL3K4xR5AzGk": 10000,
     "J1SVgUxTBq6scPsNGnaVmD2sPwcRqatD2BuBFeaJ3ffW": 1500,
@@ -234264,11 +239338,14 @@
     "J2CYrboMANjv1AbWDHkhkQS5azSVRZ1S8836R3v19FUY": 18700,
     "J2FQquSzr9FbnhRyuponk3Gx5yV2WxrkTEMPhZ6gbp1G": 1000,
     "J2TDTvBUwc8Z1C9UZNdq9yJyhNwTWBmfebxYkWe7ep1i": 10000,
+    "J2Xs6DQg3JAE8i1iy4GnDWFEqSDzaC6rgFuMTj3bCuuy": 20000,
     "J2YQ5qAA5TZsuEEmRZAH6DWXnZzgJTJ8TLpxsMG7fDUq": 1042,
     "J2c3vWoJMbmmNdXBh2pfEDMFvUVrChHqJi4r7yFwjc36": 1000,
     "J2cs9SNFAkn9wBuJbMyzxtAMwXCBLdCBuR7CDJutuARt": 1830,
-    "J2dr6WXVZXbSgKx1Hrq2x6Gb1AGjrcbwdHz31tvfE4Wx": 100,
-    "J38oPUbTosrQnMWsQZzwBG6LU2c6dQeUBEwWhycucjLa": 1468964,
+    "J2dr6WXVZXbSgKx1Hrq2x6Gb1AGjrcbwdHz31tvfE4Wx": 10000,
+    "J2pN1LWb9vAtkgPZtxytUBHkzysvgE6rUAZbdtCpNLzg": 96000,
+    "J2zvP7gT3Cpeu7aeRbrVD5z8Q5E8hcDHmcPMFR85ZNy4": 10000,
+    "J38oPUbTosrQnMWsQZzwBG6LU2c6dQeUBEwWhycucjLa": 1604800,
     "J3BjUkeqyVVY9nZsp8EK6BuFX7SCMEpTvWTHC9r4Hhda": 2000,
     "J3C3UTqVnBbBxuD4peFMWymA64Ngy93jgCfkYucSQVa": 3100,
     "J3GMgnMFivmAQNrDo5BPJgEvzTsHmyCdNwyYkcdC6ei2": 10040,
@@ -234281,10 +239358,10 @@
     "J3cyLxjmNFawpFnkuRSRzBJD5ApFJK8zMQ8uv9GJe2Kc": 9400,
     "J3ggWRdS6tfQBnMxh8iKwx46MMWiCJXjQJYYU68gvNP3": 7484,
     "J3kXea8REKR4NHTf5sV4BQoc6f1WUCJnUnRtMQSUrnao": 600,
-    "J3myuDotgJ1EUq5PC38TfMuz6o9EtnSXgCzVZbgXK5iw": 685,
+    "J3myuDotgJ1EUq5PC38TfMuz6o9EtnSXgCzVZbgXK5iw": 41685,
     "J3nP9bVP7Lb8gKmDABTV2e3j2N5UpRJUu3FgPsnBopw7": 46000,
     "J3vJJRF36GN7F5xDcP2R4hdE3j6fSPmfi2PP5YTnhXju": 5000,
-    "J3xskwYtpniTWBbyc48uemUg46pqjAdFcdsf1FDseNCx": 297972,
+    "J3xskwYtpniTWBbyc48uemUg46pqjAdFcdsf1FDseNCx": 417588,
     "J3yLWYddsSeUNuY2sJBP3oDQdU8WmBHEvM1WZwGW1iVw": 52100,
     "J46FbTTPbFxt5fTgt2AC3FoGg2kkk7e9AeWp6X4ogHQi": 347,
     "J4ArjV3Rau2LqjxwYaCdVk9nCFpvUdWU3gQprsKQCk2Y": 5000,
@@ -234329,11 +239406,12 @@
     "J5wCregcVUbEZmcu47aK9EVZYFbTTXCXkwetENCqauHP": 3000,
     "J5wQL16NMHRA2NAPxdJi4aFwGQXfxcRiBxx2vC8L6CaQ": 7000,
     "J5zDEPpRkyoj3xogEoyDeCkBwJ9koYvpCBDG8qHZLjRq": 42360,
+    "J69VjkS4zRa2HNAvphVPoMHJUZMGpfSxpehi77dzH7qN": 5000,
     "J6BM2Ro1QJcbWQ1gMpfRxoTKSUcJSPSQuT8aZQhczx5k": 10000,
     "J6GhSV9scszatQY9mjLb2hcrVeGGBkTfHyGJkvw495cU": 1200,
     "J6LUNX74TsoE8VrDTbUeP7BNVyaNAKdXsVUajVPrxMNK": 2000,
     "J6PTd6GfC2QxZjU3kH44sdFMTYkp5ohCbfbkxqmoR8wG": 1700,
-    "J6PxnWqhEo7ehc95g1xKcyMNSz47VXau6MBChK5oaqBj": 21500,
+    "J6PxnWqhEo7ehc95g1xKcyMNSz47VXau6MBChK5oaqBj": 29500,
     "J6WXi92xVN1YwMQGzuCYujgGKmgVwWhs2J1YxRRggYre": 35000,
     "J6aoG8d2LKieiB8paRrSymxQzcHSAZTeSSxL22wfyM8E": 100,
     "J6awkVha2td3RkjqoroTB5ERuMyFCRwsRh6jshn6NRHX": 100,
@@ -234353,7 +239431,7 @@
     "J79adPmZUtQsmdN6H9LhZA47EZkUNhQKJrJfxtQb1Aaf": 5000,
     "J7AiLXzpc2BSvVJc7h7C5yQ1dskfR4aqXmm13UAzMY9F": 2000,
     "J7AuxK8jwqn8xFRRNu3sY8n9G7q8mJYGzFk3Uyww8d7X": 3000,
-    "J7EVLLJrgcjnHqga1N9HKgzVKwjYw5uJM4oabi9pS6dG": 97386,
+    "J7EVLLJrgcjnHqga1N9HKgzVKwjYw5uJM4oabi9pS6dG": 93986,
     "J7FHXpaiaECW7kxpBcLhyY8cEUxh9Cr266VfiVT9aPYU": 2000,
     "J7HhnamLQSw3FZ2Fvoib3vdAUaQxU288vz4LD8vTYCfT": 500,
     "J7MLE4PCdA4R3nngvFFoQVDdkZsCDpDLZduxi6Asc7h8": 1000,
@@ -234365,19 +239443,22 @@
     "J7cD51dwLQpDMdtvkZLXYjw1GQd1XfM6UU3NYpT5A4ck": 1107,
     "J7khg2RX5ZZmpLdbmuRPTZpjCkxFciy5F4VFsWV4wnnC": 758239,
     "J7n9WYvVtyB4Q6sVD8qsbjtrdfRgNhDLX1t88EAtVYWZ": 890,
+    "J7nN6ExdKns8FkGTCpGwqw7A6167gfrPHdSfKP4y3yYd": 23879,
     "J7pwgT3sFr1dwXHKc8UPNpwGHgdmGGGTbhBGX8tj3FoP": 11000,
+    "J7t7UEjGHRE8mrLo7iFgRXpFrQZjUi1BTiL9wxwP2q3t": 5000,
     "J7wDBtm1w11FzsqC2pRLMVV1iRm6K86JBxy53Y8UF3G2": 50765,
     "J7wQrfi2i84stG36T6dUU9ZvGDZY3JkjvgNwuaDej9zp": 5000,
     "J7x4XJRdUQ4M821c8DQqLrwB6qbKnmjJ9B8JR42yemPB": 1000,
     "J7xWQzEUn9u7LqQjY2ot4nLFX4MKisNq65E9vWSxLYb5": 5000,
     "J83EHusxLizLVifeBMwHHZ5x5GAYpgeENtZt3mnW6gto": 25000,
+    "J84sCQuyL2gykfMWgZj7yoVCpueGsV61fQ4BTVbxMQEG": 14600,
     "J87ExydNAEPZnK7WGax5PJ2upmmVpZGxsSygxSEVJ8SU": 74024,
     "J87YKn8AkXHpsdffXij1j7hZtT9CWK7sMcBqZQwkfF1J": 65000,
     "J88n4xCyh6uU8ehKMETwimkefpxEvc7i3aq7aLyfS9qr": 1502,
     "J89aJ4CHug2VZsj61G517XPTFRTaufeuxAkK9MivvA2k": 5000,
     "J8AB9eAhqc6PPbPwDYMLQsQgjSu7ioiRZ4sMXUhQkotK": 500,
     "J8CW9ARMK9iSGxdKBE8egmZEPg3MapWLjUCCyadbfnab": 15345,
-    "J8FKjVNkQ1rbEgKvKa5nEWGhJ9m7UZySv8gYjomyK8Y3": 100909,
+    "J8FKjVNkQ1rbEgKvKa5nEWGhJ9m7UZySv8gYjomyK8Y3": 70825,
     "J8KEHNwmG6uVsv7TitadriBQixc7UfKa375pHRBxsWHX": 1023,
     "J8M5SDg5vPkWX6bGfagVnWv8DYhMCvQJizJmNASv2p7T": 21360,
     "J8MZ8e85MBduKico9DYfepz1ganN6qpzmzdEdA5bRErh": 4000,
@@ -234386,14 +239467,15 @@
     "J8W9JU9Y8sGiVyzCodyrx371augsEopxL6KRDAn6AT3e": 500,
     "J8ZCbJQThyLvLXK5KTeHpJwkk38pKajjjjYhoXvxjELC": 300,
     "J8btCd2NDEfJ7sFgZLiEvW1eXR5Qx5qPkhgzQnL8mvS": 8600,
-    "J8btCd2NDEfJ7sFgZLiEvW1eXR5Qx5qPkhgzQnL8mvSY": 30100,
+    "J8btCd2NDEfJ7sFgZLiEvW1eXR5Qx5qPkhgzQnL8mvSY": 45100,
     "J8cJhy96cfdLnPr5RfekKRvTXnRCef9ugqEpajSxXzB1": 1000,
     "J8dYvwgxJ79VfRDpLTophpmza5dk7bpFwbMJT11a5vSd": 2000,
     "J8gQUUbz2Kie4TXQxUYKWpABkQ9wmuJN3cqEcMzXddAo": 2500,
     "J8pgEhMDaf2xF8gJp8zSFtrA3vg3qnSKoN2mCxVXtJet": 10100,
     "J8sA5t3cLYApAAypfBYo6fZLkrAtE5EkhwutrJ5KcaCb": 158456,
-    "J8sxV22rNKHa2FLAdMsvqRdNfmm67i24DVYKN6D5Rm8C": 363900,
+    "J8sxV22rNKHa2FLAdMsvqRdNfmm67i24DVYKN6D5Rm8C": 353900,
     "J9425WzW295hu6tBqyCcWhzudyxCeoYC6WqTAEcezVsY": 1500,
+    "J95UzfXJcrzwL1E45SKahAFdX2xN1NuPv6uv3n5a5Ldu": 900,
     "J9EbSRRgXhpt46TCFeUL1oPALAoZvRLagoZRgi8JjqQV": 4000,
     "J9EyvETviAUEkBbjWetikfm58pe6Pv6FN6aCoPgn9kmu": 42200,
     "J9G825tPE6zufUhh2Ba2kSuRut57RQPknBTRspnHwZxn": 5100,
@@ -234414,12 +239496,12 @@
     "J9qHfwumd184P7bKJBLfpCXho1KDDpNsYGJ5iLq25q4K": 13600,
     "J9rAMFGr3XQv7suSNvWnbhnWJgF3CFQRAsCKVn46u6NH": 4000,
     "J9so9ze93TcbjYLXDQ5bqRx3SAfG5DWVtjASvBznLxLV": 100,
-    "J9uTPAPE6zp57EgCoDpMvQrL8KafjjyqceCXnjUza63S": 31804,
+    "J9uTPAPE6zp57EgCoDpMvQrL8KafjjyqceCXnjUza63S": 21804,
     "J9y9LZ2Ciyc1PeCAFtzKTS5EYqjmVwuwLqEpaaVRcNy2": 100,
     "J9zVUZRvx4yermDPSh8YhAVdFdJaDWAq6R5JR1WbP3eb": 52525,
     "JA7b54VEL1Q1oTuMrJvwKnuFXuBBcthqbceAmgeYMvd3": 500,
     "JA89eZESKbKXh3rpHVhNBPvhP7vMt6jEmGyAamn86HXG": 15000,
-    "JAAQXVRDq1mftZ7ERredVS1MZRPo5mqFPE7STVHPUZk9": 20905,
+    "JAAQXVRDq1mftZ7ERredVS1MZRPo5mqFPE7STVHPUZk9": 59405,
     "JAH4kGGAESAJ6D6tEEWocf2wysrWfHGGh65hFTDZYNiA": 1000,
     "JAK5AsWRu8XtJRfFbMp3GwTM9hdvSUkx7MSnsKuuqh6R": 5000,
     "JALQtdweJY5WXPLrxVsamneb4wzwxCzvHwxzTjxrXSCm": 300000,
@@ -234451,7 +239533,7 @@
     "JC445zennVjK7B3n6JzjXkzoPnzMhXDEYt2yz7ozsw1U": 500,
     "JC5iAAFsvMQECY3rcoUmWTi1QmtWsWNF8htD8kND4VH1": 12100,
     "JC7gbr8WxCMgK4ed58e8scep1GfSWr6RQifWbp1yNUGh": 1000,
-    "JC8JNNLHCB8RCJxVu8b1QZ6dSkwkDSKLjWDwjuu3GFcy": 192200,
+    "JC8JNNLHCB8RCJxVu8b1QZ6dSkwkDSKLjWDwjuu3GFcy": 259700,
     "JC9VJEYQt15duPkjhxKn9wFtpk7kzYE7WcXNXE8avr2g": 19984,
     "JCDFfgMfj7bgg2UnWoLMJBjkYuP6MWtiYGgxGW43fWpx": 2057,
     "JCGN48u7CW3aUz4Bed9ZcX79PwwfFE7rryWP1pBQ27sJ": 4300,
@@ -234482,7 +239564,7 @@
     "JDeZQjti3oputfa2cjcorW9ym2vSvgHng7sJsrKNRYBe": 8000,
     "JDfmmvYDDVgDNtXgA3LK1AbArhUx3TxCzDamUEv5JSbx": 18500,
     "JDgaaemzfGyD7xasCsu3X2whHGkVtTE5w7iYYZaRsYUP": 1000,
-    "JDiD2dgmJBV9zr8RjRrQ8u9rzzo6eUEoL5XwB7YVz7cx": 362888,
+    "JDiD2dgmJBV9zr8RjRrQ8u9rzzo6eUEoL5XwB7YVz7cx": 372888,
     "JDjt1UxTqH6YSMwCepk4TYqnXusvZkygwUcdfzTRbxtZ": 1000,
     "JDq37MifmKmCCZ4q1SupYsx7qxEHjs4wn1ybAo74xicS": 19000,
     "JDriUsRjuwgfwzy2F2mj5Bq9n2iR18ti8CFUsAUoKq1m": 2043,
@@ -234495,6 +239577,7 @@
     "JEBGPDgBsAUDWWMyFp32jbWLsosrknvSHiN72xwEh6fC": 600,
     "JEDn4f5zNHv3HTxziKGTPHsbyiFeoKMeDFUdNu3cSua": 2500,
     "JGwbxb9stb8NyZSKxncNMnNGUvVZ7EYvjPpAvKA67L1": 700,
+    "JJPms6wyj4YGSTTZbemjbyDbDX3dUXQXB54ihzpTjUa": 37400,
     "JM23t2k23veb6XKYdBr9HeKWMoq6iyKxuXWE6okvcE5": 9000,
     "JNw5r4gwhkmsCiwBZ8qou8VTaYeDvHQaL5wjgH3YgFQ": 1100,
     "JTT8oiWCF5xmL7zYwQw7EmgyNht2jC5tnJp4yiTATfr": 120000,
@@ -234502,6 +239585,7 @@
     "JaLQcmwXLeX1Shs4ZX4YNqrgMUTDyJakxJkmnHpz7Zw": 2000,
     "JcMWk76sdNJjiNsh6H8KvVNgEafxnt5BbgNTZVoTFf2": 9000,
     "JdtaupAkNk5qTUFKhuAcf36uB4CjgRcQrLqaseEaAGQ": 55958,
+    "JigS6MHf16eC13x26cbjaeduDWYwmmBXp6VbQfNezM9": 2000,
     "Jioqg1YAQ2X375hmfprUtUAZcrjtAXsKq6ZseVqGNSU": 20700,
     "Jmeuw1Pevq5UQgzjFyVN6aifgcs6xr24An6n6emUG2c": 41000,
     "JoMQsmDSVymK1H7rTxn8JL6A9K11MDsiwXo4QXVDybD": 3500,
@@ -234511,10 +239595,11 @@
     "JsKznvPHBRGPuuBDLZotGFZERsTgkzpyycFdtz6MeQK": 44800,
     "Jtf28LHKhL6ySEBuhk2W22HyzUcVcYtrY5agg2RQy3k": 5100,
     "Jyt1MTEHQMH45Z7unuWQxqMDtqKQxagXnm7V4dERSs8": 17000,
+    "K2PfCpYSQzgsZ65vg3H74jz5oF2kjP4kxE1g2pN22Tf": 66100,
     "K9S5oxZPRALw87SW1T9UgF5JueFDwbm5843PEnL15q4": 5000,
     "K9g9xdVEo1nSFcKLK98oQXivSBMRLfuty5hEjXptQBJ": 500,
     "K9rQAVy18vBVNQWaadawwqCG9xjcR1jttPJpwkBz72s": 100,
-    "KEREewfcGtKtZ8sFqALQBJgR2GMdnrPJ17WbKw1qT3f": 11400,
+    "KEREewfcGtKtZ8sFqALQBJgR2GMdnrPJ17WbKw1qT3f": 1900,
     "KFBjhrnSWNznXHvauHQPmN3rBSPhunWtWmEze6E16VZ": 11176,
     "KFifXDVbsz1fppWaRAy2XytrtvGUwttZzpyUp9DK4ti": 16500,
     "KHMFtntjWU9hSyd7cqDpTaCsDXRBQY84bvdFkmyoPMM": 5000,
@@ -234528,7 +239613,7 @@
     "KZnd2JWpEg2fZik1j2jG528XoTyyDMg1umZKfEn3nhY": 80600,
     "KaouRyZJ4fPhNF2UE59uHrQMH52HgGGrFfyW3ciCkrm": 12000,
     "KapaMA2XogtEuCRbSEPWTgABboeZGftKqt7JfiL9RR1": 3000,
-    "KdGkbqtWs8hqyxMRqzvzFQ7xDLM6Gh16bbXyZJsh8WX": 327475,
+    "KdGkbqtWs8hqyxMRqzvzFQ7xDLM6Gh16bbXyZJsh8WX": 328561,
     "KeEKCdm6Gd9vSnJfJdDsSZxLVtxoPuqu49RdBMvYknW": 111600,
     "Kk7Ko8B4YbnYmEpGhSKmtynAzKpYZsvprWvY1jpcopq": 2500,
     "Kr2iZWMz4YFMBMuEoAJM7Jq9R3ojBRhPJG2cCmuFT1z": 2100,
@@ -234549,7 +239634,7 @@
     "LZW43mb2YntcE4SMyEh6jnvM62wyAxeZcaRewXhvpYX": 10000,
     "LccTiBUaVdkR7QScRR24TaxXxuCsXw9D5wwuZVVEhhQ": 500,
     "Leh33NpqhbfKpvqMez4XrtVgy4Y8fzK7WymMWyaB75Q": 5000,
-    "LgLcNQvNnWrFPsfXoQABCsnzcLiCTi2sjVVVBLptyTp": 1500,
+    "LgLcNQvNnWrFPsfXoQABCsnzcLiCTi2sjVVVBLptyTp": 21500,
     "LhYvuKu1MehXFxAF3mZZ98ZHsDhkoucgyef4syeVenP": 2000,
     "LiChPhHCihtMJwTamfL6SDAZH9LWJz7XK62JEMZc9Zx": 1168,
     "LiChYwGeUpjX793QHR6HV3izPMRute6HkBNtcRdeRCP": 10339,
@@ -234558,12 +239643,12 @@
     "LpbKHXM4f1uDHbzEFvmvg9QzgQbWNqSUjcpdq9nXrRX": 163000,
     "LqV82NYb4qUL3VPcK6V6EiE89muAAJnnMfZ7WEQh28m": 113300,
     "Lqv4UYy6qYGXtZhRVs6ch4mFkcQaf61zrvShf2gCopo": 1000,
-    "LtBFh6fY6qs5xThiHE1MtPBqqkWhUH6ss2rQPunvXUf": 19800,
+    "LtBFh6fY6qs5xThiHE1MtPBqqkWhUH6ss2rQPunvXUf": 26400,
     "Lv3Mw82skcBvjzYPYuDsxSM2Jj39PAE8yux7eyY2dYx": 15100,
     "LwHsmhJnn5kp6pFKsejzKDuP8fv25hSvjKnNYeMrU3o": 700,
     "M7JJ9YZZq3cT4eA7YcbyQeyNUJeQn2zsuUhfmxuqD24": 800,
     "M9H11dBSS7nXEwAC8SGTfTg54hUjN9Ky5EwRpVnFLgd": 10000,
-    "M9fuXaaSbt4amrZUFdvAKwPpmeRaFJU3aqw2SoCLkpy": 31300,
+    "M9fuXaaSbt4amrZUFdvAKwPpmeRaFJU3aqw2SoCLkpy": 11700,
     "MAywChDtcMGuoZEKjqov4W11ULf7F8cFFgnsuYfZU4k": 23007,
     "MENQP919RXTvvYGZJ5wciiA8fHeW52X3kPLafVr6Jf9": 20000,
     "MFxdpB8bVfZciDcvaU5USJxM24WHdSFNYbw7vCug3Jc": 54000,
@@ -234576,9 +239661,10 @@
     "MXrMk5kqc19HjEgdEu6PBjXgii18LKCFrr7KESNRtqU": 1000,
     "MZp3f1eKVNisNg2vKiiMNeGWRZyhKVr5TJx2KoEAFih": 22500,
     "MaGVVfrNsq5qrw1YVxAEMwNFEwx4vdV6L9FHNB1MGiZ": 64230,
-    "McpWc5w33CmpHgAyj2kuKXP32hnecUvF7PiJvQF94Az": 76700,
+    "McpWc5w33CmpHgAyj2kuKXP32hnecUvF7PiJvQF94Az": 101000,
     "McwiKQsz5KoYq9oGSwG7GijzdZAQeoZM1w94Sh5AsY4": 10000,
     "Me3wTGScXmhCt9GzcyGJy5MwuJfuHaZvZ8LasPa9LjX": 62400,
+    "MeCgZKyz2J6DZqo2TDpeVRMFT4ZRFnq4zupcRXhFyVx": 4000,
     "MhiPbV2ziYietRzDbTJ57Ay9awNCKbMw4MJyRcdHQNQ": 12000,
     "MmxLxqVCnfXzXX1WwsqWmgcTSTdgtzQ8zhBEjsub5fW": 10000,
     "MoMaz3ZMhR3TNYnNekciszxakNg9BXWLQsgsUw5o8vC": 5000,
@@ -234611,6 +239697,8 @@
     "P1venn1p5Fg3vTNXXjRzQ63rdxTgE4kyaF8tdaUsxUz": 8000,
     "PDKXqpfgiCpxvwgsD4Afcko9AyWhgwpJMBmRuN9Vo2Q": 13031,
     "PFwTYoqwA5tiaZEyJ6eR9AkwXTQSC5jZX6utUicmY3c": 601216,
+    "PMq8X8GumeYRJH815DdSbUGnk23FiosRaJBAsgzTUFJ": 10078,
+    "PP2UqhkyRP27G2B2Y39HiKcJ1uL8wLAUYe9fG6Mw94U": 2855,
     "PPAM8dihcsEBsTf1jAwjdbGc6xTg41zbH8BmR2JHsUY": 414,
     "PPvV6cavWMbRY89tPRpYKaztGfJ29dtSwJk8HFx3V5u": 38000,
     "PRsZcgGeYcYbdY6vr1fqqJTgCSET3YbznkS13EBgxTS": 4000,
@@ -234662,6 +239750,7 @@
     "S2YWhmBo94kwdgfED1udwjNg7WCxSRRGBhMnhk3sxyc": 15900,
     "S68AEchus2syzW2xBY7giwwLRTnhZ3uaoWSFgnd6zCs": 12000,
     "S7HeZEhLER7Hd9KU6EW2TJgQERMe9v2fMAoAVowS2R2": 5000,
+    "SFr9pomNMLDKP8nkeW9uD6RsNFx3PmRA8CY7biMAcFE": 6500,
     "SHD8n8qZvjsYACDKgJZk3y3fLE16FhCdKBUvf2LmiBh": 3000,
     "SJDbDjyUATjdn7WaZs6n2TRpw62JJ1y4PJwjeQBbBBS": 25146,
     "SKSUFqvqCduXboyJsmLDweFZZQGGHDdJzkW3mdmooUU": 17420,
@@ -234673,6 +239762,7 @@
     "SVE1XBK6XTqT3X1Dy2T8W8WbKor627feps8g8eXaage": 117038,
     "SYz3mgn3uQPf2NypWCTGvU5KrtmGESGUiCaLPmFEqqy": 337260,
     "SZQmHWBy7gLwKoapVBmWv73pmE5MwuTrp8g33fcdsVA": 768800,
+    "SZd4h9wqykK7VnPHt41S2zQUUL5ADUtcWL17VxamAgj": 95000,
     "Se7NDVPEQhyehUoP1EP966aJFdA86zCWNZFu9i7s6oL": 8500,
     "SqYK33Ccaj9oRRFj5me387dorrc3NfGZB91mMJ8phV2": 15000,
     "StCiAsfVaYn5K6FxBBSdpK2bWJgpNYQbSujuUNaU4Ug": 20940,
@@ -234680,7 +239770,7 @@
     "T3AC1wnaJePMn3oJvfVJnbdebum5c2SGWHwZEmwNKc3": 7100,
     "TD9feUztwU6x99RR9KL18Lqyp3WaGaa2poxaGBtt3jo": 10100,
     "TEKShhDTHHuTujQrEiLyvHGaMmyqJXnp2TiNQFbM3xG": 2500,
-    "TENGx7WtzFsTXwnbrPEvb6odX2WnqYcnnrjiiLvp1mS": 2702784,
+    "TENGx7WtzFsTXwnbrPEvb6odX2WnqYcnnrjiiLvp1mS": 2888856,
     "TEnMxF8GSS1d6EGPWZAwtdkEmCaE11fsxSTLpgX7N84": 2195,
     "TFpsGCFjPRb25QjAtwjwS8AVrtASXkETFHprykvDJjx": 5000,
     "TLPGjXYsGDs8nichXuZPiKZFNbVwkWRxA4JTxPCdtEX": 100,
@@ -234690,35 +239780,37 @@
     "TP2kPMbYxwbCjTG7U9XWozwoePveH53pptqZ63GgJAy": 100,
     "TPGwBQih6n5vbAF3RjrBvjoVfQe2pMNeJFY3MYo2wXm": 51600,
     "TPvvujqte7o3uh1v5Kg4p1xSKSxjneUxnx78jcLGfFJ": 59753,
-    "TQAMxeKEYuoHtysDKjxYGUbVDdtaXzs4BaXXUAquf94": 6000,
+    "TQAMxeKEYuoHtysDKjxYGUbVDdtaXzs4BaXXUAquf94": 10000,
     "TXERfbdXnUJs4hACo8cLK2a8Xp2vksKvnNAQty5edBd": 500,
     "TY8EWWfi6NbiBMJwLREbczqAciKreaw5aLq3XqaHMxJ": 70000,
     "TaC8VAQo6YyFjMsh36CBsKoeVLfWskJpfrfqCeGq6wF": 19700,
-    "TaJGgFayeGBouUNJcUPwvGTQWxh9iz4ghDGD887ZTSe": 71048,
+    "TaJGgFayeGBouUNJcUPwvGTQWxh9iz4ghDGD887ZTSe": 72048,
     "Th9j1rhn6j1WXMyphTVHN6nEyvyDnJEX6DEumMcjGLr": 4004,
+    "Ti18BocBC6aBjuxNp8BzK5TA2ajwEBta6zQuw18FAUU": 13300,
     "Tp6sL7tDERK8a9D9RHGGqmFMBoe13vjjMYQLDyP2bDY": 5000,
     "TpeQ2ycpXviZgdWU6fcWxnqqdLtjMFqbELCN4pJ3gp7": 5000,
     "TqYKBp2gvcmVAg8wXMX37cbwtHU6HJGXA2JSc7uFXvV": 1000,
     "TtfWNZjqKYxvxcVs6fYdLuQm9sBUfzPVt9xaaLnQvw1": 8000,
     "TyRiDkwCRiSMvSB9Q78eMJwfx7nTzoHb3wyZbUxwjus": 15500,
     "TzBsa4xnGkseAxLX3MKia4QsLCh9rUdcoAikwb4jEbj": 1000,
+    "TzfE7tPpbTPswrKjo1fdyoXJ4fQiQjhE1Kr16xxmqpr": 6000,
     "U3w1T34gavSgQprcsF2byw3aANenPSvyAkzreays1e1": 311760,
     "U4LwEDtqYRaCtRKkK8LawvgFQKqf17xvt2hnzBC6TQq": 38000,
     "U4mMgKTAMhzcieBtHfdDSdMPb7HooVzJSoqbu24V75U": 1032,
     "U5w2UXB2Bp1hhRHgRCzqc9Wh8qRJ2dBLjNrQQoZ4NQ9": 5000,
     "U94Md6CMt7VdnXhUsELWsnZ1ejUuPC6HEmfG6b6irZz": 5000,
-    "UAC3TJUcQ14Qv1677JbM73eURXJagXuJkJwxciNBRZs": 124100,
+    "UAC3TJUcQ14Qv1677JbM73eURXJagXuJkJwxciNBRZs": 76100,
+    "UAYr1jjmHaEJxZt6vHhyLmBkW7H6QUPzFPFTbhAWV7K": 90000,
     "UBZGyhYEWWszR2KaepWxeS936in4nyMA9WkLGoDV23z": 1600,
     "UCbTRDMM2iEuiaTAcwgupRHMu6LjJHc8BdeDMK4kpsc": 30000,
-    "UD6HCyq2qfxudunzgATa2Zm1Woj3qPKVFf8Ahpj9ZEk": 10000,
     "UESrcPmcnQiDSAE7v1mQ5sdVwSmAi7r6wXyXnJ4k3sN": 800,
     "UEzt1BKqmEbxDjp97NgAbHFm2q9Pezg8XLsBcKzST8V": 5000,
     "UFNhZU2g8kaWknRGJiazxBaDGv9nZ8TYo5UiofXSYhc": 20000,
     "UKJT7Rmdh4J6khviXuW39qyrjcCKwKBDXb7Z7JSbUe1": 13000,
-    "ULzC7wkauFAeoX7BCPcjzkUrj9T9nmzQuAR4CYergHK": 96282,
+    "ULzC7wkauFAeoX7BCPcjzkUrj9T9nmzQuAR4CYergHK": 123751,
     "UQAttv9aPcGfRQrhmR6qRH2omSqVHRSH3gjAmjYdxPj": 36672,
     "USd3mcHFYfQWNjaYekvjmuMB6fTwZeSZiZHYLEyPuzM": 1500,
-    "UXgCyqjqbxT3ZS4aH7NrE436S9RbtKnYUZLR5RParHt": 186216,
+    "UXgCyqjqbxT3ZS4aH7NrE436S9RbtKnYUZLR5RParHt": 206216,
     "UaDP8nEzNFfeZYVkRA4wfuuMD2kzpQhMNtrtwTWTGTA": 10000,
     "UcsictGSD5ysR9ZQenemTQadZyQ6f5h1owNequJFP5J": 91900,
     "UdoSwPqZDeEYkrkpveH4envTShmbQDYJxXGzPwyY1CU": 414,
@@ -234731,19 +239823,20 @@
     "V54n2ZVge3L1SBeV2gtS1vQB5K2iyJUWs45b2taeZTB": 80000,
     "V71CuYi1P7iZTqYTcX5ueCPCVmxEBsmHGP4gHCYzH9N": 49900,
     "VC3UPeHkN8x98EhMQN1zJ8VD7PvwMf95CHF79ZdZAS8": 100,
+    "VCdC4zjwhcBHP4zUMDEC4jLCoX8MnFacHFiV3ybwHwA": 1500,
     "VF6RaVYq4f25w31NFCfAKh81xMEHdJV2TmsYrQYbiCc": 51600,
     "VFzWqHGmLYSqRKvKdqsAUDpDKmUF7rPxgkWRvLR545n": 35292,
     "VGNFqkincTWUrzXLUp1seekwPgisNTGFo7fHcBZWtw5": 4350,
     "VH2AeZqMNPzoALJGYbxCWyCcek6PxuKskUCo6XWZq5a": 23000,
     "VH3DQCBq43WydwhS7JJGthzvT8bYsZkL92d5givdAzE": 17590,
     "VQ4xUkh8U58iSHSStnWDcV1mHfNZn4K5kYvm7NAMs8w": 5000,
-    "VRgn9ZivAiRUeKGZqXsfR21hrzKHzfSduCskSEDssDh": 5000,
+    "VRgn9ZivAiRUeKGZqXsfR21hrzKHzfSduCskSEDssDh": 8400,
     "VTo6RQEUj4jLD194FHKHn8ZHDAWgtY1SJ7ii4htkwea": 300,
     "VYM36AjBqZhETaF5H6HNRMyuuqDchDQwB5tnqygqUk9": 1600,
     "VZezgA7EWHeEU2m6vS6uBoreF5rMypsALpTbohWkRJY": 1000,
     "VdoQPfPyiNwDJzaWnHrsiEFjgotVaGEqaKTR4iqebn9": 348245,
     "VeYvkUnKaat5Gcja7GAQvsawbo44WBLK8VoKRyA7eyQ": 5000,
-    "VfiGF5JALxCLGEfJqsFagM2WA5z9r3uYWMpXBuSkRvK": 21000,
+    "VfiGF5JALxCLGEfJqsFagM2WA5z9r3uYWMpXBuSkRvK": 22700,
     "VjZoosbamnb9djK3toiDBmckeMz9E6coLgshRkjkMbc": 23508,
     "VrQeGKXpQmu89VWGJn7FEU4TBJRk4nDBKCocePMEKvh": 7253,
     "VxCvDGrk5N3DHvrQxXsMzRAcbnMnrAPvC4uV4jEWzLP": 60000,
@@ -234755,6 +239848,7 @@
     "WJYmEcWBoKfavcw9LswkdPdJq7Ctke4pYfjxiAHN6UX": 5000,
     "WLk6QSLLoxVF2x7DK2PN4UE4JMcZfgQgz7PENUXi1rv": 1900,
     "WMGWhAM7xPw8zkpsBFDuQ1jm7v49zqn6o18EznoVySg": 5000,
+    "WT3QT2JDqJsBr88cVE6dxFLar8xtCBB9AgECZ6hhc5w": 22520,
     "WWuFBWRBs6TD2EdYcc1PscBZDwCXs1XzcMKb3JV8vb5": 11000,
     "Waw5pdPmXKNmtcHrK3wZ37dUDHBjmViCZDUUcC7sTVH": 586850,
     "WawNLNqUnB8bb3SWzf1Bx2it28K3e5tkWn4fcGrn6AK": 44142,
@@ -234768,7 +239862,6 @@
     "X5kJYfbeMTcXUC8EkoqLJaBHAPAwN5svsw3V76xgj4X": 5000,
     "XAZpo93Xrv25bLVppKjHvAZMyeJ8gyLH1e4rvfKZFJm": 70000,
     "XBVPxEP7io3BCKJRcjPaS7pVHbe49HTnf4Ejk4r4647": 5000,
-    "XBzDyoGkBLaz6AwjfRddr97V7aJ2BbStTjvJABf9JDM": 7000,
     "XCTNanzyMY3k4ZAsvB4Rj7K8RV7nTCVjQNda4nEqY9S": 10100,
     "XCtWRidjxfmUjGsEaX3bbrwDZqufTbzwGRTgSE9R24S": 1300,
     "XDdEA9gkXwdVZgTFPQJ9FtyRhJ3pRXbz5eJqyq6rcwh": 18000,
@@ -234814,7 +239907,8 @@
     "YoiPQtxYmupe4cffqjmZmb7U7G1kicj5o9Zz5cAjEpV": 2500,
     "YpAMhPWtPyACam3kMjbAU5XszbQ5KQyuNP5vGQuVTMN": 149308,
     "YrRb2TfJKCcBADnpckV5cWedwMsceMRC3k7qzjfPc6V": 50000,
-    "YscxC994x5hmKCTCtfKxC461xY3SNTkFh3asN31CWx1": 5000,
+    "YscxC994x5hmKCTCtfKxC461xY3SNTkFh3asN31CWx1": 10000,
+    "Yvf8DvSRXTzLYsrxRYGysdnK9S8bqyzmQ6pxyWGj66c": 37500,
     "Z7qALXbL1fofzjEveDQZrbN2fAjgrDubwKskTi4FWQW": 300634,
     "Z9j4dBSgS6aNjpjevEk8bXp7AmGZWEmx2rNuqLigQZS": 20920,
     "ZArfzKx7RXJjF2PLB5Ryg6gSSQtdLzKJoLiLjyUw8xY": 200,
@@ -234835,19 +239929,20 @@
     "aKojVVFKFQVsRvgHK1v78GrrWYVFVhS9xf9C4mDfbLR": 5295,
     "aPcVKmiY3YCZBuBQLUN6mFLzNPhpe3hsCgdy2sgFEcF": 1500,
     "aTq8gjG22TJy5wx2Satmrrb4wGwJj5dM6KhnRx7oncy": 1500,
+    "aaSGJnmqwt7S6Hjyh9hpbVkCaKMgJSDh82yvpM3jsVR": 3500,
     "aaVApjXAjtuzzyr7wSYrZ8jstWAPf3qRzeWwaDRHjdY": 2064,
     "aaVWdJ6DQLtMs6tumcXBMLLmF98p5gwmT8hngapqRG4": 42080,
     "aadpEH2aootJ1BGS6gvH7i28obebTUUwBp78nCxDjqJ": 3400,
     "ad8gRXo94bcr1ueKb1ncDvGkoQRrXdGqXHqqK98zmBP": 10000,
     "afeQgH3UKSiXbun1Kkyb4N792m7ur5LLTAp1T8YM3iZ": 5000,
-    "akggmaNS5fRKuGksFfEKrXvZgS9kr42QrykQh1WBQe1": 23000,
+    "akggmaNS5fRKuGksFfEKrXvZgS9kr42QrykQh1WBQe1": 19750,
     "apYy9mZnAE2i4FzWGJ6UauKd2Knb5jo3wPdLfSBzMXM": 16104,
     "apybrt79g3JqwKbhteGQQijmAE4swMH3vyMCa7ty2zi": 10200,
     "aqk1fD78b9YaK1PGA8emNAa6TsYbTYfNR1Sp1oMdeHg": 3000,
     "aqr4HxDrME68ARK8mQXiSfjMpV3JpD7qHP7A59efP9e": 2000,
     "b2dN57KYGrFx5cyDBVXa25cGezrhnftQw33RyWeW4bM": 100,
     "b55wqp3aepyGjk71CTxh8SfQGpyQapsaZzkhk696tRJ": 48592,
-    "bGgKM9CJhvzueaTa1YuT3jVT1NxX67ibH3ZCYq4WCyu": 60000,
+    "bGgKM9CJhvzueaTa1YuT3jVT1NxX67ibH3ZCYq4WCyu": 96000,
     "bKAqHeUdzokYRoHiEfLCD8Dv8yhopZaX4P42qw4hsjk": 5693,
     "bL1NbPT9kFMQzSGYKh7k9H791S4G6jJuNDPD8gExNwB": 40000,
     "bMr7HK7zs23Aja3A9V6VobfFdy7pXq7SVsyPnDHYhTT": 5000,
@@ -234856,7 +239951,7 @@
     "bYRvJK4yDz4rrjPtZddPscgueBFx7BF4qFQUhtYyWLq": 10000,
     "bdujLDrnMtMcYB9PUn2y2gQ2Rx7PnGoVG2qfK59BwBZ": 37500,
     "bf84yFhL9jTsrh5zhGNi6g235QPJ5yHAx7QcM96j1VE": 2500,
-    "bg3AoYQKeyzaJaQoXJQATehLCk5wRFnYEvdRyjgg9LT": 73138,
+    "bg3AoYQKeyzaJaQoXJQATehLCk5wRFnYEvdRyjgg9LT": 74216,
     "bgK93qxwNTNBeVpRrzSRRQYwioS9k28NNFWKW6adm1j": 100,
     "bmxAYEZErb3duvBwWoxW7JJPnrr8n1eyhXVdeeH7Atf": 100,
     "bomTptUy9Yj4gfgurHEDkLN2WkM1i3xhtqYuYyvGEfR": 5000,
@@ -234864,6 +239959,7 @@
     "bqNef8ZViHvUNtDTTzd3vHbsqjo4abMBEfwq2QJ1shp": 20000,
     "byFvvvnbY3jEwFJ7KKk27LJGWpShc7giQHKb8mEuYFh": 15055,
     "c1aoqRdDEteQNisQqsn79WUmDv81YAT1qdhXSuAPLRq": 6800,
+    "cF5JhG17kDyg136BF36LuX7g2ZPcTGfLYL9ASDvqWwu": 20500,
     "cNK3m7JdmUjfn5UXP2nAQxBBcXq9BkAHe5RtUZVzzcs": 314,
     "cREFStH2SBf54H1FjuCdY8tCotXzvZYiTaUPEXn87HY": 10000,
     "cSoinGfUBryJFLZmDUWThRESxWM2YKQ7HN4jSLzC8Aw": 150,
@@ -234895,7 +239991,7 @@
     "ds1YBCRZXisdT6F75bEhSFrZQusEz6YT1XwtGBcBk8e": 5100,
     "dtdHJopwpL8hUe4QFtJ9iZM96uqJdvPwfh9Ls3u6qMW": 200,
     "dwStAXgvmkMAzx8L55ssiRVST7JDUtUz294vJXQwho1": 500,
-    "dx2z3u35cAGaDoCy26sPYMKB14k8FRVeJ5fk3VhFexH": 35000,
+    "dx2z3u35cAGaDoCy26sPYMKB14k8FRVeJ5fk3VhFexH": 41400,
     "e6k63mPk5m9YACobq4chURBTs3nHFTBWXSBryLuVoKG": 71560,
     "e6rw8h5LX3Hn1wLLoAv3UjvVhYbNFPqcTnxSqqDmsCp": 200,
     "e7c8yxjSh9zeWayFqGd8dG7m3zWkYwWbjN1i3mYjCAK": 83700,
@@ -234931,19 +240027,19 @@
     "fZcSikTx97GJdDxkbLb8jAH8eyMiQpRZgQCvfg3PJYV": 3800,
     "fewzgwJDJKQWLxvDMYNGjPkLfNQ7AcSmroWVmqodsLf": 500,
     "fn9zSXJheH65C1qFUdy2413S5NoPRoXF3qA1qG38qhR": 155932,
-    "fnjD1EuHFeJ5V8TTqKXXxPrvBPP2R7gRWfqR2FtrKB8": 312042,
-    "fpRCjaBCsjYRuzwy4A2GGX76MxqFfD6YoPpuTTZzQs3": 16000,
+    "fnjD1EuHFeJ5V8TTqKXXxPrvBPP2R7gRWfqR2FtrKB8": 296022,
+    "fpRCjaBCsjYRuzwy4A2GGX76MxqFfD6YoPpuTTZzQs3": 28000,
     "fu71ZNge43YraEGyqvqYoKfYD4SUc8c4nVoZJen2QyN": 1000,
     "fuPMEjhQfG1SaWtULVvJd6q3RFMyFe3ZhpaX2eW1LWe": 100000,
     "fx4AT6apGX7Bw3MHrbW4N3x3TapdyvNUU92dgFmsEQU": 20000,
     "fyqm24NzN7D2Lr4ssrNMacsctymQ2NzBqH9YUYuxSmy": 105345,
-    "g282ghabc9oTmzwfw1PPRmz18PQheBkaMJvKt9NgAUK": 5000,
+    "g282ghabc9oTmzwfw1PPRmz18PQheBkaMJvKt9NgAUK": 1000,
     "g2dPxyrC8acFbcmC1J5yiTsWKHJTAXwyEi3PzeF14zP": 2000,
+    "g3BuSJ9MPN4StgYyfr5LRQrvq3AJy3G4ixqgbkJQqHL": 256260,
     "gCYQijVTqcvPBVch4sQ8F6HoByCy8eAfMCkSosLv9UM": 6300,
     "gEgKZuNzQaC64WKeernDdGgufUHjvJPDzUYcpUJ7971": 5000,
     "gHiYZ6rtZPNkGPNsvS1LYKXzGeoM5XMkcKeVdN2Hfe3": 5000,
     "gPSAjU5iJN8vyDkVC38UdULr9Rzdv3KCoG43Wcb1ebL": 100,
-    "gSPF8VuCLsJbLajXX6H6Yz9B6bJzm4iZGoaTnmUEiJe": 7000,
     "gT2rteodWF9MASXyPA566U25VG339Szwk8UR42yCT8N": 728,
     "gd5zaQ2fWiFzAUBfEb8vngsHY1kGyyHBgjaGe113nzc": 5000,
     "gefPh3amYZKPcYR8quQHido1ExfxXuCZF7MUmdqbK3M": 7500,
@@ -234967,10 +240063,11 @@
     "hKfXNB2R1NWNAoHYApGXhkpwqQdFdvB98qH3Fzi2t7E": 10000,
     "hNUKSZ7azUNswxLxqfC5rJqwNYpEQCgcxsi9jCcfY82": 5000,
     "hNuwad2HmTGPYBWd4DArKbxZWFzyPBy7uJL5qaAKNTh": 505,
+    "hSvPrXMZwfp92kmZ1K2RCN1Lr58XQYifvAmH5KLqebT": 5000,
     "hTZ5AFAH3GU4B1aBC5rQ7nsXyfXBP14TRsMgbbtTash": 2000,
     "hX2EhFFCKVVmwhy8FytpRM2XwGWWsX6qv5EefNc78VU": 5000,
     "hctXF3TcsEdS5QYyb6hcQXFEtx1jtn2h45tmjiS3UbA": 207000,
-    "hezgXsDZAgKnvn8Aw7pz3J1NJJEctiB6t1CxmwHX5Wc": 47100,
+    "hezgXsDZAgKnvn8Aw7pz3J1NJJEctiB6t1CxmwHX5Wc": 81800,
     "hgfZWNHxqYDBg5Hcc73TnF854YKrf1uoQwxPAv1qTS4": 62862,
     "hiRXacagLM46VDt23c8JNQ1pzMamvykdSbWm5tbxinp": 29300,
     "hmzia4kD8jES7AEsiZqWx8w3n93sUMakNTFHYXLUY4r": 351,
@@ -234981,7 +240078,7 @@
     "i36LfPriVDgkh9nHjRRxnreGQb3QA1wetqghkppQCvx": 6042,
     "i5HYdjBZhsaqQMF8saxnnpVUJTMJAUWxFEtqN4Zm47S": 1800,
     "i6ChryT7wwPk9ahDCVGU9qWFv2vMETrYoyk6ga9fQY7": 10000,
-    "iAZzhH4EaQRtxsoWvDKoAo3XXhGQECWhQfW2K5MkBVB": 32000,
+    "iAZzhH4EaQRtxsoWvDKoAo3XXhGQECWhQfW2K5MkBVB": 35000,
     "iJM6aEX2EWR7MZshgaysjyTnc5kHDZDtUqmTvr6Y4hJ": 777169,
     "iNEkaq94VczNrqtEVuqKgqaS9Jy4Zc1uLLVr7Bg6TYL": 152000,
     "iPmRsLD2CiMWnuzfwfrbbs9xnnztSQGDdNJz3j6sKFJ": 2000,
@@ -234992,15 +240089,17 @@
     "ieiX3JD9WQYb9DSmmK7aBtMxKGe2exqAmxtcFzyxWby": 27100,
     "ig7EABk5BYj8EjLAiDgS2YAimFTv1yTEetZa5hDoaPb": 50800,
     "igwKCDsNMPLi3cnogN3gsik7DDJ3eLPeyZDSYYUUrcX": 29000,
+    "iihS2DoGWNGAmUVx1Y6BkmTZ9exttShGoVPLm5zFPzV": 5000,
     "imgJTBB5VjPKPPPEaugJuxdj9irgybhjfc6VYZynAYs": 5000,
     "iot1oM7QBNsDxHQqcoKonALgeR67tWwGoqhRxaCRtdE": 8500,
+    "isNq2nS59aqAtKU6ZXCcgSbhSAgdvVJFjrxJSbiS7ML": 10000,
     "izF17NHzzkhpLquWuRxNjqbL5wAtZdnPodKEz4CfxSU": 1000,
-    "j1KZvfqFMsLnxBZo6oB4UjAyJUcf9hdUxDKkAXWREnU": 36900,
+    "j1KZvfqFMsLnxBZo6oB4UjAyJUcf9hdUxDKkAXWREnU": 29400,
     "j1eLvEmM6GCypdRLY3QutztXccvjyRbRRJUkt6E4HYm": 2001,
     "j4Y3pAj8VokhBJEaRyzHTUEcbQcDmHrSNraUBLiHizd": 31530,
-    "j7ezpAwiYWQPaWSftGA5KophiBkLaXsKFrGE5Q9BBK5": 230500,
+    "j7ezpAwiYWQPaWSftGA5KophiBkLaXsKFrGE5Q9BBK5": 235500,
     "j8rGXWJFd8WvzUX1VbBVVSRohLejLiJF4bHPBpNNV6t": 16700,
-    "j9NdwnEUUrth4mGGhqiQbBfcRRLox6Zzt66scVSvCzW": 272900,
+    "j9NdwnEUUrth4mGGhqiQbBfcRRLox6Zzt66scVSvCzW": 287900,
     "jF9eS4b5Xvk9h49H1vzR2zjyWAMpDXNYRxuz7EhpAPJ": 200,
     "jNGj93mdd7sdqVCqPjH6e1ngw4msguZZcNvyZDpJpB2": 286000,
     "jPoZc5XdDTaRxjdcg1qDJ48EWHSZ1mgaiQA7iKhGjR2": 100,
@@ -235010,12 +240109,13 @@
     "jWkHYDod49Cc9q6DB9BtUbiY2XgJ2tmQfKgyYKo5TQQ": 10000,
     "jaxeeoqPw6GV6ysMQAbgYdzfFrpNjThB7SWmV8ReGJB": 17700,
     "jcXGLivxAfXYPHoycXwRofYE99PiMztQnW2SJ7tD1n5": 1000,
+    "jcvJTog29zKMWmgse3eiQaoL4MbwV2v9zVvsKsTQUZa": 800,
     "jenRcuQ7BnkpLcZScF9B9CcDFwDBqYpmnmxA4xMyDhQ": 81468,
     "jjne1ozA4VrfnCdEpQk5gSZhnmobZkwoX4PDh7kF4Ax": 50000,
     "joU3EyJe46g7MghZQCiZb3dvTj9664PXMFG4ANm2EAb": 500,
     "jp9mzvpqVMWFrFuZwhuzeM1iqLtEEcwyRZjTqTyUakx": 5000,
     "jrpc73Y1oCEKf19u1FAMTwCDeie1HHiW6yG78dS2iMc": 10000,
-    "jrs5SpCzqcTNDctmjHTvvEcc6NDqpCv4dpvFomCqnJ9": 132500,
+    "jrs5SpCzqcTNDctmjHTvvEcc6NDqpCv4dpvFomCqnJ9": 153500,
     "k1BgiRMLEgYwdrm1mVo8L2nXYZbyuypDRwkbnqsNGkW": 679429,
     "k67u2Fxt4AsHUvjrqvaKVnkmDDzj8KxGecuhvGiPmAu": 23000,
     "k74HoYaWFBywvQh8zo2gQTXfRERmz9cyVF4dEYoYBRJ": 3000,
@@ -235025,7 +240125,6 @@
     "kA21FrWdwu9vKH7Ctsj7zGUcJuFGdYwN8QGcrRRBp3A": 2000,
     "kEp7hBjCpSBPGx6NXA87gf4HXhwy95xf9pZuztjVW6S": 5000,
     "kLKehUF2Eca4MCW4Eb3EAWqDo2hwFDYGsXXdY84Sq3k": 202,
-    "kLw4Sc3xxJUaBCq8CMbCywXPMFwdSvsY2KaTRqKt2AJ": 20500,
     "kRQ3UhKxViC73ZQFH9xje3JFTScrpgVmrRZw3r1TqNz": 60000,
     "kT7aFWaaDLFny8nZGCY1mukbwLZYFfXNdcmbBYFGSse": 8000,
     "kUvnsGwgNxGshpjrEPArSqcNYC8jgyyMUB9y4vpdtxB": 500,
@@ -235036,7 +240135,7 @@
     "kepkoGwzVNrEhZ33ibRdpF73SaZxTsVz84WHGBvUUQD": 3000,
     "khWiyH92yJUohuqTWXe6rFmSLfaUDtEbyJ8FdsZ1UY6": 5000,
     "kirYZPhzXFtWGU7x8yPeX8ZDSXnb1HdE6EsJoLYZGwC": 40978,
-    "kixBJoJAvpbALf5meH8ig8PW2JiTxx1o7qPxwfGmxuX": 5000,
+    "kixBJoJAvpbALf5meH8ig8PW2JiTxx1o7qPxwfGmxuX": 34500,
     "kmRrvKnNiuCh41JenR3AANFwyVktF4hJw3HsKAfb2P9": 8900,
     "kq6nHKgDyqXcFAZiHmqmtaVRceiw9RSexSetZ6kC8J3": 76650,
     "kuiNzVPfq2vULywg6JaSC1uaATFiAPdkVYoTudqXAAx": 1000,
@@ -235050,16 +240149,17 @@
     "mSNYqnFB4tpUxHwAVbDhg3mxmvLcxPCY1k6A3kmNwUR": 240000,
     "mUq1RsSr9NmJ8ip7NVUqovpG4egdtk6X36unFj5QyrM": 2100,
     "mVJZrEbnJe9kEi61oy6N21KywRZUXZrQH6uLigoveY4": 3153,
-    "mWokc86o2ioZwQ5dCpK9ixKuAUDjqSUVEzo7w47Hwpv": 122818,
+    "mWokc86o2ioZwQ5dCpK9ixKuAUDjqSUVEzo7w47Hwpv": 124318,
     "max92YetRWVms7EKoigbxRo3QpeXeLEnBcwUX1nwRR3": 36600,
     "mbJ19wP2WT6RMvz9PPRkcKgj95iB3GqQNjSZkaXBQcy": 15000,
-    "mcJ34KigMEuL1PMvzyZr7JjxBEujQhfhZ6JcjZFr3a9": 29136,
+    "mcJ34KigMEuL1PMvzyZr7JjxBEujQhfhZ6JcjZFr3a9": 31272,
     "md24F55GYZBhHPaH1ZrZmvyAaY6RwMv2qK7gDncJwC2": 1000,
     "mfBzW56C6KytbqsXTYLR38UqkjxE93U2psWDZZR5zZH": 90000,
     "mfNUsEXZqDFHouPM7YtaUJ8MaCcmjaw7N6Xgc14SjUV": 5000,
     "mgRs9dekBva3ktp1yQRdr9hA6aUtGC8DtpNa6mLgCsG": 212,
     "mn98kQuCjeWYFMJdncqkT4BpRy1bsagWVvvF2TFqRvX": 102,
     "mniirhTsgKehexXB5TtiF2HMu2WNMVv7rYVttfV9tE5": 100,
+    "moPftJ8wwbuSGg4YFsi39htzSmY7uPKSNs5xsrrg1R3": 45500,
     "mr7XVqXWzJwvAY8HvKZMLcNtYzDnZVD3f2S5QAKYP9F": 100,
     "msoXe43iF7KQG7DqG8DgE4Uqv4TSUnwPk7UEfwa9BZb": 10000,
     "mtPABVFKKwHwBKzxiEeBZ8JWXKvkwcbAmWJWKJ7JRPq": 8500,
@@ -235068,19 +240168,18 @@
     "mygqER5g7JH3f1BMbEhyohEizQ3sCxSQe2kN3qmZDoh": 1500,
     "n5TNofQvFzHFfthgVhEpiQCJY93LZRDWynmjnhkYm6j": 15000,
     "n9zsHVmfMpFtmFFWkGFXJLyx4btWhgKRLmgYZfVvbii": 10800,
-    "nDXvDz6Fwcu5owWsRNt9YkHLLBQVd32nHLDFz8cZ9Rc": 515000,
+    "nDXvDz6Fwcu5owWsRNt9YkHLLBQVd32nHLDFz8cZ9Rc": 505000,
     "nEM1B652vE1eFGPJbsSELJVLSc5xQSBKTUbo5wCsEs2": 1011,
     "nEo27vwk8scV1XuXj7YV8CRJruQUJc9KFqHmGrvS2XN": 2500,
-    "nKBCpFa9iULdUnsSyhuNfYmDwwdJ6zA7wGnW8T5foyv": 14700,
+    "nKBCpFa9iULdUnsSyhuNfYmDwwdJ6zA7wGnW8T5foyv": 18200,
     "nLBfF1XnX6AayMSQrRv9sbhJSYx8k3dpJ9uSvmLHbXX": 15000,
     "nLkmPRmwzi5zswU8nPjQXJHiH7dSWHdLwfEzb5dMfc2": 1384200,
     "nNAaaMEQuvxu3u9K79thdQ8CjuJM7CrVxb3aC2CBnZP": 19448,
-    "nRHT1MGUGLAjFeFaXoRJ7rFG4JoVY85zqff2JqYgptp": 76000,
+    "nRHT1MGUGLAjFeFaXoRJ7rFG4JoVY85zqff2JqYgptp": 76400,
     "nWrzXrBJVeE5mqgXugRkntqqxxa7m224eqdq1DfFNYG": 314,
     "nXHSAPnXqs8LW9p6yNdigYKgtV7f9u3yMRThKSuu35m": 7000,
     "nXLMWtnkYSVTzuCPLPzDjUnLt6tBWL3fxE3MtN8Yc8Z": 2000,
     "naU6XunXd1LSSfsHu3aNk8ZqgSosKQcvEQz8F2KaRAy": 32300,
-    "ncckJo2nu4W1yusZY8vs4Pr96UGHXqEQf2d2gDQ42J7": 3600,
     "ngVKgomSyXkCwwQSfDAsmEiKoq9iHLwUBjYg9xs7LtW": 5000,
     "ngVkgomSyXkCwwQSfDAsmEiKoq9iHLwUBjYg9xs7LtW": 31000,
     "nhxFZ98uWnNzE3pvP2KB9n9g3YkgxsyUawC2Vh99sen": 1000,
@@ -235094,7 +240193,7 @@
     "o9gKLiMTNvfZmhq2Zqs2B2pKpfSs6EyzgDvRzp5B7rX": 3000,
     "oP3hrsrAcXnK1VkaWXo31QwGt7ExgHhr5GmyGy9wymu": 1000,
     "oQBNi77W6tt5bvG2cSyPUtb4BMv8rVLGtQSV9GYxWD9": 2000,
-    "oV2ymKGEzA6VuZ7f3crkvNuCGg4XcktRTaSY1iaXgLe": 21200,
+    "oV2ymKGEzA6VuZ7f3crkvNuCGg4XcktRTaSY1iaXgLe": 80700,
     "oVWAW6fvAwxD7JuPcszeSVY9DFYoqnYiyiD9GqVFwW3": 81046,
     "ocNRaTvDu73qbq7tU8CbWNqX1FSrTGdxy1cdf7DKaQH": 97016,
     "ocRDXhF3hLKVYXorhLtUd92fRhejCugjavaX1PxCE4Y": 3000,
@@ -235104,24 +240203,26 @@
     "osrvMYfwrwznoVfdbB1uWAUZZPEBLmbLvqQNYs7X76A": 10000,
     "ouZpxJES1wMsbUbEpBShPDD8mLsKmkYnruyrd7hSg4Z": 1044,
     "ozQfQG6U8y1bHSDS8HbMWTtuaZT376mhiu6bHEowLuS": 14000,
+    "p1pbk2KHB4pPBXbNujJvqavMJJiD2KUZgaGimNZcA7J": 30000,
     "p3HkRBRgS1AFjvWmTeReJu99YEBQVjHEjgAQbFSZUFZ": 5295,
     "p3xDAHHWDpBhgb36N94b5GasqBTYKJgXmCragecJkwv": 15345,
     "p49PCn1xSCSTsJ2iSQLvfUGYE3mtRPWv1Bgdq1Mgmgo": 61600,
-    "pBkF8K3WFggWkacNuTwn8DwN6hgmoLWvBLHvTHDtdSq": 442105,
+    "pBkF8K3WFggWkacNuTwn8DwN6hgmoLWvBLHvTHDtdSq": 445505,
     "pDynvgctBPajEhr6uJqKo16hHJbV7ckAGYmjfHU1ejL": 2933,
     "pGPxLPdWkH9z3jTaWWStUUgpNi5sjaajWF7AUhAB9ye": 2000,
     "pJdP9PuuktfGjQugWLnoU3od1tZDQpYDpN73HdLVwVr": 4400,
     "pMT537gttkS21oEtS9pA6pcXwQeQQiM3uCDUz9Rf8MX": 1000,
     "pNBNbMzYvrpAA3kWMhPCg1WPfsJtDXych7GiyMJ7pMT": 124515,
     "pYodLstxthu3PSWzV68TeEv4CLBLXLdoHBgoqSqSXEJ": 47516,
-    "pZXkJPRfi2jToasr7MoT2mpA18HVLFYBfkzUPP9Xk5k": 2000,
+    "pZXkJPRfi2jToasr7MoT2mpA18HVLFYBfkzUPP9Xk5k": 5500,
     "pd2rjLzCFJspJ39aPSnuB4YJCbrPKdz3WceHFsaYof2": 37000,
     "pd4YcW8kJoVCfD6NhLHejoBD6px6rAaoA45dhMoFuWd": 18974,
     "pg4ZxhQJ9LT2fatjgTNyZV5VQZJd8qMRNcL1eCRCs1X": 100,
-    "phKdLNGVB9RJYJTp9eFPhFrbWjUnvH2SjabkA2zb6g7": 492587,
+    "phKdLNGVB9RJYJTp9eFPhFrbWjUnvH2SjabkA2zb6g7": 547487,
     "phUe5Fjhc6eSAGVGdE8uKykDH2znndQfnR8oy9uMYLH": 22098,
     "pkobKf9nhqMgNrdLbV7Hu47ssodzcmAFVrEVkxnGWGE": 4000,
     "pnrS2xfmo1Wvz7AeW6rEK6w1ZsfSqhPpyV9mgZkRRmv": 100,
+    "pox9qLQGdonW3PB6eTadM8JZYA6MqxcnY926yuzZXVU": 5000,
     "pqojHxU7C9cu6pQCC61nFMiTKDvdDseT5kJkdqYUD4y": 1000,
     "prAHH1C1p5C3YsFyyRgxifPQX4viuXc2dxcqkUgTzQ9": 5000,
     "pvTUhHVM4kAdNxvpJHkWSfkiciXoLjFwnCUj4czoWfT": 170000,
@@ -235139,7 +240240,7 @@
     "qbwK3A4fjSNoW8qmnayggfMYFCKznvyDfW3LMHXidxa": 900,
     "qf7gkuitoYyPrVwF8sce7iZnpqpR7ExnJKbBnTCgt2i": 10000,
     "qfexertPwTTLpgkosw9wgMfa89ZrtAc12yzkdkJ5BLi": 1100,
-    "qfyp51spGCLJYzxSNArx4UhmuCD8DqoCcPscopK9hFC": 402850,
+    "qfyp51spGCLJYzxSNArx4UhmuCD8DqoCcPscopK9hFC": 482850,
     "qixNEvBQrsynyaD2twmafw2zmZskFiDBF1pZMQuHPPz": 1100,
     "qk7imbrooCQWwpYp9qtrpUzu8PEEhMZqxb9BfctVkd5": 40000,
     "qopG4jjoMmYKjKn4uuzcKyapc5d3A7NcdJqGQaauFqZ": 1700,
@@ -235164,32 +240265,34 @@
     "rsLCdiTrFGBQ9Fth2399uSvik2UzwHsPtzY1qLFEqYc": 5000,
     "rvsMqhHtCE863pJxBcRP1E6se2VK3s2i1V6C4HaDmEm": 8255,
     "rx8eRfAf6cbrq8NhpcgKrsCixQhbaZm7FUiryPDghBM": 30000,
-    "rzat548pvcvUCf5Ud2pfZXu9WE47ZRQ8tvurjyEN4zt": 40800,
+    "rzat548pvcvUCf5Ud2pfZXu9WE47ZRQ8tvurjyEN4zt": 41800,
     "s78Y2hHS4YB1ES4qoGaSoVW5KcJgcACCXeBKW1849X1": 19798,
-    "s911pzrfnBZMrQTpQEK57re622szTgqRobXZzDmY6c5": 52500,
-    "sBpPiCVgcY31zpPPayCs3sUuL8rcQAS8gLqBw5ALC1x": 2500,
+    "sBpPiCVgcY31zpPPayCs3sUuL8rcQAS8gLqBw5ALC1x": 47500,
     "sDWNFUtZ2JgouneGVkPSbA6apkoaYEZjWsU22APNWmH": 5000,
     "sE2DmKVWxF5F5HgWYgM53x8EHWJPjfGV7vrokkb9Qb3": 2102,
     "sELXmAEAfYg6QznFvMCjVRpVvhWKjkKk7Cbocm9UBP2": 15630,
     "sKpA2rU7oXoaGrNuFtoaJXbSmBanaMSCj4SpeaxatWL": 100,
-    "sPD4bxqaL8w9n7jXfSHJKwQ2qfRFtzCx9TB4KZHxhZL": 21360,
+    "sPD4bxqaL8w9n7jXfSHJKwQ2qfRFtzCx9TB4KZHxhZL": 42720,
     "sPdsWhtuky2Zoro4Fs64GMKVWMNSgUEESqNMrTfKZNS": 30000,
     "sRfzRpzYUHaTR84xaLbVV6BJjFWv8zYMLoj8jusdsrQ": 6000,
     "sStGgjjbfnkUz7hysfFyJ8Nz961EBeK7cdp5uJ7DSQG": 14800,
     "sYgVFH5roRV42tELWDuHbb5aWwaFsLdYWhW3Q4QtsZ4": 55700,
+    "saRCqr92qk5uJe5XCaq56bxiAFNzwYxfNZankke8bME": 12800,
     "sdEUaTBfrqqMArNdUyjMpQYjXwkHqufPqyrkDvekiPK": 1100,
     "sn3wynBp8VGPn7wzurZ7d4sXvjYLBfgZAgw4CaQSLaC": 14700,
     "snsTe19gcJ6Pqy6XLSwRPkW5AbLe15aszu1wbo5vciT": 8413,
-    "svR44CYj89AbWXBDjbnwGp9j1fpgvekstVhrX2YDcsH": 290447,
+    "svR44CYj89AbWXBDjbnwGp9j1fpgvekstVhrX2YDcsH": 233447,
     "sw5uFgS5sBrBv1hFdxLfeJaPNG9577awP6tCMTUgJky": 10735,
     "sz8Vt8DyK6WXXpa4TcsGxknvd4cQ1XkZ6byYFvCdiSX": 2000,
     "szTwiYZia8DMgjfruHTnKvnukMoF9dCD8b4HeeZsTc5": 10000,
+    "t3aHuebcSrWFBbq3Wviypq3qcEpc9YjjLwBBZ9cXRnX": 400,
     "t65YrsNaBTJ6vqvy2PK9DotxQtVJfa65ct348BCzDn7": 65000,
     "t7fRP8rrLhYxKatoRTxfgKRLURGZ3eN6173TMv13fQ2": 56000,
-    "t81LqL59j9jfKEdzwyn7YsKzaXBLYE74F17Fn71mXCm": 730065,
+    "t81LqL59j9jfKEdzwyn7YsKzaXBLYE74F17Fn71mXCm": 872249,
+    "t8J2nwSWCvukMnGSQEonANyuiSJv1gERnEbkrVuhU8U": 2500,
     "t8gRg7cwEBEdkTSb9gkYPFENGVFzEEsAhQu1ujBSeFA": 12640,
     "t9d8jpdusnFSxChchJStg63JLDoNsdWGns17ZkMCTCK": 10000,
-    "tJTf491oiP4QSdfy4ZpYETkQ2fuz7qwQYjRTG9coUvE": 10000,
+    "tJTf491oiP4QSdfy4ZpYETkQ2fuz7qwQYjRTG9coUvE": 57000,
     "tSKHP3JdBkHVUtfrVLwZSWUXRHrtHmARqHyju7UEK1p": 10000,
     "tU2wgYKScrLmMCveDr38yVefy62VHAxmw471dSnK1WV": 100,
     "tU2wgYKScrLmMCveDr38yVefy62VHAxmw471dSnK1Wv": 61600,
@@ -235202,10 +240305,10 @@
     "thr83isDi91nC6dYVLA1TTqNFp8dQ8TNbZDZSNkVfcC": 5000,
     "thzaDP2qHt55hyPdbnQL9hTEWVULJWXqYW99Hrts2Ed": 5000,
     "tkveUVmmnzb7C8yT3bzHU7ZQfGdtLcYVUriipfi7h9F": 5000,
-    "tmwREYnA9DVPnSqXdYMd34z966vuwQhzGKJ6S5KozSH": 70000,
+    "tmwREYnA9DVPnSqXdYMd34z966vuwQhzGKJ6S5KozSH": 304500,
     "to5FRmPWMNwF34KMFpbqU2Qd6wC7dr2CSkB1zirJr8v": 7500,
     "toryXH7S7Z7neuTg98RiQXjEEuninicYkcSnUYEArrN": 11107,
-    "tsFfYyGn77LEieJ2PfUkAeRz5Fahq6TNuSaKYQPTs7C": 106369,
+    "tsFfYyGn77LEieJ2PfUkAeRz5Fahq6TNuSaKYQPTs7C": 109719,
     "txShYQ6D94xSSfUrWHcDDJUbz9bDW7n983RdAc1DZQZ": 24200,
     "txnZvdk8Dg16rbk3XsNMf29wCdQ823tgU6QRuF3xAmL": 10000,
     "u1fRUe4KYVH9sRwiBzH1VkeZo2SQ5f2nSwF63XVU5a3": 70000,
@@ -235242,19 +240345,19 @@
     "vTgsDpe5E1XximcS8L232LLHUisK3bQcBuyv6J9ipVQ": 100,
     "vedBqbDhKKdR6Q81EoyNca4SgaBHcKrUxem6SVrQJM2": 3000,
     "vu8vbFz5DGt8kcMWyAcciVJYKERacLcH41PB2SfUA4J": 26126,
-    "vuuyEcGhd2zjUrU3e1YaTvaAqmb6J1aXBJdMqRZdWy6": 150000,
+    "vuuyEcGhd2zjUrU3e1YaTvaAqmb6J1aXBJdMqRZdWy6": 162000,
     "vwzXWVoJz8mzQRciLMBxJ58ncVwuHNaLBMPUiarPc1J": 5000,
     "vx6XddjCSKYWSVrRCA6aL5psi7XPJBcgdQdY2LoibeC": 1000,
     "w1r94XVr4YZdpMNyYnsJYT4Q9GQy7rnafaf84pJZJHf": 5295,
     "w2Uy25hbFsajmccUKVNQu18schgSwfwkDM2meAoQJq3": 1059,
     "w8nMi6khy8F7XW7bDdNYuVdvqe7tvE1y7bfsfzUcXL7": 68300,
     "wCYUvHMpkT7J5LYEjURwWowKBqUdCUwiAYUP7hFq9go": 2000,
+    "wEd4FCbYM7pdwckurvXtpeTr1osia6eSqN4UVKMWnjs": 34005,
     "wHE43VXhCUwsnGyJ51XtwdsKAiHco5n8QBAPQQSWd7r": 12160,
     "wPBHvuj8RyETx6iPyifWDSebfTPbcRqnpnR4MwR8xiX": 51150,
     "wRxk1vKHNDgxmXNQactKhJGEMFxaqu1YNeqo3mpL34s": 30000,
     "wSRSkWkCAQ5ARDk8f8f2ZkaY5nrBHw5UJuwMACx37WX": 5000,
     "wSSPwwBb2QZKTDLJL5heZSpfedeCJWSpnU5MBPGfPbG": 10000,
-    "wYgCP9cQ1AjjetrSCsksLRyddgtE2nYBSXn1aqYVyLa": 20000,
     "wZxmc5HzP48yxTijXuYbGoJuBCaAPdsU8HhtXFHXsEM": 15000,
     "waS87FjVYxowErvNyi7TssJG3KBrSgEJopPii7uSaHZ": 8950,
     "watUcMFdBc2hewBYnHSqNTtVVsu8z9BPJkboLw9NSms": 21020,
@@ -235279,15 +240382,15 @@
     "xGNqNYcWH7Wo1kohFDJcFHe33JdTnJUCMTdgQ2LhoGp": 21600,
     "xGo5NBsmpgzcUiqNsbYMN3KUsJnhW7naKYe7rSuPdAm": 31000,
     "xK6FUeSsZkjG92rBMyXuVqRXKHsn2gHRqBgPpRTfeAY": 100,
-    "xPv3r3u9qAmWnNbtkjYVpRs9sWcY72PtQEENoGU8qBj": 5612,
     "xVnNB548LnKacW7hXHZZjWPxfyPc7KP7kXYmFM74sUR": 2200,
     "xXXa7JkSpJUBERaXtQD6oAwZiZ1fMsMZj9caSxqPdSo": 1200,
     "xXavzFsq21Mae5EGzv7EjXyJpRasTfW363fZqPSLQ99": 20320,
     "xbDjTcDfkNVHdUb1o9YuzEPizwBUSRaHigkxondNXdj": 5000,
     "xecDPb2wCCSdFeisw7WNcQ7QnUC5eaGdAnBXU89mjHu": 1011,
     "xgBrGkduoYpqFhZXYrUAWqHLGZNgPSuCwdBv8BKscur": 10000,
+    "xigDs4fwXJi5ZMpqNosaYjfvk28JecMyNGtJqsZbb1T": 43000,
     "xj7sUSDMnuAm138SfhHGqn7XCdzVdVEJhtMUUGWUCEZ": 100,
-    "xmLLKBdEV9WbXtBmq8XLyXD6KqupyLVWfgVRwUHqcVi": 3404,
+    "xmLLKBdEV9WbXtBmq8XLyXD6KqupyLVWfgVRwUHqcVi": 7904,
     "xmNq2XTJLbkUByr6tn3JVNyTujnUBUVZqofvRe3Sc9v": 10420,
     "xttyy5TSc2JCGCaHs1w3j9VXHVoXeyXw4VDA7BH6jbn": 5000,
     "xz4V8UtFKYQmAgPvb9jdwQB6QMnzqDEp9DGdVxrmjVc": 2800,
@@ -235296,6 +240399,7 @@
     "y7ynJJUXzsosbfVMDcDovEUM4rQsQw9QJxKNaJu3QDx": 5000,
     "yAeWvsCodEVZvyJiDykNVz8yc1QhyKaGqBoipCfjAZz": 5000,
     "yBBy28pQWoEB9Gq5ocAuLYcoBJVyv9vzUQhLC3FWvE7": 142300,
+    "yDSeiQ5wcetja4WzNGAiKLm9RtkTK7EUp4weU5moX8D": 100,
     "yDzJKiSpWgrP1pkZXGYApiNiUwjT5ZLWafQCzBNZnao": 8000,
     "yDzJKiSpWgrP1pkZXGYApiNiUwjT5ZLWafQGzBNZnao": 32700,
     "yFZVKe2nuL7qX4KEDBx4KNBzPnCvTPjbpY8g3PrPnYH": 2000,
@@ -235317,18 +240421,32 @@
     "ywbchCnWBgpYkJfUJizmMjohRr5sPgWDkcWHfopap5e": 16028,
     "z4hnaAt6pn8Jcg99oQEv7yQH5eeFXV7foQdu98B75Dz": 8000,
     "zBaXyFvCmwqyn1oU66ZbqaZzkicr3ewVqwyJSwAg7b3": 1000,
-    "zDiJMsEkobwgWoug2uZ9HzkQ7DWt3Eo5hzAHRdqh99y": 153000,
     "zJiyd4YtrfzQFztfJN46uQcsW8r8uzi16omWwtt5JgH": 100,
     "zJpgamQuTD2MSw1cJU6oZcKZWKWjjWwG9U6SL8xGERM": 93900,
     "zR4RVdWSL7wqeUcw1YnoxLVenKLXDKvbjYf6ke6Tr5t": 3000,
     "zRg4KhiXdHhdjy3X8k1jXMjQ1EMmyG2TS1ofGUX8zi6": 12800,
     "zTRKiS8GmxqWcQtcT2MCnjrffoM1entwbCSAo6QbvbS": 19300,
     "zYLdBj5iwG7G1ES8EUcZ49tF8QACe2AJv3kqafwU6EN": 1055555,
+    "zZnVA8SvcjcpfMjBrJf8kda6B7azoAdjR2bApKU99rC": 53200,
     "zbgMarvvoBiKAyu3S2K4Z8Wduxgx4xguuziLjB9AdxD": 30000,
     "zcJ5RpsZNUBtU9AdrUdrErQtQNKxbJgJrHUEve5jVB2": 2000,
     "zci6V25xnS1L4Pjt39q1Zniix98xaQ8j3RLra5ZhBHm": 200000,
     "zk3wrStmsBh1tME3QXBJxNdHGiPQzsKp9pCxTDEqeaG": 10000,
     "zwXdk4iT7N9tHMZwZm1Xp2Zf8wYg3R1pVgZuKepk2Ve": 6173
   },
-  "initial_monetary_mass": 7739834527
+  "initial_monetary_mass": 8074898515,
+  "transactions_history": [
+    {
+      "time": 1488990117,
+      "comment": "TEST",
+      "issuers": "[\"2ny7YAdmzReQxAayyJZsyVYwYhVyax2thKcGknmQy5nQ\"]",
+      "outputs": "[\"1:0:SIG(Com8rJukCozHZyFao6AheSsfDQdPApxQRnz7QYFf64mm)\",\"999:0:SIG(2ny7YAdmzReQxAayyJZsyVYwYhVyax2thKcGknmQy5nQ)\"]"
+    },
+    {
+      "time": 1488990791,
+      "comment": "Un petit cafe ;-)",
+      "issuers": "[\"FVUFRrk1K5TQGsY7PRLwqHgdHRoHrwb1hcucp4C2N5tD\"]",
+      "outputs": "[\"3:0:SIG(7vU9BMDhN6fBuRa2iK3JRbC6pqQKb4qDMGsFcQuT5cz)\",\"997:0:SIG(FVUFRrk1K5TQGsY7PRLwqHgdHRoHrwb1hcucp4C2N5tD)\"]"
+    }
+  ]
 }